├── .gitignore ├── Makefile ├── README.md ├── ccdc ├── 2d_array.c ├── 2d_array.h ├── Makefile ├── ccdc.c ├── ccdc.h ├── const.h ├── defines.h ├── gdb.args ├── glmnet5.f ├── input.c ├── input.h ├── misc.c ├── multirobust.c ├── output.h ├── scripts │ ├── cloudCover.pl │ ├── renameMTLfiles.sh │ ├── tileLandsat.sh │ └── tileLandsatParent.sh ├── utilities.c └── utilities.h ├── classification ├── 2d_array.c ├── 2d_array.h ├── Makefile ├── classRF.c ├── classTree.c ├── classification.c ├── classification.h ├── cokus.c ├── get_args.c ├── qsort.c ├── rf.h ├── rfsub.f ├── rfutils.c ├── utilities.c └── utilities.h ├── docker ├── Makefile ├── debian │ ├── Dockerfile │ └── run.py └── ubuntu │ ├── Dockerfile │ └── run.py └── docs ├── CCDC ADD CY5 V1.0.docx ├── ccdc_work_flow.pdf └── flowchart_description.txt /.gitignore: -------------------------------------------------------------------------------- 1 | Y_hat.txt 2 | *.o 3 | *~ 4 | bin/* 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/README.md -------------------------------------------------------------------------------- /ccdc/2d_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/2d_array.c -------------------------------------------------------------------------------- /ccdc/2d_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/2d_array.h -------------------------------------------------------------------------------- /ccdc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/Makefile -------------------------------------------------------------------------------- /ccdc/ccdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/ccdc.c -------------------------------------------------------------------------------- /ccdc/ccdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/ccdc.h -------------------------------------------------------------------------------- /ccdc/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/const.h -------------------------------------------------------------------------------- /ccdc/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/defines.h -------------------------------------------------------------------------------- /ccdc/gdb.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/gdb.args -------------------------------------------------------------------------------- /ccdc/glmnet5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/glmnet5.f -------------------------------------------------------------------------------- /ccdc/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/input.c -------------------------------------------------------------------------------- /ccdc/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/input.h -------------------------------------------------------------------------------- /ccdc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/misc.c -------------------------------------------------------------------------------- /ccdc/multirobust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/multirobust.c -------------------------------------------------------------------------------- /ccdc/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/output.h -------------------------------------------------------------------------------- /ccdc/scripts/cloudCover.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/scripts/cloudCover.pl -------------------------------------------------------------------------------- /ccdc/scripts/renameMTLfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/scripts/renameMTLfiles.sh -------------------------------------------------------------------------------- /ccdc/scripts/tileLandsat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/scripts/tileLandsat.sh -------------------------------------------------------------------------------- /ccdc/scripts/tileLandsatParent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/scripts/tileLandsatParent.sh -------------------------------------------------------------------------------- /ccdc/utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/utilities.c -------------------------------------------------------------------------------- /ccdc/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/ccdc/utilities.h -------------------------------------------------------------------------------- /classification/2d_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/2d_array.c -------------------------------------------------------------------------------- /classification/2d_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/2d_array.h -------------------------------------------------------------------------------- /classification/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/Makefile -------------------------------------------------------------------------------- /classification/classRF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/classRF.c -------------------------------------------------------------------------------- /classification/classTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/classTree.c -------------------------------------------------------------------------------- /classification/classification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/classification.c -------------------------------------------------------------------------------- /classification/classification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/classification.h -------------------------------------------------------------------------------- /classification/cokus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/cokus.c -------------------------------------------------------------------------------- /classification/get_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/get_args.c -------------------------------------------------------------------------------- /classification/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/qsort.c -------------------------------------------------------------------------------- /classification/rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/rf.h -------------------------------------------------------------------------------- /classification/rfsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/rfsub.f -------------------------------------------------------------------------------- /classification/rfutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/rfutils.c -------------------------------------------------------------------------------- /classification/utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/utilities.c -------------------------------------------------------------------------------- /classification/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/classification/utilities.h -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/docker/Makefile -------------------------------------------------------------------------------- /docker/debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/docker/debian/Dockerfile -------------------------------------------------------------------------------- /docker/debian/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/docker/debian/run.py -------------------------------------------------------------------------------- /docker/ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/docker/ubuntu/Dockerfile -------------------------------------------------------------------------------- /docker/ubuntu/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/docker/ubuntu/run.py -------------------------------------------------------------------------------- /docs/CCDC ADD CY5 V1.0.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/docs/CCDC ADD CY5 V1.0.docx -------------------------------------------------------------------------------- /docs/ccdc_work_flow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/docs/ccdc_work_flow.pdf -------------------------------------------------------------------------------- /docs/flowchart_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repository-preservation/lcmap-change-detection-c/HEAD/docs/flowchart_description.txt --------------------------------------------------------------------------------