1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
# (C) Copyright 2005- ECMWF.
# The section number is always 1 byte and at the 5th byte of each section (so offset=4)
lookup[1] sectionNumber(4);
if (sectionNumber == 1 or new()){
position sectionPosition;
template section_01 "grib3/section.01.def"; #Originator Section
}
lookup[1] sectionNumber(4);
if (sectionNumber == 2 or new()){
position sectionPosition;
template section_02 "grib3/section.02.def"; #Repetitions and Index Section
}
lookup[1] sectionNumber(4);
if (sectionNumber == 3 or new()){
position sectionPosition;
template section_03 "grib3/section.03.def"; #Time Domain Section
}
lookup[1] sectionNumber(4);
if (sectionNumber == 4 or new()){
position sectionPosition;
template section_04 "grib3/section.04.def"; #Horizontal Domain Section
}
lookup[1] sectionNumber(4);
if (sectionNumber == 5 or new()){
position sectionPosition;
template section_05 "grib3/section.05.def"; #Vertical Domain Section
}
lookup[1] sectionNumber(4);
if (sectionNumber == 6 or new()){
position sectionPosition;
template section_06 "grib3/section.06.def"; #Generating Process Section
}
lookup[1] sectionNumber(4);
if (sectionNumber == 7 or new()){
position sectionPosition;
template section_07 "grib3/section.07.def"; #Observable Property Section
}
lookup[1] sectionNumber(4);
# Used to mark end of headers. Can be accessed with grib_get_offset()
position endOfHeadersMarker;
meta lengthOfHeaders evaluate(endOfHeadersMarker - startOfHeaders);
meta md5Headers md5(startOfHeaders,lengthOfHeaders);
if (sectionNumber == 8 or new()){
position sectionPosition;
template section_08 "grib3/section.08.def"; #Data Representation Section
}
lookup[1] sectionNumber(4);
if (sectionNumber == 9 or new()){
position sectionPosition;
template section_09 "grib3/section.09.def"; #Overlay Section
}
lookup[1] sectionNumber(4);
if (sectionNumber == 10 or new()){
position sectionPosition;
template section_10 "grib3/section.10.def"; #Data Section
}
|