Changes between Version 118 and Version 119 of WKTRaster/SpecificationWorking01
- Timestamp:
- 04/01/10 08:07:01 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WKTRaster/SpecificationWorking01
v118 v119 130 130 Return the georeference's Y pixel size of the raster. [http://en.wikipedia.org/wiki/World_file See]. 131 131 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]. 137 137 138 138 '''ST_UpperLeftX(raster) -> float64''' … … 523 523 Variant 1: ST_SetPixelSize(raster, xsize, ysize) 524 524 525 ~~Variant 2: ST_SetPixelSize(raster, raster)~~526 527 525 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.~~ 528 526 … … 538 536 539 537 '''ST_SetBandNoDataValue(raster, band, value)''' 540 Set the data value that corresponds to NODATA in the given raster andband.538 Set the data value that corresponds to NODATA in the given raster's band. 541 539 542 540 '''ST_BandHasNoDataValue(raster, band)''' … … 568 566 '''Open Question:''' 569 567 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. 570 571 571 572 '''ST_SetUpperLeft(raster, left, top)'''