├── .github └── workflows │ ├── ci.yml │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── bathyreq ├── __init__.py ├── request.py └── sources │ ├── __init__.py │ ├── blue_topo.py │ ├── factory.py │ ├── gebco.py │ └── ncei.py ├── docs ├── docs │ ├── assets │ │ ├── banner.png │ │ └── logo.png │ ├── index.md │ ├── license.md │ └── reference │ │ ├── request.md │ │ ├── sources.md │ │ ├── sources_bluetopo.md │ │ ├── sources_gebco.md │ │ └── sources_ncei.md ├── logo │ ├── make.py │ └── requirements.txt └── mkdocs.yml ├── pyproject.toml ├── requirements.txt └── tests ├── __init__.py ├── test_request.py └── test_sources ├── __init__.py ├── test_factory.py ├── test_gebco.py └── test_ncei.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/README.md -------------------------------------------------------------------------------- /bathyreq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/bathyreq/__init__.py -------------------------------------------------------------------------------- /bathyreq/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/bathyreq/request.py -------------------------------------------------------------------------------- /bathyreq/sources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/bathyreq/sources/__init__.py -------------------------------------------------------------------------------- /bathyreq/sources/blue_topo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/bathyreq/sources/blue_topo.py -------------------------------------------------------------------------------- /bathyreq/sources/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/bathyreq/sources/factory.py -------------------------------------------------------------------------------- /bathyreq/sources/gebco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/bathyreq/sources/gebco.py -------------------------------------------------------------------------------- /bathyreq/sources/ncei.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/bathyreq/sources/ncei.py -------------------------------------------------------------------------------- /docs/docs/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/docs/docs/assets/banner.png -------------------------------------------------------------------------------- /docs/docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/docs/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/docs/docs/license.md -------------------------------------------------------------------------------- /docs/docs/reference/request.md: -------------------------------------------------------------------------------- 1 | 2 | ::: bathyreq.request 3 | -------------------------------------------------------------------------------- /docs/docs/reference/sources.md: -------------------------------------------------------------------------------- 1 | 2 | ::: bathyreq.sources.factory 3 | -------------------------------------------------------------------------------- /docs/docs/reference/sources_bluetopo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/docs/docs/reference/sources_bluetopo.md -------------------------------------------------------------------------------- /docs/docs/reference/sources_gebco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/docs/docs/reference/sources_gebco.md -------------------------------------------------------------------------------- /docs/docs/reference/sources_ncei.md: -------------------------------------------------------------------------------- 1 | 2 | ::: bathyreq.sources.ncei 3 | -------------------------------------------------------------------------------- /docs/logo/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/docs/logo/make.py -------------------------------------------------------------------------------- /docs/logo/requirements.txt: -------------------------------------------------------------------------------- 1 | bathyreq 2 | cmocean 3 | matplotlib -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/tests/test_request.py -------------------------------------------------------------------------------- /tests/test_sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_sources/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/tests/test_sources/test_factory.py -------------------------------------------------------------------------------- /tests/test_sources/test_gebco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/tests/test_sources/test_gebco.py -------------------------------------------------------------------------------- /tests/test_sources/test_ncei.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeptuneProjects/BathyReq/HEAD/tests/test_sources/test_ncei.py --------------------------------------------------------------------------------