All data sources

C-NLOPB (Canada Offshore)

No authcnlopb

The Canada-Newfoundland and Labrador Offshore Petroleum Board (C-NLOPB) regulates offshore oil and gas in Atlantic Canada. This connector reads its public ArcGIS Online hosted feature services for exploration, delineation, development, and dual-classified wells (operator, status, spud/termination dates, water depth, total depth, licence, region) and the offshore licence registry (exploration, production, significant discovery). No credentials required.

Provenance

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (4)

  • searchWells

    read

    Search Canada offshore wells by operator, name, status, region, licence, category, or bbox.

    Entitieswell
    Input schema
    {
      "type": "object",
      "properties": {
        "operator": {
          "type": "string",
          "examples": [
            "HMDC"
          ]
        },
        "wellName": {
          "type": "string"
        },
        "status": {
          "type": "string",
          "examples": [
            "Oil Producer"
          ]
        },
        "region": {
          "type": "string"
        },
        "licence": {
          "type": "string"
        },
        "category": {
          "type": "string"
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "limit": {
          "type": "number",
          "examples": [
            50
          ]
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }

    ~553 wells; GeoJSON points (WGS84). Unions the 4 base category views.

  • getWellDetail

    read

    Get one offshore well by FID (the OID field is FID, not OBJECTID).

    Entitieswell
    Input schema
    {
      "type": "object",
      "properties": {
        "fid": {
          "type": "number",
          "examples": [
            1
          ]
        },
        "category": {
          "type": "string",
          "examples": [
            "exploration"
          ]
        }
      },
      "additionalProperties": false,
      "required": [
        "fid"
      ]
    }

    fid is per-view; probes the category views and returns the first hit.

  • searchLicences

    read

    Search offshore licences by name, type, or year issued (range supported).

    Entitieslease
    Input schema
    {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "type": {
          "type": "string",
          "examples": [
            "Production"
          ]
        },
        "yearIssued": {
          "type": "number"
        },
        "yearFrom": {
          "type": "number",
          "examples": [
            2010
          ]
        },
        "yearTo": {
          "type": "number"
        },
        "limit": {
          "type": "number"
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }

    85 licences; Type: Exploration | Production | Significant Discovery.

  • getServiceInfo

    read

    List the C-NLOPB ArcGIS layers this connector exposes with live feature counts.

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