Package uk.ac.rdg.resc.edal.dataset
Interface HZTDataSource
-
- All Superinterfaces:
AutoCloseable,DataSource
- All Known Implementing Classes:
HydromodelVtkUnstructuredDataset.OnDemandVtkMeshDataSource,InMemoryMeshDataSource
public interface HZTDataSource extends DataSource
ADataSourcewhich reads data from a domain where the horizontal layers are based on an unstructured mesh, and the vertical / time dimensions are discrete.- Author:
- Guy Griffiths
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classHZTDataSource.MeshCoordinates3DClass representing a set of 3 integer co-ordinates.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Number>read(String variableId, List<HZTDataSource.MeshCoordinates3D> coordsToRead)Read the underlying data-
Methods inherited from interface uk.ac.rdg.resc.edal.dataset.DataSource
close
-
-
-
-
Method Detail
-
read
List<Number> read(String variableId, List<HZTDataSource.MeshCoordinates3D> coordsToRead) throws DataReadingException
Read the underlying data- Parameters:
variableId- The variable to readcoordsToRead- AListof co-ordinates to read- Returns:
- A
Listof data corresponding to the provided coordinates - Throws:
DataReadingException- If there is a problem reading the underlying data
-
-