FMERasterProperties class.
Create an instance of a FMERasterProperties object.
Creates a raster property with the given properties.
Creates a raster properties object from an affine transformation.
Create a copy of the passed in raster properties object.
|
|
|
__init__(MultipleInvocations)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
a new object with type S, a subtype of T
|
|
bool
|
equals(fmerp)
This method evaluates whether two properties have the identical
value. |
|
|
list of float
|
|
float
|
getCellOriginX()
Get the horizontal position of the cell origin within each cell. |
|
|
float
|
getCellOriginY()
Get the vertical position of the cell origin within each cell. |
|
|
string
|
|
int
|
getGCPCount()
Get the number of GCPs stored on the raster geometry. |
|
|
list of dictionaries containing keys (string) and values
(float) or None
|
getGCPs()
Get a list of dictionaries where each dictionary contains 'row',
'col', 'x', 'y', and 'z' (optional). |
|
|
float
|
getLowerLeftCornerX()
Get the ground coordinate value of the lower-left corner of the
unrotated raster, after rotation is applied. |
|
|
float
|
getLowerLeftCornerY()
Get the ground coordinate value of the lower-left corner of the
unrotated raster, after rotation is applied. |
|
|
float
|
getLowerRightCornerX()
Get the ground coordinate value of the lower-right corner of the
unrotated raster, after rotation is applied. |
|
|
float
|
getLowerRightCornerY()
Get the ground coordinate value of the lower-right corner of the
unrotated raster, after rotation is applied. |
|
|
float
|
getMaxX()
Get the ground coordinate value of the right-most side of the
right-most cell of the raster. |
|
|
float
|
getMaxY()
Get the ground coordinate value of the top-most side of the top-most
cell of the raster. |
|
|
float
|
getMinX()
Get the ground coordinate value of the left-most side of the
left-most cell of the raster. |
|
|
float
|
getMinY()
Get the ground coordinate value of the bottom-most side of the
bottom-most cell of the raster. |
|
|
int
|
getNumCols()
Get the number of columns in the raster. |
|
|
int
|
getNumRows()
Get the number of rows in the raster. |
|
|
float
|
getOriginX()
Get the x coordinate of the origin or the raster. |
|
|
float
|
getOriginY()
Get the y coordinate of the origin or the raster. |
|
|
float
|
getRotationX()
Get the rotation angle of the raster in radians from x axis. |
|
|
float
|
getRotationY()
Get the rotation angle of the raster in radians from y axis. |
|
|
float
|
getSpacingX()
Get fixed distance in the x dimension between each pixel in the
raster. |
|
|
float
|
getSpacingY()
Get fixed distance in the y dimension between each pixel in the
raster. |
|
|
float
|
getUpperLeftCornerX()
Get the ground x coordinate value of the upper-left corner of the
unrotated raster, after rotation is applied. |
|
|
float
|
getUpperLeftCornerY()
Get the ground y coordinate value of the upper-left corner of the
unrotated raster, after rotation is applied. |
|
|
float
|
getUpperRightCornerX()
Get the x coordinate value of the upper-right corner of the unrotated
raster, after rotation is applied. |
|
|
float
|
getUpperRightCornerY()
Get the y coordinate value of the upper-right corner of the unrotated
raster, after rotation is applied. |
|
|
bool
|
hasBeenModified()
This method evaluates whether the raster properties have been
modified from their baseline state. |
|
|
None
|
setAsAffineTransform(affineTransform)
This method sets origin, spacing, and rotation as an affine
transformation. |
|
|
None
|
setCellOriginX(xCellOrigin)
This method sets horizontal position of the cell origin within each
cell. |
|
|
None
|
setCellOriginY(yCellOrigin)
This method sets vertical position of the cell origin within each
cell. |
|
|
None
|
|
None
|
setGCPs(dataList,
coordSys)
This method sets a list of GCPs on the properties. |
|
|
None
|
setModified(modified)
This method sets whether raster properties have been modified from
baseline state. |
|
|
None
|
setNumCols(numCols)
This method sets number of columns of the raster. |
|
|
None
|
setNumRows(numRows)
This method sets number of rows of the raster. |
|
|
None
|
setOriginX(xOrigin)
This method sets x value of the upper left corner of the raster in
ground coordinates. |
|
|
None
|
setOriginY(yOrigin)
This method sets y value of the upper left corner of the raster in
ground coordinates. |
|
|
None
|
setRotation(rotation)
This method sets the rotation angle of the raster in radians as
measured in a CCW direction. |
|
|
None
|
setRotationX(xRotation)
This method sets the rotation angle of the raster in radians. |
|
|
None
|
setRotationY(yRotation)
This method sets the rotation angle of the raster in radians. |
|
|
None
|
setSpacingX(xSpacing)
This method sets the x spacing (cell size) of the raster. |
|
|
None
|
setSpacingY(ySpacing)
This method sets the y spacing (cell size) of the raster |
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|