├── .codecov.yml ├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── task.md │ └── use_query.md └── pull_request_template.md ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── green-spaces-logo.png ├── green_spaces ├── __init__.py ├── analyse_polygons.py ├── analyse_polygons_template.json ├── calculate_indices.py ├── config │ ├── 12_8_4_all_ANN.h5 │ ├── pca_bright.pkl │ ├── pca_bright_mean.pkl │ ├── pca_colour.pkl │ ├── pca_colour_mean.pkl │ ├── pca_mono.pkl │ └── pca_mono_mean.pkl ├── coordinate_transforms.py ├── generate_coverage.py ├── image_loaders.py └── vegetation_analysis.py ├── meta.json ├── packages └── custom-labels.json ├── scripts ├── __init__.py ├── bulk_analyse.py ├── bulk_recombine.py ├── bulk_sift_incomplete.py └── split_geojson.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── data ├── images_CIR │ ├── blue+ir.png │ ├── blue.png │ ├── green.png │ └── red.png ├── images_RGB │ ├── blue+ir.png │ ├── blue.png │ ├── green.png │ └── red.png ├── validation_inputs.csv └── validation_output_classes.csv ├── image_test_helpers.py ├── test_analyse_polygons.py ├── test_bulk_recombine.py ├── test_calculate_indices.py ├── test_image_loaders.py ├── test_split_geojson.py ├── test_vegetation_analysis.py └── test_vegetation_analysis_nnc.py /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/.github/ISSUE_TEMPLATE/task.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/use_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/.github/ISSUE_TEMPLATE/use_query.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/README.md -------------------------------------------------------------------------------- /green-spaces-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green-spaces-logo.png -------------------------------------------------------------------------------- /green_spaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /green_spaces/analyse_polygons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/analyse_polygons.py -------------------------------------------------------------------------------- /green_spaces/analyse_polygons_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/analyse_polygons_template.json -------------------------------------------------------------------------------- /green_spaces/calculate_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/calculate_indices.py -------------------------------------------------------------------------------- /green_spaces/config/12_8_4_all_ANN.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/config/12_8_4_all_ANN.h5 -------------------------------------------------------------------------------- /green_spaces/config/pca_bright.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/config/pca_bright.pkl -------------------------------------------------------------------------------- /green_spaces/config/pca_bright_mean.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/config/pca_bright_mean.pkl -------------------------------------------------------------------------------- /green_spaces/config/pca_colour.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/config/pca_colour.pkl -------------------------------------------------------------------------------- /green_spaces/config/pca_colour_mean.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/config/pca_colour_mean.pkl -------------------------------------------------------------------------------- /green_spaces/config/pca_mono.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/config/pca_mono.pkl -------------------------------------------------------------------------------- /green_spaces/config/pca_mono_mean.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/config/pca_mono_mean.pkl -------------------------------------------------------------------------------- /green_spaces/coordinate_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/coordinate_transforms.py -------------------------------------------------------------------------------- /green_spaces/generate_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/generate_coverage.py -------------------------------------------------------------------------------- /green_spaces/image_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/image_loaders.py -------------------------------------------------------------------------------- /green_spaces/vegetation_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/green_spaces/vegetation_analysis.py -------------------------------------------------------------------------------- /meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/meta.json -------------------------------------------------------------------------------- /packages/custom-labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/packages/custom-labels.json -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/bulk_analyse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/scripts/bulk_analyse.py -------------------------------------------------------------------------------- /scripts/bulk_recombine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/scripts/bulk_recombine.py -------------------------------------------------------------------------------- /scripts/bulk_sift_incomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/scripts/bulk_sift_incomplete.py -------------------------------------------------------------------------------- /scripts/split_geojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/scripts/split_geojson.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/images_CIR/blue+ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/data/images_CIR/blue+ir.png -------------------------------------------------------------------------------- /tests/data/images_CIR/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/data/images_CIR/blue.png -------------------------------------------------------------------------------- /tests/data/images_CIR/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/data/images_CIR/green.png -------------------------------------------------------------------------------- /tests/data/images_CIR/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/data/images_CIR/red.png -------------------------------------------------------------------------------- /tests/data/images_RGB/blue+ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/data/images_RGB/blue+ir.png -------------------------------------------------------------------------------- /tests/data/images_RGB/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/data/images_RGB/blue.png -------------------------------------------------------------------------------- /tests/data/images_RGB/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/data/images_RGB/green.png -------------------------------------------------------------------------------- /tests/data/images_RGB/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/data/images_RGB/red.png -------------------------------------------------------------------------------- /tests/data/validation_inputs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/data/validation_inputs.csv -------------------------------------------------------------------------------- /tests/data/validation_output_classes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/data/validation_output_classes.csv -------------------------------------------------------------------------------- /tests/image_test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/image_test_helpers.py -------------------------------------------------------------------------------- /tests/test_analyse_polygons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/test_analyse_polygons.py -------------------------------------------------------------------------------- /tests/test_bulk_recombine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/test_bulk_recombine.py -------------------------------------------------------------------------------- /tests/test_calculate_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/test_calculate_indices.py -------------------------------------------------------------------------------- /tests/test_image_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/test_image_loaders.py -------------------------------------------------------------------------------- /tests/test_split_geojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/test_split_geojson.py -------------------------------------------------------------------------------- /tests/test_vegetation_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/test_vegetation_analysis.py -------------------------------------------------------------------------------- /tests/test_vegetation_analysis_nnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencecampus/green-spaces/HEAD/tests/test_vegetation_analysis_nnc.py --------------------------------------------------------------------------------