Changes between Initial Version and Version 7 of Ticket #1260


Ignore:
Timestamp:
May 6, 2016, 1:48:53 PM (8 years ago)
Author:
Bang Pham Huu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1260

    • Property Summary Petascope cannot encode coverages that have a CRS containing a ' " ' characterPetascope cannot encode coverages that have a CRS containing a ' " ' character (WCST_Import also).
  • Ticket #1260 – Description

    initial v7  
    22See in wcps/server/core/EncodeDataExpr.java, the last reference to result.
    33@Bang please check if this is the case in WCPS 1.5 as well.
     4
     5'''Bang: update for better understanding:'''
     6
     7So, WCPS 1.5 don't have "" with time Axis-label.
     8
     9here is an example: WCPS 1.5
     10
     11{{{
     12for c in (time3d) return encode(c[Lat(-37.5:-35.5), Long(148:149), time("1950-01-02")], "tiff")
     13}}}
     14
     15Rasql query:
     16
     17{{{
     18SELECT encode(c[80:179,96:295,1], "GTiff" ,
     19"xmin=147.2;xmax=152.32;ymin=-39.66;ymax=-34.54;crs=OGC:AnsiDate?axis-label=time")
     20FROM time3d AS c
     21}}}
     22
     23WCPS 1.0 have this problem with Rasql:
     24
     25{{{
     26select encode((c) [80:180,96:296,1], "PNG",
     27"xmin=148.0;xmax=149.0;ymin=-37.5;ymax=-35.5;crs=OGC:AnsiDate?axis-label="time"")
     28from time3d AS c where oid(c)=117761
     29}}}