add data
Browse files- .gitattributes +3 -0
- .gitignore +1 -0
- README.md +97 -3
- data/v10/forcis-cpr-north-11072024.csv +3 -0
- data/v10/forcis-cpr-south-11072024.csv +3 -0
- data/v10/forcis-net-11072024.csv +3 -0
- data/v10/forcis-pump-11072024.csv +3 -0
- data/v10/forcis-trap-11072024.csv +3 -0
- data/v10/forcis_data_template.xlsx +3 -0
- data/v10/forcis_taxonomy_levels.xlsx +3 -0
- data/v10/iho_oceans_boundaries.rds +3 -0
.gitattributes
CHANGED
@@ -57,3 +57,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
57 |
# Video files - compressed
|
58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
57 |
# Video files - compressed
|
58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
60 |
+
*.csv filter=lfs diff=lfs merge=lfs -text
|
61 |
+
*.xlsx filter=lfs diff=lfs merge=lfs -text
|
62 |
+
*.rds filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
.venv/
|
README.md
CHANGED
@@ -1,3 +1,97 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
tags:
|
5 |
+
- climate
|
6 |
+
- oceanography
|
7 |
+
- marine-biology
|
8 |
+
- micropaleontology
|
9 |
+
- foraminifera
|
10 |
+
- plankton
|
11 |
+
- biodiversity
|
12 |
+
license: gpl-2.0
|
13 |
+
source_datasets:
|
14 |
+
- https://zenodo.org/records/12724286
|
15 |
+
pretty_name: FORCIS / Processed Data
|
16 |
+
configs:
|
17 |
+
- config_name: cpr_north
|
18 |
+
data_files: "data/v10/forcis-cpr-north-11072024.csv"
|
19 |
+
default: TRUE
|
20 |
+
- config_name: cpr_south
|
21 |
+
data_files: "data/v10/forcis-cpr-south-11072024.csv"
|
22 |
+
- config_name: net
|
23 |
+
data_files: "data/v10/forcis-net-11072024.csv"
|
24 |
+
- config_name: pump
|
25 |
+
data_files: "data/v10/forcis-pump-11072024.csv"
|
26 |
+
- config_name: trap
|
27 |
+
data_files: "data/v10/forcis-trap-11072024.csv"
|
28 |
+
---
|
29 |
+
|
30 |
+
# Dataset Card for Processed FORCIS Data
|
31 |
+
|
32 |
+
**Dataset Name:** Processed FORCIS Data
|
33 |
+
|
34 |
+
**Source:** [FRBCesab/forcis](https://github.com/FRBCesab/forcis) (originally from Zenodo: [https://zenodo.org/records/12724286](https://zenodo.org/records/12724286))
|
35 |
+
|
36 |
+
**Description:**
|
37 |
+
|
38 |
+
This dataset is a processed version of the FORCIS data, obtained from Zenodo. The original data uses a custom delimiter (;) and may contain leading/trailing whitespace and special characters. This processed version addresses these issues and provides a clean, comma-separated values (CSV) format for easier use.
|
39 |
+
|
40 |
+
**Processing Steps:**
|
41 |
+
|
42 |
+
The processing steps involved:
|
43 |
+
|
44 |
+
1. **Data Acquisition:** Downloaded the FORCIS data from Zenodo.
|
45 |
+
2. **Cleaning:**
|
46 |
+
- Removed leading/trailing whitespace from each line.
|
47 |
+
- Escaped special characters for safekeeping.
|
48 |
+
3. **Formatting:**
|
49 |
+
- Converted the data to comma-separated values (CSV) format.
|
50 |
+
4. **Missing Value Correction:**
|
51 |
+
|
52 |
+
- Added a "data_type" column where missing in some CSVs
|
53 |
+
- Validated data consistency across all columns
|
54 |
+
|
55 |
+
**Data Format:**
|
56 |
+
|
57 |
+
- Format: Comma-separated values (CSV)
|
58 |
+
- Encoding: UTF-8
|
59 |
+
- Line endings: LF (Unix-style)
|
60 |
+
- First row: Header with column names
|
61 |
+
- Missing values: Represented as "NA"
|
62 |
+
|
63 |
+
**License:**
|
64 |
+
|
65 |
+
This processed dataset is available under GPL-2.0 license. For the original FORCIS data license terms, please refer to the Zenodo repository at [doi.org/10.5281/zenodo.12724286](https://doi.org/10.5281/zenodo.12724286).
|
66 |
+
|
67 |
+
**Usage Notes:**
|
68 |
+
|
69 |
+
- This dataset is intended for researchers and data scientists interested in working with the FORCIS data
|
70 |
+
- Familiarity with the original FORCIS data structure is recommended for optimal use
|
71 |
+
- Each CSV contains consistent column headers and data types
|
72 |
+
- Data types include:
|
73 |
+
- Numeric: Float and Integer values
|
74 |
+
- Categorical: String values
|
75 |
+
- Temporal: Date/Time values
|
76 |
+
- Missing values (NA) should be handled appropriately in analysis
|
77 |
+
- Consider memory requirements when loading the complete merged dataset
|
78 |
+
|
79 |
+
**Citation:**
|
80 |
+
|
81 |
+
To acknowledge the use of this processed FORCIS data, please cite:
|
82 |
+
|
83 |
+
1. Original Dataset (v10): <https://doi.org/10.5281/zenodo.12724286>
|
84 |
+
|
85 |
+
2. Processed Dataset:
|
86 |
+
|
87 |
+
```bibtex
|
88 |
+
@dataset{processed_forcis_2024,
|
89 |
+
title={Processed FORCIS Data},
|
90 |
+
author={Hammami, Khalil},
|
91 |
+
version={1.0},
|
92 |
+
note={Based on FORCIS v10},
|
93 |
+
year={2024},
|
94 |
+
publisher={Hugging Face},
|
95 |
+
url={<https://huggingface.co/datasets/khammami/forcis}>
|
96 |
+
}
|
97 |
+
```
|
data/v10/forcis-cpr-north-11072024.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4e377fb8af6694705db9229cf4b775a02246bf2a83d34a39b66cae9e2febf778
|
3 |
+
size 64601085
|
data/v10/forcis-cpr-south-11072024.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7a67fbaad7a23c96dcbec678364fcdc7c06a78020bb31bee06930a4270302d94
|
3 |
+
size 63166951
|
data/v10/forcis-net-11072024.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:72ade90fb9c44405962224743c5431d5f6d5267807be9e91f11db43fe7d54df0
|
3 |
+
size 27505151
|
data/v10/forcis-pump-11072024.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:43bd131377e29eabb58e6a0c2516939571fdf2e98c53a56fe8af184074b7de28
|
3 |
+
size 538068
|
data/v10/forcis-trap-11072024.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:048aa73f6885ac172d587d267036f1b458631ef1a36cb11bf95f88e1905a3374
|
3 |
+
size 13165624
|
data/v10/forcis_data_template.xlsx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bde499bb91f87aa82e71b89711e34988117c636c4e35ec3f6ad2e1ce452eee04
|
3 |
+
size 357853
|
data/v10/forcis_taxonomy_levels.xlsx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e1c01cf47b3f82eeba242c55910ea1c4cffad4c25f75709c6c338b396d179b7c
|
3 |
+
size 24998
|
data/v10/iho_oceans_boundaries.rds
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7fd2a7f38c0b656af1a6ac64e002066385e076859f025312dc914d7aa640eb62
|
3 |
+
size 9198965
|