All data sources

Environmental Analysis

Unknown authenvironmental

Combined environmental analysis for oil & gas regulatory compliance. Aggregates data from multiple government sources: - USFWS National Wetlands Inventory (NWI) - Section 404 permit requirements - FEMA National Flood Hazard Layer (NFHL) - Flood zone analysis - USGS National Hydrography Dataset (NHD) - Water feature setbacks - USDA NRCS Soil Data Access (SDA) - Soil properties CRITICAL USAGE RULES: 1. All APIs are free government services - NO authentication required 2. Use analyzeLocation() for comprehensive site analysis 3. Use checkWellSite() for regulatory constraint checks 4. Coordinates are latitude/longitude in WGS84 (EPSG:4326)

Provenance

PublisherEnvironmental Analysis

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (2)

  • analyzeLocation

    read

    Comprehensive environmental analysis combining wetlands, flood zones, and water features

    Required paramslatitudelongitude
    Input schema
    {
      "type": "object",
      "properties": {
        "latitude": {
          "type": "number",
          "examples": [
            31.9973
          ]
        },
        "longitude": {
          "type": "number",
          "examples": [
            -102.0779
          ]
        },
        "bufferMeters": {
          "type": "number",
          "examples": [
            500
          ]
        }
      },
      "additionalProperties": false,
      "required": [
        "latitude",
        "longitude"
      ]
    }
  • checkWellSite

    read

    Environmental constraints and regulatory recommendations for proposed well locations

    Required paramslatitudelongitude
    Input schema
    {
      "type": "object",
      "properties": {
        "latitude": {
          "type": "number",
          "examples": [
            31.9973
          ]
        },
        "longitude": {
          "type": "number",
          "examples": [
            -102.0779
          ]
        },
        "setbackMeters": {
          "type": "number",
          "examples": [
            150
          ]
        }
      },
      "additionalProperties": false,
      "required": [
        "latitude",
        "longitude"
      ]
    }