├── HoughTransform_lib.c ├── HoughTransform_lib.so ├── LICENSE ├── README.md ├── africa ├── .ipynb_checkpoints │ └── 9_preprocessing_road_and_building_data-checkpoint.ipynb ├── 10_road_modeling_and_pole_prediction.py ├── 11_dijkstria_algorithm.py ├── 12_line_prediction_test_overall.py ├── 1_search_area_GSV.py ├── 2_download_area_GSV.py ├── 3_predict_line_CAM_pytorch.py ├── 4_CAM_to_line_directions.py ├── 5_merge_line_directions.py ├── 6_predict_pole_CAM_pytorch.py ├── 7_CAM_to_pole_LOBs.py ├── 8_LOB_to_pole_locations.py ├── 9_preprocessing_road_and_building_data.ipynb ├── HoughTransform_lib.c ├── HoughTransform_lib.so ├── __init__.py ├── __pycache__ │ ├── census_tract_locator.cpython-36.pyc │ ├── dijkstra.cpython-36.pyc │ ├── evaluation_utils.cpython-36.pyc │ ├── feature_engineering.cpython-36.pyc │ ├── image_dataset.cpython-36.pyc │ ├── inception_modified.cpython-36.pyc │ ├── region_locator.cpython-36.pyc │ ├── streetView.cpython-36.pyc │ └── utils.cpython-36.pyc ├── census_tract_locator.py ├── dijkstra.py ├── evaluation_utils.py ├── feature_engineering.py ├── image_dataset.py ├── inception_modified.py ├── region_locator.py ├── streetView.py └── utils.py ├── california ├── .ipynb_checkpoints │ ├── 12_line_prediction_model_development-checkpoint.ipynb │ └── 9_preprocessing_road_and_building_data-checkpoint.ipynb ├── 10_road_modeling_and_pole_prediction.py ├── 11_dijkstria_algorithm.py ├── 12_line_prediction_model_development.ipynb ├── 12_line_prediction_test_overall.py ├── 13_connect_underground.py ├── 1_search_area_GSV.py ├── 2_download_area_GSV.py ├── 3_predict_line_CAM_pytorch.py ├── 4_CAM_to_line_directions.py ├── 5_merge_line_directions.py ├── 6_predict_pole_CAM_pytorch.py ├── 7_CAM_to_pole_LOBs.py ├── 8_LOB_to_pole_locations.py ├── 9_preprocessing_road_and_building_data.ipynb ├── HoughTransform_lib.c ├── HoughTransform_lib.so ├── __init__.py ├── __pycache__ │ ├── census_tract_locator.cpython-36.pyc │ ├── dijkstra.cpython-36.pyc │ ├── evaluation_utils.cpython-36.pyc │ ├── feature_engineering.cpython-36.pyc │ ├── image_dataset.cpython-36.pyc │ ├── inception_modified.cpython-36.pyc │ └── utils.cpython-36.pyc ├── census_tract_locator.py ├── dijkstra.py ├── evaluation_utils.py ├── feature_engineering.py ├── image_dataset.py ├── inception_modified.py ├── model_selection.py ├── streetView.py └── utils.py ├── model_dev ├── __init__.py ├── __pycache__ │ ├── image_dataset.cpython-36.pyc │ └── inception_modified.cpython-36.pyc ├── image_dataset.py ├── inception_modified.py ├── test_CAM_branch_pytorch.py ├── test_classification_pytorch.py ├── train_CAM_branch_pytorch.py └── train_classification_pytorch.py └── requirements.txt /HoughTransform_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/HoughTransform_lib.c -------------------------------------------------------------------------------- /HoughTransform_lib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/HoughTransform_lib.so -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/README.md -------------------------------------------------------------------------------- /africa/.ipynb_checkpoints/9_preprocessing_road_and_building_data-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/.ipynb_checkpoints/9_preprocessing_road_and_building_data-checkpoint.ipynb -------------------------------------------------------------------------------- /africa/10_road_modeling_and_pole_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/10_road_modeling_and_pole_prediction.py -------------------------------------------------------------------------------- /africa/11_dijkstria_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/11_dijkstria_algorithm.py -------------------------------------------------------------------------------- /africa/12_line_prediction_test_overall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/12_line_prediction_test_overall.py -------------------------------------------------------------------------------- /africa/1_search_area_GSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/1_search_area_GSV.py -------------------------------------------------------------------------------- /africa/2_download_area_GSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/2_download_area_GSV.py -------------------------------------------------------------------------------- /africa/3_predict_line_CAM_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/3_predict_line_CAM_pytorch.py -------------------------------------------------------------------------------- /africa/4_CAM_to_line_directions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/4_CAM_to_line_directions.py -------------------------------------------------------------------------------- /africa/5_merge_line_directions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/5_merge_line_directions.py -------------------------------------------------------------------------------- /africa/6_predict_pole_CAM_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/6_predict_pole_CAM_pytorch.py -------------------------------------------------------------------------------- /africa/7_CAM_to_pole_LOBs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/7_CAM_to_pole_LOBs.py -------------------------------------------------------------------------------- /africa/8_LOB_to_pole_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/8_LOB_to_pole_locations.py -------------------------------------------------------------------------------- /africa/9_preprocessing_road_and_building_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/9_preprocessing_road_and_building_data.ipynb -------------------------------------------------------------------------------- /africa/HoughTransform_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/HoughTransform_lib.c -------------------------------------------------------------------------------- /africa/HoughTransform_lib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/HoughTransform_lib.so -------------------------------------------------------------------------------- /africa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /africa/__pycache__/census_tract_locator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/__pycache__/census_tract_locator.cpython-36.pyc -------------------------------------------------------------------------------- /africa/__pycache__/dijkstra.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/__pycache__/dijkstra.cpython-36.pyc -------------------------------------------------------------------------------- /africa/__pycache__/evaluation_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/__pycache__/evaluation_utils.cpython-36.pyc -------------------------------------------------------------------------------- /africa/__pycache__/feature_engineering.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/__pycache__/feature_engineering.cpython-36.pyc -------------------------------------------------------------------------------- /africa/__pycache__/image_dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/__pycache__/image_dataset.cpython-36.pyc -------------------------------------------------------------------------------- /africa/__pycache__/inception_modified.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/__pycache__/inception_modified.cpython-36.pyc -------------------------------------------------------------------------------- /africa/__pycache__/region_locator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/__pycache__/region_locator.cpython-36.pyc -------------------------------------------------------------------------------- /africa/__pycache__/streetView.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/__pycache__/streetView.cpython-36.pyc -------------------------------------------------------------------------------- /africa/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /africa/census_tract_locator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/census_tract_locator.py -------------------------------------------------------------------------------- /africa/dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/dijkstra.py -------------------------------------------------------------------------------- /africa/evaluation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/evaluation_utils.py -------------------------------------------------------------------------------- /africa/feature_engineering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/feature_engineering.py -------------------------------------------------------------------------------- /africa/image_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/image_dataset.py -------------------------------------------------------------------------------- /africa/inception_modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/inception_modified.py -------------------------------------------------------------------------------- /africa/region_locator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/region_locator.py -------------------------------------------------------------------------------- /africa/streetView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/streetView.py -------------------------------------------------------------------------------- /africa/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/africa/utils.py -------------------------------------------------------------------------------- /california/.ipynb_checkpoints/12_line_prediction_model_development-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/.ipynb_checkpoints/12_line_prediction_model_development-checkpoint.ipynb -------------------------------------------------------------------------------- /california/.ipynb_checkpoints/9_preprocessing_road_and_building_data-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/.ipynb_checkpoints/9_preprocessing_road_and_building_data-checkpoint.ipynb -------------------------------------------------------------------------------- /california/10_road_modeling_and_pole_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/10_road_modeling_and_pole_prediction.py -------------------------------------------------------------------------------- /california/11_dijkstria_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/11_dijkstria_algorithm.py -------------------------------------------------------------------------------- /california/12_line_prediction_model_development.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/12_line_prediction_model_development.ipynb -------------------------------------------------------------------------------- /california/12_line_prediction_test_overall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/12_line_prediction_test_overall.py -------------------------------------------------------------------------------- /california/13_connect_underground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/13_connect_underground.py -------------------------------------------------------------------------------- /california/1_search_area_GSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/1_search_area_GSV.py -------------------------------------------------------------------------------- /california/2_download_area_GSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/2_download_area_GSV.py -------------------------------------------------------------------------------- /california/3_predict_line_CAM_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/3_predict_line_CAM_pytorch.py -------------------------------------------------------------------------------- /california/4_CAM_to_line_directions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/4_CAM_to_line_directions.py -------------------------------------------------------------------------------- /california/5_merge_line_directions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/5_merge_line_directions.py -------------------------------------------------------------------------------- /california/6_predict_pole_CAM_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/6_predict_pole_CAM_pytorch.py -------------------------------------------------------------------------------- /california/7_CAM_to_pole_LOBs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/7_CAM_to_pole_LOBs.py -------------------------------------------------------------------------------- /california/8_LOB_to_pole_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/8_LOB_to_pole_locations.py -------------------------------------------------------------------------------- /california/9_preprocessing_road_and_building_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/9_preprocessing_road_and_building_data.ipynb -------------------------------------------------------------------------------- /california/HoughTransform_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/HoughTransform_lib.c -------------------------------------------------------------------------------- /california/HoughTransform_lib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/HoughTransform_lib.so -------------------------------------------------------------------------------- /california/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /california/__pycache__/census_tract_locator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/__pycache__/census_tract_locator.cpython-36.pyc -------------------------------------------------------------------------------- /california/__pycache__/dijkstra.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/__pycache__/dijkstra.cpython-36.pyc -------------------------------------------------------------------------------- /california/__pycache__/evaluation_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/__pycache__/evaluation_utils.cpython-36.pyc -------------------------------------------------------------------------------- /california/__pycache__/feature_engineering.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/__pycache__/feature_engineering.cpython-36.pyc -------------------------------------------------------------------------------- /california/__pycache__/image_dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/__pycache__/image_dataset.cpython-36.pyc -------------------------------------------------------------------------------- /california/__pycache__/inception_modified.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/__pycache__/inception_modified.cpython-36.pyc -------------------------------------------------------------------------------- /california/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /california/census_tract_locator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/census_tract_locator.py -------------------------------------------------------------------------------- /california/dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/dijkstra.py -------------------------------------------------------------------------------- /california/evaluation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/evaluation_utils.py -------------------------------------------------------------------------------- /california/feature_engineering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/feature_engineering.py -------------------------------------------------------------------------------- /california/image_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/image_dataset.py -------------------------------------------------------------------------------- /california/inception_modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/inception_modified.py -------------------------------------------------------------------------------- /california/model_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/model_selection.py -------------------------------------------------------------------------------- /california/streetView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/streetView.py -------------------------------------------------------------------------------- /california/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/california/utils.py -------------------------------------------------------------------------------- /model_dev/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_dev/__pycache__/image_dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/model_dev/__pycache__/image_dataset.cpython-36.pyc -------------------------------------------------------------------------------- /model_dev/__pycache__/inception_modified.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/model_dev/__pycache__/inception_modified.cpython-36.pyc -------------------------------------------------------------------------------- /model_dev/image_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/model_dev/image_dataset.py -------------------------------------------------------------------------------- /model_dev/inception_modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/model_dev/inception_modified.py -------------------------------------------------------------------------------- /model_dev/test_CAM_branch_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/model_dev/test_CAM_branch_pytorch.py -------------------------------------------------------------------------------- /model_dev/test_classification_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/model_dev/test_classification_pytorch.py -------------------------------------------------------------------------------- /model_dev/train_CAM_branch_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/model_dev/train_CAM_branch_pytorch.py -------------------------------------------------------------------------------- /model_dev/train_classification_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/model_dev/train_classification_pytorch.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhecheng/GridMapping/HEAD/requirements.txt --------------------------------------------------------------------------------