Added selected sites.
This commit is contained in:
parent
22d493bc2d
commit
c02289532f
2 changed files with 173 additions and 1 deletions
42
.gitignore
vendored
42
.gitignore
vendored
|
|
@ -1,3 +1,43 @@
|
|||
# Project data
|
||||
data/*
|
||||
|
||||
# Environment
|
||||
.env
|
||||
venv
|
||||
.venv
|
||||
venv/
|
||||
env/
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
|
||||
# Testing & coverage
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
htmlcov/
|
||||
.tox/
|
||||
|
||||
# Linting & type checking
|
||||
.ruff_cache/
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
dmypy.json
|
||||
|
||||
# Distribution / packaging
|
||||
build/
|
||||
dist/
|
||||
*.egg-info/
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
|
|
|||
132
data/sites.geojson
Normal file
132
data/sites.geojson
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
{
|
||||
"type": "FeatureCollection",
|
||||
"features": [
|
||||
{
|
||||
"type": "Feature",
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [
|
||||
25.0743,
|
||||
35.3045
|
||||
]
|
||||
},
|
||||
"properties": {
|
||||
"country": "",
|
||||
"seasons": {
|
||||
"2024": {}
|
||||
},
|
||||
"elevation": 68,
|
||||
"description": "FORTH Heraklion Greece",
|
||||
"sitename": "forthgr",
|
||||
"ndvi_selected": true,
|
||||
"vegetation_type": "Agriculture"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [
|
||||
11.320308,
|
||||
47.116171
|
||||
]
|
||||
},
|
||||
"properties": {
|
||||
"country": "",
|
||||
"seasons": {
|
||||
"2020": {},
|
||||
"2024": {}
|
||||
},
|
||||
"elevation": 972,
|
||||
"description": "Neustift Field Site, Stubai Valley, Tyrol, Austria",
|
||||
"sitename": "innsbruck",
|
||||
"ndvi_selected": true,
|
||||
"vegetation_type": "Grassland"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [
|
||||
24.3688,
|
||||
58.5633
|
||||
]
|
||||
},
|
||||
"properties": {
|
||||
"country": "",
|
||||
"seasons": {
|
||||
"2024": {}
|
||||
},
|
||||
"elevation": 3,
|
||||
"description": "Abandoned peat extraction area, Estonia",
|
||||
"sitename": "pitsalu",
|
||||
"ndvi_selected": true,
|
||||
"vegetation_type": "Wetland"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [
|
||||
19.7673,
|
||||
64.2437
|
||||
]
|
||||
},
|
||||
"properties": {
|
||||
"country": "",
|
||||
"seasons": {
|
||||
"2023": {}
|
||||
},
|
||||
"elevation": 224,
|
||||
"description": "SITES Svartberget Research Station, Vindeln, Sweden",
|
||||
"sitename": "vindeln2",
|
||||
"ndvi_selected": true,
|
||||
"vegetation_type": "Deciduous Broadleaf"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [
|
||||
-6.0033,
|
||||
36.7455
|
||||
]
|
||||
},
|
||||
"properties": {
|
||||
"country": "",
|
||||
"seasons": {
|
||||
"2024": {}
|
||||
},
|
||||
"elevation": 56,
|
||||
"description": "Sun flower plot, Jerez, Spain",
|
||||
"sitename": "sunflowerjerez1",
|
||||
"ndvi_selected": true,
|
||||
"vegetation_type": "Agriculture"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [
|
||||
26.9837,
|
||||
42.6558
|
||||
]
|
||||
},
|
||||
"properties": {
|
||||
"country": "",
|
||||
"seasons": {
|
||||
"2024": {}
|
||||
},
|
||||
"elevation": 262,
|
||||
"description": "Institute of Agriculture in Karnobat (selection fields)",
|
||||
"sitename": "institutekarnobat",
|
||||
"ndvi_selected": true,
|
||||
"vegetation_type": "Agriculture"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue