Returns the overall time coverage extent for available data, including the earliest and latest times data is available. Useful for understanding the temporal coverage of the archive.
From spec: Returns the overall time coverage extent for available data, including earliest and latest times.
Usage Tips
- Returns summary statistics on data holdings
- Can filter by network and station
- Shows global earliest and latest timestamps
- Useful for data discovery and catalog planning
Parameters (13)
cha(string, query, optional)
Channel code(s). Accepts wildcards and comma-separated lists.
endtime(string, query, optional)
Limit to events/stations/data on or before the specified end time (ISO 8601 format)
import zingu_apis
api = zingu_apis.api("earthscope")
result = api.fetch("availability/1/extent", net="IU", format="text")
for item in result:
print(item)
const resp = await fetch("https://service.earthscope.org/fdsnws/availability/1/extent?net=IU&format=text");
const data = await resp.json();