| 4 | |
| 5 | '''Bang: update for better understanding:''' |
| 6 | |
| 7 | So, WCPS 1.5 don't have "" with time Axis-label. |
| 8 | |
| 9 | here is an example: WCPS 1.5 |
| 10 | |
| 11 | {{{ |
| 12 | for c in (time3d) return encode(c[Lat(-37.5:-35.5), Long(148:149), time("1950-01-02")], "tiff") |
| 13 | }}} |
| 14 | |
| 15 | Rasql query: |
| 16 | |
| 17 | {{{ |
| 18 | SELECT 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") |
| 20 | FROM time3d AS c |
| 21 | }}} |
| 22 | |
| 23 | WCPS 1.0 have this problem with Rasql: |
| 24 | |
| 25 | {{{ |
| 26 | select 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"") |
| 28 | from time3d AS c where oid(c)=117761 |
| 29 | }}} |