eccodes/definitions/grib2/template.3.110.def

41 lines
1.2 KiB
Modula-2
Raw Normal View History

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
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
unsigned[4] numberOfPointsAlongXAxis : dump;
alias Nx = numberOfPointsAlongXAxis;
alias numberOfPointsAlongAParallel = Nx;
alias Ni = Nx;
2024-01-16 12:40:17 +00:00
# Number of points along Y-axis
unsigned[4] numberOfPointsAlongYAxis : dump;
alias Ny = numberOfPointsAlongYAxis;
alias numberOfPointsAlongAMeridian = Ny;
alias Nj = Ny;
2024-01-16 12:40:17 +00:00
# Latitude of tangency point (centre of grid)
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;
alias Lo1 = longitudeOfTangencyPoint;
# 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
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
unsigned[4] Dy : dump;
2013-03-25 12:04:10 +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"