All data sources

KS State Lands

No authks-geoportal

Kansas state-managed lands, USGS PAD-US ownership, KDWP wildlife areas + state parks + state fishing lakes, and Walk-in Hunting Area private-lands public-access tracts. 4 curated layers, 8K+ polygons. - searchProtectedAreas ⭐ 993 KDWP-curated polygons of all publicly-managed land - searchPublicLandsOwnership ⭐ 3,127 PAD-US polygons; easements via category=Easement - searchWildlifeAreas ⭐ 213 state wildlife areas + state parks + state fishing lakes - searchWalkInHuntingAreas ⭐ 3,736 WIHA tracts with COUNTY filter (Title Case) - getServiceInfo §0 spec drift: KS DASC Hub publishes no state-lands ownership/parcels/easements layer of its own — content lives on the AGOL tenant shared by KSDOT/KDWP/KSU. PAD-US KS has no county column. WIHA service renamed every season; latest stable hard-coded.

Provenance

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (5)

  • searchProtectedAreas

    read

    KS protected areas (~993). KDWP-curated publicly-managed land. Filter owner, manager, bbox.

    Input schema
    {
      "type": "object",
      "properties": {
        "unitName": {
          "type": "string"
        },
        "owner": {
          "type": "string",
          "examples": [
            "KDWPT"
          ]
        },
        "manager": {
          "type": "string"
        },
        "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
    }

    Owner has 95 distinct values incl city/county/NGO. No county column.

  • searchPublicLandsOwnership

    read

    KS PAD-US ownership (~3.1K). Filter category, mangType, mangName, pubAccess, minAcres, bbox.

    Input schema
    {
      "type": "object",
      "properties": {
        "unitName": {
          "type": "string"
        },
        "category": {
          "type": "string",
          "examples": [
            "Easement"
          ]
        },
        "mangType": {
          "type": "string"
        },
        "mangName": {
          "type": "string"
        },
        "pubAccess": {
          "type": "string"
        },
        "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
    }

    category: Easement|Fee|Designation|Other|Proclamation. No county column.

  • searchWildlifeAreas

    read

    KS wildlife areas (~213). State parks + WMAs + fishing lakes. Filter complex, accessRestriction.

    Input schema
    {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "complex": {
          "type": "string",
          "examples": [
            "Cheyenne Bottoms"
          ]
        },
        "mgtUnit": {
          "type": "string"
        },
        "accessRestriction": {
          "type": "string"
        },
        "huntAccess": {
          "type": "string"
        },
        "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
    }

    COMPLEX = federal reservoir name (KDWPT on USACE shoreline).

  • searchWalkInHuntingAreas

    read

    KS WIHA private-lands public-access (~3.7K). Filter county, contractStatus/Type, archeryShotOnly.

    Input schema
    {
      "type": "object",
      "properties": {
        "county": {
          "type": "string",
          "examples": [
            "Sedgwick"
          ]
        },
        "contractStatus": {
          "type": "string"
        },
        "contractType": {
          "type": "string"
        },
        "contractName": {
          "type": "string"
        },
        "archeryShotOnly": {
          "type": "boolean"
        },
        "yearActiveAtLeast": {
          "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
    }

    Has COUNTY (Title Case). Service renamed each season — latest hard-coded.

  • getServiceInfo

    read

    Schema, record counts (live), enum values, and §0 probe notes for any of the 4 curated layers.

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