BlockIterator¶
-
class
caris.coverage.BlockIterator¶ Iterator for iterating over a block of Cloud/VRS data.
-
__next__()¶ Returns the next block of Point data.
Returns: A dictionary of band name to numpy arrays for the current block of data. Return type: dict(str -> numpy.ndarray)
-
write()¶ Updates the data for a given band on the current block.
Parameters: - band_name (
str) – The name of the band to update - array (
numpy.ndarray) – The data replacing current block of the given band.
- band_name (
-