Metadata-Version: 2.3
Name: seareport-data
Version: 0.2.3
Summary: 
Author: Panos Mavrogiorgos
Author-email: pmav99@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: dask[complete]
Requires-Dist: geopandas
Requires-Dist: httpx
Requires-Dist: platformdirs
Requires-Dist: shapely
Requires-Dist: stamina
Requires-Dist: tqdm
Requires-Dist: xarray[accel,io]
Requires-Dist: xxhash
Requires-Dist: zstandard
Description-Content-Type: text/markdown

# `seareport_data`

## Installation

```
pip install seareport_data
```

or

```
conda install -c conda-forge seareport_data
```

## Usage

```python
import seareport_data as D

# ETOPO supports datasets: "bedrock", "surface", "geoid"
# ETOPO supports version: "2022"
# ETOPO supports resolutions: "30sec" and "60sec"
D.etopo_ds("bedrock")
D.etopo_ds("surface", "60sec")
D.etopo_ds("geoid", "60sec", "2022")

# GEBCO supports datasets: "ice" and "sub_ice"
# GEBCO supports versions: "2023" and "2024"
D.gebco_ds("ice", "2023")
D.gebco_ds("sub_ice", "2024")

# GSHHG supports resolutions: "crude", "low", "intermediate", "high", "full" and
# GSHHG supports shorelines: "5" and "6"
D.gshhg_df("low", "5")
D.gshhg_df("intermediate", "6")

# RTOPO supports datasets: "bedrock", "ice_base", "ice_thickness", "surface_elevation"
D.rtopo_ds("bedrock")
D.rtopo_ds("ice_base")
D.rtopo_ds("ice_thickness")
D.rtopo_ds("surface_elevation")

# SRTM15+ doesn't have any options
D.srtm15p_ds()

# UTM doesn't have any options
D.utm_df()

# OSM does have options (e.g. version) but they currently only accept one value so...
D.osm_df()
```

