Changes between Version 6 and Version 7 of Dev/GribFormat
- Timestamp:
- May 13, 2016, 8:34:57 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Dev/GribFormat
v6 v7 1 == WCSTImport == 1 2 WCSTImport will send this information to Petascope: 2 3 {{{#!xml … … 89 90 }}} 90 91 92 == rasdaman == 91 93 92 Petascope should send backto rasdaman:94 Petascope should send to rasdaman: 93 95 94 96 {{{ 95 UPDATE myCoverage AS m SET m[0:720,0:360,0:1, 0:1] ASSIGN VALUES decode($1, " {{messages}}")97 UPDATE myCoverage AS m SET m[0:720,0:360,0:1, 0:1] ASSIGN VALUES decode($1, "#messages") 96 98 }}} 97 99 98 Messages should be as follows:100 #messages should be as follows: 99 101 100 102 {{{#!javascript … … 108 110 } 109 111 }}} 110 The X/Y are required to be the last dimensions as this is efficient and simple (no need to reorder anything in rasdaman.111 112 112 113 The messageDomains should be ordered to match the message order in the GRIB file. 113 114 114 115 X and Y seem to be in the reverse order (like in netcdf), and it's necessary to transpose them in rasdaman, otherwise the data is rotated. So you have to consider this in petascope, the order should be Lon/Lat, not as it is Lat/Lon in the file. 116 117 The X/Y are required to be the last dimensions as this is efficient and simple (no need to reorder anything in rasdaman.