Changes between Version 1 and Version 3 of Ticket #1296
- Timestamp:
- May 5, 2016, 1:55:37 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1296 – Description
v1 v3 1 test data sample from Dimitar 1 test data sample from Dimitar (this sample does not work as in http://rasdaman.org/ticket/1300, but can give the idea of problem). 2 2 3 3 4 4 {{{ 5 rasql -q 'select encode((marray i in [0:1,0:5,0:5] values 1f)[1,*:*,*:*], " GTIFF", "xmin=25.0;xmax=75.5;ymin=-40.5;ymax=75.5;crs=EPSG:4326")' --out file5 rasql -q 'select encode((marray i in [0:1,0:5,0:5] values 1f)[1,*:*,*:*], "JPEG2000", "xmin=25.0;xmax=75.5;ymin=-40.5;ymax=75.5;crs=EPSG:4326")' --out file 6 6 }}} 7 7 8 8 9 it only return grid axis 9 it only return grid axis (output from encoding eobstest) 10 11 12 {{{ 13 rasql -q 'select encode((c) [1,*:*,*:*], "JPEG2000", 14 15 "xmin=25.0;xmax=75.5;ymin=-40.5;ymax=75.5;crs=EPSG:4326") 16 17 from eobstest AS c where oid(c)=1537' --out file 18 }}} 19 10 20 11 21 … … 29 39 30 40 {{{ 31 rasql -q 'select encode(( c) [1,*:*,*:*], "GTIFF", "xmin=25.0;xmax=75.5;ymin=-40.5;ymax=75.5;crs=EPSG:4326") from eobstest AS c where oid(c)=1537' --out file41 rasql -q 'select encode((marray i in [0:1,0:5,0:5] values 1f)[1,*:*,*:*], "GTIFF", "xmin=25.0;xmax=75.5;ymin=-40.5;ymax=75.5;crs=EPSG:4326")' --out file 32 42 }}} 33 43 … … 35 45 36 46 37 {{{ 38 Driver: GTiff/GeoTIFF 47 {{{Driver: GTiff/GeoTIFF 39 48 Files: rasql_1.tif 40 Size is 101, 23249 Size is 6, 6 41 50 Coordinate System is: 42 51 GEOGCS["WGS 84", … … 49 58 AUTHORITY["EPSG","4326"]] 50 59 Origin = (25.000000000000000,75.500000000000000) 51 Pixel Size = ( 0.500000000000000,-0.500000000000000)60 Pixel Size = (8.416666666666666,-19.333333333333332) 52 61 Metadata: 53 62 AREA_OR_POINT=Area … … 60 69 Lower Right ( 75.5000000, -40.5000000) ( 75d30' 0.00"E, 40d30' 0.00"S) 61 70 Center ( 50.2500000, 17.5000000) ( 50d15' 0.00"E, 17d30' 0.00"N) 62 Band 1 Block= 101x40 Type=Int16, ColorInterp=Gray71 Band 1 Block=6x6 Type=Float32, ColorInterp=Gray 63 72 64 73 }}} … … 69 78 70 79 71