Added efast.
This commit is contained in:
parent
607f577c6a
commit
83661762b3
6 changed files with 293 additions and 40 deletions
20
run.py
20
run.py
|
|
@ -1,7 +1,4 @@
|
|||
from download_s2 import download_s2
|
||||
from download_s3 import download_s3
|
||||
from ndvi import generate_ndvi, create_ndvi_timeseries
|
||||
from clouds import detect_clouds
|
||||
from efast import run_efast, prepare_s2, prepare_s3
|
||||
|
||||
year = 2024
|
||||
site_position = (47.116171, 11.320308)
|
||||
|
|
@ -17,6 +14,15 @@ site_name = "innsbruck"
|
|||
# create_ndvi_timeseries(year, site_position, site_name)
|
||||
# print("All NDVI generation completed")
|
||||
|
||||
print(f"Detecting clouds for {site_name}, {year}")
|
||||
detect_clouds(year, site_name)
|
||||
print("Cloud detection completed")
|
||||
# print(f"Detecting clouds for {site_name}, {year}")
|
||||
# detect_clouds(year, site_name)
|
||||
# print("Cloud detection completed")
|
||||
|
||||
print(f"Preparing data for EFAST fusion for {site_name}, {year}")
|
||||
prepare_s2(year, site_position, site_name)
|
||||
prepare_s3(year, site_position, site_name)
|
||||
print("Data preparation completed")
|
||||
|
||||
print(f"Running EFAST fusion for {site_name}, {year}")
|
||||
run_efast(year, site_position, site_name)
|
||||
print("EFAST fusion completed")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue