Skip to main content

Oceans 3.0 API Python Client Library

Project description


onc: client library for accessing Oceans 3.0 API

PyPI Latest Release PyPI Supported Versions License - Apache 2.0 Frontiers in Marine Science Paper

onc is a Python client library that facilitates access to scientific data hosted by Ocean Networks Canada through the Oceans 3.0 API public web services. It can help you explore and download our data, by consuming our discovery, data product download, archive file download, and near real-time data access services.

Getting Started

Installation

onc can be installed from PyPI:

pip install onc

Obtaining a token

A unique Oceans 3.0 API token is required to access our data. To obtain a token, follow the steps below:

  1. Register for an Oceans 3.0 account at https://data.oceannetworks.ca/Registration.

  2. Log into your account at https://data.oceannetworks.ca by clicking the Log In link.

  3. Click the Profile link (top right corner) to access your account profile.

  4. Access the Web Services API tab and click Copy Token.

  5. If you forget your token, you can always find it again in your Oceans 3.0 account profile.

Searching with discovery methods

To download ONC data, you need to specify the type of data you require and where in particular (i.e. location, device) it originates from.

In the Oceans 3.0 API, there's a unique code that identifies every location, device, property, data product type, etc. Include these codes in a group of filters (these will be used as URL parameters when making HTTP requests) that determine the data you're interested in.

Discovery methods allow you to explore the hierarchy of the ONC database to obtain the codes for your filters (they work like a "search" function).

The example below uses the getLocations method to search for locations that include "Burrard" in their name (i.e. "Burrard Inlet"):

from onc import ONC

onc = ONC("YOUR_TOKEN")
onc = ONC() # This works if the env variable "ONC_TOKEN" is set

onc.getLocations({"locationName": "Burrard"})

The previous code prints a list with locations that match the search filters provided. Each location in the list includes a dataSearchURL that points to the Data Search Tool, and a locationCode ("BIPP" and "BISS" in this example) that can be used to continue searching "inside" it, as in the following example:

onc.getDeviceCategories({"locationCode": "BIIP"})
onc.getDataProducts({"locationCode": "BIIP", "deviceCategoryCode": "CTD"})

Check more on the discovery methods guide and code examples.

Downloading data products

Once you determine the exact dictionary of filters that identifies the data you are interested in, there are multiple methods to download it.

One method is to request the ONC servers to generate a custom data product with the data. This is done through the data product download methods.

The following example downloads two PNG files with plots for 30 seconds of data from a CTD in Campbell River:

params = {
    "locationCode": "BIIP",
    "deviceCategoryCode": "CTD",
    "dataProductCode": "TSSP",
    "extension": "png",
    "dateFrom": "2019-06-20T00:00:00.000Z",
    "dateTo": "2019-06-20T00:30:00.000Z",
    "dpo_qualityControl": "1",
    "dpo_resample": "none",
}
onc.orderDataProduct(params, includeMetadataFile=False)

The filters above include codes for location, deviceCategory, and dataProduct, as well as the file extension and a time interval (in UTC). They also include a couple of filters to configure this specific data product type (starting with the "dpo_" prefix), which can be obtained from the Data Product Options documentation. You can download more than 120 different types of data products including audio & video.

Check more on the data product download methods guide and code examples.

Obtaining sensor readings in (near) real-time

Another method to obtain ONC data is by directly obtaining a time series of sensor readings (available as soon as they reach our database).

In the following example, we obtain 5 seconds of conductivity readings from the CTD at Burrard Inlet:

params = {
    "locationCode": "BIIP",
    "deviceCategoryCode": "CTD",
    "propertyCode": "conductivity",
    "dateFrom": "2019-06-20T00:00:00.000Z",
    "dateTo": "2019-06-20T00:00:05.000Z",
}
onc.getScalardata(params)

# Longer method name
# onc.getScalardataByLocation(params)

The result includes matching lists of "values" and "sampleTimes" (increases performance for long time ranges). We also use the property code "conductivity" to limit results to a specific property available in this CTD.

Check more on the near real-time data access methods guide and code examples.

Downloading archived files

ONC scripts auto-generate and archive data products of different types at set time intervals. You can directly download these data product files from our files archive, as long as you know their unique filename.

In the following example, we get a list of archived files available for a camera at Ridley Island (in a certain time span), and download one of the files:

params = {
    "locationCode": "RISS",
    "deviceCategoryCode": "VIDEOCAM",
    "dateFrom": "2016-12-01T00:00:00.000Z",
    "dateTo": "2016-12-01T00:05:00.000Z",
}
result = onc.getArchivefile(params, allPages=True)

# Longer method name
# result = onc.getArchivefileByLocation(params, allPages=True)

# Download one of the files from result["files"]
onc.downloadArchivefile("AXISQ6044PTZACCC8E334C53_20161201T000001.000Z.jpg", overwrite=True)

You can use the method downloadArchivefile() as above to download individual files or the method downloadDirectArchivefile() to download all the files that match your filters.

Alternatively, if you prefer using a download manager like aria2 or Free Download Manager, getArchivefileUrls and getArchivefileUrl can return the download URLs of the archivefile without downloading the files.

Check more on the archive file download methods guide and code examples.

Documentation

The client library documentation is hosted on GitHub Pages. For documentation and examples about Oceans 3.0 API, visit the wiki and OpenAPI page on the Oceans 3.0 Data Portal website.

Multithreading issue

We kindly ask users to not use too many threads when using threading/multiprocessing libraries on download tasks. It can cause issues for both server and client and may not appreciably increase download speeds.

Contributing

All contributions are welcome and appreciated! Please refer to the Contributing guide before submitting any issues or pull requests.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

onc-2.6.0.tar.gz (39.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

onc-2.6.0-py3-none-any.whl (40.0 kB view details)

Uploaded Python 3

File details

Details for the file onc-2.6.0.tar.gz.

File metadata

  • Download URL: onc-2.6.0.tar.gz
  • Upload date:
  • Size: 39.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for onc-2.6.0.tar.gz
Algorithm Hash digest
SHA256 d36db8e361363f1e68941a589e9dc1365c12abb01dc7e327c2cc704f24212ba7
MD5 0d576d5f463caa2d481cbf758e08b5bd
BLAKE2b-256 59e8818b9ebc45fd13fed01e1237e1cfa2b2476206a60e0753ba45536bea0e86

See more details on using hashes here.

Provenance

The following attestation bundles were made for onc-2.6.0.tar.gz:

Publisher: release.yml on OceanNetworksCanada/api-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onc-2.6.0-py3-none-any.whl.

File metadata

  • Download URL: onc-2.6.0-py3-none-any.whl
  • Upload date:
  • Size: 40.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for onc-2.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5135b2ff92b0b1661b1c4f2eef24a40b02dfcb421152f9c328ed3fa4f72b6ea8
MD5 c92a8647968230ed099f5dc04fe3baa3
BLAKE2b-256 55e026bd99a5971a09b2f080528c96182628114be156ed20b82bca9c20d2000a

See more details on using hashes here.

Provenance

The following attestation bundles were made for onc-2.6.0-py3-none-any.whl:

Publisher: release.yml on OceanNetworksCanada/api-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page