Changes between Version 118 and Version 119 of WKTRaster/SpecificationWorking01


Ignore:
Timestamp:
Apr 1, 2010, 8:07:01 AM (14 years ago)
Author:
pracine
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationWorking01

    v118 v119  
    130130 Return the georeference's Y pixel size of the raster. [http://en.wikipedia.org/wiki/World_file See].
    131131
    132 '''ST_RotationX(raster) -> float64'''
    133  Return the georeference's X rotation.
    134 
    135 '''ST_RotationY(raster) -> float64'''
    136  Return the georeference's Y rotation. [http://en.wikipedia.org/wiki/World_file See].
     132'''ST_SkewX(raster) -> float64'''
     133 Return the georeference's X skew (or rotation parameter in some documentation).[http://en.wikipedia.org/wiki/World_file See].
     134
     135'''ST_SkewY(raster) -> float64'''
     136 Return the georeference's Y skew (or rotation parameter in some documentation). [http://en.wikipedia.org/wiki/World_file See].
    137137
    138138'''ST_UpperLeftX(raster) -> float64'''
     
    523523 Variant 1: ST_SetPixelSize(raster, xsize, ysize)
    524524
    525  ~~Variant 2: ST_SetPixelSize(raster, raster)~~
    526 
    527525 Set the pixel size (cell size) on the specified raster. The base method sets the X and Y pixel size to the same value. The first variant sets the pixel sizes to the individually specified x and y sizes.  ~~The second variant sets the pixel size to the pixel size of the 2nd raster parameter.~~
    528526
     
    538536
    539537'''ST_SetBandNoDataValue(raster, band, value)'''
    540  Set the data value that corresponds to NODATA in the given raster and band.
     538 Set the data value that corresponds to NODATA in the given raster's band.
    541539
    542540'''ST_BandHasNoDataValue(raster, band)'''
     
    568566 '''Open Question:'''
    569567  PR: The angle should be provided in radian or in degree?
     568
     569'''ST_Rotation(raster) -> float64'''
     570 Return the georeference's rotation angle in (degree or radiant?) derived from the pixel size and the skew.
    570571
    571572'''ST_SetUpperLeft(raster, left, top)'''