Datasets:
SH
commited on
Commit
·
d001ce8
1
Parent(s):
a9ce87d
#0 Clarify instance example
Browse files
README.md
CHANGED
@@ -4337,10 +4337,11 @@ An instance in the dataset consists of:
|
|
4337 |
- Taxonomic information (kingdom, phylum, class, order, family, genus, species)
|
4338 |
- Geographic location (latitude and longitude)
|
4339 |
|
4340 |
-
|
4341 |
```json
|
4342 |
{
|
4343 |
"image": "path/to/image.jpg",
|
|
|
4344 |
"species": "Rosa canina",
|
4345 |
"genus": "Rosa",
|
4346 |
"family": "Rosaceae",
|
@@ -4348,8 +4349,8 @@ Example instance:
|
|
4348 |
"class": "Magnoliopsida",
|
4349 |
"phylum": "Tracheophyta",
|
4350 |
"kingdom": "Plantae",
|
4351 |
-
"decimalLatitude":
|
4352 |
-
"decimalLongitude": -
|
4353 |
}
|
4354 |
```
|
4355 |
|
|
|
4337 |
- Taxonomic information (kingdom, phylum, class, order, family, genus, species)
|
4338 |
- Geographic location (latitude and longitude)
|
4339 |
|
4340 |
+
For example:
|
4341 |
```json
|
4342 |
{
|
4343 |
"image": "path/to/image.jpg",
|
4344 |
+
"gbifID": "3355189127",
|
4345 |
"species": "Rosa canina",
|
4346 |
"genus": "Rosa",
|
4347 |
"family": "Rosaceae",
|
|
|
4349 |
"class": "Magnoliopsida",
|
4350 |
"phylum": "Tracheophyta",
|
4351 |
"kingdom": "Plantae",
|
4352 |
+
"decimalLatitude": 41.41389465332031,
|
4353 |
+
"decimalLongitude": -74.32788848876953,
|
4354 |
}
|
4355 |
```
|
4356 |
|