Added ndvi calculation.
This commit is contained in:
parent
c02289532f
commit
129d98c57e
3 changed files with 114 additions and 11 deletions
17
run.py
Normal file
17
run.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
from download_s2 import download_s2
|
||||
from download_s3 import download_s3
|
||||
from ndvi import generate_ndvi, create_ndvi_timeseries
|
||||
|
||||
year = 2024
|
||||
site_position = (47.116171, 11.320308)
|
||||
site_name = "innsbruck"
|
||||
|
||||
# print(f"Downloading data for {site_name}, {year}")
|
||||
# download_s2(year, site_position, site_name)
|
||||
# download_s3(year, site_position, site_name)
|
||||
# print("All downloads completed")
|
||||
|
||||
print(f"Generating NDVI for {site_name}, {year}")
|
||||
# generate_ndvi(year, site_position, site_name)
|
||||
create_ndvi_timeseries(year, site_position, site_name)
|
||||
print("All NDVI generation completed")
|
||||
Loading…
Add table
Add a link
Reference in a new issue