Planet makes available select imagery for major disaster events, including major earthquakes, floods, storms, wildfires, and human-made disasters. These are available here in a STAC Catalog under a CC-BY-NC license. See the Planet Disaster Data page for more information.
# Planet Crisis Response — Philippines Earthquake (2026) (llms.txt)
> High-resolution Planet SkySat imagery of the 8 June 2026 earthquake in the southern
> Philippines (Mindanao). Post-event ~0.7 m SkySat collects acquired 8–9 June 2026 (5 scenes)
> over the affected area. Part of the Planet Crisis Response Program
> (https://www.planet.com/disasterdata/). Imagery © Planet Labs PBC, CC-BY-NC-4.0
> (non-commercial).
This file describes the event for machines and AI assistants. It is one event in the
Disaster Data umbrella catalog (https://data.source.coop/planet/disasterdata). Built with
Portolan (https://portolan-sdi.org).
Base URL: https://data.source.coop/planet/disasterdata/philippines-earthquake-2026-06-08
Root catalog: https://data.source.coop/planet/disasterdata/philippines-earthquake-2026-06-08/catalog.json
Browse: https://browser.portolan-sdi.org/#/external/data.source.coop/planet/disasterdata/philippines-earthquake-2026-06-08/catalog.json
Human landing page: https://source.coop/planet/disasterdata/philippines-earthquake-2026-06-08
## Structure
- `catalog.json` → one child Collection, **SkySatCollect** (`SkySatCollect.json`): post-event
~0.7 m SkySat collects, 8–9 June 2026. 5 scene Items under `SkySatCollect/<scene>.json`.
- STAC-GeoParquet index of the scenes: `SkySatCollect/items.parquet`.
- (Post-event only — no pre-event baseline in this release.)
## Items & assets
- One Item per scene; Item id = the Planet SkySat scene id (e.g. `20260608_232426_ssc1_u0001`).
- Asset keys:
- `visual` — true-colour RGB COG (uint8, ~0.7 m), display-ready
- `analytic` — pansharpened multiband COG (uint16), for analysis
- `udm2` — Usable Data Mask 2 (clear / cloud / shadow / haze + confidence)
- `udm` — Unusable Data Mask (single band)
- `thumbnail` — small PNG preview
- `metadata` — Planet item metadata (JSON sidecar)
- Item properties include `datetime`, `gsd` (~0.68), `eo:cloud_cover`, view/sun angles,
`constellation` (skysat), `platform`, `proj:code`.
- Asset hrefs are absolute public https URLs to the COGs (no account or API key required).
## Data access
```sql
INSTALL spatial; LOAD spatial; INSTALL httpfs; LOAD httpfs;
SELECT id, datetime, assets['visual']['href'] AS visual_cog
FROM read_parquet(
'https://data.source.coop/planet/disasterdata/philippines-earthquake-2026-06-08/SkySatCollect/items.parquet')
ORDER BY properties['eo:cloud_cover'];
```
```python
import rasterio
from rasterio.windows import from_bounds
with rasterio.open(visual_cog) as ds: # /vsicurl streams only the needed bytes
rgb = ds.read(window=from_bounds(*bbox, ds.transform))
```
## Explore with AI
Point Claude Code (https://claude.com/claude-code) or another agent at this llms.txt and ask
it to, e.g., "map the clearest SkySat scene of the affected area" or "render an RGB preview
of each scene."
## Notes & license
- Non-commercial license: CC-BY-NC-4.0. Attribution: © Planet Labs PBC — Crisis Response Program.
- Contact: crisis-response@planet.com
- Coordinates are lon/lat WGS84 (EPSG:4326) in STAC metadata; each COG carries its own
projected CRS (`proj:code`).