erzanugroho/seismicid-earthquake-forecast-dataset
SeismicID Earthquake Forecast Dataset Dataset for SeismicID, Indonesian earthquake risk forecasting and visualization. Live app: https://seismicid.erzanugroho.xyzSource code: https://github.com/erzanugroho/SeismicID Important notice This dataset and model outputs are experimental research artifacts. They are not earthquake early warning, official hazard advice, or replacement for BMKG / official authorities. Files file rows description… See the full description on the dataset page: https://huggingface.co/datasets/erzanugroho/seismicid-earthquake-forecast-dataset.
SeismicID Earthquake Forecast Dataset
Dataset for SeismicID, Indonesian earthquake risk forecasting and visualization.
Live app: https://seismicid.erzanugroho.xyz Source code: https://github.com/erzanugroho/SeismicID
Important notice
This dataset and model outputs are experimental research artifacts. They are not earthquake early warning, official hazard advice, or replacement for BMKG / official authorities.
Files
Main columns
historical_events.parquet
event_id: source-prefixed event identifiertime: UTC event timelat,lon: epicenter coordinatesdepth: depth in km where availablemagnitude: earthquake magnitudemag_type: source magnitude typesource: catalog source, e.g. USGS/BMKG/EMSC depending on ingestplace: source place text
forecast_archive.parquet / current_forecasts.parquet
Forecast columns use this pattern:
label_h{horizon_days}_m{magnitude_threshold_without_decimal}Examples:
label_h7_m45: probability for M≥4.5 within 7 dayslabel_h30_m50: probability for M≥5.0 within 30 dayslabel_h60_m60: probability for M≥6.0 within 60 days
Loading example
from datasets import load_dataset
ds = load_dataset("parquet", data_files={
"historical_events": "data/historical_events.parquet",
"current_forecasts": "data/current_forecasts.parquet",
"forecast_archive": "data/forecast_archive/part-*.parquet",
})
print(ds)Or with pandas:
import pandas as pd
events = pd.read_parquet("data/historical_events.parquet")
forecasts = pd.read_parquet("data/current_forecasts.parquet")Citation
If you use this dataset, please cite the SeismicID repository:
@misc{seismicid,
title = {SeismicID: Indonesian Earthquake Risk Forecasting},
author = {Erza Nugroho},
year = {2026},
url = {https://github.com/erzanugroho/SeismicID}
}License
Recommended dataset license: CC-BY-4.0, assuming upstream source terms allow redistribution with attribution. Verify upstream catalog licensing before public release.
