- Implemented `run_spectral_extraction.py` to batch extract spectral indices (NDVI, BSI, NDWI) from 4-band TIFF files, saving results in a structured CSV format. - Created `spectral_features.py` for calculating various spectral indices, including NDVI, BSI, NDWI, CI_green, CI_red, GNDVI, SAVI, and EVI2. - Added Jupyter notebook `02_season_normalization_analysis.ipynb` for analyzing season-length normalization, comparing ESA and Angata spectral indices, and visualizing growth patterns. - Included functions for computing season age, plotting trajectories, and performing peak and amplitude analysis.
89 lines
1.3 KiB
Plaintext
89 lines
1.3 KiB
Plaintext
# PHP (Laravel) Ignores
|
|
#/laravel_app/vendor/
|
|
#/laravel_app/.env
|
|
.idea/
|
|
|
|
# Python Ignores
|
|
/python_app/__pycache__/
|
|
/python_app/*.pyc
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# R Output Files
|
|
*.Rout
|
|
*.Rhistory
|
|
*.RData
|
|
*.Rdata
|
|
.Rproj.user
|
|
Rplots.pdf
|
|
*.pdf
|
|
|
|
# R Data Files
|
|
*.rds
|
|
!renv.lock
|
|
|
|
# Data Files (Excel, CSV, Text)
|
|
*.xlsx
|
|
*.csv
|
|
*.txt
|
|
!python_app/requirements*.txt
|
|
!PACKAGE_MANAGEMENT.md
|
|
!README.md
|
|
!LICENSE.txt
|
|
|
|
# Spatial Data
|
|
*.tif
|
|
*.geojson
|
|
!r_app/experiments/pivot.geojson
|
|
|
|
# Generated Reports and Word Documents
|
|
r_app/output/
|
|
r_app/*.docx
|
|
!r_app/word-styles-reference-var1.docx
|
|
output/
|
|
reports/
|
|
*.docx
|
|
|
|
# Experiment Outputs (temporary plots, analysis artifacts)
|
|
python_app/harvest_detection_experiments/*/plots/
|
|
python_app/harvest_detection_experiments/*/*.ipynb_checkpoints/
|
|
|
|
# Cache Files
|
|
rosm.cache/
|
|
*.cache
|
|
|
|
# Logs
|
|
*.log
|
|
package_manager.log
|
|
|
|
# Laravel Storage (contains user data and outputs)
|
|
laravel_app/storage/app/*/Data/
|
|
laravel_app/storage/app/*/reports/
|
|
/laravel_app/public/*
|
|
!/laravel_app/public/.htaccess
|
|
!/laravel_app/public/index.php
|
|
!/laravel_app/public/robots.txt
|
|
|
|
# R Environment (renv)
|
|
renv/library/
|
|
!renv/library/.gitkeep
|
|
renv/local/
|
|
renv/python/
|
|
renv/staging/
|
|
# Keep only these renv files
|
|
!renv.lock
|
|
!renv/activate.R
|
|
!renv/settings.json
|
|
!renv/.gitignore
|
|
|
|
# IDE and OS
|
|
.DS_Store
|
|
.Rproj.user
|
|
.idea/
|
|
.vscode/
|
|
|
|
# API Specific files
|
|
.env
|
|
tokens.json
|
|
api/images |