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.
[WIP]
Use the package manager pip to install the Ocean Data Platform Python SDK.
pip3 install odp_sdk
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.