Bunker fuel prices
Tracking bunker fuel prices over time, to support energy transition decisions.
What this is, and what is next
This is a working skeleton, not a finished dashboard. The plumbing is done — uploading a spreadsheet stores it, and every upload is kept as a new dated snapshot rather than replacing the last one. The interesting parts are deliberately left empty for you to write.
Next steps
- Inspect the real spreadsheet and decide the columns.
- Implement
app/parsing.py. - Confirm the storage schema fits the real data.
- Implement
app/metrics.py. - Build the first chart, below.
The full ordered list lives in README.md.
Upload a spreadsheet
Accepts .xlsx, .xlsm and
.csv. Each upload is stored as a new snapshot; nothing
is overwritten. Re-uploading an identical file is detected and
skipped.
Ingestion history
| Snapshot | Source | Snapshot date | File | Rows |
|---|---|---|---|---|
| Loading… | ||||
Price trend
Nothing to plot yet. Implement app/parsing.py so
price_points gets populated, then build the chart here
— README step 6.