All data sources

NASA VIIRS Flaring

No authviirs-fire

NASA VIIRS Thermal Hotspots & Fire Activity — satellite flaring / thermal-detection proxy at well-site resolution. No auth. HOTSPOTS: searchThermalHotspots (bbox + FRP/confidence/recency), getHotspotsNearWell (point + radius). RULES: 1. frp = fire radiative power (MW); hours_old = recency; confidence = low/nominal/high; daynight = D/N. 2. Rolling near-real-time window; dates returned as ISO. A flaring/thermal-activity proxy, not quantified emissions (see carbonmapper for that).

Provenance

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (3)

  • searchThermalHotspots

    read

    Search VIIRS thermal hotspots by bbox, min FRP, confidence, day/night, recency.

    Input schema
    {
      "type": "object",
      "properties": {
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "minFrp": {
          "type": "number"
        },
        "confidence": {
          "type": "string"
        },
        "dayNight": {
          "type": "string"
        },
        "maxHoursOld": {
          "type": "number"
        },
        "limit": {
          "type": "number"
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }
  • getHotspotsNearWell

    read

    Thermal hotspots within a radius (km) of a well lat/lon.

    Required paramslatlon
    Input schema
    {
      "type": "object",
      "properties": {
        "lat": {
          "type": "number"
        },
        "lon": {
          "type": "number"
        },
        "radiusKm": {
          "type": "number"
        },
        "minFrp": {
          "type": "number"
        },
        "maxHoursOld": {
          "type": "number"
        },
        "limit": {
          "type": "number"
        }
      },
      "additionalProperties": false,
      "required": [
        "lat",
        "lon"
      ]
    }
  • getServiceInfo

    read

    Field meanings + valid confidence/dayNight values.

    Input schema
    {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    }