LandSea

Documentation for LandSea.

LandSea.LandSeaDataType
LandSeaData

Abstract supertype for LandSea Datasets. All LandSeaData types contain the following fields:

  • lon - Vector containing the longitude points for the Land-Sea Dataset
  • lat - Vector containing the latitude points for the Land-Sea Dataset
  • lsm - Array containing data regarding the Land-Sea Mask. 1 is Land, 0 is Ocean, NaN is outside the bounds of the GeoRegion
source
LandSea.LandSeaFlatType
LandSeaFlat <: LandSeaData

A LandSea Dataset that contains only information on the land-sea mask and no topography.

source
LandSea.LandSeaTopoType
LandSeaTopo <: 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
source
LandSea.getLandSeaFunction
getLandSea(gds::GriddedDataset, geo::GeoRegion) -> nothing / LandSeaData

Downloads a LandSea Dataset to a local repository defined in gds.path for a GeoRegion defined by geo.

source