├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ └── pytest.yml ├── .gitignore ├── .pylintrc ├── .vscode └── settings.json ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── data ├── driving_distances │ ├── README.md │ ├── austin.csv │ ├── boston.csv │ ├── chicago.csv │ ├── guarulhos.csv │ ├── los_angeles.csv │ └── seattle.csv ├── results │ ├── dataframes │ │ ├── BR-guarulhos │ │ │ ├── guarulhos_basic_stats.csv │ │ │ └── guarulhos_st_orientation.csv │ │ ├── USA-austin │ │ │ ├── austin_basic_stats.csv │ │ │ ├── austin_locations.csv │ │ │ ├── austin_st_orientation.csv │ │ │ └── shapefiles │ │ │ │ ├── austin_basic_stats.cpg │ │ │ │ ├── austin_basic_stats.dbf │ │ │ │ ├── austin_basic_stats.prj │ │ │ │ ├── austin_basic_stats.shp │ │ │ │ └── austin_basic_stats.shx │ │ ├── USA-boston │ │ │ ├── boston_basic_stats.csv │ │ │ ├── boston_locations.csv │ │ │ └── boston_st_orientation.csv │ │ ├── USA-chicago │ │ │ ├── chicago_basic_stats.csv │ │ │ ├── chicago_locations.csv │ │ │ └── chicago_st_orientation.csv │ │ ├── USA-los_angeles_minors │ │ │ ├── los_angeles_joined_results.csv │ │ │ ├── los_angeles_locations.csv │ │ │ ├── los_angeles_locations_example.csv │ │ │ ├── los_angeles_minors__basic_stats.csv │ │ │ ├── los_angeles_minors__st_orientation.csv │ │ │ ├── los_angeles_routes.csv │ │ │ └── shapefiles │ │ │ │ ├── los_angeles_intersec_count.cpg │ │ │ │ ├── los_angeles_intersec_count.dbf │ │ │ │ ├── los_angeles_intersec_count.prj │ │ │ │ ├── los_angeles_intersec_count.shp │ │ │ │ └── los_angeles_intersec_count.shx │ │ └── USA-seattle │ │ │ ├── seattle_basic_stats.csv │ │ │ ├── seattle_locations.csv │ │ │ └── seattle_st_orientation.csv │ ├── graph_shapefile │ │ └── BR-guarulhos_city │ │ │ ├── edges_guarulhos_city.cpg │ │ │ ├── edges_guarulhos_city.dbf │ │ │ ├── edges_guarulhos_city.prj │ │ │ ├── edges_guarulhos_city.shp │ │ │ ├── edges_guarulhos_city.shx │ │ │ ├── nodes_guarulhos_city.cpg │ │ │ ├── nodes_guarulhos_city.dbf │ │ │ ├── nodes_guarulhos_city.prj │ │ │ ├── nodes_guarulhos_city.shp │ │ │ └── nodes_guarulhos_city.shx │ ├── graphs │ │ ├── BR-guarulhos │ │ │ ├── grid_guarulhos.pdf │ │ │ └── individual_plots │ │ │ │ ├── graph_Aeroporto Internacional.pdf │ │ │ │ ├── graph_Agua Azul.pdf │ │ │ │ ├── graph_Agua Chata.pdf │ │ │ │ ├── graph_Aracilia.pdf │ │ │ │ ├── graph_Bananal.pdf │ │ │ │ ├── graph_Bela Vista.pdf │ │ │ │ ├── graph_Bom Clima.pdf │ │ │ │ ├── graph_Bonsucesso.pdf │ │ │ │ ├── graph_CECAP.pdf │ │ │ │ ├── graph_Cabuco de Cima.pdf │ │ │ │ ├── graph_Cabucu.pdf │ │ │ │ ├── graph_Capelinha.pdf │ │ │ │ ├── graph_Centro.pdf │ │ │ │ ├── graph_Cocaia.pdf │ │ │ │ ├── graph_Cumbica.pdf │ │ │ │ ├── graph_Fatima.pdf │ │ │ │ ├── graph_Fortaleza.pdf │ │ │ │ ├── graph_Gopouva.pdf │ │ │ │ ├── graph_Invernada.pdf │ │ │ │ ├── graph_Itaim.pdf │ │ │ │ ├── graph_Itapegica.pdf │ │ │ │ ├── graph_Jardim Presidente Dutra.pdf │ │ │ │ ├── graph_Jardim Vila Galvao.pdf │ │ │ │ ├── graph_Lavras.pdf │ │ │ │ ├── graph_Macedo.pdf │ │ │ │ ├── graph_Maia.pdf │ │ │ │ ├── graph_Mato das Cobras.pdf │ │ │ │ ├── graph_Monte Carmelo.pdf │ │ │ │ ├── graph_Morro Grande.pdf │ │ │ │ ├── graph_Morros.pdf │ │ │ │ ├── graph_Paraventi.pdf │ │ │ │ ├── graph_Picanco.pdf │ │ │ │ ├── graph_Pimentas.pdf │ │ │ │ ├── graph_Ponte Grande.pdf │ │ │ │ ├── graph_Porto da Igreja.pdf │ │ │ │ ├── graph_Sadokim.pdf │ │ │ │ ├── graph_Sao Joao.pdf │ │ │ │ ├── graph_Sao Roque.pdf │ │ │ │ ├── graph_Taboao.pdf │ │ │ │ ├── graph_Tanque Grande.pdf │ │ │ │ ├── graph_Torres Tobagy.pdf │ │ │ │ ├── graph_Tranquilidade.pdf │ │ │ │ ├── graph_Varzea do Palacio.pdf │ │ │ │ ├── graph_Vila Augusta.pdf │ │ │ │ ├── graph_Vila Barros.pdf │ │ │ │ ├── graph_Vila Galvao.pdf │ │ │ │ └── graph_Vila Rio.pdf │ │ ├── USA-austin │ │ │ ├── graph_ALLANDALE.pdf │ │ │ ├── graph_BARTON HILLS.pdf │ │ │ ├── graph_BOULDIN CREEK.pdf │ │ │ ├── graph_BRENTWOOD.pdf │ │ │ ├── graph_CENTRAL EAST AUSTIN.pdf │ │ │ ├── graph_CHESTNUT.pdf │ │ │ ├── graph_CORONADO HILLS.pdf │ │ │ ├── graph_CRESTVIEW.pdf │ │ │ ├── graph_DAWSON.pdf │ │ │ ├── graph_DOWNTOWN.pdf │ │ │ ├── graph_EAST CESAR CHAVEZ.pdf │ │ │ ├── graph_EAST CONGRESS.pdf │ │ │ ├── graph_EAST OAK HILL.pdf │ │ │ ├── graph_FRANKLIN PARK.pdf │ │ │ ├── graph_GALINDO.pdf │ │ │ ├── graph_GARRISON PARK.pdf │ │ │ ├── graph_GATEWAY.pdf │ │ │ ├── graph_GEORGIAN ACRES.pdf │ │ │ ├── graph_GOVALLE.pdf │ │ │ ├── graph_HANCOCK.pdf │ │ │ ├── graph_HERITAGE HILLS.pdf │ │ │ ├── graph_HIGHLAND.pdf │ │ │ ├── graph_HOLLY.pdf │ │ │ ├── graph_HYDE PARK.pdf │ │ │ ├── graph_JOHNSTON TERRACE.pdf │ │ │ ├── graph_MCKINNEY.pdf │ │ │ ├── graph_MLK-183.pdf │ │ │ ├── graph_MLK.pdf │ │ │ ├── graph_MONTOPOLIS.pdf │ │ │ ├── graph_NORTH AUSTIN CIVIC ASSOCIATION.pdf │ │ │ ├── graph_NORTH BURNET.pdf │ │ │ ├── graph_NORTH LAMAR.pdf │ │ │ ├── graph_NORTH LOOP.pdf │ │ │ ├── graph_NORTH SHOAL CREEK.pdf │ │ │ ├── graph_NORTH UNIVERSITY.pdf │ │ │ ├── graph_OLD ENFIELD.pdf │ │ │ ├── graph_OLD WEST AUSTIN.pdf │ │ │ ├── graph_PARKER LANE.pdf │ │ │ ├── graph_PECAN SPRINGS-SPRINGDALE.pdf │ │ │ ├── graph_PLEASANT VALLEY.pdf │ │ │ ├── graph_RIVERSIDE.pdf │ │ │ ├── graph_RMMA.pdf │ │ │ ├── graph_ROSEDALE.pdf │ │ │ ├── graph_ROSEWOOD.pdf │ │ │ ├── graph_SOUTH LAMAR.pdf │ │ │ ├── graph_SOUTH MANCHACA.pdf │ │ │ ├── graph_SOUTH RIVER CITY.pdf │ │ │ ├── graph_SOUTHEAST.pdf │ │ │ ├── graph_ST. EDWARDS.pdf │ │ │ ├── graph_ST. JOHN.pdf │ │ │ ├── graph_SWEETBRIAR.pdf │ │ │ ├── graph_TRIANGLE STATE.pdf │ │ │ ├── graph_UNIVERSITY HILLS.pdf │ │ │ ├── graph_UPPER BOGGY CREEK.pdf │ │ │ ├── graph_UT.pdf │ │ │ ├── graph_WEST AUSTIN NEIGHBORHOOD GROUP.pdf │ │ │ ├── graph_WEST CONGRESS.pdf │ │ │ ├── graph_WEST OAK HILL.pdf │ │ │ ├── graph_WEST UNIVERSITY.pdf │ │ │ ├── graph_WESTGATE.pdf │ │ │ ├── graph_WINDSOR HILLS.pdf │ │ │ ├── graph_WINDSOR PARK.pdf │ │ │ ├── graph_WINDSOR ROAD.pdf │ │ │ ├── graph_WOOTEN.pdf │ │ │ └── graph_ZILKER.pdf │ │ ├── USA-boston │ │ │ ├── graph_Allston.pdf │ │ │ ├── graph_Back Bay.pdf │ │ │ ├── graph_Bay Village.pdf │ │ │ ├── graph_Beacon Hill.pdf │ │ │ ├── graph_Brighton.pdf │ │ │ ├── graph_Charlestown.pdf │ │ │ ├── graph_Chinatown.pdf │ │ │ ├── graph_Dorchester.pdf │ │ │ ├── graph_Downtown.pdf │ │ │ ├── graph_East Boston.pdf │ │ │ ├── graph_Fenway.pdf │ │ │ ├── graph_Harbor Islands.pdf │ │ │ ├── graph_Jamaica Plain.pdf │ │ │ ├── graph_Leather District.pdf │ │ │ ├── graph_Longwood.pdf │ │ │ ├── graph_Mattapan.pdf │ │ │ ├── graph_Mission Hill.pdf │ │ │ ├── graph_North End.pdf │ │ │ ├── graph_Roslindale.pdf │ │ │ ├── graph_Roxbury.pdf │ │ │ ├── graph_South Boston Waterfront.pdf │ │ │ ├── graph_South Boston.pdf │ │ │ ├── graph_South End.pdf │ │ │ ├── graph_West End.pdf │ │ │ └── graph_West Roxbury.pdf │ │ ├── USA-chicago │ │ │ ├── graph_Albany Park.pdf │ │ │ ├── graph_Andersonville.pdf │ │ │ ├── graph_Archer Heights.pdf │ │ │ ├── graph_Armour Square.pdf │ │ │ ├── graph_Ashburn.pdf │ │ │ ├── graph_Auburn Gresham.pdf │ │ │ ├── graph_Austin.pdf │ │ │ ├── graph_Avalon Park.pdf │ │ │ ├── graph_Avondale.pdf │ │ │ ├── graph_Belmont Cragin.pdf │ │ │ ├── graph_Beverly.pdf │ │ │ ├── graph_Boystown.pdf │ │ │ ├── graph_Bridgeport.pdf │ │ │ ├── graph_Brighton Park.pdf │ │ │ ├── graph_Bucktown.pdf │ │ │ ├── graph_Burnside.pdf │ │ │ ├── graph_Calumet Heights.pdf │ │ │ ├── graph_Chatham.pdf │ │ │ ├── graph_Chicago Lawn.pdf │ │ │ ├── graph_Chinatown.pdf │ │ │ ├── graph_Clearing.pdf │ │ │ ├── graph_Douglas.pdf │ │ │ ├── graph_Dunning.pdf │ │ │ ├── graph_East Side.pdf │ │ │ ├── graph_East Village.pdf │ │ │ ├── graph_Edgewater.pdf │ │ │ ├── graph_Edison Park.pdf │ │ │ ├── graph_Englewood.pdf │ │ │ ├── graph_Fuller Park.pdf │ │ │ ├── graph_Gage Park.pdf │ │ │ ├── graph_Galewood.pdf │ │ │ ├── graph_Garfield Park.pdf │ │ │ ├── graph_Garfield Ridge.pdf │ │ │ ├── graph_Gold Coast.pdf │ │ │ ├── graph_Grand Boulevard.pdf │ │ │ ├── graph_Grand Crossing.pdf │ │ │ ├── graph_Grant Park.pdf │ │ │ ├── graph_Greektown.pdf │ │ │ ├── graph_Hegewisch.pdf │ │ │ ├── graph_Hermosa.pdf │ │ │ ├── graph_Humboldt Park.pdf │ │ │ ├── graph_Hyde Park.pdf │ │ │ ├── graph_Irving Park.pdf │ │ │ ├── graph_Jackson Park.pdf │ │ │ ├── graph_Jefferson Park.pdf │ │ │ ├── graph_Kenwood.pdf │ │ │ ├── graph_Lake View.pdf │ │ │ ├── graph_Lincoln Park.pdf │ │ │ ├── graph_Lincoln Square.pdf │ │ │ ├── graph_Little Italy, UIC.pdf │ │ │ ├── graph_Little Village.pdf │ │ │ ├── graph_Logan Square.pdf │ │ │ ├── graph_Loop.pdf │ │ │ ├── graph_Lower West Side.pdf │ │ │ ├── graph_Magnificent Mile.pdf │ │ │ ├── graph_Mckinley Park.pdf │ │ │ ├── graph_Millenium Park.pdf │ │ │ ├── graph_Montclare.pdf │ │ │ ├── graph_Morgan Park.pdf │ │ │ ├── graph_Mount Greenwood.pdf │ │ │ ├── graph_Museum Campus.pdf │ │ │ ├── graph_Near South Side.pdf │ │ │ ├── graph_New City.pdf │ │ │ ├── graph_North Center.pdf │ │ │ ├── graph_North Lawndale.pdf │ │ │ ├── graph_North Park.pdf │ │ │ ├── graph_Norwood Park.pdf │ │ │ ├── graph_O'Hare.pdf │ │ │ ├── graph_Oakland.pdf │ │ │ ├── graph_Old Town.pdf │ │ │ ├── graph_Portage Park.pdf │ │ │ ├── graph_Printers Row.pdf │ │ │ ├── graph_Pullman.pdf │ │ │ ├── graph_River North.pdf │ │ │ ├── graph_Riverdale.pdf │ │ │ ├── graph_Rogers Park.pdf │ │ │ ├── graph_Roseland.pdf │ │ │ ├── graph_Rush & Division.pdf │ │ │ ├── graph_Sauganash,Forest Glen.pdf │ │ │ ├── graph_Sheffield & DePaul.pdf │ │ │ ├── graph_South Chicago.pdf │ │ │ ├── graph_South Deering.pdf │ │ │ ├── graph_South Shore.pdf │ │ │ ├── graph_Streeterville.pdf │ │ │ ├── graph_Ukrainian Village.pdf │ │ │ ├── graph_United Center.pdf │ │ │ ├── graph_Uptown.pdf │ │ │ ├── graph_Washington Heights.pdf │ │ │ ├── graph_Washington Park.pdf │ │ │ ├── graph_West Elsdon.pdf │ │ │ ├── graph_West Lawn.pdf │ │ │ ├── graph_West Loop.pdf │ │ │ ├── graph_West Pullman.pdf │ │ │ ├── graph_West Ridge.pdf │ │ │ ├── graph_West Town.pdf │ │ │ ├── graph_Wicker Park.pdf │ │ │ ├── graph_Woodlawn.pdf │ │ │ └── graph_Wrigleyville.pdf │ │ ├── USA-los_angeles_minors │ │ │ ├── graph_Adams-Normandie.pdf │ │ │ ├── graph_Alondra Park.pdf │ │ │ ├── graph_Arleta.pdf │ │ │ ├── graph_Arlington Heights.pdf │ │ │ ├── graph_Artesia.pdf │ │ │ ├── graph_Bel-Air.pdf │ │ │ ├── graph_Bell Gardens.pdf │ │ │ ├── graph_Bell.pdf │ │ │ ├── graph_Bellflower.pdf │ │ │ ├── graph_Beverly Crest.pdf │ │ │ ├── graph_Beverly Grove.pdf │ │ │ ├── graph_Beverly Hills.pdf │ │ │ ├── graph_Beverlywood.pdf │ │ │ ├── graph_Boyle Heights.pdf │ │ │ ├── graph_Brentwood.pdf │ │ │ ├── graph_Broadway-Manchester.pdf │ │ │ ├── graph_Burbank.pdf │ │ │ ├── graph_Calabasas.pdf │ │ │ ├── graph_Canoga Park.pdf │ │ │ ├── graph_Carson.pdf │ │ │ ├── graph_Carthay.pdf │ │ │ ├── graph_Central-Alameda.pdf │ │ │ ├── graph_Century City.pdf │ │ │ ├── graph_Cerritos.pdf │ │ │ ├── graph_Charter Oak.pdf │ │ │ ├── graph_Cheviot Hills.pdf │ │ │ ├── graph_Chinatown.pdf │ │ │ ├── graph_Citrus.pdf │ │ │ ├── graph_Claremont.pdf │ │ │ ├── graph_Commerce.pdf │ │ │ ├── graph_Compton.pdf │ │ │ ├── graph_Covina.pdf │ │ │ ├── graph_Cudahy.pdf │ │ │ ├── graph_Culver City.pdf │ │ │ ├── graph_Del Aire.pdf │ │ │ ├── graph_Del Rey.pdf │ │ │ ├── graph_Diamond Bar.pdf │ │ │ ├── graph_Downey.pdf │ │ │ ├── graph_Downtown.pdf │ │ │ ├── graph_East Compton.pdf │ │ │ ├── graph_East Hollywood.pdf │ │ │ ├── graph_East La Mirada.pdf │ │ │ ├── graph_East Los Angeles.pdf │ │ │ ├── graph_Echo Park.pdf │ │ │ ├── graph_El Segundo.pdf │ │ │ ├── graph_El Sereno.pdf │ │ │ ├── graph_Elysian Park.pdf │ │ │ ├── graph_Encino.pdf │ │ │ ├── graph_Exposition Park.pdf │ │ │ ├── graph_Fairfax.pdf │ │ │ ├── graph_Florence-Firestone.pdf │ │ │ ├── graph_Florence.pdf │ │ │ ├── graph_Gardena.pdf │ │ │ ├── graph_Glendora.pdf │ │ │ ├── graph_Gramercy Park.pdf │ │ │ ├── graph_Granada Hills.pdf │ │ │ ├── graph_Green Meadows.pdf │ │ │ ├── graph_Griffith Park.pdf │ │ │ ├── graph_Hacienda Heights.pdf │ │ │ ├── graph_Hancock Park.pdf │ │ │ ├── graph_Harbor City.pdf │ │ │ ├── graph_Harbor Gateway.pdf │ │ │ ├── graph_Harvard Heights.pdf │ │ │ ├── graph_Hawaiian Gardens.pdf │ │ │ ├── graph_Hawthorne.pdf │ │ │ ├── graph_Hermosa Beach.pdf │ │ │ ├── graph_Hidden Hills.pdf │ │ │ ├── graph_Historic South-Central.pdf │ │ │ ├── graph_Hollywood Hills West.pdf │ │ │ ├── graph_Hollywood Hills.pdf │ │ │ ├── graph_Hollywood.pdf │ │ │ ├── graph_Huntington Park.pdf │ │ │ ├── graph_Hyde Park.pdf │ │ │ ├── graph_Industry.pdf │ │ │ ├── graph_Inglewood.pdf │ │ │ ├── graph_Jefferson Park.pdf │ │ │ ├── graph_Koreatown.pdf │ │ │ ├── graph_La Habra Heights.pdf │ │ │ ├── graph_La Mirada.pdf │ │ │ ├── graph_La Verne.pdf │ │ │ ├── graph_Ladera Heights.pdf │ │ │ ├── graph_Lake Balboa.pdf │ │ │ ├── graph_Lake View Terrace.pdf │ │ │ ├── graph_Lakewood.pdf │ │ │ ├── graph_Larchmont.pdf │ │ │ ├── graph_Lawndale.pdf │ │ │ ├── graph_Leimert Park.pdf │ │ │ ├── graph_Lincoln Heights.pdf │ │ │ ├── graph_Lomita.pdf │ │ │ ├── graph_Los Feliz.pdf │ │ │ ├── graph_Lynwood.pdf │ │ │ ├── graph_Manchester Square.pdf │ │ │ ├── graph_Manhattan Beach.pdf │ │ │ ├── graph_Mar Vista.pdf │ │ │ ├── graph_Marina del Rey.pdf │ │ │ ├── graph_Maywood.pdf │ │ │ ├── graph_Mid-City.pdf │ │ │ ├── graph_Mid-Wilshire.pdf │ │ │ ├── graph_Mission Hills.pdf │ │ │ ├── graph_Montebello.pdf │ │ │ ├── graph_North Hills.pdf │ │ │ ├── graph_North Hollywood.pdf │ │ │ ├── graph_Northridge.pdf │ │ │ ├── graph_Norwalk.pdf │ │ │ ├── graph_Pacific Palisades.pdf │ │ │ ├── graph_Pacoima.pdf │ │ │ ├── graph_Palms.pdf │ │ │ ├── graph_Palos Verdes Estates.pdf │ │ │ ├── graph_Panorama City.pdf │ │ │ ├── graph_Paramount.pdf │ │ │ ├── graph_Pico-Robertson.pdf │ │ │ ├── graph_Pico-Union.pdf │ │ │ ├── graph_Playa Vista.pdf │ │ │ ├── graph_Playa del Rey.pdf │ │ │ ├── graph_Pomona.pdf │ │ │ ├── graph_Porter Ranch.pdf │ │ │ ├── graph_Rancho Dominguez.pdf │ │ │ ├── graph_Rancho Palos Verdes.pdf │ │ │ ├── graph_Rancho Park.pdf │ │ │ ├── graph_Redondo Beach.pdf │ │ │ ├── graph_Reseda.pdf │ │ │ ├── graph_Rolling Hills Estates.pdf │ │ │ ├── graph_Rolling Hills.pdf │ │ │ ├── graph_Rowland Heights.pdf │ │ │ ├── graph_San Dimas.pdf │ │ │ ├── graph_San Fernando.pdf │ │ │ ├── graph_San Pedro.pdf │ │ │ ├── graph_Santa Fe Springs.pdf │ │ │ ├── graph_Santa Monica.pdf │ │ │ ├── graph_Sawtelle.pdf │ │ │ ├── graph_Sepulveda Basin.pdf │ │ │ ├── graph_Sherman Oaks.pdf │ │ │ ├── graph_Signal Hill.pdf │ │ │ ├── graph_Silver Lake.pdf │ │ │ ├── graph_South Gate.pdf │ │ │ ├── graph_South Park.pdf │ │ │ ├── graph_South Whittier.pdf │ │ │ ├── graph_Studio City.pdf │ │ │ ├── graph_Sun Valley.pdf │ │ │ ├── graph_Sylmar.pdf │ │ │ ├── graph_Tarzana.pdf │ │ │ ├── graph_Toluca Lake.pdf │ │ │ ├── graph_Topanga.pdf │ │ │ ├── graph_Torrance.pdf │ │ │ ├── graph_Unincorporated Santa Susana Mountains.pdf │ │ │ ├── graph_University Park.pdf │ │ │ ├── graph_Valley Glen.pdf │ │ │ ├── graph_Valley Village.pdf │ │ │ ├── graph_Van Nuys.pdf │ │ │ ├── graph_Venice.pdf │ │ │ ├── graph_Vermont Knolls.pdf │ │ │ ├── graph_Vermont Square.pdf │ │ │ ├── graph_Vermont Vista.pdf │ │ │ ├── graph_Vermont-Slauson.pdf │ │ │ ├── graph_Vernon.pdf │ │ │ ├── graph_Veterans Administration.pdf │ │ │ ├── graph_View Park-Windsor Hills.pdf │ │ │ ├── graph_Walnut Park.pdf │ │ │ ├── graph_Walnut.pdf │ │ │ ├── graph_Watts.pdf │ │ │ ├── graph_West Adams.pdf │ │ │ ├── graph_West Carson.pdf │ │ │ ├── graph_West Covina.pdf │ │ │ ├── graph_West Hills.pdf │ │ │ ├── graph_West Hollywood.pdf │ │ │ ├── graph_West Los Angeles.pdf │ │ │ ├── graph_Westchester.pdf │ │ │ ├── graph_Westlake Village.pdf │ │ │ ├── graph_Westlake.pdf │ │ │ ├── graph_Westmont.pdf │ │ │ ├── graph_Westwood.pdf │ │ │ ├── graph_Whittier.pdf │ │ │ ├── graph_Willowbrook.pdf │ │ │ ├── graph_Wilmington.pdf │ │ │ ├── graph_Windsor Square.pdf │ │ │ ├── graph_Winnetka.pdf │ │ │ └── graph_Woodland Hills.pdf │ │ └── USA-seattle │ │ │ ├── graph_Adams.pdf │ │ │ ├── graph_Alki.pdf │ │ │ ├── graph_Arbor Heights.pdf │ │ │ ├── graph_Atlantic.pdf │ │ │ ├── graph_Belltown.pdf │ │ │ ├── graph_Bitter Lake.pdf │ │ │ ├── graph_Briarcliff.pdf │ │ │ ├── graph_Brighton.pdf │ │ │ ├── graph_Broadview.pdf │ │ │ ├── graph_Broadway.pdf │ │ │ ├── graph_Bryant.pdf │ │ │ ├── graph_Cedar Park.pdf │ │ │ ├── graph_Central Business District.pdf │ │ │ ├── graph_Columbia City.pdf │ │ │ ├── graph_Crown Hill.pdf │ │ │ ├── graph_Dunlap.pdf │ │ │ ├── graph_East Queen Anne.pdf │ │ │ ├── graph_Eastlake.pdf │ │ │ ├── graph_Fairmount Park.pdf │ │ │ ├── graph_Fauntleroy.pdf │ │ │ ├── graph_First Hill.pdf │ │ │ ├── graph_Fremont.pdf │ │ │ ├── graph_Gatewood.pdf │ │ │ ├── graph_Genesee.pdf │ │ │ ├── graph_Georgetown.pdf │ │ │ ├── graph_Green Lake.pdf │ │ │ ├── graph_Greenwood.pdf │ │ │ ├── graph_Haller Lake.pdf │ │ │ ├── graph_Harbor Island.pdf │ │ │ ├── graph_High Point.pdf │ │ │ ├── graph_Highland Park.pdf │ │ │ ├── graph_Holly Park.pdf │ │ │ ├── graph_Industrial District.pdf │ │ │ ├── graph_Interbay.pdf │ │ │ ├── graph_International District.pdf │ │ │ ├── graph_Laurelhurst.pdf │ │ │ ├── graph_Lawton Park.pdf │ │ │ ├── graph_Leschi.pdf │ │ │ ├── graph_Lower Queen Anne.pdf │ │ │ ├── graph_Loyal Heights.pdf │ │ │ ├── graph_Madison Park.pdf │ │ │ ├── graph_Madrona.pdf │ │ │ ├── graph_Mann.pdf │ │ │ ├── graph_Maple Leaf.pdf │ │ │ ├── graph_Matthews Beach.pdf │ │ │ ├── graph_Meadowbrook.pdf │ │ │ ├── graph_Mid-Beacon Hill.pdf │ │ │ ├── graph_Minor.pdf │ │ │ ├── graph_Montlake.pdf │ │ │ ├── graph_Mount Baker.pdf │ │ │ ├── graph_North Admiral.pdf │ │ │ ├── graph_North Beacon Hill.pdf │ │ │ ├── graph_North College Park.pdf │ │ │ ├── graph_North Delridge.pdf │ │ │ ├── graph_North Queen Anne.pdf │ │ │ ├── graph_Olympic Hills.pdf │ │ │ ├── graph_Phinney Ridge.pdf │ │ │ ├── graph_Pike-Market.pdf │ │ │ ├── graph_Pinehurst.pdf │ │ │ ├── graph_Pioneer Square.pdf │ │ │ ├── graph_Portage Bay.pdf │ │ │ ├── graph_Rainier Beach.pdf │ │ │ ├── graph_Rainier View.pdf │ │ │ ├── graph_Ravenna.pdf │ │ │ ├── graph_Riverview.pdf │ │ │ ├── graph_Roosevelt.pdf │ │ │ ├── graph_Roxhill.pdf │ │ │ ├── graph_Sand Point.pdf │ │ │ ├── graph_Seaview.pdf │ │ │ ├── graph_Seward Park.pdf │ │ │ ├── graph_South Beacon Hill.pdf │ │ │ ├── graph_South Delridge.pdf │ │ │ ├── graph_South Lake Union.pdf │ │ │ ├── graph_South Park.pdf │ │ │ ├── graph_Southeast Magnolia.pdf │ │ │ ├── graph_Stevens.pdf │ │ │ ├── graph_Sunset Hill.pdf │ │ │ ├── graph_University District.pdf │ │ │ ├── graph_Victory Heights.pdf │ │ │ ├── graph_View Ridge.pdf │ │ │ ├── graph_Wallingford.pdf │ │ │ ├── graph_Wedgwood.pdf │ │ │ ├── graph_West Queen Anne.pdf │ │ │ ├── graph_West Woodland.pdf │ │ │ ├── graph_Westlake.pdf │ │ │ ├── graph_Whittier Heights.pdf │ │ │ ├── graph_Windermere.pdf │ │ │ └── graph_Yesler Terrace.pdf │ └── polar_plots │ │ ├── BR-guarulhos │ │ ├── 1 - polar_hist_street_orientation_Cabuçu.pdf │ │ ├── 10 - polar_hist_street_orientation_Mato das Cobras.pdf │ │ ├── 11 - polar_hist_street_orientation_Vila Rio.pdf │ │ ├── 12 - polar_hist_street_orientation_Bananal.pdf │ │ ├── 13 - polar_hist_street_orientation_São João.pdf │ │ ├── 14 - polar_hist_street_orientation_Invernada.pdf │ │ ├── 15 - polar_hist_street_orientation_Água Chata.pdf │ │ ├── 16 - polar_hist_street_orientation_Cumbica.pdf │ │ ├── 17 - polar_hist_street_orientation_Picanço.pdf │ │ ├── 18 - polar_hist_street_orientation_Vila Augusta.pdf │ │ ├── 19 - polar_hist_street_orientation_Gopoúva.pdf │ │ ├── 2 - polar_hist_street_orientation_Taboão.pdf │ │ ├── 20 - polar_hist_street_orientation_Jardim Vila Galvão.pdf │ │ ├── 21 - polar_hist_street_orientation_Água Azul.pdf │ │ ├── 22 - polar_hist_street_orientation_Torres Tobagy.pdf │ │ ├── 23 - polar_hist_street_orientation_Cabuço de Cima.pdf │ │ ├── 24 - polar_hist_street_orientation_Ponte Grande.pdf │ │ ├── 25 - polar_hist_street_orientation_Itaim.pdf │ │ ├── 26 - polar_hist_street_orientation_Centro.pdf │ │ ├── 27 - polar_hist_street_orientation_Fátima.pdf │ │ ├── 28 - polar_hist_street_orientation_Aeroporto Internacional Governador André Franco Montoro.pdf │ │ ├── 29 - polar_hist_street_orientation_Monte Carmelo.pdf │ │ ├── 3 - polar_hist_street_orientation_Pimentas.pdf │ │ ├── 30 - polar_hist_street_orientation_Cocaia.pdf │ │ ├── 31 - polar_hist_street_orientation_Lavras.pdf │ │ ├── 32 - polar_hist_street_orientation_Vila Barros.pdf │ │ ├── 33 - polar_hist_street_orientation_Itapegica.pdf │ │ ├── 34 - polar_hist_street_orientation_Aracília.pdf │ │ ├── 35 - polar_hist_street_orientation_Sadokim.pdf │ │ ├── 36 - polar_hist_street_orientation_Bom Clima.pdf │ │ ├── 37 - polar_hist_street_orientation_Macedo.pdf │ │ ├── 38 - polar_hist_street_orientation_Paraventi.pdf │ │ ├── 39 - polar_hist_street_orientation_Vila Galvão.pdf │ │ ├── 4 - polar_hist_street_orientation_Morro Grande.pdf │ │ ├── 40 - polar_hist_street_orientation_Maia.pdf │ │ ├── 41 - polar_hist_street_orientation_Várzea do Palácio.pdf │ │ ├── 42 - polar_hist_street_orientation_Jardim Presidente Dutra.pdf │ │ ├── 43 - polar_hist_street_orientation_Bela Vista.pdf │ │ ├── 44 - polar_hist_street_orientation_São Roque.pdf │ │ ├── 45 - polar_hist_street_orientation_Porto da Igreja.pdf │ │ ├── 46 - polar_hist_street_orientation_Tranquilidade.pdf │ │ ├── 47 - polar_hist_street_orientation_CECAP.pdf │ │ ├── 5 - polar_hist_street_orientation_Capelinha.pdf │ │ ├── 6 - polar_hist_street_orientation_Fortaleza.pdf │ │ ├── 7 - polar_hist_street_orientation_Bonsucesso.pdf │ │ ├── 8 - polar_hist_street_orientation_Tanque Grande.pdf │ │ └── 9 - polar_hist_street_orientation_Morros.pdf │ │ ├── USA-austin │ │ ├── 1 - polar_hist_street_orientation_BARTON HILLS.pdf │ │ ├── 10 - polar_hist_street_orientation_MONTOPOLIS.pdf │ │ ├── 11 - polar_hist_street_orientation_FRANKLIN PARK.pdf │ │ ├── 12 - polar_hist_street_orientation_SOUTH LAMAR.pdf │ │ ├── 13 - polar_hist_street_orientation_UPPER BOGGY CREEK.pdf │ │ ├── 14 - polar_hist_street_orientation_GARRISON PARK.pdf │ │ ├── 15 - polar_hist_street_orientation_RIVERSIDE.pdf │ │ ├── 16 - polar_hist_street_orientation_SOUTHEAST.pdf │ │ ├── 17 - polar_hist_street_orientation_WINDSOR PARK.pdf │ │ ├── 18 - polar_hist_street_orientation_PECAN SPRINGS-SPRINGDALE.pdf │ │ ├── 19 - polar_hist_street_orientation_HIGHLAND.pdf │ │ ├── 2 - polar_hist_street_orientation_EAST OAK HILL.pdf │ │ ├── 20 - polar_hist_street_orientation_JOHNSTON TERRACE.pdf │ │ ├── 21 - polar_hist_street_orientation_OLD ENFIELD.pdf │ │ ├── 22 - polar_hist_street_orientation_WOOTEN.pdf │ │ ├── 23 - polar_hist_street_orientation_WEST AUSTIN NEIGHBORHOOD GROUP.pdf │ │ ├── 24 - polar_hist_street_orientation_PARKER LANE.pdf │ │ ├── 25 - polar_hist_street_orientation_CORONADO HILLS.pdf │ │ ├── 26 - polar_hist_street_orientation_SOUTH MANCHACA.pdf │ │ ├── 27 - polar_hist_street_orientation_WINDSOR ROAD.pdf │ │ ├── 28 - polar_hist_street_orientation_NORTH BURNET.pdf │ │ ├── 29 - polar_hist_street_orientation_ALLANDALE.pdf │ │ ├── 3 - polar_hist_street_orientation_UNIVERSITY HILLS.pdf │ │ ├── 30 - polar_hist_street_orientation_NORTH AUSTIN CIVIC ASSOCIATION.pdf │ │ ├── 31 - polar_hist_street_orientation_ROSEDALE.pdf │ │ ├── 32 - polar_hist_street_orientation_UT.pdf │ │ ├── 33 - polar_hist_street_orientation_HERITAGE HILLS.pdf │ │ ├── 34 - polar_hist_street_orientation_EAST CONGRESS.pdf │ │ ├── 35 - polar_hist_street_orientation_SWEETBRIAR.pdf │ │ ├── 36 - polar_hist_street_orientation_PLEASANT VALLEY.pdf │ │ ├── 37 - polar_hist_street_orientation_ST. EDWARDS.pdf │ │ ├── 38 - polar_hist_street_orientation_ROSEWOOD.pdf │ │ ├── 39 - polar_hist_street_orientation_MCKINNEY.pdf │ │ ├── 4 - polar_hist_street_orientation_WEST OAK HILL.pdf │ │ ├── 40 - polar_hist_street_orientation_CENTRAL EAST AUSTIN.pdf │ │ ├── 41 - polar_hist_street_orientation_WINDSOR HILLS.pdf │ │ ├── 42 - polar_hist_street_orientation_ZILKER.pdf │ │ ├── 43 - polar_hist_street_orientation_ST. JOHN.pdf │ │ ├── 44 - polar_hist_street_orientation_BOULDIN CREEK.pdf │ │ ├── 45 - polar_hist_street_orientation_GEORGIAN ACRES.pdf │ │ ├── 46 - polar_hist_street_orientation_OLD WEST AUSTIN.pdf │ │ ├── 47 - polar_hist_street_orientation_TRIANGLE STATE.pdf │ │ ├── 48 - polar_hist_street_orientation_GOVALLE.pdf │ │ ├── 49 - polar_hist_street_orientation_NORTH SHOAL CREEK.pdf │ │ ├── 5 - polar_hist_street_orientation_GATEWAY.pdf │ │ ├── 50 - polar_hist_street_orientation_DAWSON.pdf │ │ ├── 51 - polar_hist_street_orientation_GALINDO.pdf │ │ ├── 52 - polar_hist_street_orientation_NORTH LOOP.pdf │ │ ├── 53 - polar_hist_street_orientation_WEST CONGRESS.pdf │ │ ├── 54 - polar_hist_street_orientation_NORTH LAMAR.pdf │ │ ├── 55 - polar_hist_street_orientation_RMMA.pdf │ │ ├── 56 - polar_hist_street_orientation_BRENTWOOD.pdf │ │ ├── 57 - polar_hist_street_orientation_WEST UNIVERSITY.pdf │ │ ├── 58 - polar_hist_street_orientation_NORTH UNIVERSITY.pdf │ │ ├── 59 - polar_hist_street_orientation_CRESTVIEW.pdf │ │ ├── 6 - polar_hist_street_orientation_MLK-183.pdf │ │ ├── 60 - polar_hist_street_orientation_HANCOCK.pdf │ │ ├── 61 - polar_hist_street_orientation_EAST CESAR CHAVEZ.pdf │ │ ├── 62 - polar_hist_street_orientation_DOWNTOWN.pdf │ │ ├── 63 - polar_hist_street_orientation_HOLLY.pdf │ │ ├── 64 - polar_hist_street_orientation_CHESTNUT.pdf │ │ ├── 65 - polar_hist_street_orientation_HYDE PARK.pdf │ │ ├── 7 - polar_hist_street_orientation_WESTGATE.pdf │ │ ├── 8 - polar_hist_street_orientation_SOUTH RIVER CITY.pdf │ │ └── 9 - polar_hist_street_orientation_MLK.pdf │ │ ├── USA-boston │ │ ├── 1 - polar_hist_street_orientation_Downtown.pdf │ │ ├── 10 - polar_hist_street_orientation_Charlestown.pdf │ │ ├── 11 - polar_hist_street_orientation_Mattapan.pdf │ │ ├── 12 - polar_hist_street_orientation_North End.pdf │ │ ├── 13 - polar_hist_street_orientation_West Roxbury.pdf │ │ ├── 14 - polar_hist_street_orientation_Harbor Islands.pdf │ │ ├── 15 - polar_hist_street_orientation_South Boston.pdf │ │ ├── 16 - polar_hist_street_orientation_Mission Hill.pdf │ │ ├── 17 - polar_hist_street_orientation_South Boston Waterfront.pdf │ │ ├── 18 - polar_hist_street_orientation_Longwood.pdf │ │ ├── 19 - polar_hist_street_orientation_Roslindale.pdf │ │ ├── 2 - polar_hist_street_orientation_Jamaica Plain.pdf │ │ ├── 20 - polar_hist_street_orientation_Beacon Hill.pdf │ │ ├── 21 - polar_hist_street_orientation_Chinatown.pdf │ │ ├── 22 - polar_hist_street_orientation_Back Bay.pdf │ │ ├── 23 - polar_hist_street_orientation_South End.pdf │ │ ├── 24 - polar_hist_street_orientation_Bay Village.pdf │ │ ├── 25 - polar_hist_street_orientation_Leather District.pdf │ │ ├── 3 - polar_hist_street_orientation_Allston.pdf │ │ ├── 4 - polar_hist_street_orientation_West End.pdf │ │ ├── 5 - polar_hist_street_orientation_Dorchester.pdf │ │ ├── 6 - polar_hist_street_orientation_Roxbury.pdf │ │ ├── 7 - polar_hist_street_orientation_East Boston.pdf │ │ ├── 8 - polar_hist_street_orientation_Fenway.pdf │ │ └── 9 - polar_hist_street_orientation_Brighton.pdf │ │ ├── USA-chicago │ │ ├── 1 - polar_hist_street_orientation_O'Hare.pdf │ │ ├── 10 - polar_hist_street_orientation_East Side.pdf │ │ ├── 11 - polar_hist_street_orientation_Pullman.pdf │ │ ├── 12 - polar_hist_street_orientation_Chinatown.pdf │ │ ├── 13 - polar_hist_street_orientation_Grant Park.pdf │ │ ├── 14 - polar_hist_street_orientation_Morgan Park.pdf │ │ ├── 15 - polar_hist_street_orientation_Edison Park.pdf │ │ ├── 16 - polar_hist_street_orientation_Hegewisch.pdf │ │ ├── 17 - polar_hist_street_orientation_Washington Park.pdf │ │ ├── 18 - polar_hist_street_orientation_Lincoln Park.pdf │ │ ├── 19 - polar_hist_street_orientation_Loop.pdf │ │ ├── 2 - polar_hist_street_orientation_Jackson Park.pdf │ │ ├── 20 - polar_hist_street_orientation_Bucktown.pdf │ │ ├── 21 - polar_hist_street_orientation_Uptown.pdf │ │ ├── 22 - polar_hist_street_orientation_Greektown.pdf │ │ ├── 23 - polar_hist_street_orientation_Rogers Park.pdf │ │ ├── 24 - polar_hist_street_orientation_Bridgeport.pdf │ │ ├── 25 - polar_hist_street_orientation_Avalon Park.pdf │ │ ├── 26 - polar_hist_street_orientation_Avondale.pdf │ │ ├── 27 - polar_hist_street_orientation_West Town.pdf │ │ ├── 28 - polar_hist_street_orientation_Near South Side.pdf │ │ ├── 29 - polar_hist_street_orientation_Gold Coast.pdf │ │ ├── 3 - polar_hist_street_orientation_Museum Campus.pdf │ │ ├── 30 - polar_hist_street_orientation_Magnificent Mile.pdf │ │ ├── 31 - polar_hist_street_orientation_North Park.pdf │ │ ├── 32 - polar_hist_street_orientation_Kenwood.pdf │ │ ├── 33 - polar_hist_street_orientation_Streeterville.pdf │ │ ├── 34 - polar_hist_street_orientation_Millenium Park.pdf │ │ ├── 35 - polar_hist_street_orientation_Armour Square.pdf │ │ ├── 36 - polar_hist_street_orientation_Boystown.pdf │ │ ├── 37 - polar_hist_street_orientation_Mckinley Park.pdf │ │ ├── 38 - polar_hist_street_orientation_West Ridge.pdf │ │ ├── 39 - polar_hist_street_orientation_Grand Crossing.pdf │ │ ├── 4 - polar_hist_street_orientation_Riverdale.pdf │ │ ├── 40 - polar_hist_street_orientation_Irving Park.pdf │ │ ├── 41 - polar_hist_street_orientation_Beverly.pdf │ │ ├── 42 - polar_hist_street_orientation_Ashburn.pdf │ │ ├── 43 - polar_hist_street_orientation_Hyde Park.pdf │ │ ├── 44 - polar_hist_street_orientation_North Lawndale.pdf │ │ ├── 45 - polar_hist_street_orientation_South Shore.pdf │ │ ├── 46 - polar_hist_street_orientation_Lake View.pdf │ │ ├── 47 - polar_hist_street_orientation_Garfield Park.pdf │ │ ├── 48 - polar_hist_street_orientation_River North.pdf │ │ ├── 49 - polar_hist_street_orientation_Edgewater.pdf │ │ ├── 5 - polar_hist_street_orientation_Sauganash,Forest Glen.pdf │ │ ├── 50 - polar_hist_street_orientation_Printers Row.pdf │ │ ├── 51 - polar_hist_street_orientation_Lower West Side.pdf │ │ ├── 52 - polar_hist_street_orientation_Fuller Park.pdf │ │ ├── 53 - polar_hist_street_orientation_South Chicago.pdf │ │ ├── 54 - polar_hist_street_orientation_Douglas.pdf │ │ ├── 55 - polar_hist_street_orientation_Roseland.pdf │ │ ├── 56 - polar_hist_street_orientation_Garfield Ridge.pdf │ │ ├── 57 - polar_hist_street_orientation_Old Town.pdf │ │ ├── 58 - polar_hist_street_orientation_Calumet Heights.pdf │ │ ├── 59 - polar_hist_street_orientation_Washington Heights.pdf │ │ ├── 6 - polar_hist_street_orientation_Jefferson Park.pdf │ │ ├── 60 - polar_hist_street_orientation_Wicker Park.pdf │ │ ├── 61 - polar_hist_street_orientation_Logan Square.pdf │ │ ├── 62 - polar_hist_street_orientation_Humboldt Park.pdf │ │ ├── 63 - polar_hist_street_orientation_Little Italy, UIC.pdf │ │ ├── 64 - polar_hist_street_orientation_West Loop.pdf │ │ ├── 65 - polar_hist_street_orientation_Albany Park.pdf │ │ ├── 66 - polar_hist_street_orientation_Chatham.pdf │ │ ├── 67 - polar_hist_street_orientation_Wrigleyville.pdf │ │ ├── 68 - polar_hist_street_orientation_Archer Heights.pdf │ │ ├── 69 - polar_hist_street_orientation_Lincoln Square.pdf │ │ ├── 7 - polar_hist_street_orientation_Norwood Park.pdf │ │ ├── 70 - polar_hist_street_orientation_Clearing.pdf │ │ ├── 71 - polar_hist_street_orientation_Little Village.pdf │ │ ├── 72 - polar_hist_street_orientation_Brighton Park.pdf │ │ ├── 73 - polar_hist_street_orientation_Portage Park.pdf │ │ ├── 74 - polar_hist_street_orientation_Auburn Gresham.pdf │ │ ├── 75 - polar_hist_street_orientation_Sheffield & DePaul.pdf │ │ ├── 76 - polar_hist_street_orientation_North Center.pdf │ │ ├── 77 - polar_hist_street_orientation_Austin.pdf │ │ ├── 78 - polar_hist_street_orientation_Chicago Lawn.pdf │ │ ├── 79 - polar_hist_street_orientation_Dunning.pdf │ │ ├── 8 - polar_hist_street_orientation_Oakland.pdf │ │ ├── 80 - polar_hist_street_orientation_Burnside.pdf │ │ ├── 81 - polar_hist_street_orientation_Mount Greenwood.pdf │ │ ├── 82 - polar_hist_street_orientation_West Pullman.pdf │ │ ├── 83 - polar_hist_street_orientation_United Center.pdf │ │ ├── 84 - polar_hist_street_orientation_Woodlawn.pdf │ │ ├── 85 - polar_hist_street_orientation_Belmont Cragin.pdf │ │ ├── 86 - polar_hist_street_orientation_Andersonville.pdf │ │ ├── 87 - polar_hist_street_orientation_New City.pdf │ │ ├── 88 - polar_hist_street_orientation_Rush & Division.pdf │ │ ├── 89 - polar_hist_street_orientation_West Lawn.pdf │ │ ├── 9 - polar_hist_street_orientation_South Deering.pdf │ │ ├── 90 - polar_hist_street_orientation_Englewood.pdf │ │ ├── 91 - polar_hist_street_orientation_Grand Boulevard.pdf │ │ ├── 92 - polar_hist_street_orientation_Montclare.pdf │ │ ├── 93 - polar_hist_street_orientation_Gage Park.pdf │ │ ├── 94 - polar_hist_street_orientation_West Elsdon.pdf │ │ ├── 95 - polar_hist_street_orientation_Hermosa.pdf │ │ ├── 96 - polar_hist_street_orientation_Galewood.pdf │ │ ├── 97 - polar_hist_street_orientation_East Village.pdf │ │ └── 98 - polar_hist_street_orientation_Ukrainian Village.pdf │ │ ├── USA-los_angeles_minors │ │ ├── 1 - polar_hist_street_orientation_Topanga.pdf │ │ ├── 10 - polar_hist_street_orientation_Pacific Palisades.pdf │ │ ├── 100 - polar_hist_street_orientation_Mid-Wilshire.pdf │ │ ├── 101 - polar_hist_street_orientation_Winnetka.pdf │ │ ├── 102 - polar_hist_street_orientation_Hancock Park.pdf │ │ ├── 103 - polar_hist_street_orientation_Lake Balboa.pdf │ │ ├── 104 - polar_hist_street_orientation_Arlington Heights.pdf │ │ ├── 105 - polar_hist_street_orientation_Watts.pdf │ │ ├── 106 - polar_hist_street_orientation_Harbor Gateway.pdf │ │ ├── 107 - polar_hist_street_orientation_Lakewood.pdf │ │ ├── 108 - polar_hist_street_orientation_Central-Alameda.pdf │ │ ├── 109 - polar_hist_street_orientation_Bell Gardens.pdf │ │ ├── 11 - polar_hist_street_orientation_Calabasas.pdf │ │ ├── 110 - polar_hist_street_orientation_Lomita.pdf │ │ ├── 111 - polar_hist_street_orientation_Rancho Park.pdf │ │ ├── 112 - polar_hist_street_orientation_Covina.pdf │ │ ├── 113 - polar_hist_street_orientation_Northridge.pdf │ │ ├── 114 - polar_hist_street_orientation_Toluca Lake.pdf │ │ ├── 115 - polar_hist_street_orientation_Alondra Park.pdf │ │ ├── 116 - polar_hist_street_orientation_Signal Hill.pdf │ │ ├── 117 - polar_hist_street_orientation_Willowbrook.pdf │ │ ├── 118 - polar_hist_street_orientation_Vernon.pdf │ │ ├── 119 - polar_hist_street_orientation_Cerritos.pdf │ │ ├── 12 - polar_hist_street_orientation_Unincorporated Santa Susana Mountains.pdf │ │ ├── 120 - polar_hist_street_orientation_University Park.pdf │ │ ├── 121 - polar_hist_street_orientation_Beverly Grove.pdf │ │ ├── 122 - polar_hist_street_orientation_Santa Monica.pdf │ │ ├── 123 - polar_hist_street_orientation_Historic South-Central.pdf │ │ ├── 124 - polar_hist_street_orientation_Valley Glen.pdf │ │ ├── 125 - polar_hist_street_orientation_North Hollywood.pdf │ │ ├── 126 - polar_hist_street_orientation_Canoga Park.pdf │ │ ├── 127 - polar_hist_street_orientation_Broadway-Manchester.pdf │ │ ├── 128 - polar_hist_street_orientation_Lawndale.pdf │ │ ├── 129 - polar_hist_street_orientation_Palms.pdf │ │ ├── 13 - polar_hist_street_orientation_Beverly Crest.pdf │ │ ├── 130 - polar_hist_street_orientation_Citrus.pdf │ │ ├── 131 - polar_hist_street_orientation_Sawtelle.pdf │ │ ├── 132 - polar_hist_street_orientation_Reseda.pdf │ │ ├── 133 - polar_hist_street_orientation_Westlake.pdf │ │ ├── 134 - polar_hist_street_orientation_North Hills.pdf │ │ ├── 135 - polar_hist_street_orientation_Hawthorne.pdf │ │ ├── 136 - polar_hist_street_orientation_Gardena.pdf │ │ ├── 137 - polar_hist_street_orientation_Paramount.pdf │ │ ├── 138 - polar_hist_street_orientation_East Hollywood.pdf │ │ ├── 139 - polar_hist_street_orientation_Green Meadows.pdf │ │ ├── 14 - polar_hist_street_orientation_Walnut.pdf │ │ ├── 140 - polar_hist_street_orientation_El Segundo.pdf │ │ ├── 141 - polar_hist_street_orientation_Compton.pdf │ │ ├── 142 - polar_hist_street_orientation_Jefferson Park.pdf │ │ ├── 143 - polar_hist_street_orientation_South Gate.pdf │ │ ├── 144 - polar_hist_street_orientation_Hollywood.pdf │ │ ├── 145 - polar_hist_street_orientation_Mar Vista.pdf │ │ ├── 146 - polar_hist_street_orientation_Gramercy Park.pdf │ │ ├── 147 - polar_hist_street_orientation_Huntington Park.pdf │ │ ├── 148 - polar_hist_street_orientation_Valley Village.pdf │ │ ├── 149 - polar_hist_street_orientation_Florence-Firestone.pdf │ │ ├── 15 - polar_hist_street_orientation_View Park-Windsor Hills.pdf │ │ ├── 150 - polar_hist_street_orientation_Westmont.pdf │ │ ├── 151 - polar_hist_street_orientation_Fairfax.pdf │ │ ├── 152 - polar_hist_street_orientation_Koreatown.pdf │ │ ├── 153 - polar_hist_street_orientation_Van Nuys.pdf │ │ ├── 154 - polar_hist_street_orientation_Charter Oak.pdf │ │ ├── 155 - polar_hist_street_orientation_Arleta.pdf │ │ ├── 156 - polar_hist_street_orientation_Wilmington.pdf │ │ ├── 157 - polar_hist_street_orientation_Exposition Park.pdf │ │ ├── 158 - polar_hist_street_orientation_Pacoima.pdf │ │ ├── 159 - polar_hist_street_orientation_Harvard Heights.pdf │ │ ├── 16 - polar_hist_street_orientation_Rolling Hills.pdf │ │ ├── 160 - polar_hist_street_orientation_Vermont Vista.pdf │ │ ├── 161 - polar_hist_street_orientation_Bellflower.pdf │ │ ├── 162 - polar_hist_street_orientation_Manchester Square.pdf │ │ ├── 163 - polar_hist_street_orientation_Bell.pdf │ │ ├── 164 - polar_hist_street_orientation_West Los Angeles.pdf │ │ ├── 165 - polar_hist_street_orientation_Vermont-Slauson.pdf │ │ ├── 166 - polar_hist_street_orientation_Vermont Knolls.pdf │ │ ├── 167 - polar_hist_street_orientation_Hyde Park.pdf │ │ ├── 168 - polar_hist_street_orientation_Larchmont.pdf │ │ ├── 169 - polar_hist_street_orientation_Maywood.pdf │ │ ├── 17 - polar_hist_street_orientation_Bel-Air.pdf │ │ ├── 170 - polar_hist_street_orientation_San Fernando.pdf │ │ ├── 171 - polar_hist_street_orientation_Vermont Square.pdf │ │ ├── 172 - polar_hist_street_orientation_Adams-Normandie.pdf │ │ ├── 173 - polar_hist_street_orientation_East Compton.pdf │ │ ├── 174 - polar_hist_street_orientation_Artesia.pdf │ │ ├── 175 - polar_hist_street_orientation_Florence.pdf │ │ ├── 176 - polar_hist_street_orientation_Hawaiian Gardens.pdf │ │ ├── 177 - polar_hist_street_orientation_South Park.pdf │ │ ├── 178 - polar_hist_street_orientation_Cudahy.pdf │ │ ├── 179 - polar_hist_street_orientation_Walnut Park.pdf │ │ ├── 18 - polar_hist_street_orientation_Elysian Park.pdf │ │ ├── 19 - polar_hist_street_orientation_Griffith Park.pdf │ │ ├── 2 - polar_hist_street_orientation_Hollywood Hills West.pdf │ │ ├── 20 - polar_hist_street_orientation_El Sereno.pdf │ │ ├── 21 - polar_hist_street_orientation_Lopez-Kagel Canyons.pdf │ │ ├── 22 - polar_hist_street_orientation_Brentwood.pdf │ │ ├── 23 - polar_hist_street_orientation_Porter Ranch.pdf │ │ ├── 24 - polar_hist_street_orientation_Cheviot Hills.pdf │ │ ├── 25 - polar_hist_street_orientation_Beverly Hills.pdf │ │ ├── 26 - polar_hist_street_orientation_Studio City.pdf │ │ ├── 27 - polar_hist_street_orientation_Los Feliz.pdf │ │ ├── 28 - polar_hist_street_orientation_Westwood.pdf │ │ ├── 29 - polar_hist_street_orientation_Industry.pdf │ │ ├── 3 - polar_hist_street_orientation_La Habra Heights.pdf │ │ ├── 30 - polar_hist_street_orientation_Rowland Heights.pdf │ │ ├── 31 - polar_hist_street_orientation_Silver Lake.pdf │ │ ├── 32 - polar_hist_street_orientation_Woodland Hills.pdf │ │ ├── 33 - polar_hist_street_orientation_Marina del Rey.pdf │ │ ├── 34 - polar_hist_street_orientation_Culver City.pdf │ │ ├── 35 - polar_hist_street_orientation_La Mirada.pdf │ │ ├── 36 - polar_hist_street_orientation_Hacienda Heights.pdf │ │ ├── 37 - polar_hist_street_orientation_Whittier.pdf │ │ ├── 38 - polar_hist_street_orientation_South Whittier.pdf │ │ ├── 39 - polar_hist_street_orientation_Encino.pdf │ │ ├── 4 - polar_hist_street_orientation_Hollywood Hills.pdf │ │ ├── 40 - polar_hist_street_orientation_San Dimas.pdf │ │ ├── 41 - polar_hist_street_orientation_Tarzana.pdf │ │ ├── 42 - polar_hist_street_orientation_Ladera Heights.pdf │ │ ├── 43 - polar_hist_street_orientation_Baldwin Hills-Crenshaw.pdf │ │ ├── 44 - polar_hist_street_orientation_Lincoln Heights.pdf │ │ ├── 45 - polar_hist_street_orientation_Westchester.pdf │ │ ├── 46 - polar_hist_street_orientation_West Covina.pdf │ │ ├── 47 - polar_hist_street_orientation_Chinatown.pdf │ │ ├── 48 - polar_hist_street_orientation_Sherman Oaks.pdf │ │ ├── 49 - polar_hist_street_orientation_East Los Angeles.pdf │ │ ├── 5 - polar_hist_street_orientation_Rolling Hills Estates.pdf │ │ ├── 50 - polar_hist_street_orientation_Playa del Rey.pdf │ │ ├── 51 - polar_hist_street_orientation_San Pedro.pdf │ │ ├── 52 - polar_hist_street_orientation_West Hills.pdf │ │ ├── 53 - polar_hist_street_orientation_Montebello.pdf │ │ ├── 54 - polar_hist_street_orientation_Lake View Terrace.pdf │ │ ├── 55 - polar_hist_street_orientation_Sepulveda Basin.pdf │ │ ├── 56 - polar_hist_street_orientation_Veterans Administration.pdf │ │ ├── 57 - polar_hist_street_orientation_Hidden Hills.pdf │ │ ├── 58 - polar_hist_street_orientation_Torrance.pdf │ │ ├── 59 - polar_hist_street_orientation_Sun Valley.pdf │ │ ├── 6 - polar_hist_street_orientation_Westlake Village.pdf │ │ ├── 60 - polar_hist_street_orientation_Santa Fe Springs.pdf │ │ ├── 61 - polar_hist_street_orientation_Mission Hills.pdf │ │ ├── 62 - polar_hist_street_orientation_Burbank.pdf │ │ ├── 63 - polar_hist_street_orientation_Commerce.pdf │ │ ├── 64 - polar_hist_street_orientation_La Verne.pdf │ │ ├── 65 - polar_hist_street_orientation_Granada Hills.pdf │ │ ├── 66 - polar_hist_street_orientation_Pomona.pdf │ │ ├── 67 - polar_hist_street_orientation_Panorama City.pdf │ │ ├── 68 - polar_hist_street_orientation_Carthay.pdf │ │ ├── 69 - polar_hist_street_orientation_Claremont.pdf │ │ ├── 7 - polar_hist_street_orientation_Diamond Bar.pdf │ │ ├── 70 - polar_hist_street_orientation_Downtown.pdf │ │ ├── 71 - polar_hist_street_orientation_East La Mirada.pdf │ │ ├── 72 - polar_hist_street_orientation_Redondo Beach.pdf │ │ ├── 73 - polar_hist_street_orientation_West Hollywood.pdf │ │ ├── 74 - polar_hist_street_orientation_Beverlywood.pdf │ │ ├── 75 - polar_hist_street_orientation_Lynwood.pdf │ │ ├── 76 - polar_hist_street_orientation_Del Rey.pdf │ │ ├── 77 - polar_hist_street_orientation_Manhattan Beach.pdf │ │ ├── 78 - polar_hist_street_orientation_Leimert Park.pdf │ │ ├── 79 - polar_hist_street_orientation_Rancho Dominguez.pdf │ │ ├── 8 - polar_hist_street_orientation_Palos Verdes Estates.pdf │ │ ├── 80 - polar_hist_street_orientation_Echo Park.pdf │ │ ├── 81 - polar_hist_street_orientation_Inglewood.pdf │ │ ├── 82 - polar_hist_street_orientation_West Adams.pdf │ │ ├── 83 - polar_hist_street_orientation_Sylmar.pdf │ │ ├── 84 - polar_hist_street_orientation_Norwalk.pdf │ │ ├── 85 - polar_hist_street_orientation_Mid-City.pdf │ │ ├── 86 - polar_hist_street_orientation_Harbor City.pdf │ │ ├── 87 - polar_hist_street_orientation_Boyle Heights.pdf │ │ ├── 88 - polar_hist_street_orientation_Glendora.pdf │ │ ├── 89 - polar_hist_street_orientation_Playa Vista.pdf │ │ ├── 9 - polar_hist_street_orientation_Rancho Palos Verdes.pdf │ │ ├── 90 - polar_hist_street_orientation_Pico-Robertson.pdf │ │ ├── 91 - polar_hist_street_orientation_Pico-Union.pdf │ │ ├── 92 - polar_hist_street_orientation_Hermosa Beach.pdf │ │ ├── 93 - polar_hist_street_orientation_Venice.pdf │ │ ├── 94 - polar_hist_street_orientation_Downey.pdf │ │ ├── 95 - polar_hist_street_orientation_Century City.pdf │ │ ├── 96 - polar_hist_street_orientation_West Carson.pdf │ │ ├── 97 - polar_hist_street_orientation_Carson.pdf │ │ ├── 98 - polar_hist_street_orientation_Windsor Square.pdf │ │ └── 99 - polar_hist_street_orientation_Del Aire.pdf │ │ └── USA-seattle │ │ ├── 1 - polar_hist_street_orientation_Windermere.pdf │ │ ├── 10 - polar_hist_street_orientation_Briarcliff.pdf │ │ ├── 11 - polar_hist_street_orientation_South Beacon Hill.pdf │ │ ├── 12 - polar_hist_street_orientation_Fauntleroy.pdf │ │ ├── 13 - polar_hist_street_orientation_Matthews Beach.pdf │ │ ├── 14 - polar_hist_street_orientation_Montlake.pdf │ │ ├── 15 - polar_hist_street_orientation_Mount Baker.pdf │ │ ├── 16 - polar_hist_street_orientation_Rainier View.pdf │ │ ├── 17 - polar_hist_street_orientation_North Queen Anne.pdf │ │ ├── 18 - polar_hist_street_orientation_Columbia City.pdf │ │ ├── 19 - polar_hist_street_orientation_Sunset Hill.pdf │ │ ├── 2 - polar_hist_street_orientation_Harbor Island.pdf │ │ ├── 20 - polar_hist_street_orientation_Victory Heights.pdf │ │ ├── 21 - polar_hist_street_orientation_Green Lake.pdf │ │ ├── 22 - polar_hist_street_orientation_Alki.pdf │ │ ├── 23 - polar_hist_street_orientation_Holly Park.pdf │ │ ├── 24 - polar_hist_street_orientation_High Point.pdf │ │ ├── 25 - polar_hist_street_orientation_Cedar Park.pdf │ │ ├── 26 - polar_hist_street_orientation_View Ridge.pdf │ │ ├── 27 - polar_hist_street_orientation_Highland Park.pdf │ │ ├── 28 - polar_hist_street_orientation_Dunlap.pdf │ │ ├── 29 - polar_hist_street_orientation_Mid-Beacon Hill.pdf │ │ ├── 3 - polar_hist_street_orientation_Georgetown.pdf │ │ ├── 30 - polar_hist_street_orientation_Broadview.pdf │ │ ├── 31 - polar_hist_street_orientation_Crown Hill.pdf │ │ ├── 32 - polar_hist_street_orientation_Stevens.pdf │ │ ├── 33 - polar_hist_street_orientation_East Queen Anne.pdf │ │ ├── 34 - polar_hist_street_orientation_Rainier Beach.pdf │ │ ├── 35 - polar_hist_street_orientation_Lawton Park.pdf │ │ ├── 36 - polar_hist_street_orientation_Portage Bay.pdf │ │ ├── 37 - polar_hist_street_orientation_Phinney Ridge.pdf │ │ ├── 38 - polar_hist_street_orientation_Brighton.pdf │ │ ├── 39 - polar_hist_street_orientation_Broadway.pdf │ │ ├── 4 - polar_hist_street_orientation_Harrison-Denny-Blaine.pdf │ │ ├── 40 - polar_hist_street_orientation_North Beacon Hill.pdf │ │ ├── 41 - polar_hist_street_orientation_Leschi.pdf │ │ ├── 42 - polar_hist_street_orientation_Fremont.pdf │ │ ├── 43 - polar_hist_street_orientation_Whittier Heights.pdf │ │ ├── 44 - polar_hist_street_orientation_South Park.pdf │ │ ├── 45 - polar_hist_street_orientation_Wallingford.pdf │ │ ├── 46 - polar_hist_street_orientation_Pioneer Square.pdf │ │ ├── 47 - polar_hist_street_orientation_West Queen Anne.pdf │ │ ├── 48 - polar_hist_street_orientation_South Delridge.pdf │ │ ├── 49 - polar_hist_street_orientation_Greenwood.pdf │ │ ├── 5 - polar_hist_street_orientation_Laurelhurst.pdf │ │ ├── 50 - polar_hist_street_orientation_Seaview.pdf │ │ ├── 51 - polar_hist_street_orientation_Mann.pdf │ │ ├── 52 - polar_hist_street_orientation_Madrona.pdf │ │ ├── 53 - polar_hist_street_orientation_Bryant.pdf │ │ ├── 54 - polar_hist_street_orientation_University District.pdf │ │ ├── 55 - polar_hist_street_orientation_Madison Park.pdf │ │ ├── 56 - polar_hist_street_orientation_Ravenna.pdf │ │ ├── 57 - polar_hist_street_orientation_Adams.pdf │ │ ├── 58 - polar_hist_street_orientation_Eastlake.pdf │ │ ├── 59 - polar_hist_street_orientation_Atlantic.pdf │ │ ├── 6 - polar_hist_street_orientation_North Beach-Blue Ridge.pdf │ │ ├── 60 - polar_hist_street_orientation_Gatewood.pdf │ │ ├── 61 - polar_hist_street_orientation_Yesler Terrace.pdf │ │ ├── 62 - polar_hist_street_orientation_Haller Lake.pdf │ │ ├── 63 - polar_hist_street_orientation_Fairmount Park.pdf │ │ ├── 64 - polar_hist_street_orientation_Wedgwood.pdf │ │ ├── 65 - polar_hist_street_orientation_Arbor Heights.pdf │ │ ├── 66 - polar_hist_street_orientation_Olympic Hills.pdf │ │ ├── 67 - polar_hist_street_orientation_North Admiral.pdf │ │ ├── 68 - polar_hist_street_orientation_Sand Point.pdf │ │ ├── 69 - polar_hist_street_orientation_Riverview.pdf │ │ ├── 7 - polar_hist_street_orientation_Seward Park.pdf │ │ ├── 70 - polar_hist_street_orientation_South Lake Union.pdf │ │ ├── 71 - polar_hist_street_orientation_Meadowbrook.pdf │ │ ├── 72 - polar_hist_street_orientation_Minor.pdf │ │ ├── 73 - polar_hist_street_orientation_Roosevelt.pdf │ │ ├── 74 - polar_hist_street_orientation_Genesee.pdf │ │ ├── 75 - polar_hist_street_orientation_Bitter Lake.pdf │ │ ├── 76 - polar_hist_street_orientation_Loyal Heights.pdf │ │ ├── 77 - polar_hist_street_orientation_Westlake.pdf │ │ ├── 78 - polar_hist_street_orientation_Roxhill.pdf │ │ ├── 79 - polar_hist_street_orientation_North Delridge.pdf │ │ ├── 8 - polar_hist_street_orientation_Industrial District.pdf │ │ ├── 80 - polar_hist_street_orientation_Pinehurst.pdf │ │ ├── 81 - polar_hist_street_orientation_Pike-Market.pdf │ │ ├── 82 - polar_hist_street_orientation_West Woodland.pdf │ │ ├── 83 - polar_hist_street_orientation_North College Park.pdf │ │ ├── 84 - polar_hist_street_orientation_First Hill.pdf │ │ ├── 85 - polar_hist_street_orientation_Southeast Magnolia.pdf │ │ ├── 86 - polar_hist_street_orientation_Maple Leaf.pdf │ │ ├── 87 - polar_hist_street_orientation_Lower Queen Anne.pdf │ │ ├── 88 - polar_hist_street_orientation_Belltown.pdf │ │ ├── 89 - polar_hist_street_orientation_International District.pdf │ │ ├── 9 - polar_hist_street_orientation_Interbay.pdf │ │ └── 90 - polar_hist_street_orientation_Central Business District.pdf └── shapefiles │ ├── austin │ ├── austin.dbf │ ├── austin.prj │ ├── austin.shp │ └── austin.shx │ ├── boston │ ├── boston.cpg │ ├── boston.dbf │ ├── boston.prj │ ├── boston.shp │ └── boston.shx │ ├── chicago │ ├── chicago.dbf │ ├── chicago.prj │ ├── chicago.shp │ └── chicago.shx │ ├── guarulhos_osm │ ├── guarulhos_osm.cpg │ ├── guarulhos_osm.dbf │ ├── guarulhos_osm.gal │ ├── guarulhos_osm.prj │ ├── guarulhos_osm.shp │ └── guarulhos_osm.shx │ ├── los_angeles_majors │ ├── los_angeles_majors.cpg │ ├── los_angeles_majors.dbf │ ├── los_angeles_majors.prj │ ├── los_angeles_majors.shp │ └── los_angeles_majors.shx │ ├── los_angeles_minors │ ├── los_angeles_minors.cpg │ ├── los_angeles_minors.dbf │ ├── los_angeles_minors.prj │ ├── los_angeles_minors.shp │ └── los_angeles_minors.shx │ ├── seattle │ ├── seattle.cpg │ ├── seattle.dbf │ ├── seattle.prj │ ├── seattle.shp │ └── seattle.shx │ └── urban_regions_SP │ ├── urban_regions_SP.cpg │ ├── urban_regions_SP.dbf │ ├── urban_regions_SP.prj │ ├── urban_regions_SP.shp │ └── urban_regions_SP.shx ├── docs ├── misc │ ├── fetch_osm_dd.py │ └── geopandas_example.ipynb ├── notebooks │ ├── gmaps │ │ ├── destinations.csv │ │ ├── distances.py │ │ ├── gmaps_api_example.ipynb │ │ └── origins.csv │ ├── lmr_analyzer │ │ ├── distance_matrix_example.ipynb │ │ ├── geometry_class_example.ipynb │ │ └── lmr_analyzer_example.ipynb │ └── osmnx │ │ ├── consolidation.ipynb │ │ ├── docs │ │ └── notebooks │ │ │ └── osmnx │ │ │ └── graphs │ │ │ └── RouteID_1cfa272e-cb3d-4ea4-9cac-dc6dc356d7f0.shp │ │ │ ├── edges.cpg │ │ │ ├── edges.dbf │ │ │ ├── edges.prj │ │ │ ├── edges.shp │ │ │ ├── edges.shx │ │ │ ├── nodes.cpg │ │ │ ├── nodes.dbf │ │ │ ├── nodes.prj │ │ │ ├── nodes.shp │ │ │ └── nodes.shx │ │ ├── done │ │ ├── ntbk-0.py │ │ ├── route_id.csv │ │ ├── route_id_0.csv │ │ ├── route_id_4.csv │ │ ├── stats_entropy_dict0.json │ │ ├── stats_entropy_dict4.json │ │ ├── stats_entropy_dictroute_id_1_0.json │ │ ├── stats_entropy_dictroute_id_1_1.json │ │ ├── stats_entropy_dictroute_id_1_2.json │ │ ├── stats_entropy_dictroute_id_1_3.json │ │ ├── stats_entropy_dictroute_id_1_4.json │ │ ├── stats_entropy_dictroute_id_2_0.json │ │ ├── stats_entropy_dictroute_id_2_1.json │ │ ├── stats_entropy_dictroute_id_2_2.json │ │ ├── stats_entropy_dictroute_id_2_3.json │ │ ├── stats_entropy_dictroute_id_2_4.json │ │ ├── stats_entropy_dictroute_id_3_0.json │ │ ├── stats_entropy_dictroute_id_3_1.json │ │ ├── stats_entropy_dictroute_id_3_2.json │ │ ├── stats_entropy_dictroute_id_3_3.json │ │ └── stats_entropy_dictroute_id_3_4.json │ │ ├── graphs_from_bbox2.ipynb │ │ ├── multiple_neigh_example.ipynb │ │ └── single_neigh_example.ipynb └── static │ ├── logo_lmr_corrigido.png │ └── uml │ ├── classes.html │ └── packages.html ├── lmr_analyzer ├── __init__.py ├── amz_serializer.py ├── analysis.py ├── bbox.py ├── distance_matrix.py ├── enums.py ├── geometry.py ├── package.py ├── plots │ ├── __init__.py │ └── plots_geometry.py ├── route.py ├── stop.py ├── utils.py └── vehicle.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt └── tests ├── __init__.py ├── conftest.py ├── test_bbox.py ├── test_distance_matrix.py ├── test_package.py ├── test_stop.py ├── test_utils.py └── test_vehicle.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @Gui-FernandesBR -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/.pylintrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/README.md -------------------------------------------------------------------------------- /data/driving_distances/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/driving_distances/README.md -------------------------------------------------------------------------------- /data/driving_distances/austin.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/driving_distances/austin.csv -------------------------------------------------------------------------------- /data/driving_distances/boston.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/driving_distances/boston.csv -------------------------------------------------------------------------------- /data/driving_distances/chicago.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/driving_distances/chicago.csv -------------------------------------------------------------------------------- /data/driving_distances/guarulhos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/driving_distances/guarulhos.csv -------------------------------------------------------------------------------- /data/driving_distances/los_angeles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/driving_distances/los_angeles.csv -------------------------------------------------------------------------------- /data/driving_distances/seattle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/driving_distances/seattle.csv -------------------------------------------------------------------------------- /data/results/dataframes/BR-guarulhos/guarulhos_basic_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/BR-guarulhos/guarulhos_basic_stats.csv -------------------------------------------------------------------------------- /data/results/dataframes/BR-guarulhos/guarulhos_st_orientation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/BR-guarulhos/guarulhos_st_orientation.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-austin/austin_basic_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-austin/austin_basic_stats.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-austin/austin_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-austin/austin_locations.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-austin/austin_st_orientation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-austin/austin_st_orientation.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-austin/shapefiles/austin_basic_stats.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/results/dataframes/USA-austin/shapefiles/austin_basic_stats.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-austin/shapefiles/austin_basic_stats.dbf -------------------------------------------------------------------------------- /data/results/dataframes/USA-austin/shapefiles/austin_basic_stats.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-austin/shapefiles/austin_basic_stats.prj -------------------------------------------------------------------------------- /data/results/dataframes/USA-austin/shapefiles/austin_basic_stats.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-austin/shapefiles/austin_basic_stats.shp -------------------------------------------------------------------------------- /data/results/dataframes/USA-austin/shapefiles/austin_basic_stats.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-austin/shapefiles/austin_basic_stats.shx -------------------------------------------------------------------------------- /data/results/dataframes/USA-boston/boston_basic_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-boston/boston_basic_stats.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-boston/boston_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-boston/boston_locations.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-boston/boston_st_orientation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-boston/boston_st_orientation.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-chicago/chicago_basic_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-chicago/chicago_basic_stats.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-chicago/chicago_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-chicago/chicago_locations.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-chicago/chicago_st_orientation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-chicago/chicago_st_orientation.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-los_angeles_minors/los_angeles_joined_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-los_angeles_minors/los_angeles_joined_results.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-los_angeles_minors/los_angeles_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-los_angeles_minors/los_angeles_locations.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-los_angeles_minors/los_angeles_locations_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-los_angeles_minors/los_angeles_locations_example.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-los_angeles_minors/los_angeles_minors__basic_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-los_angeles_minors/los_angeles_minors__basic_stats.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-los_angeles_minors/los_angeles_routes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-los_angeles_minors/los_angeles_routes.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-los_angeles_minors/shapefiles/los_angeles_intersec_count.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/results/dataframes/USA-seattle/seattle_basic_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-seattle/seattle_basic_stats.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-seattle/seattle_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-seattle/seattle_locations.csv -------------------------------------------------------------------------------- /data/results/dataframes/USA-seattle/seattle_st_orientation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/dataframes/USA-seattle/seattle_st_orientation.csv -------------------------------------------------------------------------------- /data/results/graph_shapefile/BR-guarulhos_city/edges_guarulhos_city.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/results/graph_shapefile/BR-guarulhos_city/edges_guarulhos_city.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graph_shapefile/BR-guarulhos_city/edges_guarulhos_city.dbf -------------------------------------------------------------------------------- /data/results/graph_shapefile/BR-guarulhos_city/edges_guarulhos_city.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graph_shapefile/BR-guarulhos_city/edges_guarulhos_city.prj -------------------------------------------------------------------------------- /data/results/graph_shapefile/BR-guarulhos_city/edges_guarulhos_city.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graph_shapefile/BR-guarulhos_city/edges_guarulhos_city.shp -------------------------------------------------------------------------------- /data/results/graph_shapefile/BR-guarulhos_city/edges_guarulhos_city.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graph_shapefile/BR-guarulhos_city/edges_guarulhos_city.shx -------------------------------------------------------------------------------- /data/results/graph_shapefile/BR-guarulhos_city/nodes_guarulhos_city.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/results/graph_shapefile/BR-guarulhos_city/nodes_guarulhos_city.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graph_shapefile/BR-guarulhos_city/nodes_guarulhos_city.dbf -------------------------------------------------------------------------------- /data/results/graph_shapefile/BR-guarulhos_city/nodes_guarulhos_city.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graph_shapefile/BR-guarulhos_city/nodes_guarulhos_city.prj -------------------------------------------------------------------------------- /data/results/graph_shapefile/BR-guarulhos_city/nodes_guarulhos_city.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graph_shapefile/BR-guarulhos_city/nodes_guarulhos_city.shp -------------------------------------------------------------------------------- /data/results/graph_shapefile/BR-guarulhos_city/nodes_guarulhos_city.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graph_shapefile/BR-guarulhos_city/nodes_guarulhos_city.shx -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/grid_guarulhos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/grid_guarulhos.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Agua Azul.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Agua Azul.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Agua Chata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Agua Chata.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Aracilia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Aracilia.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Bananal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Bananal.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Bela Vista.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Bela Vista.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Bom Clima.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Bom Clima.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Bonsucesso.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Bonsucesso.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_CECAP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_CECAP.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Cabuco de Cima.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Cabuco de Cima.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Cabucu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Cabucu.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Capelinha.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Capelinha.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Centro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Centro.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Cocaia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Cocaia.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Cumbica.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Cumbica.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Fatima.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Fatima.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Fortaleza.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Fortaleza.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Gopouva.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Gopouva.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Invernada.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Invernada.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Itaim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Itaim.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Itapegica.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Itapegica.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Jardim Vila Galvao.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Jardim Vila Galvao.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Lavras.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Lavras.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Macedo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Macedo.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Maia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Maia.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Mato das Cobras.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Mato das Cobras.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Monte Carmelo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Monte Carmelo.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Morro Grande.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Morro Grande.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Morros.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Morros.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Paraventi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Paraventi.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Picanco.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Picanco.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Pimentas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Pimentas.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Ponte Grande.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Ponte Grande.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Porto da Igreja.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Porto da Igreja.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Sadokim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Sadokim.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Sao Joao.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Sao Joao.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Sao Roque.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Sao Roque.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Taboao.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Taboao.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Tanque Grande.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Tanque Grande.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Torres Tobagy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Torres Tobagy.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Tranquilidade.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Tranquilidade.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Varzea do Palacio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Varzea do Palacio.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Vila Augusta.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Vila Augusta.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Vila Barros.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Vila Barros.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Vila Galvao.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Vila Galvao.pdf -------------------------------------------------------------------------------- /data/results/graphs/BR-guarulhos/individual_plots/graph_Vila Rio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/BR-guarulhos/individual_plots/graph_Vila Rio.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_ALLANDALE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_ALLANDALE.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_BARTON HILLS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_BARTON HILLS.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_BOULDIN CREEK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_BOULDIN CREEK.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_BRENTWOOD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_BRENTWOOD.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_CENTRAL EAST AUSTIN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_CENTRAL EAST AUSTIN.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_CHESTNUT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_CHESTNUT.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_CORONADO HILLS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_CORONADO HILLS.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_CRESTVIEW.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_CRESTVIEW.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_DAWSON.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_DAWSON.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_DOWNTOWN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_DOWNTOWN.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_EAST CESAR CHAVEZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_EAST CESAR CHAVEZ.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_EAST CONGRESS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_EAST CONGRESS.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_EAST OAK HILL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_EAST OAK HILL.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_FRANKLIN PARK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_FRANKLIN PARK.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_GALINDO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_GALINDO.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_GARRISON PARK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_GARRISON PARK.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_GATEWAY.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_GATEWAY.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_GEORGIAN ACRES.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_GEORGIAN ACRES.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_GOVALLE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_GOVALLE.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_HANCOCK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_HANCOCK.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_HERITAGE HILLS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_HERITAGE HILLS.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_HIGHLAND.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_HIGHLAND.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_HOLLY.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_HOLLY.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_HYDE PARK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_HYDE PARK.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_JOHNSTON TERRACE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_JOHNSTON TERRACE.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_MCKINNEY.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_MCKINNEY.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_MLK-183.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_MLK-183.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_MLK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_MLK.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_MONTOPOLIS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_MONTOPOLIS.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_NORTH AUSTIN CIVIC ASSOCIATION.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_NORTH AUSTIN CIVIC ASSOCIATION.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_NORTH BURNET.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_NORTH BURNET.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_NORTH LAMAR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_NORTH LAMAR.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_NORTH LOOP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_NORTH LOOP.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_NORTH SHOAL CREEK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_NORTH SHOAL CREEK.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_NORTH UNIVERSITY.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_NORTH UNIVERSITY.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_OLD ENFIELD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_OLD ENFIELD.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_OLD WEST AUSTIN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_OLD WEST AUSTIN.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_PARKER LANE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_PARKER LANE.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_PECAN SPRINGS-SPRINGDALE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_PECAN SPRINGS-SPRINGDALE.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_PLEASANT VALLEY.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_PLEASANT VALLEY.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_RIVERSIDE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_RIVERSIDE.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_RMMA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_RMMA.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_ROSEDALE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_ROSEDALE.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_ROSEWOOD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_ROSEWOOD.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_SOUTH LAMAR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_SOUTH LAMAR.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_SOUTH MANCHACA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_SOUTH MANCHACA.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_SOUTH RIVER CITY.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_SOUTH RIVER CITY.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_SOUTHEAST.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_SOUTHEAST.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_ST. EDWARDS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_ST. EDWARDS.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_ST. JOHN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_ST. JOHN.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_SWEETBRIAR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_SWEETBRIAR.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_TRIANGLE STATE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_TRIANGLE STATE.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_UNIVERSITY HILLS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_UNIVERSITY HILLS.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_UPPER BOGGY CREEK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_UPPER BOGGY CREEK.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_UT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_UT.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_WEST AUSTIN NEIGHBORHOOD GROUP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_WEST AUSTIN NEIGHBORHOOD GROUP.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_WEST CONGRESS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_WEST CONGRESS.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_WEST OAK HILL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_WEST OAK HILL.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_WEST UNIVERSITY.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_WEST UNIVERSITY.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_WESTGATE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_WESTGATE.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_WINDSOR HILLS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_WINDSOR HILLS.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_WINDSOR PARK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_WINDSOR PARK.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_WINDSOR ROAD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_WINDSOR ROAD.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_WOOTEN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_WOOTEN.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-austin/graph_ZILKER.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-austin/graph_ZILKER.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Allston.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Allston.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Back Bay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Back Bay.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Bay Village.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Bay Village.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Beacon Hill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Beacon Hill.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Brighton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Brighton.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Charlestown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Charlestown.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Chinatown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Chinatown.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Dorchester.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Dorchester.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Downtown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Downtown.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_East Boston.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_East Boston.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Fenway.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Fenway.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Harbor Islands.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Harbor Islands.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Jamaica Plain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Jamaica Plain.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Leather District.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Leather District.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Longwood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Longwood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Mattapan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Mattapan.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Mission Hill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Mission Hill.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_North End.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_North End.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Roslindale.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Roslindale.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_Roxbury.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_Roxbury.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_South Boston Waterfront.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_South Boston Waterfront.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_South Boston.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_South Boston.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_South End.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_South End.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_West End.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_West End.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-boston/graph_West Roxbury.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-boston/graph_West Roxbury.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Albany Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Albany Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Andersonville.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Andersonville.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Archer Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Archer Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Armour Square.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Armour Square.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Ashburn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Ashburn.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Auburn Gresham.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Auburn Gresham.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Austin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Austin.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Avalon Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Avalon Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Avondale.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Avondale.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Belmont Cragin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Belmont Cragin.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Beverly.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Beverly.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Boystown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Boystown.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Bridgeport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Bridgeport.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Brighton Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Brighton Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Bucktown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Bucktown.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Burnside.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Burnside.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Calumet Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Calumet Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Chatham.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Chatham.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Chicago Lawn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Chicago Lawn.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Chinatown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Chinatown.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Clearing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Clearing.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Douglas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Douglas.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Dunning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Dunning.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_East Side.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_East Side.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_East Village.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_East Village.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Edgewater.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Edgewater.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Edison Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Edison Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Englewood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Englewood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Fuller Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Fuller Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Gage Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Gage Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Galewood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Galewood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Garfield Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Garfield Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Garfield Ridge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Garfield Ridge.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Gold Coast.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Gold Coast.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Grand Boulevard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Grand Boulevard.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Grand Crossing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Grand Crossing.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Grant Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Grant Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Greektown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Greektown.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Hegewisch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Hegewisch.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Hermosa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Hermosa.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Humboldt Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Humboldt Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Hyde Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Hyde Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Irving Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Irving Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Jackson Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Jackson Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Jefferson Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Jefferson Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Kenwood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Kenwood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Lake View.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Lake View.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Lincoln Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Lincoln Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Lincoln Square.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Lincoln Square.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Little Italy, UIC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Little Italy, UIC.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Little Village.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Little Village.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Logan Square.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Logan Square.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Loop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Loop.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Lower West Side.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Lower West Side.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Magnificent Mile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Magnificent Mile.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Mckinley Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Mckinley Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Millenium Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Millenium Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Montclare.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Montclare.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Morgan Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Morgan Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Mount Greenwood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Mount Greenwood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Museum Campus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Museum Campus.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Near South Side.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Near South Side.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_New City.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_New City.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_North Center.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_North Center.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_North Lawndale.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_North Lawndale.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_North Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_North Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Norwood Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Norwood Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_O'Hare.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_O'Hare.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Oakland.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Oakland.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Old Town.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Old Town.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Portage Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Portage Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Printers Row.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Printers Row.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Pullman.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Pullman.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_River North.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_River North.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Riverdale.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Riverdale.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Rogers Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Rogers Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Roseland.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Roseland.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Rush & Division.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Rush & Division.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Sauganash,Forest Glen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Sauganash,Forest Glen.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Sheffield & DePaul.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Sheffield & DePaul.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_South Chicago.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_South Chicago.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_South Deering.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_South Deering.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_South Shore.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_South Shore.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Streeterville.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Streeterville.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Ukrainian Village.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Ukrainian Village.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_United Center.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_United Center.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Uptown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Uptown.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Washington Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Washington Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Washington Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Washington Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_West Elsdon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_West Elsdon.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_West Lawn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_West Lawn.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_West Loop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_West Loop.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_West Pullman.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_West Pullman.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_West Ridge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_West Ridge.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_West Town.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_West Town.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Wicker Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Wicker Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Woodlawn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Woodlawn.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-chicago/graph_Wrigleyville.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-chicago/graph_Wrigleyville.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Adams-Normandie.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Adams-Normandie.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Alondra Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Alondra Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Arleta.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Arleta.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Arlington Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Arlington Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Artesia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Artesia.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Bel-Air.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Bel-Air.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Bell Gardens.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Bell Gardens.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Bell.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Bell.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Bellflower.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Bellflower.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Beverly Crest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Beverly Crest.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Beverly Grove.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Beverly Grove.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Beverly Hills.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Beverly Hills.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Beverlywood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Beverlywood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Boyle Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Boyle Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Brentwood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Brentwood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Broadway-Manchester.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Broadway-Manchester.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Burbank.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Burbank.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Calabasas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Calabasas.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Canoga Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Canoga Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Carson.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Carson.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Carthay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Carthay.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Central-Alameda.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Central-Alameda.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Century City.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Century City.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Cerritos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Cerritos.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Charter Oak.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Charter Oak.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Cheviot Hills.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Cheviot Hills.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Chinatown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Chinatown.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Citrus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Citrus.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Claremont.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Claremont.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Commerce.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Commerce.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Compton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Compton.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Covina.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Covina.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Cudahy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Cudahy.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Culver City.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Culver City.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Del Aire.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Del Aire.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Del Rey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Del Rey.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Diamond Bar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Diamond Bar.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Downey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Downey.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Downtown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Downtown.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_East Compton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_East Compton.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_East Hollywood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_East Hollywood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_East La Mirada.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_East La Mirada.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_East Los Angeles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_East Los Angeles.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Echo Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Echo Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_El Segundo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_El Segundo.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_El Sereno.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_El Sereno.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Elysian Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Elysian Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Encino.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Encino.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Exposition Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Exposition Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Fairfax.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Fairfax.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Florence-Firestone.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Florence-Firestone.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Florence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Florence.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Gardena.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Gardena.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Glendora.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Glendora.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Gramercy Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Gramercy Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Granada Hills.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Granada Hills.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Green Meadows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Green Meadows.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Griffith Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Griffith Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Hacienda Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Hacienda Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Hancock Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Hancock Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Harbor City.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Harbor City.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Harbor Gateway.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Harbor Gateway.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Harvard Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Harvard Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Hawaiian Gardens.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Hawaiian Gardens.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Hawthorne.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Hawthorne.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Hermosa Beach.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Hermosa Beach.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Hidden Hills.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Hidden Hills.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Historic South-Central.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Historic South-Central.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Hollywood Hills West.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Hollywood Hills West.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Hollywood Hills.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Hollywood Hills.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Hollywood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Hollywood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Huntington Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Huntington Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Hyde Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Hyde Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Industry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Industry.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Inglewood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Inglewood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Jefferson Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Jefferson Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Koreatown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Koreatown.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_La Habra Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_La Habra Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_La Mirada.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_La Mirada.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_La Verne.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_La Verne.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Ladera Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Ladera Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Lake Balboa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Lake Balboa.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Lake View Terrace.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Lake View Terrace.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Lakewood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Lakewood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Larchmont.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Larchmont.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Lawndale.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Lawndale.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Leimert Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Leimert Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Lincoln Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Lincoln Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Lomita.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Lomita.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Los Feliz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Los Feliz.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Lynwood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Lynwood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Manchester Square.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Manchester Square.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Manhattan Beach.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Manhattan Beach.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Mar Vista.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Mar Vista.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Marina del Rey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Marina del Rey.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Maywood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Maywood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Mid-City.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Mid-City.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Mid-Wilshire.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Mid-Wilshire.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Mission Hills.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Mission Hills.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Montebello.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Montebello.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_North Hills.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_North Hills.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_North Hollywood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_North Hollywood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Northridge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Northridge.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Norwalk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Norwalk.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Pacific Palisades.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Pacific Palisades.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Pacoima.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Pacoima.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Palms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Palms.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Palos Verdes Estates.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Palos Verdes Estates.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Panorama City.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Panorama City.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Paramount.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Paramount.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Pico-Robertson.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Pico-Robertson.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Pico-Union.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Pico-Union.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Playa Vista.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Playa Vista.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Playa del Rey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Playa del Rey.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Pomona.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Pomona.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Porter Ranch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Porter Ranch.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Rancho Dominguez.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Rancho Dominguez.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Rancho Palos Verdes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Rancho Palos Verdes.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Rancho Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Rancho Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Redondo Beach.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Redondo Beach.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Reseda.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Reseda.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Rolling Hills Estates.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Rolling Hills Estates.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Rolling Hills.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Rolling Hills.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Rowland Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Rowland Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_San Dimas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_San Dimas.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_San Fernando.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_San Fernando.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_San Pedro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_San Pedro.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Santa Fe Springs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Santa Fe Springs.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Santa Monica.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Santa Monica.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Sawtelle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Sawtelle.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Sepulveda Basin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Sepulveda Basin.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Sherman Oaks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Sherman Oaks.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Signal Hill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Signal Hill.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Silver Lake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Silver Lake.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_South Gate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_South Gate.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_South Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_South Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_South Whittier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_South Whittier.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Studio City.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Studio City.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Sun Valley.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Sun Valley.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Sylmar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Sylmar.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Tarzana.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Tarzana.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Toluca Lake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Toluca Lake.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Topanga.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Topanga.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Torrance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Torrance.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_University Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_University Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Valley Glen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Valley Glen.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Valley Village.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Valley Village.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Van Nuys.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Van Nuys.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Venice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Venice.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Vermont Knolls.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Vermont Knolls.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Vermont Square.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Vermont Square.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Vermont Vista.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Vermont Vista.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Vermont-Slauson.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Vermont-Slauson.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Vernon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Vernon.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Veterans Administration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Veterans Administration.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_View Park-Windsor Hills.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_View Park-Windsor Hills.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Walnut Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Walnut Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Walnut.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Walnut.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Watts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Watts.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_West Adams.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_West Adams.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_West Carson.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_West Carson.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_West Covina.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_West Covina.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_West Hills.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_West Hills.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_West Hollywood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_West Hollywood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_West Los Angeles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_West Los Angeles.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Westchester.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Westchester.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Westlake Village.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Westlake Village.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Westlake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Westlake.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Westmont.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Westmont.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Westwood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Westwood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Whittier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Whittier.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Willowbrook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Willowbrook.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Wilmington.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Wilmington.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Windsor Square.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Windsor Square.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Winnetka.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Winnetka.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-los_angeles_minors/graph_Woodland Hills.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-los_angeles_minors/graph_Woodland Hills.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Adams.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Adams.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Alki.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Alki.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Arbor Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Arbor Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Atlantic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Atlantic.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Belltown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Belltown.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Bitter Lake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Bitter Lake.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Briarcliff.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Briarcliff.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Brighton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Brighton.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Broadview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Broadview.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Broadway.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Broadway.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Bryant.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Bryant.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Cedar Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Cedar Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Central Business District.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Central Business District.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Columbia City.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Columbia City.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Crown Hill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Crown Hill.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Dunlap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Dunlap.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_East Queen Anne.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_East Queen Anne.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Eastlake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Eastlake.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Fairmount Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Fairmount Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Fauntleroy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Fauntleroy.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_First Hill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_First Hill.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Fremont.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Fremont.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Gatewood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Gatewood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Genesee.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Genesee.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Georgetown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Georgetown.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Green Lake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Green Lake.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Greenwood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Greenwood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Haller Lake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Haller Lake.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Harbor Island.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Harbor Island.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_High Point.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_High Point.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Highland Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Highland Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Holly Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Holly Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Industrial District.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Industrial District.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Interbay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Interbay.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_International District.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_International District.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Laurelhurst.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Laurelhurst.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Lawton Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Lawton Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Leschi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Leschi.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Lower Queen Anne.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Lower Queen Anne.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Loyal Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Loyal Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Madison Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Madison Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Madrona.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Madrona.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Mann.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Mann.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Maple Leaf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Maple Leaf.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Matthews Beach.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Matthews Beach.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Meadowbrook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Meadowbrook.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Mid-Beacon Hill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Mid-Beacon Hill.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Minor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Minor.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Montlake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Montlake.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Mount Baker.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Mount Baker.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_North Admiral.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_North Admiral.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_North Beacon Hill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_North Beacon Hill.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_North College Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_North College Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_North Delridge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_North Delridge.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_North Queen Anne.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_North Queen Anne.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Olympic Hills.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Olympic Hills.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Phinney Ridge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Phinney Ridge.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Pike-Market.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Pike-Market.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Pinehurst.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Pinehurst.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Pioneer Square.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Pioneer Square.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Portage Bay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Portage Bay.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Rainier Beach.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Rainier Beach.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Rainier View.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Rainier View.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Ravenna.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Ravenna.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Riverview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Riverview.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Roosevelt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Roosevelt.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Roxhill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Roxhill.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Sand Point.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Sand Point.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Seaview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Seaview.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Seward Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Seward Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_South Beacon Hill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_South Beacon Hill.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_South Delridge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_South Delridge.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_South Lake Union.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_South Lake Union.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_South Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_South Park.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Southeast Magnolia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Southeast Magnolia.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Stevens.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Stevens.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Sunset Hill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Sunset Hill.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_University District.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_University District.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Victory Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Victory Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_View Ridge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_View Ridge.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Wallingford.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Wallingford.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Wedgwood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Wedgwood.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_West Queen Anne.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_West Queen Anne.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_West Woodland.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_West Woodland.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Westlake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Westlake.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Whittier Heights.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Whittier Heights.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Windermere.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Windermere.pdf -------------------------------------------------------------------------------- /data/results/graphs/USA-seattle/graph_Yesler Terrace.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/graphs/USA-seattle/graph_Yesler Terrace.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/BR-guarulhos/1 - polar_hist_street_orientation_Cabuçu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/BR-guarulhos/1 - polar_hist_street_orientation_Cabuçu.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/BR-guarulhos/2 - polar_hist_street_orientation_Taboão.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/BR-guarulhos/2 - polar_hist_street_orientation_Taboão.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/BR-guarulhos/25 - polar_hist_street_orientation_Itaim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/BR-guarulhos/25 - polar_hist_street_orientation_Itaim.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/BR-guarulhos/40 - polar_hist_street_orientation_Maia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/BR-guarulhos/40 - polar_hist_street_orientation_Maia.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/BR-guarulhos/47 - polar_hist_street_orientation_CECAP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/BR-guarulhos/47 - polar_hist_street_orientation_CECAP.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/BR-guarulhos/9 - polar_hist_street_orientation_Morros.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/BR-guarulhos/9 - polar_hist_street_orientation_Morros.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-austin/22 - polar_hist_street_orientation_WOOTEN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-austin/22 - polar_hist_street_orientation_WOOTEN.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-austin/32 - polar_hist_street_orientation_UT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-austin/32 - polar_hist_street_orientation_UT.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-austin/42 - polar_hist_street_orientation_ZILKER.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-austin/42 - polar_hist_street_orientation_ZILKER.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-austin/48 - polar_hist_street_orientation_GOVALLE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-austin/48 - polar_hist_street_orientation_GOVALLE.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-austin/5 - polar_hist_street_orientation_GATEWAY.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-austin/5 - polar_hist_street_orientation_GATEWAY.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-austin/50 - polar_hist_street_orientation_DAWSON.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-austin/50 - polar_hist_street_orientation_DAWSON.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-austin/51 - polar_hist_street_orientation_GALINDO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-austin/51 - polar_hist_street_orientation_GALINDO.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-austin/55 - polar_hist_street_orientation_RMMA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-austin/55 - polar_hist_street_orientation_RMMA.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-austin/6 - polar_hist_street_orientation_MLK-183.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-austin/6 - polar_hist_street_orientation_MLK-183.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-austin/60 - polar_hist_street_orientation_HANCOCK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-austin/60 - polar_hist_street_orientation_HANCOCK.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-austin/63 - polar_hist_street_orientation_HOLLY.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-austin/63 - polar_hist_street_orientation_HOLLY.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-austin/7 - polar_hist_street_orientation_WESTGATE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-austin/7 - polar_hist_street_orientation_WESTGATE.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-austin/9 - polar_hist_street_orientation_MLK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-austin/9 - polar_hist_street_orientation_MLK.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-boston/1 - polar_hist_street_orientation_Downtown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-boston/1 - polar_hist_street_orientation_Downtown.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-boston/3 - polar_hist_street_orientation_Allston.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-boston/3 - polar_hist_street_orientation_Allston.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-boston/4 - polar_hist_street_orientation_West End.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-boston/4 - polar_hist_street_orientation_West End.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-boston/6 - polar_hist_street_orientation_Roxbury.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-boston/6 - polar_hist_street_orientation_Roxbury.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-boston/8 - polar_hist_street_orientation_Fenway.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-boston/8 - polar_hist_street_orientation_Fenway.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-boston/9 - polar_hist_street_orientation_Brighton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-boston/9 - polar_hist_street_orientation_Brighton.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-chicago/1 - polar_hist_street_orientation_O'Hare.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-chicago/1 - polar_hist_street_orientation_O'Hare.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-chicago/19 - polar_hist_street_orientation_Loop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-chicago/19 - polar_hist_street_orientation_Loop.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-chicago/21 - polar_hist_street_orientation_Uptown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-chicago/21 - polar_hist_street_orientation_Uptown.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-chicago/77 - polar_hist_street_orientation_Austin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-chicago/77 - polar_hist_street_orientation_Austin.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-chicago/8 - polar_hist_street_orientation_Oakland.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-chicago/8 - polar_hist_street_orientation_Oakland.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-seattle/22 - polar_hist_street_orientation_Alki.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-seattle/22 - polar_hist_street_orientation_Alki.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-seattle/28 - polar_hist_street_orientation_Dunlap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-seattle/28 - polar_hist_street_orientation_Dunlap.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-seattle/41 - polar_hist_street_orientation_Leschi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-seattle/41 - polar_hist_street_orientation_Leschi.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-seattle/51 - polar_hist_street_orientation_Mann.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-seattle/51 - polar_hist_street_orientation_Mann.pdf -------------------------------------------------------------------------------- /data/results/polar_plots/USA-seattle/53 - polar_hist_street_orientation_Bryant.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/results/polar_plots/USA-seattle/53 - polar_hist_street_orientation_Bryant.pdf -------------------------------------------------------------------------------- /data/shapefiles/austin/austin.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/austin/austin.dbf -------------------------------------------------------------------------------- /data/shapefiles/austin/austin.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/austin/austin.prj -------------------------------------------------------------------------------- /data/shapefiles/austin/austin.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/austin/austin.shp -------------------------------------------------------------------------------- /data/shapefiles/austin/austin.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/austin/austin.shx -------------------------------------------------------------------------------- /data/shapefiles/boston/boston.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/shapefiles/boston/boston.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/boston/boston.dbf -------------------------------------------------------------------------------- /data/shapefiles/boston/boston.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/boston/boston.prj -------------------------------------------------------------------------------- /data/shapefiles/boston/boston.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/boston/boston.shp -------------------------------------------------------------------------------- /data/shapefiles/boston/boston.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/boston/boston.shx -------------------------------------------------------------------------------- /data/shapefiles/chicago/chicago.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/chicago/chicago.dbf -------------------------------------------------------------------------------- /data/shapefiles/chicago/chicago.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/chicago/chicago.prj -------------------------------------------------------------------------------- /data/shapefiles/chicago/chicago.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/chicago/chicago.shp -------------------------------------------------------------------------------- /data/shapefiles/chicago/chicago.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/chicago/chicago.shx -------------------------------------------------------------------------------- /data/shapefiles/guarulhos_osm/guarulhos_osm.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/shapefiles/guarulhos_osm/guarulhos_osm.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/guarulhos_osm/guarulhos_osm.dbf -------------------------------------------------------------------------------- /data/shapefiles/guarulhos_osm/guarulhos_osm.gal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/guarulhos_osm/guarulhos_osm.gal -------------------------------------------------------------------------------- /data/shapefiles/guarulhos_osm/guarulhos_osm.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/guarulhos_osm/guarulhos_osm.prj -------------------------------------------------------------------------------- /data/shapefiles/guarulhos_osm/guarulhos_osm.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/guarulhos_osm/guarulhos_osm.shp -------------------------------------------------------------------------------- /data/shapefiles/guarulhos_osm/guarulhos_osm.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/guarulhos_osm/guarulhos_osm.shx -------------------------------------------------------------------------------- /data/shapefiles/los_angeles_majors/los_angeles_majors.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/shapefiles/los_angeles_majors/los_angeles_majors.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/los_angeles_majors/los_angeles_majors.dbf -------------------------------------------------------------------------------- /data/shapefiles/los_angeles_majors/los_angeles_majors.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/los_angeles_majors/los_angeles_majors.prj -------------------------------------------------------------------------------- /data/shapefiles/los_angeles_majors/los_angeles_majors.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/los_angeles_majors/los_angeles_majors.shp -------------------------------------------------------------------------------- /data/shapefiles/los_angeles_majors/los_angeles_majors.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/los_angeles_majors/los_angeles_majors.shx -------------------------------------------------------------------------------- /data/shapefiles/los_angeles_minors/los_angeles_minors.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/shapefiles/los_angeles_minors/los_angeles_minors.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/los_angeles_minors/los_angeles_minors.dbf -------------------------------------------------------------------------------- /data/shapefiles/los_angeles_minors/los_angeles_minors.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/los_angeles_minors/los_angeles_minors.prj -------------------------------------------------------------------------------- /data/shapefiles/los_angeles_minors/los_angeles_minors.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/los_angeles_minors/los_angeles_minors.shp -------------------------------------------------------------------------------- /data/shapefiles/los_angeles_minors/los_angeles_minors.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/los_angeles_minors/los_angeles_minors.shx -------------------------------------------------------------------------------- /data/shapefiles/seattle/seattle.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/shapefiles/seattle/seattle.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/seattle/seattle.dbf -------------------------------------------------------------------------------- /data/shapefiles/seattle/seattle.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/seattle/seattle.prj -------------------------------------------------------------------------------- /data/shapefiles/seattle/seattle.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/seattle/seattle.shp -------------------------------------------------------------------------------- /data/shapefiles/seattle/seattle.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/seattle/seattle.shx -------------------------------------------------------------------------------- /data/shapefiles/urban_regions_SP/urban_regions_SP.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/shapefiles/urban_regions_SP/urban_regions_SP.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/urban_regions_SP/urban_regions_SP.dbf -------------------------------------------------------------------------------- /data/shapefiles/urban_regions_SP/urban_regions_SP.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/urban_regions_SP/urban_regions_SP.prj -------------------------------------------------------------------------------- /data/shapefiles/urban_regions_SP/urban_regions_SP.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/urban_regions_SP/urban_regions_SP.shp -------------------------------------------------------------------------------- /data/shapefiles/urban_regions_SP/urban_regions_SP.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/data/shapefiles/urban_regions_SP/urban_regions_SP.shx -------------------------------------------------------------------------------- /docs/misc/fetch_osm_dd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/misc/fetch_osm_dd.py -------------------------------------------------------------------------------- /docs/misc/geopandas_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/misc/geopandas_example.ipynb -------------------------------------------------------------------------------- /docs/notebooks/gmaps/destinations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/gmaps/destinations.csv -------------------------------------------------------------------------------- /docs/notebooks/gmaps/distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/gmaps/distances.py -------------------------------------------------------------------------------- /docs/notebooks/gmaps/gmaps_api_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/gmaps/gmaps_api_example.ipynb -------------------------------------------------------------------------------- /docs/notebooks/gmaps/origins.csv: -------------------------------------------------------------------------------- 1 | Origin;Lat0;Lon0 2 | 91610459;-23,39599173;-46,31012261 3 | -------------------------------------------------------------------------------- /docs/notebooks/lmr_analyzer/distance_matrix_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/lmr_analyzer/distance_matrix_example.ipynb -------------------------------------------------------------------------------- /docs/notebooks/lmr_analyzer/geometry_class_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/lmr_analyzer/geometry_class_example.ipynb -------------------------------------------------------------------------------- /docs/notebooks/lmr_analyzer/lmr_analyzer_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/lmr_analyzer/lmr_analyzer_example.ipynb -------------------------------------------------------------------------------- /docs/notebooks/osmnx/consolidation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/consolidation.ipynb -------------------------------------------------------------------------------- /docs/notebooks/osmnx/docs/notebooks/osmnx/graphs/RouteID_1cfa272e-cb3d-4ea4-9cac-dc6dc356d7f0.shp/edges.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /docs/notebooks/osmnx/docs/notebooks/osmnx/graphs/RouteID_1cfa272e-cb3d-4ea4-9cac-dc6dc356d7f0.shp/nodes.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/ntbk-0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/ntbk-0.py -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/route_id.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/route_id.csv -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/route_id_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/route_id_0.csv -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/route_id_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/route_id_4.csv -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dict0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dict0.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dict4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dict4.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_1_0.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_1_1.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_1_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_1_2.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_1_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_1_3.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_1_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_1_4.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_2_0.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_2_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_2_1.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_2_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_2_2.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_2_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_2_3.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_2_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_2_4.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_3_0.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_3_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_3_1.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_3_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_3_2.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_3_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_3_3.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/done/stats_entropy_dictroute_id_3_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/done/stats_entropy_dictroute_id_3_4.json -------------------------------------------------------------------------------- /docs/notebooks/osmnx/graphs_from_bbox2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/graphs_from_bbox2.ipynb -------------------------------------------------------------------------------- /docs/notebooks/osmnx/multiple_neigh_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/multiple_neigh_example.ipynb -------------------------------------------------------------------------------- /docs/notebooks/osmnx/single_neigh_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/notebooks/osmnx/single_neigh_example.ipynb -------------------------------------------------------------------------------- /docs/static/logo_lmr_corrigido.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/static/logo_lmr_corrigido.png -------------------------------------------------------------------------------- /docs/static/uml/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/static/uml/classes.html -------------------------------------------------------------------------------- /docs/static/uml/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/docs/static/uml/packages.html -------------------------------------------------------------------------------- /lmr_analyzer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/__init__.py -------------------------------------------------------------------------------- /lmr_analyzer/amz_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/amz_serializer.py -------------------------------------------------------------------------------- /lmr_analyzer/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/analysis.py -------------------------------------------------------------------------------- /lmr_analyzer/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/bbox.py -------------------------------------------------------------------------------- /lmr_analyzer/distance_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/distance_matrix.py -------------------------------------------------------------------------------- /lmr_analyzer/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/enums.py -------------------------------------------------------------------------------- /lmr_analyzer/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/geometry.py -------------------------------------------------------------------------------- /lmr_analyzer/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/package.py -------------------------------------------------------------------------------- /lmr_analyzer/plots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/plots/__init__.py -------------------------------------------------------------------------------- /lmr_analyzer/plots/plots_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/plots/plots_geometry.py -------------------------------------------------------------------------------- /lmr_analyzer/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/route.py -------------------------------------------------------------------------------- /lmr_analyzer/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/stop.py -------------------------------------------------------------------------------- /lmr_analyzer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/utils.py -------------------------------------------------------------------------------- /lmr_analyzer/vehicle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/lmr_analyzer/vehicle.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/tests/test_bbox.py -------------------------------------------------------------------------------- /tests/test_distance_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/tests/test_distance_matrix.py -------------------------------------------------------------------------------- /tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/tests/test_package.py -------------------------------------------------------------------------------- /tests/test_stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/tests/test_stop.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_vehicle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui-FernandesBR/Last-Mile-Routing-Analyzer/HEAD/tests/test_vehicle.py --------------------------------------------------------------------------------