├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── apls ├── __init__.py ├── apls.py ├── apls_plots.py ├── apls_utils.py ├── create_spacenet_masks.py ├── data │ ├── __init__.py │ ├── _sample_outputs │ │ ├── all_pairs_paths_diffs_gt_to_prop.png │ │ ├── all_pairs_paths_diffs_hist_gt_to_prop.png │ │ ├── all_pairs_paths_diffs_hist_prop_to_gt.png │ │ ├── all_pairs_paths_diffs_prop_to_gt.png │ │ ├── gt_graph.png │ │ ├── gt_graph_midpoints.png │ │ ├── gt_graph_plus_prop_buff.png │ │ ├── gt_graph_prop_control_points.png │ │ ├── gt_without_geom.png │ │ ├── output__max_snap=4m_hole=4m.txt │ │ ├── overlaid.png │ │ ├── prop_cp_without_geom.png │ │ ├── prop_graph.png │ │ ├── prop_graph_midpoints.png │ │ ├── prop_graph_midpoints_gt_control_points.png │ │ ├── prop_graph_plus_gt_buff.png │ │ ├── prop_without_geom.png │ │ ├── single_source_route_ground_truth.png │ │ └── single_source_route_prop.png │ ├── gt_json_prop_json │ │ └── AOI_2_Vegas_Train │ │ │ ├── osm │ │ │ ├── AOI_2_Vegas_img99.geojson │ │ │ ├── AOI_2_Vegas_img990.geojson │ │ │ ├── AOI_2_Vegas_img991.geojson │ │ │ ├── AOI_2_Vegas_img995.geojson │ │ │ ├── AOI_2_Vegas_img997.geojson │ │ │ ├── AOI_2_Vegas_img998.geojson │ │ │ └── AOI_2_Vegas_img999.geojson │ │ │ └── spacenetroads │ │ │ ├── AOI_2_Vegas_img99.geojson │ │ │ ├── AOI_2_Vegas_img990.geojson │ │ │ ├── AOI_2_Vegas_img991.geojson │ │ │ ├── AOI_2_Vegas_img995.geojson │ │ │ ├── AOI_2_Vegas_img997.geojson │ │ │ ├── AOI_2_Vegas_img998.geojson │ │ │ └── AOI_2_Vegas_img999.geojson │ ├── gt_json_prop_pkl │ │ ├── ground_truth_randomized │ │ │ └── AOI_2_Vegas_img0.geojson │ │ └── proposal │ │ │ └── RGB-PanSharpen_AOI_2_Vegas_img0.gpickle │ ├── gt_json_prop_wkt │ │ ├── ground_truth_randomized │ │ │ └── AOI_2_Vegas_img0.geojson │ │ └── proposal │ │ │ └── sn3_sample_submission_albu.csv │ ├── gt_pkl_prop_pkl │ │ ├── ground_truth_randomized │ │ │ └── RGB-PanSharpen_AOI_2_Vegas_img0.gpickle │ │ └── proposal │ │ │ └── RGB-PanSharpen_AOI_2_Vegas_img0.gpickle │ └── images │ │ └── RGB-PanSharpen_AOI_2_Vegas_img0.tif ├── graphTools.py ├── gt_graph_to_wkt.py ├── osmnx_funcs.py ├── road_speed.py ├── sp_metric.py ├── topo_metric.py └── wkt_to_G.py ├── environment.yml └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/README.md -------------------------------------------------------------------------------- /apls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apls/apls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/apls.py -------------------------------------------------------------------------------- /apls/apls_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/apls_plots.py -------------------------------------------------------------------------------- /apls/apls_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/apls_utils.py -------------------------------------------------------------------------------- /apls/create_spacenet_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/create_spacenet_masks.py -------------------------------------------------------------------------------- /apls/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/__init__.py -------------------------------------------------------------------------------- /apls/data/_sample_outputs/all_pairs_paths_diffs_gt_to_prop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/all_pairs_paths_diffs_gt_to_prop.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/all_pairs_paths_diffs_hist_gt_to_prop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/all_pairs_paths_diffs_hist_gt_to_prop.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/all_pairs_paths_diffs_hist_prop_to_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/all_pairs_paths_diffs_hist_prop_to_gt.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/all_pairs_paths_diffs_prop_to_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/all_pairs_paths_diffs_prop_to_gt.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/gt_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/gt_graph.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/gt_graph_midpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/gt_graph_midpoints.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/gt_graph_plus_prop_buff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/gt_graph_plus_prop_buff.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/gt_graph_prop_control_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/gt_graph_prop_control_points.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/gt_without_geom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/gt_without_geom.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/output__max_snap=4m_hole=4m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/output__max_snap=4m_hole=4m.txt -------------------------------------------------------------------------------- /apls/data/_sample_outputs/overlaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/overlaid.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/prop_cp_without_geom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/prop_cp_without_geom.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/prop_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/prop_graph.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/prop_graph_midpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/prop_graph_midpoints.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/prop_graph_midpoints_gt_control_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/prop_graph_midpoints_gt_control_points.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/prop_graph_plus_gt_buff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/prop_graph_plus_gt_buff.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/prop_without_geom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/prop_without_geom.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/single_source_route_ground_truth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/single_source_route_ground_truth.png -------------------------------------------------------------------------------- /apls/data/_sample_outputs/single_source_route_prop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/_sample_outputs/single_source_route_prop.png -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img99.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img99.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img990.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img990.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img991.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img991.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img995.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img995.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img997.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img997.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img998.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img998.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img999.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/osm/AOI_2_Vegas_img999.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img99.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img99.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img990.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img990.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img991.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img991.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img995.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img995.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img997.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img997.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img998.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img998.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img999.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_json/AOI_2_Vegas_Train/spacenetroads/AOI_2_Vegas_img999.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_pkl/ground_truth_randomized/AOI_2_Vegas_img0.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_pkl/ground_truth_randomized/AOI_2_Vegas_img0.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_pkl/proposal/RGB-PanSharpen_AOI_2_Vegas_img0.gpickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_pkl/proposal/RGB-PanSharpen_AOI_2_Vegas_img0.gpickle -------------------------------------------------------------------------------- /apls/data/gt_json_prop_wkt/ground_truth_randomized/AOI_2_Vegas_img0.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_wkt/ground_truth_randomized/AOI_2_Vegas_img0.geojson -------------------------------------------------------------------------------- /apls/data/gt_json_prop_wkt/proposal/sn3_sample_submission_albu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_json_prop_wkt/proposal/sn3_sample_submission_albu.csv -------------------------------------------------------------------------------- /apls/data/gt_pkl_prop_pkl/ground_truth_randomized/RGB-PanSharpen_AOI_2_Vegas_img0.gpickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_pkl_prop_pkl/ground_truth_randomized/RGB-PanSharpen_AOI_2_Vegas_img0.gpickle -------------------------------------------------------------------------------- /apls/data/gt_pkl_prop_pkl/proposal/RGB-PanSharpen_AOI_2_Vegas_img0.gpickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/gt_pkl_prop_pkl/proposal/RGB-PanSharpen_AOI_2_Vegas_img0.gpickle -------------------------------------------------------------------------------- /apls/data/images/RGB-PanSharpen_AOI_2_Vegas_img0.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/data/images/RGB-PanSharpen_AOI_2_Vegas_img0.tif -------------------------------------------------------------------------------- /apls/graphTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/graphTools.py -------------------------------------------------------------------------------- /apls/gt_graph_to_wkt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/gt_graph_to_wkt.py -------------------------------------------------------------------------------- /apls/osmnx_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/osmnx_funcs.py -------------------------------------------------------------------------------- /apls/road_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/road_speed.py -------------------------------------------------------------------------------- /apls/sp_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/sp_metric.py -------------------------------------------------------------------------------- /apls/topo_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/topo_metric.py -------------------------------------------------------------------------------- /apls/wkt_to_G.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/apls/wkt_to_G.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/environment.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmiQ/apls/HEAD/setup.py --------------------------------------------------------------------------------