123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930 |
- """!@package grass.temporal
- @brief GRASS Python scripting module (temporal GIS functions)
- Temporal GIS related functions to be used in Python scripts.
- Usage:
- @code
- import grass.temporal as tgis
- strds = tgis.space_time_raster_dataset("soils_1950_2010")
- ...
- @endcode
- (C) 2008-2011 by the GRASS Development Team
- This program is free software under the GNU General Public
- License (>=v2). Read the file COPYING that comes with GRASS
- for details.
- @author Soeren Gebbert
- """
- import getpass
- from ctypes import *
- import grass.lib.gis as libgis
- import grass.lib.raster as libraster
- import grass.lib.vector as libvector
- import grass.lib.raster3d as libraster3d
- import grass.script.array as garray
- from datetime_math import *
- from abstract_map_dataset import *
- from abstract_space_time_dataset import *
- ###############################################################################
- class raster_dataset(AbstractMapDataset):
- """!Raster dataset class
- This class provides functions to select, update, insert or delete raster
- map information and valid time stamps into the SQL temporal database.
- """
- def __init__(self, ident):
- AbstractMapDataset.__init__(self)
- self.reset(ident)
- def get_type(self):
- return "raster"
- def get_new_instance(self, ident):
- """!Return a new instance with the type of this class"""
- return raster_dataset(ident)
- def get_new_stds_instance(self, ident):
- """!Return a new space time dataset instance in which maps are stored with the type of this class"""
- return space_time_raster_dataset(ident)
- def get_stds_register(self):
- """!Return the space time dataset register table name in which stds are listed in which this map is registered"""
- return self.metadata.get_strds_register()
- def set_stds_register(self, name):
- """!Set the space time dataset register table name in which stds are listed in which this map is registered"""
- self.metadata.set_strds_register(name)
- def spatial_overlapping(self, dataset):
- """!Return True if the spatial extents 2d overlap"""
-
- return self.spatial_extent.overlapping_2d(dataset.spatial_extent)
- def spatial_relation(self, dataset):
- """Return the two dimensional spatial relation"""
-
- return self.spatial_extent.spatial_relation_2d(dataset.spatial_extent)
-
- def get_np_array(self):
- """Return this raster map as memmap numpy style array to access the raster
- values in numpy style without loading the whole map in the RAM.
-
- In case this raster map does exists in the grass spatial database, the map
- will be exported using r.out.bin to a temporary location and assigned to the
- memmap object that is returned by this function.
-
- In case the raster map does not exists, an empty temporary binary file will be created
- and assigned to the memap object.
-
- You need to call the write function to write the memmap array back into grass.
- """
-
- a = garray.array()
-
- if self.map_exists():
- a.read(self.get_map_id())
-
- return a
-
- def reset(self, ident):
- """!Reset the internal structure and set the identifier"""
- self.base = RasterBase(ident=ident)
- self.absolute_time = RasterAbslouteTime(ident=ident)
- self.relative_time = RasterRelativeTime(ident=ident)
- self.spatial_extent = RasterSpatialExtent(ident=ident)
- self.metadata = RasterMetadata(ident=ident)
-
- def has_grass_timestamp(self):
- """!Check if a grass file bsased time stamp exists for this map.
- """
- if G_has_raster_timestamp(self.get_name(), self.get_mapset()):
- return True
- else:
- return False
-
- def write_timestamp_to_grass(self):
- """!Write the timestamp of this map into the map metadata in the grass file system based spatial
- database.
-
- Internally the libgis API functions are used for writing
- """
-
- ts = libgis.TimeStamp()
- libgis.G_scan_timestamp(byref(ts), self._convert_timestamp())
- check = libgis.G_write_raster_timestamp(self.get_name(), byref(ts))
-
- if check == -1:
- core.error(_("Unable to create timestamp file for raster map <%s>"%(self.get_map_id())))
-
- if check == -2:
- core.error(_("Invalid datetime in timestamp for raster map <%s>"%(self.get_map_id())))
-
-
- def remove_timestamp_from_grass(self):
- """!Remove the timestamp from the grass file system based spatial database
-
- Internally the libgis API functions are used for removal
- """
- check = libgis.G_remove_raster_timestamp(self.get_name())
-
- if check == -1:
- core.error(_("Unable to remove timestamp for raster map <%s>"%(self.get_name())))
-
- def map_exists(self):
- """!Return True in case the map exists in the grass spatial database
-
- @return True if map exists, False otherwise
- """
- mapset = libgis.G_find_raster(self.get_name(), self.get_mapset())
-
- if not mapset:
- return False
-
- return True
-
- def read_info(self):
- """!Read the raster map info from the file system and store the content
- into a dictionary
-
- This method uses the ctypes interface to the gis and raster libraries
- to read the map metadata information
- """
-
- kvp = {}
-
- name = self.get_name()
- mapset = self.get_mapset()
-
- if not self.map_exists():
- core.fatal(_("Raster map <%s> not found" % name))
-
- # Read the region information
- region = libgis.Cell_head()
- libraster.Rast_get_cellhd(name, mapset, byref(region))
-
- kvp["north"] = region.north
- kvp["south"] = region.south
- kvp["east"] = region.east
- kvp["west"] = region.west
- kvp["nsres"] = region.ns_res
- kvp["ewres"] = region.ew_res
- kvp["rows"] = region.cols
- kvp["cols"] = region.rows
-
- maptype = libraster.Rast_map_type(name, mapset)
-
- if maptype == libraster.DCELL_TYPE:
- kvp["datatype"] = "DCELL"
- elif maptype == libraster.FCELL_TYPE:
- kvp["datatype"] = "FCELL"
- elif maptype == libraster.CELL_TYPE:
- kvp["datatype"] = "CELL"
-
- # Read range
- if libraster.Rast_map_is_fp(name, mapset):
- range = libraster.FPRange()
- libraster.Rast_init_fp_range (byref(range))
- ret = libraster.Rast_read_fp_range(name, mapset, byref(range))
- if ret < 0:
- core.fatal(_("Unable to read range file"))
- if ret == 2:
- kvp["min"] = None
- kvp["max"] = None
- else:
- min = libgis.DCELL()
- max = libgis.DCELL()
- libraster.Rast_get_fp_range_min_max(byref(range), byref(min), byref(max))
- kvp["min"] = min.value
- kvp["max"] = max.value
- else:
- range = libraster.Range()
- libraster.Rast_init_range (byref(range))
- ret = libraster.Rast_read_range(name, mapset, byref(range))
- if ret < 0:
- core.fatal(_("Unable to read range file"))
- if ret == 2:
- kvp["min"] = None
- kvp["max"] = None
- else:
- min = libgis.CELL()
- max = libgis.CELL()
- libraster.Rast_get_range_min_max(byref(range), byref(min), byref(max))
- kvp["min"] = min.value
- kvp["max"] = max.value
-
- return kvp
- def load(self):
- """!Load all info from an existing raster map into the internal structure"""
- # Fill base information
- self.base.set_creator(str(getpass.getuser()))
- # Get the data from an existing raster map
- kvp = self.read_info()
-
- # Fill spatial extent
- self.set_spatial_extent(north=kvp["north"], south=kvp["south"], \
- east=kvp["east"], west=kvp["west"])
- # Fill metadata
- self.metadata.set_nsres(kvp["nsres"])
- self.metadata.set_ewres(kvp["ewres"])
- self.metadata.set_datatype(kvp["datatype"])
- self.metadata.set_min(kvp["min"])
- self.metadata.set_max(kvp["max"])
- rows = kvp["rows"]
- cols = kvp["cols"]
- ncells = cols * rows
- self.metadata.set_cols(cols)
- self.metadata.set_rows(rows)
- self.metadata.set_number_of_cells(ncells)
- ###############################################################################
- class raster3d_dataset(AbstractMapDataset):
- """!Raster3d dataset class
- This class provides functions to select, update, insert or delete raster3d
- map information and valid time stamps into the SQL temporal database.
- """
- def __init__(self, ident):
- AbstractMapDataset.__init__(self)
- self.reset(ident)
- def get_type(self):
- return "raster3d"
- def get_new_instance(self, ident):
- """!Return a new instance with the type of this class"""
- return raster3d_dataset(ident)
- def get_new_stds_instance(self, ident):
- """!Return a new space time dataset instance in which maps are stored with the type of this class"""
- return space_time_raster3d_dataset(ident)
- def get_stds_register(self):
- """!Return the space time dataset register table name in which stds are listed in which this map is registered"""
- return self.metadata.get_str3ds_register()
- def set_stds_register(self, name):
- """!Set the space time dataset register table name in which stds are listed in which this map is registered"""
- self.metadata.set_str3ds_register(name)
- def spatial_overlapping(self, dataset):
- """!Return True if the spatial extents overlap"""
-
- if self.get_type() == dataset.get_type() or dataset.get_type() == "str3ds":
- return self.spatial_extent.overlapping(dataset.spatial_extent)
- else:
- return self.spatial_extent.overlapping_2d(dataset.spatial_extent)
- def spatial_relation(self, dataset):
- """!Return the two or three dimensional spatial relation"""
-
- if self.get_type() == dataset.get_type() or dataset.get_type() == "str3ds":
- return self.spatial_extent.spatial_relation(dataset.spatial_extent)
- else:
- return self.spatial_extent.spatial_relation_2d(dataset.spatial_extent)
-
- def reset(self, ident):
- """!Reset the internal structure and set the identifier"""
- self.base = Raster3DBase(ident=ident)
- self.absolute_time = Raster3DAbslouteTime(ident=ident)
- self.relative_time = Raster3DRelativeTime(ident=ident)
- self.spatial_extent = Raster3DSpatialExtent(ident=ident)
- self.metadata = Raster3DMetadata(ident=ident)
- def has_grass_timestamp(self):
- """!Check if a grass file bsased time stamp exists for this map.
- """
- if G_has_raster3d_timestamp(self.get_name(), self.get_mapset()):
- return True
- else:
- return False
-
- def write_timestamp_to_grass(self):
- """!Write the timestamp of this map into the map metadata in the grass file system based spatial
- database.
-
- Internally the libgis API functions are used for writing
- """
-
- ts = libgis.TimeStamp()
- libgis.G_scan_timestamp(byref(ts), self._convert_timestamp())
- check = libgis.G_write_raster3d_timestamp(self.get_name(), byref(ts))
-
- if check == -1:
- core.error(_("Unable to create timestamp file for raster3d map <%s>"%(self.get_map_id())))
-
- if check == -2:
- core.error(_("Invalid datetime in timestamp for raster3d map <%s>"%(self.get_map_id())))
-
-
- def remove_timestamp_from_grass(self):
- """!Remove the timestamp from the grass file system based spatial database
-
- Internally the libgis API functions are used for removal
- """
- check = libgis.G_remove_raster3d_timestamp(self.get_name())
-
- if check == -1:
- core.error(_("Unable to remove timestamp for raster3d map <%s>"%(self.get_name())))
-
- def map_exists(self):
- """!Return True in case the map exists in the grass spatial database
-
- @return True if map exists, False otherwise
- """
- mapset = libgis.G_find_raster3d(self.get_name(), self.get_mapset())
-
- if not mapset:
- return False
-
- return True
-
- def read_info(self):
- """!Read the raster3d map info from the file system and store the content
- into a dictionary
-
- This method uses the ctypes interface to the gis and raster3d libraries
- to read the map metadata information
- """
-
- kvp = {}
-
- name = self.get_name()
- mapset = self.get_mapset()
-
- if not self.map_exists():
- core.fatal(_("Raster3d map <%s> not found" % name))
-
- # Read the region information
- region = libraster3d.RASTER3D_Region()
- libraster3d.Rast3d_read_region_map(name, mapset, byref(region))
-
- kvp["north"] = region.north
- kvp["south"] = region.south
- kvp["east"] = region.east
- kvp["west"] = region.west
- kvp["nsres"] = region.ns_res
- kvp["ewres"] = region.ew_res
- kvp["tbres"] = region.tb_res
- kvp["rows"] = region.cols
- kvp["cols"] = region.rows
- kvp["depths"] = region.depths
- kvp["top"] = region.top
- kvp["bottom"] = region.bottom
-
- # We need to open the map, this function returns a void pointer
- # but we may need the correct type which is RASTER3D_Map, hence the casting
- g3map = cast(libraster3d.Rast3d_open_cell_old(name, mapset, \
- libraster3d.RASTER3D_DEFAULT_WINDOW, libraster3d.RASTER3D_TILE_SAME_AS_FILE, \
- libraster3d.RASTER3D_NO_CACHE), POINTER(libraster3d.RASTER3D_Map))
-
- if not g3map:
- core.fatal(_("Unable to open 3D raster map <%s>"%(name)));
- maptype = libraster3d.Rast3d_file_type_map(g3map)
-
- if maptype == libraster.DCELL_TYPE:
- kvp["datatype"] = "DCELL"
- elif maptype == libraster.FCELL_TYPE:
- kvp["datatype"] = "FCELL"
-
- # Read range
- min = libgis.DCELL()
- max = libgis.DCELL()
- ret = libraster3d.Rast3d_range_load(g3map)
- if not ret:
- core.fatal(_("Unable to load range of 3D raster map <%s>"%(name)));
- libraster3d.Rast3d_range_min_max(g3map, byref(min), byref(max))
-
- if min.value != min.value:
- kvp["min"] = None
- else:
- kvp["min"] = float(min.value)
- if max.value != max.value:
- kvp["max"] = None
- else:
- kvp["max"] = float(max.value)
-
- if not libraster3d.Rast3d_close(g3map):
- G_fatal_error(_("Unable to close 3D raster map <%s>"%(name)))
-
- return kvp
-
- def load(self):
- """!Load all info from an existing raster3d map into the internal structure"""
- # Fill base information
- self.base.set_creator(str(getpass.getuser()))
- # Fill spatial extent
- # Get the data from an existing raster map
- kvp = self.read_info()
-
- self.set_spatial_extent(north=kvp["north"], south=kvp["south"], \
- east=kvp["east"], west=kvp["west"],\
- top=kvp["top"], bottom=kvp["bottom"])
- # Fill metadata
- self.metadata.set_nsres(kvp["nsres"])
- self.metadata.set_ewres(kvp["ewres"])
- self.metadata.set_tbres(kvp["tbres"])
- self.metadata.set_datatype(kvp["datatype"])
- self.metadata.set_min(kvp["min"])
- self.metadata.set_max(kvp["max"])
- rows = kvp["rows"]
- cols = kvp["cols"]
- depths = kvp["depths"]
- ncells = cols * rows
- ncells = cols * rows * depths
- self.metadata.set_cols(cols)
- self.metadata.set_rows(rows)
- self.metadata.set_depths(depths)
- self.metadata.set_number_of_cells(ncells)
- ###############################################################################
- class vector_dataset(AbstractMapDataset):
- """!Vector dataset class
- This class provides functions to select, update, insert or delete vector
- map information and valid time stamps into the SQL temporal database.
- """
- def __init__(self, ident):
- AbstractMapDataset.__init__(self)
- self.reset(ident)
- def get_type(self):
- return "vector"
- def get_new_instance(self, ident):
- """!Return a new instance with the type of this class"""
- return vector_dataset(ident)
- def get_new_stds_instance(self, ident):
- """!Return a new space time dataset instance in which maps are stored with the type of this class"""
- return space_time_vector_dataset(ident)
- def get_stds_register(self):
- """!Return the space time dataset register table name in which stds are listed in which this map is registered"""
- return self.metadata.get_stvds_register()
- def set_stds_register(self, name):
- """!Set the space time dataset register table name in which stds are listed in which this map is registered"""
- self.metadata.set_stvds_register(name)
- def get_layer(self):
- """!Return the layer"""
- return self.base.get_layer()
- def spatial_overlapping(self, dataset):
- """!Return True if the spatial extents 2d overlap"""
-
- return self.spatial_extent.overlapping_2d(dataset.spatial_extent)
- def spatial_relation(self, dataset):
- """!Return the two dimensional spatial relation"""
-
- return self.spatial_extent.spatial_relation_2d(dataset.spatial_extent)
-
- def reset(self, ident):
- """!Reset the internal structure and set the identifier"""
- self.base = VectorBase(ident=ident)
- self.absolute_time = VectorAbslouteTime(ident=ident)
- self.relative_time = VectorRelativeTime(ident=ident)
- self.spatial_extent = VectorSpatialExtent(ident=ident)
- self.metadata = VectorMetadata(ident=ident)
- def has_grass_timestamp(self):
- """!Check if a grass file bsased time stamp exists for this map.
- """
- if G_has_raster_timestamp(self.get_name(), self.get_layer(), self.get_mapset()):
- return True
- else:
- return False
-
- def write_timestamp_to_grass(self):
- """!Write the timestamp of this map into the map metadata in the grass file system based spatial
- database.
-
- Internally the libgis API functions are used for writing
- """
-
- ts = libgis.TimeStamp()
- libgis.G_scan_timestamp(byref(ts), self._convert_timestamp())
- check = libgis.G_write_vector_timestamp(self.get_name(), self.get_layer(), byref(ts))
-
- if check == -1:
- core.error(_("Unable to create timestamp file for vector map <%s>"%(self.get_map_id())))
-
- if check == -2:
- core.error(_("Invalid datetime in timestamp for vector map <%s>"%(self.get_map_id())))
-
-
- def remove_timestamp_from_grass(self):
- """!Remove the timestamp from the grass file system based spatial database
-
- Internally the libgis API functions are used for removal
- """
- check = libgis.G_remove_vector_timestamp(self.get_name(), self.get_layer())
-
- if check == -1:
- core.error(_("Unable to remove timestamp for vector map <%s>"%(self.get_name())))
-
- def map_exists(self):
- """!Return True in case the map exists in the grass spatial database
-
- @return True if map exists, False otherwise
- """
- mapset = libgis.G_find_vector(self.get_name(), self.get_mapset())
-
- if not mapset:
- return False
-
- return True
-
- def read_info(self):
- """!Read the vector map info from the file system and store the content
- into a dictionary
-
- This method uses the ctypes interface to the vector libraries
- to read the map metadata information
- """
-
- kvp = {}
-
- name = self.get_name()
- mapset = self.get_mapset()
-
- if not self.map_exists():
- core.fatal(_("Vector map <%s> not found" % name))
-
- # The vector map structure
- Map = libvector.Map_info()
-
- # We open the maps always in topology mode first
- libvector.Vect_set_open_level(2)
- with_topo = True
-
- # Code lend from v.info main.c
- if libvector.Vect_open_old_head2(byref(Map), name, mapset, "1") < 2:
- # force level 1, open fully
- # NOTE: number of points, lines, boundaries, centroids, faces, kernels is still available
- libvector.Vect_set_open_level(1) # no topology
- with_topo = False
- core.message(_("Open map without topology support"))
- if libvector.Vect_open_old2(byref(Map), name, mapset, "1") < 1:
- core.fatal(_("Unable to open vector map <%s>"%(libvector.Vect_get_full_name(byref(Map)))))
- # Read the extent information
- bbox = libvector.bound_box()
- libvector.Vect_get_map_box(byref(Map), byref(bbox));
-
- kvp["north"] = bbox.N
- kvp["south"] = bbox.S
- kvp["east"] = bbox.E
- kvp["west"] = bbox.W
- kvp["top"] = bbox.T
- kvp["bottom"] = bbox.B
-
- kvp["is_3d"] = bool(libvector.Vect_is_3d(byref(Map)))
-
- # Read number of features
- if with_topo:
- kvp["points"] = libvector.Vect_get_num_primitives(byref(Map), libvector.GV_POINT)
- kvp["lines"] = libvector.Vect_get_num_primitives(byref(Map), libvector.GV_LINE)
- kvp["boundaries"] = libvector.Vect_get_num_primitives(byref(Map), libvector.GV_BOUNDARY)
- kvp["centroids"] = libvector.Vect_get_num_primitives(byref(Map), libvector.GV_CENTROID)
- kvp["faces"] = libvector.Vect_get_num_primitives(byref(Map), libvector.GV_FACE)
- kvp["kernels"] = libvector.Vect_get_num_primitives(byref(Map), libvector.GV_KERNEL)
-
- # Summarize the primitives
- kvp["primitives"] = kvp["points"] + kvp["lines"] + kvp["boundaries"] + kvp["centroids"]
- if kvp["is_3d"]:
- kvp["primitives"] += kvp["faces"] + kvp["kernels"]
- # Read topology information
- kvp["nodes"] = libvector.Vect_get_num_nodes(byref(Map))
- kvp["areas"] = libvector.Vect_get_num_areas(byref(Map))
- kvp["islands"] = libvector.Vect_get_num_islands(byref(Map))
- kvp["holes"] = libvector.Vect_get_num_holes(byref(Map))
- kvp["volumes"] = libvector.Vect_get_num_primitives(byref(Map), libvector.GV_VOLUME)
- else:
- kvp["points"] = None
- kvp["lines"] = None
- kvp["boundaries"] = None
- kvp["centroids"] = None
- kvp["faces"] = None
- kvp["kernels"] = None
- kvp["primitives"] = None
- kvp["nodes"] = None
- kvp["areas"] = None
- kvp["islands"] = None
- kvp["holes"] = None
- kvp["volumes"] = None
-
- libvector.Vect_close(byref(Map))
-
- return kvp
-
- def load(self):
- """!Load all info from an existing vector map into the internal structure"""
- # Fill base information
- self.base.set_creator(str(getpass.getuser()))
- # Get the data from an existing raster map
- kvp = self.read_info()
-
- # Fill spatial extent
- self.set_spatial_extent(north=kvp["north"], south=kvp["south"], \
- east=kvp["east"], west=kvp["west"],\
- top=kvp["top"], bottom=kvp["bottom"])
- # Fill metadata
- self.metadata.set_3d_info(kvp["is_3d"])
- self.metadata.set_points(kvp["points"])
- self.metadata.set_lines(kvp["lines"])
- self.metadata.set_boundaries(kvp["boundaries"])
- self.metadata.set_centroids(kvp["centroids"])
- self.metadata.set_faces(kvp["faces"])
- self.metadata.set_kernels(kvp["kernels"])
- self.metadata.set_primitives(kvp["primitives"])
- self.metadata.set_nodes(kvp["nodes"])
- self.metadata.set_areas(kvp["areas"])
- self.metadata.set_islands(kvp["islands"])
- self.metadata.set_holes(kvp["holes"])
- self.metadata.set_volumes(kvp["volumes"])
- ###############################################################################
- class space_time_raster_dataset(AbstractSpaceTimeDataset):
- """!Space time raster dataset class
- """
- def __init__(self, ident):
- AbstractSpaceTimeDataset.__init__(self, ident)
- def get_type(self):
- return "strds"
- def get_new_instance(self, ident):
- """!Return a new instance with the type of this class"""
- return space_time_raster_dataset(ident)
- def get_new_map_instance(self, ident):
- """!Return a new instance of a map dataset which is associated with the type of this class"""
- return raster_dataset(ident)
- def get_map_register(self):
- """!Return the name of the map register table"""
- return self.metadata.get_raster_register()
- def set_map_register(self, name):
- """!Set the name of the map register table"""
- self.metadata.set_raster_register(name)
- def spatial_overlapping(self, dataset):
- """!Return True if the spatial extents 2d overlap"""
-
- return self.spatial_extent.overlapping_2d(dataset.spatial_extent)
- def spatial_relation(self, dataset):
- """!Return the two dimensional spatial relation"""
-
- return self.spatial_extent.spatial_relation_2d(dataset.spatial_extent)
-
- def reset(self, ident):
- """!Reset the internal structure and set the identifier"""
- self.base = STRDSBase(ident=ident)
- self.base.set_creator(str(getpass.getuser()))
- self.absolute_time = STRDSAbslouteTime(ident=ident)
- self.relative_time = STRDSRelativeTime(ident=ident)
- self.spatial_extent = STRDSSpatialExtent(ident=ident)
- self.metadata = STRDSMetadata(ident=ident)
- ###############################################################################
- class space_time_raster3d_dataset(AbstractSpaceTimeDataset):
- """!Space time raster3d dataset class
- """
- def __init__(self, ident):
- AbstractSpaceTimeDataset.__init__(self, ident)
- def get_type(self):
- return "str3ds"
- def get_new_instance(self, ident):
- """!Return a new instance with the type of this class"""
- return space_time_raster3d_dataset(ident)
- def get_new_map_instance(self, ident):
- """!Return a new instance of a map dataset which is associated with the type of this class"""
- return raster3d_dataset(ident)
- def get_map_register(self):
- """!Return the name of the map register table"""
- return self.metadata.get_raster3d_register()
- def set_map_register(self, name):
- """!Set the name of the map register table"""
- self.metadata.set_raster3d_register(name)
- def spatial_overlapping(self, dataset):
- """!Return True if the spatial extents overlap"""
-
- if self.get_type() == dataset.get_type() or dataset.get_type() == "str3ds":
- return self.spatial_extent.overlapping(dataset.spatial_extent)
- else:
- return self.spatial_extent.overlapping_2d(dataset.spatial_extent)
- def spatial_relation(self, dataset):
- """!Return the two or three dimensional spatial relation"""
-
- if self.get_type() == dataset.get_type() or dataset.get_type() == "str3ds":
- return self.spatial_extent.spatial_relation(dataset.spatial_extent)
- else:
- return self.spatial_extent.spatial_relation_2d(dataset.spatial_extent)
-
- def reset(self, ident):
- """!Reset the internal structure and set the identifier"""
- self.base = STR3DSBase(ident=ident)
- self.base.set_creator(str(getpass.getuser()))
- self.absolute_time = STR3DSAbslouteTime(ident=ident)
- self.relative_time = STR3DSRelativeTime(ident=ident)
- self.spatial_extent = STR3DSSpatialExtent(ident=ident)
- self.metadata = STR3DSMetadata(ident=ident)
- ###############################################################################
- class space_time_vector_dataset(AbstractSpaceTimeDataset):
- """!Space time vector dataset class
- """
- def __init__(self, ident):
- AbstractSpaceTimeDataset.__init__(self, ident)
- def get_type(self):
- return "stvds"
- def get_new_instance(self, ident):
- """!Return a new instance with the type of this class"""
- return space_time_vector_dataset(ident)
- def get_new_map_instance(self, ident):
- """!Return a new instance of a map dataset which is associated with the type of this class"""
- return vector_dataset(ident)
- def get_map_register(self):
- """!Return the name of the map register table"""
- return self.metadata.get_vector_register()
- def set_map_register(self, name):
- """!Set the name of the map register table"""
- self.metadata.set_vector_register(name)
- def spatial_overlapping(self, dataset):
- """!Return True if the spatial extents 2d overlap"""
-
- return self.spatial_extent.overlapping_2d(dataset.spatial_extent)
- def spatial_relation(self, dataset):
- """!Return the two dimensional spatial relation"""
-
- return self.spatial_extent.spatial_relation_2d(dataset.spatial_extent)
- def reset(self, ident):
- """!Reset the internal structure and set the identifier"""
- self.base = STVDSBase(ident=ident)
- self.base.set_creator(str(getpass.getuser()))
- self.absolute_time = STVDSAbslouteTime(ident=ident)
- self.relative_time = STVDSRelativeTime(ident=ident)
- self.spatial_extent = STVDSSpatialExtent(ident=ident)
- self.metadata = STVDSMetadata(ident=ident)
- ###############################################################################
- class AbstractDatasetComparisonKeyStartTime(object):
- """!This comparison key can be used to sort lists of abstract datasets by start time
- Example:
- # Return all maps in a space time raster dataset as map objects
- map_list = strds.get_registered_maps_as_objects()
- # Sort the maps in the list by start time
- sorted_map_list = sorted(
- map_list, key=AbstractDatasetComparisonKeyStartTime)
- """
- def __init__(self, obj, *args):
- self.obj = obj
- def __lt__(self, other):
- startA, endA = self.obj.get_valid_time()
- startB, endB = other.obj.get_valid_time()
- return startA < startB
- def __gt__(self, other):
- startA, endA = self.obj.get_valid_time()
- startB, endB = other.obj.get_valid_time()
- return startA > startB
- def __eq__(self, other):
- startA, endA = self.obj.get_valid_time()
- startB, endB = other.obj.get_valid_time()
- return startA == startB
- def __le__(self, other):
- startA, endA = self.obj.get_valid_time()
- startB, endB = other.obj.get_valid_time()
- return startA <= startB
- def __ge__(self, other):
- startA, endA = self.obj.get_valid_time()
- startB, endB = other.obj.get_valid_time()
- return startA >= startB
- def __ne__(self, other):
- startA, endA = self.obj.get_valid_time()
- startB, endB = other.obj.get_valid_time()
- return startA != startB
- ###############################################################################
- class AbstractDatasetComparisonKeyEndTime(object):
- """!This comparison key can be used to sort lists of abstract datasets by end time
- Example:
- # Return all maps in a space time raster dataset as map objects
- map_list = strds.get_registered_maps_as_objects()
- # Sort the maps in the list by end time
- sorted_map_list = sorted(
- map_list, key=AbstractDatasetComparisonKeyEndTime)
- """
- def __init__(self, obj, *args):
- self.obj = obj
- def __lt__(self, other):
- startA, endA = self.obj.get_valid_time()
- startB, endB = other.obj.get_valid_time()
- return endA < endB
- def __gt__(self, other):
- startA, endA = self.obj.get_valid_time()
- startB, endB = other.obj.get_valid_time()
- return endA > endB
- def __eq__(self, other):
- startA, endA = self.obj.get_valid_time()
- startB, endB = other.obj.get_valid_time()
- return endA == endB
- def __le__(self, other):
- startA, endA = self.obj.get_valid_time()
- startB, endB = other.obj.get_valid_time()
- return endA <= endB
- def __ge__(self, other):
- startA, endA = self.obj.get_valid_time()
- startB, endB = other.obj.get_valid_time()
- return endA >= endB
- def __ne__(self, other):
- startA, endA = self.obj.get_valid_time()
- startB, endB = other.obj.get_valid_time()
- return endA != endB
|