Code

Load and query

Metadata is a Parquet index; imagery is cloud-optimized. Read the index, filter what you need, then fetch only those pixels by byte range.

# pip install taco-eo
import taco

ds = taco.load(
  "hf://datasets/tacofoundation/methaneset/methaneset-emit"
)
df = ds.metadata()
df[df["site:country"] == "Turkmenistan"]

Python

Requires taco-eo.

Other clients

LanguageInstall
Rinstall.packages("taco", repos = "https://asterisk-labs.r-universe.dev")
JuliaPkg.add("Taco")
JavaScriptnpm install @asterisk-labs/taco
Notebooks and clients from the MethaneSET dataset card . The notebooks are placeholders until the repository is published.