Changes between Initial Version and Version 1 of Ticket #1805


Ignore:
Timestamp:
Jun 21, 2018, 9:17:49 AM (6 years ago)
Author:
Bang Pham Huu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1805

    • Property Cc Vlad Merticariu added
    • Property Priority majorcritical
  • Ticket #1805 – Description

    initial v1  
    88 "tiff")
    99}}}
     10
     11
     12The imageCrsDomain according to WCPS standard is
     13
     14
     15{{{
     16Extent of the coverage in (integer) grid
     17coordinates, relative to the coverage’s
     18Image CRS2; essentially, the set of all
     19point coordinates inside the coverage
     20}}}
     21
     22But it has been done for a very long time before WCPS 1.5 with the result in geo CRS order (e.g: Lat, Long)
     23
     24
     25{{{
     26c[Lat(53.6734: 53.9267), Long(7.6550:8.0729), unix:"CRS:1"(0)];
     27
     28return [Lat: 885:1898, Long: 745:2417]
     29}}}
     30
     31
     32but not rasdaman order
     33
     34{{{
     35c[Lat(53.6734: 53.9267), Long(7.6550:8.0729), unix:"CRS:1"(0)];
     36
     37return [Long: 745:2417, Lat: 885:1898]
     38}}}