Extract and process energy data from BSEE (Gulf of Mexico) and SODIR
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill bsee-sodir-extraction --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Bsee Sodir Extraction?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-bsee-sodir-extraction)More formats (shields.io, HTML) on the badges page.
---
name: bsee-sodir-extraction
version: 1.0.0
description: Extract and process energy data from BSEE (Gulf of Mexico) and SODIR
(Norway) regulatory databases
type: reference
author: workspace-hub
category: data-analysis
tags:
- bsee
- sodir
- energy-data
- oil-gas
- offshore
- web-scraping
- api
platforms:
- python
capabilities: []
requires: []
scripts_exempt: true
---
# Bsee Sodir Extraction
## When to Use This Skill
Use BSEE/SODIR data extraction when you need:
- **Production data** - Oil, gas, water production by field/well
- **Well information** - Directional surveys, completions, drilling data
- **Field data** - Reserves, operators, development status
- **HSE data** - Safety incidents, environmental compliance
- **Economic analysis** - NPV calculations using regulatory data
- **Regulatory compliance** - Track permits, violations, inspections
**Data sources covered:**
- **BSEE (US Gulf of Mexico)**: Production, wells, platforms, safety
- **SODIR (Norway)**: Fields, production, wells, discoveries
- **NPD FactPages**: Norwegian petroleum data (legacy)
## Complete Pipeline Example
```python
"""
Complete BSEE/SODIR data extraction and analysis pipeline.
"""
import pandas as pd
from pathlib import Path
from datetime import datetime
import plotly.graph_objects as go
def run_extraction_pipeline(
output_dir: Path = Path("data"),
report_dir: Path = Path("reports")
) -> dict:
"""
Run complete data extraction and analysis pipeline.
Returns:
Dictionary with extraction summary
"""
output_dir.mkdir(parents=True, exist_ok=True)
report_dir.mkdir(parents=True, exist_ok=True)
results = {
"extraction_date": datetime.now().isoformat(),
*See sub-skills for full details.*
## Resources
- **BSEE Data Center**: https://www.data.bsee.gov/
- **SODIR FactPages**: https://factpages.sodir.no/
- **BSEE API Documentation**: https://www.data.bsee.gov/api-documentation
- **NPD (legacy)**: https://www.npd.no/en/facts/
---
**Use this skill for all energy regulatory data extraction in worldenergydata!**
## Sub-Skills
- [1. BSEE Data Extraction](1-bsee-data-extraction/SKILL.md)
- [2. SODIR/NPD Data Extraction (Norway)](2-sodirnpd-data-extraction-norway/SKILL.md)
- [3. Combined Analysis](3-combined-analysis/SKILL.md)
- [4. NPV Analysis with Regulatory Data](4-npv-analysis-with-regulatory-data/SKILL.md)
- [1. Rate Limiting (+2)](1-rate-limiting/SKILL.md)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!