Changes between Initial Version and Version 11 of Ticket #2185


Ignore:
Timestamp:
Oct 7, 2019, 7:38:08 AM (5 years ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2185

    • Property Owner changed from Dimitar Misev to dkamov
    • Property Status newassigned
  • Ticket #2185 – Description

    initial v11  
    1 [http://doc.rasdaman.org/04_ql-guide.html#the-project-function project] operator should support a feature as same as [https://gdal.org/programs/gdalwarp.html#cmdoption-gdalwarp-tr gdalwarp] to project 2D array to a target CRS with specified axes resolutions corresponding to target CRS.
     1[http://doc.rasdaman.org/04_ql-guide.html#the-project-function project] operator should support projecting a 2D array to a target CRS with specified axes resolutions for the target CRS (like the -tr option in [https://gdal.org/programs/gdalwarp.html#cmdoption-gdalwarp-tr gdalwarp]).
     2
     3The new project() signature would look like
     4{{{
     5project( mddExpr, boundsIn, crsIn, boundsOut, crsOut,
     6         axisResolution1, axisResolution2, resampleAlg, errThreshold )
     7}}}
     8This should be implemented in qlparser (oql.yy, qtproject.cc).