Changes between Version 42 and Version 43 of WKTRaster/SpecificationFinal01
- Timestamp:
- 09/03/10 13:21:52 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WKTRaster/SpecificationFinal01
v42 v43 296 296 Set the value that corresponds to NODATA in the given raster's band. 297 297 298 '''ST_BandHasNoDataValue(raster, band)'''299 300 Return true if the value stored as a NODATA value for the band must be interpreted as a real NODATA value.301 302 '''ST_SetBandHasNoDataValue(raster, band)'''303 304 Set the band NODATA value as a real NODATA value.305 306 298 '''ST_SetGeoReference(raster, georef)''' 307 299 … … 401 393 This function returns an error if the raster is rotated. In this case you must 402 394 also provide an X. 395 396 ---- 397 == '''Objective 0.1.6j - Being able to set and know if a band nodata value is a true nodata value.''' == 398 399 '''ST_BandHasNoDataValue(raster, band)''' 400 401 Return TRUE if the value stored as a NODATA value for the band must be interpreted as a real NODATA value. 402 403 '''ST_SetBandHasNoDataValue(raster, band)''' 404 405 Set the band NODATA value as a real NODATA value. 406 407 ---- 408 == '''Objective 0.1.6k - Being able to get and set the value of a pixel.''' == 409 410 '''ST_Value(raster, band, x, y)''' 411 412 Return the value (as a double precision number) of the pixel located at x, y in the specified band. 413 414 '''ST_SetValue(raster, band, x, y, val)''' 415 416 Set the value of the pixel located at x, y in the specified band. Return the modified raster. 403 417 404 418 ----