Ali4333 commited on
Commit
8719f01
·
verified ·
1 Parent(s): 25de3bb

Card: single canonical JSONL + CSV derivation snippet

Browse files
Files changed (1) hide show
  1. README.md +11 -4
README.md CHANGED
@@ -8,7 +8,7 @@ tags:
8
  - time-series
9
  - environment
10
  size_categories:
11
- - 1K<n<10K
12
  ---
13
 
14
  # FishRadar Global Bite Index — daily, by country
@@ -23,10 +23,17 @@ barometric pressure, wind and waves into a single per-spot score
23
  computations — no third-party data is redistributed.
24
 
25
  - **Temporal coverage:** 2026-06-19 → 2026-08-20 (63 days; updated periodically from the nightly run)
26
- - **Files:** `bite-index-daily.jsonl` (one row per day: `day`, `global`, `n` spots scored,
27
- `countries{ISO2: mean}`) · `bite-index-by-country.csv` (long format:
28
- `day,country,bite_index,spots_scored`; `GLOBAL` rows carry the spot count)
29
  - **License:** CC-BY-4.0 — cite "FishRadar (fishradar.ai)"
30
 
 
 
 
 
 
 
 
 
31
  Sibling datasets: [fishing-regulations](https://huggingface.co/datasets/Ali4333/fishing-regulations) ·
32
  [fish-species-catalog](https://huggingface.co/datasets/Ali4333/fish-species-catalog)
 
8
  - time-series
9
  - environment
10
  size_categories:
11
+ - n<1K
12
  ---
13
 
14
  # FishRadar Global Bite Index — daily, by country
 
23
  computations — no third-party data is redistributed.
24
 
25
  - **Temporal coverage:** 2026-06-19 → 2026-08-20 (63 days; updated periodically from the nightly run)
26
+ - **File:** `bite-index-daily.jsonl` one row per day: `day`, `global` (mean 0–100),
27
+ `n` (spots scored), `countries` (`{ISO2: mean}`)
 
28
  - **License:** CC-BY-4.0 — cite "FishRadar (fishradar.ai)"
29
 
30
+ Long-format CSV (`day,country,bite_index,spots_scored`) in three lines:
31
+
32
+ ```js
33
+ const rows = require('fs').readFileSync('bite-index-daily.jsonl','utf8').trim().split('\n').map(JSON.parse);
34
+ const out = ['day,country,bite_index,spots_scored'];
35
+ for (const r of rows) { out.push(`${r.day},GLOBAL,${r.global},${r.n}`); for (const [c,v] of Object.entries(r.countries)) out.push(`${r.day},${c},${v},`); }
36
+ ```
37
+
38
  Sibling datasets: [fishing-regulations](https://huggingface.co/datasets/Ali4333/fishing-regulations) ·
39
  [fish-species-catalog](https://huggingface.co/datasets/Ali4333/fish-species-catalog)