25 lines
789 B
Batchfile
25 lines
789 B
Batchfile
@echo off
|
|
REM Download 3 years of Planet data for Angata (missing dates only)
|
|
REM Adjust start/end dates as needed
|
|
|
|
echo ============================================================
|
|
echo PLANET SATELLITE DATA DOWNLOAD - 3 YEAR RANGE
|
|
echo ============================================================
|
|
|
|
REM Activate conda environment
|
|
call conda activate pytorch_gpu
|
|
|
|
REM Download from 2023-01-01 to 2025-12-31 (adjust dates as needed)
|
|
REM The script will automatically skip dates that already exist
|
|
python download_planet_missing_dates.py ^
|
|
--project angata ^
|
|
--start 2023-01-01 ^
|
|
--end 2025-12-15 ^
|
|
--resolution 3
|
|
|
|
echo.
|
|
echo ============================================================
|
|
echo Download complete!
|
|
echo ============================================================
|
|
pause
|