All data sources

AL Forestry Commission

No authal-forestry

Alabama Forestry Commission — state forest property, aerial insect/disease/storm detection, wildfire incidents, fire towers. - searchPublicForests ⭐ 16 state forest + nursery polygons (Geneva 7.3K acres / Choccolocco 4.4K / Macon / Crawford / Hauss Nursery / Stauffer Seed Orchard) - searchAerialDetection ⭐ 26,238 aerial detection observations (SPB 18,863 / IPS 596 / Tornado 735 / EAB 13) - searchWildfires ⭐ 16,142 wildfire incidents with cause/region/agency - searchFireTowers 44 active fire tower points §0: Region values differ between aerial and wildfire layers — Aerial uses single-word (Northeast/Southwest), Wildfire uses two-word (North East/South West). Cause uses leading-digit codes; handler accepts "7", "7 - Arson", or "Arson".

Provenance

PublisherAL Forestry Commission

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (5)

  • searchPublicForests

    read

    AL state forest + nursery polygons (16 parcels covering Geneva/Choccolocco/Macon/Hauss/Stauffer).

    Input schema
    {
      "type": "object",
      "properties": {
        "forestName": {
          "type": "string",
          "examples": [
            "Geneva"
          ]
        },
        "minAcres": {
          "type": "number"
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "near": {
          "type": "object",
          "properties": {
            "lat": {
              "type": "number"
            },
            "lon": {
              "type": "number"
            },
            "radiusMiles": {
              "type": "number"
            }
          },
          "required": [
            "lat",
            "lon",
            "radiusMiles"
          ],
          "additionalProperties": false
        },
        "limit": {
          "type": "number"
        },
        "format": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "records"
              ]
            },
            {
              "type": "string",
              "enum": [
                "geojson"
              ]
            }
          ]
        }
      },
      "additionalProperties": false
    }

    No county column — filter by forestName substring.

  • searchAerialDetection

    read

    AL aerial detections (~26.2K). Filter typeDetected (SPB/IPS/EAB/Tornado), county, region, year.

    Input schema
    {
      "type": "object",
      "properties": {
        "typeDetected": {
          "type": "string",
          "examples": [
            "SPB"
          ]
        },
        "county": {
          "type": "string",
          "examples": [
            "Mobile"
          ]
        },
        "region": {
          "type": "string"
        },
        "fiscalYear": {
          "type": "string"
        },
        "dateFrom": {
          "type": "string"
        },
        "dateTo": {
          "type": "string"
        },
        "minTrees": {
          "type": "number"
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "near": {
          "type": "object",
          "properties": {
            "lat": {
              "type": "number"
            },
            "lon": {
              "type": "number"
            },
            "radiusMiles": {
              "type": "number"
            }
          },
          "required": [
            "lat",
            "lon",
            "radiusMiles"
          ],
          "additionalProperties": false
        },
        "limit": {
          "type": "number"
        },
        "format": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "records"
              ]
            },
            {
              "type": "string",
              "enum": [
                "geojson"
              ]
            }
          ]
        }
      },
      "additionalProperties": false
    }

    Region full-words (Northeast/Southwest); county is Title Case.

  • searchWildfires

    read

    AL wildfires (~16.1K). Filter county, region, cause, dates, minAcres, activeOnly.

    Input schema
    {
      "type": "object",
      "properties": {
        "county": {
          "type": "string"
        },
        "region": {
          "type": "string"
        },
        "cause": {
          "type": "string",
          "examples": [
            "7"
          ]
        },
        "dateFrom": {
          "type": "string"
        },
        "dateTo": {
          "type": "string"
        },
        "minAcres": {
          "type": "number",
          "examples": [
            100
          ]
        },
        "activeOnly": {
          "type": "boolean"
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "near": {
          "type": "object",
          "properties": {
            "lat": {
              "type": "number"
            },
            "lon": {
              "type": "number"
            },
            "radiusMiles": {
              "type": "number"
            }
          },
          "required": [
            "lat",
            "lon",
            "radiusMiles"
          ],
          "additionalProperties": false
        },
        "limit": {
          "type": "number"
        },
        "format": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "records"
              ]
            },
            {
              "type": "string",
              "enum": [
                "geojson"
              ]
            }
          ]
        }
      },
      "additionalProperties": false
    }

    Region two-words (North East/South West). cause: "7" → "7 - Arson".

  • searchFireTowers

    read

    AL fire towers (44 points). Filter name, county, status.

    Input schema
    {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "county": {
          "type": "string"
        },
        "status": {
          "type": "string",
          "examples": [
            "Active"
          ]
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "near": {
          "type": "object",
          "properties": {
            "lat": {
              "type": "number"
            },
            "lon": {
              "type": "number"
            },
            "radiusMiles": {
              "type": "number"
            }
          },
          "required": [
            "lat",
            "lon",
            "radiusMiles"
          ],
          "additionalProperties": false
        },
        "limit": {
          "type": "number"
        },
        "format": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "records"
              ]
            },
            {
              "type": "string",
              "enum": [
                "geojson"
              ]
            }
          ]
        }
      },
      "additionalProperties": false
    }
  • getServiceInfo

    read

    Alabama Forestry service catalog: layer schemas, record counts, page caps, enum values.

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