Skip to main content

Standalone all-Rust GOES ABI renderer, tiler, and Python bindings

Project description

goes-abi

Standalone all-Rust GOES ABI renderer, native PNG generator, XYZ tile generator, and Python package.

This package is for people who want the GOES satellite rendering pieces without installing rustwx. It downloads public NOAA GOES ABI Level 2 NetCDF files, reads them with pure Rust dependencies, applies the ABI fixed-grid projection/scaling metadata, and writes PNGs plus JSON manifests.

Features

  • GOES-16, GOES-17, GOES-18, and GOES-19 ABI products.
  • Native fixed-grid PNG renders for ABI bands and RGB products.
  • Native crop/sequence rendering for workflow-friendly regional loops.
  • XYZ Web Mercator tile generation from local ABI channel files.
  • Python bindings through maturin and a goes_abi Python module.
  • No rustwx checkout, vendored dependency tree, C NetCDF, C HDF5, or Python geospatial stack required.

Install

Install the Rust CLI directly from GitHub:

cargo install --git https://github.com/FahrenheitResearch/goes-abi

Install the Python package directly from GitHub:

python -m pip install "git+https://github.com/FahrenheitResearch/goes-abi"

Install from PyPI:

python -m pip install goes-abi

Install the optional MCP server for Claude Desktop, Codex, and other MCP clients:

python -m pip install "goes-abi[mcp]"

From a local checkout:

cargo install --path .

For Python:

python -m pip install .

For editable Python development:

python -m pip install maturin
python -m maturin develop --features python

CLI Examples

Print supported products and outputs:

goes-abi capabilities

Render the latest GOES-19 CONUS Band 13 native PNG:

goes-abi render `
  --satellite goes19 `
  --sector conus `
  --products goes_abi_band_13 `
  --width 1400 `
  --height 1100 `
  --out-dir out `
  --cache-dir cache

Render a full-disk native-resolution infrared frame:

goes-abi render `
  --satellite goes19 `
  --sector full_disk `
  --products goes_abi_band_13 `
  --width 5424 `
  --height 5424 `
  --out-dir out `
  --cache-dir cache

Render a regional native crop sequence:

goes-abi native-sequence `
  --satellite goes19 `
  --sector conus `
  --product geocolor `
  --bounds -127,-111,30,44.5 `
  --latest-count 6 `
  --out-dir out `
  --cache-dir cache

Generate XYZ tiles from local C01/C02/C03 channel files:

goes-abi web-tiles `
  --channel1 cache\path\to\C01.nc `
  --channel2 cache\path\to\C02.nc `
  --channel3 cache\path\to\C03.nc `
  --out-dir tiles `
  --min-zoom 2 `
  --max-zoom 6

Python Example

import goes_abi

report = goes_abi.render_satellite(
    satellite="goes19",
    abi_product="ABI-L2-CMIPC",
    abi_sector="conus",
    domain_slug="goes_native",
    domain_label="GOES Native",
    bounds=(-127.0, -111.0, 30.0, 44.5),
    out_dir="out",
    cache_dir="cache",
    products=["goes_abi_band_13"],
    width=1400,
    height=1100,
    download_glm=False,
    png_compression="fast",
)

print(report["artifacts"][0]["png_path"])

MCP Server

goes-abi includes an optional stdio MCP server. It exposes tools for capabilities, native PNG rendering, native sequence rendering, XYZ tile generation from local ABI channel files, and a take_a_break_wallpaper tool that renders a 5120x1440 full-disk GOES wallpaper.

Use this command in MCP clients:

goes-abi-mcp

Equivalent module form:

python -m goes_abi.mcp_server

Example MCP server config:

{
  "mcpServers": {
    "goes-abi": {
      "command": "goes-abi-mcp"
    }
  }
}

The wallpaper tool defaults to goes_airmass_rgb because it uses 2 km full-disk channels and is practical for agents to run on demand. For visible full-disk GeoColor, call it with product="goes_geocolor" and allow_high_resolution_full_disk=true; that path downloads and renders high-resolution visible channels and can take substantially more memory and time.

Outputs

Every render writes a JSON report next to the PNG/tile output. Reports include scan time, source NOAA S3 keys/URLs, local cache paths, render timing, product metadata, geographic bounds, and generated artifact paths.

Development Checks

cargo fmt --check
cargo test
cargo test --features python
cargo run --bin goes-abi -- capabilities

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

goes_abi-0.1.1.tar.gz (64.5 kB view details)

Uploaded Source

Built Distributions

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

goes_abi-0.1.1-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

goes_abi-0.1.1-cp312-cp312-manylinux_2_35_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ x86-64

goes_abi-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

File details

Details for the file goes_abi-0.1.1.tar.gz.

File metadata

  • Download URL: goes_abi-0.1.1.tar.gz
  • Upload date:
  • Size: 64.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for goes_abi-0.1.1.tar.gz
Algorithm Hash digest
SHA256 16df0160684aede4f45738ec8056d8b15b0a3c511daafa1d85b5eec32e6fcfa1
MD5 51079192c26c06087283a7f874bf7160
BLAKE2b-256 f9dc69faff70e916ead8e4f08ab418627ffb2331f38e272326882e4a3f172f6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for goes_abi-0.1.1.tar.gz:

Publisher: publish.yml on FahrenheitResearch/goes-abi

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

File details

Details for the file goes_abi-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: goes_abi-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for goes_abi-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9ffaaa8bc4e60915122ae9a8844eb5b2db30745741edab87af7975119d2d9d41
MD5 28036a57d61b19ad615829a35b7dd0c9
BLAKE2b-256 9998009e32af526c6bfae667e664f457261a70cff2f3025906c4b274e01d5401

See more details on using hashes here.

Provenance

The following attestation bundles were made for goes_abi-0.1.1-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on FahrenheitResearch/goes-abi

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

File details

Details for the file goes_abi-0.1.1-cp312-cp312-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for goes_abi-0.1.1-cp312-cp312-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 bb134c8ba338556d6f1648cdc4c2c0812b364dac607b89d1d9de0011611add53
MD5 193d0a9e7524f0bf40ce668b6dd9e225
BLAKE2b-256 3b3e3e837b277e888360c53ca5ea3261678c291d84b12f5b44b1cab1fccbfc5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for goes_abi-0.1.1-cp312-cp312-manylinux_2_35_x86_64.whl:

Publisher: publish.yml on FahrenheitResearch/goes-abi

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

File details

Details for the file goes_abi-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for goes_abi-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c5736a1f965ae38405f1988260539d2e07033088c5a176077471521b6fce440
MD5 525620cca3d9f0da4f8801b9837aa09d
BLAKE2b-256 bf99501587c270df14b667aab69a32be39a56e2e003484f185e78395d10751e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for goes_abi-0.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on FahrenheitResearch/goes-abi

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