Skip to main content

Python library for interfacing with the UKHO Admiralty Tidal API

Project description

UKHO Tides

This package provides a client wrapper for the Admiralty Tidal API endpoints.

Installation

Install via pip.

pip install ukhotides

API Key

To call the API you will need an API key from the Admiralty Maritime Data Solutions developer portal. Follow their guide on how to do so and select one of the UK Tidal API products - the Discovery tier is free (the paid APIs have not been tested for this package).

Usage

from ukhotides import UkhoTides
from aiohttp import ClientSession

session = ClientSession()
client = UkhoTides(session, "<api_key>")

# Get all stations
stations = await client.async_get_stations()

# Get stations with name filter
stations = await client.async_get_stations("StationName")

# Get station by id
station = await client.async_get_station("0001")

# Get tidal events for station by id
events = await client.async_get_tidal_events("0001")

# Get 4 days of tidal events for station by id
events = await client.async_get_tidal_events("0001", 4)

There are also several premium endpoints exposed, however these are built based on the documentation and have not been tested.

### Premium API Endpoints ###
### UNTESTED ###
from ukhotides import UkhoTides, ApiLevel
from aiohttp import ClientSession
from datetime import datetime

session = ClientSession()
client = UkhoTides(session, "<api_key>", ApiLevel.Premium)

# Get tidal events for a station between a given date range
start_date = datetime(2020,1,1)
end_date = datetime(2020,1,30)
events = await client.async_get_tidal_events_for_date_range("0001", start_date, end_date)

# Get tide height for a station for a given datetime
date_time = datetime(2020,1,1)
height = await client.async_get_tidal_height("0001", date_time)

# Get tide heights for a station between a given date range and at a given interval
interval_in_minutes = 60
start_date = datetime(2020,1,1)
end_date = datetime(2020,1,1,2)
heights = await client.async_get_tidal_heights("0001", start_date, end_date, interval_in_minutes)

Publish to PyPi

Update the version number in pyproject.toml and then run:

poetry publish --build

TODO

  • Better docs (sorry)
  • Webhooks to automate distribution and versioning

Attribution

Contains ADMIRALTY® Tidal Data: © Crown copyright and database right

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

ukhotides-1.1.0.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

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

ukhotides-1.1.0-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file ukhotides-1.1.0.tar.gz.

File metadata

  • Download URL: ukhotides-1.1.0.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.10.15 Linux/5.15.153.1-microsoft-standard-WSL2

File hashes

Hashes for ukhotides-1.1.0.tar.gz
Algorithm Hash digest
SHA256 8b8bc1ae39b8a2af54e1c4b454db7dca238c8fb1e11d84ba96b366d594c119fc
MD5 527ed60c081e632bc40ce6c487c8c322
BLAKE2b-256 ffcee5c2cb688a3a2043244670c45d66f9ba4af91dc3773f68125de94fc93ec6

See more details on using hashes here.

File details

Details for the file ukhotides-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: ukhotides-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.10.15 Linux/5.15.153.1-microsoft-standard-WSL2

File hashes

Hashes for ukhotides-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 05e09a1475dfc331be4de1bceaa1f48b1491e6a4785b77e86f236a8dc1391172
MD5 1de863a46df663c0785c88bdd26ea19f
BLAKE2b-256 28be6d6941ddf046f3a6726c067e7b3404566a17d0d998d015838801603891b7

See more details on using hashes here.

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