|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface ExternalGeospatialRasterReader
Interface to encapsulate geospatial data lookup implementations for raster files.
Some tests like ElevationErrorTest need to read geospatial raster data.
This interface was designed to decouple tests from specific implementations that
can perform these operations.
Since tests need to dynamically instantiate them, their constructors should not require any parameters.
| Method Summary | |
|---|---|
java.lang.Double |
getValue(java.lang.Double longitude,
java.lang.Double latitude,
java.lang.String attributeId)
Returns a cell value given a point and an attribute (raster identification). |
ValueRange |
getValueRange(java.lang.Double longitude,
java.lang.Double latitude,
java.lang.Double uncertainty,
java.lang.String attributeId)
Returns a value range given a point, an uncertainty, and an attribute (raster identification). |
| Method Detail |
|---|
java.lang.Double getValue(java.lang.Double longitude,
java.lang.Double latitude,
java.lang.String attributeId)
throws TestProcessingException
Returns a cell value given a point and an attribute (raster identification).
longitude - Longitude in decimal degrees (datum WGS84).latitude - Latitude in decimal degrees (datum WGS84).attributeId - Raster identifier (typically a file name).
TestProcessingException
ValueRange getValueRange(java.lang.Double longitude,
java.lang.Double latitude,
java.lang.Double uncertainty,
java.lang.String attributeId)
throws TestProcessingException
Returns a value range given a point, an uncertainty, and an attribute (raster identification).
longitude - Longitude in decimal degrees (datum WGS84).latitude - Latitude in decimal degrees (datum WGS84).uncertainty - Uncertainty value.attributeId - Raster identifier (typically a file name).
TestProcessingException
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||