fmeobjects.FMEBandTilePopulator¶
FMEBandTilePopulator.clone() |
Creates FMEBandTilePopulator as a clone of this object. |
FMEBandTilePopulator.getTile(startRow, …) |
Populates a tile of data starting at ‘startRow’ and ‘startCol’ and encapsulating the number of rows and columns defined in the tile. |
FMEBandTilePopulator.setDeleteSourceOnDestroy(…) |
Sets ‘deleteFlag’, identifying whether a populator should delete its source data file when destroyed. |
FMEBandTilePopulator.setOutputSize(rows, cols) |
Sets the output size of the source. |
-
class
FMEBandTilePopulator¶ Bases:
objectFME Band Tile Populator Superclass
FMEBandTilePopulatormust be subclassed.-
__init__¶ Initialize self. See help(type(self)) for accurate signature.
-
clone()¶ Creates
FMEBandTilePopulatoras a clone of this object.Return type: FMEBandTilePopulator Returns: A clone of the original object. This method must be implemented in the
FMEBandTilePopulatorsubclass.
-
getTile(startRow, startCol, tile)¶ Populates a tile of data starting at ‘startRow’ and ‘startCol’ and encapsulating the number of rows and columns defined in the tile.
Parameters: Return type: Concrete class of
FMETiletypeReturns: Tile after populating a tile of data.
Raises: FMEException – An exception is raised if an error occurred.
This method must be implemented in the
FMEBandTilePopulatorsubclass.
-
setDeleteSourceOnDestroy(deleteFlag)¶ Sets ‘deleteFlag’, identifying whether a populator should delete its source data file when destroyed.
Parameters: deleteFlag (bool) – Trueto delete,Falsenot to delete.Return type: None Raises: FMEException – An exception is raised if an error occurred. This method must be implemented in the
FMEBandTilePopulatorsubclass.
-
setOutputSize(rows, cols)¶ Sets the output size of the source.
Parameters: Return type: Returns: New number of rows and columns after resampling the raster.
Raises: FMEException – An exception is raised if an error occurred.
This method must be implemented in the
FMEBandTilePopulatorsubclass.
-