get_result_slice
Load an already-collected heat analysis result from local disk at no API cost. Filter by top values, bounding box, or sampling, and compare slice statistics against the full result.
Instructions
Read part or all of an already-collected result from local disk. Costs nothing and makes no API call, so use it freely: take the hottest tiles with top_n, a sub-area with bbox, a downsample with every_nth, the whole thing compactly with format='columnar', or the untouched payload with format='geojson'. Naming a format gets you all of it at whatever size it comes to; the context budget applies only to the default format='auto'. Statistics for both the slice and the full result are always reported, so a slice maximum is never mistaken for the real one.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bbox | No | [west, south, east, north]. West may exceed east to cross the antimeridian. | |
| top_n | No | Return only the N highest-valued tiles. | |
| format | No | auto = fit it to the context budget, and if it does not fit, say what exists and how to fetch it. columnar = the compact table in full, whatever its size. geojson = the raw payload in full, whatever its size. Both named formats are delivered complete - the budget applies to auto only. | auto |
| every_nth | No | Keep every Nth tile. | |
| activity_id | Yes | A collected analysis. |