Provenance
Freshness & coverage
Methods (7)
searchExplorationWells
readNJ oil & gas / exploration wells by county/name or near a point (36 records).
EntitieswellInput schema
{ "type": "object", "properties": { "county": { "type": "string" }, "name": { "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 }getBedrockGeology
readBedrock geology polygons by unit name or bbox/near as GeoJSON for a map.
Input schema
{ "type": "object", "properties": { "unit": { "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" } }, "additionalProperties": false }getAquifers
readBedrock or surficial aquifer extent polygons by name/location as GeoJSON.
Input schema
{ "type": "object", "properties": { "type": { "oneOf": [ { "type": "string", "enum": [ "bedrock" ] }, { "type": "string", "enum": [ "surficial" ] } ] }, "name": { "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" } }, "additionalProperties": false }getFaultsAndFolds
readFault and fold linework as GeoJSON (requires a bbox/near bound).
Input schema
{ "type": "object", "properties": { "feature": { "oneOf": [ { "type": "string", "enum": [ "both" ] }, { "type": "string", "enum": [ "faults" ] }, { "type": "string", "enum": [ "folds" ] } ] }, "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" } }, "additionalProperties": false }getGroundwaterRechargeAreas
readRecharge (bounded) + sole-source aquifer polygons as GeoJSON.
Input schema
{ "type": "object", "properties": { "layer": { "oneOf": [ { "type": "string", "enum": [ "recharge" ] }, { "type": "string", "enum": [ "soleSource" ] } ] }, "rank": { "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" } }, "additionalProperties": false }searchGroundwaterQuality
readAmbient GW-quality monitoring stations by analyte group + county/location.
Input schema
{ "type": "object", "properties": { "analyteGroup": { "type": "string" }, "county": { "type": "string" }, "municipality": { "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
readConnector surface, layer ids, field meanings, and live record counts.
EntitiesmetadataInput schema
{ "type": "object", "properties": { "service": { "type": "string" } }, "additionalProperties": false }
