/v1/glossary
NWS weather glossary
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/weatheralerts-api/v1/glossary" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/weatheralerts-api/v1/glossary", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/weatheralerts-api/v1/glossary");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/weatheralerts-api/v1/glossary",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 8,
"query": "tornado",
"terms": [
{
"term": "Multiple Vortex Tornado",
"definition": "A tornado in which two or more condensation funnels or debris clouds are present at the same time, often rotating about a common center or about each other. Multiple-vortex tornadoes can be especially damaging."
},
{
"term": "Tornado",
"definition": "A violently rotating column of air, usually pendant to a cumulonimbus, with circulation reaching the ground. It nearly always starts as a funnel cloud and may be accompanied by a loud roaring noise. On a local scale, it is the most destructive of all atmospheric phenomena."
},
{
"term": "Tornado Emergency",
"definition": "An exceedingly rare tornado warning issued when there is a severe threat to human life and catastrophic damage from an imminent or ongoing tornado. This tornado warning is reserved for situations when a reliable source confirms a tornado, or there is clear radar evidence of the existence of a damaging tornado, such as the observation of debris."
},
{
"term": "Tornado Family",
"definition": "A series of tornadoes produced by a single supercell, resulting in damage path segments along the same general line."
},
{
"term": "Tornado Vortex Signature",
"definition": "An image of a tornado on the Doppler radar screen that shows up as a small region of rapidly changing wind speeds inside a mesocyclone. The following velocity criteria is normally required for recognition: velocity difference between maximum inbound and outbound (shear) is greater than or equal to 90 knots at less than 30 nmi and is greater than or equal to 70 knots between 30 and 55 nmi. It shows up as a red upside down triangle on the Storm Relative Velocity Display. Existence of a TVS strongly increases the probability of tornado occurrence, but does not guarantee it; therefore, the feature triggering it must be examined closely by the radar operator. A TVS is not a visually observable feature."
},
{
"term": "Tornado Warning",
"definition": "This is issued when a tornado is indicated by the WSR-88D radar or sighted by spotters; therefore, people in the affected area should seek safe shelter immediately. They can be issued without a Tornado Watch being already in effect. They are usually issued for a duration of around 30 minutes. A Tornado Warning is issued by your local National Weather Service office (NWFO). It will include where the tornado was located and what towns will be in its path. If the tornado will affect the nearshore or coastal waters, it will be issued as the combined product--Tornado Warning and Special Marine Warning. If the thunderstorm which is causing t
…