CSV DataSrc Python Object#

Full name: geomodelgrids.create.data_srcs.csv.datasrc.CSVFile

CSV file data source.

Data Members#

  • config (dict) Model parameters.

Methods#

CSVFile(config)#

Constructor.

  • config (dict) Model parameters.

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.

Note

We assume a flat top surface at an elevation of 0, so there is not top surface.

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

  • returns None

get_topography_bathymetry(points)#

Query model for elevation of topography/bathymetry at points.

Note

We assume a flat top surface at an elevation of 0, so there is not top surface.

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

  • returns None

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

Query model for values at points.

Warning

Batches with CSV files are not implemented.

  • 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.