LandSea
Documentation for LandSea.
LandSea.LandSeaData
— TypeLandSeaData
Abstract supertype for LandSea Datasets. All LandSeaData
types contain the following fields:
lon
- Vector containing the longitude points for the Land-Sea Datasetlat
- Vector containing the latitude points for the Land-Sea Datasetlsm
- Array containing data regarding the Land-Sea Mask. 1 is Land, 0 is Ocean, NaN is outside the bounds of the GeoRegion
LandSea.LandSeaFlat
— TypeLandSeaFlat <: LandSeaData
A LandSea Dataset that contains only information on the land-sea mask and no topography.
LandSea.LandSeaTopo
— TypeLandSeaTopo <: LandSeaData
A LandSea Dataset that also contains information on the topographic height.
A LandSeaTopo
type will also contain the following field:
z
- Array containing data regarding the Orographic Height in meters. NaN is outside the bounds of the GeoRegion
LandSea.getLandSea
— FunctiongetLandSea(gds::GriddedDataset, geo::GeoRegion) -> nothing / LandSeaData
Downloads a LandSea Dataset to a local repository defined in gds.path
for a GeoRegion defined by geo
.