Changes between Version 1 and Version 2 of Ticket #2130
- Timestamp:
- Aug 5, 2019, 1:13:47 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2130 – Description
v1 v2 15 15 <gml:fileReference><![CDATA[ 16 16 file:///home/rasdaman/rasdaman_community/rasdaman/systemtest/testcases_services/test_all_wcst_import/testdata/wcs_gdal_select_1band_from_3bands_to_import/rgb.png 17 ]]></gml:fileReference> 17 ]] 18 {{{ 19 20 }}} 21 ></gml:fileReference> 18 22 <gml:fileStructure>image/png</gml:fileStructure> 19 23 </gml:File> 20 24 </gml:rangeSet> 21 25 }}} 26 27 It also needs to fix in wcst_import for `gdal general` recipe to validate the band identifiers (they must be integer numbers, based 0) which exist in the input multiband files (e.g: rgb.png) 28 29 30 {{{ 31 "slicer": { 32 "type": "gdal", 33 "bands": [ 34 { 35 "name": "red", 36 "identifier": "6" <--- Invalid band idenitifier 37 }, { 38 "name": "green", 39 "identifier": "2" 40 }, { 41 "name": "blue", 42 "identifier": "3" <--- Invalid band identifier 43 } 44 ], 45 }}} 46