DataSrc Python Object#

Full name: geomodelgrids.create.core.datasrc.DataSrc

Abstract base class defining the data source interface.

Methods#

DataSrc()#

Constructor.

initialize()#

Initialize data source.

get_metadata()#

Get any additional metadata provided by data source.

  • returns Dict with additional metadata.

get_top_surface(points)#

Query model for elevation of top surface at points.

  • points[in] (numpy.array [Nx, Ny]) Coordinates of points in model coordinates.

  • returns Elevation of top surface at points.

get_topography_bathymetry(points)#

Query model for elevation of topography/bathymetry at points.

  • points[in] (numpy.array [Nx, Ny]) Coordinates of points in model coordinates.

  • returns Elevation of topography/bathymetry surface at points.

get_values(block, top_surface, topo_bathy, batch=None)#

Query model for values at points.

  • block[in] (Block) Block information.

  • top_surface[in] (Surface) Top surface.

  • topo_bathy[in] (Surface) Topography/bathymetry surface to define depth.

  • batch[in] (BatchGenerator3D) Current batch of points in block.

  • returns Values at points.