Tested on:
Windows 11 Pro for Workstations and WSL2 Debian 12
Processor: Intel(R) Xeon(R) Gold 6138 CPU @ 2.00GHz 2.00 GHz (2 processors)
Installed RAM: 384 GB
VGA: NVIDIA Quadro P2000 5GB
| # -*- coding: utf-8 -*- | |
| """ | |
| NAME | |
| 13_mxd13q1_viproducts_annual.py | |
| Generate derivative product from Vegetation Indices | |
| DESCRIPTION | |
| Input data for this script will use MXD13Q1 annual data generate by 06_mxd13q1_8day2annual.py | |
| This script can do calculation for ratio, difference, standardize anomaly | |
| and vegetation condition index. | |
| The calculation required timeseries VI and the long-term statistics (min, mean, max, std) |
| # -*- coding: utf-8 -*- | |
| """ | |
| NAME | |
| 12_mxd13q1_viproducts_quarter.py | |
| Generate derivative product from Vegetation Indices | |
| DESCRIPTION | |
| Input data for this script will use MXD13Q1 quarterly data generate by 05_mxd13q1_8day2quarter.py | |
| from NASA. This script can do calculation for ratio, difference, standardize anomaly | |
| and vegetation condition index. | |
| The calculation required timeseries VI and the long-term statistics (min, mean, max, std) |
| # -*- coding: utf-8 -*- | |
| """ | |
| NAME | |
| 11_mxd13q1_viproducts_monthly.py | |
| Generate derivative product from Vegetation Indices | |
| DESCRIPTION | |
| Input data for this script will use MXD13Q1 monthly data generate by 04_mxd13q1_8day2monthly.py | |
| This script can do calculation for ratio, difference, standardize anomaly | |
| and vegetation condition index. | |
| The calculation required timeseries VI and the long-term statistics (min, mean, max, std) |
| # -*- coding: utf-8 -*- | |
| """ | |
| NAME | |
| 10_mxd13q1_viproducts_8day.py | |
| Generate derivative product from Vegetation Indices | |
| DESCRIPTION | |
| Input data for this script will use MXD13Q1 8-days data generate from GEE or downloaded | |
| from NASA. This script can do calculation for ratio, difference, standardize anomaly | |
| and vegetation condition index. | |
| The calculation required timeseries VI and the long-term statistics (min, mean, max, std) |
| # -*- coding: utf-8 -*- | |
| """ | |
| NAME | |
| 09_mxd13q1_stats_annual.py | |
| MXD13Q1 annual statistics data, long-term average, max, min and stdev | |
| DESCRIPTION | |
| Input data for this script will use MXD13Q1 annual data generate from modis_8day2annual.py | |
| This script can do annual statistics calculation (AVERAGE, MAXIMUM, MINIMUM and STD) | |
| REQUIREMENT | |
| ArcGIS must installed before using this script, as it required arcpy module. |
| # -*- coding: utf-8 -*- | |
| """ | |
| NAME | |
| 07_mxd13q1_stats_monthly.py | |
| MXD13Q1 monthly statistics data, long-term average, max, min and stdev | |
| DESCRIPTION | |
| Input data for this script will use MXD13Q1 monthly data generate from modis_8day2monthly.py | |
| This script can do annual statistics calculation (AVERAGE, MAXIMUM, MINIMUM and STD) | |
| REQUIREMENT | |
| ArcGIS must installed before using this script, as it required arcpy module. |
| # -*- coding: utf-8 -*- | |
| """ | |
| NAME | |
| 06_mxd13q1_8day2annual.py | |
| MXD13Q1 annual mean from 8-day data | |
| DESCRIPTION | |
| Input data for this script will use MXD13Q1 8-days data generate from GEE or downloaded from NASA | |
| This script can do MEAN calculation to derive annual data | |
| REQUIREMENT | |
| ArcGIS must installed before using this script, as it required arcpy module. |