Changes between Version 1 and Version 2 of Ticket #2130


Ignore:
Timestamp:
Aug 5, 2019, 1:13:47 PM (5 years ago)
Author:
Bang Pham Huu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2130 – Description

    v1 v2  
    1515        <gml:fileReference><![CDATA[
    1616                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>
    1822        <gml:fileStructure>image/png</gml:fileStructure>
    1923    </gml:File>
    2024</gml:rangeSet>
    2125}}}
     26
     27It 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