ZeqAtmosphere — Atmospheric Physics
Atmospheric modeling — pressure, temperature, density profiles computed from first principles. Supports standard atmosphere, tropical, polar, and custom profiles.
| Endpoint | POST /api/climate/atmosphere/profile |
| Auth | api-key |
| Rate limit | 30/min |
| Category | climate |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
altitudeKm | number | Yes | Altitude in km (0–100). |
profile | string | No | 'standard', 'tropical', 'polar'. Default: 'standard'. |
Returns
{ pressure, temperature, density, speedOfSound, meanFreePath, scaleHeight }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"altitudeKm": 0,
"profile": "standard"
}' \
"https://zeqsdk.com/api/climate/atmosphere/profile"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/zeq-atmosphere.