Changes between Version 2 and Version 3 of Ticket #1910
- Timestamp:
- Nov 21, 2018, 8:06:15 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1910
- Property Component undecided → petascope
-
Ticket #1910 – Description
v2 v3 9 9 returns 10 10 11 "axis1 axis2... value", "axis1 axis2... value", ... 11 ["grid_coord_1 grid_coord_2... value1 value2 ...", 12 "grid_coord_1 grid_coord_2... value1 value2 ...", 13 ...] 12 14 }}} 15 16 Petascope will parse the returned result, and convert the axis1 axis2... grid coordinates to corresponding geo coordinates. This needs to be done carefully with respect to the axis order in rasdaman. So the final result will be 17 18 {{{ 19 ["geo_coord_1 geo_coord_2... value1 value2 ...", 20 "geo_coord_1 geo_coord_2... value1 value2 ...", 21 ...] 22 }}} 23 24 Petascope should preserve these characters (+ whitespace) as they appear in the json/csv result from rasdaman: 25 {{{ 26 { } [ ] " , 27 }}}