├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LandsatLinkr ├── LandsatLinkr.Rproj ├── LandsatLinkr_function_map.txt ├── NAMESPACE ├── R ├── cal_mss_tc_aggregate_model.r ├── cal_oli_tc_aggregate_model.r ├── calibrate_and_composite.r ├── change_extension.r ├── delete_files.r ├── eudist.r ├── file_check.r ├── get_metadata.r ├── llr_time_machine.r ├── make_usearea_file.r ├── make_usearea_file_bsq.r ├── matrix_to_raster.r ├── mixel.r ├── mosaic_dems.r ├── mss_resample.r ├── msscal.r ├── msscal_single.r ├── msscost.r ├── msscvm.r ├── mssdn2refl.r ├── msssr2tc.r ├── mssunpackr.r ├── msswarp.r ├── msswarp_old.r ├── olical.r ├── olical_single.r ├── olisr2tc.r ├── oliunpackr.r ├── prepare_images.r ├── prepare_topo.r ├── run_landsatlinkr.r ├── set_projection.r ├── tmunpackr.r └── trim_na_rowcol.r ├── README.md ├── docs ├── lasrc_product_guide.pdf └── ledaps_product_guide.pdf └── man ├── cal_mss_tc_aggregate_model.Rd ├── cal_oli_tc_aggregate_model.Rd ├── calibrate_and_composite.Rd ├── change_extension.Rd ├── delete_files.Rd ├── eudist.Rd ├── file_check.Rd ├── get_metadata.Rd ├── llr_time_machine.Rd ├── make_usearea_file.Rd ├── make_usearea_file_bsq.Rd ├── matrix_to_raster.Rd ├── mixel.Rd ├── mosaic_dems.Rd ├── mss_resample.Rd ├── msscal.Rd ├── msscal_single.Rd ├── msscost.Rd ├── msscvm.Rd ├── mssdn2refl.Rd ├── msssr2tc.Rd ├── mssunpackr.Rd ├── msswarp.Rd ├── msswarp_old.Rd ├── olical.Rd ├── olical_single.Rd ├── olisr2tc.Rd ├── oliunpackr.Rd ├── prepare_images.Rd ├── prepare_topo.Rd ├── run_landsatlinkr.Rd ├── set_projection.Rd ├── tmunpackr.Rd └── trim_na_rowcol.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LandsatLinkr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/LandsatLinkr -------------------------------------------------------------------------------- /LandsatLinkr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/LandsatLinkr.Rproj -------------------------------------------------------------------------------- /LandsatLinkr_function_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/LandsatLinkr_function_map.txt -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/cal_mss_tc_aggregate_model.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/cal_mss_tc_aggregate_model.r -------------------------------------------------------------------------------- /R/cal_oli_tc_aggregate_model.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/cal_oli_tc_aggregate_model.r -------------------------------------------------------------------------------- /R/calibrate_and_composite.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/calibrate_and_composite.r -------------------------------------------------------------------------------- /R/change_extension.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/change_extension.r -------------------------------------------------------------------------------- /R/delete_files.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/delete_files.r -------------------------------------------------------------------------------- /R/eudist.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/eudist.r -------------------------------------------------------------------------------- /R/file_check.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/file_check.r -------------------------------------------------------------------------------- /R/get_metadata.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/get_metadata.r -------------------------------------------------------------------------------- /R/llr_time_machine.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/llr_time_machine.r -------------------------------------------------------------------------------- /R/make_usearea_file.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/make_usearea_file.r -------------------------------------------------------------------------------- /R/make_usearea_file_bsq.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/make_usearea_file_bsq.r -------------------------------------------------------------------------------- /R/matrix_to_raster.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/matrix_to_raster.r -------------------------------------------------------------------------------- /R/mixel.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/mixel.r -------------------------------------------------------------------------------- /R/mosaic_dems.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/mosaic_dems.r -------------------------------------------------------------------------------- /R/mss_resample.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/mss_resample.r -------------------------------------------------------------------------------- /R/msscal.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/msscal.r -------------------------------------------------------------------------------- /R/msscal_single.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/msscal_single.r -------------------------------------------------------------------------------- /R/msscost.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/msscost.r -------------------------------------------------------------------------------- /R/msscvm.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/msscvm.r -------------------------------------------------------------------------------- /R/mssdn2refl.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/mssdn2refl.r -------------------------------------------------------------------------------- /R/msssr2tc.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/msssr2tc.r -------------------------------------------------------------------------------- /R/mssunpackr.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/mssunpackr.r -------------------------------------------------------------------------------- /R/msswarp.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/msswarp.r -------------------------------------------------------------------------------- /R/msswarp_old.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/msswarp_old.r -------------------------------------------------------------------------------- /R/olical.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/olical.r -------------------------------------------------------------------------------- /R/olical_single.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/olical_single.r -------------------------------------------------------------------------------- /R/olisr2tc.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/olisr2tc.r -------------------------------------------------------------------------------- /R/oliunpackr.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/oliunpackr.r -------------------------------------------------------------------------------- /R/prepare_images.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/prepare_images.r -------------------------------------------------------------------------------- /R/prepare_topo.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/prepare_topo.r -------------------------------------------------------------------------------- /R/run_landsatlinkr.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/run_landsatlinkr.r -------------------------------------------------------------------------------- /R/set_projection.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/set_projection.r -------------------------------------------------------------------------------- /R/tmunpackr.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/tmunpackr.r -------------------------------------------------------------------------------- /R/trim_na_rowcol.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/R/trim_na_rowcol.r -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/README.md -------------------------------------------------------------------------------- /docs/lasrc_product_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/docs/lasrc_product_guide.pdf -------------------------------------------------------------------------------- /docs/ledaps_product_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/docs/ledaps_product_guide.pdf -------------------------------------------------------------------------------- /man/cal_mss_tc_aggregate_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/cal_mss_tc_aggregate_model.Rd -------------------------------------------------------------------------------- /man/cal_oli_tc_aggregate_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/cal_oli_tc_aggregate_model.Rd -------------------------------------------------------------------------------- /man/calibrate_and_composite.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/calibrate_and_composite.Rd -------------------------------------------------------------------------------- /man/change_extension.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/change_extension.Rd -------------------------------------------------------------------------------- /man/delete_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/delete_files.Rd -------------------------------------------------------------------------------- /man/eudist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/eudist.Rd -------------------------------------------------------------------------------- /man/file_check.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/file_check.Rd -------------------------------------------------------------------------------- /man/get_metadata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/get_metadata.Rd -------------------------------------------------------------------------------- /man/llr_time_machine.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/llr_time_machine.Rd -------------------------------------------------------------------------------- /man/make_usearea_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/make_usearea_file.Rd -------------------------------------------------------------------------------- /man/make_usearea_file_bsq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/make_usearea_file_bsq.Rd -------------------------------------------------------------------------------- /man/matrix_to_raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/matrix_to_raster.Rd -------------------------------------------------------------------------------- /man/mixel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/mixel.Rd -------------------------------------------------------------------------------- /man/mosaic_dems.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/mosaic_dems.Rd -------------------------------------------------------------------------------- /man/mss_resample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/mss_resample.Rd -------------------------------------------------------------------------------- /man/msscal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/msscal.Rd -------------------------------------------------------------------------------- /man/msscal_single.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/msscal_single.Rd -------------------------------------------------------------------------------- /man/msscost.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/msscost.Rd -------------------------------------------------------------------------------- /man/msscvm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/msscvm.Rd -------------------------------------------------------------------------------- /man/mssdn2refl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/mssdn2refl.Rd -------------------------------------------------------------------------------- /man/msssr2tc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/msssr2tc.Rd -------------------------------------------------------------------------------- /man/mssunpackr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/mssunpackr.Rd -------------------------------------------------------------------------------- /man/msswarp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/msswarp.Rd -------------------------------------------------------------------------------- /man/msswarp_old.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/msswarp_old.Rd -------------------------------------------------------------------------------- /man/olical.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/olical.Rd -------------------------------------------------------------------------------- /man/olical_single.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/olical_single.Rd -------------------------------------------------------------------------------- /man/olisr2tc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/olisr2tc.Rd -------------------------------------------------------------------------------- /man/oliunpackr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/oliunpackr.Rd -------------------------------------------------------------------------------- /man/prepare_images.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/prepare_images.Rd -------------------------------------------------------------------------------- /man/prepare_topo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/prepare_topo.Rd -------------------------------------------------------------------------------- /man/run_landsatlinkr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/run_landsatlinkr.Rd -------------------------------------------------------------------------------- /man/set_projection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/set_projection.Rd -------------------------------------------------------------------------------- /man/tmunpackr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/tmunpackr.Rd -------------------------------------------------------------------------------- /man/trim_na_rowcol.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdbcode/LandsatLinkr/HEAD/man/trim_na_rowcol.Rd --------------------------------------------------------------------------------