Skip to content

C4IROcean/odp-sdk-python

Repository files navigation

ODP SDK logo

ODP Python SDK

Connect to the Ocean Data Platform with Python through the Python SDK. Download queried ocean data easily and efficiently into data frames, for easy exploring and further processing in your data science project.

Documentation

[WIP]

Installation

Use the package manager pip to install the Ocean Data Platform Python SDK.

pip3 install odp_sdk

Usage

Note: Accessing the Ocean Data Platform requires an authorized account. Contact ODP to require one.

from odp_sdk.client import OdpClient

client = OdpClient()

for item in client.catalog.list():
     print(item)

Examples can be found in /examples.