eccodes/definitions/grib2/template.3.100.def

44 lines
1.5 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.100, Triangular grid based on an icosahedron (see Attachment I.2-GRIB-Att.)
# n2 - exponent of 2 for the number of intervals on main triangle sides
unsigned[1] n2 : dump ;
# n3 - exponent of 3 for the number of intervals on main triangle sides
unsigned[1] n3 : dump ;
# Ni - number of intervals on main triangle sides of the icosahedron
unsigned[2] Ni : dump ;
# nd - Number of diamonds
unsigned[1] nd : dump ;
alias numberOfDiamonds=nd;
# Latitude of the pole point of the icosahedron on the sphere
signed[4] latitudeOfThePolePoint : dump ;
2014-06-18 16:14:01 +00:00
meta geography.latitudeOfThePolePointInDegrees scale(latitudeOfThePolePoint,one,grib2divider,truncateDegrees) : dump;
2013-03-25 12:04:10 +00:00
# Longitude of the pole point of the icosahedron on the sphere
unsigned[4] longitudeOfThePolePoint : dump ;
2014-06-18 16:14:01 +00:00
meta geography.longitudeOfThePolePointInDegrees g2lon(longitudeOfThePolePoint);
2013-03-25 12:04:10 +00:00
2013-06-24 16:39:33 +00:00
# Longitude of the centre line of the first diamond of the icosahedron on the sphere
unsigned[4] longitudeOfFirstDiamondCentreLine : dump ;
meta geography.longitudeOfFirstDiamondCentreLineInDegrees g2lon(longitudeOfFirstDiamondCentreLine);
2013-03-25 12:04:10 +00:00
# Grid point position
codetable[1] gridPointPosition ('3.8.table',masterDir,localDir);
# Numbering order of diamonds
flags[1] numberingOrderOfDiamonds 'grib2/tables/[tablesVersion]/3.9.table';
# Scanning mode for one diamond
flags[1] scanningModeForOneDiamond 'grib2/tables/[tablesVersion]/3.10.table';
# nt - total number of grid points
unsigned[4] totalNumberOfGridPoints : dump ;
alias nt = totalNumberOfGridPoints;