Interface SeriesReader
public interface SeriesReader
An interface to describe Data Access Objects to read ImageSeries beans.
- Since:
- 10.0
- Version:
- 11.3
- Author:
- Luke
-
Method Summary
Modifier and TypeMethodDescriptionReads available image dates for a given type.getTile
(String imgType, Instant effDate, TileAddress addr) Reads a tile.getTypes()
Lists the available imagery types.
-
Method Details
-
getTypes
Lists the available imagery types.- Returns:
- a Collection of types
- Throws:
DAOException
- if an error occurs
-
getDates
Reads available image dates for a given type.- Parameters:
type
- the image type- Returns:
- a Collection of Dates
- Throws:
DAOException
- if a timeout or I/O error occurs
-
getTile
Reads a tile.- Parameters:
imgType
- the image typeeffDate
- the effective dateaddr
- the TileAddress- Returns:
- a PNGTile, or null if none
- Throws:
DAOException
- if an error occurs
-