All data sources

NV Bureau of Mines & Geology

No authnv-nbmg

Nevada Bureau of Mines & Geology (NBMG, University of Nevada Reno) — minerals & energy. No-auth ArcGIS REST (gisweb.unr.edu, ArcGIS Server 10.71) covering the previously-uncovered state of Nevada, the #2 US geothermal producer and a leading critical-minerals state. Four point layers: historical oil & gas wells (through 2013), geothermal wells (rich AASG-style schema — operator, status, thermal class, commodity of interest), the Mineral Resources Data System (MRDS, ~15.5K Nevada sites with commodities, deposit type, development status), and critical mineral sites (lithium, tungsten, antimony, rare earths). All geometry returned as WGS84 lon/lat for the map viewer; several upstream string fields are space-padded and are trimmed by the handler. No auth.

Provenance

PublisherNV Bureau of Mines & Geology

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (5)

  • getOilAndGasWells

    read

    Oil & gas wells drilled in Nevada through 2013 (~1061), filter by county/operator/status

    Entitieswell
    Input 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

    read

    Nevada 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

    read

    Search 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

    read

    Nevada 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

    read

    Describe layers, fields, enums, Nevada counties, and source conventions.

    Entitiesmetadata
    Input schema
    {
      "type": "object",
      "properties": {
        "service": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }