All data sources

UT Department of Environmental Quality

No authut-deq

Utah DEQ — Voluntary Cleanup Program, Brownfields, CERCLIS hazardous-waste sites. - searchVoluntaryCleanup ⭐ ~142 VCP sites (mostly Salt Lake County) - searchBrownfields ~29 sites (Targeted 18 + Other 11 combined) - searchHazardousWasteSites ~145 active CERCLIS sites (~469 incl. archived) - getServiceInfo upstream quirks: AGOL services1.arcgis.com/99lidPhWCzftIe9K owned by UtahAGRC. All 4 layers use SITECNTY (NOT COUNTY) UPPERCASE. Date columns are MM/DD/YYYY strings (NOT epoch). VCP STATE = 'UT' only and POSTTONET = 'Yes' only — degenerate. SITEREM has ARCHIVED Err/No/Yes; default activeOnly filters to "No" (~145 vs raw 469). No UT-published RCRA hazardous-waste-handler service exists — for RCRA G/T/TSDF use EPA Envirofacts (already exposed).

Provenance

PublisherUT Department of Environmental Quality

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (4)

  • searchVoluntaryCleanup

    read

    UT DEQ Voluntary Cleanup Program (~142 sites). Filter county/siteName/derrId/city.

    Input schema
    {
      "type": "object",
      "properties": {
        "siteName": {
          "type": "string"
        },
        "derrId": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "county": {
          "type": "string",
          "examples": [
            "Salt Lake"
          ]
        },
        "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
    }

    SITECNTY (NOT COUNTY) UPPERCASE upstream. Mostly Salt Lake County.

  • searchBrownfields

    read

    UT DEQ Brownfields (Targeted + Other combined, ~29). bfType: targeted/other/all.

    Input schema
    {
      "type": "object",
      "properties": {
        "siteName": {
          "type": "string"
        },
        "derrId": {
          "type": "string"
        },
        "bfType": {
          "type": "string",
          "examples": [
            "targeted"
          ],
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "all"
              ]
            },
            {
              "type": "string",
              "enum": [
                "targeted"
              ]
            },
            {
              "type": "string",
              "enum": [
                "other"
              ]
            }
          ]
        },
        "county": {
          "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
    }
  • searchHazardousWasteSites

    read

    UT DEQ CERCLIS sites (~469, ~145 active). Default activeOnly filters ARCHIVED="No".

    Input schema
    {
      "type": "object",
      "properties": {
        "siteName": {
          "type": "string"
        },
        "derrId": {
          "type": "string"
        },
        "activeOnly": {
          "type": "boolean",
          "examples": [
            true
          ]
        },
        "npl": {
          "type": "string"
        },
        "county": {
          "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
    }

    For RCRA G/T/TSDF use EPA Envirofacts — UT publishes only CERCLIS-style sites.

  • getServiceInfo

    read

    Schema + record counts for any of 4 services (UT Department of Environmental Quality).

    Input schema
    {
      "type": "object",
      "properties": {
        "service": {
          "type": "string",
          "examples": [
            "vcp"
          ]
        }
      },
      "additionalProperties": false
    }