| # | station | longitude | latitude | month | date | metric | value |
|---|---|---|---|---|---|---|---|
| loading... | |||||||
| COLUMN | TYPE | DESCRIPTION | UNIT |
|---|---|---|---|
| station | string | Weather station name (e.g. "KIGALI AERO", "BYIMANA"). | - |
| longitude | float64 | Station longitude in decimal degrees. | - |
| latitude | float64 | Station latitude in decimal degrees. | - |
| month | int64 | Calendar month number (1-12). March (3) and May (5) are absent from the source. | - |
| date | string | ISO first-of-month date (e.g. "2024-01-01"), derived so the monthly time series has a proper temporal x-axis. | - |
| metric | string | Climate variable. Values: rainfall_mm (monthly rainfall total, mm), max_temp_c (maximum temperature, degrees Celsius), min_temp_c (minimum temperature, degrees Celsius). | - |
| value | float64 | Measured value for the given station, month, and metric. | - |
import imibare as imi
df = imi.load("rw.nisr.climate.monthly")
print(df.head()) import duckdb
duckdb.sql("""
ATTACH 'https://catalog.cloudflarestorage.com/imibare-data'
AS imi (TYPE ICEBERG, READ_ONLY)
""")
duckdb.sql("SELECT * FROM imi.rw_nisr_climate_monthly LIMIT 10").show() curl -L "https://api.imibare.org/v1/data/rw.nisr.climate.monthly/download" \
-o "rw.nisr.climate.monthly.parquet" # List all datasets
curl "https://api.imibare.org/v1/datasets"
# Get metadata for this dataset
curl "https://api.imibare.org/v1/datasets/rw.nisr.climate.monthly" Every version is a change in the data, and every one is retained; snapshots are never overwritten. Each entry is a dated Parquet snapshot in the dataset's versions/ archive.
- 2026-07-03 Jul 3, 2026 LATEST406 rows · 6.7 KB · initial version
imibare contributors. (2026). Monthly Climate by Station [Data set]. imibare. v2026-07-03. https://imibare.org/datasets/rw.nisr.climate.monthly
@dataset{imibare_rw_nisr_climate_monthly, author = {imibare contributors}, title = {Monthly Climate by Station}, year = {2026}, publisher = {imibare}, version = {v2026-07-03}, url = {https://imibare.org/datasets/rw.nisr.climate.monthly} }
imibare contributors. Monthly Climate by Station. v2026-07-03. imibare, 2026. https://imibare.org/datasets/rw.nisr.climate.monthly.
imibare contributors. Monthly Climate by Station. v2026-07-03, imibare, 2026, https://imibare.org/datasets/rw.nisr.climate.monthly.