All data sources

Macrostrat Geology

Unknown authmacrostrat

Macrostrat geologic database - stratigraphic columns, formation data, and geologic units. Query surface geology, get stratigraphic columns, and look up formation details. Useful for understanding subsurface geology for oil & gas exploration. CRITICAL USAGE RULES: 1. No authentication required 2. Use getGeologyAtPoint() for surface geology at a location 3. Use getStratColumn() for the full stratigraphic column 4. Use getFormationInfo() to look up formations like "Wolfcamp", "Bakken"

Provenance

PublisherMacrostrat Geology

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (4)

  • getGeologyAtPoint

    read

    Retrieve geology at a coordinate from geological map data.

    Input schema
    {
      "type": "object",
      "properties": {
        "latitude": {
          "type": "number"
        },
        "longitude": {
          "type": "number"
        }
      },
      "additionalProperties": false,
      "required": [
        "latitude",
        "longitude"
      ]
    }
  • getStratColumn

    read

    Retrieve local stratigraphic column data for a coordinate.

    Input schema
    {
      "type": "object",
      "properties": {
        "latitude": {
          "type": "number"
        },
        "longitude": {
          "type": "number"
        }
      },
      "additionalProperties": false,
      "required": [
        "latitude",
        "longitude"
      ]
    }
  • searchUnits

    read

    Search geological map units by unit name.

    Input schema
    {
      "type": "object",
      "properties": {
        "unitName": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "unitName"
      ]
    }
  • getFormationInfo

    read

    Retrieve detailed geological formation information by stratigraphic name.

    Input schema
    {
      "type": "object",
      "properties": {
        "stratName": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "stratName"
      ]
    }