All data sources

LA State Lands Louisiana

No authla-state-lands

Louisiana State Land Office state-agency tracts. AGOL Feature Service (owner: NBAM_Org), no auth. - searchStateLands ⭐ — 1,026 state-agency tract polygons (LSU, prisons, parks, DOTD) - getStateLandTract — full record by SITE_CODE - getServiceInfo quirks: USE_ is exclusively "STATE AGENCY LAND" — no mineral interests in this layer (those are on SONRIS / la-sonris). Probed: LEASE_OWN_ S/L/M = State-Owned (839) / Leased by State (150) / Mixed (37). PARISH_COD stored both zero-padded ("01") and unpadded ("1") — handler matches both. SURF_INT mostly FULL_INTEREST; 2 records have data-entry typo.

Provenance

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (3)

  • searchStateLands

    read

    LA state-agency land tracts (1,026). Filter parish/facility/lease/department/bbox.

    Input schema
    {
      "type": "object",
      "properties": {
        "parish": {
          "type": "string",
          "examples": [
            "Calcasieu"
          ]
        },
        "facilityName": {
          "type": "string"
        },
        "leaseOwnership": {
          "type": "string"
        },
        "department": {
          "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"
              ]
            }
          ]
        },
        "verbose": {
          "type": "boolean"
        }
      },
      "additionalProperties": false
    }

    Parish accepts code ("10") or name ("Calcasieu"). No mineral interests upstream.

  • getStateLandTract

    read

    Look up a single tract by SITE_CODE id (e.g. "5-10-006").

    Required paramstractId
    Input schema
    {
      "type": "object",
      "properties": {
        "tractId": {
          "type": "string",
          "examples": [
            "5-10-006"
          ]
        }
      },
      "additionalProperties": false,
      "required": [
        "tractId"
      ]
    }
  • getServiceInfo

    read

    Schema + record count for the LA State Lands layer.

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