Provenance
Freshness & coverage
Methods (5)
getOilAndGasWells
readOil & gas wells drilled in Nevada through 2013 (~1061), filter by county/operator/status
EntitieswellInput schema
{ "type": "object", "properties": { "county": { "type": "string", "examples": [ "Nye" ] }, "operator": { "type": "string" }, "status": { "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", "examples": [ 100 ] }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }Filter county, operator, status, bbox, or near; limit 500; records or GeoJSON.
getGeothermalWells
readNevada geothermal wells (~2854) with thermal class, operator, status, commodity of interest
Input schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "status": { "type": "string" }, "wellType": { "type": "string" }, "thermalClass": { "type": "string", "examples": [ "Hot Well" ] }, "commodityOfInterest": { "type": "string", "examples": [ "Geothermal Energy" ] }, "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 }Filter operator, status, class, commodity, county, bbox, or near; dates are ISO.
searchMineralResources
readSearch about 15,500 Nevada MRDS sites by commodity, deposit type, or status.
Input schema
{ "type": "object", "properties": { "siteName": { "type": "string" }, "commodity": { "type": "string", "examples": [ "gold" ] }, "depositType": { "type": "string" }, "developmentStatus": { "type": "string", "examples": [ "Producer" ] }, "county": { "type": "string", "examples": [ "Elko" ] }, "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 }Filter site, commodity, deposit, status, county, bbox, or near; records/GeoJSON.
getCriticalMinerals
readNevada critical mineral sites (~2456) — lithium, tungsten, antimony, rare earths and more
Input schema
{ "type": "object", "properties": { "commodity": { "type": "string", "examples": [ "Lithium" ] }, "siteName": { "type": "string" }, "district": { "type": "string" }, "production": { "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 }Filter commodity, site, district, production, bbox, or near; trims source.
getServiceInfo
readDescribe layers, fields, enums, Nevada counties, and source conventions.
EntitiesmetadataInput schema
{ "type": "object", "properties": { "service": { "type": "string" } }, "additionalProperties": false }
