├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── tool-request.md └── workflows │ ├── conda.yml │ ├── docker.yaml │ ├── pre-commit.yaml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile-docs ├── LICENSE ├── README.md ├── docker-compose.yml ├── docs ├── conversions │ ├── csv_to_geodataframe.md │ └── raster_to_dataframe.md ├── dependency_licenses.md ├── evaluation │ ├── calculate_base_metrics.md │ ├── classification_label_evaluation.md │ ├── classification_probability_evaluation.md │ ├── plot_confusion_matrix.md │ ├── plot_nn_model_performance.md │ ├── plot_prediction_area_curves.md │ └── plot_rate_curve.md ├── exploratory_analyses │ ├── chi_square_test.md │ ├── correlation_matrix.md │ ├── covariance_matrix.md │ ├── dbscan.md │ ├── descriptive_statistics.md │ ├── feature_importance.md │ ├── k_means_cluster.md │ ├── local_morans_i.md │ ├── normality_test.md │ ├── parallel_coordinates.md │ └── pca.md ├── index.md ├── prediction │ ├── fuzzy_overlay.md │ ├── gradient_boosting.md │ ├── logistic_regression.md │ ├── machine_learning_general.md │ ├── mlp.md │ ├── random_forests.md │ └── weights_of_evidence.md ├── raster_processing │ ├── clipping.md │ ├── create_constant_raster.md │ ├── derivatives │ │ ├── classification.md │ │ ├── parameters.md │ │ ├── partial_derivatives.md │ │ └── utilities.md │ ├── distance_to_anomaly.md │ ├── extract_values_from_raster.md │ ├── filters │ │ ├── focal.md │ │ ├── kernels.md │ │ ├── speckle.md │ │ └── utilities.md │ ├── masking.md │ ├── proximity_to_anomaly.md │ ├── reclassify.md │ ├── reprojecting.md │ ├── resampling.md │ ├── snapping.md │ ├── unifying.md │ ├── unique_combinations.md │ └── windowing.md ├── stylesheets │ └── extra.css ├── training_data_tools │ ├── class_balancing.md │ ├── points_to_raster.md │ └── random_sampling.md ├── transformations │ ├── binarize.md │ ├── clip.md │ ├── coda │ │ ├── alr.md │ │ ├── clr.md │ │ ├── ilr.md │ │ ├── pairwise.md │ │ └── plr.md │ ├── linear.md │ ├── logarithmic.md │ ├── one_hot_encoding.md │ ├── sigmoid.md │ └── winsorize.md ├── utilities │ ├── file_io.md │ ├── nodata.md │ └── raster.md └── vector_processing │ ├── calculate_geometry.md │ ├── cell_based_association.md │ ├── distance_computation.md │ ├── extract_shared_lines.md │ ├── idw_interpolation.md │ ├── kriging_interpolation.md │ ├── proximity_computation.md │ ├── rasterize_vector.md │ ├── reproject_vector.md │ └── vector_density.md ├── docs_assets └── theme │ └── main.html ├── eis_toolkit ├── __init__.py ├── __main__.py ├── cli.py ├── conversions │ ├── __init__.py │ ├── csv_to_geodataframe.py │ └── raster_to_dataframe.py ├── evaluation │ ├── __init__.py │ ├── calculate_base_metrics.py │ ├── classification_label_evaluation.py │ ├── classification_probability_evaluation.py │ ├── plot_confusion_matrix.py │ ├── plot_nn_model_performance.py │ ├── plot_prediction_area_curves.py │ ├── plot_rate_curve.py │ └── scoring.py ├── exceptions.py ├── exploratory_analyses │ ├── __init__.py │ ├── basic_plots_seaborn.py │ ├── chi_square_test.py │ ├── correlation_matrix.py │ ├── covariance_matrix.py │ ├── dbscan.py │ ├── descriptive_statistics.py │ ├── feature_importance.py │ ├── k_means_cluster.py │ ├── local_morans_i.py │ ├── normality_test.py │ ├── parallel_coordinates.py │ ├── pca.py │ └── plot_utils.py ├── prediction │ ├── __init__.py │ ├── fuzzy_overlay.py │ ├── gradient_boosting.py │ ├── logistic_regression.py │ ├── machine_learning_general.py │ ├── machine_learning_predict.py │ ├── mlp.py │ ├── random_forests.py │ └── weights_of_evidence.py ├── raster_processing │ ├── __init__.py │ ├── clipping.py │ ├── create_constant_raster.py │ ├── derivatives │ │ ├── __init__.py │ │ ├── classification.py │ │ ├── parameters.py │ │ ├── partial_derivatives.py │ │ └── utilities.py │ ├── distance_to_anomaly.py │ ├── extract_values_from_raster.py │ ├── filters │ │ ├── __init__.py │ │ ├── focal.py │ │ ├── kernels.py │ │ ├── speckle.py │ │ └── utilities.py │ ├── masking.py │ ├── proximity_to_anomaly.py │ ├── reclassify.py │ ├── reprojecting.py │ ├── resampling.py │ ├── snapping.py │ ├── unifying.py │ ├── unique_combinations.py │ └── windowing.py ├── training_data_tools │ ├── __init__.py │ ├── class_balancing.py │ ├── points_to_raster.py │ └── random_sampling.py ├── transformations │ ├── __init__.py │ ├── binarize.py │ ├── clip.py │ ├── coda │ │ ├── __init__.py │ │ ├── alr.py │ │ ├── clr.py │ │ ├── ilr.py │ │ ├── pairwise.py │ │ └── plr.py │ ├── linear.py │ ├── logarithmic.py │ ├── one_hot_encoding.py │ ├── sigmoid.py │ └── winsorize.py ├── utilities │ ├── __init__.py │ ├── aitchison_geometry.py │ ├── checks │ │ ├── __init__.py │ │ ├── compositional.py │ │ ├── dataframe.py │ │ ├── geometry.py │ │ ├── parameter.py │ │ └── raster.py │ ├── conversions.py │ ├── file_io.py │ ├── gdal.py │ ├── miscellaneous.py │ ├── nodata.py │ └── raster.py ├── vector_processing │ ├── __init__.py │ ├── _distance_computation_numba.py │ ├── calculate_geometry.py │ ├── cell_based_association.py │ ├── distance_computation.py │ ├── extract_shared_lines.py │ ├── idw_interpolation.py │ ├── kriging_interpolation.py │ ├── proximity_computation.py │ ├── rasterize_vector.py │ ├── reproject_vector.py │ └── vector_density.py └── warnings.py ├── environment.yml ├── instructions ├── dev_setup_with_docker.md ├── dev_setup_without_docker.md ├── dev_setup_without_docker_with_conda.md ├── generating_dependency_licenses.md ├── generating_documentation.md ├── testing.md └── using_jupyterlab.md ├── mkdocs.yml ├── mypy.ini ├── notebooks ├── cba_introduction.ipynb ├── csv_to_geopandas.ipynb ├── distance_to_anomaly.ipynb ├── eis_toolkit_and_notebooks.ipynb ├── evaluation_functions.ipynb ├── jupyter_introduction.ipynb ├── machine_learning_rf_gb_lr.ipynb ├── parallel_coordinates.ipynb ├── testing_calculate_geometry.ipynb ├── testing_classifier_evaluation.ipynb ├── testing_clip.ipynb ├── testing_extract_shared_lines.ipynb ├── testing_filters.ipynb ├── testing_idw.ipynb ├── testing_kriging.ipynb ├── testing_local_morans_i.ipynb ├── testing_logratio_transformations.ipynb ├── testing_pca.ipynb ├── testing_plots.ipynb ├── testing_points_to_raster.ipynb ├── testing_proximity_computation.ipynb ├── testing_random_sampling.ipynb ├── testing_surface_attributes_and_derivatives.ipynb ├── testing_unify_raster_grids.ipynb ├── weights_of_evidence.ipynb └── workflow_demonstration.ipynb ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── checks └── check_raster_grids_test.py ├── conversions ├── csv_to_geodataframe_test.py └── raster_to_dataframe_test.py ├── data ├── local │ ├── .gitkeep │ ├── data │ │ └── .gitkeep │ └── results │ │ └── .gitkeep └── remote │ ├── IOCG_CLB_Till_Geochem_reg_511p.gpkg │ ├── Test_CBA_matrix.geojson │ ├── Test_CBA_matrix.tif │ ├── Test_CBA_matrix__epsg_2154.csv │ ├── Test_CBA_matrix_check.tif │ ├── Test_Faults.geojson │ ├── Test_Litho.geojson │ ├── Test_Occ.geojson │ ├── extract_raster_values │ ├── extract_raster_values_points.dbf │ ├── extract_raster_values_points.prj │ ├── extract_raster_values_points.shp │ └── extract_raster_values_points.shx │ ├── fake_smote_data.csv │ ├── interpolating │ ├── idw_radius_test_data.tif │ ├── idw_result_qgis.tif │ ├── idw_result_qgis.tif.aux.xml │ ├── idw_test_data.tif │ └── interpolation_test_data_small.gpkg │ ├── nonsquared_pixelsize_raster.tif │ ├── nonsquared_pixelsize_raster.tif.aux.xml │ ├── point.gpkg │ ├── small_area.cpg │ ├── small_area.dbf │ ├── small_area.geojson │ ├── small_area.prj │ ├── small_area.qmd │ ├── small_area.shp │ ├── small_area.shx │ ├── small_area_reprojected.cpg │ ├── small_area_reprojected.dbf │ ├── small_area_reprojected.prj │ ├── small_area_reprojected.qmd │ ├── small_area_reprojected.shp │ ├── small_area_reprojected.shx │ ├── small_raster.tif │ ├── small_raster.tif.aux.xml │ ├── small_raster_EPSG4326.tif │ ├── small_raster_clipped.tif │ ├── small_raster_multiband.tif │ ├── small_raster_qgis_kkj.tif │ ├── smaller_raster.tif │ ├── smaller_raster.tif.aux.xml │ ├── snapping │ ├── clipped_snap_raster.tif │ ├── snap_raster.tif │ ├── snap_raster.tif.aux.xml │ ├── snap_test_raster_nonsquare.tif │ ├── snap_test_raster_outofbounds.tif │ ├── snap_test_raster_right_bottom.tif │ ├── snap_test_raster_right_top.tif │ └── snap_test_raster_smaller_cells.tif │ ├── test.csv │ ├── test.gpkg │ ├── test_zero_values.csv │ ├── unifying │ ├── raster_to_unify_1.tif │ └── raster_to_unify_2.tif │ └── wofe │ ├── wofe_deposits.cpg │ ├── wofe_deposits.dbf │ ├── wofe_deposits.prj │ ├── wofe_deposits.sbn │ ├── wofe_deposits.sbx │ ├── wofe_deposits.shp │ ├── wofe_deposits.shx │ ├── wofe_deposits.xml │ └── wofe_evidence_raster.tif ├── eis_toolkit_test.py ├── evaluation ├── calculate_base_metrics_test.py ├── plot_confusion_matrix_test.py ├── plot_nn_model_performance_test.py ├── plot_prediction_area_curves_test.py ├── plot_rate_curve_test.py └── scoring_test.py ├── exploratory_analyses ├── __init__.py ├── chi_square_test.py ├── correlation_matrix_test.py ├── covariance_matrix_test.py ├── dbscan_test.py ├── descriptive_statistics_test.py ├── feature_importance_test.py ├── k_means_cluster_test.py ├── local_morans_i_test.py ├── normality_test_test.py └── pca_test.py ├── prediction ├── fuzzy_test.py ├── gradient_boosting_test.py ├── logistic_regression_test.py ├── machine_learning_general_test.py ├── mlp_test.py ├── random_forest_test.py └── weights_of_evidence_test.py ├── raster_processing ├── clip_test.py ├── create_constant_raster_test.py ├── derivatives │ ├── classify_aspect_test.py │ ├── first_order_derivatives_test.py │ └── second_order_derivatives_test.py ├── extract_values_from_raster_test.py ├── filters │ ├── focal_test.py │ ├── frost_test.py │ ├── gamma_test.py │ ├── gaussian_test.py │ ├── kuan_test.py │ ├── lee_additive_multiplicative_noise_test.py │ ├── lee_additive_noise_test.py │ ├── lee_enhanced_test.py │ ├── lee_multiplicative_noise_test.py │ └── mexican_hat_filter_test.py ├── masking_test.py ├── reclassify_raster_test.py ├── reproject_test.py ├── resample_test.py ├── snap_test.py ├── test_distance_to_anomaly.py ├── unify_raster_grids_test.py ├── unique_combinations_test.py └── window_test.py ├── training_data_tools ├── class_balancing_test.py ├── points_to_raster_test.py └── random_sampling_test.py ├── transformations ├── __init__.py ├── binarize_test.py ├── clip_test.py ├── coda │ ├── alr_test.py │ ├── clr_test.py │ ├── ilr_test.py │ ├── pairwise_test.py │ └── plr_test.py ├── linear_test.py ├── logarithmic_test.py ├── one_hot_encode_test.py ├── sigmoid_test.py └── winsorize_test.py ├── utilities ├── aitchison_geometry_test.py ├── compositional_test.py ├── conversions_test.py ├── miscellaneous_test.py ├── nodata_test.py └── raster_test.py └── vector_processing ├── __init__.py ├── calculate_geometry_test.py ├── cell_based_association_test.py ├── distance_computation_test.py ├── extract_shared_lines_test.py ├── idw_interpolation_test.py ├── kriging_interpolation_test.py ├── proximity_computation_test.py ├── rasterize_vector_test.py ├── reproject_vector_test.py └── vector_density_test.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/tool-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/.github/ISSUE_TEMPLATE/tool-request.md -------------------------------------------------------------------------------- /.github/workflows/conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/.github/workflows/conda.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/.github/workflows/docker.yaml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/.github/workflows/pre-commit.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/Dockerfile-docs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/conversions/csv_to_geodataframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/conversions/csv_to_geodataframe.md -------------------------------------------------------------------------------- /docs/conversions/raster_to_dataframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/conversions/raster_to_dataframe.md -------------------------------------------------------------------------------- /docs/dependency_licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/dependency_licenses.md -------------------------------------------------------------------------------- /docs/evaluation/calculate_base_metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/evaluation/calculate_base_metrics.md -------------------------------------------------------------------------------- /docs/evaluation/classification_label_evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/evaluation/classification_label_evaluation.md -------------------------------------------------------------------------------- /docs/evaluation/classification_probability_evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/evaluation/classification_probability_evaluation.md -------------------------------------------------------------------------------- /docs/evaluation/plot_confusion_matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/evaluation/plot_confusion_matrix.md -------------------------------------------------------------------------------- /docs/evaluation/plot_nn_model_performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/evaluation/plot_nn_model_performance.md -------------------------------------------------------------------------------- /docs/evaluation/plot_prediction_area_curves.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/evaluation/plot_prediction_area_curves.md -------------------------------------------------------------------------------- /docs/evaluation/plot_rate_curve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/evaluation/plot_rate_curve.md -------------------------------------------------------------------------------- /docs/exploratory_analyses/chi_square_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/exploratory_analyses/chi_square_test.md -------------------------------------------------------------------------------- /docs/exploratory_analyses/correlation_matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/exploratory_analyses/correlation_matrix.md -------------------------------------------------------------------------------- /docs/exploratory_analyses/covariance_matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/exploratory_analyses/covariance_matrix.md -------------------------------------------------------------------------------- /docs/exploratory_analyses/dbscan.md: -------------------------------------------------------------------------------- 1 | # DBSCAN 2 | 3 | ::: eis_toolkit.exploratory_analyses.dbscan 4 | -------------------------------------------------------------------------------- /docs/exploratory_analyses/descriptive_statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/exploratory_analyses/descriptive_statistics.md -------------------------------------------------------------------------------- /docs/exploratory_analyses/feature_importance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/exploratory_analyses/feature_importance.md -------------------------------------------------------------------------------- /docs/exploratory_analyses/k_means_cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/exploratory_analyses/k_means_cluster.md -------------------------------------------------------------------------------- /docs/exploratory_analyses/local_morans_i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/exploratory_analyses/local_morans_i.md -------------------------------------------------------------------------------- /docs/exploratory_analyses/normality_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/exploratory_analyses/normality_test.md -------------------------------------------------------------------------------- /docs/exploratory_analyses/parallel_coordinates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/exploratory_analyses/parallel_coordinates.md -------------------------------------------------------------------------------- /docs/exploratory_analyses/pca.md: -------------------------------------------------------------------------------- 1 | # PCA 2 | 3 | ::: eis_toolkit.exploratory_analyses.pca -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/prediction/fuzzy_overlay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/prediction/fuzzy_overlay.md -------------------------------------------------------------------------------- /docs/prediction/gradient_boosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/prediction/gradient_boosting.md -------------------------------------------------------------------------------- /docs/prediction/logistic_regression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/prediction/logistic_regression.md -------------------------------------------------------------------------------- /docs/prediction/machine_learning_general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/prediction/machine_learning_general.md -------------------------------------------------------------------------------- /docs/prediction/mlp.md: -------------------------------------------------------------------------------- 1 | # MLP 2 | 3 | ::: eis_toolkit.prediction.mlp 4 | -------------------------------------------------------------------------------- /docs/prediction/random_forests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/prediction/random_forests.md -------------------------------------------------------------------------------- /docs/prediction/weights_of_evidence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/prediction/weights_of_evidence.md -------------------------------------------------------------------------------- /docs/raster_processing/clipping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/clipping.md -------------------------------------------------------------------------------- /docs/raster_processing/create_constant_raster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/create_constant_raster.md -------------------------------------------------------------------------------- /docs/raster_processing/derivatives/classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/derivatives/classification.md -------------------------------------------------------------------------------- /docs/raster_processing/derivatives/parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/derivatives/parameters.md -------------------------------------------------------------------------------- /docs/raster_processing/derivatives/partial_derivatives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/derivatives/partial_derivatives.md -------------------------------------------------------------------------------- /docs/raster_processing/derivatives/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/derivatives/utilities.md -------------------------------------------------------------------------------- /docs/raster_processing/distance_to_anomaly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/distance_to_anomaly.md -------------------------------------------------------------------------------- /docs/raster_processing/extract_values_from_raster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/extract_values_from_raster.md -------------------------------------------------------------------------------- /docs/raster_processing/filters/focal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/filters/focal.md -------------------------------------------------------------------------------- /docs/raster_processing/filters/kernels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/filters/kernels.md -------------------------------------------------------------------------------- /docs/raster_processing/filters/speckle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/filters/speckle.md -------------------------------------------------------------------------------- /docs/raster_processing/filters/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/filters/utilities.md -------------------------------------------------------------------------------- /docs/raster_processing/masking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/masking.md -------------------------------------------------------------------------------- /docs/raster_processing/proximity_to_anomaly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/proximity_to_anomaly.md -------------------------------------------------------------------------------- /docs/raster_processing/reclassify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/reclassify.md -------------------------------------------------------------------------------- /docs/raster_processing/reprojecting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/reprojecting.md -------------------------------------------------------------------------------- /docs/raster_processing/resampling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/resampling.md -------------------------------------------------------------------------------- /docs/raster_processing/snapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/snapping.md -------------------------------------------------------------------------------- /docs/raster_processing/unifying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/unifying.md -------------------------------------------------------------------------------- /docs/raster_processing/unique_combinations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/unique_combinations.md -------------------------------------------------------------------------------- /docs/raster_processing/windowing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/raster_processing/windowing.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/training_data_tools/class_balancing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/training_data_tools/class_balancing.md -------------------------------------------------------------------------------- /docs/training_data_tools/points_to_raster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/training_data_tools/points_to_raster.md -------------------------------------------------------------------------------- /docs/training_data_tools/random_sampling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/training_data_tools/random_sampling.md -------------------------------------------------------------------------------- /docs/transformations/binarize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/transformations/binarize.md -------------------------------------------------------------------------------- /docs/transformations/clip.md: -------------------------------------------------------------------------------- 1 | # Clip 2 | 3 | ::: eis_toolkit.transformations.clip -------------------------------------------------------------------------------- /docs/transformations/coda/alr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/transformations/coda/alr.md -------------------------------------------------------------------------------- /docs/transformations/coda/clr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/transformations/coda/clr.md -------------------------------------------------------------------------------- /docs/transformations/coda/ilr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/transformations/coda/ilr.md -------------------------------------------------------------------------------- /docs/transformations/coda/pairwise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/transformations/coda/pairwise.md -------------------------------------------------------------------------------- /docs/transformations/coda/plr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/transformations/coda/plr.md -------------------------------------------------------------------------------- /docs/transformations/linear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/transformations/linear.md -------------------------------------------------------------------------------- /docs/transformations/logarithmic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/transformations/logarithmic.md -------------------------------------------------------------------------------- /docs/transformations/one_hot_encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/transformations/one_hot_encoding.md -------------------------------------------------------------------------------- /docs/transformations/sigmoid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/transformations/sigmoid.md -------------------------------------------------------------------------------- /docs/transformations/winsorize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/transformations/winsorize.md -------------------------------------------------------------------------------- /docs/utilities/file_io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/utilities/file_io.md -------------------------------------------------------------------------------- /docs/utilities/nodata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/utilities/nodata.md -------------------------------------------------------------------------------- /docs/utilities/raster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/utilities/raster.md -------------------------------------------------------------------------------- /docs/vector_processing/calculate_geometry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/vector_processing/calculate_geometry.md -------------------------------------------------------------------------------- /docs/vector_processing/cell_based_association.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/vector_processing/cell_based_association.md -------------------------------------------------------------------------------- /docs/vector_processing/distance_computation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/vector_processing/distance_computation.md -------------------------------------------------------------------------------- /docs/vector_processing/extract_shared_lines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/vector_processing/extract_shared_lines.md -------------------------------------------------------------------------------- /docs/vector_processing/idw_interpolation.md: -------------------------------------------------------------------------------- 1 | # IDW 2 | 3 | ::: eis_toolkit.vector_processing.idw_interpolation -------------------------------------------------------------------------------- /docs/vector_processing/kriging_interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/vector_processing/kriging_interpolation.md -------------------------------------------------------------------------------- /docs/vector_processing/proximity_computation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/vector_processing/proximity_computation.md -------------------------------------------------------------------------------- /docs/vector_processing/rasterize_vector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/vector_processing/rasterize_vector.md -------------------------------------------------------------------------------- /docs/vector_processing/reproject_vector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/vector_processing/reproject_vector.md -------------------------------------------------------------------------------- /docs/vector_processing/vector_density.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs/vector_processing/vector_density.md -------------------------------------------------------------------------------- /docs_assets/theme/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/docs_assets/theme/main.html -------------------------------------------------------------------------------- /eis_toolkit/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.1.6" 2 | -------------------------------------------------------------------------------- /eis_toolkit/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/__main__.py -------------------------------------------------------------------------------- /eis_toolkit/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/cli.py -------------------------------------------------------------------------------- /eis_toolkit/conversions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eis_toolkit/conversions/csv_to_geodataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/conversions/csv_to_geodataframe.py -------------------------------------------------------------------------------- /eis_toolkit/conversions/raster_to_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/conversions/raster_to_dataframe.py -------------------------------------------------------------------------------- /eis_toolkit/evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eis_toolkit/evaluation/calculate_base_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/evaluation/calculate_base_metrics.py -------------------------------------------------------------------------------- /eis_toolkit/evaluation/classification_label_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/evaluation/classification_label_evaluation.py -------------------------------------------------------------------------------- /eis_toolkit/evaluation/classification_probability_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/evaluation/classification_probability_evaluation.py -------------------------------------------------------------------------------- /eis_toolkit/evaluation/plot_confusion_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/evaluation/plot_confusion_matrix.py -------------------------------------------------------------------------------- /eis_toolkit/evaluation/plot_nn_model_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/evaluation/plot_nn_model_performance.py -------------------------------------------------------------------------------- /eis_toolkit/evaluation/plot_prediction_area_curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/evaluation/plot_prediction_area_curves.py -------------------------------------------------------------------------------- /eis_toolkit/evaluation/plot_rate_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/evaluation/plot_rate_curve.py -------------------------------------------------------------------------------- /eis_toolkit/evaluation/scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/evaluation/scoring.py -------------------------------------------------------------------------------- /eis_toolkit/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exceptions.py -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/basic_plots_seaborn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exploratory_analyses/basic_plots_seaborn.py -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/chi_square_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exploratory_analyses/chi_square_test.py -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/correlation_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exploratory_analyses/correlation_matrix.py -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/covariance_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exploratory_analyses/covariance_matrix.py -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/dbscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exploratory_analyses/dbscan.py -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/descriptive_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exploratory_analyses/descriptive_statistics.py -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/feature_importance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exploratory_analyses/feature_importance.py -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/k_means_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exploratory_analyses/k_means_cluster.py -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/local_morans_i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exploratory_analyses/local_morans_i.py -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/normality_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exploratory_analyses/normality_test.py -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/parallel_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exploratory_analyses/parallel_coordinates.py -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exploratory_analyses/pca.py -------------------------------------------------------------------------------- /eis_toolkit/exploratory_analyses/plot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/exploratory_analyses/plot_utils.py -------------------------------------------------------------------------------- /eis_toolkit/prediction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eis_toolkit/prediction/fuzzy_overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/prediction/fuzzy_overlay.py -------------------------------------------------------------------------------- /eis_toolkit/prediction/gradient_boosting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/prediction/gradient_boosting.py -------------------------------------------------------------------------------- /eis_toolkit/prediction/logistic_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/prediction/logistic_regression.py -------------------------------------------------------------------------------- /eis_toolkit/prediction/machine_learning_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/prediction/machine_learning_general.py -------------------------------------------------------------------------------- /eis_toolkit/prediction/machine_learning_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/prediction/machine_learning_predict.py -------------------------------------------------------------------------------- /eis_toolkit/prediction/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/prediction/mlp.py -------------------------------------------------------------------------------- /eis_toolkit/prediction/random_forests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/prediction/random_forests.py -------------------------------------------------------------------------------- /eis_toolkit/prediction/weights_of_evidence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/prediction/weights_of_evidence.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/clipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/clipping.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/create_constant_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/create_constant_raster.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/derivatives/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/derivatives/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/derivatives/classification.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/derivatives/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/derivatives/parameters.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/derivatives/partial_derivatives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/derivatives/partial_derivatives.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/derivatives/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/derivatives/utilities.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/distance_to_anomaly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/distance_to_anomaly.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/extract_values_from_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/extract_values_from_raster.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/filters/focal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/filters/focal.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/filters/kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/filters/kernels.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/filters/speckle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/filters/speckle.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/filters/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/filters/utilities.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/masking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/masking.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/proximity_to_anomaly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/proximity_to_anomaly.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/reclassify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/reclassify.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/reprojecting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/reprojecting.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/resampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/resampling.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/snapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/snapping.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/unifying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/unifying.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/unique_combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/unique_combinations.py -------------------------------------------------------------------------------- /eis_toolkit/raster_processing/windowing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/raster_processing/windowing.py -------------------------------------------------------------------------------- /eis_toolkit/training_data_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eis_toolkit/training_data_tools/class_balancing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/training_data_tools/class_balancing.py -------------------------------------------------------------------------------- /eis_toolkit/training_data_tools/points_to_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/training_data_tools/points_to_raster.py -------------------------------------------------------------------------------- /eis_toolkit/training_data_tools/random_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/training_data_tools/random_sampling.py -------------------------------------------------------------------------------- /eis_toolkit/transformations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eis_toolkit/transformations/binarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/transformations/binarize.py -------------------------------------------------------------------------------- /eis_toolkit/transformations/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/transformations/clip.py -------------------------------------------------------------------------------- /eis_toolkit/transformations/coda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eis_toolkit/transformations/coda/alr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/transformations/coda/alr.py -------------------------------------------------------------------------------- /eis_toolkit/transformations/coda/clr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/transformations/coda/clr.py -------------------------------------------------------------------------------- /eis_toolkit/transformations/coda/ilr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/transformations/coda/ilr.py -------------------------------------------------------------------------------- /eis_toolkit/transformations/coda/pairwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/transformations/coda/pairwise.py -------------------------------------------------------------------------------- /eis_toolkit/transformations/coda/plr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/transformations/coda/plr.py -------------------------------------------------------------------------------- /eis_toolkit/transformations/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/transformations/linear.py -------------------------------------------------------------------------------- /eis_toolkit/transformations/logarithmic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/transformations/logarithmic.py -------------------------------------------------------------------------------- /eis_toolkit/transformations/one_hot_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/transformations/one_hot_encoding.py -------------------------------------------------------------------------------- /eis_toolkit/transformations/sigmoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/transformations/sigmoid.py -------------------------------------------------------------------------------- /eis_toolkit/transformations/winsorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/transformations/winsorize.py -------------------------------------------------------------------------------- /eis_toolkit/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eis_toolkit/utilities/aitchison_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/utilities/aitchison_geometry.py -------------------------------------------------------------------------------- /eis_toolkit/utilities/checks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eis_toolkit/utilities/checks/compositional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/utilities/checks/compositional.py -------------------------------------------------------------------------------- /eis_toolkit/utilities/checks/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/utilities/checks/dataframe.py -------------------------------------------------------------------------------- /eis_toolkit/utilities/checks/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/utilities/checks/geometry.py -------------------------------------------------------------------------------- /eis_toolkit/utilities/checks/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/utilities/checks/parameter.py -------------------------------------------------------------------------------- /eis_toolkit/utilities/checks/raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/utilities/checks/raster.py -------------------------------------------------------------------------------- /eis_toolkit/utilities/conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/utilities/conversions.py -------------------------------------------------------------------------------- /eis_toolkit/utilities/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/utilities/file_io.py -------------------------------------------------------------------------------- /eis_toolkit/utilities/gdal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/utilities/gdal.py -------------------------------------------------------------------------------- /eis_toolkit/utilities/miscellaneous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/utilities/miscellaneous.py -------------------------------------------------------------------------------- /eis_toolkit/utilities/nodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/utilities/nodata.py -------------------------------------------------------------------------------- /eis_toolkit/utilities/raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/utilities/raster.py -------------------------------------------------------------------------------- /eis_toolkit/vector_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eis_toolkit/vector_processing/_distance_computation_numba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/vector_processing/_distance_computation_numba.py -------------------------------------------------------------------------------- /eis_toolkit/vector_processing/calculate_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/vector_processing/calculate_geometry.py -------------------------------------------------------------------------------- /eis_toolkit/vector_processing/cell_based_association.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/vector_processing/cell_based_association.py -------------------------------------------------------------------------------- /eis_toolkit/vector_processing/distance_computation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/vector_processing/distance_computation.py -------------------------------------------------------------------------------- /eis_toolkit/vector_processing/extract_shared_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/vector_processing/extract_shared_lines.py -------------------------------------------------------------------------------- /eis_toolkit/vector_processing/idw_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/vector_processing/idw_interpolation.py -------------------------------------------------------------------------------- /eis_toolkit/vector_processing/kriging_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/vector_processing/kriging_interpolation.py -------------------------------------------------------------------------------- /eis_toolkit/vector_processing/proximity_computation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/vector_processing/proximity_computation.py -------------------------------------------------------------------------------- /eis_toolkit/vector_processing/rasterize_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/vector_processing/rasterize_vector.py -------------------------------------------------------------------------------- /eis_toolkit/vector_processing/reproject_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/vector_processing/reproject_vector.py -------------------------------------------------------------------------------- /eis_toolkit/vector_processing/vector_density.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/vector_processing/vector_density.py -------------------------------------------------------------------------------- /eis_toolkit/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/eis_toolkit/warnings.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/environment.yml -------------------------------------------------------------------------------- /instructions/dev_setup_with_docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/instructions/dev_setup_with_docker.md -------------------------------------------------------------------------------- /instructions/dev_setup_without_docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/instructions/dev_setup_without_docker.md -------------------------------------------------------------------------------- /instructions/dev_setup_without_docker_with_conda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/instructions/dev_setup_without_docker_with_conda.md -------------------------------------------------------------------------------- /instructions/generating_dependency_licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/instructions/generating_dependency_licenses.md -------------------------------------------------------------------------------- /instructions/generating_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/instructions/generating_documentation.md -------------------------------------------------------------------------------- /instructions/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/instructions/testing.md -------------------------------------------------------------------------------- /instructions/using_jupyterlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/instructions/using_jupyterlab.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/mypy.ini -------------------------------------------------------------------------------- /notebooks/cba_introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/cba_introduction.ipynb -------------------------------------------------------------------------------- /notebooks/csv_to_geopandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/csv_to_geopandas.ipynb -------------------------------------------------------------------------------- /notebooks/distance_to_anomaly.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/distance_to_anomaly.ipynb -------------------------------------------------------------------------------- /notebooks/eis_toolkit_and_notebooks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/eis_toolkit_and_notebooks.ipynb -------------------------------------------------------------------------------- /notebooks/evaluation_functions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/evaluation_functions.ipynb -------------------------------------------------------------------------------- /notebooks/jupyter_introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/jupyter_introduction.ipynb -------------------------------------------------------------------------------- /notebooks/machine_learning_rf_gb_lr.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/machine_learning_rf_gb_lr.ipynb -------------------------------------------------------------------------------- /notebooks/parallel_coordinates.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/parallel_coordinates.ipynb -------------------------------------------------------------------------------- /notebooks/testing_calculate_geometry.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_calculate_geometry.ipynb -------------------------------------------------------------------------------- /notebooks/testing_classifier_evaluation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_classifier_evaluation.ipynb -------------------------------------------------------------------------------- /notebooks/testing_clip.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_clip.ipynb -------------------------------------------------------------------------------- /notebooks/testing_extract_shared_lines.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_extract_shared_lines.ipynb -------------------------------------------------------------------------------- /notebooks/testing_filters.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_filters.ipynb -------------------------------------------------------------------------------- /notebooks/testing_idw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_idw.ipynb -------------------------------------------------------------------------------- /notebooks/testing_kriging.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_kriging.ipynb -------------------------------------------------------------------------------- /notebooks/testing_local_morans_i.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_local_morans_i.ipynb -------------------------------------------------------------------------------- /notebooks/testing_logratio_transformations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_logratio_transformations.ipynb -------------------------------------------------------------------------------- /notebooks/testing_pca.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_pca.ipynb -------------------------------------------------------------------------------- /notebooks/testing_plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_plots.ipynb -------------------------------------------------------------------------------- /notebooks/testing_points_to_raster.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_points_to_raster.ipynb -------------------------------------------------------------------------------- /notebooks/testing_proximity_computation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_proximity_computation.ipynb -------------------------------------------------------------------------------- /notebooks/testing_random_sampling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_random_sampling.ipynb -------------------------------------------------------------------------------- /notebooks/testing_surface_attributes_and_derivatives.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_surface_attributes_and_derivatives.ipynb -------------------------------------------------------------------------------- /notebooks/testing_unify_raster_grids.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/testing_unify_raster_grids.ipynb -------------------------------------------------------------------------------- /notebooks/weights_of_evidence.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/weights_of_evidence.ipynb -------------------------------------------------------------------------------- /notebooks/workflow_demonstration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/notebooks/workflow_demonstration.ipynb -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/checks/check_raster_grids_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/checks/check_raster_grids_test.py -------------------------------------------------------------------------------- /tests/conversions/csv_to_geodataframe_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/conversions/csv_to_geodataframe_test.py -------------------------------------------------------------------------------- /tests/conversions/raster_to_dataframe_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/conversions/raster_to_dataframe_test.py -------------------------------------------------------------------------------- /tests/data/local/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/local/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/local/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/remote/IOCG_CLB_Till_Geochem_reg_511p.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/IOCG_CLB_Till_Geochem_reg_511p.gpkg -------------------------------------------------------------------------------- /tests/data/remote/Test_CBA_matrix.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/Test_CBA_matrix.geojson -------------------------------------------------------------------------------- /tests/data/remote/Test_CBA_matrix.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/Test_CBA_matrix.tif -------------------------------------------------------------------------------- /tests/data/remote/Test_CBA_matrix__epsg_2154.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/Test_CBA_matrix__epsg_2154.csv -------------------------------------------------------------------------------- /tests/data/remote/Test_CBA_matrix_check.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/Test_CBA_matrix_check.tif -------------------------------------------------------------------------------- /tests/data/remote/Test_Faults.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/Test_Faults.geojson -------------------------------------------------------------------------------- /tests/data/remote/Test_Litho.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/Test_Litho.geojson -------------------------------------------------------------------------------- /tests/data/remote/Test_Occ.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/Test_Occ.geojson -------------------------------------------------------------------------------- /tests/data/remote/extract_raster_values/extract_raster_values_points.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/extract_raster_values/extract_raster_values_points.dbf -------------------------------------------------------------------------------- /tests/data/remote/extract_raster_values/extract_raster_values_points.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/extract_raster_values/extract_raster_values_points.prj -------------------------------------------------------------------------------- /tests/data/remote/extract_raster_values/extract_raster_values_points.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/extract_raster_values/extract_raster_values_points.shp -------------------------------------------------------------------------------- /tests/data/remote/extract_raster_values/extract_raster_values_points.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/extract_raster_values/extract_raster_values_points.shx -------------------------------------------------------------------------------- /tests/data/remote/fake_smote_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/fake_smote_data.csv -------------------------------------------------------------------------------- /tests/data/remote/interpolating/idw_radius_test_data.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/interpolating/idw_radius_test_data.tif -------------------------------------------------------------------------------- /tests/data/remote/interpolating/idw_result_qgis.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/interpolating/idw_result_qgis.tif -------------------------------------------------------------------------------- /tests/data/remote/interpolating/idw_result_qgis.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/interpolating/idw_result_qgis.tif.aux.xml -------------------------------------------------------------------------------- /tests/data/remote/interpolating/idw_test_data.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/interpolating/idw_test_data.tif -------------------------------------------------------------------------------- /tests/data/remote/interpolating/interpolation_test_data_small.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/interpolating/interpolation_test_data_small.gpkg -------------------------------------------------------------------------------- /tests/data/remote/nonsquared_pixelsize_raster.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/nonsquared_pixelsize_raster.tif -------------------------------------------------------------------------------- /tests/data/remote/nonsquared_pixelsize_raster.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/nonsquared_pixelsize_raster.tif.aux.xml -------------------------------------------------------------------------------- /tests/data/remote/point.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/point.gpkg -------------------------------------------------------------------------------- /tests/data/remote/small_area.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 2 | -------------------------------------------------------------------------------- /tests/data/remote/small_area.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_area.dbf -------------------------------------------------------------------------------- /tests/data/remote/small_area.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_area.geojson -------------------------------------------------------------------------------- /tests/data/remote/small_area.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_area.prj -------------------------------------------------------------------------------- /tests/data/remote/small_area.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_area.qmd -------------------------------------------------------------------------------- /tests/data/remote/small_area.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_area.shp -------------------------------------------------------------------------------- /tests/data/remote/small_area.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_area.shx -------------------------------------------------------------------------------- /tests/data/remote/small_area_reprojected.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /tests/data/remote/small_area_reprojected.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_area_reprojected.dbf -------------------------------------------------------------------------------- /tests/data/remote/small_area_reprojected.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_area_reprojected.prj -------------------------------------------------------------------------------- /tests/data/remote/small_area_reprojected.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_area_reprojected.qmd -------------------------------------------------------------------------------- /tests/data/remote/small_area_reprojected.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_area_reprojected.shp -------------------------------------------------------------------------------- /tests/data/remote/small_area_reprojected.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_area_reprojected.shx -------------------------------------------------------------------------------- /tests/data/remote/small_raster.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_raster.tif -------------------------------------------------------------------------------- /tests/data/remote/small_raster.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_raster.tif.aux.xml -------------------------------------------------------------------------------- /tests/data/remote/small_raster_EPSG4326.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_raster_EPSG4326.tif -------------------------------------------------------------------------------- /tests/data/remote/small_raster_clipped.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_raster_clipped.tif -------------------------------------------------------------------------------- /tests/data/remote/small_raster_multiband.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_raster_multiband.tif -------------------------------------------------------------------------------- /tests/data/remote/small_raster_qgis_kkj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/small_raster_qgis_kkj.tif -------------------------------------------------------------------------------- /tests/data/remote/smaller_raster.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/smaller_raster.tif -------------------------------------------------------------------------------- /tests/data/remote/smaller_raster.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/smaller_raster.tif.aux.xml -------------------------------------------------------------------------------- /tests/data/remote/snapping/clipped_snap_raster.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/snapping/clipped_snap_raster.tif -------------------------------------------------------------------------------- /tests/data/remote/snapping/snap_raster.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/snapping/snap_raster.tif -------------------------------------------------------------------------------- /tests/data/remote/snapping/snap_raster.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/snapping/snap_raster.tif.aux.xml -------------------------------------------------------------------------------- /tests/data/remote/snapping/snap_test_raster_nonsquare.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/snapping/snap_test_raster_nonsquare.tif -------------------------------------------------------------------------------- /tests/data/remote/snapping/snap_test_raster_outofbounds.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/snapping/snap_test_raster_outofbounds.tif -------------------------------------------------------------------------------- /tests/data/remote/snapping/snap_test_raster_right_bottom.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/snapping/snap_test_raster_right_bottom.tif -------------------------------------------------------------------------------- /tests/data/remote/snapping/snap_test_raster_right_top.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/snapping/snap_test_raster_right_top.tif -------------------------------------------------------------------------------- /tests/data/remote/snapping/snap_test_raster_smaller_cells.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/snapping/snap_test_raster_smaller_cells.tif -------------------------------------------------------------------------------- /tests/data/remote/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/test.csv -------------------------------------------------------------------------------- /tests/data/remote/test.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/test.gpkg -------------------------------------------------------------------------------- /tests/data/remote/test_zero_values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/test_zero_values.csv -------------------------------------------------------------------------------- /tests/data/remote/unifying/raster_to_unify_1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/unifying/raster_to_unify_1.tif -------------------------------------------------------------------------------- /tests/data/remote/unifying/raster_to_unify_2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/unifying/raster_to_unify_2.tif -------------------------------------------------------------------------------- /tests/data/remote/wofe/wofe_deposits.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /tests/data/remote/wofe/wofe_deposits.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/wofe/wofe_deposits.dbf -------------------------------------------------------------------------------- /tests/data/remote/wofe/wofe_deposits.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/wofe/wofe_deposits.prj -------------------------------------------------------------------------------- /tests/data/remote/wofe/wofe_deposits.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/wofe/wofe_deposits.sbn -------------------------------------------------------------------------------- /tests/data/remote/wofe/wofe_deposits.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/wofe/wofe_deposits.sbx -------------------------------------------------------------------------------- /tests/data/remote/wofe/wofe_deposits.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/wofe/wofe_deposits.shp -------------------------------------------------------------------------------- /tests/data/remote/wofe/wofe_deposits.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/wofe/wofe_deposits.shx -------------------------------------------------------------------------------- /tests/data/remote/wofe/wofe_deposits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/wofe/wofe_deposits.xml -------------------------------------------------------------------------------- /tests/data/remote/wofe/wofe_evidence_raster.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/data/remote/wofe/wofe_evidence_raster.tif -------------------------------------------------------------------------------- /tests/eis_toolkit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/eis_toolkit_test.py -------------------------------------------------------------------------------- /tests/evaluation/calculate_base_metrics_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/evaluation/calculate_base_metrics_test.py -------------------------------------------------------------------------------- /tests/evaluation/plot_confusion_matrix_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/evaluation/plot_confusion_matrix_test.py -------------------------------------------------------------------------------- /tests/evaluation/plot_nn_model_performance_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/evaluation/plot_nn_model_performance_test.py -------------------------------------------------------------------------------- /tests/evaluation/plot_prediction_area_curves_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/evaluation/plot_prediction_area_curves_test.py -------------------------------------------------------------------------------- /tests/evaluation/plot_rate_curve_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/evaluation/plot_rate_curve_test.py -------------------------------------------------------------------------------- /tests/evaluation/scoring_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/evaluation/scoring_test.py -------------------------------------------------------------------------------- /tests/exploratory_analyses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/exploratory_analyses/chi_square_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/exploratory_analyses/chi_square_test.py -------------------------------------------------------------------------------- /tests/exploratory_analyses/correlation_matrix_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/exploratory_analyses/correlation_matrix_test.py -------------------------------------------------------------------------------- /tests/exploratory_analyses/covariance_matrix_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/exploratory_analyses/covariance_matrix_test.py -------------------------------------------------------------------------------- /tests/exploratory_analyses/dbscan_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/exploratory_analyses/dbscan_test.py -------------------------------------------------------------------------------- /tests/exploratory_analyses/descriptive_statistics_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/exploratory_analyses/descriptive_statistics_test.py -------------------------------------------------------------------------------- /tests/exploratory_analyses/feature_importance_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/exploratory_analyses/feature_importance_test.py -------------------------------------------------------------------------------- /tests/exploratory_analyses/k_means_cluster_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/exploratory_analyses/k_means_cluster_test.py -------------------------------------------------------------------------------- /tests/exploratory_analyses/local_morans_i_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/exploratory_analyses/local_morans_i_test.py -------------------------------------------------------------------------------- /tests/exploratory_analyses/normality_test_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/exploratory_analyses/normality_test_test.py -------------------------------------------------------------------------------- /tests/exploratory_analyses/pca_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/exploratory_analyses/pca_test.py -------------------------------------------------------------------------------- /tests/prediction/fuzzy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/prediction/fuzzy_test.py -------------------------------------------------------------------------------- /tests/prediction/gradient_boosting_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/prediction/gradient_boosting_test.py -------------------------------------------------------------------------------- /tests/prediction/logistic_regression_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/prediction/logistic_regression_test.py -------------------------------------------------------------------------------- /tests/prediction/machine_learning_general_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/prediction/machine_learning_general_test.py -------------------------------------------------------------------------------- /tests/prediction/mlp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/prediction/mlp_test.py -------------------------------------------------------------------------------- /tests/prediction/random_forest_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/prediction/random_forest_test.py -------------------------------------------------------------------------------- /tests/prediction/weights_of_evidence_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/prediction/weights_of_evidence_test.py -------------------------------------------------------------------------------- /tests/raster_processing/clip_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/clip_test.py -------------------------------------------------------------------------------- /tests/raster_processing/create_constant_raster_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/create_constant_raster_test.py -------------------------------------------------------------------------------- /tests/raster_processing/derivatives/classify_aspect_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/derivatives/classify_aspect_test.py -------------------------------------------------------------------------------- /tests/raster_processing/derivatives/first_order_derivatives_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/derivatives/first_order_derivatives_test.py -------------------------------------------------------------------------------- /tests/raster_processing/derivatives/second_order_derivatives_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/derivatives/second_order_derivatives_test.py -------------------------------------------------------------------------------- /tests/raster_processing/extract_values_from_raster_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/extract_values_from_raster_test.py -------------------------------------------------------------------------------- /tests/raster_processing/filters/focal_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/filters/focal_test.py -------------------------------------------------------------------------------- /tests/raster_processing/filters/frost_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/filters/frost_test.py -------------------------------------------------------------------------------- /tests/raster_processing/filters/gamma_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/filters/gamma_test.py -------------------------------------------------------------------------------- /tests/raster_processing/filters/gaussian_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/filters/gaussian_test.py -------------------------------------------------------------------------------- /tests/raster_processing/filters/kuan_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/filters/kuan_test.py -------------------------------------------------------------------------------- /tests/raster_processing/filters/lee_additive_multiplicative_noise_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/filters/lee_additive_multiplicative_noise_test.py -------------------------------------------------------------------------------- /tests/raster_processing/filters/lee_additive_noise_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/filters/lee_additive_noise_test.py -------------------------------------------------------------------------------- /tests/raster_processing/filters/lee_enhanced_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/filters/lee_enhanced_test.py -------------------------------------------------------------------------------- /tests/raster_processing/filters/lee_multiplicative_noise_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/filters/lee_multiplicative_noise_test.py -------------------------------------------------------------------------------- /tests/raster_processing/filters/mexican_hat_filter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/filters/mexican_hat_filter_test.py -------------------------------------------------------------------------------- /tests/raster_processing/masking_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/masking_test.py -------------------------------------------------------------------------------- /tests/raster_processing/reclassify_raster_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/reclassify_raster_test.py -------------------------------------------------------------------------------- /tests/raster_processing/reproject_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/reproject_test.py -------------------------------------------------------------------------------- /tests/raster_processing/resample_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/resample_test.py -------------------------------------------------------------------------------- /tests/raster_processing/snap_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/snap_test.py -------------------------------------------------------------------------------- /tests/raster_processing/test_distance_to_anomaly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/test_distance_to_anomaly.py -------------------------------------------------------------------------------- /tests/raster_processing/unify_raster_grids_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/unify_raster_grids_test.py -------------------------------------------------------------------------------- /tests/raster_processing/unique_combinations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/unique_combinations_test.py -------------------------------------------------------------------------------- /tests/raster_processing/window_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/raster_processing/window_test.py -------------------------------------------------------------------------------- /tests/training_data_tools/class_balancing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/training_data_tools/class_balancing_test.py -------------------------------------------------------------------------------- /tests/training_data_tools/points_to_raster_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/training_data_tools/points_to_raster_test.py -------------------------------------------------------------------------------- /tests/training_data_tools/random_sampling_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/training_data_tools/random_sampling_test.py -------------------------------------------------------------------------------- /tests/transformations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/transformations/__init__.py -------------------------------------------------------------------------------- /tests/transformations/binarize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/transformations/binarize_test.py -------------------------------------------------------------------------------- /tests/transformations/clip_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/transformations/clip_test.py -------------------------------------------------------------------------------- /tests/transformations/coda/alr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/transformations/coda/alr_test.py -------------------------------------------------------------------------------- /tests/transformations/coda/clr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/transformations/coda/clr_test.py -------------------------------------------------------------------------------- /tests/transformations/coda/ilr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/transformations/coda/ilr_test.py -------------------------------------------------------------------------------- /tests/transformations/coda/pairwise_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/transformations/coda/pairwise_test.py -------------------------------------------------------------------------------- /tests/transformations/coda/plr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/transformations/coda/plr_test.py -------------------------------------------------------------------------------- /tests/transformations/linear_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/transformations/linear_test.py -------------------------------------------------------------------------------- /tests/transformations/logarithmic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/transformations/logarithmic_test.py -------------------------------------------------------------------------------- /tests/transformations/one_hot_encode_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/transformations/one_hot_encode_test.py -------------------------------------------------------------------------------- /tests/transformations/sigmoid_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/transformations/sigmoid_test.py -------------------------------------------------------------------------------- /tests/transformations/winsorize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/transformations/winsorize_test.py -------------------------------------------------------------------------------- /tests/utilities/aitchison_geometry_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/utilities/aitchison_geometry_test.py -------------------------------------------------------------------------------- /tests/utilities/compositional_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/utilities/compositional_test.py -------------------------------------------------------------------------------- /tests/utilities/conversions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/utilities/conversions_test.py -------------------------------------------------------------------------------- /tests/utilities/miscellaneous_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/utilities/miscellaneous_test.py -------------------------------------------------------------------------------- /tests/utilities/nodata_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/utilities/nodata_test.py -------------------------------------------------------------------------------- /tests/utilities/raster_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/utilities/raster_test.py -------------------------------------------------------------------------------- /tests/vector_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/vector_processing/calculate_geometry_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/vector_processing/calculate_geometry_test.py -------------------------------------------------------------------------------- /tests/vector_processing/cell_based_association_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/vector_processing/cell_based_association_test.py -------------------------------------------------------------------------------- /tests/vector_processing/distance_computation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/vector_processing/distance_computation_test.py -------------------------------------------------------------------------------- /tests/vector_processing/extract_shared_lines_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/vector_processing/extract_shared_lines_test.py -------------------------------------------------------------------------------- /tests/vector_processing/idw_interpolation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/vector_processing/idw_interpolation_test.py -------------------------------------------------------------------------------- /tests/vector_processing/kriging_interpolation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/vector_processing/kriging_interpolation_test.py -------------------------------------------------------------------------------- /tests/vector_processing/proximity_computation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/vector_processing/proximity_computation_test.py -------------------------------------------------------------------------------- /tests/vector_processing/rasterize_vector_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/vector_processing/rasterize_vector_test.py -------------------------------------------------------------------------------- /tests/vector_processing/reproject_vector_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/vector_processing/reproject_vector_test.py -------------------------------------------------------------------------------- /tests/vector_processing/vector_density_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GispoCoding/eis_toolkit/HEAD/tests/vector_processing/vector_density_test.py --------------------------------------------------------------------------------