All data sources

IN DNR Oil & Gas + State Lands

No authin-dnr-og

Indiana DNR oil and gas wells + natural-gas pipelines plus DNR-managed lands (nature preserves, recreation sites, forestry tracts) via the gisdata.in.gov state Hub. - searchWells ⭐ ~78.3K wells with county/lease/permit/status — no operator on this layer - searchPipelines ⭐ ~215 interstate + intrastate gas pipelines with operator names - searchManagedLands ⭐ typed: nature-preserve | recreation-site | forestry-tract - getWellByIgsId, getServiceInfo §0 spec drift: brief listed portal.igs.indiana.edu as primary; rich registry actually lives on gisdata.in.gov state Hub. maps.indiana.edu root is HTML 404. operator_name on OilAndGasWells is ALWAYS NULL upstream. CRS varies (102100/4269/26916); outSR=4326.

Provenance

PublisherIN DNR Oil & Gas + State Lands

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (5)

  • searchWells

    read

    Indiana O&G wells (~78K). Filter county, status, lease, permit, classIIOnly, bbox/near.

    Entitieswell
    Input schema
    {
      "type": "object",
      "properties": {
        "county": {
          "type": "string",
          "examples": [
            "Gibson"
          ]
        },
        "igsId": {
          "type": "string"
        },
        "permitNumber": {
          "type": "string"
        },
        "leaseName": {
          "type": "string"
        },
        "operator": {
          "type": "string"
        },
        "status": {
          "type": "string",
          "examples": [
            "Active"
          ]
        },
        "classIIOnly": {
          "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
    }

    County values stored Title Case. operator_name column is always NULL upstream.

  • searchPipelines

    read

    Major natural gas pipelines (~215). Filter typePipe (Interstate|Intrastate), operator, bbox.

    Entitiespipeline
    Input schema
    {
      "type": "object",
      "properties": {
        "typePipe": {
          "type": "string",
          "examples": [
            "Interstate"
          ]
        },
        "operator": {
          "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
    }
  • searchManagedLands

    read

    DNR-managed lands. type: nature-preserve|recreation-site|forestry-tract. Filter name + bbox.

    Required paramstype
    Input schema
    {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "examples": [
            "nature-preserve"
          ],
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "nature-preserve"
              ]
            },
            {
              "type": "string",
              "enum": [
                "recreation-site"
              ]
            },
            {
              "type": "string",
              "enum": [
                "forestry-tract"
              ]
            }
          ]
        },
        "name": {
          "type": "string"
        },
        "category": {
          "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,
      "required": [
        "type"
      ]
    }

    Counts: nature-preserve 191, recreation-site 153, forestry-tract 1594.

  • getWellByIgsId

    read

    Single well lookup by igs_id.

    Required paramsigsId
    Entitieswell
    Input schema
    {
      "type": "object",
      "properties": {
        "igsId": {
          "type": "string",
          "examples": [
            "13"
          ]
        }
      },
      "additionalProperties": false,
      "required": [
        "igsId"
      ]
    }
  • getServiceInfo

    read

    Schema, record counts, and enum values for any of the 5 services.

    Entitiesmetadata
    Input schema
    {
      "type": "object",
      "properties": {
        "service": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "pipelines"
              ]
            },
            {
              "type": "string",
              "enum": [
                "oilAndGasWells"
              ]
            },
            {
              "type": "string",
              "enum": [
                "naturePreserves"
              ]
            },
            {
              "type": "string",
              "enum": [
                "recreationSites"
              ]
            },
            {
              "type": "string",
              "enum": [
                "forestryTracts"
              ]
            }
          ]
        }
      },
      "additionalProperties": false
    }