2020-01-28 14:32:34 +00:00
|
|
|
# (C) Copyright 2005- ECMWF.
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
# TEMPLATE 3.110, Equatorial azimuthal equidistant projection
|
2024-01-16 12:40:17 +00:00
|
|
|
include "grib2/template.3.shape_of_the_earth.def"
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2023-11-22 10:51:00 +00:00
|
|
|
constant isGridded = true;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2024-01-16 12:40:17 +00:00
|
|
|
# Number of points along X-axis
|
2023-08-03 14:15:26 +00:00
|
|
|
unsigned[4] numberOfPointsAlongXAxis : dump;
|
|
|
|
alias Nx = numberOfPointsAlongXAxis;
|
2023-08-16 10:34:37 +00:00
|
|
|
alias numberOfPointsAlongAParallel = Nx;
|
|
|
|
alias Ni = Nx;
|
|
|
|
|
2024-01-16 12:40:17 +00:00
|
|
|
# Number of points along Y-axis
|
2023-08-03 14:15:26 +00:00
|
|
|
unsigned[4] numberOfPointsAlongYAxis : dump;
|
|
|
|
alias Ny = numberOfPointsAlongYAxis;
|
2023-08-16 10:34:37 +00:00
|
|
|
alias numberOfPointsAlongAMeridian = Ny;
|
|
|
|
alias Nj = Ny;
|
|
|
|
|
2024-01-16 12:40:17 +00:00
|
|
|
# Latitude of tangency point (centre of grid)
|
2023-08-03 14:15:26 +00:00
|
|
|
signed[4] latitudeOfTangencyPoint : dump;
|
|
|
|
alias La1 = latitudeOfTangencyPoint;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2024-01-16 12:40:17 +00:00
|
|
|
# Longitude of tangency point
|
|
|
|
unsigned[4] longitudeOfTangencyPoint : dump;
|
2023-08-03 14:15:26 +00:00
|
|
|
alias Lo1 = longitudeOfTangencyPoint;
|
2023-08-16 10:34:37 +00:00
|
|
|
|
2023-08-03 14:15:26 +00:00
|
|
|
# Resolution and component flag
|
|
|
|
flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2024-01-16 12:40:17 +00:00
|
|
|
# X-direction grid length in units of 10 -3 m as measured at the point of the axis
|
2023-08-03 14:15:26 +00:00
|
|
|
unsigned[4] Dx : dump;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2024-01-16 12:40:17 +00:00
|
|
|
# Y-direction grid length in units of 10 -3 m as measured at the point of the axis
|
2023-08-03 14:15:26 +00:00
|
|
|
unsigned[4] Dy : dump;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2023-08-03 14:15:26 +00:00
|
|
|
# Projection centre flag
|
|
|
|
unsigned[1] projectionCentreFlag : dump;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2024-01-16 12:40:17 +00:00
|
|
|
include "grib2/template.3.scanning_mode.def"
|