Files
worldmonitor/scripts/data/pipelines-gas.json
Elie Habib 8655bd81bc feat(energy-atlas): GEM pipeline data import — gas 297, oil 334 (#3406)
* feat(energy-atlas): GEM pipeline data import — gas 75→297, oil 75→334 (parity-push closure)

Closes the ~3.6× pipeline-scale gap that PR #3397's import infrastructure
was built for. Per docs/methodology/pipelines.mdx operator runbook.

Source releases (CC-BY 4.0, attribution preserved in registry envelope):
  - GEM-GGIT-Gas-Pipelines-2025-11.xlsx
    SHA256: f56d8b14400e558f06e53a4205034d3d506fc38c5ae6bf58000252f87b1845e6
    URL:    https://globalenergymonitor.org/wp-content/uploads/2025/11/GEM-GGIT-Gas-Pipelines-2025-11.xlsx
  - GEM-GOIT-Oil-NGL-Pipelines-2025-03.xlsx
    SHA256: d1648d28aed99cfd2264047f1e944ddfccf50ce9feeac7de5db233c601dc3bb2
    URL:    https://globalenergymonitor.org/wp-content/uploads/2025/03/GEM-GOIT-Oil-NGL-Pipelines-2025-03.xlsx

Pre-conversion: GeoJSON (geometry endpoints) + XLSX (column properties) →
canonical operator-shape JSON via /tmp/gem-import/convert.py. Filter knobs:
  - status ∈ {operating, construction}
  - length ≥ 750 km (gas) / 400 km (oil) — asymmetric per-fuel trunk-class
  - capacity unit conversions: bcm/y native; MMcf/d, MMSCMD, mtpa, m3/day,
    bpd, Mb/d, kbd → bcm/y (gas) or bbl/d (oil) at canonical conversion factors.
  - Country names → ISO 3166-1 alpha-2 via pycountry + alias table.

Merge results (via scripts/import-gem-pipelines.mjs --merge):
  gas: +222 added, 15 duplicates skipped (haversine ≤ 5km AND token Jaccard ≥ 0.6)
  oil: +259 added, 16 duplicates skipped
  Final: 297 gas / 334 oil. Hand-curated 75+75 preserved with full evidence;
  GEM rows ship physicalStateSource='gem', classifierConfidence=0.4,
  operatorStatement=null, sanctionRefs=[].

Floor bump:
  scripts/_pipeline-registry.mjs MIN_PIPELINES_PER_REGISTRY 8 → 200.
  Live counts (297/334) leave ~100 rows of jitter headroom so a partial
  re-import or coverage-narrowing release fails loud rather than halving
  the registry silently.

Tests:
  - tests/pipelines-registry.test.mts: bumped synthetic-registry
    Array.from({length:8}) → length:210 to clear new floor; added 'gem' to
    the evidence-source whitelist for non-flowing badges (parity with the
    derivePipelinePublicBadge audit done in PR #3397 U1).
  - tests/import-gem-pipelines.test.mjs: bumped registry-conformance loop
    3 → 70 to clear new floor.
  - 51/51 pipeline tests pass; tsc --noEmit clean.

vs peer reference site (281 gas + 265 oil): we now match (gas 297) and
exceed (oil 334). Functional + visual + data parity for the energy variant
is closed; remaining gaps are editorial-cadence (weekly briefing) which
is intentionally out of scope per the parity-push plan.

* docs(energy-atlas): land GEM converter + expand methodology runbook for quarterly refresh

PR #3406 imported the data but didn't land the conversion script that
produced it. This commit lands the converter at scripts/_gem-geojson-to-canonical.py
so future operators can reproduce the import deterministically, and rewrites
the docs/methodology/pipelines.mdx runbook to match what actually works:

- Use GeoJSON (not XLSX) — the XLSX has properties but no lat/lon columns;
  only the GIS .zip's GeoJSON has both. The original runbook said to download
  XLSX which would fail at the lat/lon validation step.
- Cadence: quarterly refresh, with concrete signals (peer-site comparison,
  90-day calendar reminder).
- Source datasets: explicit GGIT (gas) + GOIT (oil/NGL) tracker names so
  future operators don't re-request the wrong dataset (the Extraction
  Tracker = wells/fields, NOT pipelines — ours requires the Infrastructure
  Trackers).
- Last-known-good URLs documented + URL pattern explained as fallback when
  GEM rotates per release.
- Filter knob defaults documented inline (gas ≥ 750km, oil ≥ 400km, status
  ∈ {operating, construction}, capacity unit conversion table).
- Failure-mode table mapping common errors to fixes.

Converter takes paths via env vars (GEM_GAS_GEOJSON, GEM_OIL_GEOJSON,
GEM_DOWNLOADED_AT, GEM_SOURCE_VERSION) instead of hardcoded paths so it
works for any release without code edits.

* fix(energy-atlas): close PR #3406 review findings — dedup + zero-length + test

Three Greptile findings on PR #3406:

P1 — Dedup miss (Dampier-Bunbury):
  Same physical pipeline existed in both registries — curated `dampier-bunbury`
  and GEM-imported `dampier-to-bunbury-natural-gas-pipeline-au` — because GEM
  digitized only the southern 60% of the line. The shared Bunbury terminus
  matched at 13.7 km but the average-endpoint distance was 287 km, just over
  the 5 km gate.
  Fix: scripts/_pipeline-dedup.mjs adds a name-set-identity short-circuit —
  if Jaccard == 1.0 (after stopword removal) AND any of the 4 endpoint
  pairings is ≤ 25 km, treat as duplicate. The 25 km anchor preserves the
  existing "name collision in different ocean → still added" contract.
  Added regression test: identical Dampier-Bunbury inputs → 0 added, 1
  skipped, matched against `dampier-bunbury`.

P1 — Zero-length geometry (9 rows: Trans-Alaska, Enbridge Line 3, Ichthys, etc.):
  GEM source GeoJSON occasionally has a Point geometry or single-coord
  LineString, producing pipelines where startPoint == endPoint. They render
  as map-point artifacts and skew aggregate-length stats.
  Fix (defense in depth):
    - scripts/_gem-geojson-to-canonical.py drops at conversion time
      (`zero_length` reason in drop log).
    - scripts/_pipeline-registry.mjs validateRegistry rejects defensively
      so even a hand-curated row with degenerate geometry fails loud.

P2 — Test repetition coupled to fixture row count:
  Hardcoded `for (let i = 0; i < 70; i++)` × 3 fixture rows = 210 silently
  breaks if fixture is trimmed below 3.
  Fix: `Math.ceil(REGISTRY_FLOOR / fixture.length) + 5` derives reps from
  the floor and current fixture length.

Re-run --merge with all fixes applied:
  gas: 75 → 293 (+218 added, 17 deduped — was 222/15 before; +2 catches via
       name-set-identity short-circuit; -2 zero-length never imported)
  oil: 75 → 325 (+250 added, 18 deduped — was 259/16; +2 catches; -7 zero-length)

Tests: 74/74 pipeline tests pass; tsc --noEmit clean.
2026-04-25 18:59:46 +04:00

9037 lines
265 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"source": "Curated from operator disclosures, regulator filings, ENTSOG, GEM (CC-BY 4.0) + Global Energy Monitor (CC-BY 4.0)",
"methodologyUrl": "/docs/methodology/pipelines",
"version": "v1",
"referenceYear": 2026,
"classifierVersion": "v1",
"pipelines": {
"nord-stream-1": {
"id": "nord-stream-1",
"name": "Nord Stream 1",
"operator": "Nord Stream AG",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "DE",
"transitCountries": [],
"capacityBcmYr": 55,
"lengthKm": 1224,
"inService": 2011,
"startPoint": {
"lat": 60.08,
"lon": 29.05
},
"endPoint": {
"lat": 54.14,
"lon": 13.66
},
"evidence": {
"physicalState": "offline",
"physicalStateSource": "operator",
"operatorStatement": {
"text": "Pipelines damaged by underwater explosions in Swedish/Danish EEZ (Sep 2022); operator filed for insolvency.",
"url": "https://www.nordstream.com/press-info/",
"date": "2022-09-26"
},
"commercialState": "suspended",
"sanctionRefs": [
{
"authority": "EU",
"listId": "2022/1269 (energy sanctions package 8)",
"date": "2022-10-06",
"url": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32022R1269"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.98
}
},
"nord-stream-2": {
"id": "nord-stream-2",
"name": "Nord Stream 2",
"operator": "Nord Stream 2 AG",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "DE",
"transitCountries": [],
"capacityBcmYr": 55,
"lengthKm": 1234,
"inService": null,
"startPoint": {
"lat": 60.08,
"lon": 29.05
},
"endPoint": {
"lat": 54.14,
"lon": 13.66
},
"evidence": {
"physicalState": "offline",
"physicalStateSource": "operator",
"operatorStatement": {
"text": "One of two lines damaged in Sep 2022 sabotage; commissioning halted by Germany in Feb 2022.",
"url": "https://www.bundesregierung.de/breg-en/news/baerbock-ukraine-russia-nordstream2-2005934",
"date": "2022-02-22"
},
"commercialState": "suspended",
"sanctionRefs": [
{
"authority": "US",
"listId": "OFAC (PEESA)",
"date": "2022-02-23",
"url": "https://home.treasury.gov/news/press-releases/jy0602"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.95
}
},
"turkstream": {
"id": "turkstream",
"name": "TurkStream",
"operator": "South Stream Transport B.V. (Gazprom)",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "TR",
"transitCountries": [],
"capacityBcmYr": 31.5,
"lengthKm": 930,
"inService": 2020,
"startPoint": {
"lat": 44.95,
"lon": 37.32
},
"endPoint": {
"lat": 41.89,
"lon": 28.02
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.85
}
},
"yamal-europe": {
"id": "yamal-europe",
"name": "YamalEurope Pipeline",
"operator": "Gazprom / EuRoPol GAZ / WinGas",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "DE",
"transitCountries": [
"BY",
"PL"
],
"capacityBcmYr": 33,
"lengthKm": 4107,
"inService": 1999,
"startPoint": {
"lat": 66.52,
"lon": 66.6
},
"endPoint": {
"lat": 52.27,
"lon": 14.64
},
"evidence": {
"physicalState": "offline",
"physicalStateSource": "press",
"operatorStatement": null,
"commercialState": "expired",
"sanctionRefs": [
{
"authority": "Poland",
"listId": "Retaliatory counter-sanctions on EuRoPol GAZ",
"date": "2022-04-26",
"url": "https://www.gov.pl/web/aktywa-panstwowe/"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.9
}
},
"brotherhood-soyuz": {
"id": "brotherhood-soyuz",
"name": "Brotherhood & Soyuz (Transit via Ukraine)",
"operator": "Gazprom / Naftogaz",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "SK",
"transitCountries": [
"UA"
],
"capacityBcmYr": 142,
"lengthKm": 4451,
"inService": 1983,
"startPoint": {
"lat": 58,
"lon": 56
},
"endPoint": {
"lat": 48.6,
"lon": 22.14
},
"evidence": {
"physicalState": "offline",
"physicalStateSource": "operator",
"operatorStatement": {
"text": "Ukraine transit contract expired 2024-12-31; Naftogaz did not renew.",
"url": "https://www.naftogaz.com/en/news",
"date": "2025-01-01"
},
"commercialState": "expired",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.92
}
},
"power-of-siberia": {
"id": "power-of-siberia",
"name": "Power of Siberia",
"operator": "Gazprom / CNPC",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 38,
"lengthKm": 3000,
"inService": 2019,
"startPoint": {
"lat": 62.45,
"lon": 129.73
},
"endPoint": {
"lat": 49.58,
"lon": 127.52
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.9
}
},
"dolphin": {
"id": "dolphin",
"name": "Dolphin Gas Pipeline",
"operator": "Dolphin Energy Ltd",
"commodityType": "gas",
"fromCountry": "QA",
"toCountry": "AE",
"transitCountries": [],
"capacityBcmYr": 20.4,
"lengthKm": 364,
"inService": 2007,
"startPoint": {
"lat": 25.9,
"lon": 51.5
},
"endPoint": {
"lat": 24.47,
"lon": 54.37
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.92
}
},
"medgaz": {
"id": "medgaz",
"name": "Medgaz",
"operator": "Medgaz S.A. (Sonatrach / Naturgy)",
"commodityType": "gas",
"fromCountry": "DZ",
"toCountry": "ES",
"transitCountries": [],
"capacityBcmYr": 10.5,
"lengthKm": 757,
"inService": 2011,
"startPoint": {
"lat": 35.67,
"lon": -0.64
},
"endPoint": {
"lat": 36.73,
"lon": -2.59
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.9
}
},
"tap": {
"id": "tap",
"name": "Trans-Adriatic Pipeline (TAP)",
"operator": "TAP AG",
"commodityType": "gas",
"fromCountry": "TR",
"toCountry": "IT",
"transitCountries": [
"GR",
"AL"
],
"capacityBcmYr": 10,
"lengthKm": 878,
"inService": 2020,
"startPoint": {
"lat": 40.91,
"lon": 26.27
},
"endPoint": {
"lat": 40.53,
"lon": 17.85
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.92
}
},
"tanap": {
"id": "tanap",
"name": "Trans-Anatolian Pipeline (TANAP)",
"operator": "TANAP Doğalgaz İletim A.Ş.",
"commodityType": "gas",
"fromCountry": "AZ",
"toCountry": "TR",
"transitCountries": [
"GE"
],
"capacityBcmYr": 16,
"lengthKm": 1850,
"inService": 2018,
"startPoint": {
"lat": 41.17,
"lon": 42.85
},
"endPoint": {
"lat": 40.91,
"lon": 26.27
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.9
}
},
"central-asia-china": {
"id": "central-asia-china",
"name": "Central AsiaChina Gas Pipeline",
"operator": "CNPC / Turkmengaz / KazTransGas",
"commodityType": "gas",
"fromCountry": "TM",
"toCountry": "CN",
"transitCountries": [
"UZ",
"KZ"
],
"capacityBcmYr": 55,
"lengthKm": 1833,
"inService": 2009,
"startPoint": {
"lat": 40,
"lon": 62.5
},
"endPoint": {
"lat": 42.88,
"lon": 80.2
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.88
}
},
"langeled": {
"id": "langeled",
"name": "Langeled",
"operator": "Gassco",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "GB",
"transitCountries": [],
"capacityBcmYr": 25.5,
"lengthKm": 1166,
"inService": 2006,
"startPoint": {
"lat": 64.82,
"lon": 6.7
},
"endPoint": {
"lat": 53.71,
"lon": -0.31
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.95
}
},
"europipe-1": {
"id": "europipe-1",
"name": "Europipe I",
"operator": "Gassco",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "DE",
"transitCountries": [],
"capacityBcmYr": 16,
"lengthKm": 620,
"inService": 1995,
"startPoint": {
"lat": 56.55,
"lon": 3.22
},
"endPoint": {
"lat": 53.5,
"lon": 7.12
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.95
}
},
"europipe-2": {
"id": "europipe-2",
"name": "Europipe II",
"operator": "Gassco",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "DE",
"transitCountries": [],
"capacityBcmYr": 24,
"lengthKm": 658,
"inService": 1999,
"startPoint": {
"lat": 58.85,
"lon": 2.07
},
"endPoint": {
"lat": 53.5,
"lon": 7.12
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.95
}
},
"franpipe": {
"id": "franpipe",
"name": "Franpipe",
"operator": "Gassco",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "FR",
"transitCountries": [],
"capacityBcmYr": 19.2,
"lengthKm": 840,
"inService": 1998,
"startPoint": {
"lat": 56.54,
"lon": 3.22
},
"endPoint": {
"lat": 51.08,
"lon": 2.35
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.95
}
},
"zeepipe": {
"id": "zeepipe",
"name": "Zeepipe",
"operator": "Gassco",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "BE",
"transitCountries": [],
"capacityBcmYr": 15,
"lengthKm": 814,
"inService": 1993,
"startPoint": {
"lat": 60.62,
"lon": 3.33
},
"endPoint": {
"lat": 51.33,
"lon": 3.2
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.95
}
},
"interconnector-uk-be": {
"id": "interconnector-uk-be",
"name": "Interconnector UKBelgium",
"operator": "Interconnector (UK) Limited",
"commodityType": "gas",
"fromCountry": "GB",
"toCountry": "BE",
"transitCountries": [],
"capacityBcmYr": 25.5,
"lengthKm": 235,
"inService": 1998,
"startPoint": {
"lat": 52.08,
"lon": 1.67
},
"endPoint": {
"lat": 51.33,
"lon": 3.2
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.92
}
},
"bbl": {
"id": "bbl",
"name": "BBL (BalgzandBacton Line)",
"operator": "BBL Company",
"commodityType": "gas",
"fromCountry": "NL",
"toCountry": "GB",
"transitCountries": [],
"capacityBcmYr": 19,
"lengthKm": 235,
"inService": 2006,
"startPoint": {
"lat": 52.93,
"lon": 4.83
},
"endPoint": {
"lat": 52.85,
"lon": 1.45
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.92
}
},
"transmed": {
"id": "transmed",
"name": "Trans-Mediterranean (Enrico Mattei)",
"operator": "Sonatrach / Eni",
"commodityType": "gas",
"fromCountry": "DZ",
"toCountry": "IT",
"transitCountries": [
"TN"
],
"capacityBcmYr": 33.5,
"lengthKm": 2475,
"inService": 1983,
"startPoint": {
"lat": 31.67,
"lon": 5.02
},
"endPoint": {
"lat": 37.63,
"lon": 12.73
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.92
}
},
"greenstream": {
"id": "greenstream",
"name": "Greenstream",
"operator": "Eni / Mellitah Oil & Gas",
"commodityType": "gas",
"fromCountry": "LY",
"toCountry": "IT",
"transitCountries": [],
"capacityBcmYr": 8,
"lengthKm": 520,
"inService": 2004,
"startPoint": {
"lat": 32.6,
"lon": 12.47
},
"endPoint": {
"lat": 37.12,
"lon": 14.28
},
"evidence": {
"physicalState": "reduced",
"physicalStateSource": "press",
"operatorStatement": "Libya supply constrained since 2011 civil conflict; Eni/Mellitah flows reportedly well below 8 Bcm/yr nameplate per Reuters and Eni operator statements (2020-2024).",
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.78
}
},
"meg-maghreb-europe": {
"id": "meg-maghreb-europe",
"name": "MaghrebEurope Gas Pipeline (GME)",
"operator": "Metragaz / Enagás",
"commodityType": "gas",
"fromCountry": "DZ",
"toCountry": "ES",
"transitCountries": [
"MA"
],
"capacityBcmYr": 12,
"lengthKm": 1620,
"inService": 1996,
"startPoint": {
"lat": 32.13,
"lon": -0.67
},
"endPoint": {
"lat": 36.15,
"lon": -5.45
},
"evidence": {
"physicalState": "offline",
"physicalStateSource": "regulator",
"operatorStatement": {
"text": "Contract not renewed Oct 2021; pipeline closed between Algeria and Morocco amid diplomatic dispute.",
"url": "https://www.energy.gov.dz/",
"date": "2021-10-31"
},
"commercialState": "expired",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.9
}
},
"igb": {
"id": "igb",
"name": "Interconnector GreeceBulgaria (IGB)",
"operator": "ICGB",
"commodityType": "gas",
"fromCountry": "GR",
"toCountry": "BG",
"transitCountries": [],
"capacityBcmYr": 3,
"lengthKm": 182,
"inService": 2022,
"startPoint": {
"lat": 40.93,
"lon": 25.14
},
"endPoint": {
"lat": 42.15,
"lon": 24.75
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.9
}
},
"arab-gas-pipeline": {
"id": "arab-gas-pipeline",
"name": "Arab Gas Pipeline",
"operator": "Arab Gas Pipeline Consortium",
"commodityType": "gas",
"fromCountry": "EG",
"toCountry": "LB",
"transitCountries": [
"JO",
"SY"
],
"capacityBcmYr": 10.3,
"lengthKm": 1200,
"inService": 2003,
"startPoint": {
"lat": 31.33,
"lon": 32.28
},
"endPoint": {
"lat": 34.27,
"lon": 35.67
},
"evidence": {
"physicalState": "offline",
"physicalStateSource": "press",
"operatorStatement": null,
"commercialState": "suspended",
"sanctionRefs": [
{
"authority": "US",
"listId": "Caesar Act (Syria)",
"date": "2020-06-17",
"url": "https://www.congress.gov/bill/116th-congress/house-bill/31"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.85
}
},
"blue-stream": {
"id": "blue-stream",
"name": "Blue Stream",
"operator": "Gazprom / Eni (Blue Stream Pipeline Company)",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "TR",
"transitCountries": [],
"capacityBcmYr": 16,
"lengthKm": 1213,
"inService": 2003,
"startPoint": {
"lat": 44.72,
"lon": 37.75
},
"endPoint": {
"lat": 41.05,
"lon": 34.58
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [
{
"authority": "EU",
"listId": "2022/1269 (energy sanctions package 8)",
"date": "2022-10-06",
"url": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32022R1269"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.9
}
},
"west-east-3": {
"id": "west-east-3",
"name": "WestEast Gas Pipeline 3 (China)",
"operator": "PetroChina",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 30,
"lengthKm": 7378,
"inService": 2014,
"startPoint": {
"lat": 42.95,
"lon": 80.35
},
"endPoint": {
"lat": 26.08,
"lon": 119.3
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.88
}
},
"myanmar-china-gas": {
"id": "myanmar-china-gas",
"name": "MyanmarChina Gas Pipeline (Shwe)",
"operator": "South East Asia Gas Pipeline Company (CNPC-led)",
"commodityType": "gas",
"fromCountry": "MM",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 12,
"lengthKm": 793,
"inService": 2013,
"startPoint": {
"lat": 20.15,
"lon": 93.53
},
"endPoint": {
"lat": 24.45,
"lon": 98.58
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.85
}
},
"wagp": {
"id": "wagp",
"name": "West African Gas Pipeline (WAGP)",
"operator": "WAPCo (Chevron-led consortium)",
"commodityType": "gas",
"fromCountry": "NG",
"toCountry": "GH",
"transitCountries": [
"BJ",
"TG"
],
"capacityBcmYr": 5,
"lengthKm": 678,
"inService": 2010,
"startPoint": {
"lat": 6.35,
"lon": 3.38
},
"endPoint": {
"lat": 5.1,
"lon": -1.27
},
"evidence": {
"physicalState": "reduced",
"physicalStateSource": "press",
"operatorStatement": "Chronic feedgas shortages from Nigerian domestic demand + recurring vandalism of Escravos-Lagos feeder have kept WAGP throughput intermittent since 2012 per GhanaWeb / Reuters coverage and operator WAPCo status notices.",
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.78
}
},
"gasbol": {
"id": "gasbol",
"name": "BoliviaBrazil Gas Pipeline (GASBOL)",
"operator": "TBG / GTB",
"commodityType": "gas",
"fromCountry": "BO",
"toCountry": "BR",
"transitCountries": [],
"capacityBcmYr": 11,
"lengthKm": 3150,
"inService": 1999,
"startPoint": {
"lat": -18.85,
"lon": -57.85
},
"endPoint": {
"lat": -29.95,
"lon": -51.13
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.9
}
},
"vesterled": {
"id": "vesterled",
"name": "Vesterled",
"operator": "Gassco",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "GB",
"transitCountries": [],
"capacityBcmYr": 13,
"lengthKm": 363,
"inService": 2001,
"startPoint": {
"lat": 59.9,
"lon": 1.85
},
"endPoint": {
"lat": 57.6,
"lon": -1.8
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.92
}
},
"cats": {
"id": "cats",
"name": "Central Area Transmission System (CATS)",
"operator": "Kellas Midstream",
"commodityType": "gas",
"fromCountry": "GB",
"toCountry": "GB",
"transitCountries": [],
"capacityBcmYr": 9.6,
"lengthKm": 404,
"inService": 1993,
"startPoint": {
"lat": 57.83,
"lon": 0.9
},
"endPoint": {
"lat": 54.63,
"lon": -1.17
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.9
}
},
"iran-turkey-gas": {
"id": "iran-turkey-gas",
"name": "IranTurkey Gas Pipeline (TabrizAnkara)",
"operator": "NIGC / BOTAŞ",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "TR",
"transitCountries": [],
"capacityBcmYr": 14,
"lengthKm": 2577,
"inService": 2001,
"startPoint": {
"lat": 38.08,
"lon": 46.3
},
"endPoint": {
"lat": 39.92,
"lon": 32.85
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [
{
"authority": "US",
"listId": "OFAC Iran energy sanctions framework",
"date": "2018-08-07",
"url": "https://home.treasury.gov/policy-issues/financial-sanctions/sanctions-programs-and-country-information/iran-sanctions"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.85
}
},
"iran-armenia-gas": {
"id": "iran-armenia-gas",
"name": "IranArmenia Gas Pipeline",
"operator": "Gazprom Armenia",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "AM",
"transitCountries": [],
"capacityBcmYr": 2.3,
"lengthKm": 140,
"inService": 2007,
"startPoint": {
"lat": 38.92,
"lon": 46.08
},
"endPoint": {
"lat": 39.33,
"lon": 45.35
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [
{
"authority": "US",
"listId": "OFAC Iran energy sanctions framework",
"date": "2018-08-07",
"url": "https://home.treasury.gov/policy-issues/financial-sanctions/sanctions-programs-and-country-information/iran-sanctions"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.82
}
},
"iran-iraq-basra-gas": {
"id": "iran-iraq-basra-gas",
"name": "IranIraq Gas Pipeline (Basra line)",
"operator": "NIGC / Iraq Ministry of Electricity",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "IQ",
"transitCountries": [],
"capacityBcmYr": 9,
"lengthKm": 270,
"inService": 2017,
"startPoint": {
"lat": 31.35,
"lon": 48.67
},
"endPoint": {
"lat": 30.5,
"lon": 47.8
},
"evidence": {
"physicalState": "reduced",
"physicalStateSource": "press",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [
{
"authority": "US",
"listId": "OFAC Iran energy sanctions framework (US waivers intermittent)",
"date": "2018-08-07",
"url": "https://home.treasury.gov/policy-issues/financial-sanctions/sanctions-programs-and-country-information/iran-sanctions"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.78
}
},
"central-asia-center": {
"id": "central-asia-center",
"name": "Central AsiaCenter (CAC)",
"operator": "Gazprom / TürkmenGaz",
"commodityType": "gas",
"fromCountry": "TM",
"toCountry": "RU",
"transitCountries": [
"UZ",
"KZ"
],
"capacityBcmYr": 44,
"lengthKm": 5000,
"inService": 1967,
"startPoint": {
"lat": 40.8,
"lon": 54.02
},
"endPoint": {
"lat": 51.53,
"lon": 45.72
},
"evidence": {
"physicalState": "reduced",
"physicalStateSource": "press",
"operatorStatement": "Gazprom terminated Turkmen imports in 2016 over price dispute; limited 2019+ reactivation at well below nameplate per Reuters and TASS coverage.",
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.75
}
},
"south-caucasus-scp": {
"id": "south-caucasus-scp",
"name": "South Caucasus Pipeline (SCP / BakuTbilisiErzurum)",
"operator": "BP (South Caucasus Pipeline Company)",
"commodityType": "gas",
"fromCountry": "AZ",
"toCountry": "TR",
"transitCountries": [
"GE"
],
"capacityBcmYr": 22,
"lengthKm": 692,
"inService": 2006,
"startPoint": {
"lat": 40.37,
"lon": 50.25
},
"endPoint": {
"lat": 39.9,
"lon": 41.27
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.92
}
},
"west-east-1": {
"id": "west-east-1",
"name": "WestEast Gas Pipeline 1 (China)",
"operator": "PetroChina",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 17,
"lengthKm": 4200,
"inService": 2004,
"startPoint": {
"lat": 39.47,
"lon": 84.98
},
"endPoint": {
"lat": 31.23,
"lon": 121.47
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.88
}
},
"west-east-2": {
"id": "west-east-2",
"name": "WestEast Gas Pipeline 2 (China)",
"operator": "PetroChina",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 30,
"lengthKm": 8700,
"inService": 2011,
"startPoint": {
"lat": 45.13,
"lon": 82.57
},
"endPoint": {
"lat": 22.95,
"lon": 113.4
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.88
}
},
"bolivia-argentina-yacuiba": {
"id": "bolivia-argentina-yacuiba",
"name": "BoliviaArgentina Gas Pipeline (GIJA / Yacuiba)",
"operator": "YPFB / Energía Argentina",
"commodityType": "gas",
"fromCountry": "BO",
"toCountry": "AR",
"transitCountries": [],
"capacityBcmYr": 7.7,
"lengthKm": 441,
"inService": 1972,
"startPoint": {
"lat": -22.02,
"lon": -63.67
},
"endPoint": {
"lat": -24.15,
"lon": -65.3
},
"evidence": {
"physicalState": "reduced",
"physicalStateSource": "press",
"operatorStatement": "Bolivian upstream output declining since 2018; YPFB-CIESA exports fell from 22 MMcm/d to <14 MMcm/d by 2023 per IEA Gas Market Report + BNamericas coverage.",
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.78
}
},
"antonio-ricaurte": {
"id": "antonio-ricaurte",
"name": "Antonio Ricaurte Pipeline (ColombiaVenezuela)",
"operator": "TGI / PDVSA",
"commodityType": "gas",
"fromCountry": "CO",
"toCountry": "VE",
"transitCountries": [],
"capacityBcmYr": 5,
"lengthKm": 224,
"inService": 2007,
"startPoint": {
"lat": 11.38,
"lon": -72.47
},
"endPoint": {
"lat": 10.67,
"lon": -71.67
},
"evidence": {
"physicalState": "offline",
"physicalStateSource": "press",
"operatorStatement": {
"text": "Exports halted 2015; both sides have floated restarts but no flows recorded in recent GIE / industry data.",
"url": "https://www.tgi.com.co/",
"date": "2015-08-01"
},
"commercialState": "suspended",
"sanctionRefs": [
{
"authority": "US",
"listId": "OFAC Venezuela/PDVSA sanctions",
"date": "2019-01-28",
"url": "https://home.treasury.gov/policy-issues/financial-sanctions/sanctions-programs-and-country-information/venezuela-related-sanctions"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.85
}
},
"saudi-master-gas-system": {
"id": "saudi-master-gas-system",
"name": "Saudi Master Gas System",
"operator": "Saudi Aramco",
"commodityType": "gas",
"fromCountry": "SA",
"toCountry": "SA",
"transitCountries": [],
"capacityBcmYr": 95,
"lengthKm": 2400,
"inService": 1982,
"startPoint": {
"lat": 26.1,
"lon": 49.87
},
"endPoint": {
"lat": 22.2,
"lon": 39.13
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.9
}
},
"galsi-planned": {
"id": "galsi-planned",
"name": "GALSI (AlgeriaSardiniaItaly, planned)",
"operator": "Enagás / Edison / Sonatrach (consortium paused)",
"commodityType": "gas",
"fromCountry": "DZ",
"toCountry": "IT",
"transitCountries": [],
"capacityBcmYr": 8,
"lengthKm": 1470,
"inService": 0,
"startPoint": {
"lat": 37.12,
"lon": 8.83
},
"endPoint": {
"lat": 40.55,
"lon": 9.73
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "press",
"operatorStatement": {
"text": "Proposed AlgeriaSardiniaItaly gas pipeline; construction not commenced. Project paused but periodically revived in policy commentary around EU gas diversification.",
"url": "https://www.edison.it/",
"date": "2023-01-01"
},
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.72
}
},
"eastmed-planned": {
"id": "eastmed-planned",
"name": "EastMed Pipeline (IsraelCyprusGreece, planned)",
"operator": "IGI Poseidon (DEPA / Edison)",
"commodityType": "gas",
"fromCountry": "IL",
"toCountry": "GR",
"transitCountries": [
"CY"
],
"capacityBcmYr": 10,
"lengthKm": 1900,
"inService": 0,
"startPoint": {
"lat": 32.4,
"lon": 34.13
},
"endPoint": {
"lat": 38.93,
"lon": 21.76
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "press",
"operatorStatement": {
"text": "Proposed East Mediterranean gas pipeline. US withdrew prior political support Jan 2022; EU funding for GreeceCyprus segment ongoing as an electrical interconnector pivot. Gas pipeline construction not commenced.",
"url": "https://www.igi-poseidon.com/",
"date": "2022-01-10"
},
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.75
}
},
"trans-saharan-planned": {
"id": "trans-saharan-planned",
"name": "Trans-Saharan Gas Pipeline (NigeriaAlgeria, planned)",
"operator": "NNPC / Sonatrach / Sonidep (MoU consortium)",
"commodityType": "gas",
"fromCountry": "NG",
"toCountry": "DZ",
"transitCountries": [
"NE"
],
"capacityBcmYr": 30,
"lengthKm": 4128,
"inService": 0,
"startPoint": {
"lat": 9.07,
"lon": 7.48
},
"endPoint": {
"lat": 36.75,
"lon": 3.05
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "press",
"operatorStatement": {
"text": "MoU signed 2022, revived after MEG closure. Route crosses high-insurgency areas; security and financing unresolved. Construction not commenced on main trunk.",
"url": "https://nnpcgroup.com/",
"date": "2022-07-28"
},
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.65
}
},
"israel-egypt-arish-ashkelon": {
"id": "israel-egypt-arish-ashkelon",
"name": "ArishAshkelon Pipeline (reverse flow IL→EG)",
"operator": "EMG / East Gas Company",
"commodityType": "gas",
"fromCountry": "IL",
"toCountry": "EG",
"transitCountries": [],
"capacityBcmYr": 7,
"lengthKm": 90,
"inService": 2020,
"startPoint": {
"lat": 31.67,
"lon": 34.58
},
"endPoint": {
"lat": 31.13,
"lon": 33.8
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.85
}
},
"turkmenistan-iran-korpeje": {
"id": "turkmenistan-iran-korpeje",
"name": "KorpejeKurt Kui (TurkmenistanIran)",
"operator": "TürkmenGaz / NIGC",
"commodityType": "gas",
"fromCountry": "TM",
"toCountry": "IR",
"transitCountries": [],
"capacityBcmYr": 8,
"lengthKm": 200,
"inService": 1997,
"startPoint": {
"lat": 39.42,
"lon": 54.83
},
"endPoint": {
"lat": 37.47,
"lon": 54.67
},
"evidence": {
"physicalState": "reduced",
"physicalStateSource": "press",
"operatorStatement": "Flows suspended Jan 2017 over NIGC/Turkmenistan payment dispute; intermittent partial restart reported by NIGC press office + Reuters.",
"commercialState": "expired",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.75
}
},
"morocco-nigeria-offshore-planned": {
"id": "morocco-nigeria-offshore-planned",
"name": "NigeriaMorocco Offshore Gas Pipeline (planned)",
"operator": "NNPC / ONHYM",
"commodityType": "gas",
"fromCountry": "NG",
"toCountry": "MA",
"transitCountries": [
"BJ",
"TG",
"GH",
"CI",
"LR",
"SL",
"GN",
"GW",
"SN",
"MR"
],
"capacityBcmYr": 30,
"lengthKm": 6800,
"inService": 0,
"startPoint": {
"lat": 6.35,
"lon": 3.38
},
"endPoint": {
"lat": 35.75,
"lon": -5.8
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "press",
"operatorStatement": {
"text": "FID not reached; FEED phase complete 2024. Seen as competing vision to the Trans-Saharan overland route. Construction not commenced.",
"url": "https://nnpcgroup.com/",
"date": "2024-09-01"
},
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.6
}
},
"power-of-siberia-2-planned": {
"id": "power-of-siberia-2-planned",
"name": "Power of Siberia 2 (planned)",
"operator": "Gazprom / CNPC",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "CN",
"transitCountries": [
"MN"
],
"capacityBcmYr": 50,
"lengthKm": 6700,
"inService": 0,
"startPoint": {
"lat": 67.5,
"lon": 80.57
},
"endPoint": {
"lat": 43.82,
"lon": 125.32
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "press",
"operatorStatement": {
"text": "Mongolia route announced; CNPC has not signed binding capacity contract as of reference date. Project remains a talking point between Gazprom and CNPC without construction on the China-segment trunk.",
"url": "https://www.gazprom.com/",
"date": "2024-05-01"
},
"commercialState": "unknown",
"sanctionRefs": [
{
"authority": "EU",
"listId": "2022/1269 (energy sanctions package 8)",
"date": "2022-10-06",
"url": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32022R1269"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.7
}
},
"egypt-jordan-aqaba": {
"id": "egypt-jordan-aqaba",
"name": "EgyptJordanAqaba Gas Pipeline (AGP south leg)",
"operator": "EGAS / NEPCO",
"commodityType": "gas",
"fromCountry": "EG",
"toCountry": "JO",
"transitCountries": [],
"capacityBcmYr": 3.5,
"lengthKm": 390,
"inService": 2003,
"startPoint": {
"lat": 29.93,
"lon": 32.57
},
"endPoint": {
"lat": 29.52,
"lon": 35
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.82
}
},
"sakarya-black-sea-tr": {
"id": "sakarya-black-sea-tr",
"name": "Sakarya Gas Field Pipeline (Turkish Black Sea)",
"operator": "TPAO",
"commodityType": "gas",
"fromCountry": "TR",
"toCountry": "TR",
"transitCountries": [],
"capacityBcmYr": 14,
"lengthKm": 170,
"inService": 2023,
"startPoint": {
"lat": 42.38,
"lon": 31.85
},
"endPoint": {
"lat": 41.27,
"lon": 31.4
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.85
}
},
"kirkuk-dohuk-turkey-gas-planned": {
"id": "kirkuk-dohuk-turkey-gas-planned",
"name": "KirkukDohukTurkey Gas Pipeline (planned)",
"operator": "KRG / BOTAŞ (commercial framework TBD)",
"commodityType": "gas",
"fromCountry": "IQ",
"toCountry": "TR",
"transitCountries": [],
"capacityBcmYr": 10,
"lengthKm": 430,
"inService": 0,
"startPoint": {
"lat": 35.47,
"lon": 44.4
},
"endPoint": {
"lat": 37.07,
"lon": 37.33
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "press",
"operatorStatement": {
"text": "Proposed northern Iraq gas corridor into Turkey; subject to BaghdadErbil revenue dispute and Turkey's existing IGAT/SCP capacity. Construction not commenced.",
"url": "https://www.botas.gov.tr/",
"date": "2024-02-01"
},
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.62
}
},
"statpipe": {
"id": "statpipe",
"name": "Statpipe",
"operator": "Gassco",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "NO",
"transitCountries": [],
"capacityBcmYr": 25,
"lengthKm": 880,
"inService": 1985,
"startPoint": {
"lat": 61.25,
"lon": 1.85
},
"endPoint": {
"lat": 59.28,
"lon": 5.42
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.9
}
},
"sleipner-karsto": {
"id": "sleipner-karsto",
"name": "SleipnerKårstø",
"operator": "Gassco",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "NO",
"transitCountries": [],
"capacityBcmYr": 12,
"lengthKm": 245,
"inService": 1993,
"startPoint": {
"lat": 58.37,
"lon": 1.9
},
"endPoint": {
"lat": 59.28,
"lon": 5.42
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.88
}
},
"troll-a-gas-pipeline": {
"id": "troll-a-gas-pipeline",
"name": "Troll A Kollsnes",
"operator": "Gassco",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "NO",
"transitCountries": [],
"capacityBcmYr": 30,
"lengthKm": 67,
"inService": 1996,
"startPoint": {
"lat": 60.65,
"lon": 3.72
},
"endPoint": {
"lat": 60.55,
"lon": 4.85
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.92
}
},
"oseberg-gas-transport": {
"id": "oseberg-gas-transport",
"name": "Oseberg Gas Transport (OGT)",
"operator": "Gassco",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "NO",
"transitCountries": [],
"capacityBcmYr": 9,
"lengthKm": 109,
"inService": 2000,
"startPoint": {
"lat": 60.48,
"lon": 2.82
},
"endPoint": {
"lat": 60.55,
"lon": 4.85
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.88
}
},
"asgard-transport": {
"id": "asgard-transport",
"name": "Åsgard Transport",
"operator": "Gassco",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "NO",
"transitCountries": [],
"capacityBcmYr": 14,
"lengthKm": 707,
"inService": 2000,
"startPoint": {
"lat": 65.05,
"lon": 6.78
},
"endPoint": {
"lat": 59.28,
"lon": 5.42
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.88
}
},
"dampier-bunbury": {
"id": "dampier-bunbury",
"name": "Dampier to Bunbury Natural Gas Pipeline",
"operator": "DBNGP WA",
"commodityType": "gas",
"fromCountry": "AU",
"toCountry": "AU",
"transitCountries": [],
"capacityBcmYr": 8.6,
"lengthKm": 1594,
"inService": 1984,
"startPoint": {
"lat": -20.68,
"lon": 116.72
},
"endPoint": {
"lat": -33.33,
"lon": 115.63
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.9
}
},
"moomba-sydney": {
"id": "moomba-sydney",
"name": "MoombaSydney Pipeline",
"operator": "APA Group",
"commodityType": "gas",
"fromCountry": "AU",
"toCountry": "AU",
"transitCountries": [],
"capacityBcmYr": 5.5,
"lengthKm": 1299,
"inService": 1976,
"startPoint": {
"lat": -28.12,
"lon": 140.2
},
"endPoint": {
"lat": -33.87,
"lon": 151.2
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.88
}
},
"mozambique-rompco": {
"id": "mozambique-rompco",
"name": "ROMPCO (MozambiqueSouth Africa)",
"operator": "Sasol / CEF / Companhia Moçambicana de Gasoduto",
"commodityType": "gas",
"fromCountry": "MZ",
"toCountry": "ZA",
"transitCountries": [],
"capacityBcmYr": 5.5,
"lengthKm": 865,
"inService": 2004,
"startPoint": {
"lat": -22.93,
"lon": 31.33
},
"endPoint": {
"lat": -26.2,
"lon": 28.02
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.85
}
},
"escravos-lagos-gas": {
"id": "escravos-lagos-gas",
"name": "EscravosLagos Pipeline System",
"operator": "NNPC / Chevron Nigeria",
"commodityType": "gas",
"fromCountry": "NG",
"toCountry": "NG",
"transitCountries": [],
"capacityBcmYr": 9,
"lengthKm": 342,
"inService": 1989,
"startPoint": {
"lat": 5.62,
"lon": 5.2
},
"endPoint": {
"lat": 6.46,
"lon": 3.37
},
"evidence": {
"physicalState": "reduced",
"physicalStateSource": "press",
"operatorStatement": "Regular pipeline vandalism and NNPC/Chevron force-majeure declarations (2020-2024) per NNPC press releases + Reuters Lagos coverage.",
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.75
}
},
"tanzania-mtwara-dar": {
"id": "tanzania-mtwara-dar",
"name": "MtwaraDar es Salaam Gas Pipeline",
"operator": "TPDC / CPI-CPP consortium",
"commodityType": "gas",
"fromCountry": "TZ",
"toCountry": "TZ",
"transitCountries": [],
"capacityBcmYr": 2,
"lengthKm": 542,
"inService": 2015,
"startPoint": {
"lat": -10.27,
"lon": 40.18
},
"endPoint": {
"lat": -6.8,
"lon": 39.28
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.78
}
},
"thailand-malaysia-cakerawala": {
"id": "thailand-malaysia-cakerawala",
"name": "CakerawalaPengerang (ThaiMalaysia JDA)",
"operator": "Carigali-PTTEPI Operating Company",
"commodityType": "gas",
"fromCountry": "TH",
"toCountry": "MY",
"transitCountries": [],
"capacityBcmYr": 14,
"lengthKm": 270,
"inService": 2005,
"startPoint": {
"lat": 6.78,
"lon": 102.75
},
"endPoint": {
"lat": 6.43,
"lon": 99.67
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.82
}
},
"indonesia-singapore-west-natuna": {
"id": "indonesia-singapore-west-natuna",
"name": "West NatunaSingapore Gas Pipeline",
"operator": "ConocoPhillips / SembGas",
"commodityType": "gas",
"fromCountry": "ID",
"toCountry": "SG",
"transitCountries": [],
"capacityBcmYr": 3.7,
"lengthKm": 656,
"inService": 2001,
"startPoint": {
"lat": 3.67,
"lon": 108.32
},
"endPoint": {
"lat": 1.31,
"lon": 103.65
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.82
}
},
"indonesia-singapore-grissik-sakra": {
"id": "indonesia-singapore-grissik-sakra",
"name": "GrissikSakra Gas Pipeline",
"operator": "ConocoPhillips / SembGas",
"commodityType": "gas",
"fromCountry": "ID",
"toCountry": "SG",
"transitCountries": [],
"capacityBcmYr": 3.5,
"lengthKm": 470,
"inService": 2003,
"startPoint": {
"lat": -2.08,
"lon": 103.77
},
"endPoint": {
"lat": 1.31,
"lon": 103.65
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.82
}
},
"nel-pipeline-germany": {
"id": "nel-pipeline-germany",
"name": "NEL Pipeline (Nord Stream continuation)",
"operator": "Gasunie Deutschland / Fluxys / WIGA",
"commodityType": "gas",
"fromCountry": "DE",
"toCountry": "DE",
"transitCountries": [],
"capacityBcmYr": 20,
"lengthKm": 440,
"inService": 2013,
"startPoint": {
"lat": 54.14,
"lon": 13.66
},
"endPoint": {
"lat": 52.52,
"lon": 7.77
},
"evidence": {
"physicalState": "reduced",
"physicalStateSource": "press",
"operatorStatement": "Direct Nord Stream 1 continuation; flows reduced to zero post-Sep-2022 sabotage per Gasunie Deutschland operator notice + BBC coverage.",
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.8
}
},
"opal-pipeline-germany": {
"id": "opal-pipeline-germany",
"name": "OPAL Pipeline (Nord Stream continuation)",
"operator": "OPAL Gastransport (WIGA joint venture)",
"commodityType": "gas",
"fromCountry": "DE",
"toCountry": "CZ",
"transitCountries": [],
"capacityBcmYr": 36,
"lengthKm": 470,
"inService": 2011,
"startPoint": {
"lat": 54.14,
"lon": 13.66
},
"endPoint": {
"lat": 50.73,
"lon": 14.03
},
"evidence": {
"physicalState": "reduced",
"physicalStateSource": "press",
"operatorStatement": "Direct Nord Stream 1 continuation; flows reduced to zero post-Sep-2022 sabotage per OPAL operator notice + BBC coverage.",
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.8
}
},
"eugal-pipeline-germany": {
"id": "eugal-pipeline-germany",
"name": "EUGAL Pipeline (Nord Stream 2 continuation)",
"operator": "EUGAL Gastransport consortium",
"commodityType": "gas",
"fromCountry": "DE",
"toCountry": "CZ",
"transitCountries": [],
"capacityBcmYr": 55,
"lengthKm": 485,
"inService": 2020,
"startPoint": {
"lat": 54.14,
"lon": 13.66
},
"endPoint": {
"lat": 50.73,
"lon": 14.03
},
"evidence": {
"physicalState": "offline",
"physicalStateSource": "press",
"operatorStatement": {
"text": "Built to carry Nord Stream 2 volumes into Central/Southern Europe; never reached commercial operation after NS2 certification was halted (Feb 2022) and NS2 was damaged (Sep 2022). Pipeline physically complete but dormant.",
"url": "https://www.eugal.de/en/",
"date": "2022-02-22"
},
"commercialState": "suspended",
"sanctionRefs": [
{
"authority": "EU",
"listId": "2022/1269 (energy sanctions package 8)",
"date": "2022-10-06",
"url": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32022R1269"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.88
}
},
"megal-pipeline": {
"id": "megal-pipeline",
"name": "Mid-European Gas Pipeline (MEGAL)",
"operator": "GRTgaz Deutschland / OGE",
"commodityType": "gas",
"fromCountry": "DE",
"toCountry": "FR",
"transitCountries": [],
"capacityBcmYr": 37,
"lengthKm": 1101,
"inService": 1980,
"startPoint": {
"lat": 48.93,
"lon": 12.35
},
"endPoint": {
"lat": 48.28,
"lon": 6.97
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.88
}
},
"trans-austria-gas": {
"id": "trans-austria-gas",
"name": "Trans Austria Gas Pipeline (TAG)",
"operator": "Trans Austria Gasleitung GmbH",
"commodityType": "gas",
"fromCountry": "AT",
"toCountry": "IT",
"transitCountries": [],
"capacityBcmYr": 45,
"lengthKm": 380,
"inService": 1974,
"startPoint": {
"lat": 48.35,
"lon": 16.87
},
"endPoint": {
"lat": 45.9,
"lon": 13.2
},
"evidence": {
"physicalState": "reduced",
"physicalStateSource": "press",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [
{
"authority": "EU",
"listId": "2022/1269 (energy sanctions package 8)",
"date": "2022-10-06",
"url": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32022R1269"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.82
}
},
"progress-urengoy-uzhhorod": {
"id": "progress-urengoy-uzhhorod",
"name": "UrengoyPomaryUzhhorod (Progress)",
"operator": "Gazprom / Naftogaz",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "SK",
"transitCountries": [
"UA"
],
"capacityBcmYr": 32,
"lengthKm": 4451,
"inService": 1984,
"startPoint": {
"lat": 65.97,
"lon": 76.55
},
"endPoint": {
"lat": 48.62,
"lon": 22.3
},
"evidence": {
"physicalState": "offline",
"physicalStateSource": "regulator",
"operatorStatement": {
"text": "Ukraine did not renew the 2019 transit agreement; transit via Sudzha halted 1 Jan 2025. Pipeline physically intact; flow zero.",
"url": "https://naftogaz.com/",
"date": "2025-01-01"
},
"commercialState": "expired",
"sanctionRefs": [
{
"authority": "EU",
"listId": "2022/1269 (energy sanctions package 8)",
"date": "2022-10-06",
"url": "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A32022R1269"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.92
}
},
"kish-iran-gas": {
"id": "kish-iran-gas",
"name": "Kish IslandIran Mainland Gas Pipeline",
"operator": "NIGC",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "IR",
"transitCountries": [],
"capacityBcmYr": 2.5,
"lengthKm": 42,
"inService": 2010,
"startPoint": {
"lat": 26.53,
"lon": 53.95
},
"endPoint": {
"lat": 27.2,
"lon": 53.57
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [
{
"authority": "US",
"listId": "OFAC Iran energy sanctions framework",
"date": "2018-08-07",
"url": "https://home.treasury.gov/policy-issues/financial-sanctions/sanctions-programs-and-country-information/iran-sanctions"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.75
}
},
"ghana-gas": {
"id": "ghana-gas",
"name": "Ghana Gas Company Pipeline (Atuabo)",
"operator": "Ghana National Gas Company",
"commodityType": "gas",
"fromCountry": "GH",
"toCountry": "GH",
"transitCountries": [],
"capacityBcmYr": 1.5,
"lengthKm": 111,
"inService": 2015,
"startPoint": {
"lat": 4.85,
"lon": -2.33
},
"endPoint": {
"lat": 4.9,
"lon": -1.73
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.75
}
},
"iran-pakistan-gas-planned": {
"id": "iran-pakistan-gas-planned",
"name": "IranPakistan Gas Pipeline (Peace, Pakistani segment stalled)",
"operator": "NIGC / ISGS Pakistan",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "PK",
"transitCountries": [],
"capacityBcmYr": 11,
"lengthKm": 1931,
"inService": 0,
"startPoint": {
"lat": 25.62,
"lon": 60.9
},
"endPoint": {
"lat": 25,
"lon": 67.03
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "press",
"operatorStatement": {
"text": "Iranian segment completed to border 2013. Pakistani segment stalled since 2014 amid US sanction risk on completion; NIOC served arbitration notice 2023. Pipeline not operational end-to-end.",
"url": "https://isgs.gov.pk/",
"date": "2024-02-01"
},
"commercialState": "expired",
"sanctionRefs": [
{
"authority": "US",
"listId": "OFAC Iran energy sanctions framework (applied to Pakistani completion)",
"date": "2018-08-07",
"url": "https://home.treasury.gov/policy-issues/financial-sanctions/sanctions-programs-and-country-information/iran-sanctions"
}
],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.8
}
},
"gascade-jagal": {
"id": "gascade-jagal",
"name": "JAGAL (North German gas link)",
"operator": "GASCADE",
"commodityType": "gas",
"fromCountry": "DE",
"toCountry": "DE",
"transitCountries": [],
"capacityBcmYr": 16,
"lengthKm": 340,
"inService": 1999,
"startPoint": {
"lat": 53.87,
"lon": 14.27
},
"endPoint": {
"lat": 51.87,
"lon": 10.57
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.8
}
},
"zeelink-germany": {
"id": "zeelink-germany",
"name": "ZEELINK (H-gas conversion pipeline)",
"operator": "OGE / Thyssengas",
"commodityType": "gas",
"fromCountry": "BE",
"toCountry": "DE",
"transitCountries": [],
"capacityBcmYr": 10,
"lengthKm": 216,
"inService": 2021,
"startPoint": {
"lat": 51.33,
"lon": 3.2
},
"endPoint": {
"lat": 50.33,
"lon": 7.57
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.85
}
},
"china-hong-kong-gas": {
"id": "china-hong-kong-gas",
"name": "MainlandHong Kong Gas Pipeline",
"operator": "CNOOC Gas & Power / Towngas",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "HK",
"transitCountries": [],
"capacityBcmYr": 2.5,
"lengthKm": 92,
"inService": 2006,
"startPoint": {
"lat": 22.68,
"lon": 113.83
},
"endPoint": {
"lat": 22.35,
"lon": 114.18
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "operator",
"operatorStatement": null,
"commercialState": "under_contract",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-22T00:00:00Z",
"classifierVersion": "v1",
"classifierConfidence": 0.8
}
},
"acadian-gas-pipeline-system-us": {
"id": "acadian-gas-pipeline-system-us",
"name": "Acadian Gas Pipeline System",
"operator": "Enterprise Products Partners [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 10.22,
"lengthKm": 1609.34,
"inService": 0,
"startPoint": {
"lat": 32.217872,
"lon": -93.715924
},
"endPoint": {
"lat": 30.437255,
"lon": -91.179409
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"access-south-gas-pipeline-us": {
"id": "access-south-gas-pipeline-us",
"name": "Access South Gas Pipeline",
"operator": "Enbridge [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 3.27,
"lengthKm": 1287,
"inService": 2017,
"startPoint": {
"lat": 39.869262,
"lon": -80.189121
},
"endPoint": {
"lat": 33.020389,
"lon": -89.355913
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"al-ndalus-gas-pipeline-es": {
"id": "al-ndalus-gas-pipeline-es",
"name": "Al Ándalus Gas Pipeline",
"operator": "Enagás [100.00%]",
"commodityType": "gas",
"fromCountry": "ES",
"toCountry": "ES",
"transitCountries": [],
"capacityBcmYr": 12,
"lengthKm": 884,
"inService": 1996,
"startPoint": {
"lat": 36.2,
"lon": -6.007
},
"endPoint": {
"lat": 36.765,
"lon": -3.617
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"algonquin-gas-transmission-pipeline-us": {
"id": "algonquin-gas-transmission-pipeline-us",
"name": "Algonquin Gas Transmission Pipeline",
"operator": "Enbridge [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 31.89,
"lengthKm": 1820.17,
"inService": 1997,
"startPoint": {
"lat": 40.361664,
"lon": -74.940096
},
"endPoint": {
"lat": 42.491592,
"lon": -70.829481
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"alliance-gas-pipeline-ca": {
"id": "alliance-gas-pipeline-ca",
"name": "Alliance Gas Pipeline",
"operator": "Alliance USA [50.00%]; Alliance Canada [50.00%]",
"commodityType": "gas",
"fromCountry": "CA",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 16.35,
"lengthKm": 3848,
"inService": 2000,
"startPoint": {
"lat": 54.597543,
"lon": -118.234573
},
"endPoint": {
"lat": 41.459706,
"lon": -88.132283
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"amadeus-gas-pipeline-au": {
"id": "amadeus-gas-pipeline-au",
"name": "Amadeus Gas Pipeline",
"operator": "APA Group [100.00%]",
"commodityType": "gas",
"fromCountry": "AU",
"toCountry": "AU",
"transitCountries": [],
"capacityBcmYr": 1.66,
"lengthKm": 1658,
"inService": 1986,
"startPoint": {
"lat": -23.98548,
"lon": 131.551069
},
"endPoint": {
"lat": -12.555919,
"lon": 130.879921
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"anaco-barquisimeto-gas-pipeline-ve": {
"id": "anaco-barquisimeto-gas-pipeline-ve",
"name": "Anaco-Barquisimeto Gas Pipeline",
"operator": "PDVSA [100.00%]",
"commodityType": "gas",
"fromCountry": "VE",
"toCountry": "VE",
"transitCountries": [],
"capacityBcmYr": 10,
"lengthKm": 2470,
"inService": 1950,
"startPoint": {
"lat": 9.309778,
"lon": -64.7002
},
"endPoint": {
"lat": 10.06735,
"lon": -69.379
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"anaco-puerto-la-cruz-gas-pipeline-ve": {
"id": "anaco-puerto-la-cruz-gas-pipeline-ve",
"name": "Anaco-Puerto La Cruz Gas Pipeline",
"operator": "PDVSA [100.00%]",
"commodityType": "gas",
"fromCountry": "VE",
"toCountry": "VE",
"transitCountries": [],
"capacityBcmYr": 6.13,
"lengthKm": 772,
"inService": 1951,
"startPoint": {
"lat": 9.438541,
"lon": -64.472408
},
"endPoint": {
"lat": 10.237455,
"lon": -64.627708
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"anaco-puerto-ordaz-gas-pipeline-ve": {
"id": "anaco-puerto-ordaz-gas-pipeline-ve",
"name": "Anaco-Puerto Ordaz Gas Pipeline",
"operator": "PDVSA [100.00%]",
"commodityType": "gas",
"fromCountry": "VE",
"toCountry": "VE",
"transitCountries": [],
"capacityBcmYr": 6.29,
"lengthKm": 779,
"inService": 1970,
"startPoint": {
"lat": 8.214898,
"lon": -62.9879
},
"endPoint": {
"lat": 9.35787,
"lon": -64.7321
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"anr-gas-pipeline-us": {
"id": "anr-gas-pipeline-us",
"name": "ANR Gas Pipeline",
"operator": "ANR Pipeline Co [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 61.32,
"lengthKm": 2896.82,
"inService": 1949,
"startPoint": {
"lat": 36.537197,
"lon": -99.817135
},
"endPoint": {
"lat": 43.431261,
"lon": -85.524911
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"atacama-gas-pipeline-ar": {
"id": "atacama-gas-pipeline-ar",
"name": "Atacama Gas Pipeline",
"operator": "Enel Generación Chile SA [97.40%]; other [2.60%]",
"commodityType": "gas",
"fromCountry": "AR",
"toCountry": "CL",
"transitCountries": [],
"capacityBcmYr": 1.97,
"lengthKm": 1167,
"inService": 1999,
"startPoint": {
"lat": -22.679575,
"lon": -68.487256
},
"endPoint": {
"lat": -23.232801,
"lon": -67.060657
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"atmos-pipeline-texas-us": {
"id": "atmos-pipeline-texas-us",
"name": "Atmos Pipeline Texas",
"operator": "Atmos Energy Corp [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 1.84,
"lengthKm": 9173.26,
"inService": 0,
"startPoint": {
"lat": 31.312,
"lon": -103.09
},
"endPoint": {
"lat": 33.61,
"lon": -95.624
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"bc-gas-pipeline-westcoast-pipeline-ca": {
"id": "bc-gas-pipeline-westcoast-pipeline-ca",
"name": "BC Gas Pipeline - Westcoast Pipeline",
"operator": "Enbridge [100.00%]",
"commodityType": "gas",
"fromCountry": "CA",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 34.75,
"lengthKm": 2953,
"inService": 1957,
"startPoint": {
"lat": 56.0877,
"lon": -120.666
},
"endPoint": {
"lat": 55.863701,
"lon": -120.197998
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"beineu-bozoy-shymkent-gas-pipeline-i-kz": {
"id": "beineu-bozoy-shymkent-gas-pipeline-i-kz",
"name": "Beineu-Bozoy-Shymkent Gas Pipeline - I",
"operator": "QazaqGaz [50.00%]; Trans-Asia Gas Pipeline Co Ltd [50.00%]",
"commodityType": "gas",
"fromCountry": "KZ",
"toCountry": "KZ",
"transitCountries": [],
"capacityBcmYr": 15,
"lengthKm": 1449,
"inService": 2013,
"startPoint": {
"lat": 45.240584,
"lon": 55.235174
},
"endPoint": {
"lat": 42.369174,
"lon": 69.918462
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"belogorsk-khabarovsk-gas-pipeline-ru": {
"id": "belogorsk-khabarovsk-gas-pipeline-ru",
"name": "Belogorsk-Khabarovsk Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 28,
"lengthKm": 828,
"inService": 2027,
"startPoint": {
"lat": 51.559226,
"lon": 128.203053
},
"endPoint": {
"lat": 48.59364,
"lon": 135.599442
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"belousovo-leningrad-gas-pipeline-ru": {
"id": "belousovo-leningrad-gas-pipeline-ru",
"name": "Belousovo-Leningrad Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 7,
"lengthKm": 765,
"inService": 1964,
"startPoint": {
"lat": 55.11288,
"lon": 36.684149
},
"endPoint": {
"lat": 60.128929,
"lon": 30.339904
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"blue-stream-gas-pipeline-ru": {
"id": "blue-stream-gas-pipeline-ru",
"name": "Blue Stream Gas Pipeline",
"operator": "Gazprom PJSC [50.00%]; Eni SpA; BOTAŞ",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "TR",
"transitCountries": [],
"capacityBcmYr": 16,
"lengthKm": 1213,
"inService": 2003,
"startPoint": {
"lat": 40.573855,
"lon": 35.157065
},
"endPoint": {
"lat": 40.814143,
"lon": 35.692436
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"bovanenkovo-ukhta-gas-pipeline-pipeline-1-ru": {
"id": "bovanenkovo-ukhta-gas-pipeline-pipeline-1-ru",
"name": "Bovanenkovo-Ukhta Gas Pipeline - Pipeline 1",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 57.5,
"lengthKm": 1200,
"inService": 2012,
"startPoint": {
"lat": 64.926654,
"lon": 56.631649
},
"endPoint": {
"lat": 68.015787,
"lon": 65.13476
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"bovanenkovo-ukhta-gas-pipeline-pipeline-2-ru": {
"id": "bovanenkovo-ukhta-gas-pipeline-pipeline-2-ru",
"name": "Bovanenkovo-Ukhta Gas Pipeline - Pipeline 2",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 57.5,
"lengthKm": 1200,
"inService": 2017,
"startPoint": {
"lat": 68.81146,
"lon": 66.87679
},
"endPoint": {
"lat": 68.004278,
"lon": 65.108622
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"bridgeline-gas-pipeline-us": {
"id": "bridgeline-gas-pipeline-us",
"name": "Bridgeline Gas Pipeline",
"operator": "EnLink Midstream [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 9.4,
"lengthKm": 1585,
"inService": 2000,
"startPoint": {
"lat": 29.764438,
"lon": -93.907285
},
"endPoint": {
"lat": 29.701481,
"lon": -91.207021
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"bukhara-tashkent-bishkek-almaty-gas-pipeline-i-uz": {
"id": "bukhara-tashkent-bishkek-almaty-gas-pipeline-i-uz",
"name": "Bukhara-Tashkent-Bishkek-Almaty Gas Pipeline - I",
"operator": "Uztransgaz; QazaqGaz; Gazprom Kyrgyzstan",
"commodityType": "gas",
"fromCountry": "UZ",
"toCountry": "KZ",
"transitCountries": [
"KG"
],
"capacityBcmYr": 12,
"lengthKm": 1585,
"inService": 1971,
"startPoint": {
"lat": 39.721974,
"lon": 64.534295
},
"endPoint": {
"lat": 42.253233,
"lon": 70.032407
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"bukhara-ural-gas-pipeline-i-uz": {
"id": "bukhara-ural-gas-pipeline-i-uz",
"name": "Bukhara-Ural Gas Pipeline - I",
"operator": "--",
"commodityType": "gas",
"fromCountry": "UZ",
"toCountry": "RU",
"transitCountries": [
"TM",
"KZ"
],
"capacityBcmYr": 21,
"lengthKm": 2200,
"inService": 1963,
"startPoint": {
"lat": 40.153802,
"lon": 63.485626
},
"endPoint": {
"lat": 55.154808,
"lon": 61.42395
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"bulgaria-national-gas-transmission-network-system-network-in-bg": {
"id": "bulgaria-national-gas-transmission-network-system-network-in-bg",
"name": "Bulgaria National Gas Transmission Network - SYSTEM/NETWORK INFO",
"operator": "Bulgartransgaz [100.00%]",
"commodityType": "gas",
"fromCountry": "BG",
"toCountry": "BG",
"transitCountries": [],
"capacityBcmYr": 25.2,
"lengthKm": 3276,
"inService": 0,
"startPoint": {
"lat": 42.4382,
"lon": 23.8162
},
"endPoint": {
"lat": 42.614841,
"lon": 23.041768
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"canadian-mainline-gas-pipeline-ca": {
"id": "canadian-mainline-gas-pipeline-ca",
"name": "Canadian Mainline Gas Pipeline",
"operator": "TransCanada PipeLines Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CA",
"toCountry": "CA",
"transitCountries": [],
"capacityBcmYr": 71.18,
"lengthKm": 14082,
"inService": 1955,
"startPoint": {
"lat": 43.085493,
"lon": -79.195757
},
"endPoint": {
"lat": 50.606519,
"lon": -108.697972
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"carpentaria-gas-pipeline-au": {
"id": "carpentaria-gas-pipeline-au",
"name": "Carpentaria Gas Pipeline",
"operator": "Carpentaria Gas Pipeline Joint Venture [100.00%]",
"commodityType": "gas",
"fromCountry": "AU",
"toCountry": "AU",
"transitCountries": [],
"capacityBcmYr": 1.19,
"lengthKm": 840,
"inService": 1998,
"startPoint": {
"lat": -20.780624,
"lon": 139.48417
},
"endPoint": {
"lat": -27.387921,
"lon": 141.807398
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"central-asia-center-gas-pipeline-cac-2-tm": {
"id": "central-asia-center-gas-pipeline-cac-2-tm",
"name": "Central AsiaCenter Gas Pipeline - CAC-2",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "TM",
"toCountry": "RU",
"transitCountries": [
"UZ",
"KZ"
],
"capacityBcmYr": 60.2,
"lengthKm": 2662,
"inService": 1970,
"startPoint": {
"lat": 55.239044,
"lon": 38.802016
},
"endPoint": {
"lat": 52.265924,
"lon": 45.413403
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"central-asia-center-gas-pipeline-cac-3-tm": {
"id": "central-asia-center-gas-pipeline-cac-3-tm",
"name": "Central AsiaCenter Gas Pipeline - CAC-3",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "TM",
"toCountry": "RU",
"transitCountries": [
"UZ",
"KZ"
],
"capacityBcmYr": 5,
"lengthKm": 2600,
"inService": 1975,
"startPoint": {
"lat": 45.313772,
"lon": 55.250129
},
"endPoint": {
"lat": 50.129452,
"lon": 38.126153
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"central-asia-china-gas-pipeline-line-c-tm": {
"id": "central-asia-china-gas-pipeline-line-c-tm",
"name": "Central AsiaChina Gas Pipeline - Line C",
"operator": "China National Petroleum Corp; Turkmengaz; Uztransgaz; QazaqGaz",
"commodityType": "gas",
"fromCountry": "TM",
"toCountry": "CN",
"transitCountries": [
"UZ",
"KZ"
],
"capacityBcmYr": 25,
"lengthKm": 1833,
"inService": 2014,
"startPoint": {
"lat": 38.612094,
"lon": 64.755208
},
"endPoint": {
"lat": 44.068771,
"lon": 80.441261
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"centro-oeste-gas-pipeline-ar": {
"id": "centro-oeste-gas-pipeline-ar",
"name": "Centro Oeste Gas Pipeline",
"operator": "GasInvest SA [56.00%]; Southern Cone Energy Holding Co Inc [24.00%]; Bolsas y Mercados Argentinos SA [20.00%]",
"commodityType": "gas",
"fromCountry": "AR",
"toCountry": "AR",
"transitCountries": [],
"capacityBcmYr": 11.68,
"lengthKm": 1121,
"inService": 1981,
"startPoint": {
"lat": -35.10311,
"lon": -66.828211
},
"endPoint": {
"lat": -33.477847,
"lon": -67.555948
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"chelyabinsk-petrovsk-gas-pipeline-ru": {
"id": "chelyabinsk-petrovsk-gas-pipeline-ru",
"name": "Chelyabinsk-Petrovsk Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 37.12,
"lengthKm": 1285,
"inService": 1980,
"startPoint": {
"lat": 55.178827,
"lon": 61.411506
},
"endPoint": {
"lat": 52.316082,
"lon": 45.393535
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"china-russia-east-pipeline-phase-i-cn": {
"id": "china-russia-east-pipeline-phase-i-cn",
"name": "ChinaRussia East Pipeline - Phase I",
"operator": "National Pipe Network Group North Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 38,
"lengthKm": 1067,
"inService": 2019,
"startPoint": {
"lat": 51.572642,
"lon": 128.193026
},
"endPoint": {
"lat": 43.35972,
"lon": 123.644593
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"china-russia-east-pipeline-phase-ii-cn": {
"id": "china-russia-east-pipeline-phase-ii-cn",
"name": "ChinaRussia East Pipeline - Phase II",
"operator": "National Pipe Network Group North Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 38,
"lengthKm": 1110,
"inService": 2020,
"startPoint": {
"lat": 43.35972,
"lon": 123.644593
},
"endPoint": {
"lat": 39.297164,
"lon": 116.51979
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"china-russia-east-pipeline-phase-iii-cn": {
"id": "china-russia-east-pipeline-phase-iii-cn",
"name": "ChinaRussia East Pipeline - Phase III",
"operator": "Construction Project Management Branch of China National Petroleum Pipeline Network Group Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 18.9,
"lengthKm": 1509,
"inService": 2024,
"startPoint": {
"lat": 39.297164,
"lon": 116.51979
},
"endPoint": {
"lat": 31.266851,
"lon": 121.131321
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"china-russia-far-east-gas-pipeline-hulin-changchun-trunk-lin-cn": {
"id": "china-russia-far-east-gas-pipeline-hulin-changchun-trunk-lin-cn",
"name": "ChinaRussia Far East Gas Pipeline - HulinChangchun Trunk Line",
"operator": "National Pipe Network Group North Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 10,
"lengthKm": 860,
"inService": 2025,
"startPoint": {
"lat": 44.167126,
"lon": 125.370384
},
"endPoint": {
"lat": 44.158577,
"lon": 125.368198
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"cnpc-sichuan-chongqing-gas-pipeline-network-cn": {
"id": "cnpc-sichuan-chongqing-gas-pipeline-network-cn",
"name": "CNPC Sichuan & Chongqing Gas Pipeline Network",
"operator": "China National Petroleum Corp Southwest Oil and Gas Field Branch [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 30,
"lengthKm": 9227,
"inService": 1967,
"startPoint": {
"lat": 31.786699,
"lon": 104.892998
},
"endPoint": {
"lat": 29.862301,
"lon": 107.081001
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"colorado-interstate-gas-pipeline-us": {
"id": "colorado-interstate-gas-pipeline-us",
"name": "Colorado Interstate Gas Pipeline",
"operator": "Kinder Morgan [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 52.63,
"lengthKm": 6920,
"inService": 2008,
"startPoint": {
"lat": 40.95066,
"lon": -104.794993
},
"endPoint": {
"lat": 40.193114,
"lon": -103.813059
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"columbia-gas-transmission-system-network-info-us": {
"id": "columbia-gas-transmission-system-network-info-us",
"name": "Columbia Gas Transmission - SYSTEM/NETWORK INFO",
"operator": "Columbia Gas Transmission LLC [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 30.66,
"lengthKm": 19312,
"inService": 1996,
"startPoint": {
"lat": 40.612179,
"lon": -81.821721
},
"endPoint": {
"lat": 40.994508,
"lon": -83.630923
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"cordillerano-patag-nico-gas-pipeline-cordillerano-north-ar": {
"id": "cordillerano-patag-nico-gas-pipeline-cordillerano-north-ar",
"name": "Cordillerano-Patagónico Gas Pipeline - Cordillerano (North)",
"operator": "CIESA-Compañía de Inversiones de Energía SA [51.00%]; ANSES-Administración Nacional de la Seguridad Social [24.00%]; NYSE-New York Stock Exchange [12.00%]; BYMA-Bolsas y Mercados Argentinos SA [8.00%]; other [5.00%]",
"commodityType": "gas",
"fromCountry": "AR",
"toCountry": "AR",
"transitCountries": [],
"capacityBcmYr": 0.48,
"lengthKm": 940,
"inService": 1986,
"startPoint": {
"lat": -42.930415,
"lon": -71.251405
},
"endPoint": {
"lat": -38.910459,
"lon": -69.17671
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"dabhol-bangalore-gas-pipeline-in": {
"id": "dabhol-bangalore-gas-pipeline-in",
"name": "Dabhol-Bangalore Gas Pipeline",
"operator": "GAIL (India) Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 5.84,
"lengthKm": 1386,
"inService": 2013,
"startPoint": {
"lat": 17.587163,
"lon": 73.157882
},
"endPoint": {
"lat": 12.944857,
"lon": 77.290154
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"dadri-bawana-nangal-gas-pipeline-in": {
"id": "dadri-bawana-nangal-gas-pipeline-in",
"name": "Dadri-Bawana-Nangal Gas Pipeline",
"operator": "GAIL (India) Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 11.32,
"lengthKm": 886,
"inService": 2012,
"startPoint": {
"lat": 28.551572,
"lon": 77.537104
},
"endPoint": {
"lat": 31.384701,
"lon": 76.3597
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"dahej-uran-panvel-dhabhol-gas-pipeline-in": {
"id": "dahej-uran-panvel-dhabhol-gas-pipeline-in",
"name": "Dahej-Uran-Panvel-Dhabhol Gas Pipeline",
"operator": "GAIL (India) Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 7.26,
"lengthKm": 815,
"inService": 2007,
"startPoint": {
"lat": 17.539275,
"lon": 73.159589
},
"endPoint": {
"lat": 21.680119,
"lon": 72.537816
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"dahej-vijaipur-gas-pipeline-dvpl-i-in": {
"id": "dahej-vijaipur-gas-pipeline-dvpl-i-in",
"name": "Dahej-Vijaipur Gas Pipeline (DVPL-I)",
"operator": "GAIL (India) Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 39.06,
"lengthKm": 770,
"inService": 2004,
"startPoint": {
"lat": 21.727732,
"lon": 72.554908
},
"endPoint": {
"lat": 24.489186,
"lon": 77.137452
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"dashava-kiev-bryansk-moscow-gas-pipeline-ua": {
"id": "dashava-kiev-bryansk-moscow-gas-pipeline-ua",
"name": "Dashava-Kiev-Bryansk-Moscow Gas Pipeline",
"operator": "Gazprom PJSC; Gas Transmission System Operator of Ukraine",
"commodityType": "gas",
"fromCountry": "UA",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 1.8,
"lengthKm": 1301,
"inService": 1952,
"startPoint": {
"lat": 49.26252,
"lon": 24.011517
},
"endPoint": {
"lat": 55.724292,
"lon": 37.602831
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"dominion-gas-pipeline-us": {
"id": "dominion-gas-pipeline-us",
"name": "Dominion Gas Pipeline",
"operator": "Dominion Energy [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 73.58,
"lengthKm": 6059,
"inService": 2001,
"startPoint": {
"lat": 38.388272,
"lon": -76.409351
},
"endPoint": {
"lat": 41.66192,
"lon": -83.578698
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"east-tennessee-gas-pipeline-us": {
"id": "east-tennessee-gas-pipeline-us",
"name": "East Tennessee Gas Pipeline",
"operator": "Enbridge [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 19.01,
"lengthKm": 2456,
"inService": 1996,
"startPoint": {
"lat": 36.518166,
"lon": -79.656692
},
"endPoint": {
"lat": 36.795513,
"lon": -81.793067
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"east-west-gas-pipeline-india-in": {
"id": "east-west-gas-pipeline-india-in",
"name": "East West Gas Pipeline (India)",
"operator": "India Infrastructure Trust [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 31.03,
"lengthKm": 1375,
"inService": 2008,
"startPoint": {
"lat": 16.927682,
"lon": 82.254747
},
"endPoint": {
"lat": 16.033857,
"lon": 80.851841
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"east-west-gas-pipeline-tm": {
"id": "east-west-gas-pipeline-tm",
"name": "East-West Gas Pipeline",
"operator": "Turkmengaz [100.00%]",
"commodityType": "gas",
"fromCountry": "TM",
"toCountry": "TM",
"transitCountries": [],
"capacityBcmYr": 30,
"lengthKm": 773,
"inService": 2015,
"startPoint": {
"lat": 39.992063,
"lon": 53.6471
},
"endPoint": {
"lat": 37.593518,
"lon": 61.380019
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"eastern-gas-pipeline-au": {
"id": "eastern-gas-pipeline-au",
"name": "Eastern Gas Pipeline",
"operator": "Jemena [100.00%]",
"commodityType": "gas",
"fromCountry": "AU",
"toCountry": "AU",
"transitCountries": [],
"capacityBcmYr": 3.44,
"lengthKm": 797,
"inService": 2000,
"startPoint": {
"lat": -38.203,
"lon": 147.159
},
"endPoint": {
"lat": -33.832,
"lon": 150.864
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"eastern-gas-transmission-and-storage-system-egts-us": {
"id": "eastern-gas-transmission-and-storage-system-egts-us",
"name": "Eastern Gas Transmission and Storage System (EGTS)",
"operator": "Eastern Gas Transmission and Storage Inc [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 97.09,
"lengthKm": 6437.38,
"inService": 0,
"startPoint": {
"lat": 42.881063,
"lon": -74.667513
},
"endPoint": {
"lat": 42.673342,
"lon": -78.064986
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"el-paso-gas-pipeline-us": {
"id": "el-paso-gas-pipeline-us",
"name": "El Paso Gas Pipeline",
"operator": "Kinder Morgan [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 57.23,
"lengthKm": 16318.75,
"inService": 1997,
"startPoint": {
"lat": 35.162131,
"lon": -107.835606
},
"endPoint": {
"lat": 32.316549,
"lon": -109.68817
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"enable-gas-transmission-us": {
"id": "enable-gas-transmission-us",
"name": "Enable Gas Transmission",
"operator": "Enable Gas Transmission LLC [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 67.45,
"lengthKm": 9495,
"inService": 0,
"startPoint": {
"lat": 35.642008,
"lon": -100.239958
},
"endPoint": {
"lat": 33.955054,
"lon": -93.150311
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"enable-oklahoma-instrastate-transmission-eoit-us": {
"id": "enable-oklahoma-instrastate-transmission-eoit-us",
"name": "Enable Oklahoma Instrastate Transmission (EOIT)",
"operator": "Enable Midstream Partners LP [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 23.51,
"lengthKm": 3540,
"inService": 0,
"startPoint": {
"lat": 36.652182,
"lon": -98.764464
},
"endPoint": {
"lat": 34.635376,
"lon": -95.807731
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"energia-mayakan-pipeline-mx": {
"id": "energia-mayakan-pipeline-mx",
"name": "Energia Mayakan Pipeline",
"operator": "Engie SA [67.50%]; General Electric Co; Mexico Infrastructure Partners",
"commodityType": "gas",
"fromCountry": "MX",
"toCountry": "MX",
"transitCountries": [],
"capacityBcmYr": 2.56,
"lengthKm": 775,
"inService": 1999,
"startPoint": {
"lat": 20.693056,
"lon": -88.267497
},
"endPoint": {
"lat": 17.864064,
"lon": -93.119699
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"ennore-tuticorn-bengalaru-gas-pipeline-in": {
"id": "ennore-tuticorn-bengalaru-gas-pipeline-in",
"name": "Ennore-Tuticorn-Bengalaru Gas Pipeline",
"operator": "Indian Oil Corp [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 30.9,
"lengthKm": 1431,
"inService": 2025,
"startPoint": {
"lat": 13.215734,
"lon": 80.320196
},
"endPoint": {
"lat": 12.712817,
"lon": 77.328962
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"florida-gas-transmission-pipeline-system-network-info-us": {
"id": "florida-gas-transmission-pipeline-system-network-info-us",
"name": "Florida Gas Transmission Pipeline - SYSTEM/NETWORK INFO",
"operator": "Florida Gas Transmission Co LLC [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 10.83,
"lengthKm": 8529.52,
"inService": 1998,
"startPoint": {
"lat": 30.041463,
"lon": -82.160287
},
"endPoint": {
"lat": 27.23785,
"lon": -81.046694
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"foothills-system-gas-pipeline-ca": {
"id": "foothills-system-gas-pipeline-ca",
"name": "Foothills System Gas Pipeline",
"operator": "TransCanada PipeLines Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CA",
"toCountry": "CA",
"transitCountries": [],
"capacityBcmYr": 33.73,
"lengthKm": 1237,
"inService": 1981,
"startPoint": {
"lat": 51.945599,
"lon": -114.740434
},
"endPoint": {
"lat": 50.338095,
"lon": -109.572735
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"franpipe-gas-pipeline-no": {
"id": "franpipe-gas-pipeline-no",
"name": "Franpipe Gas Pipeline",
"operator": "Gassco [100.00%]",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "FR",
"transitCountries": [],
"capacityBcmYr": 19.78,
"lengthKm": 840,
"inService": 1998,
"startPoint": {
"lat": 58.188694,
"lon": 2.466666
},
"endPoint": {
"lat": 51.046406,
"lon": 2.252709
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gas-transmission-northwest-ca": {
"id": "gas-transmission-northwest-ca",
"name": "Gas Transmission Northwest",
"operator": "TC Energy [100.00%]",
"commodityType": "gas",
"fromCountry": "CA",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 29.64,
"lengthKm": 2177.44,
"inService": 1961,
"startPoint": {
"lat": 49.001218,
"lon": -116.186345
},
"endPoint": {
"lat": 47.277472,
"lon": -117.405781
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gasbol-gas-pipeline-bo": {
"id": "gasbol-gas-pipeline-bo",
"name": "GASBOL Gas Pipeline",
"operator": "Petrobras [51.00%]; BBPP Holdings Ltda [29.00%]; YPFB [12.00%]; Corumbá Holding SARL [8.00%]",
"commodityType": "gas",
"fromCountry": "BO",
"toCountry": "BR",
"transitCountries": [],
"capacityBcmYr": 11,
"lengthKm": 3150,
"inService": 1999,
"startPoint": {
"lat": -19.109674,
"lon": -57.81924
},
"endPoint": {
"lat": -29.876189,
"lon": -51.147325
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gasene-gas-pipeline-gascac-br": {
"id": "gasene-gas-pipeline-gascac-br",
"name": "Gasene Gas Pipeline - GASCAC",
"operator": "CDPQ [50.00%]; Engie SA [32.50%]; Engie Brasil Energia [17.50%]",
"commodityType": "gas",
"fromCountry": "BR",
"toCountry": "BR",
"transitCountries": [],
"capacityBcmYr": 7.3,
"lengthKm": 958.2,
"inService": 2010,
"startPoint": {
"lat": -12.389001,
"lon": -38.351933
},
"endPoint": {
"lat": -18.627986,
"lon": -39.921665
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gasoducto-al-altiplano-gas-pipeline-bo": {
"id": "gasoducto-al-altiplano-gas-pipeline-bo",
"name": "Gasoducto al Altiplano Gas Pipeline",
"operator": "YPFB [100.00%]",
"commodityType": "gas",
"fromCountry": "BO",
"toCountry": "BO",
"transitCountries": [],
"capacityBcmYr": 0.69,
"lengthKm": 1181,
"inService": 1988,
"startPoint": {
"lat": -18.183363,
"lon": -62.904743
},
"endPoint": {
"lat": -18.15966,
"lon": -63.689464
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gasoducto-contugas-gas-pipeline-pe": {
"id": "gasoducto-contugas-gas-pipeline-pe",
"name": "Gasoducto Contugas Gas Pipeline",
"operator": "Contugas [100.00%]",
"commodityType": "gas",
"fromCountry": "PE",
"toCountry": "PE",
"transitCountries": [],
"capacityBcmYr": 3.58,
"lengthKm": 1100,
"inService": 2014,
"startPoint": {
"lat": -14.100685,
"lon": -75.843653
},
"endPoint": {
"lat": -13.715032,
"lon": -75.969021
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gasoducto-norte-gas-pipeline-ar": {
"id": "gasoducto-norte-gas-pipeline-ar",
"name": "Gasoducto Norte Gas Pipeline",
"operator": "GasInvest SA [56.00%]; Southern Cone Energy Holding Co Inc [24.00%]; Bolsas y Mercados Argentinos SA [20.00%]",
"commodityType": "gas",
"fromCountry": "AR",
"toCountry": "AR",
"transitCountries": [],
"capacityBcmYr": 10.22,
"lengthKm": 1454,
"inService": 1960,
"startPoint": {
"lat": -22.468837,
"lon": -63.786356
},
"endPoint": {
"lat": -25.445031,
"lon": -64.936717
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gazli-shymkent-gas-pipeline-uz": {
"id": "gazli-shymkent-gas-pipeline-uz",
"name": "Gazli-Shymkent Gas Pipeline",
"operator": "QazaqGaz [100.00%]",
"commodityType": "gas",
"fromCountry": "UZ",
"toCountry": "KZ",
"transitCountries": [],
"capacityBcmYr": 4.3,
"lengthKm": 877,
"inService": 1988,
"startPoint": {
"lat": 40.187553,
"lon": 63.588123
},
"endPoint": {
"lat": 41.955343,
"lon": 69.489436
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"goldfields-gas-pipeline-au": {
"id": "goldfields-gas-pipeline-au",
"name": "Goldfields Gas Pipeline",
"operator": "APA Group [57.00%]; Brookfield Asset Management [11.84%]",
"commodityType": "gas",
"fromCountry": "AU",
"toCountry": "AU",
"transitCountries": [],
"capacityBcmYr": 2.03,
"lengthKm": 1380,
"inService": 1996,
"startPoint": {
"lat": -21.444989,
"lon": 115.955553
},
"endPoint": {
"lat": -23.345146,
"lon": 119.709375
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gr-5-gas-pipeline-dz": {
"id": "gr-5-gas-pipeline-dz",
"name": "GR-5 Gas Pipeline",
"operator": "Sonatrach [100.00%]",
"commodityType": "gas",
"fromCountry": "DZ",
"toCountry": "DZ",
"transitCountries": [],
"capacityBcmYr": 8.8,
"lengthKm": 770,
"inService": 2018,
"startPoint": {
"lat": 30.857063,
"lon": 0.49291
},
"endPoint": {
"lat": 32.9361,
"lon": 3.2516
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"great-lakes-gas-transmission-pipeline-ca": {
"id": "great-lakes-gas-transmission-pipeline-ca",
"name": "Great Lakes Gas Transmission Pipeline",
"operator": "TC Energy [53.55%]; TC PipeLines LP [46.45%]",
"commodityType": "gas",
"fromCountry": "CA",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 24.53,
"lengthKm": 3403.76,
"inService": 1967,
"startPoint": {
"lat": 48.255791,
"lon": -96.239502
},
"endPoint": {
"lat": 46.551516,
"lon": -90.885168
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gryazovets-volkhov-slavyanskaya-gas-pipeline-ru": {
"id": "gryazovets-volkhov-slavyanskaya-gas-pipeline-ru",
"name": "Gryazovets-Volkhov-Slavyanskaya Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 84.2,
"lengthKm": 880,
"inService": 2022,
"startPoint": {
"lat": 58.787926,
"lon": 40.250152
},
"endPoint": {
"lat": 59.451417,
"lon": 28.10993
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gryazovets-vyborg-gas-pipeline-i-ru": {
"id": "gryazovets-vyborg-gas-pipeline-i-ru",
"name": "Gryazovets-Vyborg Gas Pipeline - I",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 55,
"lengthKm": 917,
"inService": 2011,
"startPoint": {
"lat": 59.148604,
"lon": 38.533592
},
"endPoint": {
"lat": 59.487957,
"lon": 34.332103
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gulf-coast-express-pipeline-us": {
"id": "gulf-coast-express-pipeline-us",
"name": "Gulf Coast Express Pipeline",
"operator": "Gulf Coast Express Pipeline LLC [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 20.24,
"lengthKm": 800.65,
"inService": 2019,
"startPoint": {
"lat": 27.746087,
"lon": -97.800026
},
"endPoint": {
"lat": 31.894956,
"lon": -101.79858
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gulf-coast-southbound-pipeline-phase-i-us": {
"id": "gulf-coast-southbound-pipeline-phase-i-us",
"name": "Gulf Coast Southbound Pipeline - Phase I",
"operator": "Natural Gas Pipeline Co of America LLC (NGPL) [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 4.7,
"lengthKm": 2227.07,
"inService": 2017,
"startPoint": {
"lat": 41.876768,
"lon": -87.630028
},
"endPoint": {
"lat": 27.782797,
"lon": -97.909973
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gulf-south-gas-pipeline-system-network-info-us": {
"id": "gulf-south-gas-pipeline-system-network-info-us",
"name": "Gulf South Gas Pipeline - SYSTEM/NETWORK INFO",
"operator": "Boardwalk Pipeline Partners [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 27.59,
"lengthKm": 12070.08,
"inService": 2008,
"startPoint": {
"lat": 32.594515,
"lon": -94.840659
},
"endPoint": {
"lat": 32.923891,
"lon": -91.447948
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"gulfstream-natural-gas-pipeline-us": {
"id": "gulfstream-natural-gas-pipeline-us",
"name": "Gulfstream Natural Gas Pipeline",
"operator": "Williams Companies [50.00%]; Enbridge [50.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 13.39,
"lengthKm": 1199,
"inService": 2002,
"startPoint": {
"lat": 30.421916,
"lon": -88.883977
},
"endPoint": {
"lat": 26.683618,
"lon": -80.210593
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"hajiqabul-astara-abadan-gas-pipeline-az": {
"id": "hajiqabul-astara-abadan-gas-pipeline-az",
"name": "HajiqabulAstaraAbadan Gas Pipeline",
"operator": "National Iranian Oil Refining and Distribution Co [100.00%]; SOCAR",
"commodityType": "gas",
"fromCountry": "AZ",
"toCountry": "IR",
"transitCountries": [],
"capacityBcmYr": 10,
"lengthKm": 1474.5,
"inService": 1970,
"startPoint": {
"lat": 40.042202,
"lon": 48.902911
},
"endPoint": {
"lat": 28.082322,
"lon": 51.766742
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"hazira-vijaipur-jagdishpur-hvj-gas-pipeline-in": {
"id": "hazira-vijaipur-jagdishpur-hvj-gas-pipeline-in",
"name": "Hazira-Vijaipur-Jagdishpur (HVJ) Gas Pipeline",
"operator": "GAIL (India) Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 39.06,
"lengthKm": 2887,
"inService": 1997,
"startPoint": {
"lat": 21.177933,
"lon": 72.645373
},
"endPoint": {
"lat": 26.750347,
"lon": 80.542835
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"hebei-nanjing-connecting-gas-pipeline-trunk-line-cn": {
"id": "hebei-nanjing-connecting-gas-pipeline-trunk-line-cn",
"name": "Hebei-Nanjing Connecting Gas Pipeline - Trunk line",
"operator": "--",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 9,
"lengthKm": 886,
"inService": 2005,
"startPoint": {
"lat": 32.257451,
"lon": 119.087956
},
"endPoint": {
"lat": 38.300838,
"lon": 115.42929
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"high-pressure-gujarat-gas-grid-network-in": {
"id": "high-pressure-gujarat-gas-grid-network-in",
"name": "High Pressure Gujarat Gas Grid Network",
"operator": "Gujarat State Petronet [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 11.32,
"lengthKm": 2207,
"inService": 2016,
"startPoint": {
"lat": 20.443966,
"lon": 72.968384
},
"endPoint": {
"lat": 22.425935,
"lon": 71.074938
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"houston-gas-pipeline-hpl-system-us": {
"id": "houston-gas-pipeline-hpl-system-us",
"name": "Houston Gas Pipeline (HPL) System",
"operator": "ETP Legacy [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 54.17,
"lengthKm": 6115.51,
"inService": 0,
"startPoint": {
"lat": 33.632786,
"lon": -96.772354
},
"endPoint": {
"lat": 30.295604,
"lon": -97.747957
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"igat-11-gas-pipeline-ir": {
"id": "igat-11-gas-pipeline-ir",
"name": "IGAT 11 Gas Pipeline",
"operator": "Iran Ministry of Petroleum [100.00%]",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "IR",
"transitCountries": [],
"capacityBcmYr": 40.15,
"lengthKm": 1200,
"inService": 2026,
"startPoint": {
"lat": 27.474,
"lon": 52.591
},
"endPoint": {
"lat": 39.304,
"lon": 44.432
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"igat-3-gas-pipeline-ir": {
"id": "igat-3-gas-pipeline-ir",
"name": "IGAT 3 Gas Pipeline",
"operator": "Iran Ministry of Petroleum [100.00%]",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "IR",
"transitCountries": [],
"capacityBcmYr": 32.85,
"lengthKm": 1195,
"inService": 0,
"startPoint": {
"lat": 27.473853,
"lon": 52.590629
},
"endPoint": {
"lat": 37.443898,
"lon": 49.560164
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"igat-4-gas-pipeline-ir": {
"id": "igat-4-gas-pipeline-ir",
"name": "IGAT 4 Gas Pipeline",
"operator": "Iran Ministry of Petroleum [100.00%]",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "IR",
"transitCountries": [],
"capacityBcmYr": 40.15,
"lengthKm": 1145,
"inService": 0,
"startPoint": {
"lat": 27.4737,
"lon": 52.590629
},
"endPoint": {
"lat": 35.12463,
"lon": 49.507111
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"igat-7-gas-pipeline-ir": {
"id": "igat-7-gas-pipeline-ir",
"name": "IGAT 7 Gas Pipeline",
"operator": "Iran Ministry of Petroleum [100.00%]",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "IR",
"transitCountries": [],
"capacityBcmYr": 18.4,
"lengthKm": 907,
"inService": 2010,
"startPoint": {
"lat": 27.47431,
"lon": 52.590114
},
"endPoint": {
"lat": 31.13774,
"lon": 59.218119
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"igat-8-gas-pipeline-ir": {
"id": "igat-8-gas-pipeline-ir",
"name": "IGAT 8 Gas Pipeline",
"operator": "Iran Ministry of Petroleum [100.00%]",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "IR",
"transitCountries": [],
"capacityBcmYr": 39.7,
"lengthKm": 1000,
"inService": 2016,
"startPoint": {
"lat": 27.47393,
"lon": 52.590458
},
"endPoint": {
"lat": 34.737892,
"lon": 51.086176
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"igat-9-gas-pipeline-ir": {
"id": "igat-9-gas-pipeline-ir",
"name": "IGAT 9 Gas Pipeline",
"operator": "Iran Ministry of Petroleum [100.00%]",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "IR",
"transitCountries": [],
"capacityBcmYr": 39.7,
"lengthKm": 1900,
"inService": 2022,
"startPoint": {
"lat": 39.629501,
"lon": 44.7243
},
"endPoint": {
"lat": 27.742201,
"lon": 52.758202
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"iran-oman-gas-pipeline-ir": {
"id": "iran-oman-gas-pipeline-ir",
"name": "Iran-Oman Gas Pipeline",
"operator": "Iran Ministry of Petroleum [100.00%]",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "OM",
"transitCountries": [],
"capacityBcmYr": 10,
"lengthKm": 1000,
"inService": 0,
"startPoint": {
"lat": 25.843336,
"lon": 57.347288
},
"endPoint": {
"lat": 24.377131,
"lon": 56.721953
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"iran-pakistan-pipeline-ir": {
"id": "iran-pakistan-pipeline-ir",
"name": "Iran-Pakistan Pipeline",
"operator": "Iran Ministry of Petroleum [100.00%]",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "PK",
"transitCountries": [],
"capacityBcmYr": 7.67,
"lengthKm": 2775,
"inService": 2024,
"startPoint": {
"lat": 27.474,
"lon": 52.591
},
"endPoint": {
"lat": 26.245,
"lon": 68.391
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"jagdishpur-haldia-bokaro-dhamra-natural-gas-pipeline-jhbdpl-in": {
"id": "jagdishpur-haldia-bokaro-dhamra-natural-gas-pipeline-jhbdpl-in",
"name": "Jagdishpur-Haldia-Bokaro-Dhamra Natural Gas Pipeline (JHBDPL)",
"operator": "GAIL (India) Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 8.4,
"lengthKm": 3546,
"inService": 2025,
"startPoint": {
"lat": 20.793992,
"lon": 86.899137
},
"endPoint": {
"lat": 25.518106,
"lon": 82.849216
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"kern-river-gas-pipeline-us": {
"id": "kern-river-gas-pipeline-us",
"name": "Kern River Gas Pipeline",
"operator": "Kern River Gas Transmission Co [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 22.18,
"lengthKm": 2763.24,
"inService": 1991,
"startPoint": {
"lat": 34.993468,
"lon": -117.671106
},
"endPoint": {
"lat": 35.267478,
"lon": -116.298416
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"kg-basin-gas-pipeline-in": {
"id": "kg-basin-gas-pipeline-in",
"name": "KG Basin Gas Pipeline",
"operator": "GAIL (India) Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 5.84,
"lengthKm": 877.86,
"inService": 1991,
"startPoint": {
"lat": 15.982519,
"lon": 82.060898
},
"endPoint": {
"lat": 16.481701,
"lon": 81.89159
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"kochi-koottanad-bangalore-mangalore-gas-pipeline-phase-ii-in": {
"id": "kochi-koottanad-bangalore-mangalore-gas-pipeline-phase-ii-in",
"name": "Kochi-Koottanad-Bangalore-Mangalore Gas Pipeline - Phase II",
"operator": "GAIL (India) Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 5.84,
"lengthKm": 1060,
"inService": 2022,
"startPoint": {
"lat": 12.783957,
"lon": 77.043288
},
"endPoint": {
"lat": 10.838579,
"lon": 76.003921
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"kpc-gas-pipeline-us": {
"id": "kpc-gas-pipeline-us",
"name": "KPC Gas Pipeline",
"operator": "KPC Pipeline [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 1.64,
"lengthKm": 1817,
"inService": 1995,
"startPoint": {
"lat": 36.709697,
"lon": -99.893885
},
"endPoint": {
"lat": 37.670798,
"lon": -97.339368
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"langeled-gas-pipeline-no": {
"id": "langeled-gas-pipeline-no",
"name": "Langeled Gas Pipeline",
"operator": "Gassled [100.00%]",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "GB",
"transitCountries": [],
"capacityBcmYr": 25.5,
"lengthKm": 1166,
"inService": 2006,
"startPoint": {
"lat": 62.851559,
"lon": 6.945771
},
"endPoint": {
"lat": 53.659231,
"lon": 0.116031
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"libya-coastal-gas-pipeline-ly": {
"id": "libya-coastal-gas-pipeline-ly",
"name": "Libya Coastal Gas Pipeline",
"operator": "Libyan National Oil Corp [100.00%]",
"commodityType": "gas",
"fromCountry": "LY",
"toCountry": "LY",
"transitCountries": [],
"capacityBcmYr": 6.17,
"lengthKm": 1164,
"inService": 1983,
"startPoint": {
"lat": 32.8538,
"lon": 12.2375
},
"endPoint": {
"lat": 32.1,
"lon": 20.09
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"louisiana-intrastate-gas-lig-pipeline-us": {
"id": "louisiana-intrastate-gas-lig-pipeline-us",
"name": "Louisiana Intrastate Gas (LIG) Pipeline",
"operator": "EnLink Midstream [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 7.15,
"lengthKm": 3218.69,
"inService": 1985,
"startPoint": {
"lat": 32.819154,
"lon": -93.417851
},
"endPoint": {
"lat": 30.970491,
"lon": -91.694101
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"maghreb-europe-gas-pipeline-dz": {
"id": "maghreb-europe-gas-pipeline-dz",
"name": "Maghreb-Europe Gas Pipeline",
"operator": "Sonatrach; Government of Morocco; Enagás; SaskEnergy",
"commodityType": "gas",
"fromCountry": "DZ",
"toCountry": "ES",
"transitCountries": [
"MA",
"PT"
],
"capacityBcmYr": 12,
"lengthKm": 1350,
"inService": 1996,
"startPoint": {
"lat": 32.931267,
"lon": 3.247745
},
"endPoint": {
"lat": 36.067881,
"lon": -5.706203
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"makat-north-caucasus-pipeline-kz": {
"id": "makat-north-caucasus-pipeline-kz",
"name": "MakatNorth Caucasus Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "KZ",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 21.9,
"lengthKm": 944,
"inService": 1988,
"startPoint": {
"lat": 43.580142,
"lon": 45.891674
},
"endPoint": {
"lat": 47.355885,
"lon": 51.847789
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"mallavaram-bhopal-bhilwara-vijaipur-gas-pipeline-phase-ii-in": {
"id": "mallavaram-bhopal-bhilwara-vijaipur-gas-pipeline-phase-ii-in",
"name": "Mallavaram-Bhopal-Bhilwara-Vijaipur Gas Pipeline - Phase II",
"operator": "Gujarat State Petronet [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 28.56,
"lengthKm": 1517,
"inService": 2024,
"startPoint": {
"lat": 16.719706,
"lon": 82.258428
},
"endPoint": {
"lat": 24.189908,
"lon": 77.18526
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"maritimes-and-northeast-gas-pipeline-ca": {
"id": "maritimes-and-northeast-gas-pipeline-ca",
"name": "Maritimes and Northeast Gas Pipeline",
"operator": "Enbridge [77.53%]; Emera [12.92%]; ExxonMobil [9.55%]",
"commodityType": "gas",
"fromCountry": "CA",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 8.48,
"lengthKm": 1432,
"inService": 1999,
"startPoint": {
"lat": 42.530439,
"lon": -70.908119
},
"endPoint": {
"lat": 42.662765,
"lon": -71.257762
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"matterhorn-express-gas-pipeline-us": {
"id": "matterhorn-express-gas-pipeline-us",
"name": "Matterhorn Express Gas Pipeline",
"operator": "WhiteWater Midstream; EnLink Midstream; WPX Energy; MPLX",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 25.55,
"lengthKm": 933.42,
"inService": 2024,
"startPoint": {
"lat": 29.69691,
"lon": -96.182908
},
"endPoint": {
"lat": 31.337166,
"lon": -101.780113
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"megal-gas-pipeline-de": {
"id": "megal-gas-pipeline-de",
"name": "MEGAL Gas Pipeline",
"operator": "Mittel-Europäische-Gasleitungsgesellschaft mbH & Co. KG [100.00%]",
"commodityType": "gas",
"fromCountry": "DE",
"toCountry": "DE",
"transitCountries": [],
"capacityBcmYr": 22,
"lengthKm": 1115,
"inService": 1980,
"startPoint": {
"lat": 49.11,
"lon": 7.22
},
"endPoint": {
"lat": 48.5738,
"lon": 13.7218
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"mehsana-bhatinda-gas-pipeline-phase-i-in": {
"id": "mehsana-bhatinda-gas-pipeline-phase-i-in",
"name": "Mehsana-Bhatinda Gas Pipeline - Phase I",
"operator": "Gujarat State Petronet [52.00%]; Indian Oil Corp [26.00%]; BPCL Group [11.00%]; Hindustan Petroleum [11.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 29.24,
"lengthKm": 1177,
"inService": 2022,
"startPoint": {
"lat": 24.140246,
"lon": 72.350832
},
"endPoint": {
"lat": 25.641378,
"lon": 73.698352
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"midcontinent-express-gas-pipeline-us": {
"id": "midcontinent-express-gas-pipeline-us",
"name": "Midcontinent Express Gas Pipeline",
"operator": "Kinder Morgan [50.00%]; ETP Legacy [50.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 15.67,
"lengthKm": 816.42,
"inService": 2009,
"startPoint": {
"lat": 34.004507,
"lon": -96.038237
},
"endPoint": {
"lat": 32.089742,
"lon": -88.221005
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"mississippi-river-transmission-us": {
"id": "mississippi-river-transmission-us",
"name": "Mississippi River Transmission",
"operator": "Enable Midstream Partners LP [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 19.42,
"lengthKm": 2574,
"inService": 0,
"startPoint": {
"lat": 34.672279,
"lon": -91.795776
},
"endPoint": {
"lat": 38.668875,
"lon": -90.103533
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"mojave-gas-pipeline-us": {
"id": "mojave-gas-pipeline-us",
"name": "Mojave Gas Pipeline",
"operator": "El Paso Corp [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 4.09,
"lengthKm": 804.7,
"inService": 1991,
"startPoint": {
"lat": 35.411718,
"lon": -118.922603
},
"endPoint": {
"lat": 34.714337,
"lon": -114.488486
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"moomba-adelaide-pipeline-system-au": {
"id": "moomba-adelaide-pipeline-system-au",
"name": "Moomba Adelaide Pipeline System",
"operator": "Queensland Investment Corp [100.00%]",
"commodityType": "gas",
"fromCountry": "AU",
"toCountry": "AU",
"transitCountries": [],
"capacityBcmYr": 2.42,
"lengthKm": 1184,
"inService": 1969,
"startPoint": {
"lat": -28.116,
"lon": 140.206
},
"endPoint": {
"lat": -34.805,
"lon": 138.52
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"mountainwest-gas-pipeline-us": {
"id": "mountainwest-gas-pipeline-us",
"name": "MountainWest Gas Pipeline",
"operator": "Williams Companies [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 26.57,
"lengthKm": 3006.25,
"inService": 0,
"startPoint": {
"lat": 41.13483,
"lon": -111.933555
},
"endPoint": {
"lat": 39.686978,
"lon": -110.623456
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"mozambique-south-africa-gas-pipeline-mz": {
"id": "mozambique-south-africa-gas-pipeline-mz",
"name": "Mozambique-South Africa Gas Pipeline",
"operator": "Sasol [50.00%]; South African Gas Development Ltd Co [25.00%]; Companhia Mocambiçana de Gasoduto [25.00%]",
"commodityType": "gas",
"fromCountry": "MZ",
"toCountry": "ZA",
"transitCountries": [],
"capacityBcmYr": 5.52,
"lengthKm": 865,
"inService": 2004,
"startPoint": {
"lat": -26.562479,
"lon": 29.14458
},
"endPoint": {
"lat": -21.802044,
"lon": 34.911121
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"mumbai-nagpur-jharsuguda-gas-pipeline-in": {
"id": "mumbai-nagpur-jharsuguda-gas-pipeline-in",
"name": "Mumbai-Nagpur-Jharsuguda Gas Pipeline",
"operator": "GAIL (India) Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 6.02,
"lengthKm": 1755,
"inService": 2025,
"startPoint": {
"lat": 19.308792,
"lon": 73.263244
},
"endPoint": {
"lat": 23.289176,
"lon": 80.005943
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"national-fuel-gas-supply-corporation-gas-pipeline-us": {
"id": "national-fuel-gas-supply-corporation-gas-pipeline-us",
"name": "National Fuel Gas Supply Corporation Gas Pipeline",
"operator": "National Fuel Gas Supply Corp",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 44.97,
"lengthKm": 2896.82,
"inService": 0,
"startPoint": {
"lat": 39.900478,
"lon": -80.435288
},
"endPoint": {
"lat": 41.899505,
"lon": -77.916144
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"natural-gas-pipeline-company-of-america-system-us": {
"id": "natural-gas-pipeline-company-of-america-system-us",
"name": "Natural Gas Pipeline Company of America System",
"operator": "Kinder Morgan [37.50%]; Brookfield Infrastructure Partners [25.00%]; ArcLight Capital Partners [37.50%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 16.35,
"lengthKm": 14645.03,
"inService": 1931,
"startPoint": {
"lat": 32.656,
"lon": -104.58176
},
"endPoint": {
"lat": 41.707584,
"lon": -87.539008
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"neuba-i-gas-pipeline-ar": {
"id": "neuba-i-gas-pipeline-ar",
"name": "Neuba I Gas Pipeline",
"operator": "Compañía de Inversiones de Energía SA (CIESA) [51.00%]; Administración Nacional de la Seguridad Social (ANSES) [24.00%]; New York Stock Exchange (NYSE) [12.00%]; BYMA-Bolsas y Mercados Argentinos SA [8.00%]; other [5.00%]",
"commodityType": "gas",
"fromCountry": "AR",
"toCountry": "AR",
"transitCountries": [],
"capacityBcmYr": 4.75,
"lengthKm": 1267,
"inService": 1970,
"startPoint": {
"lat": -39.026594,
"lon": -66.535641
},
"endPoint": {
"lat": -39.026579,
"lon": -66.535777
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"neuba-ii-gas-pipeline-ar": {
"id": "neuba-ii-gas-pipeline-ar",
"name": "Neuba II Gas Pipeline",
"operator": "Compañía de Inversiones de Energía SA (CIESA) [51.00%]; Administración Nacional de la Seguridad Social (ANSES) [24.00%]; New York Stock Exchange (NYSE) [12.00%]; BYMA-Bolsas y Mercados Argentinos SA [8.00%]; other [5.00%]",
"commodityType": "gas",
"fromCountry": "AR",
"toCountry": "AR",
"transitCountries": [],
"capacityBcmYr": 10.95,
"lengthKm": 1958,
"inService": 1988,
"startPoint": {
"lat": -38.435441,
"lon": -68.57022
},
"endPoint": {
"lat": -34.834635,
"lon": -59.014491
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"nizhnevartovsk-parabel-kuzbass-gas-pipeline-i-ru": {
"id": "nizhnevartovsk-parabel-kuzbass-gas-pipeline-i-ru",
"name": "Nizhnevartovsk-Parabel-Kuzbass Gas Pipeline - I",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 4.1,
"lengthKm": 1162,
"inService": 1978,
"startPoint": {
"lat": 56.155811,
"lon": 84.341362
},
"endPoint": {
"lat": 53.844127,
"lon": 87.076011
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"norandino-gas-pipeline-ar": {
"id": "norandino-gas-pipeline-ar",
"name": "NorAndino Gas Pipeline",
"operator": "Engie Energía Chile (EECL) [100.00%]",
"commodityType": "gas",
"fromCountry": "AR",
"toCountry": "CL",
"transitCountries": [],
"capacityBcmYr": 2.92,
"lengthKm": 1070,
"inService": 1999,
"startPoint": {
"lat": -23.780383,
"lon": -70.434909
},
"endPoint": {
"lat": -23.409028,
"lon": -64.33854
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"north-east-natural-gas-pipeline-grid-project-in": {
"id": "north-east-natural-gas-pipeline-grid-project-in",
"name": "North East Natural Gas Pipeline Grid Project",
"operator": "Indradhanush Gas Grid Ltd (IGGL) [100.00%]",
"commodityType": "gas",
"fromCountry": "IN",
"toCountry": "IN",
"transitCountries": [],
"capacityBcmYr": 1.73,
"lengthKm": 1656,
"inService": 2026,
"startPoint": {
"lat": 26.138092,
"lon": 91.73278
},
"endPoint": {
"lat": 27.43497,
"lon": 88.569707
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"northern-border-gas-pipeline-ca": {
"id": "northern-border-gas-pipeline-ca",
"name": "Northern Border Gas Pipeline",
"operator": "TC Energy [50.00%]; ONEOK Inc [50.00%]",
"commodityType": "gas",
"fromCountry": "CA",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 24.53,
"lengthKm": 2272.39,
"inService": 1982,
"startPoint": {
"lat": 46.439499,
"lon": -100.575201
},
"endPoint": {
"lat": 48.558444,
"lon": -106.313389
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"northern-natural-gas-pipeline-us": {
"id": "northern-natural-gas-pipeline-us",
"name": "Northern Natural Gas Pipeline",
"operator": "Northern Natural Gas [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 64.39,
"lengthKm": 23013.62,
"inService": 1930,
"startPoint": {
"lat": 37.06553,
"lon": -101.663715
},
"endPoint": {
"lat": 41.0176,
"lon": -95.907328
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"northern-tyumen-regions-srto-torzhok-gas-pipeline-ru": {
"id": "northern-tyumen-regions-srto-torzhok-gas-pipeline-ru",
"name": "Northern Tyumen Regions (SRTO)Torzhok Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 28.5,
"lengthKm": 2200,
"inService": 2006,
"startPoint": {
"lat": 62.908086,
"lon": 61.503667
},
"endPoint": {
"lat": 62.524334,
"lon": 50.823954
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"northwest-gas-pipeline-system-network-info-us": {
"id": "northwest-gas-pipeline-system-network-info-us",
"name": "Northwest Gas Pipeline - SYSTEM/NETWORK INFO",
"operator": "Williams Companies [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 38.84,
"lengthKm": 6276.44,
"inService": 1965,
"startPoint": {
"lat": 42.529724,
"lon": -111.403387
},
"endPoint": {
"lat": 37.578062,
"lon": -108.711249
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"nova-gas-transmission-ngtl-pipeline-alberta-gas-pipeline-sys-ca": {
"id": "nova-gas-transmission-ngtl-pipeline-alberta-gas-pipeline-sys-ca",
"name": "Nova Gas Transmission (NGTL) Pipeline - Alberta Gas Pipeline System",
"operator": "NOVA Gas Transmission Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CA",
"toCountry": "CA",
"transitCountries": [],
"capacityBcmYr": 81.76,
"lengthKm": 24500,
"inService": 1957,
"startPoint": {
"lat": 49.306615,
"lon": -114.039927
},
"endPoint": {
"lat": 59.058791,
"lon": -118.871545
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"oasis-gas-pipeline-us": {
"id": "oasis-gas-pipeline-us",
"name": "Oasis Gas Pipeline",
"operator": "Energy Transfer [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 12.26,
"lengthKm": 966,
"inService": 0,
"startPoint": {
"lat": 31.310983,
"lon": -103.106007
},
"endPoint": {
"lat": 29.800767,
"lon": -95.859284
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"okarem-beyneu-gas-pipeline-tm": {
"id": "okarem-beyneu-gas-pipeline-tm",
"name": "Okarem-Beyneu Gas Pipeline",
"operator": "Turkmengaz; Samruk-Kazyna SWF JSC",
"commodityType": "gas",
"fromCountry": "TM",
"toCountry": "KZ",
"transitCountries": [],
"capacityBcmYr": 3.78,
"lengthKm": 999,
"inService": 1974,
"startPoint": {
"lat": 37.80305,
"lon": 53.866901
},
"endPoint": {
"lat": 45.309018,
"lon": 55.246059
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"orenburg-novopskov-gas-pipeline-ru": {
"id": "orenburg-novopskov-gas-pipeline-ru",
"name": "Orenburg-Novopskov Gas Pipeline",
"operator": "Gazprom PJSC; QazaqGaz",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "UA",
"transitCountries": [
"KZ"
],
"capacityBcmYr": 14.6,
"lengthKm": 1230,
"inService": 1975,
"startPoint": {
"lat": 51.78109,
"lon": 55.10983
},
"endPoint": {
"lat": 49.52207,
"lon": 39.14875
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"ostrogozhsk-belousovo-gas-pipeline-ru": {
"id": "ostrogozhsk-belousovo-gas-pipeline-ru",
"name": "Ostrogozhsk-Belousovo Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 8.79,
"lengthKm": 810,
"inService": 0,
"startPoint": {
"lat": 50.83566,
"lon": 38.99924
},
"endPoint": {
"lat": 55.11288,
"lon": 36.68415
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"panhandle-eastern-gas-pipeline-us": {
"id": "panhandle-eastern-gas-pipeline-us",
"name": "Panhandle Eastern Gas Pipeline",
"operator": "Southern Union Panhandle LLC; Energy Transfer",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 28.62,
"lengthKm": 1384.04,
"inService": 1929,
"startPoint": {
"lat": 37.942059,
"lon": -101.290054
},
"endPoint": {
"lat": 35.789328,
"lon": -97.744369
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"peninsular-gas-utilization-pipeline-my": {
"id": "peninsular-gas-utilization-pipeline-my",
"name": "Peninsular Gas Utilization Pipeline",
"operator": "Petronas [100.00%]",
"commodityType": "gas",
"fromCountry": "MY",
"toCountry": "MY",
"transitCountries": [],
"capacityBcmYr": 35.77,
"lengthKm": 2623,
"inService": 1993,
"startPoint": {
"lat": 6.341818,
"lon": 100.153761
},
"endPoint": {
"lat": 1.582785,
"lon": 103.783946
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"pisarevka-anapa-gas-pipeline-ru": {
"id": "pisarevka-anapa-gas-pipeline-ru",
"name": "Pisarevka-Anapa Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 63,
"lengthKm": 880,
"inService": 2016,
"startPoint": {
"lat": 49.91781,
"lon": 40.19104
},
"endPoint": {
"lat": 44.82824,
"lon": 37.42724
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"pochinki-anapa-gas-pipeline-ru": {
"id": "pochinki-anapa-gas-pipeline-ru",
"name": "Pochinki-Anapa Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 63,
"lengthKm": 1625,
"inService": 2023,
"startPoint": {
"lat": 54.6707,
"lon": 44.63861
},
"endPoint": {
"lat": 44.80583,
"lon": 37.407667
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"pochinki-izobilnoe-north-stavropol-underground-gas-storage-p-ru": {
"id": "pochinki-izobilnoe-north-stavropol-underground-gas-storage-p-ru",
"name": "Pochinki-Izobilnoe-North Stavropol Underground Gas Storage Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 30,
"lengthKm": 937,
"inService": 1998,
"startPoint": {
"lat": 54.6707,
"lon": 44.63861
},
"endPoint": {
"lat": 45.28569,
"lon": 41.76145
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"power-of-siberia-gas-pipeline-phase-i-ru": {
"id": "power-of-siberia-gas-pipeline-phase-i-ru",
"name": "Power of Siberia Gas Pipeline - Phase I",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 38,
"lengthKm": 2200,
"inService": 2019,
"startPoint": {
"lat": 57.299473,
"lon": 125.250836
},
"endPoint": {
"lat": 60.754906,
"lon": 119.156075
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"power-of-siberia-gas-pipeline-phase-ii-kovykta-chayanda-gas--ru": {
"id": "power-of-siberia-gas-pipeline-phase-ii-kovykta-chayanda-gas--ru",
"name": "Power of Siberia Gas Pipeline - Phase II Kovykta-Chayanda Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 38,
"lengthKm": 800,
"inService": 2022,
"startPoint": {
"lat": 60.754906,
"lon": 119.156075
},
"endPoint": {
"lat": 55.364967,
"lon": 106.14415
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"prince-rupert-gas-transmission-pipeline-ca": {
"id": "prince-rupert-gas-transmission-pipeline-ca",
"name": "Prince Rupert Gas Transmission Pipeline",
"operator": "NW Infrastructure Ltd Partnership [100.00%]",
"commodityType": "gas",
"fromCountry": "CA",
"toCountry": "CA",
"transitCountries": [],
"capacityBcmYr": 20.44,
"lengthKm": 750,
"inService": 2029,
"startPoint": {
"lat": 55.339955,
"lon": -126.715557
},
"endPoint": {
"lat": 55.12716,
"lon": -122.932258
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"progress-gas-pipeline-ru": {
"id": "progress-gas-pipeline-ru",
"name": "Progress Gas Pipeline",
"operator": "Gazprom PJSC; Gas Transmission System Operator of Ukraine",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "UA",
"transitCountries": [],
"capacityBcmYr": 26,
"lengthKm": 4590.7,
"inService": 1988,
"startPoint": {
"lat": 67.909871,
"lon": 74.901217
},
"endPoint": {
"lat": 48.621871,
"lon": 22.288048
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"promigas-pipeline-network-co": {
"id": "promigas-pipeline-network-co",
"name": "Promigas Pipeline Network",
"operator": "Promigas [100.00%]",
"commodityType": "gas",
"fromCountry": "CO",
"toCountry": "CO",
"transitCountries": [],
"capacityBcmYr": 9.73,
"lengthKm": 2537,
"inService": 1977,
"startPoint": {
"lat": 11.695809,
"lon": -72.723018
},
"endPoint": {
"lat": 10.271969,
"lon": -75.550727
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"punga-ukhta-gryazovets-gas-pipeline-iv-ru": {
"id": "punga-ukhta-gryazovets-gas-pipeline-iv-ru",
"name": "Punga-Ukhta-Gryazovets Gas Pipeline - IV",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 29.5,
"lengthKm": 945.8,
"inService": 1981,
"startPoint": {
"lat": 63.666384,
"lon": 53.762311
},
"endPoint": {
"lat": 58.776894,
"lon": 40.228024
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"rockies-express-gas-pipeline-us": {
"id": "rockies-express-gas-pipeline-us",
"name": "Rockies Express Gas Pipeline",
"operator": "Tallgrass Energy [75.00%]; Phillips 66 [25.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 41.39,
"lengthKm": 2711.74,
"inService": 2009,
"startPoint": {
"lat": 41.532225,
"lon": -110.059937
},
"endPoint": {
"lat": 41.680249,
"lon": -107.983217
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"rover-pipeline-phase-1-us": {
"id": "rover-pipeline-phase-1-us",
"name": "Rover Pipeline - Phase 1",
"operator": "Energy Transfer [32.57%]; Blackstone [32.44%]; Traverse [35.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 17.37,
"lengthKm": 1144.24,
"inService": 2017,
"startPoint": {
"lat": 40.437951,
"lon": -81.221438
},
"endPoint": {
"lat": 39.791468,
"lon": -81.297212
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"ruby-gas-pipeline-us": {
"id": "ruby-gas-pipeline-us",
"name": "Ruby Gas Pipeline",
"operator": "Ruby Pipeline LLC [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 15.33,
"lengthKm": 1099.18,
"inService": 2011,
"startPoint": {
"lat": 41.996886,
"lon": -121.356893
},
"endPoint": {
"lat": 41.464237,
"lon": -111.547098
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"russia-iran-gas-pipeline-ru": {
"id": "russia-iran-gas-pipeline-ru",
"name": "RussiaIran Gas Pipeline",
"operator": "Iran Ministry of Petroleum; Gazprom PJSC",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "IR",
"transitCountries": [],
"capacityBcmYr": 55,
"lengthKm": 1413.38,
"inService": 0,
"startPoint": {
"lat": 37.273875,
"lon": 49.603781
},
"endPoint": {
"lat": 47.672514,
"lon": 53.316221
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"sabal-trail-gas-transmission-pipeline-project-phase-i-us": {
"id": "sabal-trail-gas-transmission-pipeline-project-phase-i-us",
"name": "Sabal Trail Gas Transmission Pipeline - Project Phase I",
"operator": "Sabal Trail Transmission LLC [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 8.48,
"lengthKm": 830.42,
"inService": 2017,
"startPoint": {
"lat": 28.963711,
"lon": -82.676149
},
"endPoint": {
"lat": 33.001458,
"lon": -85.895451
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"sakhalin-khabarovsk-vladivostok-gas-pipeline-ru": {
"id": "sakhalin-khabarovsk-vladivostok-gas-pipeline-ru",
"name": "Sakhalin-Khabarovsk-Vladivostok Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 20,
"lengthKm": 1822,
"inService": 2011,
"startPoint": {
"lat": 52.500729,
"lon": 143.182026
},
"endPoint": {
"lat": 43.15261,
"lon": 132.00341
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"san-martin-pipeline-ar": {
"id": "san-martin-pipeline-ar",
"name": "San Martin Pipeline",
"operator": "Compañía de Inversiones de Energía SA (CIESA) [51.00%]; Administración Nacional de la Seguridad Social (ANSES) [24.00%]; New York Stock Exchange (NYSE) [12.00%]; BYMA-Bolsas y Mercados Argentinos SA [8.00%]; other [5.00%]",
"commodityType": "gas",
"fromCountry": "AR",
"toCountry": "AR",
"transitCountries": [],
"capacityBcmYr": 11.24,
"lengthKm": 4590,
"inService": 1965,
"startPoint": {
"lat": -38.480217,
"lon": -61.608929
},
"endPoint": {
"lat": -52.679759,
"lon": -68.591764
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"sarakhs-sari-pipeline-ir": {
"id": "sarakhs-sari-pipeline-ir",
"name": "Sarakhs-Sari Pipeline",
"operator": "Iran Ministry of Petroleum [100.00%]",
"commodityType": "gas",
"fromCountry": "IR",
"toCountry": "IR",
"transitCountries": [],
"capacityBcmYr": 12,
"lengthKm": 795,
"inService": 0,
"startPoint": {
"lat": 36.35569,
"lon": 61.181478
},
"endPoint": {
"lat": 36.548507,
"lon": 53.049977
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"saryarka-gas-pipeline-phase-i-kyzylorda-zhezkazgan-karaganda-kz": {
"id": "saryarka-gas-pipeline-phase-i-kyzylorda-zhezkazgan-karaganda-kz",
"name": "Saryarka Gas Pipeline - Phase I (Kyzylorda-Zhezkazgan-Karaganda-Astana Gas Pipeline)",
"operator": "AstanaGaz KMG JSC [100.00%]",
"commodityType": "gas",
"fromCountry": "KZ",
"toCountry": "KZ",
"transitCountries": [],
"capacityBcmYr": 2.2,
"lengthKm": 1061,
"inService": 2019,
"startPoint": {
"lat": 45.355172,
"lon": 65.045451
},
"endPoint": {
"lat": 51.151735,
"lon": 71.439063
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"sawan-lahore-gas-pipeline-pk": {
"id": "sawan-lahore-gas-pipeline-pk",
"name": "SawanLahore Gas Pipeline",
"operator": "Sui Northern Gas Pipelines Ltd (SNGPL) [100.00%]",
"commodityType": "gas",
"fromCountry": "PK",
"toCountry": "PK",
"transitCountries": [],
"capacityBcmYr": 12.26,
"lengthKm": 770,
"inService": 2025,
"startPoint": {
"lat": 27.259895,
"lon": 69.152198
},
"endPoint": {
"lat": 31.479928,
"lon": 74.405686
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"sebei-xining-lanzhou-gas-pipeline-cn": {
"id": "sebei-xining-lanzhou-gas-pipeline-cn",
"name": "Sebei-Xining-Lanzhou Gas Pipeline",
"operator": "China Petroleum West Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 2,
"lengthKm": 953,
"inService": 2001,
"startPoint": {
"lat": 37.350374,
"lon": 94.165981
},
"endPoint": {
"lat": 36.105148,
"lon": 103.583904
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"serpukhov-kalinin-leningrad-pipeline-ru": {
"id": "serpukhov-kalinin-leningrad-pipeline-ru",
"name": "Serpukhov-Kalinin-Leningrad Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 3.7,
"lengthKm": 803,
"inService": 1959,
"startPoint": {
"lat": 59.791653,
"lon": 30.157471
},
"endPoint": {
"lat": 54.9684,
"lon": 37.50156
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"shaan-jing-gas-pipeline-shaan-jing-gas-pipeline-1-cn": {
"id": "shaan-jing-gas-pipeline-shaan-jing-gas-pipeline-1-cn",
"name": "Shaan-Jing Gas Pipeline - Shaan-Jing Gas Pipeline 1",
"operator": "Petrochina Beijing Gas Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 4,
"lengthKm": 918,
"inService": 1997,
"startPoint": {
"lat": 37.655418,
"lon": 108.926356
},
"endPoint": {
"lat": 39.884447,
"lon": 116.213974
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"shaan-jing-gas-pipeline-shaan-jing-gas-pipeline-2-cn": {
"id": "shaan-jing-gas-pipeline-shaan-jing-gas-pipeline-2-cn",
"name": "Shaan-Jing Gas Pipeline - Shaan-Jing Gas Pipeline 2",
"operator": "Petrochina Beijing Gas Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 12,
"lengthKm": 935,
"inService": 2005,
"startPoint": {
"lat": 37.655418,
"lon": 108.926356
},
"endPoint": {
"lat": 39.795992,
"lon": 116.810907
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"shaan-jing-gas-pipeline-shaan-jing-gas-pipeline-3-cn": {
"id": "shaan-jing-gas-pipeline-shaan-jing-gas-pipeline-3-cn",
"name": "Shaan-Jing Gas Pipeline - Shaan-Jing Gas Pipeline 3",
"operator": "Petrochina Beijing Gas Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 15,
"lengthKm": 1011,
"inService": 2010,
"startPoint": {
"lat": 38.276825,
"lon": 109.543413
},
"endPoint": {
"lat": 40.174674,
"lon": 116.24763
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"shaan-jing-gas-pipeline-shaan-jing-gas-pipeline-4-cn": {
"id": "shaan-jing-gas-pipeline-shaan-jing-gas-pipeline-4-cn",
"name": "Shaan-Jing Gas Pipeline - Shaan-Jing Gas Pipeline 4",
"operator": "Petrochina Beijing Gas Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 25,
"lengthKm": 1114,
"inService": 2017,
"startPoint": {
"lat": 37.655418,
"lon": 108.926356
},
"endPoint": {
"lat": 40.174674,
"lon": 116.24763
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"sichuan-chongqing-grand-loop-line-cn": {
"id": "sichuan-chongqing-grand-loop-line-cn",
"name": "Sichuan & Chongqing Grand Loop Line",
"operator": "--",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 12,
"lengthKm": 1756,
"inService": 2018,
"startPoint": {
"lat": 31.531108,
"lon": 107.729531
},
"endPoint": {
"lat": 30.467651,
"lon": 106.619943
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"sichuan-shanghai-gas-pipeline-trunk-line-cn": {
"id": "sichuan-shanghai-gas-pipeline-trunk-line-cn",
"name": "SichuanShanghai Gas Pipeline - Trunk line",
"operator": "--",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 15,
"lengthKm": 1628.64,
"inService": 2009,
"startPoint": {
"lat": 35.762562,
"lon": 115.012833
},
"endPoint": {
"lat": 31.267021,
"lon": 120.601984
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"sichuan-shanghai-parallel-gas-pipeline-xiantao-wenzhou-trunk-cn": {
"id": "sichuan-shanghai-parallel-gas-pipeline-xiantao-wenzhou-trunk-cn",
"name": "SichuanShanghai Parallel Gas Pipeline - Xiantao-Wenzhou Trunk Line",
"operator": "National Petroleum and Natural Gas Pipeline Network Group Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 27,
"lengthKm": 1260,
"inService": 0,
"startPoint": {
"lat": 30.338497,
"lon": 113.427828
},
"endPoint": {
"lat": 28.103556,
"lon": 120.514058
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"sichuan-shanghai-parallel-gas-pipeline-zaoyang-xuancheng-con-cn": {
"id": "sichuan-shanghai-parallel-gas-pipeline-zaoyang-xuancheng-con-cn",
"name": "SichuanShanghai Parallel Gas Pipeline - ZaoyangXuancheng Connecting Pipeline",
"operator": "National Petroleum and Natural Gas Pipeline Network Group Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 9.53,
"lengthKm": 787.2,
"inService": 0,
"startPoint": {
"lat": 32.331229,
"lon": 112.973379
},
"endPoint": {
"lat": 30.92808,
"lon": 118.755919
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"sino-myanmar-gas-pipeline-trunk-line-china-segment-cn": {
"id": "sino-myanmar-gas-pipeline-trunk-line-china-segment-cn",
"name": "Sino-Myanmar Gas Pipeline - Trunk line (China segment)",
"operator": "National Pipe Network Group Southwest Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 12,
"lengthKm": 1727,
"inService": 2013,
"startPoint": {
"lat": 24.031343,
"lon": 97.980098
},
"endPoint": {
"lat": 22.818347,
"lon": 108.361184
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"sino-myanmar-gas-pipeline-trunk-line-myanmar-segment-mm": {
"id": "sino-myanmar-gas-pipeline-trunk-line-myanmar-segment-mm",
"name": "Sino-Myanmar Gas Pipeline - Trunk line (Myanmar segment)",
"operator": "National Pipe Network Group Southwest Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "MM",
"toCountry": "MM",
"transitCountries": [],
"capacityBcmYr": 12,
"lengthKm": 793,
"inService": 2013,
"startPoint": {
"lat": 19.39337,
"lon": 93.720537
},
"endPoint": {
"lat": 19.593576,
"lon": 92.857825
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"sistema-nacional-de-gasoductos-sng-mx": {
"id": "sistema-nacional-de-gasoductos-sng-mx",
"name": "Sistema Nacional de Gasoductos (SNG)",
"operator": "Cenagas [100.00%]",
"commodityType": "gas",
"fromCountry": "MX",
"toCountry": "MX",
"transitCountries": [],
"capacityBcmYr": 51.1,
"lengthKm": 8611,
"inService": 1999,
"startPoint": {
"lat": 25.803947,
"lon": -103.192347
},
"endPoint": {
"lat": 16.203828,
"lon": -95.1824
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"socalgas-pipeline-us": {
"id": "socalgas-pipeline-us",
"name": "SoCalGas Pipeline",
"operator": "--",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 38.07,
"lengthKm": 5858.01,
"inService": 0,
"startPoint": {
"lat": 33.924264,
"lon": -116.667768
},
"endPoint": {
"lat": 33.916939,
"lon": -117.744169
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"south-valley-gas-pipeline-system-network-info-eg": {
"id": "south-valley-gas-pipeline-system-network-info-eg",
"name": "South Valley Gas Pipeline - SYSTEM/NETWORK INFO",
"operator": "Egyptian Natural Gas Holding Co [100.00%]",
"commodityType": "gas",
"fromCountry": "EG",
"toCountry": "EG",
"transitCountries": [],
"capacityBcmYr": 12,
"lengthKm": 930,
"inService": 2009,
"startPoint": {
"lat": 29.751158,
"lon": 31.242331
},
"endPoint": {
"lat": 24.089411,
"lon": 32.89637
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"south-west-queensland-pipeline-au": {
"id": "south-west-queensland-pipeline-au",
"name": "South West Queensland Pipeline",
"operator": "APA Group [100.00%]",
"commodityType": "gas",
"fromCountry": "AU",
"toCountry": "AU",
"transitCountries": [],
"capacityBcmYr": 4.05,
"lengthKm": 937,
"inService": 1996,
"startPoint": {
"lat": -28.122,
"lon": 140.204
},
"endPoint": {
"lat": -27.385,
"lon": 141.805
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"southern-natural-gas-pipeline-us": {
"id": "southern-natural-gas-pipeline-us",
"name": "Southern Natural Gas Pipeline",
"operator": "Kinder Morgan [50.00%]; Southern Co [50.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 39.86,
"lengthKm": 12231,
"inService": 1928,
"startPoint": {
"lat": 32.270577,
"lon": -81.282585
},
"endPoint": {
"lat": 31.759251,
"lon": -89.87893
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"southern-star-central-gas-pipeline-us": {
"id": "southern-star-central-gas-pipeline-us",
"name": "Southern Star Central Gas Pipeline",
"operator": "Southern Star Central Gas Pipeline Inc [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 24.53,
"lengthKm": 9334,
"inService": 1904,
"startPoint": {
"lat": 35.958498,
"lon": -99.975493
},
"endPoint": {
"lat": 39.133568,
"lon": -98.2176
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"srto-surgut-omsk-gas-pipeline-ru": {
"id": "srto-surgut-omsk-gas-pipeline-ru",
"name": "SRTO-Surgut-Omsk Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 32.8,
"lengthKm": 763,
"inService": 1989,
"startPoint": {
"lat": 63.19162,
"lon": 75.549
},
"endPoint": {
"lat": 55.2094,
"lon": 73.33994
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"srto-ural-gas-pipeline-i-ru": {
"id": "srto-ural-gas-pipeline-i-ru",
"name": "SRTO-Ural Gas Pipeline - I",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 16.2,
"lengthKm": 1986,
"inService": 1974,
"startPoint": {
"lat": 62.76384,
"lon": 64.2772
},
"endPoint": {
"lat": 56.849723,
"lon": 60.600586
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"statpipe-gas-pipeline-no": {
"id": "statpipe-gas-pipeline-no",
"name": "Statpipe Gas Pipeline",
"operator": "Petoro AS; Solveig Gas Norway [23.48%]; CapeOmega; Allianz SE; Infragas Norge AS; Equinor; Tallyman AS; ConocoPhillips; Ørsted AS; Engie SA; RWE AG",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "NO",
"transitCountries": [],
"capacityBcmYr": 18.9,
"lengthKm": 892,
"inService": 1985,
"startPoint": {
"lat": 60.560875,
"lon": 2.896863
},
"endPoint": {
"lat": 61.18583,
"lon": 1.845936
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"sur-de-texas-tuxpan-gas-pipeline-us": {
"id": "sur-de-texas-tuxpan-gas-pipeline-us",
"name": "Sur de Texas-Tuxpan Gas Pipeline",
"operator": "TC Energy [60.00%]; IEnova [40.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "MX",
"transitCountries": [],
"capacityBcmYr": 26.57,
"lengthKm": 770,
"inService": 2019,
"startPoint": {
"lat": 21.271997,
"lon": -97.465183
},
"endPoint": {
"lat": 22.307103,
"lon": -98.103785
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"tallgrass-interstate-gas-transmission-us": {
"id": "tallgrass-interstate-gas-transmission-us",
"name": "Tallgrass Interstate Gas Transmission",
"operator": "Tallgrass Energy [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 8.48,
"lengthKm": 7491.5,
"inService": 1927,
"startPoint": {
"lat": 38.473472,
"lon": -101.040896
},
"endPoint": {
"lat": 40.09216,
"lon": -102.482944
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"taquiperenda-sucre-potos-cochabamba-gas-pipeline-bo": {
"id": "taquiperenda-sucre-potos-cochabamba-gas-pipeline-bo",
"name": "Taquiperenda-Sucre-Potosí-Cochabamba Gas Pipeline",
"operator": "YPFB [100.00%]",
"commodityType": "gas",
"fromCountry": "BO",
"toCountry": "BO",
"transitCountries": [],
"capacityBcmYr": 0.22,
"lengthKm": 900.89,
"inService": 0,
"startPoint": {
"lat": -20.000123,
"lon": -63.895576
},
"endPoint": {
"lat": -19.535804,
"lon": -65.706819
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"tejas-gas-pipeline-us": {
"id": "tejas-gas-pipeline-us",
"name": "Tejas Gas Pipeline",
"operator": "Kinder Morgan [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 1.23,
"lengthKm": 5221,
"inService": 1953,
"startPoint": {
"lat": 26.89744,
"lon": -99.293676
},
"endPoint": {
"lat": 32.803121,
"lon": -95.442771
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"tennessee-gas-pipeline-us": {
"id": "tennessee-gas-pipeline-us",
"name": "Tennessee Gas Pipeline",
"operator": "Kinder Morgan [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 10.22,
"lengthKm": 18925.89,
"inService": 1943,
"startPoint": {
"lat": 32.555663,
"lon": -92.178086
},
"endPoint": {
"lat": 42.414198,
"lon": -77.458042
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"texas-eastern-transmission-tetco-gas-pipeline-us": {
"id": "texas-eastern-transmission-tetco-gas-pipeline-us",
"name": "Texas Eastern Transmission (TETCO) Gas Pipeline",
"operator": "Enbridge [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 119.47,
"lengthKm": 14202,
"inService": 1942,
"startPoint": {
"lat": 36.136185,
"lon": -86.406632
},
"endPoint": {
"lat": 38.229159,
"lon": -83.704513
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"texas-gas-transmission-pipeline-us": {
"id": "texas-gas-transmission-pipeline-us",
"name": "Texas Gas Transmission Pipeline",
"operator": "Boardwalk Pipeline Partners [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 62.34,
"lengthKm": 9615.83,
"inService": 1948,
"startPoint": {
"lat": 37.022027,
"lon": -88.326334
},
"endPoint": {
"lat": 38.844478,
"lon": -86.320491
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"texas-intrastate-system-gas-pipeline-us": {
"id": "texas-intrastate-system-gas-pipeline-us",
"name": "Texas Intrastate System Gas Pipeline",
"operator": "Enterprise Products Partners [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 74.89,
"lengthKm": 10895.26,
"inService": 1960,
"startPoint": {
"lat": 31.298221,
"lon": -103.120599
},
"endPoint": {
"lat": 33.66974,
"lon": -96.629386
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"tgi-pipeline-network-ballena-barrancabermeja-co": {
"id": "tgi-pipeline-network-ballena-barrancabermeja-co",
"name": "TGI Pipeline Network - Ballena-Barrancabermeja",
"operator": "TGI SAS E.S.P [100.00%]",
"commodityType": "gas",
"fromCountry": "CO",
"toCountry": "CO",
"transitCountries": [],
"capacityBcmYr": 2.66,
"lengthKm": 771,
"inService": 1996,
"startPoint": {
"lat": 11.695224,
"lon": -72.724988
},
"endPoint": {
"lat": 8.686579,
"lon": -73.670202
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"tgi-pipeline-network-centro-oriente-co": {
"id": "tgi-pipeline-network-centro-oriente-co",
"name": "TGI Pipeline Network - Centro-Oriente",
"operator": "TGI SAS E.S.P [100.00%]",
"commodityType": "gas",
"fromCountry": "CO",
"toCountry": "CO",
"transitCountries": [],
"capacityBcmYr": 4.46,
"lengthKm": 1120,
"inService": 1996,
"startPoint": {
"lat": 7.086065,
"lon": -73.862337
},
"endPoint": {
"lat": 4.278358,
"lon": -74.818664
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"tgi-pipeline-network-mariquita-cali-co": {
"id": "tgi-pipeline-network-mariquita-cali-co",
"name": "TGI Pipeline Network - Mariquita-Cali",
"operator": "TGI SAS E.S.P [100.00%]",
"commodityType": "gas",
"fromCountry": "CO",
"toCountry": "CO",
"transitCountries": [],
"capacityBcmYr": 1.72,
"lengthKm": 797,
"inService": 1997,
"startPoint": {
"lat": 5.220846,
"lon": -74.870404
},
"endPoint": {
"lat": 4.439967,
"lon": -75.782595
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"torzhok-minsk-ivatsevichy-gas-pipeline-i-ru": {
"id": "torzhok-minsk-ivatsevichy-gas-pipeline-i-ru",
"name": "Torzhok-Minsk-Ivatsevichy Gas Pipeline - I",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "BY",
"transitCountries": [],
"capacityBcmYr": 40,
"lengthKm": 851,
"inService": 1974,
"startPoint": {
"lat": 57.0393,
"lon": 34.974
},
"endPoint": {
"lat": 52.708,
"lon": 25.335
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"torzhok-smolensk-mazyr-dolyna-gas-pipeline-ru": {
"id": "torzhok-smolensk-mazyr-dolyna-gas-pipeline-ru",
"name": "Torzhok-Smolensk-Mazyr-Dolyna Gas Pipeline",
"operator": "Gas Transmission System Operator of Ukraine; Gazprom PJSC",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "UA",
"transitCountries": [
"BY"
],
"capacityBcmYr": 22,
"lengthKm": 1300,
"inService": 1996,
"startPoint": {
"lat": 56.95741,
"lon": 35.03115
},
"endPoint": {
"lat": 48.78983,
"lon": 24.01413
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"trans-adriatic-gas-pipeline-tr": {
"id": "trans-adriatic-gas-pipeline-tr",
"name": "Trans-Adriatic Gas Pipeline",
"operator": "Trans Adriatic Pipeline AG [100.00%]",
"commodityType": "gas",
"fromCountry": "TR",
"toCountry": "IT",
"transitCountries": [
"GR",
"AL"
],
"capacityBcmYr": 10,
"lengthKm": 878,
"inService": 2020,
"startPoint": {
"lat": 40.50733,
"lon": 20.199479
},
"endPoint": {
"lat": 41.016503,
"lon": 24.696373
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"trans-anatolian-gas-pipeline-main-line-phase-0-and-1-ge": {
"id": "trans-anatolian-gas-pipeline-main-line-phase-0-and-1-ge",
"name": "Trans-Anatolian Gas Pipeline - Main Line (Phase 0 and 1)",
"operator": "Southern Gas Corridor CJSC [51.00%]; BOTAŞ [30.00%]; BP plc [12.00%]; SOCAR [7.00%]",
"commodityType": "gas",
"fromCountry": "GE",
"toCountry": "TR",
"transitCountries": [],
"capacityBcmYr": 16,
"lengthKm": 1811,
"inService": 2018,
"startPoint": {
"lat": 40.340371,
"lon": 42.495929
},
"endPoint": {
"lat": 39.084214,
"lon": 35.946544
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"trans-nigeria-gas-pipeline-phase-1-ajaokuta-kaduna-kano-pipe-ng": {
"id": "trans-nigeria-gas-pipeline-phase-1-ajaokuta-kaduna-kano-pipe-ng",
"name": "Trans Nigeria Gas Pipeline - Phase 1: AjaokutaKadunaKano Pipeline (AKK Pipeline)",
"operator": "Nigerian National Petroleum Corp [100.00%]",
"commodityType": "gas",
"fromCountry": "NG",
"toCountry": "NG",
"transitCountries": [],
"capacityBcmYr": 35.77,
"lengthKm": 1300,
"inService": 2025,
"startPoint": {
"lat": 9.085473,
"lon": 7.401924
},
"endPoint": {
"lat": 11.989088,
"lon": 8.534712
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"transcontinental-gas-pipeline-system-network-info-main-line-us": {
"id": "transcontinental-gas-pipeline-system-network-info-main-line-us",
"name": "Transcontinental Gas Pipeline - SYSTEM/NETWORK INFO (Main Line)",
"operator": "Transco [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 171.7,
"lengthKm": 10200,
"inService": 1950,
"startPoint": {
"lat": 40.229115,
"lon": -74.794428
},
"endPoint": {
"lat": 40.441177,
"lon": -74.315548
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"transwestern-gas-pipeline-us": {
"id": "transwestern-gas-pipeline-us",
"name": "Transwestern Gas Pipeline",
"operator": "ETP Legacy [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 28.97,
"lengthKm": 4345,
"inService": 1960,
"startPoint": {
"lat": 34.955334,
"lon": -114.538279
},
"endPoint": {
"lat": 35.537261,
"lon": -108.642074
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"trunkline-gas-pipeline-us": {
"id": "trunkline-gas-pipeline-us",
"name": "Trunkline Gas Pipeline",
"operator": "ETP Legacy [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 15.33,
"lengthKm": 3932,
"inService": 1947,
"startPoint": {
"lat": 28.372629,
"lon": -97.517969
},
"endPoint": {
"lat": 31.599724,
"lon": -92.432055
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"turkmenistan-afghanistan-pakistan-india-gas-pipeline-tm": {
"id": "turkmenistan-afghanistan-pakistan-india-gas-pipeline-tm",
"name": "Turkmenistan-Afghanistan-Pakistan-India Gas Pipeline",
"operator": "Turkmengaz [85.00%]; Afghan Gas Enterprise [5.00%]; Interstate Gas Systems [5.00%]; GAIL (India) Ltd [5.00%]",
"commodityType": "gas",
"fromCountry": "TM",
"toCountry": "IN",
"transitCountries": [
"AF",
"PK"
],
"capacityBcmYr": 33,
"lengthKm": 1814,
"inService": 0,
"startPoint": {
"lat": 37.320475,
"lon": 62.326071
},
"endPoint": {
"lat": 31.716949,
"lon": 65.715115
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"turkstream-gas-pipeline-1-ru": {
"id": "turkstream-gas-pipeline-1-ru",
"name": "TurkStream Gas Pipeline - 1",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "TR",
"transitCountries": [],
"capacityBcmYr": 15.75,
"lengthKm": 930,
"inService": 2020,
"startPoint": {
"lat": 41.480007,
"lon": 27.328246
},
"endPoint": {
"lat": 41.66008,
"lon": 28.089251
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"turkstream-gas-pipeline-2-ru": {
"id": "turkstream-gas-pipeline-2-ru",
"name": "TurkStream Gas Pipeline - 2",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "TR",
"transitCountries": [],
"capacityBcmYr": 15.75,
"lengthKm": 930,
"inService": 2020,
"startPoint": {
"lat": 44.657833,
"lon": 37.488667
},
"endPoint": {
"lat": 42.06039,
"lon": 27.028453
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"ukhta-torzhok-yamal-2-gas-pipeline-ru": {
"id": "ukhta-torzhok-yamal-2-gas-pipeline-ru",
"name": "Ukhta-Torzhok (Yamal) 2 Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 45,
"lengthKm": 970,
"inService": 2018,
"startPoint": {
"lat": 63.671248,
"lon": 53.723934
},
"endPoint": {
"lat": 58.763426,
"lon": 40.22122
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"ukhta-torzhok-yamal-gas-pipeline-ru": {
"id": "ukhta-torzhok-yamal-gas-pipeline-ru",
"name": "Ukhta-Torzhok (Yamal) Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 45,
"lengthKm": 970,
"inService": 2012,
"startPoint": {
"lat": 62.901527,
"lon": 52.033842
},
"endPoint": {
"lat": 58.760324,
"lon": 40.222181
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"urengoy-center-gas-pipeline-i-ru": {
"id": "urengoy-center-gas-pipeline-i-ru",
"name": "Urengoy-Center Gas Pipeline - I",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 32.49,
"lengthKm": 3211,
"inService": 1984,
"startPoint": {
"lat": 66.48333,
"lon": 76.51694
},
"endPoint": {
"lat": 53.242222,
"lon": 40.446944
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"urengoy-chelyabinsk-gas-pipeline-ru": {
"id": "urengoy-chelyabinsk-gas-pipeline-ru",
"name": "Urengoy-Chelyabinsk Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 58,
"lengthKm": 1780,
"inService": 1979,
"startPoint": {
"lat": 66.03047,
"lon": 76.82846
},
"endPoint": {
"lat": 55.37083,
"lon": 61.28747
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"urengoy-novopskov-gas-pipeline-ru": {
"id": "urengoy-novopskov-gas-pipeline-ru",
"name": "Urengoy-Novopskov Gas Pipeline",
"operator": "Gazprom PJSC; Gas Transmission System Operator of Ukraine",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "UA",
"transitCountries": [],
"capacityBcmYr": 31,
"lengthKm": 3609,
"inService": 1982,
"startPoint": {
"lat": 66.071385,
"lon": 76.797931
},
"endPoint": {
"lat": 49.526058,
"lon": 39.151132
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"urengoy-petrovsk-gas-pipeline-ru": {
"id": "urengoy-petrovsk-gas-pipeline-ru",
"name": "Urengoy-Petrovsk Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 32,
"lengthKm": 2733,
"inService": 1983,
"startPoint": {
"lat": 66.071385,
"lon": 76.797931
},
"endPoint": {
"lat": 52.25748,
"lon": 45.42233
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"urengoy-pomary-uzhgorod-gas-pipeline-ru": {
"id": "urengoy-pomary-uzhgorod-gas-pipeline-ru",
"name": "Urengoy-Pomary-Uzhgorod Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]; Gas Transmission System Operator of Ukraine",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "UA",
"transitCountries": [],
"capacityBcmYr": 32,
"lengthKm": 4451,
"inService": 1983,
"startPoint": {
"lat": 48.85557,
"lon": 24.045958
},
"endPoint": {
"lat": 61.785336,
"lon": 64.561147
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"victorian-transmission-system-au": {
"id": "victorian-transmission-system-au",
"name": "Victorian Transmission System",
"operator": "APA Group [100.00%]",
"commodityType": "gas",
"fromCountry": "AU",
"toCountry": "AU",
"transitCountries": [],
"capacityBcmYr": 10.34,
"lengthKm": 2035,
"inService": 1969,
"startPoint": {
"lat": -35.66077,
"lon": 147.01716
},
"endPoint": {
"lat": -37.594066,
"lon": 144.183257
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"viking-gas-transmission-ca": {
"id": "viking-gas-transmission-ca",
"name": "Viking Gas Transmission",
"operator": "ONEOK Inc [100.00%]",
"commodityType": "gas",
"fromCountry": "CA",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 5.11,
"lengthKm": 1079.87,
"inService": 1996,
"startPoint": {
"lat": 49.005584,
"lon": -97.208086
},
"endPoint": {
"lat": 44.662991,
"lon": -90.192536
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"wafa-mellitah-gas-pipeline-pipeline-1-ly": {
"id": "wafa-mellitah-gas-pipeline-pipeline-1-ly",
"name": "Wafa-Mellitah Gas Pipeline - Pipeline 1",
"operator": "Libyan National Oil Corp [50.00%]; Eni SpA [50.00%]",
"commodityType": "gas",
"fromCountry": "LY",
"toCountry": "LY",
"transitCountries": [],
"capacityBcmYr": 13,
"lengthKm": 5246,
"inService": 2004,
"startPoint": {
"lat": 28.8885,
"lon": 10.0235
},
"endPoint": {
"lat": 32.8538,
"lon": 12.2375
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"west-east-gas-pipeline-1-cn": {
"id": "west-east-gas-pipeline-1-cn",
"name": "West-East Gas Pipeline 1",
"operator": "--",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 17,
"lengthKm": 4000,
"inService": 2005,
"startPoint": {
"lat": 41.475422,
"lon": 84.2161
},
"endPoint": {
"lat": 31.25252,
"lon": 121.139422
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"west-east-gas-pipeline-2-cn": {
"id": "west-east-gas-pipeline-2-cn",
"name": "West-East Gas Pipeline 2",
"operator": "China Petroleum West Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 30,
"lengthKm": 9102,
"inService": 2012,
"startPoint": {
"lat": 44.211743,
"lon": 80.389959
},
"endPoint": {
"lat": 43.162187,
"lon": 88.847569
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"west-east-gas-pipeline-2-nanchang-shanghai-branch-cn": {
"id": "west-east-gas-pipeline-2-nanchang-shanghai-branch-cn",
"name": "West-East Gas Pipeline 2 - Nanchang-Shanghai Branch",
"operator": "West to East Gas Transmission Branch of National Petroleum Pipeline Network Group Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 10,
"lengthKm": 822.7,
"inService": 2011,
"startPoint": {
"lat": 28.514698,
"lon": 115.500411
},
"endPoint": {
"lat": 31.241703,
"lon": 121.144346
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"west-east-gas-pipeline-3-cn": {
"id": "west-east-gas-pipeline-3-cn",
"name": "West-East Gas Pipeline 3",
"operator": "--",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 30,
"lengthKm": 7378,
"inService": 0,
"startPoint": {
"lat": 44.211373,
"lon": 80.409797
},
"endPoint": {
"lat": 32.053556,
"lon": 117.197791
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"west-east-gas-pipeline-3-east-section-ji-an-fuzhou-cn": {
"id": "west-east-gas-pipeline-3-east-section-ji-an-fuzhou-cn",
"name": "West-East Gas Pipeline 3 - East Section (Ji'anFuzhou)",
"operator": "National Pipe Network Group United Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 30,
"lengthKm": 817,
"inService": 2016,
"startPoint": {
"lat": 27.106776,
"lon": 114.970112
},
"endPoint": {
"lat": 26.068932,
"lon": 119.436656
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"west-east-gas-pipeline-3-middle-section-zhongwei-ji-an-cn": {
"id": "west-east-gas-pipeline-3-middle-section-zhongwei-ji-an-cn",
"name": "West-East Gas Pipeline 3 - Middle Section (ZhongweiJi'an)",
"operator": "National Pipe Network Group United Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 25,
"lengthKm": 2090,
"inService": 2025,
"startPoint": {
"lat": 37.459851,
"lon": 105.147203
},
"endPoint": {
"lat": 27.106776,
"lon": 114.970112
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"west-east-gas-pipeline-3-west-section-khorgos-zhongwei-cn": {
"id": "west-east-gas-pipeline-3-west-section-khorgos-zhongwei-cn",
"name": "West-East Gas Pipeline 3 - West Section (KhorgosZhongwei)",
"operator": "National Pipe Network Group United Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 30,
"lengthKm": 2445,
"inService": 2014,
"startPoint": {
"lat": 44.211743,
"lon": 80.389959
},
"endPoint": {
"lat": 37.459851,
"lon": 105.147203
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"west-east-gas-pipeline-4-updated-route-cn": {
"id": "west-east-gas-pipeline-4-updated-route-cn",
"name": "West-East Gas Pipeline 4 - Updated route",
"operator": "National Petroleum and Natural Gas Pipeline Network Group Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 15,
"lengthKm": 1745,
"inService": 2025,
"startPoint": {
"lat": 43.970352,
"lon": 81.475926
},
"endPoint": {
"lat": 37.459851,
"lon": 105.147203
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"whistler-pipeline-us": {
"id": "whistler-pipeline-us",
"name": "Whistler Pipeline",
"operator": "Whistler Pipeline LLC [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 20.44,
"lengthKm": 764,
"inService": 2021,
"startPoint": {
"lat": 27.745232,
"lon": -97.812123
},
"endPoint": {
"lat": 27.752643,
"lon": -97.857289
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"williston-basin-gas-pipeline-us": {
"id": "williston-basin-gas-pipeline-us",
"name": "Williston Basin Gas Pipeline",
"operator": "WBI Energy [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 21.46,
"lengthKm": 5413.83,
"inService": 1920,
"startPoint": {
"lat": 46.309888,
"lon": -106.67776
},
"endPoint": {
"lat": 45.894163,
"lon": -106.641564
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"wyoming-interstate-gas-pipeline-us": {
"id": "wyoming-interstate-gas-pipeline-us",
"name": "Wyoming Interstate Gas Pipeline",
"operator": "Kinder Morgan [100.00%]",
"commodityType": "gas",
"fromCountry": "US",
"toCountry": "US",
"transitCountries": [],
"capacityBcmYr": 39.86,
"lengthKm": 1287.48,
"inService": 1997,
"startPoint": {
"lat": 41.669933,
"lon": -108.035553
},
"endPoint": {
"lat": 41.761401,
"lon": -107.31689
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"xinjiang-coal-to-gas-pipeline-cn": {
"id": "xinjiang-coal-to-gas-pipeline-cn",
"name": "Xinjiang Coal-to-Gas Pipeline",
"operator": "State Pipe Network Group Xinjiang Coal To Natural Gas Export Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 30,
"lengthKm": 4159,
"inService": 2022,
"startPoint": {
"lat": 44.024475,
"lon": 90.149571
},
"endPoint": {
"lat": 24.821935,
"lon": 113.667615
},
"evidence": {
"physicalState": "unknown",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"xinjiang-gas-pipeline-network-cn": {
"id": "xinjiang-gas-pipeline-network-cn",
"name": "Xinjiang Gas Pipeline Network",
"operator": "PetroChina Xinjiang Oilfield Oil and Gas Storage and Transportation Branch [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 12,
"lengthKm": 760,
"inService": 2008,
"startPoint": {
"lat": 45.430602,
"lon": 86.866238
},
"endPoint": {
"lat": 44.975883,
"lon": 88.360835
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"yacheng-hong-kong-gas-pipeline-cn": {
"id": "yacheng-hong-kong-gas-pipeline-cn",
"name": "Yacheng-Hong Kong Gas Pipeline",
"operator": "CNOOC Ltd; Atlantic Richfield Co; Kuwait Petroleum Corp",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [
"HK"
],
"capacityBcmYr": 3.4,
"lengthKm": 778,
"inService": 1996,
"startPoint": {
"lat": 18.381293,
"lon": 109.254334
},
"endPoint": {
"lat": 18.01637,
"lon": 109.398686
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"yamburg-volga-region-gas-pipeline-ru": {
"id": "yamburg-volga-region-gas-pipeline-ru",
"name": "Yamburg-Volga Region Gas Pipeline",
"operator": "Gazprom PJSC [100.00%]",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "RU",
"transitCountries": [],
"capacityBcmYr": 32.49,
"lengthKm": 2755,
"inService": 1990,
"startPoint": {
"lat": 67.85743,
"lon": 75.46492
},
"endPoint": {
"lat": 51.553185,
"lon": 46.018363
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"yelets-kremenchuk-kryvyi-rih-gas-pipeline-ru": {
"id": "yelets-kremenchuk-kryvyi-rih-gas-pipeline-ru",
"name": "Yelets-KremenchukKryvyi Rih Gas Pipeline",
"operator": "Gazprom PJSC; Gas Transmission System Operator of Ukraine",
"commodityType": "gas",
"fromCountry": "RU",
"toCountry": "UA",
"transitCountries": [],
"capacityBcmYr": 34.68,
"lengthKm": 771,
"inService": 1986,
"startPoint": {
"lat": 52.618026,
"lon": 38.504582
},
"endPoint": {
"lat": 47.913069,
"lon": 33.388533
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"yu-ji-pipeline-network-yulin-jinan-gas-pipeline-cn": {
"id": "yu-ji-pipeline-network-yulin-jinan-gas-pipeline-cn",
"name": "Yu-ji Pipeline Network - Yulin-Jinan Gas Pipeline",
"operator": "Sinopec Yu Ji Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 3,
"lengthKm": 911,
"inService": 2010,
"startPoint": {
"lat": 38.276825,
"lon": 109.543413
},
"endPoint": {
"lat": 36.936466,
"lon": 116.82381
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"zeepipe-gas-pipeline-zeepipe-i-no": {
"id": "zeepipe-gas-pipeline-zeepipe-i-no",
"name": "Zeepipe Gas Pipeline - Zeepipe I",
"operator": "Gasled [100.00%]",
"commodityType": "gas",
"fromCountry": "NO",
"toCountry": "BE",
"transitCountries": [],
"capacityBcmYr": 14.97,
"lengthKm": 844,
"inService": 1993,
"startPoint": {
"lat": 58.36433,
"lon": 1.914243
},
"endPoint": {
"lat": 58.190334,
"lon": 2.462768
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"zhongwei-guiyang-connecting-gas-pipeline-trunk-line-cn": {
"id": "zhongwei-guiyang-connecting-gas-pipeline-trunk-line-cn",
"name": "Zhongwei-Guiyang Connecting Gas Pipeline - Trunk line",
"operator": "National Pipe Network Group Southwest Pipeline Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 15,
"lengthKm": 1608,
"inService": 2012,
"startPoint": {
"lat": 37.459796,
"lon": 105.147714
},
"endPoint": {
"lat": 26.311174,
"lon": 106.545545
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
},
"zhongxian-wuhan-gas-pipeline-cn": {
"id": "zhongxian-wuhan-gas-pipeline-cn",
"name": "Zhongxian-Wuhan Gas Pipeline",
"operator": "National Petroleum and Natural Gas Pipeline Network Group Co Ltd [100.00%]",
"commodityType": "gas",
"fromCountry": "CN",
"toCountry": "CN",
"transitCountries": [],
"capacityBcmYr": 3,
"lengthKm": 1375,
"inService": 2004,
"startPoint": {
"lat": 30.355944,
"lon": 107.897793
},
"endPoint": {
"lat": 32.052539,
"lon": 112.167706
},
"evidence": {
"physicalState": "flowing",
"physicalStateSource": "gem",
"operatorStatement": null,
"commercialState": "unknown",
"sanctionRefs": [],
"lastEvidenceUpdate": "2026-04-25T00:00:00Z",
"classifierVersion": "gem-import-v1",
"classifierConfidence": 0.4
}
}
}
}