Skip to main content

The Zambretti Algorithm for weather forecasting

Project description

Zambretti Weather Forecasting in Python

This is a Python implementation of the Zambretti Weather Forecaster

The code is heavily based on the Zambretti Algorithm for Weather Forecasting ESP example

Further reading: Short-Range Local Forecasting with a Digital Barograph using an Algorithm based on the Zambretti Forecaster.

Python Package

This repository is available as a package in PyPi: https://pypi.org/project/zambretti-py/

Usage notes

To calculate for forecast, the Zambretti algorithm requires:

  • elevation above sea level
  • current temperature
  • pressure data from the last three hours, or less.
    • data points older than three hours will be removed
    • the pressure data is expected to be provided as a list of tuples, each tuple consisting of a datetime.datetime object, and the pressure as float
  • optional wind direction, denoting the direction from which the wind is flowing. This has a minor effect on the forecast and can be omitted.

The result will be a text description of the forecasted weather.

Pressure data must be provided in millibars or hPa (those are equivalent). Elevation must be provided in meters. Temperature must be provided in degrees Celsius.

Minimum 6 readings of atmospheric pressure are required. Best results are when the pressure readings span the last three hours, but the code will run on any timespan.

Technical notes

This project has no dependencies, uses only functions from the Python Standard Library. It should run both in Python and MicroPython.

Examples

Example usage with provided pressure data:

import datetime

from zambretti_py import PressureData, WindDirection, Zambretti

now = datetime.datetime.now()
pressure_data = PressureData(
    [
        (now - datetime.timedelta(hours=2, minutes=59), 1050.0),
        (now - datetime.timedelta(hours=2, minutes=49), 1040.0),
        (now - datetime.timedelta(hours=2, minutes=39), 1030.0),
        (now - datetime.timedelta(hours=2, minutes=12), 1020.0),
        (now - datetime.timedelta(hours=1, minutes=19), 1010.0),
        (now - datetime.timedelta(minutes=20), 1000.0),
    ]
)
zambretti = Zambretti()

forecast = zambretti.forecast(
    elevation=90,
    temperature=25,
    pressure_data=pressure_data,
    wind_direction=WindDirection.NORTH,
)
print(forecast)

Example usage with loading pressure data from a CSV file:

If you have the pressure history in a CSV file such as this one:

state last_changed
988.6 2024-11-19T11:33:32.706Z
988.5 2024-11-19T11:34:06.863Z
988.4 2024-11-19T11:37:06.887Z

That file can be loaded into PressureData by using a PressureData.from_csv_file:

from zambretti_py import PressureData, WindDirection, Zambretti

pressure_data = PressureData.from_csv_file(
    fname="history.csv",
    timestamp_column_position=1,
    pressure_column_position=0,
    skip_header_rows=1,
    strptime_template="%Y-%m-%dT%H:%M:%S.%fZ",
)

zambretti = Zambretti()

forecast = zambretti.forecast(
    elevation=75,
    temperature=3,
    pressure_data=pressure_data,
    wind_direction=WindDirection.SOUTH,
)
print(forecast)

Example usage with a CSV file generated in Home Assistant:

When you have a sensor in Home Assistant, you can export its history from the web interface, the result will be a CSV file with this schema:

entity_id state last_changed
sensor.pressure 988.6 2024-11-19T11:33:32.706Z
sensor.pressure 988.5 2024-11-19T11:34:06.863Z
sensor.pressure 988.4 2024-11-19T11:37:06.887Z

That file can be loaded into PressureData by using PressureData.from_home_assistant_csv:

from zambretti_py import PressureData, WindDirection, Zambretti

pressure_data = PressureData.from_home_assistant_csv("history.csv")

zambretti = Zambretti()

forecast = zambretti.forecast(
    elevation=75,
    temperature=3,
    pressure_data=pressure_data,
    wind_direction=WindDirection.SOUTH,
)
print(forecast)

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

zambretti_py-0.0.6.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

zambretti_py-0.0.6-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file zambretti_py-0.0.6.tar.gz.

File metadata

  • Download URL: zambretti_py-0.0.6.tar.gz
  • Upload date:
  • Size: 7.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.9.21

File hashes

Hashes for zambretti_py-0.0.6.tar.gz
Algorithm Hash digest
SHA256 d8fc70803bb8bc9c07edb04988d73124172205d9ca791f32766358894c65d6d3
MD5 b9b5886f2530f898f54c3e989250b50a
BLAKE2b-256 285a382fe0be0d44f65987b2d1fbc1c7f1c7c00172ba0438eac3df8a1a8f0b31

See more details on using hashes here.

File details

Details for the file zambretti_py-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: zambretti_py-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 6.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.9.21

File hashes

Hashes for zambretti_py-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 9e85424a8aa2bf3bcc30883c347c7d9157e365564b36971fd32b87781fc6c3b6
MD5 abf60b9573ec810038b4bfdc7bf9db6b
BLAKE2b-256 ec409c62cd3f8807ce49b8b70a0999053f67ca741a88788818b1bbc5967f171c

See more details on using hashes here.

Supported by

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