Provenance
Freshness & coverage
Methods (5)
searchWaterWells
readOhio water-well log inventory (~651K). Filter county/aquiferType/wellUse/driller/year/flowingOnly.
Input schema
{ "type": "object", "properties": { "aquiferType": { "type": "string" }, "wellUse": { "type": "string", "examples": [ "DOMESTIC" ] }, "driller": { "type": "string" }, "yearFrom": { "type": "number" }, "yearTo": { "type": "number" }, "flowingOnly": { "type": "boolean" }, "county": { "type": "string", "examples": [ "Belmont" ] }, "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_DESC UPPERCASE. WELL_USE_DESC: DOMESTIC/MONITOR/AGRIC/INJECTION.
searchUSDWFeatures
readUSDW protection zones for UIC injection planning. Default areas (polygons); boundaries lines.
Input schema
{ "type": "object", "properties": { "layer": { "type": "string", "examples": [ "Berea" ] }, "featureType": { "oneOf": [ { "type": "string", "enum": [ "areas" ] }, { "type": "string", "enum": [ "boundaries" ] } ] }, "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 }Areas n=189; Boundaries n=5. Top areas: Berea Sandstone, Lockport Dolomite.
searchEarthquakes
readODNR seismic catalog. catalog: instrumental | historical | both. Filter county/minMagnitude/year.
Input schema
{ "type": "object", "properties": { "catalog": { "oneOf": [ { "type": "string", "enum": [ "both" ] }, { "type": "string", "enum": [ "instrumental" ] }, { "type": "string", "enum": [ "historical" ] } ] }, "minMagnitude": { "type": "number", "examples": [ 2 ] }, "yearFrom": { "type": "number", "examples": [ 2010 ] }, "yearTo": { "type": "number" }, "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 }searchKarstFeatures
readKarst points (~46.7K). Filter county/pointType/bgUnit. POINT_TYPE has trailing whitespace.
Input schema
{ "type": "object", "properties": { "pointType": { "type": "string", "examples": [ "Karst" ] }, "bgUnit": { "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 }getServiceInfo
readSchema + record counts for any of the 6 services (OH Division of Geological Survey).
Input schema
{ "type": "object", "properties": { "service": { "type": "string", "examples": [ "waterWells" ] } }, "additionalProperties": false }
