-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.py
31 lines (26 loc) · 1.7 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
staging_folder = 'G:/Geoff/osmnx/staging'
urbanized_areas_shapefile_folder = 'G:/Geoff/osmnx/data/urbanized_areas/shapefiles'
urbanized_areas_graphml_folder = 'G:/Geoff/osmnx/data/urbanized_areas/graphml'
urbanized_areas_lists_folder = 'G:/Geoff/osmnx/data/urbanized_areas/node_edge_lists'
urbanized_areas_stats_folder = 'G:/Geoff/osmnx/data/urbanized_areas/stats'
urbanized_areas_cache_folder = 'G:/Geoff/osmnx/cache/urbanized_areas'
counties_shapefile_folder = 'G:/Geoff/osmnx/data/counties/shapefiles'
counties_graphml_folder = 'G:/Geoff/osmnx/data/counties/graphml'
counties_lists_folder = 'G:/Geoff/osmnx/data/counties/node_edge_lists'
counties_stats_folder = 'G:/Geoff/osmnx/data/counties/stats'
counties_cache_folder = 'G:/Geoff/osmnx/cache/counties'
cities_shapefile_folder = 'G:/Geoff/osmnx/data/cities/shapefiles'
cities_graphml_folder = 'G:/Geoff/osmnx/data/cities/graphml'
cities_lists_folder = 'G:/Geoff/osmnx/data/cities/node_edge_lists'
cities_stats_folder = 'G:/Geoff/osmnx/data/cities/stats'
cities_cache_folder = 'G:/Geoff/osmnx/cache/cities'
neighborhoods_shapefile_folder = 'G:/Geoff/osmnx/data/neighborhoods/shapefiles'
neighborhoods_graphml_folder = 'G:/Geoff/osmnx/data/neighborhoods/graphml'
neighborhoods_lists_folder = 'G:/Geoff/osmnx/data/neighborhoods/node_edge_lists'
neighborhoods_stats_folder = 'G:/Geoff/osmnx/data/neighborhoods/stats'
neighborhoods_cache_folder = 'G:/Geoff/osmnx/cache/neighborhoods'
tracts_shapefile_folder = 'G:/Geoff/osmnx/data/tracts/shapefiles'
tracts_graphml_folder = 'G:/Geoff/osmnx/data/tracts/graphml'
tracts_lists_folder = 'G:/Geoff/osmnx/data/tracts/node_edge_lists'
tracts_stats_folder = 'G:/Geoff/osmnx/data/tracts/stats'
tracts_cache_folder = 'G:/Geoff/osmnx/cache/tracts'