diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..132bdbb3a1a9541b18447ebce6fea1892d5392c6 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text +database/flights/clean_Flights_2022.csv filter=lfs diff=lfs merge=lfs -text diff --git a/__pycache__/content.cpython-39.pyc b/__pycache__/content.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2fbdba079abb527d990f36a950348e2d37b765ea Binary files /dev/null and b/__pycache__/content.cpython-39.pyc differ diff --git a/annotation/.DS_Store b/annotation/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..573f4114c1436d17bb7684bbd2cf00bf56da0776 Binary files /dev/null and b/annotation/.DS_Store differ diff --git a/annotation/src/__pycache__/utils.cpython-39.pyc b/annotation/src/__pycache__/utils.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb636c7ce13e0a8cb4b05bee4e506d9c9ee9c4cf Binary files /dev/null and b/annotation/src/__pycache__/utils.cpython-39.pyc differ diff --git a/annotation/src/utils.py b/annotation/src/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..2bc8e19ace8066df058de618ab8682446a9439ef --- /dev/null +++ b/annotation/src/utils.py @@ -0,0 +1,186 @@ +import json +import re +import os +import gradio as gr + +def load_line_json_data(filename): + data = [] + with open(filename, 'r', encoding='utf-8') as f: + for line in f.read().strip().split('\n'): + unit = json.loads(line) + data.append(unit) + return data + +def extract_query_number(query_string): + """ + Extract the number from a query string formatted as "Query X" or "Query X --- Done". + + Args: + - query_string (str): The input string. + + Returns: + - int: The extracted number if found, else None. + """ + pattern = r"Query (\d+)" + match = re.search(pattern, query_string) + return int(match.group(1)) if match else None + +def create_data_display(css_content,data,annotation_idx): + return f""" + +
+ Query {annotation_idx}: {data[annotation_idx-1]['query']}
+ Day: {data[annotation_idx-1]['days']} + Visiting City Number: {data[annotation_idx-1]['visiting_city_number']} + Date: {data[annotation_idx-1]['date']} + Departure: {data[annotation_idx-1]['org']} + Destination: {data[annotation_idx-1]['dest']}
+ People Number: {data[annotation_idx-1]['people_number']} + Budget: {data[annotation_idx-1]['budget']} + Hotel Rule: {data[annotation_idx-1]['local_constraint']['house rule']} + Cuisine: {data[annotation_idx-1]['local_constraint']['cuisine']} + Room Type: {data[annotation_idx-1]['local_constraint']['room type']} + Transportation: {data[annotation_idx-1]['local_constraint']['transportation']}
+
+ """ + +def judge_valid_info(info): + if info == "" or not info or info == "You don't need to fill in the information for this or later days." : + return False + return True + +def judge_submit_info(info, current_day, label, annotation_data, *tested_data): + if info == "" or not info: + raise gr.Error("Day {} {} is empty!".format(current_day, label)) + if info != "-": + if label == "transportation": + if not judge_valid_transportation(info, annotation_data): + raise gr.Error("Day {} {} is invalid! Please note the transportation.".format(current_day, label)) + elif label == "accommodation": + if not judge_valid_room_type(info, annotation_data, tested_data[0]): + raise gr.Error("Day {} {} is invalid! Please note the room type.".format(current_day, label)) + + if not judge_valid_room_rule(info, annotation_data, tested_data[0]): + raise gr.Error("Day {} {} is invalid! Please note the house rules.".format(current_day, label)) + + return True + + +def judge_valid_transportation(info, annotation_data): + if annotation_data['local_constraint']['transportation'] == 'no flight' and 'Flight' in info: + return False + elif annotation_data['local_constraint']['transportation'] == 'no self-driving' and 'Self-driving' in info: + return False + return True + +def judge_valid_room_type(info, annotation_data, accommodation_data_all): + accommodation_data_filtered = get_filtered_data(info, accommodation_data_all) + if annotation_data['local_constraint']['room type'] == 'not shared room' and accommodation_data_filtered['room type'].values[0] == 'Shared room': + return False + # "shared room", "not shared room", "private room", "entire room" + elif annotation_data['local_constraint']['room type'] == 'shared room' and accommodation_data_filtered['room type'].values[0] != 'Shared room': + return False + + elif annotation_data['local_constraint']['room type'] == 'private room' and accommodation_data_filtered['room type'].values[0] != 'Private room': + return False + + elif annotation_data['local_constraint']['room type'] == 'entire room' and accommodation_data_filtered['room type'].values[0] != 'Entire home/apt': + return False + + return True + +def judge_valid_room_rule(info, annotation_data, accommodation_data_all): + accommodation_data_filtered = get_filtered_data(info, accommodation_data_all) + if annotation_data['local_constraint']['house rule'] == 'smoking' and 'No smoking' in str(accommodation_data_filtered['house_rules'].values[0]): + return False + if annotation_data['local_constraint']['house rule'] == 'parities' and 'No parties' in str(accommodation_data_filtered['house_rules'].values[0]): + return False + if annotation_data['local_constraint']['house rule'] == 'children under 10' and 'No children under 10' in str(accommodation_data_filtered['house_rules'].values[0]): + return False + if annotation_data['local_constraint']['house rule'] == 'visitors' and 'No visitors' in str(accommodation_data_filtered['house_rules'].values[0]): + return False + if annotation_data['local_constraint']['house rule'] == 'pets' and 'No pets' in str(accommodation_data_filtered['house_rules'].values[0]): + return False + + return True + +def judge_valid_cuisine(info, annotation_data, restaurant_data_all, cuisine_set: set): + if info != "-" and annotation_data['local_constraint']['cuisine'] is not None and annotation_data['org'] not in info: + restaurant_data_filtered = get_filtered_data(info, restaurant_data_all,('Name','City')) + for cuisine in annotation_data['local_constraint']['cuisine']: + if cuisine in restaurant_data_filtered.iloc[0]['Cuisines']: + cuisine_set.add(cuisine) + return cuisine_set + + + + +def get_valid_name_city(info): + # Modified the pattern to preserve spaces at the end of the name + pattern = r'(.*?),\s*([^,]+)(\(\w[\w\s]*\))?$' + match = re.search(pattern, info) + if match: + return match.group(1).strip(), extract_before_parenthesis(match.group(2).strip()).strip() + else: + print(f"{info} can not be parsed, '-' will be used instead.") + return "-","-" + + +def extract_numbers_from_filenames(directory): + # Define the pattern to match files + pattern = r'annotation_(\d+).json' + + # List all files in the directory + files = os.listdir(directory) + + # Extract numbers from filenames that match the pattern + numbers = [int(re.search(pattern, file).group(1)) for file in files if re.match(pattern, file)] + + return numbers + +def get_city_list(days, deparure_city, destination): + city_list = [] + city_list.append(deparure_city) + if days == 3: + city_list.append(destination) + else: + city_set = open('../database/background/citySet_with_states.txt').read().split('\n') + state_city_map = {} + for unit in city_set: + city, state = unit.split('\t') + if state not in state_city_map: + state_city_map[state] = [] + state_city_map[state].append(city) + for city in state_city_map[destination]: + if city != deparure_city: + city_list.append(city + f"({destination})") + return city_list + +def get_filtered_data(component,data, column_name=('NAME','city')): + name, city = get_valid_name_city(component) + return data[(data[column_name[0]] == name) & (data[column_name[1]] == city)] + +def extract_before_parenthesis(s): + match = re.search(r'^(.*?)\([^)]*\)', s) + return match.group(1) if match else s + +def count_consecutive_values(lst): + if not lst: + return [] + + result = [] + current_string = lst[0] + count = 1 + + for i in range(1, len(lst)): + if lst[i] == current_string: + count += 1 + else: + result.append((current_string, count)) + current_string = lst[i] + count = 1 + + result.append((current_string, count)) # Add the last group of values + return result \ No newline at end of file diff --git a/app.py b/app.py new file mode 100644 index 0000000000000000000000000000000000000000..7e2e8f79e51bc6d5cd8800ace91de257592775bd --- /dev/null +++ b/app.py @@ -0,0 +1,197 @@ +import os +import sys +sys.path.append(os.path.abspath(os.path.join(os.getcwd(), "./leaderboard/evaluation"))) +sys.path.append(os.path.abspath(os.path.join(os.getcwd(), "./leaderboard"))) +os.chdir(os.path.dirname(os.path.abspath(__file__))) +import json +import datetime +from email.utils import parseaddr + +import gradio as gr +import pandas as pd +import numpy as np + +from datasets import load_dataset +from apscheduler.schedulers.background import BackgroundScheduler +from huggingface_hub import HfApi + +# InfoStrings +# from scorer import question_scorer +from content import format_error, format_warning, format_log, TITLE, INTRODUCTION_TEXT, CITATION_BUTTON_LABEL, CITATION_BUTTON_TEXT, model_hyperlink +from evaluation.eval import eval_score + +TOKEN = os.environ.get("TOKEN", None) + +OWNER="osunlp" +DATA_DATASET = f"{OWNER}/TravelBench" +EVAL_DATASET = f"{OWNER}/TravelBenchEval" + +api = HfApi() + +YEAR_VERSION = "2024" + +os.makedirs("scored", exist_ok=True) + +# # Display the results +eval_results = load_dataset(EVAL_DATASET, 'scores', token=TOKEN, download_mode="force_redownload", ignore_verifications=True) +def get_dataframe_from_results(eval_results, split): + local_df = eval_results[split] + local_df = local_df.remove_columns(["Mail"]) + df = pd.DataFrame(local_df) + df = df.sort_values(by=["Final Pass Rate"], ascending=False) + numeric_cols = [c for c in local_df.column_names if "Rate" in c] + df[numeric_cols] = df[numeric_cols].multiply(100).round(decimals=2) + return df + + +eval_dataframe_val = get_dataframe_from_results(eval_results=eval_results, split="validation") +eval_dataframe_test = get_dataframe_from_results(eval_results=eval_results, split="test") + + + +# def restart_space(): +# api.restart_space(repo_id=LEADERBOARD_PATH, token=TOKEN) + + +def load_line_json_data(filename): + data = [] + with open(filename, 'r', encoding='utf-8') as f: + for line in f.read().strip().split('\n'): + unit = json.loads(line) + data.append(unit) + return data + + +def add_new_eval( + val_or_test: str, + eval_mode: str, + model: str, + planning_strategy: str, + organization: str, + mail: str, + path_to_file: str, +): + # Very basic email parsing + _, parsed_mail = parseaddr(mail) + if not "@" in parsed_mail: + return format_warning("Please provide a valid email adress.") + + print("Adding new eval") + + if path_to_file is None: + return format_warning("Please attach a file.") + + # Save submitted file + api.upload_file( + repo_id=EVAL_DATASET, + path_or_fileobj=path_to_file.name, + path_in_repo=f"{organization}/{val_or_test}_{eval_mode}_{planning_strategy}_raw_{datetime.datetime.today()}.jsonl", + repo_type="dataset", + token=TOKEN + ) + + # Compute score + file_path = path_to_file.name + result = eval_score(val_or_test,file_path=file_path,TOKEN=TOKEN) + with open(f"scored/{organization}_{val_or_test}_{eval_mode}_{planning_strategy}.jsonl", "w") as scored_file: + scored_file.write(json.dumps(result) + "\n") + + # Save scored file + api.upload_file( + repo_id=EVAL_DATASET, + path_or_fileobj=f"scored/{organization}_{val_or_test}_{eval_mode}_{planning_strategy}.jsonl", + path_in_repo=f"{organization}/{model}/{val_or_test}_{eval_mode}_{planning_strategy}_scored_{datetime.datetime.today()}.jsonl", + repo_type="dataset", + token=TOKEN + ) + + # Actual submission + eval_entry = { + "Model": model, + "Planning Strategy": planning_strategy, + "Organization": organization, + "Mail": mail, + "Delivery Rate": result['Delivery Rate'], + "Commonsense Constraint Micro Pass Rate":result['Commonsense Constraint Micro Pass Rate'], + "Commonsense Constraint Macro Pass Rate":result['Commonsense Constraint Macro Pass Rate'], + "Hard Constraint Micro Pass Rate":result['Hard Constraint Micro Pass Rate'], + "Hard Constraint Macro Pass Rate":result['Hard Constraint Macro Pass Rate'], + "Final Pass Rate":result['Final Pass Rate'] + } + + eval_results[val_or_test] = eval_results[val_or_test].add_item(eval_entry) + + print(eval_results) + + eval_results.push_to_hub(EVAL_DATASET, config_name = 'scores', token=TOKEN) + + return format_log(f"Model {model} submitted by {organization} successfully. \nPlease refresh the leaderboard, and wait a bit to see the score displayed") + + +def refresh(): + eval_results = load_dataset(EVAL_DATASET, 'scores', token=TOKEN, download_mode="force_redownload", ignore_verifications=True) + eval_dataframe_val = get_dataframe_from_results(eval_results=eval_results, split="validation") + eval_dataframe_test = get_dataframe_from_results(eval_results=eval_results, split="test") + return eval_dataframe_val, eval_dataframe_test + +# def upload_file(files): +# file_paths = [file.name for file in files] +# return file_paths + + +demo = gr.Blocks() +with demo: + gr.HTML(TITLE) + gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text") + + with gr.Tab("Results: Validation"): + leaderboard_table_val = gr.components.Dataframe( + value=eval_dataframe_val, interactive=False, + ) + with gr.Tab("Results: Test"): + leaderboard_table_test = gr.components.Dataframe( + value=eval_dataframe_test, interactive=False, + ) + + refresh_button = gr.Button("Refresh") + refresh_button.click( + refresh, + inputs=[], + outputs=[ + leaderboard_table_val, + leaderboard_table_test, + ], + ) + with gr.Accordion("Submit a new file for evaluation"): + with gr.Row(): + with gr.Column(): + level_of_test = gr.Radio(["validation", "test"], value="validation", label="Split") + eval_mode = gr.Radio(["two-stage", "sole-planning"], value="two-stage", label="Eval Mode") + model = gr.Textbox(label="Foundation Model") + planning_strategy = gr.Textbox(label="Planning Strategy") + with gr.Column(): + organization = gr.Textbox(label="Organization") + mail = gr.Textbox(label="Contact email") + file_output = gr.File() + + + submit_button = gr.Button("Submit Eval") + submission_result = gr.Markdown() + submit_button.click( + add_new_eval, + [ + level_of_test, + eval_mode, + model, + planning_strategy, + organization, + mail, + file_output, + ], + submission_result, + ) + +# scheduler = BackgroundScheduler() +# scheduler.add_job(restart_space, "interval", seconds=3600) +# scheduler.start() +demo.launch(debug=True) diff --git a/content.py b/content.py new file mode 100644 index 0000000000000000000000000000000000000000..cc9d79f119f2f61986b0d64791161f3145fad478 --- /dev/null +++ b/content.py @@ -0,0 +1,70 @@ +TITLE = """

TravelBench Leaderboard

""" + +INTRODUCTION_TEXT = """ +TravelBench is a benchmark crafted for evaluating language agents in tool-use and complex planning within multiple constraints. (See our [paper](https://arxiv.org/abs/2311.12983) for more details.) + +## Data +In TravelBench, for a given query, language agents are expected to formulate a comprehensive plan that includes transportation, daily meals, attractions, and accommodation for each day. +For constraints, from the perspective of real world applications, we design three types of them: Environment Constraint, Commonsense Constraint, and Hard Constraint. +TravelBench comprises 1,225 queries in total. The number of days and hard constraints are designed to test agents' abilities across both the breadth and depth of complex planning. + +TravelBench data can be found in [this dataset](https://huggingface.co/datasets/osunlp/TravelBench). + +## Submission Guidelines for TravelBench +Participants are invited to submit results for both validation and testing phases. The submissions will be evaluated based on several metrics: delivery rate, commonsense constraint pass rate (micro/macro), hard constraint pass rate (micro/macro), and the final pass rate. + +### Format of Submission: +Submissions must be in the form of a JSON-line file. Each line should adhere to the following structure: +``` +{"idx":0,"query":"Natural Language Query","plan":[{"day": 1, "current_city": "from [City A] to [City B]", "transportation": "Flight Number: XXX, from A to B", "breakfast": "Name, City", "attraction": "Name, City;Name, City;...;Name, City;", "lunch": "Name, City", "dinner": "Name, City", "accommodation": "Name, City"}, {"day": 2, "current_city": "City B", "transportation": "-", "breakfast": "Name, City", "attraction": "Name, City;Name, City;", "lunch": "Name, City", "dinner": "Name, City", "accommodation": "Name, City"}, ...]} +``` +Explanation of Fields: +#### day: +Description: Indicates the specific day in the itinerary. +Format: Enter the numerical value representing the sequence of the day within the travel plan. For instance, '1' for the first day, '2' for the second day, and so on. + +#### current city: +Description: Indicates the city where the traveler is currently located. +Format: When there is a change in location, use "from [City A] to [City B]" to denote the transition. If remaining in the same city, simply use the city's name (e.g., "City A"). + +#### transportation: +Description: Specifies the mode of transportation used. +Format: For flights, include the details in the format "Flight Number: XXX, from [City A] to [City B]". For self-driven or taxi travel, use "self-driving/taxi, from [City A] to [City B]". If there is no travel between cities on that day, use "-". + +#### breakfast, lunch, and dinner: +Description: Details about dining arrangements. +Format: Use "Name, City" to specify the chosen restaurant and its location. If a meal is not planned, use "-". + +#### attraction: +Description: Information about attractions visited. +Format: List attractions as "Name, City". If visiting multiple attractions, separate them with a semicolon ";". If no attraction is planned, use "-". + +Please refer to [this](https://huggingface.co/datasets/osunlp/TravelBench/resolve/main/example_submission.jsonl?download=true) for example submission file. + +Submission made by our team are labelled "TravelBench authors". Each submission will be automatically evaluated and scored based on the predefined metrics. The scores and rankings will be updated and displayed on the leaderboard. + +""" + +CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results" +CITATION_BUTTON_TEXT = r"""@misc{Xie2024TravelBench, + title={}, + author={}, + year={2024}, + eprint={, + archivePrefix={arXiv}, + primaryClass={cs.CL} +}""" + + +def format_error(msg): + return f"

{msg}

" + +def format_warning(msg): + return f"

{msg}

" + +def format_log(msg): + return f"

{msg}

" + +def model_hyperlink(link, model_name): + return f'{model_name}' + diff --git a/database/.DS_Store b/database/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..35dd3b9f93e9d94611c75b4a77360d8b73808a6a Binary files /dev/null and b/database/.DS_Store differ diff --git a/database/accommodations/.DS_Store b/database/accommodations/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 Binary files /dev/null and b/database/accommodations/.DS_Store differ diff --git a/database/accommodations/clean_accommodations_2022.csv b/database/accommodations/clean_accommodations_2022.csv new file mode 100644 index 0000000000000000000000000000000000000000..1a3144dc7ec77e247f4eefd089f5104fc65caebe --- /dev/null +++ b/database/accommodations/clean_accommodations_2022.csv @@ -0,0 +1,5064 @@ +,NAME,room type,price,minimum nights,review rate number,house_rules,maximum occupancy,city +0,Beautiful room upper manhttn.,Private room,131.0,1.0,2.0,No smoking,1,Christiansted +1,Roomy and Comftable Room,Private room,548.0,10.0,5.0,No children under 10 & No parties,2,Laredo +2,BIG room with bath & balcony in BK!,Private room,1123.0,1.0,4.0,No parties,2,Louisville +3,4A-,Entire home/apt,225.0,30.0,4.0,No pets,3,Greensboro +4,Nice and Comfortable Private Room,Private room,761.0,2.0,1.0,No smoking & No parties,2,Cape Girardeau +5,"☆ HUGE, SUNLIT Room - 3 min walk from Train !",Private room,412.0,29.0,3.0,No smoking & No visitors,1,State College +6,"Artful UWS King Room - near Central Park, Museums",Private room,219.0,1.0,5.0,No smoking,2,Peoria +7,Huge Bedroom - East Village - NYC,Private room,60.0,2.0,4.0,No children under 10,2,Roswell +8,Columbus Circle Single Bedroom,Private room,333.0,7.0,1.0,No children under 10 & No parties,1,Monroe +9,Simple Spacious RM near Queens Center Mall & NYPD,Private room,311.0,30.0,2.0,No visitors & No parties,2,Norfolk +10,Entire Modern Studio Apartment/Prime Location,Entire home/apt,1109.0,30.0,1.0,No parties & No smoking,5,Pocatello +11,Luxury large Penthouse /Fireplace / City views..,Entire home/apt,745.0,30.0,3.0,,7,Springfield +12,Home: Cozy Secure Convenient 12 min to NYC舒適安全便利的家,Shared room,746.0,1.0,4.0,No parties,1,College Station +13,Sunny bedroom off Prospect Park,Private room,627.0,3.0,2.0,No visitors,1,Bemidji +14,Private Room in Two-Bedroom Brooklyn Apartment,Private room,1191.0,1.0,3.0,No pets,2,St. George +15,HEART OF NYC! Sunny furn 1 br wifi,Entire home/apt,235.0,3.0,1.0,No parties & No pets,2,Hilo +16,Architect's Bedroom in Large Brooklyn Apartment,Private room,112.0,7.0,4.0,No pets,1,Hyannis +17,Entire 2nd Floor with Private Bath,Private room,1095.0,14.0,4.0,No smoking & No visitors & No children under 10,2,Medford +18,"Modern, Spacious Hideaway in Historic Brooklyn",Entire home/apt,386.0,6.0,3.0,No pets & No parties,2,Wenatchee +19,Cozy Private Room in Chinatown/ Lower East Side,Private room,132.0,7.0,4.0,No pets & No visitors,2,Knoxville +20,Sonder | 21 Chelsea | Central 1BR + Rooftop,Entire home/apt,1105.0,29.0,3.0,No visitors & No smoking & No children under 10,9,Waco +21,Spacious East Village Apartment,Entire home/apt,1001.0,90.0,4.0,No children under 10,9,Staunton +22,Beautiful apartment ~25min from Times Square,Entire home/apt,571.0,5.0,5.0,No smoking & No visitors,5,Pellston +23,Söderläge - Spacious Queen bedroom in Williamsburg,Private room,668.0,1.0,4.0,No parties,2,Bemidji +24,Modern furnished 2-Bedroom NYC Apartment!,Entire home/apt,647.0,30.0,1.0,No smoking,3,Dubuque +25,Beautiful duplex in New York,Entire home/apt,1185.0,7.0,4.0,No pets,2,Oklahoma City +26,Private Room,Private room,270.0,5.0,4.0,No pets,2,Kotzebue +27,Private room near Columbia,Private room,420.0,1.0,1.0,No visitors,1,Daytona Beach +28,Sunny 2BR Apartment in Williamsburg,Entire home/apt,495.0,1.0,2.0,No children under 10 & No smoking & No parties,3,Lincoln +29,Home away from home in the West Village.,Entire home/apt,148.0,2.0,2.0,No children under 10 & No pets,2,Ogden +30,Apartment Available in Bay Ridge Brooklyn,Shared room,479.0,1.0,2.0,No children under 10 & No parties,1,Hancock +31,Large room with AC a in house with a porch,Private room,758.0,2.0,4.0,,2,Tampa +32,Comfy Sunnyside bedroom,Private room,888.0,5.0,5.0,,1,Tucson +33,"Cozy Railroad Apartment in Greenpoint, BK",Entire home/apt,1009.0,1.0,3.0,No smoking,7,Williston +34,An urban nest; 7 minutes from Central Park,Entire home/apt,437.0,5.0,3.0,No children under 10 & No visitors & No parties,3,Latrobe +35,Renovated: 15min 4 Train ride to NYC-Crown Heights,Private room,751.0,3.0,3.0,,2,Jackson +36,Stylish 1 bed room in the East Village,Entire home/apt,674.0,3.0,3.0,No children under 10,6,Evansville +37,ON A BUDGET COZY IN BROOKLYN In NYC,Private room,99.0,3.0,3.0,No visitors & No parties,1,Montgomery +38,The Gramercy East,Entire home/apt,1031.0,2.0,4.0,No parties & No pets,3,Syracuse +39,Charming Fort Greene Apartment,Entire home/apt,722.0,2.0,5.0,No visitors & No parties & No children under 10,7,Albuquerque +40,Private furnished bedroom in Williamsburg,Private room,179.0,5.0,2.0,No parties & No smoking & No children under 10,1,Orlando +41,NYC Whole Apt. Dec 26th- Feb 3rd,Entire home/apt,1069.0,14.0,1.0,No children under 10,5,Bethel +42,Simple and clean bedroom with good view and light,Private room,669.0,1.0,5.0,No children under 10,2,Miami +43,Doorman Gym 2 Beds Luxury Building!5211,Private room,1041.0,30.0,5.0,No parties & No visitors,2,Martha's Vineyard +44,Spacious 1 BR & terrace on 19th floor viewing NYC,Entire home/apt,427.0,,2.0,No parties & No pets,3,Charlotte +45,Lux 1BR in the heart of NYC Theater district!,Entire home/apt,81.0,30.0,4.0,No children under 10,3,Durango +46,Private bedroom with queen bed and single bed.,Private room,935.0,1.0,1.0,No visitors,1,Latrobe +47,Lovely Guestroom in Elevator Building,Private room,359.0,2.0,1.0,No smoking & No visitors & No parties,2,Tampa +48,Cute 1 bdrm in shared crown heights apt w backyard,Private room,574.0,1.0,2.0,No visitors,2,Manhattan +49,Spacious 1 BD w/washer dryer in UES,Entire home/apt,499.0,2.0,2.0,No parties & No children under 10 & No visitors,4,Atlantic City +50,"166 Reviews, Single-Family House",Entire home/apt,426.0,2.0,3.0,No parties & No children under 10,3,Florence +51,Elegant room in Manhattan only for woman,Private room,1130.0,1.0,2.0,No visitors,1,Tyler +52,HUGE QUEEN ROOM IN 1500 SQFT WBURG BALLROOM APT,Private room,478.0,4.0,5.0,No parties,1,Baton Rouge +53,**Cozy Space - Private Access**,Private room,954.0,2.0,4.0,No smoking & No children under 10,1,Redding +54,M1 Twin couch bed sleeps 1 guest,Shared room,608.0,1.0,2.0,No children under 10 & No pets,1,Twin Falls +55,3BR Modern Upper West CPW w/doorman,Entire home/apt,442.0,3.0,1.0,No pets & No children under 10 & No parties,3,Hagerstown +56,Cute Greenpoint room,Private room,335.0,3.0,2.0,No children under 10 & No pets,1,Charlotte +57,Cosy Inwood apartment,Private room,413.0,1.0,4.0,No children under 10,1,Savannah +58,3 Bedroom Cozy Apartmnet,Entire home/apt,724.0,4.0,3.0,No smoking & No pets & No parties,4,Redding +59,Room with a private bathroom,Private room,863.0,1.0,3.0,No smoking & No parties & No children under 10,2,Riverton +60,Greenpoint Apartment,Private room,286.0,10.0,2.0,No pets & No parties,1,Wrangell +61,Garage Designer Loft,Entire home/apt,233.0,2.0,4.0,No smoking,3,Santa Fe +62,Cozy apartment near JFK,Entire home/apt,59.0,7.0,2.0,No visitors,3,Cape Girardeau +63,NEW! Beautiful room in flat w/ rooftop in SOHO :),Private room,668.0,4.0,4.0,No children under 10,2,Scottsbluff +64,Affordable Private Cozy Room!,Private room,513.0,3.0,1.0,No pets,1,Cedar Rapids +65,Comfortable and modern one bedroom in Midtown West,Entire home/apt,731.0,5.0,3.0,No pets,5,Allentown +66,Sunny bedroom at the heart of Harlem,Private room,518.0,5.0,2.0,No smoking,1,Hyannis +67,Nice Clean Official Cozy Suite 2 In Brooklyn,Private room,413.0,3.0,4.0,No pets,2,New Orleans +68,Your Absolute Best NYC Experience!!!,Entire home/apt,936.0,2.0,4.0,No pets,2,Butte +69,"Quiet cozy apartment, air-conditioned room",Private room,1040.0,3.0,3.0,,1,Bozeman +70,Bright Chelsea Entire 2 Bedroom Apartment,Entire home/apt,638.0,3.0,3.0,No smoking & No parties,4,St. Cloud +71,Comfy one bedroom with backyard,Entire home/apt,252.0,3.0,5.0,No pets,3,Deadhorse +72,"Victorian Home, Welcoming Comfort",Private room,,2.0,2.0,No children under 10 & No smoking,2,Durango +73,"Large, beautiful room near Bushwick",Private room,978.0,5.0,1.0,No children under 10,1,Harlingen +74,2 bedroom apartment in harlem,Entire home/apt,943.0,1.0,4.0,No parties & No pets,7,Lansing +75,Private room in a peaceful home ❤,Private room,918.0,1.0,1.0,No parties & No visitors,2,Redding +76,Shared Apartment by Times Square Manhattan,Shared room,1050.0,1.0,4.0,No visitors & No pets & No smoking,1,Seattle +77,Light-filled South Slope Nest!,Entire home/apt,790.0,2.0,2.0,No parties,6,Manhattan +78,Beautiful Room in a Classic Harlem Neighborhood!,Private room,788.0,3.0,5.0,No pets,2,Deadhorse +79,Charming cozy bedroom in Clinton Hill!,Private room,274.0,3.0,5.0,No smoking & No parties & No pets,2,Petersburg +80,Large quite apartment across from beautiful park,Entire home/apt,971.0,7.0,3.0,,6,Hayden +81,Awesome Private Room in Vibrant Bronx,Private room,928.0,2.0,5.0,,1,Binghamton +82,WBurg Priv Room. Great transport & local amenities,Private room,635.0,1.0,4.0,No children under 10,2,Lincoln +83,Sunny & quiet 2BR in great location,Entire home/apt,138.0,4.0,3.0,No pets & No children under 10,3,Mason City +84,2 Bedroom Apartment in Prime Midtown West,Entire home/apt,1121.0,3.0,3.0,No smoking & No children under 10,3,Charleston +85,Williamsburg Abode,Private room,1122.0,3.0,2.0,No children under 10,2,Montrose +86,Private room in Historic Queens NY,Private room,865.0,2.0,1.0,No parties & No smoking,2,White Plains +87,Cozy bedroom in diverse neighborhood near JFK,Private room,902.0,2.0,2.0,No pets & No parties,2,Lihue +88,1 BR and a sleeper sofa,Entire home/apt,258.0,5.0,2.0,No visitors & No children under 10,3,Grand Forks +89,Midtown East 2 Bed/2 Bath Elevator Building Apt,Entire home/apt,540.0,7.0,3.0,No pets,4,Los Angeles +90,Amazing apartment with great views,Entire home/apt,924.0,3.0,2.0,No smoking & No children under 10,4,Hartford +91,Beautiful Beach & Great Space,Private room,1107.0,2.0,3.0,No visitors,2,Kearney +92,Boho Chic Apartment in the Heart of Brooklyn,Entire home/apt,615.0,2.0,4.0,No smoking,6,Brownsville +93,Elegant Apartment with Spectacular views.,Shared room,236.0,1.0,3.0,No children under 10 & No pets & No parties,1,Joplin +94,"Private home next to beach,transport,parking",Entire home/apt,581.0,10.0,5.0,,3,Texarkana +95,Welcome to YURT -- private room in East Village,Private room,229.0,7.0,4.0,No children under 10 & No smoking,2,Boston +96,Comfortable studio suite in midtown Manhattan,Entire home/apt,67.0,30.0,3.0,No parties & No smoking & No visitors,2,Alamosa +97,★INCREDIBLE LOCATION★HELLO TIMES SQ & CENTRAL PARK,Entire home/apt,511.0,2.0,2.0,,2,Bishop +98,Brooklyn Gem,Entire home/apt,877.0,2.0,4.0,No children under 10,4,Palm Springs +99,New Bedroom for ONE (1) Professional.,Private room,146.0,1.0,3.0,,2,Missoula +100,Great 3 Bedroom Apartment - Incredible Location,Entire home/apt,685.0,25.0,5.0,No parties & No children under 10,4,Fort Lauderdale +101,Cozy Studio in Heart of Ft Greene,Entire home/apt,200.0,4.0,5.0,No pets & No children under 10,3,Buffalo +102,"Living by the ocean, Brooklyn",Entire home/apt,588.0,7.0,5.0,,4,Everett +103,Luxury Home Near Brooklyn Bridge,Private room,84.0,1.0,5.0,No pets,2,Minot +104,Private Bedroom - King Size Bed,Private room,163.0,1.0,2.0,,2,Arcata +105,Cozy Brooklyn Nook,Private room,372.0,1.0,5.0,No pets & No smoking & No parties,2,College Station +106,Gorgeous natural light in Chelsea photo studio,Entire home/apt,1094.0,1.0,2.0,No pets,8,Charlottesville +107,Comfy King Bed Feet from Subway,Private room,568.0,3.0,5.0,No parties,1,Detroit +108,Ditmas Park Beauty,Entire home/apt,972.0,3.0,5.0,No smoking & No pets,3,Hilo +109,Private 3A Room in 4BR/2BA APT in Hell's Kitchen,Private room,967.0,1.0,5.0,No visitors & No pets,2,Ponce +110,NYC Apartment near Central Park!,Entire home/apt,1118.0,3.0,5.0,No children under 10,5,Grand Junction +111,DaDukes Dreams,Private room,491.0,1.0,2.0,No visitors,2,Bakersfield +112,"Beautiful, Clean, Private & Chic furnished Apt.",Entire home/apt,223.0,4.0,3.0,No smoking,2,Greer +113,"Waterfront, perfect NYC getaway!",Entire home/apt,607.0,2.0,4.0,No parties & No children under 10,6,Stockton +114,Onderdonk Hotel Studio,Private room,544.0,2.0,4.0,No visitors & No pets & No parties,1,Manchester +115,The hipster apartment in the hipster borough,Private room,320.0,4.0,3.0,No smoking,2,Punta Gorda +116,"Homey 1BR in Fun, Central West Village w/ Doorman by Blueground",Entire home/apt,262.0,30.0,4.0,No parties,2,Daytona Beach +117,Room in Huge 1200sf W Harlem Suite,Private room,764.0,3.0,3.0,No parties & No visitors,2,Montrose +118,"5min from JFK airport, Train, Casino, Racetrack",Entire home/apt,489.0,2.0,4.0,,4,Sitka +119,SUNNY ROOM IN WILLIAMSBURG - 1 BLOCK TO METRO!!,Private room,880.0,2.0,2.0,No pets,1,Great Falls +120,Perfect Williamsburg room!,Private room,1080.0,14.0,5.0,No parties & No children under 10,2,Dothan +121,The Justice Tower 1,Private room,454.0,2.0,2.0,No smoking,2,Portsmouth +122,"Beautiful Double Room - Heart of Clinton Hill, BK",Private room,658.0,1.0,3.0,No smoking & No children under 10 & No parties,2,Baltimore +123,East Williamsburg/Bushwick Loft,Private room,694.0,1.0,5.0,No children under 10 & No parties,2,Muskegon +124,Sunny and Airy near Manhattan,Entire home/apt,499.0,2.0,5.0,No pets,4,Houston +125,"Cozy Park Slope Apt, Next to BBG",Entire home/apt,664.0,30.0,2.0,No children under 10,2,Sioux City +126,"Fabulous Large 1 Bed in Riverdale, Bronx NYC",Entire home/apt,246.0,14.0,1.0,No children under 10 & No visitors,3,Saipan +127,"Spacious, bright room, prime Williamsburg location",Private room,900.0,3.0,4.0,No visitors,2,Cincinnati +128,Bronx Roon,Private room,127.0,2.0,2.0,No visitors & No children under 10,2,Charleston +129,Luminous and Spacious Private Room,Private room,151.0,5.0,5.0,No children under 10,1,Santa Fe +130,Beautiful Loft in LES Manhattan!,Entire home/apt,484.0,3.0,5.0,No visitors & No smoking,2,Christiansted +131,Times Square River View,Private room,131.0,2.0,3.0,No parties,1,Sioux Falls +132,Bedstuy Cozy Room with Private Bathroom,Private room,1185.0,1.0,2.0,,1,Vernal +133,Heart of Soho! Cute studio with clean finishes!,Entire home/apt,969.0,4.0,4.0,No parties,2,Traverse City +134,Yankee baseball stay,Private room,911.0,1.0,5.0,No visitors,1,Buffalo +135,"Full 1-BR Apartment - Sunny, Cozy, and Eclectic!",Entire home/apt,522.0,4.0,3.0,No children under 10 & No smoking,2,Santa Ana +136,Comfort,Entire home/apt,151.0,2.0,4.0,No children under 10,2,North Bend +137,Cozy Brooklyn Room - Next to Pratt Institute,Private room,418.0,5.0,2.0,No smoking & No children under 10 & No pets,2,Myrtle Beach +138,Modern 1BR in Sutton Place by Sonder,Entire home/apt,384.0,29.0,3.0,No children under 10 & No smoking,2,Ogdensburg +139,East Village room with a view,Private room,1180.0,3.0,3.0,No smoking,1,Hilo +140,Comfortable sofa bed in chic apt,Shared room,1007.0,1.0,3.0,No children under 10 & No visitors,1,Anchorage +141,Spacious 1 Bedroom in Washington Heights,Entire home/apt,933.0,3.0,3.0,No smoking & No pets,3,Florence +142,"LES - Quiet, Comfy, and Large Private Bedroom",Private room,438.0,1.0,4.0,No visitors & No children under 10,1,Brownsville +143,Lower East Dream Room!,Private room,1155.0,2.0,2.0,,1,Rockford +144,Modern Clean beautiful 15min to center of NYC,Entire home/apt,274.0,2.0,5.0,No pets & No parties,3,St. Cloud +145,"Beautiful 1 bedroom apart, Washington Heights",Private room,69.0,7.0,2.0,No visitors,2,Louisville +146,"Spacious 1 Bedroom in Midwood, BK!",Private room,1125.0,1.0,1.0,No children under 10,1,Milwaukee +147,Luxury Upper West Side Studio,Entire home/apt,1136.0,30.0,3.0,No children under 10,3,Stillwater +148,Charming 1BR in UES Townhouse,Entire home/apt,1134.0,30.0,2.0,No smoking,4,State College +149,,Private room,543.0,4.0,1.0,No visitors & No smoking,1,Islip +150,Cozy Centrally Located Private Room in Bushwhick,Private room,147.0,2.0,1.0,No children under 10 & No smoking & No pets,2,Yuma +151,Rare gem of an apartment in NYC. So Spacious!,Private room,918.0,3.0,5.0,No parties & No children under 10,1,Cleveland +152,Cozy Two-bedroom Apt in a Cute House in Brooklyn!,Private room,99.0,4.0,4.0,No children under 10,1,Miami +153,Accessible between Times Square & Central Park,Private room,1111.0,1.0,4.0,No smoking,1,Elmira +154,Private room in Upper Manhattan near City College.,Private room,62.0,8.0,2.0,No visitors & No children under 10 & No parties,2,Peoria +155,Jestina's Place: Private bedroom & livingroom!,Private room,849.0,1.0,5.0,No visitors,1,Mason City +156,Spacious Private Space In Upper Manhattan,Private room,153.0,4.0,3.0,No pets,1,Waterloo +157,Beautiful new apartment located in Bushwick,Private room,683.0,7.0,3.0,No pets,2,College Station +158,Brand New Amazing 1 Bedroom Best Location,Entire home/apt,1168.0,30.0,5.0,No visitors & No children under 10 & No smoking,8,Lansing +159,Luxury Brownstone in Boerum Hill,Entire home/apt,744.0,3.0,2.0,No smoking,7,Mosinee +160,Plant-filled colorful Bushwick bedroom!,Private room,638.0,5.0,2.0,No smoking & No parties,1,Panama City +161,Bedroom with private access to patio,Private room,77.0,10.0,2.0,No parties,2,Reno +162,Sweet Historic Greenpoint Duplex,Entire home/apt,753.0,3.0,2.0,No parties & No children under 10,7,Albuquerque +163,♥Private Master Bath | Express Train+Free Parking☆,Entire home/apt,579.0,1.0,3.0,No smoking,5,Hilo +164,"Modern, bright 1 BR Brooklyn apt - Great location!",Entire home/apt,1033.0,2.0,5.0,No parties & No pets,9,Redding +165,Huge Loft - Heart of Williamsburg,Entire home/apt,518.0,2.0,3.0,No smoking,4,Jacksonville +166,Your private space in Brooklyn,Private room,859.0,1.0,3.0,No pets & No children under 10,2,Fargo +167,"East 63rd street, Studio Serviced Apartment",Entire home/apt,417.0,30.0,3.0,No parties & No visitors & No pets,4,Kalamazoo +168,"Walk everywhere, See everything! +2BR Midtown West",Private room,1016.0,1.0,4.0,No parties,1,Bemidji +169,Hamilton Heights Abode,Private room,601.0,7.0,4.0,No children under 10,1,Cedar City +170,Studio Apartment in a Doorman Building,Entire home/apt,823.0,1.0,4.0,,6,Wichita Falls +171,"Contemporary Home Away from Home, Entire house",Entire home/apt,290.0,2.0,3.0,No visitors,2,Baltimore +172,PARK SLOPE TOWNHOUSE,Entire home/apt,565.0,3.0,3.0,,3,San Angelo +173,Stunning 1-Bedroom NYC Apartment on the River!,Entire home/apt,68.0,30.0,2.0,No children under 10,3,Pocatello +174,Beautiful large floor-through apartment,Entire home/apt,769.0,3.0,5.0,No children under 10,4,Kansas City +175,Private Bed and Bath for Two!,Private room,343.0,3.0,4.0,No visitors & No pets,1,Greensboro +176,Madison Avenue 1 Bedroom Suite,Entire home/apt,166.0,30.0,3.0,No children under 10,2,Dillingham +177,Cozy 1BD in a cool neighborhood.,Entire home/apt,1193.0,3.0,1.0,No visitors,8,Lewiston +178,The Gramercy East,Entire home/apt,1031.0,2.0,4.0,No pets,10,St. Cloud +179,West Village Gem - 2BR,Entire home/apt,581.0,3.0,,No parties & No pets,5,Lafayette +180,Charming Bedroom in E. Williamsburg by Graham Av L,Private room,200.0,24.0,3.0,,2,Jackson +181,Amazing Brooklyn,Private room,905.0,7.0,3.0,No smoking & No parties & No visitors,1,Arcata +182,A4Long Island City Big Room Great Location,Private room,808.0,1.0,2.0,No visitors & No pets,2,San Jose +183,Entire Awesome One Bed-Lower East Side Manhattan,Entire home/apt,1191.0,30.0,3.0,,6,Salisbury +184,Unique Prime Location NYC Sleeps 6,Entire home/apt,196.0,3.0,3.0,No smoking & No children under 10 & No pets,2,Ogden +185,Sunlit Charming Studio in Park Slope,Entire home/apt,812.0,30.0,5.0,No visitors,2,Palm Springs +186,Master Bedroom in Quaint French Neighborhood,Private room,543.0,1.0,1.0,No smoking & No children under 10,2,Lincoln +187,Room with its private bathroom and garden access,Private room,1114.0,3.0,1.0,No children under 10 & No pets & No parties,2,Bristol +188,"Secret Garden Apartment in Bed Stuy, Brooklyn",Entire home/apt,214.0,2.0,4.0,No smoking & No children under 10,3,Wichita +189,Sunny & Spacious 2 bdrm apt,Entire home/apt,914.0,4.0,3.0,No smoking,9,Idaho Falls +190,Manhattan view in Bushwick,Private room,406.0,1.0,3.0,,1,Rhinelander +191,Fresh Studio in Brooklyn Townhouse,Entire home/apt,945.0,2.0,2.0,,5,Myrtle Beach +192,Cozy 1 bedroom in the heart of Fort Greene,Entire home/apt,751.0,3.0,5.0,No pets & No parties,6,Detroit +193,"Joyce and Donovan's, Room for One",Private room,83.0,25.0,2.0,No parties,2,Abilene +194,"Luxury 1BR in Times Square ""Urban Oasis""",Entire home/apt,383.0,4.0,5.0,No pets & No visitors,2,St. George +195,Newly Renovated Private Bedroom Near Columbia U!,Private room,247.0,30.0,4.0,,1,Las Vegas +196,Wonderful Private Room with Spacious Outdoor Patio,Private room,980.0,2.0,4.0,,2,Durango +197,Beautiful Brownstone in Boerum Hill,Entire home/apt,1165.0,3.0,1.0,No parties,9,Kahului +198,Hudson Yard - Lux King Room,Private room,1066.0,1.0,2.0,No smoking,1,Norfolk +199,NYC HUB GuestRoom: Train @ 900ft; midtown 30min!,Private room,216.0,2.0,4.0,No parties,2,Omaha +200,Cozy place to stay 7 minutes from Manhattan...,Private room,912.0,3.0,3.0,No pets,2,Tucson +201,Place of peace,Private room,1062.0,1.0,2.0,No children under 10 & No smoking & No parties,2,Panama City +202,*WINTER DISCOUNT WILLIAMSBURG CHIC W/PRIVATE PATIO,Entire home/apt,200.0,3.0,2.0,No parties & No pets,3,San Juan +203,Sunny and Bright Room,Private room,667.0,2.0,2.0,No children under 10 & No parties & No smoking,1,Lewisburg +204,"""HELLO BROOKLYN"" PARK SIDE VIEW NEWLY RENO APT.",Entire home/apt,789.0,1.0,5.0,No parties & No visitors,6,Miami +205,"Clean, cozy bedroom in luxury building",Private room,56.0,1.0,4.0,No children under 10,2,West Yellowstone +206,"Sunny, 1 Bedroom in Bedstuy, Brooklyn",Entire home/apt,160.0,7.0,4.0,No smoking,2,Kalamazoo +207,Beautiful 1BR in the heart of the West Village,Private room,210.0,5.0,5.0,No visitors & No smoking & No children under 10,2,Aberdeen +208,Large NYC room billionaires row 5 min CentralPark!,Private room,492.0,3.0,1.0,No parties & No smoking,1,Cedar Rapids +209,"sunny airy bohemian rm, private bath! hip 'shwick",Private room,592.0,2.0,4.0,No smoking,2,Texarkana +210,Sunny one bedroom on the Upper East Side,Entire home/apt,336.0,2.0,1.0,No children under 10,2,Dickinson +211,The Diamond Room,Private room,1008.0,1.0,5.0,No parties & No visitors,1,Knoxville +212,"Clean & bright 1BR in Cobble Hill, GREAT location!",Entire home/apt,316.0,2.0,2.0,No smoking & No children under 10,3,Scottsbluff +213,whole apartment & 2 cats!,Entire home/apt,93.0,3.0,5.0,No visitors & No children under 10,3,Sitka +214,Newly renovated shared room in great neighborhood2,Shared room,769.0,30.0,2.0,No smoking,1,Salisbury +215,和缘浪漫民宿,Private room,897.0,1.0,3.0,No children under 10 & No parties & No visitors,1,Billings +216,Midtown East,Entire home/apt,1145.0,3.0,3.0,No parties & No pets,9,Elko +217,Gorgeous Brooklyn Bedroom with Luxury Decor,Private room,920.0,2.0,4.0,No children under 10 & No pets & No smoking,2,Stockton +218,"STEPS TO LGA, Near CITIFIELD, JFK MANHATTAN(RM 3)",Private room,470.0,1.0,4.0,No children under 10,2,Presque Isle +219,Smart Home in the Heart of Harlem,Entire home/apt,499.0,2.0,2.0,No pets,3,Charleston +220,MASTER PRIVATE BATHROOM - 2 BEDS - NEXT TO METRO,Private room,543.0,30.0,2.0,No pets,1,Bemidji +221,Sun-filled Artist Home 1BR in convenient L.I.C !,Entire home/apt,1065.0,2.0,5.0,No children under 10,5,Santa Ana +222,Discount! Central Clean & Quiet,Private room,405.0,4.0,3.0,No parties,1,Green Bay +223,BSM2. Shares basement,Shared room,743.0,2.0,4.0,No pets,1,Champaign +224,Welcoming Warm and Walk to all!,Private room,327.0,14.0,5.0,,2,Peoria +225,Sunny Private Rm in Bushwick,Private room,284.0,2.0,4.0,No parties & No pets,1,Bend +226,Amazing 1bd in the heart of NYC!!!,Private room,130.0,1.0,5.0,,2,Nantucket +227,Spacious yet Cozy Room in Manhattan,Private room,566.0,3.0,4.0,No visitors,2,Gainesville +228,Luxurious Three Bedroom,Entire home/apt,286.0,3.0,2.0,No parties & No pets,2,Hibbing +229,Geodesic Dome,Entire home/apt,761.0,5.0,2.0,,6,Yakima +230,Convenient nook,Private room,918.0,31.0,5.0,,2,Columbus +231,New York Getaway Beautiful Room,Private room,110.0,1.0,2.0,,1,Victoria +232,Cozy Nolita Apartment,Entire home/apt,170.0,2.0,2.0,No smoking & No parties,3,Harrisburg +233,Spectacular one bedroom Close to Park,Entire home/apt,180.0,31.0,1.0,No parties,3,Long Beach +234,"Brooklyn Charmer, Close to Everything NYC!",Entire home/apt,568.0,2.0,4.0,No children under 10 & No parties,5,Huntsville +235,Luxury Studio Apt Overlooking the Hudson River,Entire home/apt,1183.0,30.0,1.0,No visitors,8,Bend +236,Modern Brooklyn Lifestyle,Entire home/apt,954.0,1.0,2.0,No pets,6,Barrow +237,NiceRoomNiceNeighborhoodCloseMaimonidesHospital,Private room,845.0,1.0,5.0,No pets,1,State College +238,Sunny duplex near Central Park,Entire home/apt,541.0,1.0,1.0,No pets,5,Moline +239,Charming Cobble Hill Brownstone Apartment,Entire home/apt,220.0,2.0,4.0,No pets,3,Devils Lake +240,Spacious Upper East Side 1BR apt near attractions,Entire home/apt,119.0,30.0,2.0,No visitors,2,Gainesville +241,Fully renovated 1 bedroom apartment,Entire home/apt,462.0,1.0,5.0,No children under 10,2,Concord +242,Amazing View of NYC,Entire home/apt,368.0,3.0,5.0,No smoking & No visitors,2,Owensboro +243,Nice Room,Private room,564.0,2.0,3.0,No smoking,2,Syracuse +244,Huge Madison Avenue Loft,Entire home/apt,1039.0,30.0,1.0,,10,Nantucket +245,"Quiet light-filled apt, subway near",Entire home/apt,1119.0,16.0,3.0,,2,Ponce +246,Brooklyn Brownstone duplex + garden,Entire home/apt,126.0,7.0,5.0,No pets,2,Kansas City +247,"Huge, Clean Brooklyn Room with lots of light",Private room,576.0,2.0,3.0,No pets,1,Presque Isle +248,Entire Cozy Studio in Central Harlem,Entire home/apt,299.0,2.0,3.0,,2,Lake Charles +249,Room 4 -Sunny Cozy Room in Historic Victorian Home,Private room,1196.0,2.0,4.0,No parties & No children under 10,2,Walla Walla +250,Sunny Private Room in Prime Bushwick on the park!,Private room,600.0,3.0,2.0,,1,Longview +251,"Quiet, Private and Sunny in Greenwich Village",Entire home/apt,492.0,2.0,2.0,No children under 10,4,Moline +252,Private basement studio with backyard access.,Private room,663.0,3.0,2.0,No children under 10,2,Provo +253,COZY APT CLOSE TO LGA & JFK AND TRANSPORTATION,Entire home/apt,652.0,2.0,3.0,No children under 10,2,Jamestown +254,Renovated 2 Bedroom Apartment,Entire home/apt,372.0,2.0,4.0,No parties & No visitors & No pets,2,Spokane +255,Friendly Upper West Side Apartment,Entire home/apt,761.0,1.0,5.0,No pets & No children under 10 & No parties,6,Iron Mountain +256,Large Cozy Bedroom Near Manhattan & Airport,Private room,266.0,28.0,4.0,No parties & No pets & No smoking,1,Victoria +257,Affordable Space in Washington Heights Manhattan,Shared room,389.0,1.0,3.0,,1,San Diego +258,Studio apartment; close to tourist attractions,Entire home/apt,769.0,2.0,4.0,No visitors & No smoking,6,Dayton +259,1 Room in Apt. near Columbia Univ.,Private room,470.0,2.0,2.0,No pets,2,Lexington +260,Central Park North 1BD,Shared room,650.0,1.0,3.0,,1,Aberdeen +261,Amazing Central Park One Bedroom,Entire home/apt,330.0,3.0,5.0,No children under 10,3,Monroe +262,Sunlit Central Park Apartment,Entire home/apt,1144.0,6.0,3.0,No visitors,10,Aspen +263,Caribnb- Charming stay in a private 2 family home,Private room,357.0,2.0,1.0,No pets & No smoking,2,Cordova +264,"Sunny bedroom with balcony, Queens",Private room,524.0,1.0,4.0,No pets,2,Eau Claire +265,"Sixth Ave Chelsea, Studio Serviced Apartment",Entire home/apt,70.0,30.0,2.0,No visitors & No pets,3,Orlando +266,Great location-Newly updated-great new features,Entire home/apt,255.0,3.0,4.0,No pets,2,La Crosse +267,"Luxury 1BR in Times Square ""Urban Oasis""",Entire home/apt,383.0,4.0,5.0,,2,Richmond +268,Pleasant 1 bedroom apartment in Harlem Brownstone,Entire home/apt,500.0,1.0,3.0,No parties & No smoking,5,Burbank +269,Walking distance to LaGuardia airport,Private room,854.0,1.0,1.0,No smoking & No visitors,2,Newburgh +270,"Beautiful, Newly Furnished, Luxury, Grand Central",Entire home/apt,210.0,30.0,4.0,No parties,2,State College +271,2 BEDROOM IN WILLIAMSBURG MINUTES FROM MANHATTAN,Entire home/apt,831.0,2.0,5.0,,3,Louisville +272,FLUSHING APT!! BEST DEAL IN NYC!!!,Entire home/apt,135.0,1.0,5.0,No smoking & No parties,2,San Juan +273,"Spacious, sunlit, homey bedroom in Wash. Heights",Private room,417.0,7.0,3.0,No smoking,2,Lansing +274,Large private room in heart of BK,Private room,892.0,2.0,3.0,No children under 10 & No smoking,1,Champaign +275,Brownstone apt in historic Brooklyn,Entire home/apt,139.0,2.0,1.0,No parties & No smoking & No pets,3,Montrose +276,Plant-filled 1 BD by Prospect Park,Entire home/apt,1100.0,1.0,2.0,No children under 10,8,Atlantic City +277,87st 204,Private room,921.0,30.0,3.0,No children under 10,2,Reno +278,Elegant Studio in the Heart of Harlem,Entire home/apt,371.0,30.0,1.0,No visitors,2,Charlotte Amalie +279,Cozy| PRIVATE STUDIO | TIMES SQAURE,Entire home/apt,414.0,3.0,5.0,No parties & No visitors,3,Sioux Falls +280,Beautiful Home in the Heart of Greenpoint,Entire home/apt,718.0,4.0,4.0,,2,Baltimore +281,Lovely Bedroom in heart of East Village,Private room,115.0,2.0,2.0,,2,Gulfport +282,New York City Manhattan Midtown Convenient Place,Entire home/apt,795.0,1.0,2.0,No visitors & No parties & No children under 10,6,Jamestown +283,Sunny studio apt in heart of SoHo,Entire home/apt,97.0,20.0,2.0,No parties & No smoking,3,Garden City +284,"Sam and Mala""s Place",Entire home/apt,82.0,3.0,4.0,No visitors & No smoking,2,Mason City +285,The ocean view room size 12x14,Private room,709.0,5.0,2.0,No parties,1,Portland +286,Spacious 3BDR Prime Location!,Entire home/apt,1030.0,2.0,2.0,No smoking,9,Rockford +287,Spacious Cozy Private Room close to Central Park,Private room,916.0,1.0,4.0,No smoking,2,Springfield +288,Harlem Jazz (private bath),Private room,97.0,1.0,4.0,No smoking,2,Muskegon +289,Penthouse Apartment in Chelsea,Entire home/apt,412.0,2.0,1.0,No children under 10,3,Corpus Christi +290,Sunny Williamsburg w Balcony - Long Term Rental,Entire home/apt,874.0,15.0,2.0,No pets & No visitors & No parties,3,Ketchikan +291,Book it Vintage!,Private room,263.0,2.0,5.0,No smoking,2,Newburgh +292,Two Bedrooms in Bright Brooklyn Home,Private room,302.0,3.0,5.0,No pets,1,Grand Island +293,CHARMING ONE BEDROOM APT IN LES/CHINATOWN,Entire home/apt,430.0,4.0,1.0,No parties & No children under 10,4,Pensacola +294,New Private studio-apartment,Entire home/apt,256.0,1.0,4.0,,3,Boston +295,Williamsburg Hidden Gem,Entire home/apt,391.0,1.0,4.0,No visitors & No smoking,2,Charlottesville +296,Luxury building- 2BR/2BA in Chelsea,Entire home/apt,560.0,1.0,1.0,No pets & No parties & No visitors,4,Stillwater +297,LES East Village Spacious Getaway,Entire home/apt,659.0,4.0,1.0,No smoking & No visitors,5,Yakutat +298,Cozy Private Room,Private room,69.0,2.0,4.0,No children under 10 & No parties & No visitors,2,Decatur +299,Modern room in Williamsburg,Private room,515.0,1.0,4.0,No pets & No visitors,2,Provo +300,H. Potter theme place,Entire home/apt,85.0,10.0,1.0,No visitors,3,Kansas City +301,Beautiful Bedroom Near Barclays!,Private room,710.0,3.0,3.0,No smoking,2,Cody +302,"Immaculate townhouse in Clinton Hill, Brooklyn",Entire home/apt,655.0,3.0,5.0,,4,Bloomington +303,Comfortable Room near the center of Manhattan.,Private room,980.0,2.0,3.0,No pets & No smoking,2,Watertown +304,Lovely One bedroom apartment 20 min to Manhattan,Entire home/apt,186.0,4.0,3.0,No parties,2,New Orleans +305,"Entire PVT 3BR townhouse apt, Brooklyn.❤️❤️❤️❤️❤️",Entire home/apt,499.0,28.0,2.0,No children under 10,4,Palm Springs +306,Hostal: 1 full size mattress bottom floor bunk bed,Shared room,1053.0,4.0,5.0,No smoking & No pets,1,Saipan +307,Spotless Clean room private entrance paid parking,Private room,492.0,2.0,1.0,No smoking,2,Kearney +308,Waterfront Private Bedroom & Private Bathroom.,Private room,508.0,2.0,3.0,No smoking,2,Eagle +309,Peace home in Bedford Stuyvesant Brooklyn,Private room,1068.0,3.0,3.0,,1,Reno +310,Cozy modern studio in heart of LES,Entire home/apt,699.0,2.0,5.0,No smoking,5,Rhinelander +311,1 Bedroom/1 Bath Apt in Hudson Yards/Midtown West,Entire home/apt,610.0,1.0,2.0,No parties & No pets,2,Belleville +312,COZY COOL ROOM IN MANHATTAN APT / Manhattan,Private room,241.0,1.0,3.0,No children under 10,2,Moab +313,Lovely & Sunny 2 Bedroom Home,Entire home/apt,73.0,1.0,3.0,No children under 10,3,Mission +314,Sunny in heart of Williamsburg,Entire home/apt,828.0,1.0,3.0,,3,Burlington +315,Backpackers Dream for 1 at The Funky Loft,Private room,244.0,3.0,4.0,No visitors,2,Worcester +316,Lovely 1 BD on the Upper West Side,Entire home/apt,854.0,1.0,4.0,No children under 10,3,Grand Junction +317,Super Great Williamsburg Apartment- Private Room,Private room,1172.0,1.0,5.0,No visitors & No smoking,1,Manchester +318,1 BR in Carroll Gardens Townhouse,Private room,397.0,2.0,4.0,No visitors & No smoking,1,Phoenix +319,"Brooklyn Room, Calm Spacious Oasis, Prospect Park",Private room,949.0,2.0,1.0,,1,Durango +320,Large sunny park slope apartment,Entire home/apt,82.0,1.0,5.0,No smoking & No parties & No pets,3,Colorado Springs +321,"Upper West / Morningside Heights Apt, Near Subway",Entire home/apt,290.0,3.0,3.0,No smoking,2,El Paso +322,Oversized Studio in the Heart of Midtown,Entire home/apt,505.0,2.0,2.0,No pets,5,Tyler +323,HUGE bedroom available in artsy Bushwick,Private room,696.0,1.0,3.0,No parties & No children under 10,1,Greenville +324,"Charming studio, great location!!!",Entire home/apt,994.0,2.0,5.0,No smoking & No pets,8,Twin Falls +325,Elegant Brownstone Duplex,Entire home/apt,217.0,3.0,1.0,No smoking,3,Daytona Beach +326,Your Home with View in Greenpoint!,Entire home/apt,320.0,3.0,1.0,No pets,2,Laredo +327,Cute Family Friendly Vintage Brownstone Living!!,Shared room,920.0,2.0,1.0,No parties & No children under 10,1,Baltimore +328,New York Apartment,Private room,988.0,2.0,5.0,No visitors,2,West Palm Beach +329,Loft Suite @ The Box House Hotel,Entire home/apt,685.0,3.0,2.0,,3,Fairbanks +330,Ultimate 50th Floor Downtown Penthouse - 4000SqFt,Entire home/apt,1043.0,2.0,4.0,No smoking & No visitors & No children under 10,9,Alpena +331,"Family-friendly, cozy guest room",Private room,549.0,2.0,4.0,No pets,1,Raleigh +332,Cozy vibes next to Prospect Park/Botanical Gardens,Private room,431.0,2.0,4.0,No parties,1,Iron Mountain +333,AMAZING AAA Specious Studio South Expo Skylight!,Entire home/apt,71.0,30.0,5.0,No parties,2,Kalispell +334,Cozy Room for 2 in Astoria!,Private room,224.0,1.0,1.0,No children under 10 & No pets,2,Mason City +335,*Lovely Apt in Heart of Park Slope*,Entire home/apt,1138.0,30.0,4.0,No pets & No children under 10,3,Syracuse +336,Park Slope Garden Lovers Duplex,Entire home/apt,315.0,7.0,3.0,No visitors & No smoking & No pets,2,Presque Isle +337,Cozy Studio Near Prospect Park,Shared room,1051.0,3.0,2.0,No visitors & No pets & No smoking,1,Oklahoma City +338,Spacious and sunny room in Brooklyn,Private room,632.0,30.0,1.0,No parties & No visitors,2,Little Rock +339,"Quiet, Private 3.5 rooms, Manhattan convenient",Entire home/apt,628.0,2.0,4.0,,5,Texarkana +340,UES Modern Style 1 Bedroom Near 2 Ave Subway Line,Entire home/apt,550.0,2.0,2.0,No children under 10 & No smoking & No visitors,3,Roswell +341,Comfy & Sunny Studio Rental,Entire home/apt,413.0,2.0,5.0,No parties,3,Great Falls +342,Brooklyn Vibes Apartment,Private room,978.0,4.0,2.0,No visitors,2,Escanaba +343,"Homie,cozy,artsy,warm,sweet,Harlem!",Entire home/apt,997.0,1.0,4.0,No smoking,5,Tyler +344,Is a beautiful place for recharge good energy....,Private room,810.0,10.0,2.0,,1,Medford +345,Cozy Garden Apartment in Bushwick!!,Private room,1191.0,3.0,5.0,No visitors & No pets,2,Yuma +346,Large 1bdr perfect Village location,Entire home/apt,959.0,2.0,4.0,No visitors & No parties & No children under 10,9,New Bern +347,Renovated 2 Bed 2Bath high floor Pool in building,Entire home/apt,960.0,31.0,3.0,No children under 10,5,Palm Springs +348,Studio in Greenwich Village,Entire home/apt,462.0,27.0,4.0,No visitors,2,West Yellowstone +349,King Hotel Room at Wyndham Midtown 45 Resort,Private room,264.0,2.0,3.0,No pets & No smoking & No children under 10,2,Miami +350,Charming Loft-like Garden Apt in Bed-Stuy,Entire home/apt,916.0,3.0,1.0,No pets & No smoking & No children under 10,7,Paducah +351,温馨旅店(3),Private room,189.0,1.0,2.0,,2,Dallas +352,One Bed Room Apt In Midtown East,Entire home/apt,450.0,2.0,2.0,No children under 10 & No smoking,3,Martha's Vineyard +353,"Beautiful Room close to JFK, La Guardia, LIR",Private room,352.0,2.0,4.0,No pets,1,Traverse City +354,Spacious Loft in Clinton Hill,Entire home/apt,1047.0,,2.0,No parties & No smoking,3,Wenatchee +355,Luxury 1 bedroom apt. Downtown Brooklyn/Dumbo,Entire home/apt,111.0,5.0,5.0,No parties & No children under 10,3,Hyannis +356,Bohemian Studio Loft in Brooklyn,Entire home/apt,817.0,30.0,2.0,No visitors,2,Nantucket +357,Nice & Spacious Manhattan Room Near the Station,Private room,468.0,30.0,2.0,,2,Greensboro +358,Amazing Space in the Heart of Williamsburg,Entire home/apt,1093.0,10.0,2.0,No visitors,2,Lawton +359,A PIECE OF GREENWICH VILLAGE HISTORY!,Private room,224.0,2.0,2.0,,2,Toledo +360,NYC High End Upper East Side Central Park Gem Home,Entire home/apt,119.0,1.0,5.0,No visitors,3,Long Beach +361,Cozy Affordable room in Brooklyn,Private room,791.0,1.0,5.0,No visitors & No children under 10,1,Tyler +362,Verrazano bridge garden house,Private room,1016.0,5.0,3.0,No visitors & No smoking & No parties,1,Des Moines +363,Lovely private bedroom,Private room,232.0,3.0,4.0,No children under 10,2,Mobile +364,Beautifully Renovated 3BD/2BA ☆ 1 Block to Subway,Entire home/apt,1170.0,2.0,3.0,No children under 10,8,Washington +365,Sonder | 116 John | Simple 1BR + Gym,Entire home/apt,290.0,29.0,3.0,No children under 10,3,Huntsville +366,"2 BEDROOMS, 1 BATH, FULL FRONTAL OCEANVIEW",Entire home/apt,475.0,3.0,5.0,,3,Cincinnati +367,Private Room in Beautiful Soho NYC,Private room,665.0,3.0,4.0,No smoking & No visitors,1,Greensboro +368,Large Opulent Studio Apartment Near Prospect Park,Entire home/apt,465.0,4.0,4.0,No children under 10,3,White Plains +369,Sunny St. Mark's Place Oasis,Entire home/apt,767.0,1.0,2.0,No smoking & No parties,7,Sault Ste. Marie +370,Delightful Brooklyn Studio,Entire home/apt,1077.0,31.0,1.0,No children under 10 & No smoking & No pets,2,Nantucket +371,Cozy and affordable room.,Private room,1021.0,5.0,5.0,,2,Grand Rapids +372,Sunny 1 bedroom apartment on quiet block,Entire home/apt,1024.0,1.0,3.0,No children under 10 & No visitors & No smoking,5,Hilo +373,Sun-kissed & Spacious Queens Room w/ Full Kitchen,Private room,526.0,3.0,5.0,No smoking & No parties,1,Missoula +374,2 bedroom apartment in Astoria,Entire home/apt,665.0,2.0,4.0,No children under 10 & No parties & No pets,2,Birmingham +375,"A bright, beautiful treehouse",Entire home/apt,361.0,2.0,5.0,No visitors,2,Reno +376,★☆Sunnyside☆-Locals' favorite neighbor for living-,Private room,995.0,29.0,3.0,No children under 10,2,Alexandria +377,Beautiful eco triplex w/green roof. Free yoga/spa.,Entire home/apt,729.0,1.0,3.0,No parties,2,Roanoke +378,Greenwich Village Luxury Loft,Entire home/apt,326.0,2.0,4.0,No children under 10,3,Omaha +379,Fantastic Room in Bushwick,Private room,1069.0,2.0,3.0,No children under 10,2,Atlanta +380,Light-Filled Top Floor of 4BR Townhouse.❤️❤️❤️❤️❤️,Entire home/apt,485.0,28.0,4.0,No children under 10,2,Mobile +381,Cozy mezzanine bdrm in charming Bklyn neighborhood,Private room,464.0,2.0,5.0,No pets,1,Prescott +382,Large soho apt,Entire home/apt,876.0,1.0,5.0,No parties,3,Mason City +383,Sunny apartment with easy connections to anywhere.,Private room,968.0,3.0,4.0,No children under 10,1,Los Angeles +384,Magic Brooklyn townhouse room fit for a wizard,Private room,624.0,1.0,5.0,No children under 10 & No parties,2,St. Petersburg +385,Comfy Apt in Chinatown/Lower East Side,Private room,1129.0,1.0,4.0,No pets,1,Pago Pago +386,Spacious beautiful Bed Stuy duplex with garden,Entire home/apt,319.0,4.0,3.0,No smoking & No pets,2,Clarksburg +387,Large apartment in Manhattan UWS,Entire home/apt,607.0,1.0,3.0,No smoking & No parties,2,Anchorage +388,Spacious Lower East Side with private balcony,Private room,545.0,2.0,3.0,No children under 10,2,Anchorage +389,Peaceful room in cool area close to G/7/Ferry/JFK,Private room,485.0,1.0,5.0,No smoking & No visitors & No children under 10,2,Ogden +390,Spacious 1 bedroom on Hamilton Grange - Entire Apt,Entire home/apt,610.0,3.0,5.0,No smoking & No visitors,2,Hobbs +391,Studio Apartment in a Doorman Building,Entire home/apt,823.0,1.0,4.0,No parties & No pets & No visitors,7,Bloomington +392,Cozy Apartment With Private Backyard,Entire home/apt,734.0,2.0,3.0,,4,Aberdeen +393,Stylish garden apartment,Entire home/apt,314.0,3.0,4.0,No smoking & No visitors,3,Birmingham +394,Private room in two floor apartment w/ back yard,Private room,1190.0,1.0,4.0,No visitors & No parties,1,Portland +395,Cozy Harlem Jewel,Private room,1153.0,2.0,1.0,,2,Devils Lake +396,2. Private 1BR Suite in Shared Marine Park Apt.,Private room,222.0,2.0,1.0,,2,Laredo +397,Cozy MasterBed Room Suite w/Jacuzzi Tub,Private room,945.0,1.0,3.0,No visitors & No parties,2,Ogden +398,Clean,Private room,720.0,3.0,2.0,No visitors & No parties & No smoking,1,Pittsburgh +399,Townhouse with private bathroom and lush backyard,Private room,640.0,2.0,5.0,No children under 10 & No parties & No smoking,1,Manchester +400,Williamsburg Gem: Sleep up to 5,Entire home/apt,486.0,2.0,1.0,No smoking & No children under 10,4,Buffalo +401,Sunlight Suite,Entire home/apt,472.0,1.0,4.0,No smoking & No pets & No children under 10,2,Minot +402,Sunny Modern Lux Private House with Parking,Entire home/apt,614.0,3.0,4.0,No smoking & No children under 10 & No parties,3,Toledo +403,The Heart of the Lower East Side!,Entire home/apt,587.0,2.0,4.0,No children under 10,2,Decatur +404,"BasementSolo Private bedRoom No +Window in NYC, 2E",Shared room,729.0,2.0,1.0,,1,Wichita Falls +405,"Harlem Deco,",Private room,650.0,1.0,2.0,No visitors,2,New Orleans +406,Clean Quiet Prvt Rm Prvt Bathroom in Midtown,Private room,936.0,5.0,4.0,No parties,2,Greensboro +407,2 Bedroom Loft in Clinton Hill,Entire home/apt,740.0,2.0,2.0,No pets & No children under 10 & No visitors,6,Wichita +408,Private Room in Heart of Williamsburg!,Private room,1200.0,2.0,3.0,No smoking & No pets & No parties,1,Concord +409,Cozy room in UWS,Private room,1016.0,4.0,5.0,No visitors & No children under 10,2,Lincoln +410,Private bedroom in UWS Apartment,Private room,709.0,2.0,5.0,No visitors & No pets,2,Lubbock +411,JFK 10 & LGA 15 MINUTES AWAY A/C PRIVATE BEDROOM B,Private room,729.0,,5.0,,2,Birmingham +412,Quiet and beautiful apartment near central park,Entire home/apt,930.0,7.0,2.0,No parties & No smoking,9,Fort Myers +413,Bushwick Duplex 3 min walk to subway,Private room,708.0,1.0,2.0,No visitors & No smoking & No parties,1,International Falls +414,Beautiful Manhattan Apt- 20 min to Times Square,Entire home/apt,79.0,7.0,2.0,No children under 10,3,Punta Gorda +415,Classic Brooklyn Brownstone,Entire home/apt,1130.0,5.0,5.0,No parties & No children under 10 & No smoking,7,Key West +416,Prospect Park gem! Charming & chic 2 bedroom apt!,Entire home/apt,790.0,7.0,5.0,No children under 10,7,Charleston +417,"Free parking, quiet, 5 stops on N/W to Manhattan",Entire home/apt,483.0,4.0,2.0,No children under 10 & No visitors,3,Ontario +418,NEW Private room on Manhattan. Breathtaking view!,Private room,304.0,15.0,4.0,No pets,1,Laramie +419,"Sunny room in Sunset Park, Brooklyn",Private room,433.0,7.0,3.0,,2,Rock Springs +420,Budget Room in large apartment (Solo Travelers+),Private room,1132.0,21.0,1.0,No parties,2,Escanaba +421,*Lovely Apt In Heart Of Park Slope*,Entire home/apt,70.0,14.0,4.0,No pets,3,Evansville +422,Large bedroom in a lovely flat in perfect location,Private room,389.0,2.0,5.0,,2,Laramie +423,"CITY LINE, HALF BROOKLYN /QUEENS COZY CORNER",Private room,1131.0,3.0,2.0,No children under 10 & No smoking,1,Laredo +424,Darling Midtown Getaway byTimes Sq.,Private room,1169.0,4.0,1.0,No children under 10,2,Redding +425,Luxurious & Spacious 1 Bedroom Apt,Entire home/apt,183.0,1.0,1.0,No pets & No smoking & No parties,2,Vernal +426,Glamping Van,Entire home/apt,132.0,1.0,3.0,No visitors & No children under 10,3,Columbia +427,Sunny room in modern building located in Bedstuy,Private room,430.0,5.0,2.0,No smoking,2,Savannah +428,Doorman Penthouse One Bedroom Laundry 5196,Entire home/apt,927.0,30.0,5.0,No children under 10,9,Laramie +429,It must be your BDAY because this deal is great,Private room,173.0,3.0,3.0,No children under 10,1,Gainesville +430,Charming Brooklyn Heights Abode,Entire home/apt,1017.0,25.0,4.0,No pets,3,Ketchikan +431,Beautiful TriBeCa Apartment,Private room,590.0,25.0,3.0,No smoking,1,Sault Ste. Marie +432,Huge apartment in a beautiful house in Greenpoint,Entire home/apt,855.0,3.0,1.0,No smoking & No pets & No visitors,6,Greer +433,"Getaway to the city, 2 blocks from train (C)",Entire home/apt,1200.0,3.0,4.0,No pets,8,Liberal +434,Private 3B Room in 4BR/2BA APT in Hell's Kitchen,Private room,613.0,1.0,4.0,No children under 10,2,Cedar City +435,Prime Williamsburg Large bedroom for 1or2 people,Private room,915.0,1.0,2.0,No visitors,1,Daytona Beach +436,Brooklyn Style Hostel RM4 #4,Shared room,972.0,1.0,2.0,No pets,1,Cordova +437,"Beautiful 2BR Apt, 1 Min Walk to Major Subway!",Entire home/apt,182.0,30.0,4.0,No pets & No children under 10 & No visitors,3,Asheville +438,"Sunny, 1 Bedroom in Bedstuy, Brooklyn",Entire home/apt,160.0,7.0,4.0,No children under 10 & No parties,3,Johnstown +439,Private Bedroom in Spanish Harlem,Private room,410.0,2.0,5.0,No parties,1,Lynchburg +440,Modern and Hip Brooklyn Brownstone!,Entire home/apt,264.0,2.0,2.0,,2,Cincinnati +441,Big Bedroom in UES Apartment,Private room,347.0,1.0,1.0,No smoking & No parties,2,Lafayette +442,LRG PRVT ROOM IN NYC NEAR METRO & ACTIVITIES,Private room,716.0,2.0,4.0,No visitors & No parties,1,Escanaba +443,Ultra-Modern 6-bedroom House (Great for Groups),Entire home/apt,818.0,10.0,1.0,No pets & No visitors,5,Vernal +444,1BR/1BA in 2BR/2BA Flushing,Shared room,951.0,1.0,2.0,No visitors,1,Sheridan +445,Charming private room 2 beds,Private room,664.0,30.0,2.0,No visitors & No children under 10 & No parties,1,Rock Springs +446,Great West Village Pad,Private room,188.0,1.0,5.0,No pets & No parties & No children under 10,2,Birmingham +447,Brooklyn Palace,Entire home/apt,975.0,1.0,4.0,No pets & No smoking,2,Pullman +448,Live in Harlem close to Columbia U!,Private room,797.0,2.0,5.0,No children under 10 & No pets,2,Laramie +449,Amazing 2 Bd Loft -PRIME Williamsbu,Entire home/apt,801.0,3.0,1.0,No pets,2,Birmingham +450,Classic Brownstone Apartment,Entire home/apt,1103.0,2.0,2.0,No visitors & No children under 10 & No parties,7,Shreveport +451,Bright Clinton Hill/Bed Stuy Room in Artist's Apt.,Private room,739.0,3.0,5.0,,1,Punta Gorda +452,Private Room in Large Airy Apartment,Private room,861.0,2.0,3.0,No parties,1,King Salmon +453,Spacious room steps from Central Park and Subway,Private room,195.0,2.0,2.0,No children under 10,2,Montrose +454,"(Room201)7分钟拉瓜迪机场,19分钟肯尼迪机场。皇后区法拉盛中心,地段超好。#201",Private room,748.0,1.0,1.0,No smoking & No parties,1,Bloomington +455,One private Room Harrigan Luxury Townhouse Suite,Private room,115.0,2.0,2.0,No visitors,1,Santa Rosa +456,JFK 15 AND LGA 18 MINUTES,Private room,862.0,3.0,3.0,No children under 10,1,Sanford +457,Bright & Light Chelsea One Bedroom,Entire home/apt,553.0,2.0,2.0,No smoking & No visitors,5,Tulsa +458,Private Room in a two bedroom apt.,Private room,210.0,1.0,4.0,No visitors & No smoking,2,Rockford +459,Cozy apartment in Bed-Stuy near Subway Stations,Private room,228.0,3.0,4.0,,1,Moab +460,Lovely & welcoming apartment in Bed-Stuy,Entire home/apt,462.0,4.0,2.0,,3,Allentown +461,Comfortable Studio! Easy Access to Manhattan!,Entire home/apt,296.0,2.0,5.0,No visitors & No parties & No pets,2,Sioux Falls +462,UWS BEAUTIFUL 1 Bedroom Available,Entire home/apt,471.0,1.0,3.0,,2,Waterloo +463,Lovely spacious 1 Bdrm in Ridgewood,Entire home/apt,993.0,2.0,3.0,No smoking,3,Staunton +464,Cozy in Cobble Hill,Entire home/apt,205.0,2.0,2.0,No visitors & No smoking,2,New Orleans +465,Sunlit Brooklyn Bedroom w/ Private Entrance,Private room,856.0,2.0,2.0,No parties,1,Fort Wayne +466,Full size bed with drawer space!,Private room,526.0,1.0,1.0,No pets & No children under 10 & No parties,1,Scranton +467,RARE | Romantic Studio ♥ West Village Landmark,Entire home/apt,629.0,1.0,4.0,No children under 10 & No visitors & No pets,2,Atlantic City +468,One Bedroom in Heart of Chelsea,Entire home/apt,927.0,4.0,4.0,,5,Newburgh +469,Sunny big designer room in Art-loving Bushwick,Private room,441.0,3.0,3.0,No parties,2,Santa Rosa +470,Cool Summer Vibes UWS Pent House w/ rooftop,Entire home/apt,498.0,3.0,4.0,No pets & No parties,2,Richmond +471,Entire Large one bedroom close to all areas of NYC,Entire home/apt,959.0,3.0,3.0,,3,Melbourne +472,LUXURY DELUXE 2BR 2BATH -DOORMAN/GYM,Entire home/apt,65.0,30.0,2.0,No visitors,3,Manchester +473,Quiet place w/ private bathroom,Private room,906.0,1.0,4.0,No visitors,1,Cincinnati +474,Bright Spacious BK Room with Bath,Private room,204.0,3.0,1.0,,2,Charlotte Amalie +475,"New, spacious 1BD in Williamsburg",Entire home/apt,974.0,7.0,4.0,No smoking & No visitors,6,Ashland +476,Family House 7 Minutes To Manhattan,Entire home/apt,427.0,2.0,1.0,No visitors,4,Daytona Beach +477,18th Floor Bright Bedroom with Private Bathroom,Private room,874.0,8.0,3.0,No children under 10 & No parties,1,Bozeman +478,Quaint Studio in FiDi by Sonder,Entire home/apt,966.0,29.0,4.0,,5,San Diego +479,Cozy Garden Apartment,Entire home/apt,811.0,2.0,5.0,,6,Petersburg +480,Stay in Solar Powered Apartment in NYC!!!,Entire home/apt,202.0,2.0,5.0,,3,San Antonio +481,Private Loft Bedroom in Bushwick,Private room,727.0,5.0,1.0,No pets & No children under 10,2,Rapid City +482,"Classy neighborhood, close to everything.",Entire home/apt,82.0,14.0,4.0,No visitors & No pets,2,Cheyenne +483,"Private Floor, 1BR 1BTH, PR Entry",Entire home/apt,55.0,4.0,4.0,No smoking & No visitors,3,Binghamton +484,Spacious and clean 1 bedroom - Brooklyn,Entire home/apt,287.0,3.0,1.0,No children under 10 & No visitors,3,Oklahoma City +485,Quiet 2 Bedrm w 3 Beds-ProspectPark,Entire home/apt,527.0,4.0,4.0,,5,Charlotte +486,Private studio 79REVIEWS-CHECK PROFILEManhattan,Entire home/apt,940.0,2.0,3.0,No smoking,4,Grand Junction +487,Thee Bohemian BNB Astoria,Private room,987.0,1.0,4.0,No visitors & No children under 10,2,Des Moines +488,Cozy Bedroom in best area of FiDi,Private room,290.0,5.0,5.0,No smoking & No pets,1,Baltimore +489,West Village apt - 2 Bedroom,Entire home/apt,843.0,5.0,5.0,No pets & No smoking & No children under 10,3,Mosinee +490,Charming & Cozy midtown loft any WEEK ENDS !!!,Entire home/apt,950.0,81.0,1.0,No parties & No visitors,2,Moline +491,Entire One bedroom Apartment in Midtown Manhattan,Entire home/apt,402.0,5.0,1.0,No children under 10,2,Helena +492,"TRAIN NEAR, 10JFK, 30LGA CuteBedr in3Bed,Manhattan",Private room,143.0,1.0,1.0,No children under 10 & No visitors,2,Decatur +493,Light-Filled Williamsburg Loft,Private room,1079.0,4.0,4.0,No visitors,1,Dodge City +494,Steps away from the Heart of the Theater District!,Private room,389.0,1.0,5.0,No children under 10,2,Las Vegas +495,"huge, clean and great loft space",Private room,261.0,2.0,3.0,No children under 10,2,Lynchburg +496,"Generous, Light-Filled Room in Brooklyn Townhouse",Private room,482.0,9.0,3.0,No children under 10,1,Hartford +497,Private sunny room with private bathroom&entrance,Private room,119.0,5.0,1.0,,1,Myrtle Beach +498,Private Apartment in the Heart of East Village,Entire home/apt,1129.0,30.0,5.0,No children under 10 & No smoking & No pets,2,Fort Smith +499,Convenient New Apt.- Bargain Price,Private room,603.0,4.0,5.0,,1,Burbank +500,Bright & Sunny 2-Bedroom in Hamilton Heights,Entire home/apt,995.0,4.0,5.0,No visitors & No pets & No smoking,4,Lawton +501,Modern 1 Bedroom Luxury Apartment in Dumbo,Entire home/apt,449.0,4.0,4.0,No pets,3,Harrisburg +502,Spacious and Modern 2 Bedroom Apartment,Entire home/apt,268.0,2.0,5.0,No children under 10 & No pets,3,Ogden +503,Gorgeous 2bedroom in the heart of Williamsburg!,Entire home/apt,485.0,3.0,2.0,No children under 10 & No smoking & No visitors,3,Sitka +504,Lux 2Bed/2.5Bath Central Park Views,Entire home/apt,1004.0,30.0,5.0,No pets & No visitors,7,St. Louis +505,Private Times Square Room with Pool/Gym,Private room,747.0,3.0,5.0,,1,North Platte +506,"Great Studio Apartment, 15-20mins from Downtown",Entire home/apt,595.0,3.0,3.0,No parties,5,Petersburg +507,Perfect Vacation Rental for Family,Private room,1009.0,1.0,2.0,No children under 10 & No visitors,1,Eugene +508,Beautiful two bedroom apt in Crown Heights/Bedsty,Entire home/apt,748.0,2.0,5.0,No children under 10,3,Everett +509,Ladies Bedroom Bed 2,Shared room,1159.0,1.0,3.0,No children under 10 & No parties & No pets,1,Florence +510,"HUGE Art-Loft Warehouse in Bushwick, Brooklyn",Entire home/apt,302.0,2.0,4.0,No visitors & No smoking & No parties,3,Cheyenne +511,400 Sq Ft 1 BR - East Village - Prime Location,Entire home/apt,918.0,8.0,4.0,No parties & No visitors,3,Sioux City +512,Charming Fort Greene Apartment,Entire home/apt,722.0,2.0,5.0,No pets,7,St. George +513,"Williamsburg, Private Bedroom, 2 blocks from L",Private room,804.0,3.0,5.0,No children under 10 & No parties,2,Dodge City +514,Private rooms And Matchless Location,Private room,1075.0,2.0,2.0,No pets & No parties,2,Rockford +515,"Cozy, Brooklyn Beauty. Great for a nice holiday!",Entire home/apt,609.0,2.0,3.0,No children under 10,5,Sanford +516,UES Oasis,Entire home/apt,132.0,5.0,5.0,No parties & No smoking & No pets,2,Hancock +517,Sunny Bedroom In The Heart of Bushwick,Private room,893.0,3.0,1.0,No pets & No parties,2,Niagara Falls +518,Comfortable and spacious bedroom in Brooklyn,Private room,446.0,3.0,3.0,,1,South Bend +519,Amazing Views 3BR 2BA Bright and Spacious,Entire home/apt,832.0,2.0,2.0,No smoking,7,Allentown +520,Brand New Cozy Woodside Studio- Close to NYC,Entire home/apt,781.0,1.0,2.0,,6,North Bend +521,Apt with Modern Lights Available,Private room,400.0,3.0,2.0,,2,Lexington +522,Loft Studio Midtown Lux Doorman,Entire home/apt,93.0,3.0,3.0,No pets & No parties,2,Bangor +523,CHARMING QUIET STUDIO RIGHT OFF CENTRAL PARK WEST,Entire home/apt,576.0,30.0,4.0,No smoking & No children under 10 & No visitors,3,Grand Forks +524,Cozy Bedroom in the heart of Williamsburg,Private room,1153.0,4.0,3.0,No smoking,2,Midland +525,Beautiful place,Entire home/apt,1181.0,1.0,2.0,No pets,2,Asheville +526,"Private! entire studio, private bath, own entrance",Entire home/apt,886.0,1.0,4.0,,5,South Bend +527,"Cozy bdrm. Astoria, Queens. 10 min to Manhattan.",Private room,1177.0,2.0,3.0,No parties & No pets,1,Louisville +528,INCREDIBLE TOWNHOUSE 4 STORIES 5 BEDROOMS 3 BATH,Entire home/apt,338.0,2.0,2.0,No children under 10,3,San Angelo +529,"Ping Pong Paradise in Brooklyn, Close to metro!!!",Entire home/apt,506.0,2.0,4.0,No pets,4,Hobbs +530,TOWNHOUSE CHARME IN CITY~EAST 59th STUDIO,Entire home/apt,969.0,30.0,1.0,No smoking & No parties,9,Dillingham +531,Stylish shared room for a guy near Central Park,Shared room,996.0,30.0,5.0,,1,Williston +532,Great Room in Sunny Apt in Brooklyn,Private room,710.0,2.0,3.0,No parties & No pets,2,Concord +533,Lovely room In Williamsburg,Private room,335.0,14.0,3.0,No parties & No visitors,1,Birmingham +534,Dope Yurt in Brooklyn,Private room,236.0,1.0,5.0,No pets,1,Hattiesburg +535,Midtown Launching Pad,Entire home/apt,805.0,1.0,3.0,No visitors,8,Brainerd +536,private modern room (long term 1 month or more),Private room,486.0,2.0,2.0,No parties,1,Stockton +537,Subway accessible apartment in Brooklyn!,Private room,915.0,5.0,1.0,No children under 10 & No pets,2,Hyannis +538,Cozy Room in East Harlem,Private room,779.0,3.0,3.0,No visitors,2,Phoenix +539,Huge Light Filled 1BDR Loft - Modern + Minimalist,Entire home/apt,443.0,4.0,3.0,No smoking & No children under 10,2,Peoria +540,The Bridge Complex,Entire home/apt,212.0,2.0,5.0,,3,Indianapolis +541,MANHATTAN MODERN NEAR CENTRAL PARK!,Private room,305.0,3.0,3.0,No children under 10,2,Little Rock +542,INCREDIBLE TOWNHOUSE 4 STORIES 5 BEDROOMS 3 BATH,Entire home/apt,338.0,2.0,2.0,No children under 10 & No parties,3,Erie +543,Condo Apartment with laundry in unit,Entire home/apt,55.0,30.0,5.0,No pets & No children under 10 & No smoking,3,Fort Leonard Wood +544,"Gramercy Park restful, cozy, sun-filled home",Entire home/apt,968.0,2.0,2.0,No parties,8,Amarillo +545,"Apartment for One Person Midtown, Doorman Building",Entire home/apt,453.0,10.0,2.0,No children under 10 & No visitors & No smoking,3,Sarasota +546,Spacious Deco Apt.- Columbus Circle,Private room,167.0,6.0,4.0,No parties,1,San Jose +547,Greenwich Village Apartment,Entire home/apt,781.0,3.0,4.0,No parties & No pets,6,Myrtle Beach +548,❤ of Manhattan | Fantastic 1 Bedroom,Entire home/apt,471.0,30.0,4.0,No pets,3,Lansing +549,Modern & Cozy 2 BR Private Apartment in Brooklyn,Entire home/apt,843.0,2645.0,3.0,No children under 10,7,Boise +550,Habitación privada en Brooklyn.,Private room,239.0,1.0,5.0,No children under 10 & No parties & No visitors,1,College Station +551,"Small, Cozy 1BD Apartment",Entire home/apt,712.0,3.0,3.0,No parties & No smoking & No children under 10,7,Wichita Falls +552,Private room in the heart of NYC. Room 2 of 3,Private room,499.0,1.0,3.0,No children under 10,2,Atlantic City +553,"Premier room in Downtown NY, Two Bridges,Chinatown",Private room,204.0,1.0,4.0,No visitors & No pets & No children under 10,1,Redding +554,Newly Renovated Greenpoint Abode,Entire home/apt,981.0,2.0,3.0,No parties & No children under 10 & No smoking,7,Chicago +555,Charming Chelsea Studio,Entire home/apt,550.0,3.0,2.0,No visitors & No parties,3,Grand Forks +556,Large room w/ balcony - Williamsburg Warehouse,Private room,591.0,4.0,4.0,No children under 10 & No visitors & No pets,1,Muskegon +557,Private Room in Prime Brooklyn Spot,Private room,741.0,1.0,2.0,,1,Flint +558,Explore NYC in Stylish Contemporary Studio,Entire home/apt,808.0,1.0,3.0,No pets,4,Sitka +559,2 BDRM Presidential Reserve at Wyndham Midtown 45,Private room,472.0,3.0,4.0,No children under 10,1,Florence +560,Charming 3bed/2ba Downtown/LES,Private room,832.0,3.0,5.0,No children under 10 & No smoking & No parties,1,San Juan +561,Bedroom (KING) & private bath - Brand New & Modern,Private room,60.0,1.0,1.0,No smoking & No children under 10 & No pets,1,Indianapolis +562,"Great Room! Great Price! +Can wait to see you !",Private room,1152.0,2.0,5.0,No children under 10 & No parties,2,Billings +563,Spacious shared room in modern Bed-Stuy 2,Shared room,718.0,30.0,2.0,No pets & No children under 10 & No visitors,1,Dillingham +564,Magnificent Penthouse Suite in Midtown Manhattan,Private room,367.0,2.0,5.0,No visitors,1,Minot +565,WILLIAMSBURG BEDROOM,Private room,397.0,1.0,3.0,No visitors & No children under 10,1,Minot +566,1 bedroom apt with garden in Red Hook Brooklyn,Entire home/apt,117.0,2.0,2.0,No pets & No smoking,2,Kearney +567,studio for your own,Entire home/apt,773.0,3.0,4.0,No visitors,4,Belleville +568,Elegant Studio Apt in Prospect Heights,Entire home/apt,640.0,2.0,5.0,No parties,5,Charlotte +569,12 East 86th St full furnished,Entire home/apt,451.0,30.0,5.0,No parties,2,Richmond +570,Gorgeous queen size oasis,Private room,476.0,,3.0,No parties & No children under 10 & No pets,2,Raleigh +571,Huge Private Room Near Prospect Park,Private room,73.0,7.0,2.0,No smoking & No visitors,2,Marquette +572,Charming large 2 bedroom + 2 bath Ditmas park apt,Entire home/apt,226.0,20.0,4.0,No children under 10,3,West Palm Beach +573,Stunning Studio in Midtown BEST LOCATION,Entire home/apt,487.0,2.0,5.0,No smoking,3,Cody +574,Douglaston Apartment Room A,Private room,1196.0,1.0,5.0,No children under 10,2,Kearney +575,Loft Space in South Williamsburg!,Private room,560.0,1.0,4.0,No children under 10 & No smoking,1,Roanoke +576,Amazing 1100 Sqft 2 Bd Penthouse in Williamsburg,Entire home/apt,1108.0,3.0,4.0,No smoking & No visitors & No pets,7,Fort Smith +577,"Brand New Modern Luxury Apt, Room A",Private room,480.0,1.0,1.0,No visitors,1,Saginaw +578,Private room in E. Williamsburg! Budget friendly!,Private room,283.0,3.0,5.0,No pets,1,Twin Falls +579,It's Always Sunny in Bed-Stuy!,Private room,89.0,1.0,2.0,,1,Santa Ana +580,NYC Firehouse-Greenpoint BRKLYN,Entire home/apt,109.0,3.0,5.0,No smoking & No parties,3,Chicago +581,Kan house,Private room,749.0,1.0,4.0,No pets,2,St. Louis +582,Ideal 3 Bedroom Apartment by Times Square,Entire home/apt,297.0,2.0,2.0,No children under 10,2,Buffalo +583,Grand Central/ United Nations! MASTER Bedroom,Private room,825.0,30.0,3.0,No smoking & No parties & No visitors,1,Petersburg +584,Cheery Chelsea Charmer... best location!,Entire home/apt,1145.0,3.0,4.0,No children under 10 & No visitors & No parties,10,Sanford +585,"Cozy 2BD, 20 mins to Times SQ",Private room,257.0,1.0,3.0,,1,Pullman +586,2 bedroom Kid Friendly Cobble Hill,Entire home/apt,129.0,3.0,1.0,No visitors & No smoking,3,Del Rio +587,NEW Bright upper east side 1 bedroom!,Entire home/apt,623.0,2.0,5.0,No parties & No pets & No children under 10,4,Monterey +588,Spacious artsy apartment near Gramercy/Flatiron,Entire home/apt,430.0,5.0,5.0,No smoking,3,Everett +589,Spacious Townhome Apt in Brooklyn,Entire home/apt,86.0,4.0,1.0,No parties & No pets & No smoking,3,Allentown +590,Cozy bedroom apt near to LGA airport. Free Parking,Entire home/apt,925.0,2.0,1.0,No pets,3,Butte +591,UES studio walking distance to central park,Entire home/apt,997.0,7.0,4.0,No pets,6,Durango +592,Spacious 2 BDR APT BROOKLYN Sleeps 8!,Entire home/apt,1072.0,2.0,3.0,No visitors,5,Stockton +593,Perfect shared male room on Manhattan! II,Shared room,448.0,14.0,4.0,,1,Hayden +594,Comfy sofa close to Manhattan!,Shared room,274.0,1.0,5.0,No smoking & No visitors,1,Saipan +595,Prime East Village location w/backyard garden!,Entire home/apt,978.0,4.0,5.0,No pets & No smoking,7,Wilmington +596,Huge renovated 1 BR Apt in heart of East Village,Entire home/apt,280.0,1.0,4.0,,3,Lewisburg +597,Elegant Stuyvesant Heights Retreat,Entire home/apt,145.0,5.0,2.0,No children under 10,2,Santa Rosa +598,Cozy Pad in East Williamsburg,Private room,629.0,1.0,2.0,No pets & No children under 10,1,Montgomery +599,Spacious one bedroom in the heart of Inwood,Entire home/apt,188.0,2.0,4.0,No smoking & No children under 10 & No parties,3,Midland +600,"Whole Floor, 2 BR Apt. in Iconic Greenwich Village",Entire home/apt,239.0,2.0,4.0,No visitors & No smoking,3,Trenton +601,Swimming Pool/Gym/ Doorman 2 bed 2 bath W&D 5192,Entire home/apt,1184.0,30.0,3.0,No children under 10 & No parties,7,Florence +602,Peaceful Parkside Place,Entire home/apt,590.0,1.0,3.0,,2,Melbourne +603,Bright & Spacious 1br in the Heart of UWS,Entire home/apt,561.0,3.0,3.0,No parties & No visitors & No children under 10,3,Jacksonville +604,"Harlem ""Hostel"" for Single Travelers",Shared room,1199.0,2.0,4.0,No parties & No smoking,1,Syracuse +605,2bed Home on Quiet Block Right by The Action,Entire home/apt,689.0,2.0,4.0,No parties,3,Williston +606,Studio with own back yard and new kitchen,Entire home/apt,752.0,4.0,1.0,No visitors,6,Elmira +607,"Nice space in Norwood, NYC",Private room,772.0,1.0,4.0,,1,Johnstown +608,Best Location on the UWS!!,Private room,692.0,2.0,3.0,No parties,1,New Orleans +609,温馨旅店(1),Private room,818.0,1.0,4.0,No pets,2,Mason City +610,Loft w/Private Rooftop. Spectacular NYC Views,Entire home/apt,939.0,2.0,5.0,No smoking & No parties,5,Saginaw +611,Private 2 Bedrooms - Subway Across Street,Entire home/apt,1180.0,3.0,4.0,No visitors,9,International Falls +612,Save$! Sleep Well! ❤NYC! Female Only!!!,Shared room,143.0,1.0,3.0,No pets & No smoking,1,Santa Rosa +613,Two Bedrooms with Dedicated Bath,Private room,615.0,3.0,4.0,No visitors & No pets,2,Charlotte +614,★ Clean/Trendy/Sunny room ★ in the center of NYC,Private room,371.0,5.0,3.0,,2,Hilo +615,Perfect House for the Whole Family,Entire home/apt,877.0,3.0,1.0,No pets,8,Binghamton +616,Sweet two bedroom in Crown Heights Bk,Entire home/apt,271.0,1.0,4.0,,3,Missoula +617,Beautiful 1 bedroom in city center,Entire home/apt,1154.0,2.0,2.0,No parties & No smoking & No children under 10,3,Duluth +618,Doorman 1 bedroom Amazing Location 5151,Entire home/apt,920.0,30.0,2.0,No parties,9,Bishop +619,Flushing entire apartment in prime location,Entire home/apt,68.0,7.0,4.0,No smoking & No pets & No children under 10,3,Akron +620,"Convenient, Central, Comfortable",Entire home/apt,875.0,7.0,1.0,No pets & No smoking & No parties,3,Cody +621,Heart of Williamsburg,Private room,544.0,3.0,3.0,No visitors & No smoking & No pets,2,St. George +622,"Gorgeous, Luxurious, Modern Apt in Williamsburg!",Entire home/apt,425.0,2.0,4.0,No parties,4,Jackson +623,"Room for rent. Quiet, safe.",Private room,280.0,2.0,3.0,No pets & No parties & No smoking,1,Bellingham +624,Affordable bedroom in the East Village!,Private room,184.0,2.0,5.0,No parties,2,Milwaukee +625,NEW Bright Modern Apt in the heart of DOWNTOWN NYC,Entire home/apt,1089.0,2.0,3.0,,4,Kodiak +626,"Huge 2 Bedroom, Great Location, Express Metro",Entire home/apt,745.0,4.0,5.0,No smoking & No children under 10 & No pets,4,Nashville +627,Home away from home,Entire home/apt,203.0,1.0,4.0,No smoking & No children under 10,2,Oakland +628,Sonder | 11th Ave | Sunny 1BR + Gym,Entire home/apt,650.0,29.0,5.0,No visitors & No pets & No children under 10,4,Burlington +629,Nice room near Columbia University,Private room,145.0,1.0,1.0,,1,Norfolk +630,Hip Neighborhood/Private Bedroom in Modern Duplex,Private room,980.0,4.0,2.0,No parties,2,Boston +631,Welcome to YURT -- beautiful room in East Village,Private room,1032.0,1.0,5.0,No children under 10 & No pets & No visitors,1,Beaumont +632,"Private bedroom, Queenbed on suite bath and closet",Private room,832.0,6.0,5.0,,1,College Station +633,Small Room,Private room,488.0,1.0,4.0,No smoking,2,International Falls +634,Luxury apartment near Williamsburg & Manhattan,Entire home/apt,207.0,30.0,1.0,No pets,2,Valdosta +635,Clean & quiet home on quiet block,Entire home/apt,1143.0,2.0,5.0,No visitors & No parties & No children under 10,8,Burbank +636,"Bedroom in a cosy/ bright apartment, Williamsburg",Private room,266.0,1.0,4.0,No smoking,2,Bishop +637,Spacious Private Room in the heart of Harlem,Private room,408.0,4.0,3.0,No pets,1,Liberal +638,One room available in apartment,Private room,212.0,1.0,3.0,,1,Panama City +639,Sean,Entire home/apt,631.0,7.0,4.0,No smoking & No children under 10 & No parties,3,Pueblo +640,Clean and Cozy Brooklyn Room in Artsy Apartment,Private room,514.0,1.0,3.0,No smoking & No children under 10 & No visitors,2,Hayden +641,AWESOME MODERN ROOM IN CHARMING AREA+ SWEET ROOF C,Private room,1029.0,30.0,5.0,No parties,2,Raleigh +642,"Welcoming, Clean, Cheap on St Marks",Private room,619.0,1.0,3.0,No smoking,1,Laredo +643,Near all shopping & transportation,Private room,854.0,2.0,2.0,No pets & No children under 10,2,Tampa +644,Big Private Room in Perfect Williamsburg Location,Private room,946.0,2.0,2.0,No parties,1,Charlottesville +645,private room in LES,Private room,184.0,1.0,4.0,No pets,2,Huntsville +646,Entire beautiful apartment-Astoria,Entire home/apt,678.0,3.0,1.0,,5,Billings +647,Newly Designed / Furnished Room - PRIME Location!,Private room,349.0,30.0,4.0,No parties,2,Rapid City +648,hip cool House,Private room,966.0,1.0,2.0,,2,Helena +649,Full mattress in the living room,Shared room,1198.0,1.0,2.0,No parties,1,Bend +650,GREAT LOCATION in NY! PRIVATE STUDIO with PARKING!,Entire home/apt,992.0,2.0,5.0,No pets & No children under 10,3,Bakersfield +651,Harlem Humble Abode - 1 bedroom - Cute and Quaint,Entire home/apt,409.0,5.0,5.0,No pets,3,Amarillo +652,One bedroom apartment in NoLita,Entire home/apt,172.0,1.0,4.0,No children under 10 & No pets,2,Traverse City +653,Luxury drmn Bldg + Empire State Views & Roof Top!,Entire home/apt,765.0,365.0,5.0,No visitors,4,Alamosa +654,NYC cozy apartment close to staten island ferry,Entire home/apt,365.0,1.0,4.0,No parties & No visitors,3,Kahului +655,Harlem Heights Suite,Private room,250.0,2.0,2.0,No visitors,2,Raleigh +656,15 minutes Barclay Center 25 Manhattan,Private room,76.0,5.0,2.0,No pets,1,Traverse City +657,Comfortable one bedroom with patio,Entire home/apt,73.0,2.0,4.0,No children under 10,3,Tallahassee +658,"BEAUTIFUL ONE BEDROOM, PRIVATE BACKYARD. Manhattan",Entire home/apt,179.0,2.0,5.0,No pets,2,Duluth +659,Sunlit Room with Kitchen near Manhattan and LGA,Private room,220.0,1.0,3.0,No visitors & No parties & No smoking,1,Lake Charles +660,** COZY & SPACIOUS 1/1 - HARLEM,Entire home/apt,286.0,2.0,4.0,No pets,3,Bishop +661,Chill in Alphabet City,Private room,671.0,3.0,4.0,No pets & No children under 10,1,Pocatello +662,Princess Palace Purple,Private room,636.0,2.0,2.0,No children under 10,2,Kalamazoo +663,Luxury in Best Location,Entire home/apt,70.0,198.0,5.0,No children under 10 & No visitors,2,Durango +664,Comfy one bedroom with backyard,Entire home/apt,252.0,3.0,5.0,,2,Sioux City +665,Luminous Modern Apt Share for Young Professionals,Private room,1170.0,30.0,4.0,No children under 10,2,North Platte +666,Great studio on Restaurant Row in Harlem,Entire home/apt,315.0,6.0,3.0,No pets,2,Stillwater +667,Designer Loft,Entire home/apt,379.0,1.0,2.0,,3,Petersburg +668,Two amazing bedrooms in the heart of East Village,Private room,798.0,1.0,4.0,No pets,1,Bismarck +669,Cozy and sunny Studio,Entire home/apt,154.0,5.0,2.0,No visitors & No children under 10 & No pets,2,Plattsburgh +670,Calm&Cozy Bedroom - NoLIta/SoHo (private bathroom),Private room,1023.0,3.0,5.0,No children under 10,2,Sheridan +671,Design Hideaway in a Classic Brooklyn Townhouse,Entire home/apt,216.0,4.0,3.0,No smoking,3,Lynchburg +672,Comfortable Studio Apt in Heart of East Village,Entire home/apt,858.0,1.0,2.0,No pets,6,Springfield +673,SUPER HUGE ROOM IN GREENPOINT BK,Private room,397.0,7.0,1.0,No pets & No smoking,1,Kodiak +674,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,Entire home/apt,1058.0,30.0,2.0,No visitors & No smoking,7,Boston +675,The Fountain House,Entire home/apt,178.0,2.0,5.0,No parties & No children under 10,3,Medford +676,Artist Loft East Williamsburg,Private room,979.0,1.0,3.0,No children under 10 & No visitors & No pets,1,Baton Rouge +677,Bright room in 2BR apt in Nolita!,Private room,1024.0,2.0,4.0,No children under 10,2,Houston +678,Cozy NYC apartment,Private room,1087.0,5.0,4.0,No pets,2,Key West +679,MIDTOWN MANHATTAN-WALKING DISTANCE TO EMPIRE STATE,Private room,72.0,2.0,1.0,No pets & No parties,2,Savannah +680,Private bedroom hideaway in East Village gem,Private room,118.0,2.0,2.0,No pets & No smoking,2,Gainesville +681,Private Bedroom in Beautiful Astoria Apt,Private room,732.0,2.0,3.0,No parties,2,Bloomington +682,Endless Elegance in Brooklyn,Entire home/apt,333.0,7.0,4.0,No parties & No smoking & No pets,2,Bethel +683,Quiet and beautiful apartment near central park,Entire home/apt,930.0,7.0,2.0,No children under 10,6,Valparaiso +684,4 Bed 3.5 Bath in Manhattan,Entire home/apt,889.0,30.0,4.0,No pets,3,Baton Rouge +685,The Otheroom Bar/Event/Filming Space -read details,Entire home/apt,461.0,1.0,4.0,No parties & No smoking,3,Bethel +686,Great one bedroom studio,Entire home/apt,520.0,30.0,3.0,,5,Laramie +687,Luxury and Contemporary,Entire home/apt,483.0,5.0,5.0,,3,Bangor +688,"One private guest room in a 3 bedroom +Condo.",Private room,1006.0,5.0,4.0,,1,Mosinee +689,Studio apartment in NYC,Entire home/apt,1048.0,3.0,1.0,No smoking & No children under 10,2,Indianapolis +690,Large apartment in Upper East with doorman!,Private room,284.0,4.0,1.0,No children under 10,2,Montgomery +691,Brooklyn Gem,Private room,624.0,2.0,3.0,,2,Yakima +692,Alpha-Bet City entire floor large cool 2br -L.E.S,Entire home/apt,574.0,2.0,2.0,No visitors & No parties,4,Savannah +693,Large Two Story Loft in the Heart of West Village,Entire home/apt,1127.0,3.0,4.0,No pets & No children under 10,5,Newark +694,Comfortable studio in Midtown,Entire home/apt,718.0,5.0,5.0,No smoking & No visitors,7,Ketchikan +695,Place for sleeping and exploring NYC,Private room,1114.0,1.0,2.0,No pets,1,Aguadilla +696,Beautiful East Village Apartment,Entire home/apt,288.0,2.0,3.0,No parties,3,Anchorage +697,A Penthouse in Manhattan,Entire home/apt,982.0,2.0,4.0,No pets & No visitors & No parties,7,Pasco +698,Large 1 Bedroom Artist Loft in the Lower East Side,Entire home/apt,895.0,5.0,5.0,No parties,7,Nome +699,Lower East Side Oasis (private room),Private room,487.0,2.0,2.0,No smoking & No children under 10,2,Valdosta +700,Lower East Side Oasis (private room),Private room,487.0,2.0,2.0,No children under 10 & No visitors,2,Phoenix +701,(2)Comfy Home Away From Home/Multiple Rooms!!!,Private room,247.0,1.0,3.0,No parties,2,Hyannis +702,HUGE CHEERFUL PRIVATE STUDIO SUITE WITH BACKYARD,Entire home/apt,114.0,2.0,3.0,No children under 10,2,Colorado Springs +703,Newly Renovated Cozy Studio on Park Avenue #6130,Entire home/apt,825.0,30.0,2.0,No visitors & No parties,5,Devils Lake +704,"1BR in Newly Renovated Apartment - Rm A, Bushwick!",Private room,548.0,1.0,5.0,No smoking & No children under 10,2,Aberdeen +705,Modern high-end studio!,Entire home/apt,541.0,2.0,3.0,No parties,3,Jacksonville +706,Beautiful East Harlem Apartment,Private room,919.0,30.0,2.0,,2,Hays +707,Cute bedroom with private entrance from hallway,Private room,427.0,20.0,4.0,No children under 10 & No parties & No visitors,1,Santa Fe +708,AWESOME CHARMING ROOM C WITH ROOF DECK ACCESS :),Private room,553.0,30.0,5.0,No visitors & No pets & No parties,1,Valdosta +709,Williamsburg high ceiling loft,Entire home/apt,395.0,3.0,5.0,No pets & No visitors,2,Marquette +710,Sunny Room in Brooklyn,Private room,698.0,3.0,3.0,No children under 10 & No parties,1,Minot +711,Private Bedroom and Bath in Spacious Duplex,Private room,930.0,4.0,4.0,No parties,1,Greensboro +712,Ridgewood/Bushwick ~ Bungalow,Entire home/apt,943.0,4.0,3.0,No visitors & No parties & No smoking,7,Harrisburg +713,Quiet East Village Studio next to snug coffee shop,Entire home/apt,708.0,10.0,3.0,No visitors & No children under 10 & No smoking,6,White Plains +714,Private Bedroom in a Quintessential UWS Apartment,Private room,797.0,2.0,4.0,,2,Valdosta +715,Large room in Astoria home,Private room,734.0,2.0,2.0,,1,Grand Island +716,Awesome clean & cozy space in Sunset Park!,Private room,297.0,2.0,3.0,No pets & No parties & No visitors,2,Bend +717,Sunny Art + Plant Brownstone Apartment,Entire home/apt,473.0,2.0,1.0,No visitors,4,Moline +718,Large Room with Pull-out Sofa and Balcony,Private room,443.0,1.0,3.0,No parties & No pets & No children under 10,1,Pellston +719,Room steps away from TIME SQUARE,Private room,619.0,3.0,2.0,,1,Las Vegas +720,"Huge, One of A Kind, Artsy Loft in Greenpoint",Entire home/apt,453.0,2.0,1.0,No visitors & No pets,2,Binghamton +721,Gorgeous Spacious Room in Clinton Hill,Private room,55.0,2.0,4.0,No visitors & No parties,1,Lubbock +722,Meatpacking District Large Loft,Entire home/apt,604.0,4.0,1.0,,6,Houston +723,Charming Luxury Apartment in Central Manhattan,Entire home/apt,,3.0,4.0,No children under 10 & No parties,2,Prescott +724,Luxury 4 BD NYC Times Sq Apartment,Entire home/apt,694.0,1.0,2.0,No children under 10,6,Lihue +725,Unique Penthouse,Entire home/apt,713.0,1.0,3.0,No smoking & No pets & No children under 10,4,Great Falls +726,Private Suite,Private room,635.0,5.0,3.0,No pets,2,Idaho Falls +727,Cozy 1 Bedroom on the Upper West Side,Private room,1054.0,2.0,3.0,No smoking & No visitors,1,Dodge City +728,Beautiful private room in Bedstuy,Private room,879.0,4.0,4.0,No pets & No children under 10 & No visitors,1,Florence +729,Renovated Harlem Brownstone Apartment,Entire home/apt,412.0,4.0,3.0,,2,Montgomery +730,Spacious Room in Large 2 Bedroom Prewar Apartment,Private room,585.0,1.0,4.0,No parties & No visitors,2,San Diego +731,Beautiful One Bedroom in Astoria,Private room,696.0,3.0,2.0,,1,Jacksonville +732,Large NYC Apartment!,Private room,185.0,3.0,5.0,No parties,2,Eugene +733,Romantic Top Floor Brownstone in Crown Heights,Entire home/apt,1077.0,1.0,4.0,No pets & No smoking,6,Detroit +734,Clean Private Room in East Village,Private room,454.0,5.0,3.0,No children under 10 & No visitors,2,Eagle +735,Cozy Room in Brownstone,Private room,1029.0,3.0,3.0,No visitors,1,Montrose +736,Cozy home in friendly & hip Bushwick near subway,Entire home/apt,374.0,2.0,4.0,No parties,3,College Station +737,FAB 1BD Sunnyside Gardens Apt with Patio,Entire home/apt,910.0,2.0,4.0,No visitors & No smoking & No pets,3,Branson +738,Cozy room in heart of Williamsburg,Private room,240.0,1.0,3.0,No visitors & No pets,2,Santa Rosa +739,Master bedroom. 20 min. train to Time Square!,Private room,1198.0,1.0,2.0,No children under 10 & No parties,2,Greer +740,"Bed Stuy beauty. Books, sunlight :)",Private room,757.0,1.0,3.0,,2,Manhattan +741,Study in 1885 Gothic Brownstone.,Private room,261.0,10.0,2.0,No children under 10,2,Rock Springs +742,Family & Friends in New York City,Entire home/apt,1181.0,3.0,2.0,,10,Tucson +743,Luxury East Village Penthouse With Private Deck,Entire home/apt,697.0,2.0,3.0,No visitors,6,Pensacola +744,New York Style one bed,Entire home/apt,890.0,31.0,4.0,No children under 10,4,Raleigh +745,Spacious and Sunny Duplex with Deck,Entire home/apt,469.0,3.0,2.0,,3,Columbia +746,Free Cleaning & WiFi-Near Train + Bars & Nightlife,Private room,237.0,30.0,5.0,No parties,2,Sacramento +747,Spacious Room with Private a Patio!,Private room,605.0,2.0,1.0,No parties,2,Alamosa +748,Perfect Greenpoint Loft,Private room,1160.0,6.0,2.0,No children under 10 & No pets,2,Adak Island +749,Luxurious Williamsburg Loft with Private Patio,Entire home/apt,950.0,5.0,5.0,No pets & No visitors & No children under 10,2,Stockton +750,Upper West Side Quiet and Private Studio,Entire home/apt,642.0,7.0,4.0,No pets,3,Sun Valley +751,Shared space w/privacy near NY Botanic Garden,Shared room,154.0,2.0,5.0,No visitors & No pets & No children under 10,1,Providence +752,Spacious Studio - Midtown East,Entire home/apt,467.0,2.0,1.0,No visitors & No pets,4,White Plains +753,EMPIRE STATE BUILDING APARTMENT,Entire home/apt,662.0,7.0,5.0,No children under 10,2,Newport News +754,Cozy Room #2 in Brooklyn Home 15 Min from JFK,Private room,273.0,1.0,5.0,No children under 10 & No visitors & No pets,2,Lihue +755,Awesome spot in Bushwick,Private room,944.0,2.0,2.0,No smoking & No children under 10,2,Palm Springs +756,one room bushwick,Private room,705.0,1.0,1.0,No smoking,2,Manchester +757,Huge room in East Williamsburg,Private room,85.0,1.0,3.0,No parties,1,Casper +758,Beautiful 3 bedroom apartment in East Williamsburg,Entire home/apt,814.0,2.0,3.0,No pets & No children under 10,5,Gulfport +759,Williamsburg Hideaway,Entire home/apt,785.0,1.0,2.0,No pets & No visitors & No smoking,3,Iron Mountain +760,1BD SAFE & AFFORDABLE WITH TV FULLY RENOVATED,Private room,738.0,2.0,5.0,No visitors & No parties,2,Salisbury +761,UWS Cozy room near Columbia UNIVERSITY***,Private room,266.0,1.0,4.0,,2,Alpena +762,Gorgeous 1 Bedroom in Bed-Stuy,Entire home/apt,566.0,3.0,2.0,No visitors,2,Waterloo +763,"Prospect Heights / Brooklyn Botanical Garden $ Prospect Park West +#kuetheresidence",Entire home/apt,78.0,3.0,2.0,,2,Champaign +764,Electric NYC + Luxury Room = Best vacation ever!,Private room,182.0,3.0,4.0,No pets & No smoking,2,Birmingham +765,Large comfortable room near Penn Station,Private room,189.0,1.0,4.0,No visitors & No children under 10,2,Iron Mountain +766,Great room in Greenwich Village!,Private room,133.0,1.0,4.0,No visitors,1,Fort Myers +767,Bronx Apartment College Ave,Private room,1120.0,1.0,5.0,No smoking,2,Champaign +768,Verona TwentyOne - Kendal Garden,Entire home/apt,350.0,2.0,2.0,No pets & No children under 10,3,Wichita +769,Eclectic Space for Chill and Creative Energies,Private room,338.0,1.0,2.0,,2,Worcester +770,1 Bdrm 1.5 Bath Midtown Condo,Entire home/apt,195.0,20.0,3.0,No parties,3,Birmingham +771,"""Oasis on The Park""",Private room,1068.0,1.0,3.0,No smoking & No parties & No visitors,1,Gainesville +772,Espaço acolhedor e limpo próximo a Manhattan!,Private room,602.0,3.0,2.0,,1,Memphis +773,Sonder | 11th Ave | Modern 1BR + Gym,Entire home/apt,359.0,29.0,4.0,No visitors & No parties,3,Kodiak +774,"Cozy, Brooklyn Beauty. Great for a nice holiday!",Entire home/apt,609.0,2.0,3.0,No visitors,3,Mobile +775,Jade Bedroom,Private room,589.0,2.0,2.0,,1,San Juan +776,Lower East Side 1bedroom apt in NYC,Entire home/apt,861.0,3.0,3.0,No parties & No children under 10,6,Charlotte +777,Soaring Space in Laid-back Brooklyn,Private room,568.0,1.0,3.0,No pets,1,Escanaba +778,Spacious Luxury 2B2B in the Heart of Manhattan,Entire home/apt,465.0,,5.0,No parties & No smoking,3,Albuquerque +779,Nice Manhattan bedroom,Private room,1136.0,1.0,4.0,,2,Atlanta +780,NOHO 1BR 1BA,Entire home/apt,642.0,4.0,2.0,No visitors & No pets,5,Laramie +781,"Own Living room, Bathroom & W/D in the EV!",Private room,534.0,14.0,3.0,No children under 10 & No visitors,1,Hartford +782,Luxury 2 bdr/2 bath prime Williamburg,Entire home/apt,218.0,1.0,5.0,No children under 10 & No smoking & No pets,3,Charlotte +783,"Peaceful home, industrial neighborhood",Private room,1151.0,2.0,5.0,No pets & No smoking,2,Dillingham +784,The Heart of Williamsburg,Private room,938.0,3.0,4.0,No pets & No parties & No smoking,2,San Jose +785,"Basement suite in Bushwick, 4 minutes from the M!",Private room,193.0,3.0,3.0,No children under 10 & No parties,2,Fort Myers +786,Brownstone on a tree-lined street in NYC,Entire home/apt,314.0,5.0,5.0,,2,Charleston +787,E Williamsburg Apartment with Yard,Private room,459.0,2.0,5.0,No visitors & No parties,2,Iron Mountain +788,Oversized bedroom with living space,Private room,908.0,20.0,3.0,No visitors,1,Madison +789,Cozy 1 BR in hip Crown Heights,Private room,926.0,4.0,4.0,No pets & No visitors,1,Huntsville +790,Clinton Hill Apartment Single Bedroom ! Pratt ~~,Private room,826.0,2.0,1.0,No parties & No children under 10,2,Santa Fe +791,Studio Apartment Full Bath 15 Minutes From JFK,Entire home/apt,865.0,2.0,4.0,No children under 10 & No visitors,8,Greer +792,Mint 2 bedroom w rooftop terrace!,Entire home/apt,1145.0,1.0,5.0,,9,Tampa +793,Artsy Bushwick NY 2 Beds with laundry & balcony,Entire home/apt,1128.0,2.0,5.0,No pets,8,Rochester +794,Home sweet home in Harlem,Entire home/apt,654.0,3.0,5.0,No children under 10,3,Traverse City +795,Quiet Manhattan Apartment,Private room,1162.0,1.0,2.0,No pets,2,Gillette +796,"great spacious 2BR duplex apt in S. Harlem, NYC",Private room,263.0,2.0,5.0,No smoking & No pets,1,Jackson +797,Modern midtown studio,Shared room,472.0,4.0,5.0,No pets & No children under 10 & No visitors,1,Meridian +798,Cozy room 5 mn walk to central park,Private room,198.0,2.0,4.0,,2,Greenville +799,"Clean, Cozy, and Spacious Brooklyn Row House",Private room,107.0,2.0,4.0,No visitors,1,Lewisburg +800,Room in Greenpoint w/ private balcony and bathroom,Private room,470.0,1.0,4.0,No smoking,2,Cordova +801,Ladies Only: Spacious Shared Apt,Shared room,1024.0,1.0,3.0,,1,Monroe +802,Clean and Comfortable Room at Central Park North,Private room,628.0,3.0,3.0,No smoking,1,International Falls +803,***WELCOME TO MI CASA TU CASA NEAR JFK/LGA AIRPORT,Private room,178.0,2.0,5.0,No children under 10 & No parties & No visitors,1,Fresno +804,Studio with Private Terrace on Central Park West,Entire home/apt,453.0,30.0,2.0,No smoking & No visitors,4,Myrtle Beach +805,1 Bedroom available in a four bedroom house,Private room,1037.0,1.0,3.0,No pets,2,Hancock +806,"Sunny, Quiet, Green Studio near Central Park & MET",Entire home/apt,486.0,6.0,4.0,No smoking & No children under 10 & No pets,3,Lansing +807,Bedstuy/Bushwick - Fully Renovated One Bedroom,Entire home/apt,404.0,4.0,1.0,No parties & No smoking,4,Owensboro +808,"BEST LOCATION IN WILLIAMSBURG, CLOSE TO SUBWAY",Entire home/apt,646.0,2.0,5.0,No children under 10,6,Champaign +809,"Spacious, Bright Harlem Treetop Duplex",Entire home/apt,1007.0,3.0,3.0,No children under 10 & No visitors,10,Hibbing +810,1 BR in Great NYC Neighborhood,Entire home/apt,582.0,2.0,4.0,No smoking,4,Decatur +811,Loft -- Master Bedroom w/ Ensuite in Heart of LES,Private room,346.0,20.0,1.0,,2,Roswell +812,Clean Midtown Rooms in heart of NYC,Private room,1179.0,3.0,1.0,No smoking & No pets,1,Newburgh +813,TIGER’S REST,Entire home/apt,375.0,2.0,5.0,No pets & No children under 10,2,Toledo +814,Cozy Bedroom in Charming Astoria,Private room,1132.0,2.0,5.0,No parties & No pets & No smoking,1,Salina +815,Private room in Williamsburg close to subway,Private room,461.0,9.0,2.0,No children under 10,1,Lansing +816,Private Bedroom B in Bushwick Minutes from Subways,Private room,531.0,2.0,5.0,No smoking,1,Bemidji +817,Spacious 1 Bedroom in Historic Brownstone,Entire home/apt,670.0,7.0,3.0,No smoking,2,Baton Rouge +818,"Amazing apartment near museum, gardens & park!",Entire home/apt,74.0,17.0,5.0,No parties,3,Pensacola +819,"Large, Open, Airy Room, Close to Subway Harlem NYC",Private room,515.0,2.0,5.0,,1,Sioux City +820,OVERSIZED STUDIO IN EAST 37 TH~MURRAY HILL,Entire home/apt,418.0,30.0,4.0,No pets,2,Tulsa +821,"BEDSTUY BK - PAD +SHORT/ LONG TERM STAYS +NO EVENTS",Entire home/apt,1188.0,1.0,2.0,No smoking,10,Phoenix +822,habitacion con entrada privada a 20 min de manhat,Private room,292.0,2.0,,No pets,1,Billings +823,Large private bdrm in S. Park Slope,Private room,200.0,4.0,3.0,,2,Elmira +824,A Small Room With Futon Bed In A House In Brooklyn,Private room,562.0,1.0,5.0,No smoking & No children under 10 & No pets,2,Owensboro +825,"NYC Sanctuary, Skyline Views & Rooftop",Entire home/apt,954.0,3.0,5.0,No smoking,6,Jacksonville +826,"Comfortable, eclectic and private apartment",Entire home/apt,557.0,2.0,5.0,No smoking & No pets & No parties,2,North Platte +827,Suite Nest /free street parking+wifi,Entire home/apt,1171.0,30.0,2.0,No smoking & No parties,8,Gainesville +828,Williamsburg Home Away From Home!,Entire home/apt,164.0,4.0,3.0,No pets,3,Hilton Head +829,"BEAUTIFUL 2 BED APARTMENT IN WILLIAMSBURG, BROOLYN",Entire home/apt,1022.0,7.0,3.0,No children under 10 & No parties,7,Durango +830,Charming Bedroom in E. Williamsburg by Graham L,Private room,1107.0,28.0,5.0,No pets,1,Dodge City +831,"Brooklyn Charm, Close to Manhattan (30+ Days Only)",Entire home/apt,284.0,200.0,2.0,No pets,3,Eagle +832,Perfect room for female/steps to Ctral Park+subway,Private room,214.0,28.0,5.0,No smoking & No pets & No parties,2,Cedar City +833,2000sqf Modern Loft style Townhouse Williamsburg,Entire home/apt,767.0,,4.0,No visitors & No smoking,2,Rock Springs +834,Bedroom in Bushwick,Private room,240.0,7.0,4.0,No parties,1,Santa Rosa +835,Large quiet private studio in East Harlem,Entire home/apt,181.0,7.0,3.0,No children under 10,2,Seattle +836,"Renovated pre-war flat, terrace, & garden",Entire home/apt,299.0,2.0,4.0,No children under 10,2,Nome +837,West Village Walk-Up.,Entire home/apt,987.0,5.0,4.0,No children under 10 & No visitors,3,Valdosta +838,Entire 1BD Apt in Long Island City!,Entire home/apt,268.0,1.0,1.0,No children under 10,3,Wenatchee +839,Conveniently located private room in Brooklyn,Private room,172.0,1.0,1.0,No visitors,1,New Orleans +840,Upper Westside apt with huge private terrace.,Entire home/apt,788.0,5.0,2.0,No smoking & No parties & No pets,5,Traverse City +841,CHEERFUL RM IN BROOKLYN! EASY ACCESS TO TRAIN! R3,Private room,927.0,15.0,5.0,No pets,2,Alpena +842,New Unit w/ Private Gym in Bushwick (10% off!),Private room,185.0,1.0,3.0,No pets & No visitors,2,Rock Springs +843,Private natural light oasis with Super Host!!,Private room,323.0,1.0,5.0,No parties,2,Hartford +844,1200 SQFT Open Loft Williamsburg,Entire home/apt,55.0,31.0,2.0,No pets,3,Lewiston +845,Nolita 1br near Little Italy/SoHo,Entire home/apt,380.0,20.0,1.0,No visitors & No pets,2,Seattle +846,Descanza con plenitud,Private room,325.0,2.0,4.0,No children under 10,1,Bend +847,Cozy 1 bedroom in Heart of East Village,Private room,761.0,1.0,4.0,No children under 10 & No smoking,2,Monroe +848,Two real bedrooms near Central Park,Entire home/apt,731.0,1.0,3.0,No smoking & No parties & No pets,5,Las Vegas +849,"Beautiful & centrally located, big 1 bedroom apt.",Entire home/apt,376.0,2.0,2.0,,3,Minneapolis +850,SUBLET in the UWS,Entire home/apt,880.0,1.0,4.0,No parties & No pets,3,Bristol +851,private spacious LES bedroom,Private room,325.0,2.0,4.0,No parties & No pets,1,Seattle +852,Comfortable Room w/ 1 Full Bed (1FL),Private room,682.0,3.0,5.0,No smoking,2,Muskegon +853,Cozy room around Union Square,Private room,618.0,2.0,4.0,No children under 10 & No parties & No pets,1,Lewiston +854,Elegant 2 Bedroom with light & amenities!,Private room,781.0,2.0,1.0,No visitors,2,Christiansted +855,Quiet & Clean Retreat in the City,Entire home/apt,111.0,3.0,3.0,No children under 10 & No smoking,2,Shreveport +856,Just Right in Lovely Greenpoint,Private room,614.0,7.0,5.0,No smoking & No visitors,1,South Bend +857,Modern Sunlit Room w/ Balcony on Famous Street!,Private room,979.0,4.0,4.0,No smoking,2,Wrangell +858,Light-filled Room in Renovated Apt,Private room,310.0,2.0,2.0,No pets,2,Knoxville +859,Cozy apartment in Noho/ Soho,Private room,872.0,1.0,4.0,No visitors & No parties,2,Salt Lake City +860,Luxurious Studio High rise Condo Near Manhattan!,Entire home/apt,731.0,3.0,5.0,No pets & No parties,7,Fargo +861,Upper West Side 1 bedroom,Entire home/apt,859.0,1.0,3.0,No smoking,5,San Luis Obispo +862,Perfect Chanukah apartment for the whole crew!,Entire home/apt,451.0,11.0,3.0,No pets,3,Augusta +863,Large 2 Bdrm in prime UWS location,Entire home/apt,520.0,30.0,2.0,No parties,5,Sitka +864,"Sixth Ave Chelsea, 1bd Serviced Apartment",Entire home/apt,982.0,30.0,5.0,,6,Aspen +865,Uptown Manhattan bright and lovely room,Shared room,672.0,6.0,5.0,No smoking & No parties,1,Twin Falls +866,Lovely Apartment 1bd Clean & Quiet. You'll love it,Entire home/apt,496.0,30.0,1.0,No children under 10 & No visitors & No parties,4,Portsmouth +867,BRAND NEW LUXE 2BR/2 BA APARTMENT IN BUSHWICK,Entire home/apt,521.0,12.0,4.0,,5,Staunton +868,carriage house apartment,Entire home/apt,468.0,1.0,5.0,No visitors & No parties,4,Yuma +869,Apartment minutes from manhattan,Entire home/apt,295.0,2.0,2.0,No pets & No visitors,2,Abilene +870,Modern Luxury Loft 3bd Williamsburg,Entire home/apt,980.0,3.0,5.0,,8,Columbia +871,Clean and large bedroom in a private house,Private room,474.0,1.0,4.0,No smoking,1,Nashville +872,Safe and Sound Studio in the Big Apple,Entire home/apt,128.0,7.0,2.0,No parties,3,Brownsville +873,"Park, Subway & All Conveniences",Entire home/apt,754.0,2.0,2.0,No pets & No visitors,4,Honolulu +874,Bright & spacious east village apartment,Entire home/apt,1191.0,3.0,3.0,,4,Rapid City +875,Private Bedroom & Bathroom in Midtown Manhattan,Private room,53.0,2.0,4.0,No smoking,2,Aberdeen +876,Charming Room in Greenpoint,Private room,595.0,4.0,2.0,No parties,1,Alamosa +877,Private Bedroom in Williamsburg!,Private room,400.0,5.0,5.0,No pets,2,Wilmington +878,Big Bright Room ☼ Lower East Side,Private room,474.0,25.0,5.0,No children under 10 & No pets & No parties,1,Santa Maria +879,Gramercy One Bedroom w Two Beds,Entire home/apt,485.0,7.0,2.0,No visitors & No children under 10,4,Newark +880,Private 1BR with Private Bathroom feet from subway,Entire home/apt,668.0,1.0,4.0,No children under 10 & No visitors & No smoking,2,Abilene +881,Gorgeous Apartment in a Historic Brownstone,Entire home/apt,581.0,3.0,2.0,No children under 10 & No parties & No visitors,2,Nantucket +882,Charming 1BD Astoria Penthouse,Entire home/apt,87.0,2.0,5.0,,2,Saginaw +883,Beautiful and comfortable Upper East Side location,Entire home/apt,1012.0,3.0,5.0,No pets & No smoking,6,San Luis Obispo +884,Clean Loft Bed 17min from Manhattan,Private room,653.0,2.0,2.0,No children under 10,1,Tyler +885,Chic and spacious split-level,Entire home/apt,1133.0,3.0,5.0,,5,Ogdensburg +886,Elegance on West Side,Entire home/apt,1056.0,2.0,4.0,No parties & No smoking & No children under 10,10,Butte +887,Cozy minimalist room close to train (1),Private room,593.0,3.0,3.0,No parties,2,Cleveland +888,Private room in Manhattan NYC. Train a min away!,Private room,135.0,1.0,2.0,No parties,2,St. Petersburg +889,Cozy Apartment across Astoria Park,Entire home/apt,880.0,1.0,5.0,No children under 10 & No pets & No visitors,4,Everett +890,Wyndham Midtown 45 (1 Bedroom Presidential) 1A,Entire home/apt,103.0,3.0,5.0,No pets & No parties,3,College Station +891,Kid Friendly 2BDR in Greenwich Village w/ Balcony,Entire home/apt,580.0,4.0,1.0,No pets & No visitors,2,Ponce +892,Modern Apartment on the UES,Private room,702.0,1.0,2.0,No children under 10 & No smoking & No parties,2,Wichita Falls +893,Richmond Hill 3 Bedroom apartment in Private home!,Entire home/apt,565.0,1.0,5.0,No visitors,4,Cleveland +894,2-bedroom South Williamsburg apartment,Entire home/apt,745.0,4.0,5.0,No pets & No children under 10,6,Lafayette +895,"A+ Chelsea Location! MSG, Javits, Penn!",Entire home/apt,833.0,31.0,5.0,No children under 10 & No smoking & No pets,4,Yakima +896,West Village Amazing Living 2 Baths,Entire home/apt,641.0,1.0,2.0,No smoking,5,Saipan +897,"Beautiful Private Room near Highline, and Train",Private room,1044.0,30.0,2.0,No parties & No pets,2,Detroit +898,Modern loft in the best part of Bushwick.,Entire home/apt,1020.0,2.0,3.0,No smoking,2,Hyannis +899,BROOKLYN 1 BEDROOM,Entire home/apt,583.0,3.0,5.0,No visitors & No pets,4,Burbank +900,Large Secured Condominium Studio,Entire home/apt,976.0,1.0,4.0,No smoking & No children under 10,5,Savannah +901,2 Bed Private Entrance Williamsburg,Entire home/apt,289.0,1.0,1.0,No smoking & No parties,3,Twin Falls +902,"Prospect Park, Lefferts Garden Townhouse",Entire home/apt,1158.0,3.0,5.0,No smoking,11,Lansing +903,Modern Apartment in Williamsburg,Private room,174.0,2.0,3.0,,1,Augusta +904,Light Filled Studio,Private room,713.0,3.0,2.0,No visitors,2,International Falls +905,Charming 1BD- 10 min to Manhattan & Central Park,Entire home/apt,1155.0,1.0,3.0,No children under 10,2,Beaumont +906,Park Slope -Sunny 3BR duplex,Entire home/apt,216.0,3.0,4.0,No children under 10,3,Everett +907,A HOME AWAY FROM HOME IN NYC! UPTOWN,Shared room,789.0,1.0,1.0,No pets & No visitors,1,Bakersfield +908,Joy,Private room,444.0,15.0,3.0,No smoking,1,Aspen +909,apartment in heart of East Village,Entire home/apt,603.0,29.0,2.0,No smoking,3,North Platte +910,Sala star sofacama amplio cerca al Aeropuerto.,Private room,420.0,2.0,5.0,,1,Huntsville +911,"Small but cozy room in Roosevelt Island, Location!",Private room,163.0,2.0,3.0,,2,Kodiak +912,Spacious 1 BR by Central Park!,Entire home/apt,708.0,3.0,4.0,No visitors,3,Bangor +913,Beautiful 1 BR by Prospect Park,Entire home/apt,328.0,5.0,1.0,No parties & No visitors & No children under 10,3,Chicago +914,"Great apt, Next to 1 train.",Private room,228.0,3.0,5.0,,1,Syracuse +915,2BR LES Apartment Near Best Food and Bars in NYC,Private room,575.0,1.0,3.0,,1,Deadhorse +916,Large Private Room in 3 bdr apt-East Village,Private room,684.0,1.0,5.0,No smoking & No parties,2,Gustavus +917,California Vibes in NYC,Entire home/apt,206.0,3.0,3.0,No parties,2,Escanaba +918,Beautiful 2 bedroom Apartment on Prime Upper East!,Entire home/apt,473.0,30.0,3.0,,2,Aguadilla +919,Brand new renovated retreat 5 min from JFK!,Private room,751.0,1.0,4.0,No visitors,1,Fresno +920,Gorgeous Studio Apt Upper East Side,Entire home/apt,1035.0,5.0,2.0,No visitors & No pets & No smoking,4,Riverton +921,An Accomodating Apartment on Wall,Shared room,578.0,1.0,4.0,No visitors & No parties,1,Yakutat +922,"Sunlit Room in Prospect Heights, Brooklyn",Private room,673.0,7.0,4.0,No visitors & No children under 10,2,Omaha +923,"Spacious, bright room, prime Williamsburg location",Private room,900.0,3.0,4.0,No pets,2,San Antonio +924,HUGE ROOM IN CENTER CITY! AMAZING LOCATION!,Private room,260.0,4.0,2.0,No children under 10,2,Staunton +925,Home away from home,Entire home/apt,323.0,2.0,3.0,No pets & No visitors,3,San Juan +926,BRIGHT & BEAUTIFUL,Private room,399.0,2.0,4.0,No visitors,1,Grand Forks +927,Sunny bedroom in Bedstuy,Private room,744.0,1.0,2.0,No smoking & No parties & No visitors,1,Ponce +928,"Big bed, cosy room, groovy LES apt!",Private room,487.0,2.0,2.0,No smoking & No visitors,2,Escanaba +929,Charming and bright place with a good vibe!,Entire home/apt,105.0,2.0,3.0,,2,Twin Falls +930,Apartment in Ridgewood/Bushwick Neighborhood,Private room,152.0,2.0,5.0,No smoking,2,Kalamazoo +931,Stunning Brooklyn Brownstone,Entire home/apt,153.0,2.0,3.0,No pets,3,Kona +932,Bedroom in East Williamsburg,Private room,1149.0,4.0,3.0,No smoking,1,San Angelo +933,Cozy Brooklyn Oasis 20min to Manhattan(for 1 or 2),Private room,314.0,3.0,4.0,No pets,2,Portsmouth +934,Large one bed room pied a terre in Park Slope,Entire home/apt,903.0,30.0,4.0,No pets & No smoking,2,Fort Myers +935,Clean + Simple Chelsea 2 Bedroom (sleeps 7),Entire home/apt,341.0,30.0,5.0,No visitors & No pets & No smoking,3,South Bend +936,Zen Holiday Getaway,Entire home/apt,56.0,7.0,2.0,No visitors,3,Watertown +937,Bright & spacious Room in Harlem,Private room,815.0,1.0,2.0,No visitors & No children under 10,2,Bakersfield +938,private Greenpoint apt,Entire home/apt,462.0,1.0,4.0,No smoking,2,Binghamton +939,Super Convenient Park Slope Room,Private room,623.0,2.0,3.0,No pets,1,Santa Ana +940,Cozy room in Times Square .,Private room,202.0,2.0,2.0,No pets & No visitors,2,Ponce +941,Amazing place close to all,Entire home/apt,308.0,3.0,3.0,No children under 10,3,Chicago +942,Airports Sleep Inn,Private room,697.0,3.0,4.0,No visitors,2,Norfolk +943,Ins Style Duplex Apt bedroom w/ private bathroom,Private room,773.0,1.0,2.0,No children under 10 & No smoking,2,Eagle +944,Comfortable room in a chic and modern house,Private room,310.0,2.0,4.0,No smoking & No children under 10,2,Ketchikan +945,"Clean, Cosy Private 1 Bd Apartment Fort Greene",Entire home/apt,592.0,6.0,5.0,No children under 10,4,Trenton +946,Luxury 1BD 1.5 Bath In UES in NYC,Entire home/apt,185.0,2.0,1.0,No visitors & No smoking,2,Albuquerque +947,Convent Ave & 127st Col Univ RM 2,Private room,949.0,2.0,1.0,No children under 10,2,Minneapolis +948,Midtown Studio,Entire home/apt,625.0,3.0,2.0,No smoking,3,El Paso +949,Prime West Village: Art & Foodie Heaven,Entire home/apt,1008.0,2.0,5.0,,6,Gulfport +950,Clean and Cozy Harlem Apartment,Entire home/apt,601.0,128.0,3.0,No smoking,4,South Bend +951,Sunny Spacious South Slope Studio,Entire home/apt,337.0,2.0,4.0,No parties & No smoking,3,Niagara Falls +952,Charming 2 Bedroom Space in Downtown Brooklyn,Private room,841.0,15.0,2.0,No smoking,1,Newburgh +953,Minimalist Room with a Spectacular view,Private room,674.0,2.0,4.0,No parties & No visitors & No pets,1,Lewisburg +954,renovated one bedroom in our beautiful townhouse,Entire home/apt,620.0,3.0,2.0,No visitors,2,Panama City +955,Room 2- Go Back in Time in Historic Victorian Home,Private room,1104.0,2.0,3.0,,2,Greer +956,"Private BRoom ,Bathroom & backyard",Private room,56.0,4.0,1.0,No parties & No children under 10 & No pets,2,Fayetteville +957,Superhost 3 bedroom DISCOUNT,Entire home/apt,746.0,1.0,4.0,No pets,5,Houston +958,Skylight Apartment Williamsburg,Entire home/apt,219.0,4.0,3.0,No pets,2,Brainerd +959,Cozy private studio 10m fr LGA 30m to Manhattan,Entire home/apt,469.0,2.0,3.0,,2,Santa Fe +960,"Big, Bright, Beautiful Private Apartment",Entire home/apt,783.0,2.0,2.0,No pets & No parties,6,Rapid City +961,"Angie Suite in the Heights +Se habla Español",Private room,217.0,3.0,3.0,No pets,2,Kalamazoo +962,Charming 1BD Astoria Penthouse,Entire home/apt,806.0,2.0,5.0,No smoking,8,Miami +963,Big Bright Alcove Studio in Upper East Side,Entire home/apt,1033.0,4.0,2.0,No visitors & No children under 10,6,Omaha +964,Big room near Prospect Park! NY!,Private room,752.0,7.0,2.0,No parties & No smoking & No pets,1,San Diego +965,Historic Serene Chelsea Brownstone 2.5 Bed,Entire home/apt,338.0,30.0,5.0,No children under 10 & No pets & No parties,2,Nantucket +966,Upper West Side Quiet Gem,Entire home/apt,271.0,1.0,2.0,No parties & No pets,3,Christiansted +967,B1. Shared room for 4 guests,Shared room,1167.0,2.0,4.0,No visitors & No smoking,1,Ponce +968,Sunny Room in a Brownstone Penthouse,Private room,676.0,30.0,4.0,,2,Richmond +969,Lux Studio Suite+ Kitchen+Gym+Rooftop @FiDi!,Entire home/apt,446.0,3.0,4.0,No parties,3,Lansing +970,1 bedroom apartment on West 34th street,Entire home/apt,107.0,30.0,5.0,No visitors,2,Baltimore +971,Cosy renovated studio apartment in Bed Stuy,Entire home/apt,583.0,3.0,2.0,,2,Richmond +972,Private room in NYC!! Walking to Central Park!!,Private room,1017.0,3.0,2.0,No parties & No smoking,1,Belleville +973,Fully equipped apartment on perfect location,Entire home/apt,1091.0,7.0,5.0,No visitors,7,Asheville +974,Bushwick Brownstone Penthouse,Entire home/apt,528.0,3.0,2.0,No parties,2,West Palm Beach +975,Luxury Studio near Central Park - Times Square,Entire home/apt,155.0,29.0,2.0,No children under 10,2,Daytona Beach +976,Private hotel room in the heart of Times Square,Private room,539.0,1.0,3.0,No visitors & No children under 10 & No pets,2,Shreveport +977,(A) Room for 2 w private bathroom,Private room,1057.0,2.0,2.0,No pets & No children under 10 & No visitors,1,Fort Smith +978,"Homey, accessible private bedroom",Private room,480.0,1.0,1.0,No visitors & No parties,2,Brainerd +979,"HEART OF BROOKLYN, QUEEN BED, 1 BLOCK FROM SUBWAY!",Private room,331.0,1.0,5.0,No children under 10,1,Salina +980,COZY Room @Williamsburg (10 mins to Manhattan),Private room,605.0,2.0,4.0,No visitors,1,Hilton Head +981,Cozy Small Bedroom w/Bathroom. Balcony & Open Bar.,Private room,901.0,14.0,5.0,No pets,2,Montgomery +982,"Cozy, spacious Studio located on Upper East Side",Entire home/apt,756.0,3.0,3.0,No visitors,2,San Francisco +983,Joy's Luxury Apartment with Free Parking Space,Entire home/apt,651.0,1.0,3.0,No children under 10 & No pets,2,Hattiesburg +984,GREENPOINT OASIS,Entire home/apt,170.0,365.0,3.0,No children under 10,3,Stockton +985,Private modern studio suite with private bathroom,Entire home/apt,283.0,1.0,4.0,,3,Nantucket +986,Comfortable & independent apartment in Queens NY,Entire home/apt,803.0,1.0,5.0,No children under 10 & No parties,8,Branson +987,Spacious private room near LGA airport,Private room,459.0,1.0,3.0,,1,Providence +988,Artist's Townhouse,Entire home/apt,1094.0,4.0,3.0,No smoking & No pets,7,Pago Pago +989,Cozy Pad in East Williamsburg,Private room,629.0,1.0,2.0,No parties,2,Rhinelander +990,Sunny Townhouse - Brooklyn,Entire home/apt,180.0,6.0,3.0,No children under 10 & No parties,2,Montgomery +991,Private room in Williamsburg,Private room,70.0,1.0,4.0,No pets & No children under 10,2,Lynchburg +992,NYC Private Room w/Backyard,Private room,1086.0,2.0,3.0,No visitors,2,Omaha +993,3 Cozy Zen Rooms In Beautiful Apt.,Private room,349.0,2.0,5.0,No children under 10 & No visitors,2,Harrisburg +994,Luxurious Designer brownstone with backyard,Entire home/apt,1091.0,4.0,5.0,No children under 10 & No parties,5,Lafayette +995,Mags,Entire home/apt,361.0,5.0,4.0,,2,International Falls +996,Sunny 1 BR Brooklyn Loft Apartment,Entire home/apt,60.0,4.0,1.0,No visitors,2,Pittsburgh +997,Beautiful apartment in Gravesend(Girls share room),Shared room,230.0,7.0,4.0,No pets,1,St. Petersburg +998,Cute private bedroom in Stuyvesant Height.,Private room,533.0,1.0,2.0,No parties & No visitors,1,Garden City +999,Private Apt 2BR/1Bath/Kitchen/Parking in OUR HOME,Entire home/apt,420.0,1.0,2.0,No pets,4,Stockton +1000,Large Private Room In Spacious Guest House,Private room,514.0,3.0,2.0,No visitors & No pets & No parties,2,Kodiak +1001,The Spot,Entire home/apt,594.0,1.0,3.0,No smoking,2,Escanaba +1002,Large Bedroom in 2 Bed Apartment Brighton Beach,Private room,959.0,1.0,3.0,No children under 10,2,Flagstaff +1003,"Furnished room close to most, 15min to Grand Cent.",Private room,524.0,20.0,3.0,No smoking & No visitors,2,Fort Dodge +1004,"Spacious, Luxury Duplex with Outside Deck",Entire home/apt,528.0,2.0,4.0,,5,San Jose +1005,Big manhattan room w gorgeous views.,Private room,1189.0,1.0,1.0,No parties,2,Des Moines +1006,Clarkson Loft the gem of east Flatbush,Private room,965.0,1.0,5.0,No smoking & No children under 10,1,Worcester +1007,Best Location Sun Filled West Village Townhome,Entire home/apt,268.0,1.0,4.0,No pets,2,Redding +1008,Private Room with 1/2 Bath in LES!,Private room,828.0,1.0,1.0,No visitors & No pets & No children under 10,1,Lihue +1009,Beautiful Studio Apt. Yoga vibes & love,Entire home/apt,479.0,2.0,2.0,No smoking & No visitors & No children under 10,4,New Bern +1010,Close to Manhattan ( S ).,Private room,743.0,1.0,4.0,No children under 10,1,Kalispell +1011,"Big WBurg Rm, 5 min from L, Fits 4!",Private room,385.0,2.0,5.0,,2,Sacramento +1012,"Soho Penthouse Loft, Terrace & View",Entire home/apt,842.0,3.0,5.0,No pets,8,Fairbanks +1013,Newly reno 1BR Harlem brownstone,Entire home/apt,354.0,5.0,3.0,No children under 10,2,Toledo +1014,Modern 1-Bed Near Central Park,Entire home/apt,694.0,30.0,2.0,No pets,2,Medford +1015,Habitación comoda,Private room,150.0,2.0,3.0,,2,Asheville +1016,Cozy Bed Stuy Getaway,Entire home/apt,871.0,2.0,5.0,No children under 10,6,Des Moines +1017,New Studio in UWS steps from Central Park #6122,Entire home/apt,973.0,30.0,5.0,No children under 10 & No visitors & No smoking,8,Dodge City +1018,Private Furnished Studio Apartment,Entire home/apt,243.0,30.0,3.0,No pets,3,Ithaca +1019,Sunny Windsor Terrace 3BR with deck,Entire home/apt,339.0,5.0,2.0,No pets,3,Fort Smith +1020,The Apartment @ 1393,Entire home/apt,1063.0,1.0,3.0,No visitors,3,Lansing +1021,"@FERRY, Private Cozy Room, Renovated&Stylish.",Private room,900.0,4.0,4.0,No smoking & No children under 10 & No parties,1,Barrow +1022,Sunny and Spacious Room in Central Harlem,Private room,895.0,3.0,4.0,No pets,2,Traverse City +1023,Cozy apartment in Upper Manhattan!,Private room,622.0,2.0,1.0,No pets,2,Sault Ste. Marie +1024,New York City!! Walking to Central Park LOCATION!!,Private room,321.0,5.0,3.0,,2,Medford +1025,Harlem cozy nights,Entire home/apt,457.0,4.0,4.0,No visitors,3,Denver +1026,Best Location! Near Times Sq Javits Ctr Penn Sta,Shared room,886.0,1.0,1.0,,1,Valparaiso +1027,"3rd FL, Private Suite w Own Bath & Study Area",Entire home/apt,913.0,3.0,1.0,No children under 10,7,Great Falls +1028,Home away from home,Private room,1049.0,1.0,5.0,No parties,1,Panama City +1029,"Modern, Sunny Duplex PENTHOUSE w/ BALCONY",Entire home/apt,1059.0,3.0,5.0,No smoking,2,Mosinee +1030,Brooklyn Home,Private room,1149.0,1.0,2.0,No pets,1,Wichita Falls +1031,Delightful Brooklyn Studio,Entire home/apt,1077.0,31.0,1.0,No smoking,3,Cedar Rapids +1032,Large 2 bed 2 bath close to Park,Entire home/apt,672.0,31.0,3.0,No children under 10,3,Riverton +1033,"Modern, Comfortable and Clean Bushwick Apartment",Private room,1182.0,2.0,4.0,No visitors & No parties & No pets,1,Alamosa +1034,"Private Room in Little Italy/Chinatown, Manhattan",Private room,924.0,1.0,2.0,No children under 10,2,Traverse City +1035,"Brownstone Sanctuary, a Private Studio Apartment",Private room,552.0,1.0,4.0,No parties & No smoking & No children under 10,2,Jackson +1036,Brooklyn Heights gem,Entire home/apt,993.0,2.0,5.0,No pets,6,Nashville +1037,1 Bedroom in a shared space with AC & garden.,Private room,705.0,1.0,4.0,No pets & No children under 10 & No smoking,1,Allentown +1038,Seeking tenant for January 2013,Private room,198.0,1.0,2.0,,1,Hays +1039,Basement private room w/AC near LaGuardia Airport,Private room,634.0,1.0,3.0,No parties & No visitors,2,Eugene +1040,Cozy Private Room,Private room,69.0,2.0,4.0,No parties,2,Lawton +1041,Bright essential cozy private room,Private room,753.0,1.0,3.0,No children under 10 & No visitors,2,Garden City +1042,Modern Studio Apartment near transportation,Entire home/apt,608.0,2.0,2.0,No pets & No visitors,4,King Salmon +1043,"Bright, beautiful duplex apartment in Bushwick",Private room,1102.0,4.0,3.0,No children under 10,1,Salina +1044,Sweet Spot In Manhattan NYC!,Entire home/apt,1085.0,2.0,4.0,No pets & No visitors,7,Bloomington +1045,Modern 1BR in Downtown Manhattan,Entire home/apt,522.0,1.0,4.0,No visitors,2,Raleigh +1046,Wall St - FiDi - Art Deco Luxury Apartment,Entire home/apt,899.0,2.0,2.0,,6,Phoenix +1047,"Luxury 4BR Home, Spacious & Central to Trains",Entire home/apt,392.0,3.0,5.0,No parties,3,San Diego +1048,Lavish 1BR apt. near Madison Square Park!,Entire home/apt,376.0,30.0,1.0,No pets & No smoking,2,Jackson +1049,SUNNY 2 BEDS - NEAR 3 METROS IN WILLIAMSBURG,Private room,445.0,2.0,3.0,No children under 10,2,Amarillo +1050,Light room with view of Manhattan skyline,Private room,435.0,3.0,3.0,No visitors & No children under 10,1,Laramie +1051,East village renovated studio,Entire home/apt,677.0,2.0,3.0,No smoking & No visitors,2,Florence +1052,Large 2.5 BR Apt In Park Slope,Entire home/apt,269.0,1.0,1.0,No smoking & No visitors,3,Texarkana +1053,"Central Park Area Luxury Condo, BEST CITY VIEW",Entire home/apt,1020.0,3.0,2.0,No pets & No visitors,9,Barrow +1054,Room in a luxury doorman building in Midtown,Private room,682.0,2.0,2.0,No visitors & No parties,2,Waterloo +1055,"MANHATTAN Neat, Nice, Bright ROOM",Private room,50.0,2.0,4.0,No parties & No children under 10,2,Santa Ana +1056,2 Bedroom/2 Bath Spacious Loft in Clinton Hill,Entire home/apt,253.0,3.0,4.0,No smoking,2,Charleston +1057,Fun in the Financial District,Shared room,1020.0,2.0,3.0,No visitors & No pets & No smoking,1,Bloomington +1058,2BD in Midtown East,Entire home/apt,381.0,2.0,4.0,,3,Cedar City +1059,Bushwick 1 Bedroom,Private room,1068.0,21.0,5.0,No pets,2,Rhinelander +1060,"Luxurious, Sunny Apartment Overlooking Park",Entire home/apt,226.0,2.0,5.0,No pets & No parties & No children under 10,2,Dayton +1061,1718双个房,Private room,300.0,1.0,5.0,,2,Lansing +1062,Luxury Apt Close to JFK Airport,Entire home/apt,526.0,2.0,2.0,No parties & No children under 10 & No pets,5,West Yellowstone +1063,"Private Bedroom in Bushwick, BK",Private room,727.0,10.0,,No pets & No parties,1,Omaha +1064,"Upper West Side, Manhattan, NY",Entire home/apt,1083.0,6.0,1.0,No parties & No visitors,10,Los Angeles +1065,Private Apartment with 2 BEDs at Union Square,Entire home/apt,234.0,3.0,2.0,No visitors & No pets & No smoking,2,Valdosta +1066,Inviting One Bedroom Apt in Prospect Heights,Entire home/apt,208.0,30.0,2.0,,2,Hagerstown +1067,Brooklyn Home On The Beach,Private room,429.0,31.0,4.0,No visitors & No children under 10,2,Green Bay +1068,Tribeca - Large 4 bedroom 2 bathroom for Xmas/NY,Entire home/apt,554.0,1.0,5.0,,4,New Bern +1069,1 lovely bedroom in the heart of Midtown Manhattan,Private room,227.0,6.0,4.0,No visitors,1,Ogdensburg +1070,"Spacious, modern loft in awesome neighborhood",Entire home/apt,1145.0,120.0,3.0,No children under 10,4,Victoria +1071,2000 sqf Duplex in Townhouse,Entire home/apt,885.0,5.0,1.0,No children under 10,3,Daytona Beach +1072,1 min to Bedford Ave (L) Station,Entire home/apt,1110.0,3.0,4.0,,2,San Juan +1073,Large bright artistic apartment,Entire home/apt,677.0,2.0,2.0,No pets & No visitors,4,Cleveland +1074,Awesome Cozy Room in The Heart of Astoria!,Private room,517.0,7.0,5.0,No parties & No visitors,2,North Bend +1075,"Experiencing Tranquility in Private Home, Room # 1",Private room,111.0,2.0,2.0,No visitors & No children under 10,1,San Luis Obispo +1076,kiwi,Shared room,136.0,1.0,5.0,No pets,1,Sheridan +1077,Prospect Park Hostel- Male Long Term Stay-1,Shared room,424.0,10.0,,No parties,1,Jacksonville +1078,Spacious Midtown Studio,Entire home/apt,379.0,3.0,3.0,No visitors & No parties & No children under 10,3,Meridian +1079,Bright and Spacious Parkside Apartment,Entire home/apt,1134.0,3.0,2.0,No children under 10,11,Bakersfield +1080,XL Full Floor Loft*3BR*Lower East Side*SUPERHOST*,Entire home/apt,274.0,4.0,4.0,No children under 10,3,Hobbs +1081,FABULOUS SUNNY BEDROOM IN HARLEM,Private room,587.0,20.0,3.0,No parties,2,Atlanta +1082,Classy Upper East Side Private Bedroom,Private room,1176.0,1.0,1.0,No pets & No children under 10,1,Pasco +1083,Cozy Cove in Crown Heights,Private room,546.0,7.0,3.0,No pets,1,Gainesville +1084,Standard New York girls room,Private room,711.0,1.0,3.0,No visitors & No parties,1,Concord +1085,Great apt in amazing East Village!,Private room,815.0,3.0,5.0,,2,Brownsville +1086,B & B in NYC!!,Private room,203.0,2.0,3.0,No visitors & No parties & No pets,1,Twin Falls +1087,"Harlem 1 BR, Private Master Bath",Private room,396.0,2.0,1.0,No pets,1,Honolulu +1088,Williamsburg large 2 Bedroom / 2 Bathroom,Entire home/apt,539.0,2.0,5.0,No pets,3,Boston +1089,"Gorgeous studio ""Hamptons style"" in West Village",Entire home/apt,661.0,3.0,4.0,No visitors,4,Fresno +1090,Sunlight + Space on Eastern Parkway,Entire home/apt,346.0,2.0,2.0,No visitors & No pets,3,Boston +1091,Charming Moroccan style Rooms on Upper West Side,Private room,804.0,3.0,5.0,,2,Saginaw +1092,cute convenient village suite,Private room,608.0,1.0,,No children under 10,1,Helena +1093,Quiet Oasis. A nice break from city chaos.,Private room,1009.0,2.0,3.0,No pets & No visitors & No parties,1,Marquette +1094,Cozy Brooklyn Apartment,Shared room,1177.0,1.0,2.0,No visitors & No children under 10 & No parties,1,West Palm Beach +1095,Gorgeous Park Slope Studio,Entire home/apt,641.0,14.0,4.0,No smoking & No parties,5,San Francisco +1096,Artist Brooklyn Heights Home,Entire home/apt,1069.0,7.0,3.0,No pets,8,Buffalo +1097,Sonder | Stock Exchange | Vibrant 2BR + Sofa Bed,Entire home/apt,1171.0,2.0,3.0,No children under 10,2,Mason City +1098,"3 beds w/ Kitchenette, own bath separate entrance",Private room,568.0,2.0,3.0,,2,Riverton +1099,2-3 bedroom apt in Astoria NYC,Entire home/apt,583.0,1.0,1.0,,3,Joplin +1100,Spacious apt in heart of Downtown!,Private room,377.0,1.0,3.0,No children under 10 & No parties,1,Harrisburg +1101,2 bedroom in the East Village,Entire home/apt,964.0,8.0,5.0,No parties,4,Savannah +1102,Bright Creative Environment,Private room,963.0,2.0,4.0,No children under 10 & No parties,1,Alamosa +1103,Cozy North Park Slope Apartment,Private room,728.0,2.0,3.0,No children under 10 & No visitors & No pets,1,Punta Gorda +1104,Prime Location close to Central Park!,Shared room,247.0,3.0,2.0,No parties & No visitors & No children under 10,1,Mobile +1105,Food & Music Dream Apartment in Williamsburg,Entire home/apt,291.0,4.0,3.0,No children under 10,3,Fresno +1106,Large room in new Williamsburg apartment,Private room,1104.0,4.0,2.0,No pets,1,Fort Wayne +1107,Bedroom 7 Bed B,Shared room,59.0,2.0,2.0,No visitors,1,Elmira +1108,My Premium 1 bedroom Home in the Upper East Side,Entire home/apt,444.0,3.0,4.0,No pets,2,Stockton +1109,2 Bdrm Luxury Condo Wyndham Presidential Sleeps 6,Entire home/apt,942.0,2.0,2.0,,7,Eau Claire +1110,*CoZy Private Williamsburg Home*,Entire home/apt,546.0,2.0,2.0,No children under 10 & No smoking & No visitors,5,Fayetteville +1111,Lovely West Village 1 BR - Quiet and Comfortable,Entire home/apt,260.0,2.0,4.0,No visitors,2,Baton Rouge +1112,Family-friendly 3-bedroom condo,Entire home/apt,279.0,4.0,3.0,No children under 10 & No pets & No smoking,2,Martha's Vineyard +1113,Rustic room in renovated Bushwick apartment,Private room,309.0,1.0,2.0,No smoking,1,Hilton Head +1114,Large/Modern 1 Bed Apt Williamsburg,Entire home/apt,520.0,3.0,3.0,No visitors & No smoking,5,Newport News +1115,Gorgeous luxury place Williamsburg,Entire home/apt,994.0,1.0,2.0,No pets & No smoking,6,Flint +1116,Greenpoint room,Private room,95.0,5.0,5.0,No pets,2,Bloomington +1117,SPACIOUS SUNLIT 2 BED/2 BATH APT IN WILLIAMSBURG,Entire home/apt,382.0,5.0,4.0,No smoking,3,Ithaca +1118,Spacious & Cozy 1BR Apartment in Brownstone Bldg,Entire home/apt,1008.0,1.0,3.0,No smoking & No parties,4,Watertown +1119,30+ Day Stay -Cute Small House by a Beautiful Deck,Entire home/apt,409.0,6.0,2.0,No smoking & No children under 10,4,Hancock +1120,Studio In Williamsburg w/ Amazing View Waterfront,Entire home/apt,1128.0,2.0,4.0,No visitors,5,Lexington +1121,Small bedroom in Brooklyn,Private room,393.0,,5.0,No smoking & No parties,2,San Diego +1122,SPACIOUS STUDIO APT 3 IN PROSPECT LEFFERTS GARDENS,Entire home/apt,1060.0,5.0,4.0,No children under 10 & No parties,6,Bozeman +1123,Bright UES Gem Near Central Park,Entire home/apt,862.0,2.0,2.0,,7,Cedar Rapids +1124,Gorgeous exposed-brick 2 BR Apt in LES!,Entire home/apt,1187.0,2.0,4.0,No visitors & No children under 10,8,New Orleans +1125,Modern luxury w/views of WTC,Private room,55.0,1.0,3.0,No visitors & No children under 10,2,Oakland +1126,Minimalistic 1 BR in little Italy/ China town,Entire home/apt,500.0,6.0,3.0,No parties,3,Champaign +1127,Spacious West Village 1 b/room King,Entire home/apt,,4.0,5.0,No children under 10 & No visitors,2,Allentown +1128,Gramercy/Kips Bay 1BR- the best!,Entire home/apt,524.0,3.0,1.0,No pets,4,Evansville +1129,Sublet in Furnished Master Bedroom,Private room,930.0,1.0,5.0,No smoking & No parties & No pets,2,St. Louis +1130,Large comfortable room near Penn Station,Private room,189.0,1.0,4.0,No pets,2,Bakersfield +1131,"Sixth Ave Chelsea, Studio Serviced Apartment",Entire home/apt,589.0,30.0,2.0,No pets,5,Syracuse +1132,Sunny room in cozy Bushwick apartment,Private room,897.0,3.0,4.0,No visitors,2,Jacksonville +1133,Large bedroom in 2BDR apt. in the East Village,Private room,607.0,3.0,2.0,No visitors & No parties,2,Petersburg +1134,1Br apt on the UES accomodates two,Entire home/apt,762.0,1.0,3.0,,4,Charlotte Amalie +1135,SHARE;SAFE;CHEAPEST;15 MIN TO HEART OF MANHATTAN.,Shared room,551.0,1.0,2.0,No pets,1,Flagstaff +1136,Cute Studio near Prospect Park,Entire home/apt,256.0,1.0,3.0,No visitors,2,Jacksonville +1137,Light up room close to Central Park,Private room,227.0,1.0,2.0,No parties,1,Rapid City +1138,1 BEDROOM apartment in Brooklyn,Entire home/apt,193.0,3.0,1.0,No pets & No visitors,2,Cheyenne +1139,"1 bdrm in Park Slope , Bklyn.",Entire home/apt,812.0,1.0,3.0,,5,Presque Isle +1140,Bedroom in Large Artist Loft in Brooklyn,Private room,1004.0,5.0,4.0,No pets & No smoking,2,El Paso +1141,Prime Williamsburg,Private room,639.0,3.0,3.0,,2,Minneapolis +1142,"Balcony Duplex and Loft, Steps from the Subway",Private room,1056.0,21.0,3.0,No parties & No children under 10,1,Minneapolis +1143,"1BR, elevator, kitchen, doorman!",Entire home/apt,475.0,1.0,2.0,No parties,3,Dallas +1144,Fabolous 1bd Apartment in Upper East Side New York,Entire home/apt,552.0,3.0,4.0,No visitors & No parties,5,Providence +1145,"Luxury Williamsburg duplex, private roof terrace",Entire home/apt,241.0,4.0,5.0,No visitors,3,Dallas +1146,30 Minutes from Manhattan Apartment by South Beach,Entire home/apt,667.0,1.0,2.0,No pets,3,Charlotte Amalie +1147,1 bedroom in a 3 bedroom apartment,Private room,635.0,1.0,3.0,No pets,2,Bristol +1148,Room in Modern Apartment.,Private room,62.0,2.0,4.0,No smoking & No children under 10,2,Jamestown +1149,AC Hotel New York Downtown-7 Nights Min,Private room,531.0,7.0,2.0,No smoking,1,Owensboro +1150,Apartamento con cuarto privado en Manhattan,Private room,343.0,2.0,5.0,No visitors,1,Sioux Falls +1151,#GorgeousLowerEast2BedroomGem! #3minWalktoTrain!,Entire home/apt,796.0,4.0,5.0,No children under 10 & No parties,7,Dillingham +1152,Gramercy Park Pied à Terre,Entire home/apt,246.0,2.0,4.0,No smoking,3,Plattsburgh +1153,"Eclectic, one of a kind West Village apartment",Entire home/apt,806.0,1.0,2.0,No children under 10 & No pets,3,Aguadilla +1154,Nice bedroom in Brooklyn !,Private room,932.0,4.0,5.0,No pets,1,Appleton +1155,Cozy and spacious 1 BR near Columbia University,Private room,389.0,3.0,1.0,,1,Ithaca +1156,Private bedroom 8 mins-JFK&The Mall,Private room,158.0,1.0,1.0,No pets & No visitors,1,Cheyenne +1157,MANHATTAN ROOM FOR 2 NO FEE,Private room,208.0,5.0,5.0,No pets & No smoking & No visitors,2,Elko +1158,Historic Manhattan Home to make your stay special!,Entire home/apt,523.0,2.0,4.0,No visitors,3,Belleville +1159,Charming space in lively neighborhood.,Private room,493.0,1.0,4.0,No children under 10 & No visitors & No smoking,1,Liberal +1160,Luxury Sky Loft: 2 Bedroom/ 2 Baths on Madison Ave,Entire home/apt,656.0,5.0,5.0,No smoking & No parties,6,Tyler +1161,Private bedroom in Luxury home Bushwick,Private room,951.0,2.0,5.0,No parties & No visitors & No smoking,1,Killeen +1162,NIGHT CRAS PAD,Shared room,967.0,1.0,,No parties,1,Salt Lake City +1163,Private room amazing location Chelsea/Union Square,Private room,446.0,3.0,4.0,No smoking,2,Martha's Vineyard +1164,NEW Bright West Village 2 Bed,Entire home/apt,1080.0,2.0,3.0,No pets,3,Monterey +1165,"Hamilton Heights Sunny Studio, Manhattan",Entire home/apt,918.0,1.0,5.0,No visitors & No children under 10,8,Lansing +1166,Private Room in large 2 bedroom apt,Private room,1006.0,3.0,1.0,No children under 10 & No smoking,2,State College +1167,Sunny Bedroom in El Barrio,Private room,252.0,7.0,2.0,No children under 10 & No smoking,1,Monterey +1168,Doorman Time SQ View 2 bed 2 bath 5200,Entire home/apt,641.0,30.0,2.0,No visitors,2,Flagstaff +1169,Affordable Private Spacious Room in Brooklyn,Private room,790.0,2.0,3.0,No parties,2,Chattanooga +1170,❤️Gorgeous Townhouse Apt - 2 blocks from subway,Entire home/apt,730.0,30.0,2.0,No smoking,3,Cincinnati +1171,MyrtleWash Townhouse,Entire home/apt,878.0,30.0,1.0,No pets & No visitors & No smoking,3,Texarkana +1172,Cozy private room+bathroom in brooklyn!,Private room,337.0,2.0,2.0,No visitors,2,Victoria +1173,Secret Garden,Entire home/apt,1173.0,3.0,4.0,No children under 10 & No pets,11,Mission +1174,Modern and Bright Studio Apt in Williamsburg,Entire home/apt,1135.0,2.0,5.0,No parties,10,Monterey +1175,Large and Sunny Private Bedroom in Astoria,Private room,363.0,10.0,4.0,No pets,1,Rhinelander +1176,1Bdrm Deluxe WYNDHAM MIDTOWN 45*Great Location NYC,Private room,477.0,3.0,4.0,No pets,1,Panama City +1177,"East 58th Street, Lux Svcd 1bd Apt",Entire home/apt,395.0,30.0,1.0,No children under 10 & No visitors & No parties,2,Harlingen +1178,cozy 2bedroomAPART 10min to MIDTOWN,Entire home/apt,947.0,3.0,1.0,No parties,9,Montrose +1179,Superior Studio with Balcony,Private room,1048.0,1.0,2.0,,2,Kotzebue +1180,West Village penthouse loft w roof,Entire home/apt,141.0,3.0,5.0,No pets,3,Kansas City +1181,Private Room,Private room,922.0,1.0,4.0,No visitors,1,Knoxville +1182,New Furnished Modern Two-Bedroom Apartment,Entire home/apt,644.0,30.0,2.0,No pets,3,Gustavus +1183,"Sunny and Quiet private apartment, great location!",Entire home/apt,980.0,75.0,1.0,,8,Barrow +1184,Stunning Brand New Apartment 35m to NYC!!!,Entire home/apt,93.0,2.0,5.0,No children under 10 & No visitors,3,Kearney +1185,Luxury Four-Bedroom/Six Bed Apt - Prime Chelsea,Entire home/apt,482.0,4.0,1.0,No pets & No children under 10 & No visitors,2,Brownsville +1186,Redford Room 1,Private room,1018.0,1.0,1.0,No parties & No visitors,1,Las Vegas +1187,Large renovated 2 bedroom apt.,Entire home/apt,183.0,3.0,4.0,No smoking,3,Pasco +1188,Cheap large room with desk 10 min to JFK+ Mall,Private room,1056.0,15.0,5.0,No children under 10,1,Wichita Falls +1189,Chic Union Square One Bedroom,Entire home/apt,1096.0,3.0,5.0,No children under 10,3,Charleston +1190,Room in bushwick!,Private room,1150.0,4.0,5.0,,1,Miami +1191,"Best location 3 bedroom, Times Square/Penn Station",Entire home/apt,1199.0,30.0,2.0,,9,Salt Lake City +1192,LIVE BROOKLYN! Private 1 BR APT - 5 min to Subway,Entire home/apt,1001.0,2.0,4.0,No parties & No smoking & No children under 10,2,Harrisburg +1193,Cozy apartment in East Village,Entire home/apt,496.0,2.0,4.0,No visitors & No parties,2,Aguadilla +1194,法拉盛summer家(B)closed to JFK&LGA&Citi Field#parking,Private room,447.0,1.0,4.0,No smoking,2,Aberdeen +1195,Demmy's space,Private room,197.0,2.0,3.0,No pets & No visitors,2,Eugene +1196,Beautiful Bedroom in Stuyvesant Madison 2R-3,Private room,258.0,30.0,3.0,,1,Barrow +1197,LOVELY APT IN MANHATTAN! 1 block from the subway!,Entire home/apt,171.0,12.0,1.0,No pets & No parties,3,Prescott +1198,LARGE BEDROOM AND PRIVATE BATHROOM ..ASTORIA!,Private room,566.0,4.0,2.0,No visitors & No pets & No smoking,1,Sioux City +1199,Sunny bedroom in AMAZING LOCATION Williamsburg,Private room,855.0,14.0,1.0,,1,Scranton +1200,"Bright, Modern, Clean, Spacious, Brooklyn Home",Entire home/apt,1034.0,3.0,5.0,No children under 10,4,Atlanta +1201,Spacious RM in Quiet Area near LGA & MNHTN express,Private room,1097.0,30.0,3.0,No pets & No smoking,1,Fairbanks +1202,2 bedrooms apartment 10 minutes from Manhattan,Entire home/apt,690.0,15.0,2.0,No children under 10 & No visitors & No smoking,5,Grand Rapids +1203,Small room with convenient commute,Private room,230.0,1.0,3.0,No smoking & No parties,1,Riverton +1204,Business Travelers/2 bedrooms,Entire home/apt,273.0,5.0,2.0,No visitors,2,Sioux City +1205,West 57th Street by Hilton Club- Studio,Entire home/apt,570.0,3.0,1.0,No smoking & No pets,3,Marquette +1206,Gorgeous sky-lit 2BR,Entire home/apt,725.0,3.0,2.0,No visitors,3,Petersburg +1207,Sun soaked private room with all the amenities!,Private room,605.0,1.0,4.0,No smoking & No children under 10,1,Baltimore +1208,"Massive, Incredible Brand New East Village Loft",Private room,646.0,30.0,5.0,No parties,1,Pierre +1209,Five star large one bedroom!,Entire home/apt,1170.0,1.0,1.0,No children under 10 & No pets,6,Long Beach +1210,Full-size loft bed in East Village,Private room,104.0,1.0,4.0,No visitors & No pets & No parties,1,Gunnison +1211,Penthouse Room in Williamsburg,Private room,103.0,1.0,5.0,No visitors & No smoking & No pets,2,Fresno +1212,Very Sunny Private Room with Bath,Private room,926.0,12.0,4.0,No pets,1,La Crosse +1213,Large 4 BR West Village townhouse/roof garden,Entire home/apt,157.0,2.0,1.0,No pets,3,Yakima +1214,Private cozy room near time square,Private room,949.0,2.0,2.0,No smoking,2,Jamestown +1215,"Peaceful, cozy studio in Chinatown",Entire home/apt,576.0,20.0,1.0,No pets & No children under 10 & No visitors,2,Seattle +1216,CLEAN & SPACIOUS ROOM CLOSE TO MANHATTAN,Private room,779.0,1.0,5.0,No smoking & No children under 10,1,Monterey +1217,Comfy Room for May,Private room,1035.0,1.0,3.0,No smoking & No visitors & No children under 10,2,Elmira +1218,Superbowl Studio Upper West Side,Entire home/apt,665.0,3.0,4.0,,6,Moab +1219,Apartment in the heart of Williamsburg Brooklyn!,Entire home/apt,824.0,1.0,1.0,No parties,3,Dillingham +1220,Modern 1 Bedroom Condo at Midtown 45,Private room,752.0,2.0,5.0,No pets & No children under 10,1,Nantucket +1221,Penthouse,Entire home/apt,541.0,4.0,3.0,No pets,3,Petersburg +1222,Charming Clinton Hill One-Bedroom Apartment,Entire home/apt,763.0,10.0,4.0,No smoking & No parties,6,Anchorage +1223,24 Lex Prime Location of East NYC 15min to TimeSq,Entire home/apt,509.0,2.0,2.0,No children under 10,3,Fayetteville +1224,Stunning 2Bed/2BA + 300sqft deck by the river!,Entire home/apt,209.0,1.0,2.0,No visitors,3,Washington +1225,Sonder | 21 Chelsea | Elegant 1BR + Rooftop,Entire home/apt,1114.0,29.0,4.0,,8,Appleton +1226,Bedroom in Beautiful Park Slope Brownstone,Private room,1165.0,2.0,4.0,No smoking,1,Las Vegas +1227,Spacious Beautiful 1 bdrm in Gramercy,Entire home/apt,591.0,2.0,4.0,No visitors & No parties,5,Sanford +1228,Comfortable studio by the park!,Entire home/apt,1092.0,3.0,5.0,No visitors,8,Lafayette +1229,"Entire apt NYC, Queens. 15 min from Times Square.",Entire home/apt,692.0,10.0,5.0,No pets,3,New Orleans +1230,The Library @ Guacamaya's Nest,Private room,1105.0,3.0,4.0,,2,Daytona Beach +1231,Brooklyn Room in Hip Neighborhood - Close to Train,Private room,742.0,1.0,1.0,No parties & No children under 10 & No smoking,1,Philadelphia +1232,Fourth of July getaway,Entire home/apt,414.0,3.0,5.0,No smoking,2,Hayden +1233,"Charming Bright Astoria Room, close to Ditmar",Private room,884.0,1.0,5.0,No pets,1,Shreveport +1234,Deluxe Brooklyn Loft,Entire home/apt,,3.0,1.0,No smoking,3,Abilene +1235,1 BEDROOM ON UES-DOORMAN/WASHER/DRYER,Entire home/apt,663.0,30.0,2.0,,3,Meridian +1236,Comfy large room in Wash Heights,Private room,457.0,2.0,4.0,No children under 10,2,La Crosse +1237,Harlem Gem,Entire home/apt,813.0,3.0,3.0,No smoking,7,Owensboro +1238,Douglaston (apt 2) Room 3,Private room,333.0,1.0,3.0,No smoking & No children under 10 & No pets,2,Stillwater +1239,"Stunning, sunny 1bedroom, Greenpoit",Entire home/apt,481.0,14.0,5.0,No visitors & No smoking,3,Wichita Falls +1240,Cozy Studio Midtown East,Entire home/apt,432.0,3.0,5.0,No parties & No pets,2,Marquette +1241,A single room that converts with bathroom,Private room,773.0,7.0,5.0,No smoking,2,Alamosa +1242,Triplex with private garden,Entire home/apt,1123.0,2.0,2.0,No parties,11,Santa Rosa +1243,Clean Cosy Bedroom w/Desk 10min to JFK & Big Mall,Private room,800.0,1.0,2.0,No visitors & No parties,2,Elmira +1244,Cozy room + bright apartment + rooftop lounge,Private room,666.0,1.0,4.0,No smoking,1,Appleton +1245,Sunny beautiful bedroom in 1 bedroom apartment.,Entire home/apt,177.0,7.0,1.0,No parties & No smoking,3,Cordova +1246,"Spacious, sunny studio apt in East Village, NYC",Entire home/apt,560.0,2.0,1.0,No pets & No children under 10 & No parties,2,Belleville +1247,Splendid studio in midtown Manhattan,Entire home/apt,1178.0,30.0,1.0,No parties,4,Elko +1248,Minimalist Vegan Room in Columbus Circle,Private room,284.0,1.0,3.0,No visitors,2,St. Cloud +1249,Spacious room with huge bay window & natural light,Private room,213.0,2.0,4.0,No visitors,1,Albany +1250,10 Minutes away from JFK Airport,Entire home/apt,511.0,2.0,2.0,No parties,5,Fresno +1251,Beautiful Brownstone apt in Crown Heights Brooklyn,Entire home/apt,81.0,2.0,5.0,No parties,2,Vernal +1252,Private Essex Street Bedroom in the LowerEast Side,Private room,599.0,3.0,5.0,,1,Missoula +1253,G1 Newly Renovated Long Island City Room,Private room,1130.0,1.0,2.0,No parties,1,Jacksonville +1254,Family Friendly 2BR/1BA in UWS,Entire home/apt,397.0,,3.0,No parties & No visitors,2,Plattsburgh +1255,"Clean, large, private R room with queen sized bed",Private room,404.0,2.0,4.0,,1,New Orleans +1256,Cozy,Private room,184.0,1.0,5.0,No visitors & No smoking & No children under 10,2,Belleville +1257,1Bdrm Deluxe WYNDHAM MIDTOWN 45*Great Location NYC,Private room,477.0,3.0,4.0,No children under 10,1,Ontario +1258,Cozy and Sunny Williamsburg Apartment,Entire home/apt,1100.0,3.0,5.0,No pets,8,Columbus +1259,"Estudio 1 Brooklyn, NY.",Entire home/apt,1106.0,2.0,3.0,No visitors & No smoking & No children under 10,8,Las Vegas +1260,Single room in Bushwick w/backyard,Private room,107.0,1.0,3.0,No visitors,2,Charlottesville +1261,"Private room in Bed-Stuy, Brooklyn",Private room,509.0,2.0,2.0,,1,Rochester +1262,Entire suite with breathtaking views of NYC,Entire home/apt,1040.0,1.0,4.0,No smoking,8,Reno +1263,"Private, quiet Antique room on first floor duplex",Private room,1105.0,2.0,1.0,No parties,2,Eagle +1264,Chic Apartment for rent in East Village,Entire home/apt,430.0,2.0,2.0,No pets,2,Syracuse +1265,Times Square / Broadway Area - Midtown Manhattan,Private room,701.0,3.0,4.0,No visitors,2,Muskegon +1266,Quiet light-filled bedroom in the heart of Astoria,Private room,1120.0,2.0,4.0,,1,Owensboro +1267,Beautiful & sunny large room in a gorgeous apt.,Private room,414.0,30.0,5.0,No smoking,2,Fort Myers +1268,Huge room with private bathroom in Brooklyn,Private room,764.0,3.0,4.0,No parties,1,International Falls +1269,Cozy Private Room in Williamsburg,Entire home/apt,232.0,4.0,5.0,No parties & No smoking,2,Lewiston +1270,Park Slope Cluehouse,Entire home/apt,1039.0,1.0,5.0,No parties & No visitors,9,Dodge City +1271,Best in Greenwood. 1min walk & 15min to Manhttn,Private room,691.0,2.0,5.0,,1,Bishop +1272,Brand New Executive Studio,Entire home/apt,248.0,30.0,3.0,No pets,2,Presque Isle +1273,"Sunny, Open, East Harlem 1 bedroom",Entire home/apt,412.0,2.0,5.0,No pets & No parties,4,Erie +1274,Landmark Loft in Williamsburg Brooklyn 1 month min,Entire home/apt,834.0,31.0,1.0,No smoking,7,Traverse City +1275,West 57th Hilton Club in NYC - mid-November,Private room,294.0,3.0,3.0,No parties,2,Bristol +1276,Modern rowhouse in prime Ft Greene,Entire home/apt,601.0,3.0,3.0,No parties & No visitors & No smoking,3,Salisbury +1277,Times Square True NY Style Home With All Cultures!,Private room,218.0,2.0,2.0,,2,Ogden +1278,Large Private Room btwn Central/Riverside Parks,Private room,947.0,2.0,2.0,No smoking,1,Minot +1279,Spacious West Harlem Studio!,Entire home/apt,418.0,2.0,2.0,No children under 10,2,Dayton +1280,"Stay for a day, or two (or +), totally up to you!",Private room,742.0,1.0,4.0,No children under 10,2,Elko +1281,Simple bright room for 1-2 people.,Private room,1158.0,3.0,3.0,No children under 10 & No smoking,2,Riverton +1282,Comfortable Private Apartment in Heart of Flatbush,Entire home/apt,665.0,5.0,5.0,,3,Lewisburg +1283,Charming 1 BR in West Village,Entire home/apt,889.0,6.0,5.0,No smoking & No parties,2,Cedar Rapids +1284,Sunny 1 bedroom in the heart of Greenpoint,Entire home/apt,1036.0,2.0,3.0,No children under 10 & No parties,7,Hilo +1285,Spacious East Harlem Room,Private room,352.0,1.0,2.0,No parties,2,Walla Walla +1286,Cute and roomy Bushwick apartment!,Entire home/apt,1092.0,2.0,3.0,No smoking & No pets,4,Bethel +1287,Park Slope sweet cozy home! Wifi!,Private room,1014.0,5.0,3.0,,1,Deadhorse +1288,3 bedroom brownstone bklyn backyard,Entire home/apt,214.0,80.0,1.0,No visitors & No parties & No smoking,3,Portland +1289,Delnewyorkroom,Private room,217.0,5.0,3.0,No smoking,2,San Jose +1290,Spacious Room with Character in BK,Private room,1032.0,1.0,3.0,No children under 10,1,Richmond +1291,Private Room in Large Two-floor Apt w/ Backyard,Private room,967.0,2.0,3.0,No visitors & No children under 10,1,St. George +1292,Charming studio with Manhattan view.,Private room,398.0,7.0,2.0,,1,Des Moines +1293,Hell's Kitchen Cuteness!!,Entire home/apt,196.0,10.0,3.0,No smoking,3,Jackson +1294,Comfortable Sofa Bed For Rent In NYC. Female ONLY,Shared room,1106.0,2.0,5.0,No parties,1,Corpus Christi +1295,2 Bedroom Bushwick Apartment,Entire home/apt,520.0,3.0,5.0,No visitors & No smoking & No children under 10,3,Monroe +1296,"Cute, clean studio in Central Harlem",Entire home/apt,518.0,1.0,5.0,No pets & No visitors & No smoking,2,Tulsa +1297,"Cozy, quiet and location, location, location",Entire home/apt,125.0,4.0,4.0,No visitors & No parties & No children under 10,2,Providence +1298,Sunny and Spacious Room in Sunset Park Apartment,Private room,826.0,1.0,2.0,No visitors,1,Santa Rosa +1299,Bedroom (KING) & private bath - Brand New & Modern,Private room,60.0,1.0,1.0,No smoking,2,Atlantic City +1300,5mins to train; New York Modern Home- (5),Private room,758.0,2.0,5.0,No parties & No children under 10,1,St. George +1301,Living Room sofa Bed in Chelsea,Shared room,1144.0,2.0,3.0,No pets,1,Montrose +1302,"Huge room 25 min to manhattan. L,M,J,Z train.",Private room,63.0,2.0,5.0,No visitors,2,Albany +1303,Studio apartment near Monte Fiore hospital,Private room,790.0,1.0,2.0,No pets & No children under 10,2,Alexandria +1304,Amazing West Village ✌ Location is ♕NYC,Entire home/apt,758.0,1.0,2.0,No visitors & No children under 10,7,Portsmouth +1305,Brooklyn Bliss 3,Private room,953.0,2.0,2.0,No visitors,1,Myrtle Beach +1306,Cozy and romantic 1 bedroom apt near train,Entire home/apt,870.0,3.0,2.0,No pets,4,Roanoke +1307,Beautiful 1 bedroom in Upper west side,Entire home/apt,605.0,4.0,2.0,No children under 10,3,San Jose +1308,Private room&bathroom close to train/airport/city,Private room,244.0,1.0,4.0,No children under 10,1,Cape Girardeau +1309,Convenient & Sunny Room Close to Central Park,Private room,56.0,5.0,3.0,No visitors & No smoking & No children under 10,2,Yuma +1310,A Cozy Manhattan Sanctuary,Entire home/apt,88.0,40.0,1.0,,2,Deadhorse +1311,"Light-filled Apartment in great area, close 2 all!",Entire home/apt,343.0,1.0,5.0,No visitors,2,Minneapolis +1312,Cozy Loft in Flushing,Entire home/apt,815.0,3.0,1.0,No parties & No pets & No children under 10,6,Clarksburg +1313,Quaint Nolita Apartment,Private room,730.0,3.0,4.0,,2,Charlottesville +1314,,Entire home/apt,970.0,3.0,3.0,No visitors & No children under 10 & No pets,2,Alamosa +1315,Garden Apartment in South Slope,Private room,496.0,4.0,3.0,No visitors & No smoking,2,Green Bay +1316,Little Red and the big GWB,Private room,56.0,1.0,1.0,No pets,1,Everett +1317,XLarge 1BR apartment in EastVillage,Entire home/apt,675.0,5.0,3.0,No visitors & No parties,3,St. Petersburg +1318,"Cozy, Clean Private Room in Clinton Hill BK",Private room,386.0,3.0,3.0,No children under 10,2,Owensboro +1319,Sunny and Homie BK Apartment,Entire home/apt,387.0,3.0,1.0,No smoking,2,Scranton +1320,Sunny room in Williamsburg with view of Manhattan,Private room,836.0,2.0,5.0,No children under 10 & No parties,1,Grand Island +1321,"Lambe’s Vacation Rentals- Maspeth, Queens",Entire home/apt,164.0,4.0,1.0,No smoking & No pets,3,Laredo +1322,My Sunny Island Room,Private room,773.0,3.0,4.0,No children under 10,1,Portsmouth +1323,Cozy Brooklyn Studio,Entire home/apt,1152.0,2.0,3.0,No children under 10 & No pets,11,Memphis +1324,Beautiful & Private Manhattan Room,Private room,721.0,1.0,2.0,No parties & No smoking,1,Knoxville +1325,2 Bedroom Penthouse with Good Vibes,Entire home/apt,745.0,30.0,4.0,No smoking & No visitors,2,Traverse City +1326,Sunny room in European-style apartment,Private room,978.0,2.0,2.0,No smoking & No visitors & No parties,2,Bend +1327,"Nice room in Astoria, NYC",Entire home/apt,243.0,2.0,3.0,No parties & No children under 10,3,Sacramento +1328,"Quiet, Sunny Studio in Downtown NYC",Entire home/apt,692.0,2.0,3.0,No smoking & No visitors,2,Iron Mountain +1329,"Clean, Cozy Private Room with TV Uptown Manhattan",Private room,251.0,2.0,4.0,No visitors & No parties & No pets,1,Sarasota +1330,Beautiful brownstone apartment,Entire home/apt,638.0,2.0,3.0,No parties & No visitors & No children under 10,3,Watertown +1331,"Art-Packed, One-Of-A-Kind Triplex",Entire home/apt,867.0,2.0,1.0,,5,Birmingham +1332,1 room available for rent in 3 bedroom.,Private room,462.0,8.0,5.0,No children under 10 & No visitors & No smoking,1,Palm Springs +1333,GRAMERCY PARK~FURNISHED E.20's ST P,Entire home/apt,720.0,30.0,1.0,,6,Bemidji +1334,"Prime Williamsburg Modern Charm, steps to park",Entire home/apt,822.0,2.0,4.0,No pets,8,Fort Leonard Wood +1335,Sonder | 116 John | Intimate 1BR + Gym,Entire home/apt,651.0,29.0,2.0,No visitors,5,Eau Claire +1336,Fabulous City View Studio Loft,Entire home/apt,1199.0,30.0,1.0,No pets,8,Meridian +1337,Doorman Harlem Apt with Great Views,Entire home/apt,921.0,1.0,3.0,No visitors & No pets,7,Wilmington +1338,2 Large Bedroom Apt in quiet Forest Hills,Entire home/apt,428.0,2.0,1.0,No parties & No children under 10 & No pets,2,Rock Springs +1339,Huge Room with a View on Manhattan!,Private room,383.0,1.0,4.0,No smoking & No visitors,1,Corpus Christi +1340,"Empty 3 bedroom apartment in Bushwick, Brooklyn",Entire home/apt,459.0,5.0,5.0,No visitors,3,Chicago +1341,Prime Location of Flushing Queens 豪华卧室 旅途中的家 E,Private room,264.0,1.0,5.0,No pets & No children under 10,2,Alamosa +1342,Fashion Designer Studio - Entire Apartment,Entire home/apt,934.0,30.0,1.0,No smoking & No visitors & No parties,7,Detroit +1343,Spacious Prospect Heights Apartment,Entire home/apt,583.0,4.0,2.0,No parties,3,Newport News +1344,Bedroom for two in Clinton Hill,Private room,341.0,5.0,3.0,,1,Brainerd +1345,Beautiful Super Cozy Studio,Entire home/apt,649.0,1.0,3.0,No pets & No smoking,6,Greenville +1346,New Spacious 1BD w/ Private Bathroom Chinatown/LES,Private room,548.0,1.0,3.0,No smoking & No visitors,2,Ogdensburg +1347,Complitely Renovated in the heart of LES #14,Entire home/apt,914.0,30.0,5.0,,4,Pasco +1348,Two Bedrooms with Dedicated Bath,Private room,615.0,3.0,4.0,No pets & No smoking & No children under 10,2,Bozeman +1349,Park Side Zen Home - Terrace & next to CentralPark,Entire home/apt,250.0,3.0,3.0,No children under 10,3,Rockford +1350,2 BR/1 Ba Apartment Hamilton Heights,Private room,754.0,15.0,2.0,No parties & No pets,1,Cheyenne +1351,"Luxury Apartment close to Time Square, NYC",Private room,635.0,3.0,4.0,No children under 10,2,Pueblo +1352,"Spacious 1 BR, En Suite in Brownstone!",Private room,1004.0,2.0,3.0,No parties,1,Williston +1353,"Private Room and Bathroom - Gym, Laundry, Roof",Private room,1119.0,2.0,4.0,No smoking & No children under 10,1,Brunswick +1354,Your Own Flat in Historic Bed-Stuy District,Entire home/apt,923.0,4.0,4.0,No smoking,6,Palm Springs +1355,SPACIOUS Room Near Manhattan!,Private room,1090.0,4.0,4.0,No visitors,2,Melbourne +1356,Lovely Room in Sunny & Modern Apartment,Private room,1043.0,2.0,1.0,No children under 10,2,Fort Leonard Wood +1357,Park Slope Gem,Entire home/apt,642.0,3.0,3.0,No parties & No children under 10,3,Wichita +1358,Cozy Washington Heights Bedroom,Private room,1036.0,1.0,1.0,No smoking & No parties,2,Tallahassee +1359,Sonder | The Nash | Charming Studio + Gym,Entire home/apt,993.0,2.0,4.0,,7,Joplin +1360,Amazing Apartment- 2 bedroom 1 bathroom,Entire home/apt,764.0,2.0,2.0,,7,North Bend +1361,"New studio in Gowanus, Brooklyn",Entire home/apt,1173.0,10.0,1.0,No children under 10,3,Rapid City +1362,"Private room W/ private bathroom, shower, balcony",Private room,1188.0,1.0,2.0,No children under 10,1,Cleveland +1363,Cozy room in Brooklyn,Private room,906.0,8.0,3.0,No parties & No children under 10,1,Santa Maria +1364,"Lovely studio in Manhattan,New York",Entire home/apt,130.0,360.0,1.0,No parties & No children under 10 & No smoking,2,Worcester +1365,Sunny Yellow BUSHWICK apt 25min to city SLEEPS 6 !,Entire home/apt,200.0,2.0,2.0,No pets & No parties,2,Bellingham +1366,Brooklyn Duplex with Private Deck,Entire home/apt,451.0,10.0,4.0,,4,Knoxville +1367,Upper East Side 3 bed/3 bath Skyline view!,Entire home/apt,1171.0,4.0,5.0,No pets & No parties,3,North Bend +1368,Sonder | Stock Exchange | Lively 1BR + Sofa Bed,Entire home/apt,728.0,2.0,3.0,No parties,5,Martha's Vineyard +1369,"Private, Windsor Terrace Studio",Entire home/apt,989.0,1.0,2.0,,6,Cedar City +1370,BK's Finest SHARED ROOM 1 BED AVAILABLE,Shared room,50.0,1.0,1.0,No pets & No smoking & No visitors,1,San Juan +1371,Executive Suite near Central Park!,Entire home/apt,103.0,2.0,4.0,No pets,2,Bangor +1372,Evergreen Cozy Bed for Female Travelers 紐約民宿,Shared room,734.0,1.0,4.0,,1,Guam +1373,"Cozy Home, Great Location",Entire home/apt,1098.0,1.0,4.0,No parties & No smoking,4,Burbank +1374,Bronx Cozy Spacious Room close to NYC Subway,Private room,1018.0,3.0,2.0,No pets & No visitors & No parties,2,Montrose +1375,SINGLE ROOM AVAILABLE IN JAMAICA NEAR JFK & LGA,Private room,88.0,1.0,3.0,No visitors,2,Alpena +1376,2 BR in Theater Dist./Times Square,Entire home/apt,507.0,2.0,1.0,,5,Green Bay +1377,Bright room and private terrace with a view,Private room,322.0,2.0,3.0,No visitors & No smoking,2,Hartford +1378,Private Room in the Heart of SoHo,Private room,577.0,2.0,3.0,No children under 10,1,Birmingham +1379,Trendy studio btwn Grand Central and Central Park,Entire home/apt,587.0,3.0,3.0,No pets,5,West Palm Beach +1380,"Large Bright Room, East Village Apt",Private room,596.0,1.0,5.0,No children under 10 & No pets & No visitors,1,Cordova +1381,COZY NEST/Coffee and Bagel,Shared room,146.0,6.0,3.0,No smoking,1,Stillwater +1382,Private room in spacious BK community w/ parking,Private room,1193.0,1.0,4.0,No pets,2,Cody +1383,"Free parking, quiet, 5 stops on N/W to Manhattan",Entire home/apt,483.0,4.0,2.0,,4,Owensboro +1384,Super Chill Studio,Entire home/apt,418.0,2.0,1.0,No pets,3,Hyannis +1385,"Sunny, Newly Renovated, Private Bushwick Room",Private room,438.0,1.0,2.0,No visitors,1,San Luis Obispo +1386,Little Italy/Soho,Entire home/apt,579.0,2.0,4.0,No visitors & No parties & No smoking,5,Asheville +1387,••Cozy Em’s place••,Private room,267.0,2.0,4.0,No pets,2,Sault Ste. Marie +1388,Bright 1 Bedroom in the East Village,Entire home/apt,1007.0,4.0,2.0,No smoking & No pets & No children under 10,3,College Station +1389,Spacious 2bd apt with Manhattan view and sunset,Entire home/apt,78.0,2.0,5.0,No smoking & No children under 10 & No parties,3,Grand Forks +1390,Live like a local in the heart of Manhattan,Entire home/apt,746.0,6.0,4.0,No children under 10,5,Guam +1391,Small One Bedroom BK - Quiet n Cute,Entire home/apt,561.0,1.0,5.0,No visitors,2,La Crosse +1392,Room in cute apartment in South Williamsburg,Private room,937.0,5.0,1.0,No smoking & No children under 10,1,Kansas City +1393,Spacious Beautiful 1BR APT,Entire home/apt,104.0,1.0,5.0,,3,Kansas City +1394,Manhattan downtown large modern private room,Private room,476.0,1.0,2.0,No children under 10,1,Branson +1395,Large private live/work space; garden & parking,Entire home/apt,505.0,7.0,5.0,No children under 10,2,Wenatchee +1396,Inviting Photographer's Loft in Tribeca,Entire home/apt,626.0,5.0,3.0,No visitors & No smoking,4,Fort Lauderdale +1397,"Giant bedroom in Carroll Gardens, Brooklyn",Private room,99.0,2.0,5.0,No pets & No children under 10 & No smoking,2,Spokane +1398,"Cozy room in Bushwick, Dekalb L train, Backyard!",Private room,1076.0,2.0,2.0,No smoking,1,Binghamton +1399,Manhattan Sunny Private Room,Private room,650.0,5.0,2.0,No smoking,1,Baltimore +1400,Clean Cozy House less than 10 min from JFK :),Entire home/apt,494.0,1.0,2.0,No children under 10,4,Greer +1401,Turtle Bay/UN Brownstone Garden Apt,Entire home/apt,1061.0,4.0,1.0,No pets & No smoking,4,Salt Lake City +1402,Male room 2 minutes from East Broadway station III,Shared room,625.0,14.0,3.0,No pets,1,Jamestown +1403,The Most Efficient Efficiency Ever,Entire home/apt,719.0,2.0,2.0,No pets & No parties,6,Clarksburg +1404,City Views Close to SI Ferry,Entire home/apt,690.0,1.0,4.0,No parties & No pets & No smoking,3,Redding +1405,Brooklyn Loft,Entire home/apt,378.0,21.0,5.0,No parties & No children under 10 & No visitors,2,Marquette +1406,Tribeca/Chinatown Converted Loft,Entire home/apt,858.0,6.0,1.0,No children under 10 & No smoking,6,Manhattan +1407,Private Room in Bright Roomy 3br Brooklyn Apart.,Private room,626.0,4.0,4.0,No smoking,1,Wrangell +1408,Planta Baja Studio,Entire home/apt,637.0,1.0,5.0,No smoking,4,Augusta +1409,"private room in Redhook, Brooklyn",Private room,455.0,1.0,5.0,No parties & No visitors,1,Alamosa +1410,Resort style living. Ferry to city 5 min walk.,Private room,272.0,2.0,4.0,No parties & No smoking,1,Sitka +1411,Large Rooms with Bar and PullOut Prime Greenpoint,Private room,174.0,4.0,4.0,No visitors & No smoking & No pets,2,Appleton +1412,Gorgeous Spacious Bedroom In Ridgewood Queens,Private room,1001.0,7.0,5.0,No children under 10 & No visitors & No parties,1,Lake Charles +1413,HUGE Private Bedroom in Midtown Manhattan!,Private room,717.0,3.0,2.0,No visitors & No pets,2,Waterloo +1414,Adorable room on the Upper East Side!,Private room,405.0,20.0,3.0,No pets,2,Corpus Christi +1415,New Large 3bd furnished space. Walk to Fast Subway,Entire home/apt,,1.0,5.0,No visitors & No pets,3,Ogdensburg +1416,Bright and spacious room with mini-kitchen,Private room,692.0,1.0,1.0,No pets,2,Rock Springs +1417,M2 A cozy well lit room sleeps 2 on 2 single beds,Private room,779.0,1.0,2.0,No pets & No parties,1,Gillette +1418,PRIVATE BEDROOM and BATHROOM crown heights Aprtmnt,Private room,1047.0,1.0,5.0,No visitors,1,Santa Ana +1419,Cozy Apartment/Near LGA airport and subway,Entire home/apt,634.0,1.0,3.0,No smoking,3,Liberal +1420,Large 1 bedroom-Private Bath in 2 bed apartment,Private room,202.0,7.0,4.0,No parties,2,Gustavus +1421,Sunny One Bedroom,Entire home/apt,722.0,1.0,3.0,No pets & No children under 10,5,Chattanooga +1422,Prolonged Traveler's Dream( a month first & more),Private room,171.0,30.0,4.0,No visitors,2,Hartford +1423,Perfect Location 2bd w Bklyn Charm,Entire home/apt,64.0,3.0,1.0,No visitors & No smoking,3,Panama City +1424,Upper West Side Dream Apartment,Entire home/apt,478.0,1.0,1.0,No pets,3,Oakland +1425,Spacious Gramercy Park Studio w/ separate kitchen,Entire home/apt,395.0,2.0,4.0,No children under 10,3,Ashland +1426,Lux 2 Bedroom NYC Apt on the Hudson River!,Entire home/apt,737.0,30.0,5.0,No smoking,4,Rockford +1427,Comfy bed in Cozy Home - GRAND ARMY PLAZA,Private room,996.0,2.0,5.0,No smoking,1,Cleveland +1428,Brooklyn modern 2 BR Garden Floor,Entire home/apt,1153.0,1.0,3.0,No smoking & No parties & No children under 10,4,Brunswick +1429,Private Huge 2br Williamsburg Artist Apartment!,Entire home/apt,143.0,1.0,1.0,,2,Lansing +1430,Steps to Fifth Avenue Shopping Area,Private room,74.0,1.0,5.0,,2,Omaha +1431,Spacious & Comfy Apt in Heart of NYC,Entire home/apt,736.0,4.0,5.0,No visitors & No smoking,4,Cedar City +1432,Small and cozy room in the heart of Williamsburg,Private room,993.0,1.0,3.0,No visitors,1,Boise +1433,Spacious Village 1 bedroom - 5 star rated host,Entire home/apt,1058.0,4.0,4.0,No children under 10 & No smoking & No pets,3,Manhattan +1434,Family and Friendly Room,Private room,569.0,1.0,5.0,No smoking,2,Savannah +1435,Beautiful Brooklyn Vacation Home!,Entire home/apt,1058.0,2.0,4.0,No visitors & No smoking & No pets,3,San Angelo +1436,Charming exposed brick bedroom in the heart of LES,Private room,698.0,1.0,4.0,,2,Fargo +1437,Brooklyn Bedroom - Warm & Cozy Near Subway (1),Private room,339.0,2.0,5.0,No visitors & No children under 10,1,Wilmington +1438,Lower East Side Magic Room,Private room,706.0,,4.0,,1,Monterey +1439,cozy and extremely convenient apartment,Entire home/apt,1106.0,30.0,2.0,No children under 10 & No visitors & No parties,4,Petersburg +1440,Sleek Williamsburg Apartment With Gym,Private room,985.0,1.0,2.0,No visitors,1,Pasco +1441,"Comfy Brooklyn apt, near train and Manhattan",Entire home/apt,346.0,4.0,3.0,No children under 10,3,Victoria +1442,Amazing 3BR Triplex Family Apartment w/ Garden,Entire home/apt,867.0,30.0,4.0,,5,Redding +1443,"Dream Renovated Manhattan Apt, 5 stops to Midtown!",Entire home/apt,1131.0,3.0,5.0,,4,Christiansted +1444,Cozy private Apartment in Convenient Neighborhood,Entire home/apt,1057.0,1.0,3.0,No parties,9,Bakersfield +1445,Cozy 1-Bedroom Apartment 2 Blocks from the Subway,Entire home/apt,339.0,2.0,4.0,No parties,3,Pensacola +1446,Bushwick Music Mansion,Private room,217.0,1.0,1.0,No parties,2,Peoria +1447,One room in a 4 Bedroom apt.,Private room,1024.0,4.0,2.0,No children under 10,1,Hobbs +1448,Modern 1 Bedroom In Vibrant BK Neighborhood,Entire home/apt,403.0,4.0,2.0,No pets,3,Florence +1449,(Williamsburg) Large bedroom with private balcony,Private room,924.0,1.0,2.0,No pets & No parties,1,Raleigh +1450,Stylish 2bdr harlem brownstone,Entire home/apt,175.0,3.0,3.0,No visitors & No pets & No parties,3,Columbia +1451,"Center of manhattan, Times Square , 1min from st",Entire home/apt,893.0,7.0,3.0,,6,Tucson +1452,Bright & airy loft,Entire home/apt,87.0,2.0,5.0,No smoking,2,Pago Pago +1453,Amazing 3BR/2Bath Apt in the coolest Brooklyn Spot,Entire home/apt,627.0,3.0,4.0,No parties,6,Gulfport +1454,Beautiful apartment in awesome Clinton Hill!,Entire home/apt,61.0,15.0,4.0,No children under 10,2,Helena +1455,"Upper West / Morningside Heights Apt, Near Subway",Entire home/apt,290.0,3.0,3.0,No visitors,3,Chattanooga +1456,1 Block from Times Sq. and Broadway,Entire home/apt,1177.0,2.0,5.0,,8,Daytona Beach +1457,Bright duplex apartment,Entire home/apt,164.0,2.0,1.0,No children under 10,3,Tampa +1458,Location! View! X- Large Studio w/ Washer/Dryer!,Entire home/apt,811.0,7.0,3.0,,7,North Platte +1459,Beautiful Mid-century Modern One Bedroom Apartment,Entire home/apt,922.0,3.0,3.0,No smoking,5,Brownsville +1460,1 room in 3BR/1B in East Village,Private room,92.0,3.0,1.0,No pets,1,Greensboro +1461,Modern 1-bedroom apartment in Fordham,Entire home/apt,377.0,7.0,5.0,No pets,2,Rockford +1462,"Parkslope, Brooklyns Best Neighborhood!",Private room,283.0,2.0,3.0,No pets & No smoking & No children under 10,1,Scottsbluff +1463,LUXURY Building in the Heart of Manhattan!,Entire home/apt,361.0,12.0,3.0,,3,Sault Ste. Marie +1464,Bed Stuy Brooklyn Room AVail,Private room,201.0,1.0,3.0,,1,Champaign +1465,"lovely, spacious wmsbrg apt w deck",Entire home/apt,395.0,14.0,3.0,No smoking,2,Ontario +1466,Beautiful apartment in old-style Brooklyn,Entire home/apt,854.0,6.0,4.0,No parties & No children under 10,3,Hagerstown +1467,Fort Greene Parlor,Entire home/apt,407.0,2.0,3.0,No pets & No smoking & No children under 10,2,Killeen +1468,Nice Room in Charming Apt.,Shared room,968.0,1.0,3.0,No children under 10,1,Boise +1469,New York Hotel,Private room,618.0,7.0,5.0,No visitors & No children under 10,1,Dayton +1470,"Private room in large, central Nolita penthouse!",Private room,342.0,3.0,5.0,No visitors,2,St. Louis +1471,Sunny Studio in Brooklyn,Entire home/apt,776.0,3.0,4.0,,2,Lincoln +1472,"ENTIRE FLOOR,huge bedrooms,near SOHO,Chinatown,LES",Entire home/apt,1182.0,2.0,2.0,No smoking,2,Mission +1473,Cute Spacious Studio in Fort Greene,Entire home/apt,90.0,1.0,1.0,No visitors & No children under 10,3,Flint +1474,Spacious bedroom in Williamsburg,Private room,315.0,1.0,4.0,No pets & No parties,1,St. Cloud +1475,Aery Room near all,Private room,160.0,30.0,5.0,No children under 10,1,Montrose +1476,Gorgeous studio in midtown Manhattan,Entire home/apt,212.0,30.0,3.0,No parties & No children under 10,3,Richmond +1477,"Room in Queens, NY, near LGA.",Private room,982.0,1.0,2.0,No children under 10,2,Los Angeles +1478,Feel at Home,Entire home/apt,79.0,3.0,5.0,No parties,3,Florence +1479,Large cozy bedroom close to Times Square 43D4,Private room,403.0,7.0,4.0,No visitors & No children under 10,2,Richmond +1480,"One Bedroom Apartment in Brownstone in Harlem, NYC",Entire home/apt,1068.0,3.0,1.0,No parties,3,Pellston +1481,"Brooklyn Heights Contemporary Gem, 3 Bed, 2 Bath",Entire home/apt,550.0,3.0,3.0,No pets & No visitors,3,Worcester +1482,Light and Airy top floor apartment,Entire home/apt,759.0,8.0,5.0,No visitors & No parties,3,North Platte +1483,"Comfort, light and calm just 3 minutes from mid-town",Entire home/apt,1005.0,2.0,4.0,No visitors,4,Devils Lake +1484,AMAZING TIME SQUARE!!BRICK WALLS!!,Entire home/apt,910.0,30.0,1.0,No children under 10 & No pets,3,Newark +1485,AMAZING AAA Specious Studio South Expo Skylight!,Entire home/apt,71.0,30.0,5.0,No smoking & No visitors,3,South Bend +1486,Industrial Loft Living in NYC,Entire home/apt,178.0,4.0,3.0,No smoking,3,Philadelphia +1487,"Spacious Room in Woodside, Queens",Private room,1044.0,10.0,2.0,No smoking,1,Tulsa +1488,Sonder | Upper East Side | Lovely 1BR + Gym,Entire home/apt,130.0,29.0,2.0,No children under 10,2,Hilton Head +1489,"West 55th street, Lux 1bd Serviced Apartment",Entire home/apt,526.0,30.0,5.0,No parties & No children under 10 & No pets,2,Long Beach +1490,14th Street Oasis,Private room,1128.0,3.0,5.0,No smoking,1,Newport News +1491,The blue house,Entire home/apt,659.0,2.0,3.0,No children under 10 & No smoking & No pets,5,Presque Isle +1492,Bright Renewed Apartment 1 minute from A express train,Private room,557.0,2.0,3.0,No smoking,1,Walla Walla +1493,Modern studio in Harlem,Entire home/apt,638.0,5.0,4.0,No smoking,3,Ogdensburg +1494,Upper East Side Space and Access!!,Private room,151.0,1.0,4.0,No children under 10 & No pets,2,Oklahoma City +1495,Studio Apt -Upper East Side,Entire home/apt,559.0,2.0,2.0,No smoking,4,Duluth +1496,"1 private bdrm in Times Sq NYC, luxury building",Private room,995.0,2.0,1.0,No visitors & No children under 10 & No pets,2,Boston +1497,1 bedroom apartment in Nolita,Entire home/apt,107.0,1.0,5.0,,3,Hagerstown +1498,Take it now you won't find better,Entire home/apt,609.0,1.0,2.0,No pets,4,Dallas +1499,Comfy single private room at quiet area in Queens,Private room,265.0,2.0,3.0,No pets & No children under 10 & No parties,1,Provo +1500,Walk in Basement Room with Window,Private room,1072.0,1.0,5.0,No pets & No parties,2,Lansing +1501,"Charming , sweet , and cozy Manhattan apartment.",Entire home/apt,153.0,4.0,1.0,No parties,2,Concord +1502,Brooklyn Apartment with Great Natural Lighting,Private room,259.0,3.0,2.0,,2,Lexington +1503,"Comfy Brooklyn apt, near train and Manhattan",Entire home/apt,346.0,4.0,3.0,No visitors,3,Oakland +1504,No sleep till....Brooklyn!,Private room,714.0,1.0,5.0,,2,Charlotte +1505,Brooklyn Heights retreat,Entire home/apt,145.0,4.0,3.0,No children under 10,3,Fort Smith +1506,Beautiful Cozy room in NYC nearby Time square,Private room,688.0,3.0,5.0,No parties & No pets & No children under 10,1,Escanaba +1507,Brooklyn Charm in Clinton Hill,Private room,437.0,4.0,2.0,No smoking,1,Sioux City +1508,Mott Haven Dorm FF,Shared room,633.0,1.0,4.0,No visitors & No smoking,1,Stillwater +1509,Casually chic 2+bedroom townhouse,Entire home/apt,1048.0,5.0,3.0,No pets,8,Hobbs +1510,"1 bedroom, large williamsburg loft",Private room,930.0,7.0,2.0,No visitors & No children under 10 & No parties,1,Waco +1511,Hell's Kitchen Hideaway,Entire home/apt,687.0,2.0,2.0,No children under 10,4,Presque Isle +1512,Best of both world city and safety easy to get,Private room,1014.0,2.0,2.0,No pets & No smoking,1,Chicago +1513,Private room in a hip neighborhood,Private room,236.0,1.0,4.0,No smoking & No visitors & No pets,2,Fort Smith +1514,Serene bedroom in the heart of Fort Green,Private room,1114.0,2.0,4.0,No pets & No smoking & No children under 10,2,Washington +1515,"Large, sunny, private studio Apt 2R",Entire home/apt,925.0,2.0,5.0,No children under 10,5,Memphis +1516,Sparkling Clean BR in Unbeatable Location 웃,Private room,1045.0,1.0,5.0,No visitors & No children under 10,1,Tulsa +1517,2 bd 2 bathroom Apartment in Upper East Side,Entire home/apt,285.0,4.0,5.0,No smoking,3,Richmond +1518,PRIME Williamsburg MODERN studio in doorman bldg!!,Entire home/apt,899.0,4.0,1.0,No pets,2,St. Cloud +1519,Lrg 2 BR Duplex Top 2 Flrs Terrace West Village,Entire home/apt,733.0,3.0,3.0,No children under 10,3,Syracuse +1520,"Clean Private Room, 10 min from 2 subway lines.",Private room,306.0,1.0,3.0,No visitors & No parties,1,Grand Forks +1521,Studio Apartment in Murray Hill,Private room,826.0,3.0,3.0,No children under 10 & No pets,2,Santa Ana +1522,Cozy colorful kitchenette...,Entire home/apt,824.0,15.0,4.0,No pets,8,Casper +1523,Bright & Sunny 2-Bedroom in Hamilton Heights,Entire home/apt,995.0,4.0,5.0,No visitors & No children under 10,4,Pasco +1524,The Center Suites,Entire home/apt,1190.0,2.0,1.0,No pets & No parties & No visitors,10,Norfolk +1525,Manhattan Midtown West 3B Apartment,Entire home/apt,1178.0,5.0,2.0,No children under 10,9,Colorado Springs +1526,✪ Friends & Family Downtown ✪ 2BR / 3 Bed ✪ Best !,Entire home/apt,80.0,4.0,1.0,No visitors,3,Lafayette +1527,Cozy Retreat on Atlantic Ave,Entire home/apt,161.0,2.0,3.0,No pets & No visitors,3,Stillwater +1528,"Bright Zen Bedroom with TV, nr JMZ Subways",Private room,726.0,4.0,5.0,No pets,1,Baltimore +1529,LINCOLN CENTER / LUXURY 2BED 2BATH,Entire home/apt,683.0,30.0,4.0,,2,Barrow +1530,Spacious basement apartment,Private room,932.0,2.0,4.0,No parties,2,Omaha +1531,Cozy & Spacious Studio in Brooklyn,Entire home/apt,989.0,7.0,4.0,No children under 10,7,Saipan +1532,"Sunny, Quiet Urban Oasis w/ Elevator! Near Subway!",Entire home/apt,1080.0,2.0,1.0,No children under 10 & No smoking,4,Rapid City +1533,Private Oasis (A),Private room,157.0,2.0,3.0,No parties,2,Savannah +1534,"Cozy, bright Bohemian pad in NYC's Epic Village",Entire home/apt,478.0,5.0,5.0,No parties,4,Longview +1535,Clean 1br w/Parking Incl. also 10min near JFK/LGA,Private room,483.0,1.0,2.0,No visitors & No parties,1,Fort Lauderdale +1536,Sublet - Queen size bedroom in Bushwick,Private room,1010.0,5.0,3.0,No visitors,1,Decatur +1537,Brooklyn Style!,Entire home/apt,232.0,31.0,1.0,No visitors,2,Victoria +1538,Peaceful apartment near Prospect Park,Entire home/apt,1016.0,5.0,3.0,No parties & No pets,3,Charlotte Amalie +1539,Private room near LGA Airport with queen bed,Private room,890.0,1.0,5.0,No children under 10,2,Mosinee +1540,"Sunny, spacious Clinton Hill 1.5 BR",Entire home/apt,984.0,3.0,4.0,,2,Dayton +1541,Beautiful 2 bedroom private suite,Entire home/apt,289.0,28.0,1.0,No children under 10,3,Baltimore +1542,Lower east side artistic oasis,Private room,598.0,5.0,5.0,No pets & No children under 10,2,Louisville +1543,Wonderful private room in Williamsburg,Private room,337.0,1.0,4.0,,1,Madison +1544,Sunny room+Pvte office in huge loft,Private room,728.0,4.0,5.0,No parties,2,Chattanooga +1545,Beautiful Duplex North of Chelsea (Penn Station),Entire home/apt,1194.0,5.0,4.0,No parties & No children under 10,2,Provo +1546,Beautiful 2 Bedr in Landmarked Brooklyn Brownstone,Entire home/apt,701.0,3.0,5.0,No pets & No visitors,7,Clarksburg +1547,Stunning 2 bd home in historic limestone,Entire home/apt,453.0,7.0,,No parties,2,Salina +1548,Large Serene Garden Apartment Historic Harlem,Entire home/apt,251.0,2.0,5.0,No parties,3,Fairbanks +1549,Private clean room in Manhattan,Private room,800.0,3.0,2.0,No smoking & No pets,1,Salisbury +1550,Cosy room in Brooklyn! 2min to Sbwy,Private room,165.0,1.0,1.0,No visitors & No parties & No children under 10,2,Aspen +1551,SoHo- 1BD Apt- Incredible Location! With Rooftop,Entire home/apt,416.0,3.0,2.0,No parties,3,Brainerd +1552,1Bdrm DELUXE Fully Renovated CONDO Wyndham Midtown,Private room,1133.0,3.0,1.0,,1,Philadelphia +1553,Sunny Stuyvesant Private Bedroom Madison 1R-4,Private room,639.0,30.0,3.0,No parties & No children under 10,2,Wenatchee +1554,Charming Duplex in Manhattan,Entire home/apt,72.0,3.0,1.0,No visitors & No children under 10,2,Flint +1555,Cozy 1.5BD in Parkslope Brooklyn,Entire home/apt,1093.0,3.0,2.0,No parties,10,San Diego +1556,Bluebird Hells Kitchen 1-BR Apt Near Central Park,Entire home/apt,865.0,30.0,2.0,No smoking,6,Nome +1557,A great experience in a fashionable neighborhood,Private room,447.0,4.0,3.0,No visitors & No pets,1,Indianapolis +1558,Consider it home,Entire home/apt,892.0,26.0,3.0,No children under 10 & No pets,3,Milwaukee +1559,Lg Quiet Artist Home -Ditmas Park -,Entire home/apt,561.0,24.0,2.0,No visitors & No pets & No smoking,4,Knoxville +1560,Great pad in Brooklyn next to train,Private room,630.0,2.0,5.0,No children under 10 & No visitors,2,Cedar City +1561,Flatbush Fabulous,Entire home/apt,868.0,2.0,2.0,No children under 10,8,Escanaba +1562,2 BR/2BA UWS Luxury Apartment w Private Backyard,Entire home/apt,646.0,30.0,4.0,No pets & No smoking,2,Martha's Vineyard +1563,Welcome Palace!!!,Private room,218.0,2.0,4.0,No pets,1,Binghamton +1564,Delightful & Roomy 1 Bdrm Apt,Entire home/apt,911.0,1.0,1.0,No pets & No smoking & No children under 10,9,Milwaukee +1565,Cozy room in the heart of Astoria,Private room,53.0,2.0,2.0,,1,Redding +1566,Kids friendly 2 bedroom close to Subway and C.Park,Entire home/apt,935.0,2.0,4.0,No parties & No children under 10,2,Columbia +1567,Great apartment in the heart of trendy Bushwick.,Entire home/apt,582.0,2.0,2.0,No children under 10 & No parties,3,Birmingham +1568,THE crashpad for your Brooklyn adventure!,Private room,910.0,2.0,5.0,,1,Lihue +1569,"Spacious, Manhattan Home has a private room!",Private room,1120.0,3.0,3.0,No visitors,2,Oklahoma City +1570,Serenity Falls in lovely Astoria 15min to the city,Private room,778.0,2.0,3.0,No children under 10 & No visitors & No pets,1,Hyannis +1571,"Brooklyn Brownstone, 3-Bdr & Garden",Entire home/apt,400.0,3.0,3.0,No children under 10,2,Detroit +1572,Convenience and Privacy in this shared apartment,Private room,430.0,30.0,4.0,No parties & No pets & No children under 10,1,Lewisburg +1573,"Sunny, Spacious Brooklyn Room 1 Block From Train!",Private room,455.0,3.0,4.0,,2,St. Cloud +1574,New Apt -2 Blocks CENTRAL PARK Near COLUMBIA UNIV,Entire home/apt,906.0,7.0,5.0,No smoking,6,Chicago +1575,East Harlem 1 bed apt- central location!,Entire home/apt,1000.0,3.0,2.0,No pets,6,New Bern +1576,SUPER LUXURY FOR 2 IN FINANCIAL DISTRICT,Entire home/apt,206.0,30.0,5.0,,2,San Antonio +1577,Ash’s Place in Hell’s Kitchen,Entire home/apt,927.0,7.0,3.0,No parties & No pets,2,Brunswick +1578,Beautiful corner prewar apartment in Williamsburg,Entire home/apt,321.0,3.0,1.0,No parties,2,Staunton +1579,"Large, 2fl/2bdrm Williamsburg Apt",Entire home/apt,445.0,3.0,1.0,No visitors,2,Augusta +1580,Doll private room,Private room,444.0,5.0,4.0,No visitors,1,Cape Girardeau +1581,Gatsby Room 1,Private room,833.0,1.0,1.0,No visitors,2,Jackson +1582,Sonder | Stock Exchange | Vintage 1BR + Sofa Bed,Entire home/apt,99.0,2.0,3.0,No smoking,2,Lewiston +1583,5 Star Apt / Location Full of Character,Entire home/apt,119.0,10.0,3.0,No pets & No visitors & No parties,2,Pierre +1584,"1,800 sq foot in luxury building",Private room,839.0,2.0,1.0,No pets,2,Pago Pago +1585,Modern Renovated Luxury 1BR - Soho,Entire home/apt,664.0,1.0,4.0,No smoking & No children under 10 & No parties,3,Christiansted +1586,Stunning Brooklyn loft in a church!,Entire home/apt,1039.0,2.0,5.0,No visitors,7,Fairbanks +1587,Chic Eclectic Midtown Apartment,Private room,884.0,3.0,2.0,No children under 10,1,Grand Island +1588,Lincoln Center Luxury Sunny & Modern Br,Private room,225.0,28.0,5.0,No pets & No smoking,2,Charleston +1589,Beautiful 3 BR apartment steps from Central Park,Entire home/apt,949.0,31.0,5.0,No visitors,5,Ponce +1590,Beautiful Apartment in Center of Williamsburg,Entire home/apt,307.0,4.0,2.0,No visitors & No parties & No pets,3,Watertown +1591,Bright and Spacious Park Slope 1BR,Entire home/apt,208.0,1.0,1.0,No smoking & No pets,2,Jamestown +1592,A Serene ambiance that will sooth your soul,Entire home/apt,732.0,1.0,2.0,No parties & No visitors,4,Jackson +1593,Spotless Private Room near Airport and Subway!,Private room,389.0,2.0,2.0,No parties,1,Monroe +1594,Large Upper West Side 1 bedroom,Entire home/apt,486.0,1.0,5.0,No children under 10 & No smoking & No visitors,4,North Bend +1595,Garden room in a private house,Private room,939.0,45.0,4.0,No children under 10,1,Buffalo +1596,"Brand new space ! ... safe, peaceful and relaxing.",Private room,109.0,1.0,5.0,No parties,2,Presque Isle +1597,"Great Studio Apartment, 15-20mins from Downtown",Entire home/apt,595.0,3.0,3.0,No smoking,4,Salisbury +1598,room in a soho loft,Private room,914.0,3.0,2.0,No parties & No children under 10 & No visitors,2,Cleveland +1599,Madison Flat,Entire home/apt,318.0,4.0,3.0,No children under 10 & No parties & No visitors,3,Montrose +1600,"Large, Bright, Astoria Room",Private room,749.0,10.0,5.0,No parties & No pets,1,Alexandria +1601,Modern renovated private Apt/Washer & dryer.,Entire home/apt,400.0,21.0,4.0,No visitors & No pets,2,Hilo +1602,AMAZING 2BR Apartment Elev/laundry!,Entire home/apt,56.0,30.0,4.0,No parties & No children under 10 & No pets,2,Pensacola +1603,"Harlem ""Hostel"" for Single Travelers",Shared room,1199.0,2.0,4.0,No children under 10 & No pets,1,St. Petersburg +1604,Entire studio fully renovated,Entire home/apt,71.0,5.0,3.0,No parties,2,Cedar Rapids +1605,Sunny East Village Room w/ full kitchen,Private room,164.0,2.0,5.0,No children under 10,1,West Palm Beach +1606,"Modern & Artsy, Awesome Location",Private room,384.0,1.0,2.0,No children under 10 & No pets & No visitors,1,Petersburg +1607,Jazz it Up in Brooklyn,Private room,226.0,2.0,2.0,No parties,2,Great Falls +1608,"2 bedroom with yard, 4 mins to LGA",Entire home/apt,170.0,3.0,3.0,No children under 10 & No smoking,2,Mission +1609,One bed room apartment,Entire home/apt,387.0,2.0,5.0,No pets & No children under 10 & No visitors,2,Joplin +1610,Nolita/Soho Duplex Apartment with Rooftop,Entire home/apt,1081.0,1.0,3.0,No visitors,5,Fort Dodge +1611,Cute 1-bedroom uptown apt,Entire home/apt,584.0,2.0,2.0,No smoking,3,Stillwater +1612,Sunny quiet full floor E Village,Entire home/apt,704.0,2.0,4.0,No smoking & No visitors,4,Devils Lake +1613,1BR - Prime Williamsburg Location - Outdoor Space,Entire home/apt,1096.0,2.0,5.0,No pets,2,Yuma +1614,Cozy PRIVATE Studio Apartment UWS and Jazz Tour.,Entire home/apt,749.0,1.0,4.0,No parties,3,Deadhorse +1615,Private bedroom in great LES spot,Private room,1141.0,1.0,3.0,,2,Richmond +1616,"Bright, renovated apartment close to subway+city",Entire home/apt,1131.0,2.0,3.0,No visitors,10,Myrtle Beach +1617,Luxe Penthouse with Terrace/Upper West Side,Entire home/apt,967.0,3.0,1.0,No smoking,3,Rochester +1618,Swimming Pool/Gym/ Doorman 2 bed 2 bath W&D 5192,Entire home/apt,1184.0,30.0,3.0,No children under 10 & No visitors & No pets,10,Bozeman +1619,"Comfortable, Quiet, close to Airports, Manhattan",Private room,368.0,1.0,3.0,No pets,1,Rock Springs +1620,"Large & Comfortable, Close to Train",Entire home/apt,176.0,2.0,5.0,No smoking,2,Gulfport +1621,Homey & Cozy Near Pratt! (Cat Lovers Only),Private room,1086.0,1.0,3.0,No visitors & No children under 10,2,Concord +1622,sunshine room sublease,Shared room,288.0,1.0,4.0,,1,Harlingen +1623,Versatile private room in Harlem/Hamilton Heights!,Private room,398.0,4.0,5.0,No pets & No visitors & No parties,1,New York +1624,Newly renovated Room for 1,Private room,318.0,4.0,3.0,No parties,2,Brainerd +1625,Sunny 1 Bedroom Apt in Williamsburg,Entire home/apt,1008.0,2.0,1.0,No pets & No smoking,10,North Bend +1626,"Brooklyn Factory Conversion -Bright, Plant Filled",Entire home/apt,283.0,4.0,3.0,No parties & No visitors,2,Ketchikan +1627,New York City-Spacious Private Bedroom,Private room,974.0,2.0,5.0,No children under 10,1,Cedar City +1628,Beautiful Apartment on the Upper West Side,Entire home/apt,472.0,3.0,2.0,No visitors & No pets,4,Aspen +1629,Kings Highway Cozy House,Private room,1143.0,1.0,4.0,No children under 10 & No visitors,1,Punta Gorda +1630,Homey & Vivacious Brooklyn Bedroom,Private room,871.0,8.0,2.0,No smoking,2,Binghamton +1631,Cozy one bedroom in Upper East Side Manhattan UES,Entire home/apt,1138.0,1.0,5.0,No children under 10,9,Columbia +1632,2BR Apt - 20min to Soho,Entire home/apt,938.0,3.0,2.0,No pets,2,Jacksonville +1633,"Sunny Rm #2, Air Conditioner, Park,Express Q train",Private room,464.0,1.0,3.0,No smoking & No children under 10,2,Elmira +1634,E. W'burg Private Room near subway,Private room,272.0,15.0,2.0,No visitors & No smoking,2,Dallas +1635,Cozy Private Room for Eager Travelers! :D,Private room,420.0,3.0,5.0,No parties,1,Corpus Christi +1636,Perfect location in Manhattan,Private room,1048.0,1.0,2.0,No children under 10 & No parties,1,San Jose +1637,room with awesome view,Private room,386.0,1.0,3.0,No smoking,1,Sault Ste. Marie +1638,Large 1BR in the Heart of Hell's Kitchen!!,Entire home/apt,219.0,4.0,1.0,No visitors,2,Indianapolis +1639,Big Bright room in Bushwick,Private room,427.0,3.0,3.0,No parties,2,Victoria +1640,Sunny and large bedroom in Williamsburg Apartment,Private room,1056.0,1.0,4.0,No children under 10,2,Reno +1641,2 Bedroom Apartment East Village Amazing Location,Entire home/apt,51.0,2.0,3.0,No pets,3,Johnstown +1642,43rd St. Time Square-cozy single bed,Shared room,1192.0,1.0,4.0,,1,Waco +1643,"One stop from Manhattan, Fort Greene.",Entire home/apt,1081.0,7.0,3.0,No pets,5,Cedar City +1644,LIC 1 Bedroom 10 min to Times Sq -1 stop to NYC,Entire home/apt,913.0,2.0,5.0,No pets & No children under 10,7,Santa Rosa +1645,**Amazing Studio Balcony Steps from Time Square**,Entire home/apt,246.0,30.0,5.0,No parties & No visitors & No smoking,3,Iron Mountain +1646,Lg Bedroom Trendy Williamsburg BK,Private room,75.0,1.0,2.0,No parties & No children under 10,1,Fort Smith +1647,Nice 1 BR Apartment at Central Park,Entire home/apt,577.0,4.0,5.0,No smoking,3,Manchester +1648,Brooklyn's 3 bdrm Honeycomb,Entire home/apt,929.0,2.0,3.0,No pets & No parties,7,Monterey +1649,Artsy Spot in Spanish Harlem,Entire home/apt,959.0,2.0,1.0,No pets & No smoking,3,Peoria +1650,Comfortable Suite/Apartment in Manhattan,Entire home/apt,445.0,5.0,2.0,No children under 10 & No pets,3,Bethel +1651,Cozy corner near Empire State Building,Shared room,152.0,1.0,5.0,No pets & No children under 10 & No smoking,1,Scranton +1652,Multicultural House II,Entire home/apt,60.0,3.0,4.0,,3,Laramie +1653,Fantastic Value - Quiet Room Seconds from Graham L,Private room,320.0,28.0,4.0,No visitors,1,Charlottesville +1654,Private Sun-Splashed Studio Chelsea,Entire home/apt,905.0,1.0,4.0,No smoking & No visitors,4,Allentown +1655,Union Square Industrial Loft Apartment - 1 Bedroom,Entire home/apt,1093.0,1.0,2.0,No visitors,9,Honolulu +1656,Cozy Private Bedroom by Central Park in UWS,Private room,548.0,1.0,5.0,No children under 10 & No visitors,1,Lewiston +1657,Sunny room in PRIME Brooklyn!,Private room,139.0,4.0,1.0,No visitors,1,Grand Island +1658,Loft w/ Terrace @ Box House Hotel,Private room,1109.0,,,No smoking & No pets & No visitors,2,Cody +1659,Gowanus-Park Slope- Queen Studio Room,Private room,769.0,1.0,3.0,No parties,2,Bemidji +1660,Room in Down town Brooklyn Parkslop,Private room,79.0,1.0,1.0,No visitors,2,San Francisco +1661,Hidden Gem in Crown Heights,Entire home/apt,1128.0,1.0,5.0,No children under 10,8,Kodiak +1662,Cozy Brooklyn Greenpoint Apt.15 min to Manhattan,Entire home/apt,420.0,1.0,5.0,No children under 10,3,Monterey +1663,Quiet Brooklyn Apartment,Entire home/apt,104.0,7.0,2.0,No children under 10,2,Florence +1664,Two Bedroom Apartment Queens Near Subway to NYC,Entire home/apt,645.0,2.0,4.0,No parties,2,Valdosta +1665,Convenient Gem in Midtown East,Private room,347.0,12.0,4.0,No pets,1,Sault Ste. Marie +1666,Private Bedroom in Midtown -Heart of NYC,Private room,1143.0,8.0,2.0,No smoking,1,Norfolk +1667,Brooklyn Apartment with Great Natural Lighting,Private room,259.0,3.0,2.0,No pets,2,Kotzebue +1668,Private BR in a 2 BR Central Park West,Private room,793.0,2.0,4.0,No smoking & No pets & No children under 10,1,Mason City +1669,Private Room in Beautiful Brooklyn Private House.,Private room,296.0,60.0,1.0,No visitors & No children under 10 & No pets,2,Idaho Falls +1670,Midtown Manhattan great location (Gramacy park),Entire home/apt,992.0,30.0,3.0,No visitors & No parties,6,Cordova +1671,Stunning 4 Bed Tribeca Penthouse w/ Huge Terrace!,Entire home/apt,1008.0,30.0,3.0,No smoking & No pets & No visitors,8,Idaho Falls +1672,Midtown East furnished studio apartment,Entire home/apt,229.0,2.0,4.0,,3,St. Louis +1673,C Private Room By The Ferry,Private room,593.0,2.0,,No pets,2,Daytona Beach +1674,Quintessential Tribeca Loft,Entire home/apt,879.0,3.0,2.0,,4,Hattiesburg +1675,5 min away from LGA,Entire home/apt,195.0,1.0,5.0,,2,Walla Walla +1676,"Great apt, Next to 1 train.",Private room,228.0,3.0,5.0,No pets & No children under 10 & No smoking,2,West Yellowstone +1677,Large and furnished,Private room,345.0,7.0,4.0,No smoking & No pets,2,Orlando +1678,Modern 2 Bedroom by Memorial Sloan Kettering!,Entire home/apt,864.0,30.0,4.0,,8,Corpus Christi +1679,A CLASSIC NYC NEIGHBORHOOD-EAST 86TH/5TH AVENUE,Entire home/apt,1092.0,30.0,2.0,,2,New Orleans +1680,Private room in Manhattan,Private room,218.0,2.0,2.0,No visitors,2,Washington +1681,Top floor 1 bedroom soho/nolita,Entire home/apt,218.0,3.0,2.0,No parties & No smoking,2,Oakland +1682,Cozy & Clean private bedroom in Columbus Circle.,Private room,312.0,5.0,5.0,,2,Scranton +1683,Spacious 1BD Luxurious room in Queens NYC,Private room,1088.0,2.0,1.0,No parties & No visitors,2,Norfolk +1684,Modern cheap huge 1bd apt next to Central Pk & sub,Entire home/apt,791.0,1.0,5.0,No children under 10 & No visitors & No pets,4,Anchorage +1685,Private Bedroom in Greenpoint,Private room,169.0,2.0,4.0,No parties & No children under 10,2,Jacksonville +1686,Sunny 2 bd + Private rooftop on best GP street,Entire home/apt,293.0,3.0,3.0,No visitors & No parties,3,Billings +1687,Spacious new and luxurious apartment!,Entire home/apt,951.0,2.0,3.0,No children under 10 & No visitors,3,Great Falls +1688,Airy Brooklyn Limestone: 2 bedroom suite,Private room,603.0,3.0,3.0,No visitors & No children under 10,2,San Antonio +1689,Gorgeous Sun-filled Rooftop Apt in Prime Harlem,Entire home/apt,120.0,4.0,2.0,No parties,2,Joplin +1690,Cozy&Central:EmpireState/Highline/Times Square,Entire home/apt,628.0,3.0,3.0,No visitors & No pets & No smoking,4,Dallas +1691,Large suite with private bathroom (15 min to city),Private room,764.0,3.0,3.0,No pets,2,Richmond +1692,LES Studio with Large Patio,Entire home/apt,333.0,4.0,3.0,No children under 10 & No visitors,3,Pasco +1693,Cozy Apt in Centrally Located Brooklyn Heights,Entire home/apt,1040.0,2.0,5.0,No children under 10 & No smoking,8,Kahului +1694,Stunning Private Room in Awesome BK,Private room,688.0,3.0,4.0,No visitors & No children under 10 & No pets,1,Jackson +1695,"Cozy lofted room, with patio",Private room,731.0,1.0,1.0,,2,Texarkana +1696,For Female Cozy Shared Room in Midtown West,Shared room,401.0,1.0,3.0,No children under 10,1,Petersburg +1697,哥大附近卧室 Room on Upper West/Columbia,Private room,388.0,15.0,2.0,,2,Scottsbluff +1698,Big private room in Sunnyside NYC 7 min Subway,Private room,374.0,1.0,5.0,No visitors & No pets,1,Boise +1699,Livin' La Vida Brooklyn!!!,Entire home/apt,240.0,2.0,3.0,,3,Hagerstown +1700,"Beautiful Flatiron 3 Bedroom, 2 Bath Loft",Entire home/apt,241.0,5.0,2.0,No parties,2,Fairbanks +1701,A beautiful Room In A Safe Sheepshead Bay Area.,Private room,438.0,2.0,5.0,No parties,1,Raleigh +1702,HK AUTHENTIC TENEMENT UPDATED,Private room,162.0,1.0,3.0,No parties & No pets,1,Akron +1703,Cozy room in south Harlem - 10 mins to Columbia,Private room,564.0,1.0,5.0,No visitors & No children under 10,2,Austin +1704,Newly renovated duplex home in Central Harlem,Entire home/apt,289.0,2.0,3.0,No smoking,2,Spokane +1705,Sunny Room w/ Private Bath in Williamsburg!,Private room,507.0,3.0,2.0,No visitors & No children under 10,2,Burbank +1706,Charming Shared Place in East Manhattan,Shared room,350.0,2.0,4.0,No parties & No pets,1,Charlottesville +1707,Stunning duplex. EXCELLENT location. Fort Greene!!,Entire home/apt,160.0,2.0,5.0,No smoking & No pets,2,Wichita +1708,"Lovely, Modern, Garden Apartment",Entire home/apt,209.0,,3.0,No pets & No children under 10,2,Baton Rouge +1709,"Peaceful Retreat, One stop from Manhattan",Entire home/apt,391.0,3.0,2.0,No visitors,3,Sioux Falls +1710,Warm Artistic Wburg Loft Off 4 Train Lines,Entire home/apt,831.0,5.0,4.0,No pets,2,Bemidji +1711,Private Room in Bed-Stuy,Private room,1114.0,1.0,2.0,No smoking,2,Bellingham +1712,Private Room in Brooklyn,Private room,159.0,1.0,2.0,No children under 10,2,Bristol +1713,Artist Home 5 minute walk to Metro 30min from JFK,Shared room,1042.0,3.0,5.0,No parties,1,Christiansted +1714,Roomy Riverside Apartment,Private room,561.0,2.0,5.0,No pets,1,Marquette +1715,Comfy and Cozy [BEST RATE],Private room,401.0,1.0,5.0,No parties & No visitors,2,Bismarck +1716,Have Whole Apt! Prime Williamsburg!,Entire home/apt,130.0,1.0,5.0,No pets & No parties & No smoking,2,Staunton +1717,ROOM TWO,Private room,112.0,3.0,5.0,No children under 10,2,Minneapolis +1718,Private Sunny Bedroom in a Modern 2 Bedroom Co-op,Private room,554.0,1.0,5.0,No parties,1,San Jose +1719,Cozy room with queen bed in 4b,Private room,52.0,3.0,2.0,No pets,2,Duluth +1720,Large studio all to yourself,Entire home/apt,393.0,7.0,3.0,No pets,2,Norfolk +1721,Luxury 1BR in NYC + Great Amenities & Rooftop Ter.,Entire home/apt,558.0,30.0,3.0,No smoking & No pets & No parties,3,Brownsville +1722,Modern Clean Studio 2 blocks from Central Park,Entire home/apt,1015.0,1.0,4.0,,3,Pittsburgh +1723,Outdoor Space 2bed 2bath plus POOL,Entire home/apt,790.0,31.0,5.0,No children under 10 & No smoking,6,Kalispell +1724,"Cozy, Spacious and private apartment in NYC",Entire home/apt,481.0,2.0,4.0,,4,Tampa +1725,Beautifully Decorated Entire Floor of Brownstone,Entire home/apt,549.0,5.0,2.0,No pets & No smoking,4,Hagerstown +1726,The Manhattanville,Shared room,481.0,3.0,4.0,No parties,1,Ponce +1727,Master Bedroom- Beautiful Bed Stuy,Private room,808.0,,5.0,No smoking,1,Gillette +1728,"Midtown 1BR Duplex w/ Gym, Doorman + Great views by Blueground",Entire home/apt,525.0,60.0,4.0,,4,Pensacola +1729,Apt in Heart of Williamsburg,Entire home/apt,814.0,4.0,2.0,No parties & No children under 10,5,Montgomery +1730,Amazing room in Williamsburg House,Private room,74.0,2.0,3.0,No smoking,1,Adak Island +1731,Artistic apartment in the Heart of Manhattan,Entire home/apt,1169.0,4.0,5.0,No smoking,4,Martha's Vineyard +1732,Luxurious 1 Bedroom in Times Square,Entire home/apt,1029.0,30.0,4.0,No smoking & No pets,4,Hartford +1733,Huge Bedroom Next to Lines Q & 6 UPPER EAST SIDE,Private room,861.0,3.0,4.0,No visitors & No children under 10 & No parties,2,Joplin +1734,bedroom in front of prospect park w/2 queens beds,Private room,165.0,2.0,3.0,No children under 10,2,Binghamton +1735,Country Manhattan Private Bedroom Suite,Private room,427.0,5.0,1.0,No smoking,2,Kalamazoo +1736,Plant & pet-friendly LOFT in the UWS,Private room,822.0,3.0,3.0,No pets & No visitors,1,Minot +1737,Electric NYC + Luxury Room = Best vacation ever!,Private room,182.0,3.0,4.0,No children under 10,2,Adak Island +1738,Private Guest Suite Less than 10 min to JFK :),Entire home/apt,530.0,1.0,5.0,No parties & No visitors,4,West Yellowstone +1739,Harlem apartment,Private room,133.0,1.0,4.0,No pets,1,Albuquerque +1740,Sunny Williamsburg Artist's Loft,Entire home/apt,721.0,4.0,2.0,No smoking,7,Sheridan +1741,Sun Drenched Spacious Loft in NYCs Trendiest Hood,Entire home/apt,848.0,3.0,2.0,No children under 10,8,Trenton +1742,Hells Kitchen hideaway,Entire home/apt,494.0,5.0,4.0,No smoking & No children under 10 & No pets,4,Pago Pago +1743,Convenient / Spacious 1BR in Union Square,Entire home/apt,801.0,2.0,1.0,No children under 10,8,Bozeman +1744,"Manhattan: large 3bed/2bath, new reno, central LES",Shared room,768.0,60.0,3.0,No children under 10,1,Anchorage +1745,Totally Renovated Plush loft apartment,Entire home/apt,835.0,4.0,2.0,No pets,7,Fort Lauderdale +1746,Big Size Room in a 2 Bedroom Apt,Private room,850.0,4.0,4.0,No parties,2,Traverse City +1747,Cozy & Bright Room w/ Big Window!!,Private room,1069.0,30.0,2.0,No smoking,2,Monterey +1748,BEAUTIFUL 2 BEDROOM APARTMENT,Entire home/apt,282.0,3.0,4.0,No visitors,3,Worcester +1749,"Gorgeous 2 bedroom apt in Ditmas Park +1300 ft.²",Entire home/apt,713.0,2.0,4.0,No parties,5,Shreveport +1750,Clean One Bedroom Apartment,Entire home/apt,495.0,3.0,1.0,,2,Sioux Falls +1751,UES charm,Entire home/apt,227.0,1.0,4.0,No smoking & No pets,3,Jackson +1752,Brooklyn Garden Apartment,Entire home/apt,417.0,13.0,5.0,No children under 10,4,Long Beach +1753,Garden Apartment in Artist’s Historical Brownstone,Entire home/apt,1192.0,1.0,5.0,,10,Atlanta +1754,Cozy Harlem room w/ a view! Near Central Park!,Private room,554.0,30.0,4.0,No visitors,2,Bemidji +1755,Brooklyn Museum of Art 2 Bedroom Gem!,Entire home/apt,940.0,4.0,4.0,No smoking,6,Joplin +1756,Huge guest suite with private bath and kitchen.,Private room,476.0,5.0,5.0,No visitors,1,Redding +1757,"Private Bedroom on Upper West, Manhattan",Private room,1021.0,12.0,4.0,No visitors,1,Sitka +1758,Cozy room close to the city center 61F1,Private room,632.0,30.0,4.0,No visitors & No smoking,2,Hartford +1759,Room for rent shared bathroom,Private room,557.0,1.0,5.0,No smoking,2,Tucson +1760,E20's- Charm and modern Elevator studio- Quiet,Entire home/apt,1012.0,7.0,5.0,,9,Monroe +1761,Private Room in Brooklyn,Private room,1191.0,1.0,4.0,,1,Dubuque +1762,Location! Room in Bklyn 10 minutes to Manhattan U1,Private room,287.0,2.0,5.0,No visitors & No children under 10,1,Scottsbluff +1763,Lovely room in heart of Williamsburg,Private room,61.0,2.0,4.0,No pets,1,Nashville +1764,Cozy studio basement in heart of Brooklyn,Private room,489.0,2.0,4.0,No pets & No smoking & No children under 10,1,Syracuse +1765,Cozy Space in Crown Heights,Private room,72.0,1.0,1.0,No pets & No children under 10,2,Columbia +1766,Private room in Jackson Heights Apartment 2+,Private room,1081.0,1.0,1.0,No parties,1,Orlando +1767,Single private Bedroom in a beautiful House,Private room,954.0,3.0,5.0,No parties,1,Pittsburgh +1768,"Convenient Midtown 1BR w/ Gym, W/D, Doorman, Baclony, by Blueground",Entire home/apt,265.0,30.0,5.0,No pets,2,Dothan +1769,Williamsburg Apartment with Private Backyard,Entire home/apt,343.0,2.0,4.0,No parties,3,Honolulu +1770,Spacious and bright 1 bedroom apartment,Entire home/apt,523.0,7.0,4.0,No smoking,3,Indianapolis +1771,Your joyful and comfy space near 7 train,Private room,648.0,1.0,5.0,No parties,1,Gustavus +1772,#NycArtBNB Luxury West Village 1 Bedroom,Entire home/apt,704.0,1.0,3.0,No smoking,6,Ponce +1773,Sunny Artesian apartment,Private room,269.0,2.0,4.0,No visitors,2,Butte +1774,High Rise Luxury 1bdr Apt by Time Square,Entire home/apt,731.0,2.0,3.0,No parties & No children under 10 & No pets,6,Harlingen +1775,NYC pad without the NYC price tag,Entire home/apt,954.0,4.0,3.0,No parties & No visitors & No smoking,7,Rhinelander +1776,Cozy Cat Cave in Bushwick,Private room,661.0,1.0,5.0,No visitors & No smoking & No children under 10,1,Punta Gorda +1777,Cozy bedroom - Nearby Fort Greene Park & Dumbo,Private room,322.0,1.0,3.0,No smoking,1,Sanford +1778,Lifestlye Stay In Downtown Brooklyn,Entire home/apt,332.0,10.0,2.0,No children under 10,2,Madison +1779,Beautiful 2BR Flex Factory Loft,Entire home/apt,151.0,30.0,2.0,No smoking & No pets,3,Hattiesburg +1780,"3min to Grand Ave subway, newly built in 2015",Private room,815.0,30.0,4.0,No smoking,2,Killeen +1781,Quiet Queens Basecamp,Private room,202.0,1.0,2.0,No smoking & No parties,2,Cedar City +1782,Gorgeous sunny room in fabulous Brooklyn duplex,Private room,845.0,3.0,4.0,No parties & No smoking,1,Santa Ana +1783,Clean and Comfy Private Bedroom,Private room,867.0,1.0,1.0,,1,Brunswick +1784,A Discounted room in heart of New York !,Private room,1091.0,2.0,5.0,No parties,2,Ketchikan +1785,Apartment in the Heart of Manhattan,Entire home/apt,694.0,14.0,3.0,No smoking,3,Niagara Falls +1786,Huge Bed-Stuy Townhouse,Private room,967.0,7.0,4.0,,1,Sanford +1787,Sunny Lower East Side bedroom,Private room,961.0,2.0,3.0,,1,Philadelphia +1788,Cozy one bedroom apartment,Entire home/apt,321.0,1.0,5.0,No smoking,2,Watertown +1789,Clean & Spacious Apt. 2 min. to Subway,Entire home/apt,108.0,2.0,5.0,No parties,2,Greenville +1790,Gramercy & Madison Park CONDO 3 BED 2BATH,Entire home/apt,1194.0,3.0,2.0,No smoking & No pets,4,Idaho Falls +1791,Best Nest.,Private room,371.0,1.0,4.0,No pets,2,Los Angeles +1792,Industrial artsy loft in Williamsburg,Entire home/apt,905.0,5.0,2.0,No parties & No children under 10,2,Greer +1793,Country in the City,Entire home/apt,851.0,3.0,2.0,No pets,5,Sanford +1794,"New Apt near Central Park, Broadway, Museums",Entire home/apt,,3.0,2.0,No children under 10,3,College Station +1795,Private Room on the Upper West Side,Private room,90.0,2.0,4.0,No children under 10,1,Wenatchee +1796,Brand New Cozy Woodside Studio- Close to NYC,Entire home/apt,781.0,1.0,2.0,No pets & No smoking,2,Presque Isle +1797,"2nd Floor, Room # 3 (9'x12')",Private room,884.0,7.0,3.0,No children under 10,1,Eugene +1798,Very Private One Bedroom Apt near NYU in Manhattan,Entire home/apt,721.0,1.0,4.0,,6,Juneau +1799,Loft Bedroom in Duplex 3BR & Private Roof,Private room,479.0,2.0,3.0,No children under 10,1,Bangor +1800,Verona TwentyOne - RODFRED COMFORT,Entire home/apt,738.0,1.0,4.0,,6,Abilene +1801,Small Private Room in quiet Manhattan Apt,Private room,105.0,4.0,5.0,No visitors,1,Seattle +1802,"Spacious Private Room, lots of character & light",Private room,1087.0,1.0,3.0,No parties & No pets,1,Myrtle Beach +1803,"Wyndham Midtown: E 45th St., NYC",Entire home/apt,614.0,3.0,5.0,,3,Birmingham +1804,Spacious Bedroom in Full Floor East Village Apt,Private room,78.0,1.0,5.0,No smoking & No visitors,2,Mobile +1805,Apartment in beautiful Brooklyn Heights,Entire home/apt,1113.0,5.0,2.0,No smoking,10,Binghamton +1806,Cozy room in 3 BR Williamsburg apartment,Private room,173.0,2.0,1.0,,1,Pago Pago +1807,Cozy East Village Studio Apartment,Entire home/apt,910.0,2.0,3.0,No children under 10,3,Vernal +1808,"A Prime location private room furnished 3br,2b ap",Private room,505.0,5.0,5.0,,1,San Luis Obispo +1809,East Village/Union Square Flat,Entire home/apt,914.0,5.0,4.0,No children under 10 & No smoking,9,Gillette +1810,The Clean Comfortable Modern Lounge,Entire home/apt,331.0,2.0,2.0,No pets & No children under 10 & No smoking,2,Allentown +1811,Private bedroom in BedStuy!,Private room,1107.0,10.0,4.0,No smoking,1,Rockford +1812,"Quiet, Comfortable Studio in Chelsea/Village",Entire home/apt,222.0,1.0,2.0,No children under 10,2,King Salmon +1813,Spectacular apartment in Astoria near everywhere,Private room,110.0,2.0,3.0,No visitors,1,Baton Rouge +1814,Modern cozy stay,Private room,324.0,3.0,3.0,No parties,1,Boise +1815,Nice apartment 4 Springbreak in NY,Private room,391.0,3.0,4.0,No pets & No visitors,2,Charlotte +1816,"15 min Manhattan. Quiet, Safe, Clean, Good price",Shared room,239.0,7.0,4.0,No pets,1,Bethel +1817,Quiet room in apt Williamsburg 10 mins to City,Private room,639.0,2.0,2.0,No pets,2,Peoria +1818,Comfortable Space in the Center of Brooklyn,Entire home/apt,354.0,2.0,3.0,No visitors,2,Kearney +1819,High SkyView W&D GYM Doorman 5180,Entire home/apt,318.0,30.0,5.0,No smoking & No visitors & No children under 10,2,San Jose +1820,Beautiful 2 Bedroom in Quaint Cobble Hill,Entire home/apt,1081.0,6.0,4.0,No smoking & No parties,3,St. Cloud +1821,Sunny Space in Sunnyside - 15 min to Times Square.,Private room,665.0,1.0,4.0,No smoking,1,Hartford +1822,Bright & Spacious Artist loft in BK!,Private room,256.0,7.0,2.0,,1,Mission +1823,Artfully Renovated Brownstone Space,Entire home/apt,241.0,4.0,2.0,No children under 10 & No pets & No visitors,2,Jamestown +1824,NYC Midtown West 2-BR Apt near Theater District!,Entire home/apt,488.0,30.0,5.0,No parties & No children under 10,2,Hilton Head +1825,Calm & Clean 1 Bedroom in East Village/ Gramercy,Entire home/apt,368.0,5.0,5.0,No children under 10 & No pets,2,Dickinson +1826,Chic apartment in Brooklyn with stunning view,Private room,1113.0,5.0,1.0,No smoking,1,Bishop +1827,Brooklyn Cultural Chateau: Sunny Private Room,Private room,275.0,2.0,3.0,No smoking & No parties,2,Petersburg +1828,Warm Secluded Room in Flatbush (Rm# 1),Private room,1024.0,3.0,3.0,No parties & No smoking,2,Kahului +1829,Gay friendly,Private room,1004.0,1.0,3.0,No children under 10,2,Newburgh +1830,• Eye Catching Views | Luxurious 1 Bedroom •,Entire home/apt,1045.0,30.0,3.0,No visitors,6,Panama City +1831,"Bright, Williamsburg bedroom with private balcony",Private room,1021.0,2.0,2.0,No parties & No pets,2,Phoenix +1832,Cozy & Private Bedroom only 30-35 min to Manhattan,Private room,972.0,1.0,5.0,No pets & No visitors,2,Idaho Falls +1833,STUDIO.STYLE.BEDROOM+PRIVATE.BATHROOM+TOP.LOCATION,Private room,684.0,2.0,5.0,No children under 10 & No smoking,2,Fort Leonard Wood +1834,Spacious Studio Apartment with Full Size Kitchen,Private room,747.0,15.0,2.0,,2,State College +1835,Amazing Private room near Central Park,Private room,741.0,30.0,5.0,,2,Austin +1836,"*Solo NY Explorer | Comfy, Quiet Space",Private room,439.0,5.0,4.0,No pets & No parties & No smoking,2,Indianapolis +1837,First Class Suite in Midtown Manhattan | Manhattan Skyline View,Private room,105.0,1.0,5.0,No smoking & No parties & No pets,1,Paducah +1838,Beautiful Spacious 2 Bedroom Apt,Entire home/apt,1181.0,2.0,5.0,No pets & No parties,5,Adak Island +1839,Long Island City Living,Entire home/apt,315.0,3.0,3.0,No pets & No children under 10,3,Minot +1840,A King Size Bed in private room in NYC!,Private room,446.0,2.0,3.0,No children under 10 & No parties & No pets,2,Petersburg +1841,Pure luxury one bdrm + sofa bed on Central Park,Entire home/apt,243.0,2.0,3.0,No smoking & No parties,3,Rockford +1842,Great space,Entire home/apt,594.0,1.0,3.0,,2,Bozeman +1843,Bespoke 2 Building Garden Apartment,Entire home/apt,1140.0,6.0,2.0,,8,Washington +1844,South Williamsburg Condo - Rooftop & Balcony,Entire home/apt,62.0,3.0,3.0,No visitors & No children under 10 & No parties,3,Tyler +1845,A large room in 2br apartment,Private room,208.0,8.0,4.0,,2,Paducah +1846,High Tower Luxurious 1 Bedroom in Times Square,Entire home/apt,398.0,30.0,1.0,No children under 10 & No pets,2,Bethel +1847,Huge Space in Brooklyn's Most Beautiful Area,Private room,911.0,2.0,5.0,No visitors,1,Greenville +1848,"Clean & Sunny room in UES, Doorman+Sunroof+GYM",Private room,868.0,7.0,4.0,,1,Kalamazoo +1849,Modern Williamsburg Apartment,Entire home/apt,892.0,3.0,2.0,No visitors,4,Midland +1850,Massive Room available in Luxury UES Building,Private room,376.0,1.0,5.0,No visitors,2,Monroe +1851,Lincoln Center Area 1 Bed,Entire home/apt,1052.0,30.0,2.0,No parties,3,Montrose +1852,Stylish One Bedroom Apartment!!,Entire home/apt,1124.0,3.0,5.0,No parties,3,Grand Rapids +1853,Central & Cute Studio by Union Sq!,Entire home/apt,1001.0,3.0,2.0,No smoking & No parties,10,Sault Ste. Marie +1854,Plant and Book lovers paradise in Hip Williamsburg,Entire home/apt,266.0,3.0,2.0,No pets,3,Medford +1855,"Huge, Bright, clean Bushwick blocks from train",Private room,814.0,20.0,4.0,No parties,1,Newark +1856,AWESOME LOCATION STEPS TO L TRAIN !,Private room,108.0,28.0,3.0,,2,Flagstaff +1857,Luxury apartment in queens,Entire home/apt,333.0,2.0,5.0,No parties,2,Riverton +1858,Luxury Apartment in Williamsburg!,Entire home/apt,436.0,5.0,3.0,No parties & No children under 10 & No smoking,2,Appleton +1859,1 Bedroom Apt with Terrace in East Village-Terrace,Entire home/apt,172.0,4.0,5.0,No parties,3,Hagerstown +1860,Wow Historical Brooklyn New York!@!,Entire home/apt,126.0,3.0,5.0,,2,El Paso +1861,"Inviting , Cozy and Clean and room like home.",Private room,186.0,3.0,5.0,No parties & No visitors & No children under 10,1,Fort Wayne +1862,"Sunny, private room !Sheepshead Bay Area.",Private room,1034.0,5.0,5.0,No parties & No visitors & No smoking,1,Hobbs +1863,A WONDERFUL Place is Waiting 4U in Brooklyn !!!,Entire home/apt,160.0,3.0,3.0,No visitors,2,Myrtle Beach +1864,1 Bedroom,Private room,244.0,1.0,3.0,No pets,1,Florence +1865,Beautiful Studio on Tree-Lined St.,Entire home/apt,761.0,4.0,5.0,No parties,3,Yakutat +1866,Heart of Soho! Cute studio with clean finishes!,Entire home/apt,969.0,4.0,4.0,No pets & No smoking,5,West Palm Beach +1867,"@Ferry,2Bedroom/3beds.Private,Renovated/Stylish...",Entire home/apt,969.0,4.0,4.0,No visitors & No pets,4,Wichita Falls +1868,Skyline View Piano Room,Private room,395.0,1.0,5.0,No pets,1,Traverse City +1869,Bright and cozy bedroom in Williamsburg,Private room,499.0,1.0,2.0,No pets,2,Augusta +1870,"Brooklyn Love, Close to the City!!",Entire home/apt,655.0,2.0,2.0,No pets & No visitors & No children under 10,6,Montrose +1871,Best Location! Spacious 3BR in Center of NYC!,Entire home/apt,147.0,2.0,3.0,No smoking,3,San Jose +1872,Stunning 2 bedroom Apt - Breathtaking views!!,Entire home/apt,914.0,30.0,4.0,No pets,4,Manhattan +1873,Top floor of an amazing duplex,Private room,509.0,1.0,3.0,No parties,2,Philadelphia +1874,"Bright Guest Room with Balcony, Harlem",Private room,854.0,3.0,2.0,No children under 10,1,Everett +1875,Sunny Brooklyn Studio: 25 min to central Manhattan,Entire home/apt,199.0,4.0,2.0,No parties & No children under 10 & No pets,2,Lake Charles +1876,Eco private room for 4 best location to Mahanttan,Private room,1036.0,2.0,2.0,No smoking,1,Boston +1877,Private room in Wash Heights NYC,Private room,1154.0,4.0,2.0,No pets,1,Cordova +1878,Spacious 3-Bedroom Bushwick Duplex,Entire home/apt,992.0,5.0,2.0,No parties & No pets,9,Erie +1879,Amazing HK one bedroom apartment,Entire home/apt,221.0,1.0,1.0,No children under 10,2,Bristol +1880,Bedroom with Patio in Prime Williamsburg Location!,Private room,218.0,3.0,2.0,No parties & No pets,1,Columbia +1881,Zen & Cozy Room In Astoria,Private room,1113.0,3.0,2.0,No smoking & No children under 10,1,Brunswick +1882,Huge Williamsburg Loft (true loft!),Entire home/apt,82.0,2.0,2.0,,3,Saipan +1883,Hudson Yard - Bright Double Double Room,Private room,880.0,1.0,5.0,No pets & No visitors,2,Phoenix +1884,Gorgeous 1BR brownstone in Harlem close to trains,Entire home/apt,430.0,15.0,5.0,No visitors & No pets,3,Palm Springs +1885,Best Location in NYC | 2 Bedroom Gem!,Entire home/apt,636.0,3.0,4.0,No parties,6,Roswell +1886,Oversized bedroom with living space,Private room,908.0,20.0,3.0,No pets & No smoking,2,Grand Rapids +1887,*Fresh Budget Room,Private room,262.0,2.0,4.0,No visitors & No smoking,1,Dallas +1888,Sunny Room in Renovated Brooklyn Townhouse,Private room,626.0,3.0,3.0,No pets & No visitors,2,Honolulu +1889,"Huge, New and Green Oasis in Brooklyn",Entire home/apt,318.0,2.0,3.0,No children under 10,2,Tucson +1890,Sunny well-located room near Times Sq. 41D2,Private room,55.0,7.0,3.0,No smoking,1,Harrisburg +1891,Luxury private whole apartment 6 people Bushwick!!,Entire home/apt,787.0,2.0,2.0,No smoking,2,Hancock +1892,Brooklyn 3Bed 1Bath 8minute Subway 30 to Manhattan,Entire home/apt,916.0,2.0,3.0,No visitors & No pets & No parties,2,Williston +1893,"Sunny, Friendly, Brooklyn Apartment",Private room,874.0,1.0,4.0,No pets,2,Atlanta +1894,Cozy&Quiet&Modern sky life in New York,Private room,302.0,14.0,2.0,No parties,2,Sault Ste. Marie +1895,Charming One Bedroom in South Harlem,Entire home/apt,235.0,2.0,5.0,,3,Tallahassee +1896,PRIME apartment in East Village!,Entire home/apt,776.0,2.0,4.0,No pets,7,Binghamton +1897,Cozy/bright Clinton Hill studio,Entire home/apt,614.0,6.0,1.0,No visitors & No pets & No children under 10,3,Hancock +1898,Two Charming Bedrooms in the Lower East Side,Private room,435.0,1.0,4.0,,1,Cordova +1899,3-BDRM/2 BATH Apartment AMAZING LOCATION on UWS!,Entire home/apt,75.0,3.0,4.0,No children under 10,3,Evansville +1900,SOHO 1st Floor | Two Story Apt + Private Backyard,Entire home/apt,102.0,5.0,4.0,No smoking & No children under 10,3,Pocatello +1901,Clean and bright with a comfortable atmosphere,Private room,546.0,4.0,3.0,No pets & No parties,1,Wichita +1902,Brooklyn Retreat,Entire home/apt,1161.0,2.0,3.0,No pets,3,King Salmon +1903,New York I Love You 7 Bedrooms,Entire home/apt,400.0,3.0,4.0,No parties & No visitors,3,Traverse City +1904,Spacious room in front of prospect park,Private room,259.0,1.0,5.0,,2,State College +1905,Sunny Williamsburg Apt (1 month min stay),Private room,409.0,28.0,3.0,No parties & No smoking,1,Helena +1906,LL2,Private room,61.0,2.0,5.0,No parties & No pets & No smoking,2,Wichita +1907,"Lovely, charming and clean bedroom in Manhattan.",Private room,69.0,1.0,2.0,No smoking,2,Detroit +1908,Sunny Room in heart of hippest Manhattan 'hood,Private room,1010.0,15.0,4.0,No parties,1,Spokane +1909,"Spacious Apt on the Park, 1 blk from L Train",Entire home/apt,434.0,5.0,4.0,,4,Kotzebue +1910,Brooklyn clean and quiet,Private room,1087.0,1.0,3.0,No parties,2,Elmira +1911,Beautiful Manhattan 1br apartment close to subway!,Entire home/apt,573.0,3.0,4.0,No parties & No pets & No children under 10,3,Santa Maria +1912,Private Clean Room near Yankee Stadium.,Private room,75.0,2.0,5.0,No smoking,2,Valparaiso +1913,"Midtown West, very cozy place with your own room, prime location.",Private room,757.0,3.0,4.0,No visitors & No smoking,1,Duluth +1914,Cozy Room Times Square + ALL Museums Free Pass,Private room,840.0,5.0,3.0,No parties,1,College Station +1915,Newly Decorated Harlem Haven,Entire home/apt,697.0,4.0,4.0,No smoking,2,King Salmon +1916,Charming Duplex in Manhattan,Entire home/apt,72.0,3.0,1.0,No children under 10 & No pets & No smoking,3,Baltimore +1917,Cozy modern stay,Entire home/apt,100.0,2.0,1.0,No children under 10,2,Las Vegas +1918,A COZY NYC STUDIO APARTMENT 20 minutes to Union Sq,Entire home/apt,321.0,4.0,4.0,,2,Jacksonville +1919,Cozy Room in TWO BEDROOM Apartment.,Private room,701.0,5.0,5.0,No smoking & No pets & No visitors,2,San Jose +1920,Cozy East Village Room w/Bonus Cats,Private room,359.0,3.0,5.0,No visitors & No smoking,2,Lewiston +1921,"West 50th street, Lux 1bd Serviced Apartment",Entire home/apt,1081.0,30.0,5.0,,9,Elko +1922,HugeHipHome 5BR 2 Bath w/ Yard 15 min to Midtown!,Entire home/apt,756.0,2.0,4.0,No children under 10,2,Peoria +1923,#1 Rated 3br Park Slope Apt (1700sqf+Renovated!),Entire home/apt,169.0,3.0,5.0,No parties & No pets,2,Minneapolis +1924,Beautiful Room in Chic Area!,Private room,613.0,1.0,4.0,No pets & No parties & No smoking,1,Scranton +1925,Cozy room in heart of Williamsburg,Private room,676.0,1.0,5.0,No parties & No children under 10 & No visitors,2,Bismarck +1926,Shared 1br in Flushing for cheap,Private room,1067.0,1.0,5.0,No smoking,2,Escanaba +1927,Upper Westside studio for two or just you!,Entire home/apt,176.0,1.0,4.0,No pets & No smoking,3,Hibbing +1928,Brand New Luxury Apartment with Private Garden,Entire home/apt,1042.0,30.0,3.0,No smoking & No parties & No pets,5,Burlington +1929,"Dean Street, BROOKLYN!!",Private room,755.0,1.0,5.0,No children under 10 & No pets,2,Dickinson +1930,Spacious RM in Home w/Backyard/Balcony/Near Metro,Private room,729.0,3.0,3.0,No parties,1,Yakutat +1931,Renovated 1BR Penthouse Oasis In Brownstone,Entire home/apt,1172.0,3.0,3.0,No visitors & No parties,2,Duluth +1932,Spacious Serene Room Located in Prime E. Flatbush,Private room,176.0,1.0,3.0,,1,Sault Ste. Marie +1933,3 BEDROOMS/2 BATHS ENTIRE APARTMENT 10 MINS to JFK,Entire home/apt,1195.0,1.0,2.0,No smoking & No children under 10 & No visitors,7,Wichita +1934,HUGE space at the heart of Meatpacking - Chelsea .,Entire home/apt,566.0,2.0,,No visitors & No children under 10,2,Jackson +1935,Central Williamsburg Fab Large Room,Private room,764.0,1.0,3.0,No smoking & No parties & No visitors,1,Honolulu +1936,Bluebird Lavish 2-BR Apt Within Mile of Times Sq.,Entire home/apt,884.0,30.0,2.0,No parties & No pets,2,Dodge City +1937,"Lrg sunny aprtmt, UWS/Central Park",Entire home/apt,122.0,4.0,5.0,No smoking & No visitors,2,Mason City +1938,Financial District Private Room,Private room,1156.0,1.0,4.0,No children under 10 & No pets,1,Tampa +1939,BK NEST-Across Barclays & trains/City 10 mins away,Entire home/apt,629.0,2.0,4.0,,6,Niagara Falls +1940,Comfortable & Cozy Times Square Apt,Entire home/apt,499.0,2.0,3.0,No parties & No children under 10,3,Washington +1941,Luxury High Rise Apartment,Private room,515.0,1.0,2.0,,1,Harrisburg +1942,Good vibes a block from the J,Private room,306.0,1.0,3.0,,2,Billings +1943,Private Room by Bushwick with Piano & Guitar,Private room,324.0,1.0,5.0,No visitors,2,Lynchburg +1944,♛ Private & Beautiful West Village Townhouse 2BR,Entire home/apt,730.0,5.0,2.0,No visitors,6,Jacksonville +1945,Chill Vibes in Beautiful Fort Greene,Private room,518.0,2.0,4.0,No visitors,2,Syracuse +1946,Sunny room along riverside on 66th,Entire home/apt,217.0,12.0,1.0,No visitors & No parties,2,Philadelphia +1947,Studio King Wyndham Midtown 45 Hotel,Private room,348.0,3.0,2.0,No visitors,2,Portsmouth +1948,Greenwich / West Village 2 Bedroom,Entire home/apt,407.0,1.0,3.0,,2,Rock Springs +1949,Magical Brooklyn Space *20 MIN to Manhattan!*,Private room,207.0,1.0,4.0,No children under 10 & No pets,1,Lansing +1950,Designer 2-BR with Stunning Views in Williamsburg,Entire home/apt,1073.0,30.0,1.0,No pets,6,Yuma +1951,Swimming Pool! 2 Bed 2 bath Amazing Layout!5143,Entire home/apt,462.0,30.0,1.0,No visitors,2,Shreveport +1952,"A Prime location private room furnished 3br,2b ap",Private room,505.0,5.0,5.0,No visitors & No pets,1,San Jose +1953,Quiet room in Bed-Stuy,Private room,154.0,80.0,5.0,No children under 10 & No visitors,2,Devils Lake +1954,Fantastic view of the Hudson river -1 Bedroom,Entire home/apt,1073.0,3.0,2.0,No parties,7,Presque Isle +1955,Beautiful sunny studio.,Private room,971.0,2.0,3.0,No parties & No visitors & No children under 10,2,Evansville +1956,Spacious room in Brooklyn by the subway!,Private room,583.0,3.0,5.0,No smoking,2,Fort Lauderdale +1957,Charming 2 bed's in Midtown East Near U.N,Entire home/apt,644.0,28.0,2.0,,3,Bend +1958,Perfectly Located UpperWest Futon,Shared room,164.0,2.0,1.0,No pets & No children under 10,1,Madison +1959,Stay in a beautiful apartment&experience Harlem!,Private room,1105.0,2.0,3.0,No children under 10,1,Liberal +1960,Spacious Room in Sunny Brownstone (Ft. Greene),Private room,555.0,2.0,3.0,No parties & No children under 10 & No pets,2,Tulsa +1961,Spacious private room in a 3br in Bushwick,Private room,599.0,7.0,4.0,No children under 10 & No parties & No visitors,1,Des Moines +1962,Charming Apartment near Empire State Building,Entire home/apt,220.0,3.0,4.0,No pets & No parties & No visitors,3,Everett +1963,Upper East Side Cozy Room!!!,Private room,1115.0,2.0,4.0,No parties,2,Lexington +1964,"Murray Hill, The Heart of Manhattan",Private room,361.0,3.0,4.0,No smoking,1,Phoenix +1965,Stylish 1 BDR in Upper East Side,Entire home/apt,433.0,30.0,3.0,No smoking,3,Fort Lauderdale +1966,"Cozy, Clean Private Mini Studio in New York City",Entire home/apt,1128.0,31.0,4.0,No parties & No visitors,7,Laredo +1967,Room in two bedroom apartment,Private room,159.0,1.0,2.0,No smoking & No pets,2,Madison +1968,Light-filled South Slope Nest!,Entire home/apt,790.0,2.0,2.0,No children under 10,7,Duluth +1969,Private Room Avail. Now- Aug 20 Clinton/BedStuy,Private room,576.0,10.0,3.0,No children under 10 & No parties,2,Palm Springs +1970,Beautiful Bedroom: Spacious & Sunny!,Private room,862.0,1.0,3.0,,1,San Antonio +1971,"#1 PRIVATE STUDIO IN BX,15MINS NYC.",Private room,1128.0,2.0,4.0,No parties & No visitors,2,Wilmington +1972,Adorable sunny studio great area-For monthly stays,Entire home/apt,1026.0,30.0,1.0,No pets,7,Beaumont +1973,*NO GUEST SERVICE FEE* 1 Bed Studio Suite - Close to UN Headquarters,Entire home/apt,540.0,3.0,5.0,No pets & No smoking,3,Bristol +1974,CUTE Studio in the heart of Chelsea,Entire home/apt,783.0,6.0,4.0,No parties & No pets & No children under 10,3,Melbourne +1975,Private small accommodation specially for you!,Private room,274.0,1.0,5.0,No smoking & No pets & No children under 10,2,San Angelo +1976,spacious pretty east harlem apt.,Entire home/apt,470.0,1.0,3.0,No parties & No pets,3,San Francisco +1977,Room in modern apartment in hip Williamsburg,Private room,449.0,2.0,2.0,No pets & No visitors,2,Jackson +1978,NEWLY RENOVATED flat in doorman building,Entire home/apt,742.0,5.0,5.0,No children under 10,2,Juneau +1979,Spacious private room near LGA airport,Private room,459.0,1.0,3.0,No visitors,1,Tallahassee +1980,"Che’ Randall Deux +SoBro +10 minutes to Manhattan!",Private room,854.0,5.0,4.0,No children under 10,2,Orlando +1981,New york Multi-unit building in Williamsburg BR,Private room,123.0,3.0,3.0,No parties & No children under 10,2,San Angelo +1982,Entire apt right at the park!,Entire home/apt,390.0,2.0,1.0,,2,Bethel +1983,"Beautiful S Williamsburg 1 Bdrm near G,L,J,M,Z",Entire home/apt,,4.0,4.0,No smoking,3,Austin +1984,NYU/UNION SQRE/EAST VILLAGE-QUIET STUDIO EAST 25TH,Entire home/apt,1154.0,30.0,3.0,No pets & No visitors,11,Prescott +1985,HUGE DUPLEX apartment with BACKYARD,Entire home/apt,156.0,2.0,4.0,,3,Saginaw +1986,Beautiful room on Brownstone in Bushwick,Private room,759.0,2.0,2.0,No visitors & No parties,2,Yuma +1987,Perfectly located UWS - Cool Clean studio,Entire home/apt,885.0,5.0,5.0,,7,Fort Dodge +1988,Beautiful 1- bdrm apt in tranquil Inwood building,Entire home/apt,1091.0,2.0,4.0,No smoking & No pets,4,Knoxville +1989,Beautiful 2 Bedroom with Large Private Terrace,Entire home/apt,994.0,30.0,5.0,No visitors,3,Raleigh +1990,Queen Bed in williamsburg Brooklyn,Private room,295.0,1.0,5.0,No smoking,1,Manhattan +1991,Sunny 2 bedroom apartment!,Entire home/apt,201.0,1.0,2.0,No pets & No smoking,3,Syracuse +1992,Private room,Private room,822.0,4.0,2.0,No visitors & No children under 10,2,Florence +1993,"East 63rd street, Studio Serviced Apartment",Entire home/apt,446.0,30.0,5.0,No parties,4,Pullman +1994,Large Bedroom on upper west/columbia,Private room,98.0,1.0,3.0,No parties & No pets,2,Santa Maria +1995,Plush 2 Bedroom Midtown West NYC Apartment,Entire home/apt,943.0,30.0,5.0,No smoking,2,Fort Dodge +1996,Spacious 1 Bedroom in the Heart of Williamsburg,Entire home/apt,623.0,1.0,2.0,No children under 10 & No smoking & No parties,2,Fort Myers +1997,Gorgeous new apartment with amazing views,Entire home/apt,544.0,3.0,1.0,No parties & No smoking,3,Dillingham +1998,"Walk toTimes Square,Central Park,Museums, Broadway",Entire home/apt,224.0,1.0,4.0,No visitors & No children under 10,3,Sarasota +1999,Large and Charming East Village Apt,Entire home/apt,1190.0,3.0,5.0,,7,Des Moines +2000,MASSIVE ROOM IN BEAUTIFUL HARLEM BROWNSTONE,Private room,572.0,4.0,2.0,No visitors,2,Lewiston +2001,Private Room in Best Location!!,Private room,1154.0,1.0,4.0,No parties,1,Staunton +2002,Cute studio close to Penn Station and Times Square,Entire home/apt,1114.0,19.0,1.0,No parties & No smoking,3,Yakutat +2003,Modern New Condo 20 minutes to upper west side,Private room,1047.0,30.0,3.0,No pets,1,Newburgh +2004,(2R) Cozy and clean bedroom with private bathroom,Entire home/apt,57.0,2.0,4.0,No children under 10 & No pets,3,Staunton +2005,Stunning 4 Bed Tribeca Penthouse w/ Huge Terrace!,Entire home/apt,1008.0,30.0,3.0,,8,Monterey +2006,Industrial Brooklyn Duplex w/ Rooftops!,Entire home/apt,628.0,4.0,3.0,No smoking & No children under 10,3,Bloomington +2007,Clinton Hill room in two-bedroom apartment,Private room,975.0,1.0,5.0,No visitors,1,Rapid City +2008,Great 1 BR available in UES!,Private room,1116.0,1.0,1.0,,2,Hattiesburg +2009,Designers brownstone in Bed-Stuy,Entire home/apt,784.0,2.0,2.0,No smoking & No visitors,2,Great Falls +2010,Crown Heights Duplex Apt.,Entire home/apt,1145.0,4.0,1.0,No visitors,8,Lincoln +2011,"Spacious, Charming 2BR Apt in Trendy Bushwick",Entire home/apt,1177.0,2.0,4.0,No smoking,11,Providence +2012,"Charming, Spacious Apartment on theUpper East Side",Entire home/apt,636.0,5.0,5.0,No smoking,5,Victoria +2013,"Private Modern Studio in South Slope, Brooklyn!",Entire home/apt,944.0,3.0,4.0,,9,Paducah +2014,Luxurious Brooklyn Getaway - Two Bedroom Apartment,Entire home/apt,75.0,2.0,4.0,No children under 10,3,Ontario +2015,Modern 1 Bedroom Luxury Apartment in Dumbo,Entire home/apt,449.0,4.0,4.0,No pets,4,North Bend +2016,Convenient Downtown Apartment in LES/Chinatown,Private room,684.0,1.0,5.0,No pets,2,Barrow +2017,"Cozy, Comfy, Clean Mondern 2-Story Condo",Entire home/apt,962.0,1.0,3.0,No parties,4,Latrobe +2018,Private Guestroom in Landmark Bklyn Brownstone,Entire home/apt,1005.0,1.0,2.0,No pets,3,Walla Walla +2019,*PRIVATE* Loft 5 minutes away from LaGuardia,Entire home/apt,1183.0,1.0,3.0,No children under 10,5,Charlotte Amalie +2020,"ONLY 5 MIN TO MANHATAN, BRAND NEW APARTMENT",Private room,412.0,1.0,4.0,No smoking,1,Saginaw +2021,Large one bedroom on the Upper East Side.,Entire home/apt,799.0,2.0,4.0,No pets & No visitors & No parties,4,Washington +2022,High End Hand Crafted Manhattan Two Bedroom Beauty,Private room,530.0,5.0,2.0,No children under 10,1,Saginaw +2023,Awesome Room in the Heart of Bushwick!,Private room,404.0,7.0,4.0,No parties,1,Dubuque +2024,MASSIVE Studio Space,Entire home/apt,70.0,90.0,2.0,No children under 10,2,Roswell +2025,"Private studio and backyard, 12 mins drive to JFK",Entire home/apt,109.0,3.0,,No smoking & No parties,2,Omaha +2026,Affordable Space in Washington Heights Manhattan,Shared room,389.0,1.0,3.0,,1,Baltimore +2027,$89.00 Queen Size Bed,Private room,818.0,1.0,1.0,,1,Tampa +2028,#1 Yellow Block BnB/see at Net Flix Show Stay Here,Entire home/apt,873.0,4.0,5.0,No pets & No children under 10,5,Cedar City +2029,"Home 4 Medical Professionals - The ""Parasthesia""",Private room,1157.0,30.0,1.0,,1,Buffalo +2030,"NEW YORK CITY, 1 BDRM.(NEAR CENTRAL PARK & METRO)",Private room,720.0,,,No smoking & No pets & No children under 10,2,Niagara Falls +2031,Retro room in Astoria - 15m to Manhattan,Private room,225.0,2.0,4.0,No visitors & No smoking & No children under 10,1,Pasco +2032,STUNNING 3 BEDROOMS DUPLEX,Entire home/apt,611.0,3.0,2.0,No pets & No parties,2,Ontario +2033,Funky Chinatown Bunkbed for 2!,Private room,298.0,1.0,2.0,No pets & No smoking,2,Bethel +2034,VICTORIAN SUNFILLED APT DREAM VIEW,Private room,1062.0,1.0,2.0,No children under 10 & No pets,1,Rapid City +2035,Modern Large Apartment in Midtown East,Entire home/apt,281.0,5.0,5.0,No smoking,2,Bellingham +2036,Wyndham Midtown 45 (1 Bedroom Presidential) 2A,Entire home/apt,1194.0,3.0,2.0,No visitors & No pets,5,Wilmington +2037,Private Guest Loft in a Sunny Etsy-Lovers Apt,Private room,481.0,2.0,2.0,No smoking,2,Bozeman +2038,Gorgeous bedroom 8mins-JFK&the mall,Private room,1069.0,1.0,4.0,No children under 10,2,Jackson +2039,Downtown HighRise Luxury Building!,Private room,861.0,2.0,2.0,No pets & No visitors,2,Providence +2040,Family room #5,Private room,839.0,30.0,5.0,No parties,1,Green Bay +2041,Beautiful room at the heart of Bushwick,Shared room,250.0,30.0,2.0,No smoking,1,Pittsburgh +2042,Hudson River view Washington Height,Private room,487.0,1.0,5.0,No smoking & No children under 10,1,Sanford +2043,Private quiet studio,Entire home/apt,1171.0,1.0,4.0,No pets,10,Liberal +2044,One Bedroom Beauty in Bushwick,Entire home/apt,742.0,2.0,1.0,No smoking,7,Omaha +2045,Private: The Grey Room,Private room,954.0,1.0,2.0,No smoking,2,Wilmington +2046,Very cozy apartment in the heart of Ridgewood =),Entire home/apt,876.0,3.0,5.0,No visitors,6,Rapid City +2047,Better than hotel,Entire home/apt,445.0,5.0,1.0,No visitors,2,Salisbury +2048,Private Bedroom in Trendy Bushwick,Private room,858.0,4.0,3.0,No parties & No pets & No smoking,1,Scottsbluff +2049,Quiet & cozy 1 BR/balcony - Graham L in WBURG,Entire home/apt,583.0,2.0,4.0,No parties & No smoking,3,Petersburg +2050,1 br in a spacious 2 br apt in UES,Shared room,833.0,1.0,5.0,No parties & No smoking,1,Greer +2051,Architect's Bedroom in Large Brooklyn Apartment,Private room,112.0,7.0,4.0,No smoking & No parties,2,Key West +2052,upper manhattan rivervie new studio,Entire home/apt,772.0,3.0,1.0,,3,State College +2053,Cozy Harlem Home,Private room,987.0,1.0,2.0,No smoking & No parties,2,Los Angeles +2054,Lovely Hell's Kitchen Studio...,Entire home/apt,993.0,2.0,4.0,No smoking,2,Boise +2055,Modern 2 Bedroom Walk in. 3 min from Subway !,Entire home/apt,1167.0,2.0,2.0,,11,Scranton +2056,*Unique Master BR in Battery Park!*,Private room,785.0,2.0,3.0,No parties & No smoking,1,Raleigh +2057,"2 BR Brownstone Retreat, 2nd Fl.",Entire home/apt,516.0,3.0,5.0,No children under 10,2,Twin Falls +2058,Huge new modern chic reno 2 bed TSQ,Entire home/apt,817.0,20.0,5.0,No parties,7,Cape Girardeau +2059,Upper West Side studio with private terrace,Entire home/apt,1142.0,5.0,2.0,No children under 10 & No visitors,11,Austin +2060,Cute & Cozy Cobble Hill Apt,Entire home/apt,811.0,2.0,3.0,No parties & No visitors & No pets,8,Melbourne +2061,Beautiful 1 Bedroom in Grammercy,Entire home/apt,590.0,2.0,5.0,,5,Abilene +2062,,Shared room,1030.0,1.0,2.0,No parties & No smoking & No pets,1,Cape Girardeau +2063,Private Room in Artist's Loft,Private room,438.0,2.0,3.0,No pets & No smoking & No visitors,1,Hays +2064,Comfy Cozy,Entire home/apt,553.0,2.0,5.0,No pets,2,Charlottesville +2065,"New Designer 4 Bedroom, AC-Laundry. Next to Subway",Entire home/apt,1192.0,2.0,3.0,No parties & No smoking,4,Pittsburgh +2066,"2 Bed Apt Brighton Beach, Brooklyn by Beach",Entire home/apt,1001.0,1.0,3.0,No visitors & No children under 10,4,St. Cloud +2067,Stunning Full Floor Apartment in the Village,Entire home/apt,1061.0,4.0,2.0,,5,Dillingham +2068,Large bedroom 20 minutes away from Manhattan,Private room,1147.0,2.0,4.0,No children under 10 & No pets & No smoking,2,Lihue +2069,Large 1 room with bed in the heart of manhathan,Private room,401.0,7.0,5.0,No visitors & No pets & No parties,2,Devils Lake +2070,"Bright and cozy apartment in Cobble Hill, BK",Entire home/apt,59.0,2.0,3.0,No smoking & No parties,2,Montgomery +2071,new Private room Near Tompkins square park,Private room,462.0,3.0,5.0,,1,Eagle +2072,Private Room close to JFK & Manhattan,Private room,517.0,3.0,1.0,No smoking & No pets,2,North Platte +2073,SuiteBeach house near JFK & A Train to Manhattan,Private room,935.0,4.0,2.0,No parties & No visitors & No smoking,2,Branson +2074,"Private 1 bed 1 bath- Chelsea, Manhattan",Private room,782.0,3.0,3.0,No smoking,2,Kalispell +2075,"NOHO/EAST VILLAGE, PRIVATE 1/2 BATH",Private room,,2.0,2.0,No visitors & No smoking & No pets,2,Grand Rapids +2076,Warm Spacious Bedroom in Historical Harlem!!!,Private room,487.0,1.0,5.0,No children under 10,1,Stillwater +2077,Private room with sleeping loft,Private room,703.0,2.0,4.0,No children under 10 & No parties,2,Cincinnati +2078,Big and Bright Apartment with Balcony,Entire home/apt,1029.0,7.0,4.0,,7,Huntsville +2079,Lexington Avenue Luxury Condominium,Private room,278.0,1.0,2.0,,2,Saipan +2080,One of a Kind Chinatown 2BR Home w/ HUGE patio,Entire home/apt,431.0,7.0,3.0,No visitors & No children under 10 & No smoking,3,Petersburg +2081,Sleek and Modern Studio Apartment,Entire home/apt,602.0,15.0,4.0,No visitors & No parties,2,Texarkana +2082,"BRIGHT, clean, charming 1-BR in Prospect Heights",Entire home/apt,416.0,6.0,3.0,No parties,3,Twin Falls +2083,Museum Mile 1 BR - Madison Ave,Entire home/apt,144.0,30.0,2.0,,2,Bellingham +2084,Bedstuy/Bushwick 3 FLOOR TOWNHOUSE,Entire home/apt,251.0,5.0,2.0,No pets & No parties,2,San Luis Obispo +2085,Williamsburg Gem: Sleep up to 5,Entire home/apt,486.0,2.0,1.0,No visitors & No children under 10,3,Elko +2086,Your Home Away From Home!,Entire home/apt,346.0,3.0,3.0,No children under 10,3,Twin Falls +2087,Convenient 2 BRs in 4BR Apartment in Williamsburg,Private room,851.0,1.0,1.0,No smoking & No visitors & No children under 10,2,Dothan +2088,Modern Luxury Apartment in Heart of Williamsburg,Entire home/apt,567.0,2.0,2.0,No parties,3,Philadelphia +2089,Studio unit at Wyndham Midtown 45 NYC,Private room,1110.0,2.0,3.0,No smoking,2,Mason City +2090,East Village Pad with a View,Entire home/apt,639.0,7.0,2.0,No visitors,5,Baton Rouge +2091,Cozy Bedroom close to major subway lines!,Private room,573.0,1.0,4.0,No visitors,1,Christiansted +2092,Big bedroom at the heart of Manhattan,Private room,732.0,2.0,4.0,No children under 10,1,Peoria +2093,Spacious room in historic part of Manhattan,Private room,205.0,2.0,5.0,No parties & No visitors & No pets,2,Pasco +2094,Brooklyn Home,Private room,608.0,1.0,5.0,,1,Pensacola +2095,Private Room in Bed-Stuy Apartment,Private room,621.0,1.0,2.0,No smoking & No pets,1,Panama City +2096,Entire 1 Bedroom 1 Bath Central Park APT,Entire home/apt,380.0,2.0,2.0,No smoking & No parties,2,Riverton +2097,Super Cute 1 Bedroom Best Location,Entire home/apt,630.0,30.0,5.0,No children under 10 & No visitors,2,Bismarck +2098,Spacious with amazing views 1 bedroom apartment,Entire home/apt,660.0,7.0,2.0,No pets & No visitors,5,Charlotte +2099,"Sleek, modern apartment in trendy Bushwick",Private room,703.0,1.0,4.0,No pets,1,Hyannis +2100,"West 23rd Street, Lux Chelsea Studio svcd apt",Entire home/apt,1180.0,30.0,3.0,,10,Tampa +2101,Super cozy studio- the heart of Upper West Side,Entire home/apt,1132.0,3.0,1.0,No children under 10,4,New Bern +2102,Charming Tudor 1BD Uptown,Entire home/apt,1015.0,3.0,5.0,No visitors,9,Little Rock +2103,Enjoy a comfy apartment on the UWS,Entire home/apt,1199.0,1.0,4.0,No children under 10,8,Kahului +2104,Forest Hills 3 Bedroom Apartment,Entire home/apt,1055.0,1.0,5.0,No parties & No smoking & No visitors,4,Sarasota +2105,Sunny Railroad Apt,Entire home/apt,496.0,6.0,3.0,No smoking & No visitors,2,Oklahoma City +2106,20-25 minutes to downtown NYC/30-40 to midtown,Private room,364.0,30.0,4.0,No children under 10 & No smoking,2,Cody +2107,Subleasing-Room available starting May or earlier,Shared room,1026.0,30.0,2.0,No pets,1,Scranton +2108,"Bright, Modern Two Bedroom With Stunning Rooftop",Entire home/apt,734.0,3.0,5.0,No parties,5,Arcata +2109,Luxury STUDIO * PVT Entrance * WOW,Entire home/apt,406.0,1.0,4.0,No visitors,3,Longview +2110,Modern & Cozy Studio In Best East Village Location,Entire home/apt,499.0,2.0,3.0,No parties,4,Dayton +2111,Sunny Private Bedroom in Bushwick,Private room,89.0,2.0,4.0,,2,Nantucket +2112,Top on Manhattan,Private room,250.0,3.0,2.0,No smoking & No children under 10 & No parties,2,Birmingham +2113,"LOVE MANHATTAN 3 +NEAR TO YANKE STADIUM",Private room,192.0,1.0,4.0,No smoking,2,Belleville +2114,"Enormous sun-drenched loft in Bed Stuy, Brooklyn",Entire home/apt,330.0,2.0,3.0,No pets,3,Deadhorse +2115,YOUR HOME AWAY FROM HOME -- NYC WELCOMES YOU!,Private room,1027.0,3.0,5.0,No pets,2,Punta Gorda +2116,Blue House on the Hill,Entire home/apt,131.0,2.0,5.0,No smoking & No visitors & No parties,2,Lynchburg +2117,Super Sunny Room with Fireplace!,Private room,206.0,2.0,4.0,No smoking,2,Tallahassee +2118,Bed & Bagel~a charming 3 bedroom loft,Entire home/apt,1091.0,4.0,2.0,No smoking,5,Grand Forks +2119,Night with a king,Shared room,695.0,1.0,3.0,No children under 10,1,Wrangell +2120,Haven in the Heights,Shared room,960.0,1.0,3.0,No parties & No visitors,1,Islip +2121,Artsy Harlem Guest Space,Entire home/apt,1186.0,3.0,5.0,No smoking & No pets,8,Huntsville +2122,"Cute, clean studio in Central Harlem",Entire home/apt,518.0,1.0,5.0,No parties,3,Wichita +2123,Large room in Bushwick,Private room,1174.0,1.0,3.0,,2,Wenatchee +2124,Old World Charm in the Heart of Brooklyn R1,Private room,385.0,4.0,5.0,No parties & No pets,2,International Falls +2125,Lofted Bedroom in Awesome Greenpoint Loft!,Private room,110.0,14.0,2.0,No parties & No visitors & No pets,2,Raleigh +2126,Spacious and Sunny in Prime Park Slope,Entire home/apt,1038.0,1.0,4.0,No pets,8,Staunton +2127,ARTIST LOFT in WILLIAMSBURG,Private room,710.0,1.0,1.0,No parties,2,New Bern +2128,Charming studio in the heart of Astoria,Entire home/apt,519.0,4.0,4.0,No parties,4,Rockford +2129,Contemporary Brooklyn Lifestyle Apt /JFK Airport,Entire home/apt,610.0,2.0,2.0,No pets,6,Newark +2130,Large room in 2BR apartment,Private room,398.0,2.0,5.0,No visitors,2,Boise +2131,Charming 2 Bedroom Apt in Midtown,Entire home/apt,392.0,3.0,1.0,No children under 10,2,Worcester +2132,Bright 1BR in heart of Greenpoint,Entire home/apt,426.0,3.0,4.0,No visitors & No smoking,3,Harlingen +2133,"UES APT- NEAR CENTRAL PARK, MUSEUMS",Entire home/apt,1136.0,2.0,3.0,No children under 10 & No visitors & No smoking,7,Des Moines +2134,Large Modern 1 BR on UpperWestSide,Entire home/apt,481.0,7.0,1.0,No pets,3,Prescott +2135,Magnificent NYC 1 Bedroom Apt on the River!!,Entire home/apt,445.0,30.0,3.0,No pets,2,Syracuse +2136,One bedroom; private house; great location,Private room,301.0,2.0,3.0,No parties & No smoking & No visitors,2,Huntsville +2137,STAY HERE! Nice&Quite 1BD in Financial District!,Entire home/apt,339.0,1.0,2.0,,2,Meridian +2138,Modern 1BR Apt in the Heart Of NYC,Entire home/apt,418.0,7.0,5.0,No smoking & No children under 10 & No pets,3,Petersburg +2139,Large apartment walking distance to Williamsburg,Private room,1157.0,4.0,4.0,No parties & No visitors,1,Columbus +2140,Private Lrg bedroom in a convrtable 2 Bed Apt.,Private room,83.0,1.0,4.0,No children under 10,1,Latrobe +2141,Private Studio Apartment in Bushwick,Entire home/apt,160.0,2.0,3.0,No children under 10 & No smoking,2,Boise +2142,"Convenient to JFK, La Guardia Airport and Dining",Private room,98.0,2.0,1.0,No children under 10 & No parties,2,Pueblo +2143,Spacious & Homey Williamsburg 1BR Apartment,Entire home/apt,1004.0,5.0,3.0,No parties,4,San Diego +2144,Sunny & cozy 1BR in the heart of Fort Greene,Entire home/apt,58.0,5.0,1.0,No children under 10 & No smoking,3,Killeen +2145,Charming Bedroom,Private room,1188.0,4.0,3.0,No smoking,2,Gustavus +2146,Crown Hts Beauty: Quiet and Cozy!,Entire home/apt,1054.0,7.0,2.0,No children under 10,8,Santa Maria +2147,Chic Union Square One Bedroom,Entire home/apt,1096.0,3.0,5.0,No visitors,5,Dallas +2148,Home Away,Private room,827.0,1.0,5.0,No pets,2,West Yellowstone +2149,LOFT Apartment in Bed-Stuy,Entire home/apt,762.0,3.0,3.0,No visitors,5,St. George +2150,Brooklyn Studio with a View,Entire home/apt,1168.0,2.0,3.0,No parties,5,Syracuse +2151,Delight in Your Home Away from Home in NYC!,Entire home/apt,872.0,2.0,3.0,No pets & No smoking,5,Boston +2152,Cozy Beautiful Room Only 20min from Manhattan NYC!,Private room,122.0,7.0,1.0,No parties & No smoking,1,Tallahassee +2153,A large private room with indoor garden,Private room,427.0,3.0,3.0,No smoking,2,Dodge City +2154,Joy,Private room,444.0,15.0,3.0,No parties & No smoking,1,Rhinelander +2155,Spacious room in front of prospect park,Private room,259.0,1.0,5.0,No smoking,1,Houston +2156,Voted #1 Airbnb In NYC,Entire home/apt,934.0,2.0,3.0,No children under 10,3,Norfolk +2157,Your own hip and cozy 1BD apartment,Entire home/apt,1188.0,14.0,3.0,No children under 10,4,Ponce +2158,Charming garden apt in a brownstone,Entire home/apt,191.0,5.0,1.0,No parties & No pets,2,Everett +2159,Brick House: Unique Garden Apartment! King Bed!,Entire home/apt,859.0,2.0,3.0,No visitors & No parties & No children under 10,8,Staunton +2160,Private bedroom w/ roofdeck NO CLEANING FEE,Private room,1033.0,3.0,5.0,No pets,1,Durango +2161,5br Duplex. @ Ferry! Water&City Views!,Entire home/apt,733.0,4.0,3.0,No smoking,5,Pasco +2162,Prospect Brownstone Palace,Entire home/apt,230.0,4.0,3.0,No children under 10,3,Salisbury +2163,Private bedroom and bathroom in spacious apartment,Private room,51.0,1.0,2.0,No children under 10,1,Rapid City +2164,Long Island City Penthouse 1 stop 2 Manhattan,Entire home/apt,1152.0,30.0,5.0,,4,Burlington +2165,2 Bedrooms and One Bath Room,Entire home/apt,93.0,5.0,5.0,No smoking,3,Grand Island +2166,Huge Bedroom with Private Shower and Bathroom,Private room,1056.0,1.0,3.0,No smoking,1,Pasco +2167,Beautiful 1 BR 1 Bath in Boerum Hill Brooklyn,Private room,667.0,1.0,2.0,,2,Aguadilla +2168,Greenwich Village w Private Garden,Private room,310.0,2.0,2.0,No pets,1,Grand Island +2169,Lovely New York Guest Room,Private room,1138.0,1.0,5.0,No pets,1,Jacksonville +2170,Private Room & Private bathroom 2mins to subway!,Private room,522.0,1.0,1.0,,2,Moab +2171,Bright and modern apartment in Williamsburg!,Entire home/apt,865.0,6.0,4.0,No smoking,5,Dallas +2172,Nightly or long sublet. (12x12 room in 2BR),Private room,760.0,2.0,3.0,No parties,2,Victoria +2173,Whole apartment in Forest Hills,Entire home/apt,881.0,5.0,3.0,,5,St. Cloud +2174,Cozy gem in Greenwich Village @ border of SoHo,Entire home/apt,714.0,2.0,5.0,No visitors,6,Kansas City +2175,Charming Modern Bed-Stuy Brooklyn Townhouse W/Yard,Entire home/apt,1152.0,3.0,5.0,,11,Charlottesville +2176,Modern CottageStyle EarlyBirdDiscount! TimeSquare,Entire home/apt,177.0,3.0,4.0,No pets & No visitors & No parties,2,Bellingham +2177,Artist Loft-McCarren Park-Williamsburg-BrooklynNYC,Private room,705.0,2.0,1.0,No smoking,2,Salt Lake City +2178,Cozy studio basement in heart of Brooklyn,Private room,489.0,2.0,4.0,No pets,2,Burlington +2179,"Spacious, Cozy Bedroom in Bushwick",Private room,62.0,1.0,3.0,No parties & No visitors,2,Meridian +2180,Downtown NYC Convenient Private Room,Private room,688.0,1.0,4.0,,1,Cordova +2181,East Village Large Studio,Entire home/apt,957.0,2.0,1.0,No visitors & No parties,9,Memphis +2182,"Gramercy Park 1BR w/ Great Views, Gym, W/D, near the subway by Blueground",Entire home/apt,836.0,30.0,2.0,No pets & No children under 10,5,Latrobe +2183,Relaxing Stay in Brooklyn,Entire home/apt,838.0,1.0,3.0,No smoking & No parties,5,Honolulu +2184,Cozy Studio Heart Of Midtown!5160,Entire home/apt,515.0,30.0,2.0,No parties & No pets & No visitors,2,Gulfport +2185,CROWN HEIGHTS GUEST HOUSE 2L2R,Entire home/apt,467.0,3.0,2.0,No children under 10,3,Durango +2186,Trendy Brooklyn Room - 20mins from Manhattan,Private room,267.0,1.0,4.0,No children under 10 & No parties,2,Amarillo +2187,"Clean, Cozy, and Spacious Brooklyn Row House",Private room,107.0,2.0,4.0,No smoking,1,Alexandria +2188,Duplex 5 BR apartment in a historic brownstone,Entire home/apt,273.0,2.0,1.0,No children under 10 & No pets,2,Boise +2189,Gorgeous Duplex Apartment with a Garden,Entire home/apt,1172.0,3.0,2.0,,2,Sault Ste. Marie +2190,"Cozy, artistic room in Brooklyn Apt",Private room,1047.0,3.0,2.0,No pets,1,Columbia +2191,2 bedroom family luxury modern,Entire home/apt,333.0,6.0,4.0,No children under 10 & No pets,2,Pocatello +2192,Cozy perfection in the middle of everything,Entire home/apt,259.0,3.0,2.0,No smoking,2,Yuma +2193,"Bright, Clean and Spacious 2 bdrm top floor!",Entire home/apt,303.0,2.0,5.0,No pets,2,Erie +2194,Brooklyn Backyard Oasis,Entire home/apt,867.0,7.0,5.0,No smoking,4,Columbus +2195,Sun-Splashed Midtown 3BED Penthouse LOFT,Entire home/apt,155.0,6.0,5.0,No children under 10 & No visitors,2,Indianapolis +2196,Cozy Sunset Park Private Bed Room for 2 w/AC,Private room,530.0,1.0,5.0,No parties & No visitors,1,Provo +2197,MODERN ROOM IN CHARMING CLINTON HILL+ SWEET VIEW 3,Private room,1188.0,30.0,1.0,No visitors & No smoking & No pets,1,Harlingen +2198,Room in South Harlem near Central Park,Private room,703.0,3.0,4.0,No parties,2,Prescott +2199,"King-size bedroom, great location, next to park!",Private room,297.0,2.0,3.0,No pets,2,West Palm Beach +2200,Private Bedroom in Artist's Apartment,Private room,106.0,2.0,2.0,No pets,1,Wichita +2201,Midtown East Sutton Area Entire Apt,Entire home/apt,435.0,2.0,1.0,No pets,3,Valparaiso +2202,Chic Historic Harlem Brownstone,Entire home/apt,526.0,3.0,4.0,No smoking,2,Pensacola +2203,Modern Manhattan Brownstone -1 Block to Subway,Entire home/apt,490.0,1.0,4.0,No pets & No parties & No smoking,4,Champaign +2204,"Clean and cozy room , quite neighborhood.",Private room,937.0,7.0,4.0,No children under 10 & No parties,1,Hayden +2205,Two bedroom apt in Williamsburg,Entire home/apt,371.0,4.0,2.0,No visitors,3,Cincinnati +2206,NYC from Astoria Queens,Private room,346.0,3.0,1.0,No pets,2,Rapid City +2207,Breathtaking Light & View West Village Apartment,Private room,518.0,1.0,2.0,No smoking & No children under 10,2,Ogden +2208,Luxurious Manhattan 1 Bedroom,Entire home/apt,906.0,30.0,1.0,No children under 10,2,Evansville +2209,The Turquoise Room,Private room,679.0,4.0,3.0,No smoking & No pets,1,Dothan +2210,Beautiful townhouse apt on historic street,Entire home/apt,1056.0,14.0,3.0,No visitors & No parties,2,Hilo +2211,★City That Never Sleeps★ Hotel Room @ Midtown 45 ★,Private room,649.0,2.0,1.0,No smoking,2,Manhattan +2212,Spacious Bushwick Duplex Apartment,Private room,202.0,2.0,5.0,No children under 10,1,Midland +2213,Huge Terrace 2 bed 2 Bath POOl in building,Entire home/apt,1085.0,31.0,2.0,No visitors & No pets & No children under 10,9,Barrow +2214,"Budget stay, near transportation",Entire home/apt,845.0,2.0,1.0,No pets & No parties & No children under 10,6,Dodge City +2215,Beautiful brownstone duplex in prime UES location,Entire home/apt,751.0,4.0,4.0,,4,Yuma +2216,"Sunny Apt, park view - Jeffreson L",Entire home/apt,950.0,5.0,5.0,No visitors,3,Scottsbluff +2217,BIG GORGEOUS 1 bd 2 br in PRIME of Chelsea,Entire home/apt,885.0,7.0,5.0,No visitors & No pets & No parties,4,Mason City +2218,Hanover Square Lux Downtown 1 Bd(C) Serviced Apt,Entire home/apt,1109.0,30.0,5.0,No visitors & No pets,10,Missoula +2219,"Cozy, Bright room in Williamsburg",Private room,807.0,10.0,4.0,No smoking,1,Bismarck +2220,4 bedrooms private house,Entire home/apt,437.0,4.0,4.0,No pets & No visitors & No parties,2,Fort Lauderdale +2221,Sonder | Upper East Side | Stylish 1BR + Sofa Bed,Entire home/apt,812.0,29.0,5.0,No pets,3,Salina +2222,"20 min to Manhattan, Spacious 2BD in Brooklyn, NYC",Entire home/apt,838.0,4.0,2.0,No smoking & No pets,8,Akron +2223,"Luxury Tribeca 1BR w/ Gym, Doorman + Roof deck by Blueground",Entire home/apt,501.0,30.0,3.0,No visitors & No parties,2,Pocatello +2224,Awesome Renovated Studio in Brooklyn NYC,Entire home/apt,65.0,1.0,4.0,No children under 10 & No visitors,2,Cape Girardeau +2225,Enormous Private Room in Shared Apartment,Private room,198.0,5.0,3.0,No pets & No children under 10,1,Los Angeles +2226,"West Street, Upscale Svcd 1bd Dwtn Financial Area",Entire home/apt,448.0,30.0,1.0,No visitors,2,Cody +2227,Sunny and Spacious 3 Bedroom Apt in West Village!,Entire home/apt,572.0,3.0,1.0,No parties,5,Latrobe +2228,Brownstone Studio,Entire home/apt,396.0,3.0,4.0,No smoking,3,Fayetteville +2229,"Comfortable bed, lighting, fresh linens, workspace",Private room,518.0,1.0,3.0,No children under 10 & No parties & No pets,1,Washington +2230,Spacious master bedroom in Forest Hills,Private room,151.0,2.0,1.0,No parties & No children under 10,2,Hayden +2231,Morningside Heights Gem,Entire home/apt,682.0,3.0,5.0,No pets,6,Traverse City +2232,apartment for 6ppl in SOHO,Entire home/apt,398.0,2.0,2.0,No smoking & No parties & No pets,3,Hays +2233,Private room in super location in lower Manhattan,Private room,621.0,14.0,5.0,No children under 10 & No pets,2,Augusta +2234,1800sf Urban Goddess Brooklyn Loft,Entire home/apt,898.0,2.0,2.0,No pets & No parties,4,St. Louis +2235,Cozy Room 1 Block from the Train,Private room,948.0,10.0,2.0,No pets,2,Akron +2236,PRIVATE SUNNY ROOM IN BUSHWICK!,Private room,159.0,3.0,2.0,No pets & No smoking,2,Provo +2237,Amazing 3 BEDROOMS Brooklyn,Entire home/apt,1053.0,3.0,4.0,No pets,9,Ashland +2238,Spacious & Lofted in Williamsburg,Private room,1114.0,20.0,1.0,No visitors,1,Williston +2239,"@Ferry,HUGE 2Br/3beds. Private,Renovated/Stylish..",Entire home/apt,677.0,4.0,5.0,No visitors & No parties,5,Lewisburg +2240,Sun-drenched corner apartment in East-Williamsburg,Entire home/apt,523.0,6.0,3.0,No pets & No visitors & No children under 10,3,Kalamazoo +2241,Bed Stuy Brownstone 50 steps to the Train :),Private room,1055.0,1.0,2.0,No parties & No children under 10,1,Gainesville +2242,"3BR/1.5BA East Harlem - Families, Space , Quiet!",Entire home/apt,616.0,1.0,3.0,No smoking,2,Wilmington +2243,"Sunny, couple-friendly BedStuy Apartment",Private room,701.0,1.0,4.0,No smoking,2,Evansville +2244,曼哈顿林肯中心一室一厅,Private room,1152.0,1.0,2.0,No pets,1,Daytona Beach +2245,Studio Apartment in Midtown NYC,Entire home/apt,963.0,7.0,3.0,,9,Owensboro +2246,"Room close to Prospect Park, minutes to NYC!",Private room,835.0,2.0,4.0,,1,Birmingham +2247,Luxury Highrise Near Times Square,Entire home/apt,485.0,7.0,1.0,No children under 10 & No smoking,3,Sault Ste. Marie +2248,BRIGHT CHARMING STUDIO ON UPPER EAST SIDE,Entire home/apt,496.0,30.0,2.0,No smoking,2,Fort Lauderdale +2249,Peaceful Studio In South Williamsburg,Entire home/apt,151.0,2.0,2.0,No children under 10,3,Spokane +2250,Sunny livingroom in 1 bedroom. Couch only though.,Private room,1134.0,1.0,3.0,No parties,2,Rock Springs +2251,Central Park Loft,Entire home/apt,591.0,1.0,4.0,No pets & No children under 10 & No smoking,3,Plattsburgh +2252,Newly Renovated with Lovely Backyard!,Entire home/apt,808.0,3.0,1.0,No parties & No children under 10 & No pets,7,Stillwater +2253,Cozy & Private Bedroom only 30-35 min to Manhattan,Private room,972.0,1.0,5.0,,1,Missoula +2254,Organic Bohemian Pad in Brooklyn,Private room,1142.0,1.0,4.0,No children under 10,1,Lincoln +2255,Private Studio near LaGuardia Airport and Mahattan,Private room,910.0,3.0,5.0,No pets,1,Lynchburg +2256,Beautiful Room in Historic Hamilton Heights,Private room,144.0,21.0,4.0,,2,Newport News +2257,UES Bliss,Entire home/apt,136.0,4.0,2.0,No smoking,2,Tyler +2258,Spacious Harlem Home,Entire home/apt,694.0,3.0,4.0,No visitors,3,Santa Rosa +2259,Sunny Private Bushwick Bedroom,Private room,727.0,1.0,5.0,No visitors & No smoking,2,Greer +2260,Large family loft in the best Chelsea location,Entire home/apt,305.0,5.0,3.0,No children under 10 & No pets & No visitors,2,Redding +2261,Gorgeous Waterfront Studio: Williamsburg,Entire home/apt,1050.0,3.0,3.0,,10,Springfield +2262,Boutique Studio,Entire home/apt,162.0,5.0,5.0,No pets,2,Syracuse +2263,Mesmerized Penthouse,Entire home/apt,678.0,1.0,4.0,No children under 10,2,Gainesville +2264,"Greenpoint, BK 1 Bedroom, Couple/Solo Traveler",Entire home/apt,574.0,3.0,5.0,No parties & No visitors & No children under 10,2,Bozeman +2265,Spacious Williamsburg 1 bedroom!,Entire home/apt,455.0,1.0,1.0,No smoking,2,Austin +2266,Furnished one bedroom in Midtown West.,Entire home/apt,279.0,30.0,2.0,No parties,3,Stockton +2267,Convenient Financial District Studio,Entire home/apt,219.0,2.0,3.0,No pets & No visitors & No parties,3,Traverse City +2268,"Modern, Elegant, Private, Two-bedroom",Entire home/apt,546.0,3.0,5.0,,3,Albuquerque +2269,Private room 20mins from the city!,Private room,768.0,4.0,3.0,,1,Waterloo +2270,"Hip FiDi Studio w/ Resident's Bar, Golf Simulator, Pro Gym by Blueground",Entire home/apt,393.0,30.0,4.0,No parties & No visitors,3,Petersburg +2271,Modern & Spacious Apartment in Central Harlem,Entire home/apt,1059.0,3.0,3.0,No pets,9,Myrtle Beach +2272,Comfy Entire Studio Apartment Near Central Park,Entire home/apt,682.0,1.0,1.0,,2,Texarkana +2273,Thoughtful UWS Studio w/ Gym near Central Park by Blueground,Entire home/apt,1105.0,30.0,5.0,No visitors,8,Appleton +2274,Spacious studio in LIC,Entire home/apt,455.0,4.0,4.0,No pets & No visitors,3,Yakima +2275,Inviting Brooklyn Studio,Entire home/apt,398.0,3.0,5.0,No parties & No smoking & No children under 10,3,Richmond +2276,"Manhattan-LoVe, Upper West Side, Studio.",Shared room,401.0,3.0,4.0,No visitors & No children under 10,1,Yakutat +2277,"Real 1-BR Home in West Village, Central yet Quiet!",Entire home/apt,233.0,31.0,1.0,No smoking,2,Ogden +2278,1BR Doorman Bldg Boerum Hill BK,Entire home/apt,510.0,2.0,3.0,No visitors & No pets,5,Amarillo +2279,Cozy room,Private room,758.0,5.0,3.0,No pets & No visitors & No children under 10,2,Concord +2280,SoHo studio,Entire home/apt,438.0,3.0,5.0,,4,Rhinelander +2281,Bright 3 floors home in Bushwick with precious art,Private room,648.0,2.0,5.0,No visitors,2,Laredo +2282,Beautiful UWS Apt with Balcony,Entire home/apt,1155.0,2.0,3.0,,2,Charlottesville +2283,"Cozy, tranquil bedroom steps from Central Park A",Private room,663.0,20.0,2.0,No smoking & No children under 10,2,Cedar Rapids +2284,Bright & spacious room in Brooklyn sanctuary,Private room,1032.0,3.0,2.0,No children under 10,1,King Salmon +2285,Apartment in Park Slope / Rooftop Access,Private room,382.0,4.0,2.0,No pets & No children under 10,2,Fort Dodge +2286,Cozy BK Apt -Roof & Balcony- 5 star host reviews!,Entire home/apt,374.0,2.0,5.0,No pets,2,Wenatchee +2287,Brooklyn Serene Bedrooms,Entire home/apt,389.0,5.0,5.0,No smoking,2,Sanford +2288,Spacious 2 Bed on Park with Washer/Dryer #6113,Entire home/apt,1156.0,30.0,5.0,No visitors,6,Nome +2289,Queens Village Vacation Getaway,Entire home/apt,275.0,1.0,5.0,No visitors & No smoking & No pets,3,Joplin +2290,Great East Village bedroom NYC,Private room,367.0,2.0,2.0,No visitors,1,Branson +2291,Spacious Sunnyside Room. Lots of Natural Lights.,Private room,715.0,30.0,3.0,,1,Cedar Rapids +2292,Local hosts. Luxurious room few blocks to Q train,Private room,455.0,3.0,2.0,No pets,2,Butte +2293,Stylish & Spacious Apartment in Harlem Brownstone,Entire home/apt,725.0,2.0,2.0,,6,Saipan +2294,Extra Cozy Room in Center of Williamsburg,Private room,1033.0,1.0,1.0,No pets,1,Chattanooga +2295,Room in musicians loft/music venue,Private room,755.0,3.0,5.0,No visitors,1,Pasco +2296,New york Single family home,Entire home/apt,1184.0,2.0,2.0,No visitors,9,Deadhorse +2297,Manhattan - Private Room - 1 mn Subway/Metro,Private room,804.0,1.0,5.0,No children under 10 & No pets,1,Florence +2298,"EAST VILLAGE, Tompkins Park, Private Rm + Bathroom",Private room,1177.0,4.0,1.0,No smoking,1,Hancock +2299,"Comfy Wall Street 1BR w/ Speakeasy, Gym, + Rooftop by Blueground",Entire home/apt,662.0,30.0,3.0,No children under 10 & No pets,4,Beaumont +2300,Summer home in NYC 5-Bedroom Private House,Entire home/apt,432.0,2.0,5.0,,2,Rhinelander +2301,Midtown Manhattan Two Full Bedrooms - Private,Entire home/apt,672.0,6.0,4.0,No visitors & No smoking & No pets,6,Akron +2302,Cute private room in the heart of Soho,Private room,1084.0,5.0,4.0,No children under 10,2,New Orleans +2303,Charming Private Brooklyn Apartment,Entire home/apt,766.0,3.0,3.0,,2,Eugene +2304,"Sunny 2bdrm Apt. near Bryant Park, Apt 2B",Entire home/apt,524.0,30.0,4.0,No parties,2,Lexington +2305,Sunny apartment,Private room,506.0,3.0,2.0,No parties,1,Cincinnati +2306,beautiful 2 bedroom skylight apt,Entire home/apt,636.0,7.0,2.0,,3,Miami +2307,Modern Staten Island Townhouse- Welcome home!,Entire home/apt,325.0,2.0,5.0,,2,Florence +2308,Studio loft - Williamsburg/Bushwick,Entire home/apt,215.0,2.0,2.0,No visitors,3,Anchorage +2309,Luxury Building - Private Room,Private room,569.0,4.0,3.0,No visitors & No smoking,1,Flint +2310,Cozy Room in Upper-East Side Tower,Private room,1068.0,20.0,5.0,No parties & No pets,1,Dodge City +2311,Brooklyn BedStuy Apt close to Subway and Downtown,Private room,1124.0,2.0,2.0,,2,Cedar City +2312,Sunny apartment in the heart of trendy Greenpoint,Entire home/apt,909.0,30.0,5.0,No parties,4,Ashland +2313,Cozy apartment near Central Park,Entire home/apt,738.0,1.0,5.0,No pets,6,Santa Maria +2314,Clinton Hill Private Room,Private room,745.0,3.0,4.0,No parties & No smoking,1,Fort Lauderdale +2315,"Large, sunny room with private bath.",Private room,846.0,2.0,4.0,No pets,2,Trenton +2316,Williamsburg Brooklyn 2BR Apt. / 5min to L Train,Entire home/apt,516.0,7.0,5.0,No visitors,4,Wichita +2317,Sunny Charming Clinton Hill Apartment,Entire home/apt,339.0,31.0,1.0,No children under 10,2,Eugene +2318,Beautiful Williamsburg Loft,Entire home/apt,726.0,2.0,5.0,No pets,6,Fort Smith +2319,Private Room in quiet XL East Village apartment!,Private room,1169.0,1.0,5.0,No parties,2,Medford +2320,Small Private Studio!,Private room,690.0,2.0,2.0,No children under 10 & No visitors,1,Daytona Beach +2321,East Village Studio Apartment,Entire home/apt,599.0,2.0,2.0,No pets & No parties,2,Shreveport +2322,Cozy private room in nice neighborhood Brooklyn,Private room,564.0,2.0,4.0,No parties & No children under 10,1,Paducah +2323,Cozy studio with stunning views of Dwntwn,Entire home/apt,404.0,2.0,5.0,,3,Abilene +2324,"Comfortable,3 bedroom, 2bath home away from home",Entire home/apt,926.0,2.0,3.0,No children under 10,5,San Francisco +2325,Zen 1 bedroom near Central Park+MET+Guggenheim,Entire home/apt,517.0,14.0,3.0,No pets,3,Madison +2326,"Elegant/Classy Artist Loft, 2 Priv bdms/CLEAN",Entire home/apt,944.0,21.0,1.0,No pets & No children under 10 & No smoking,7,Augusta +2327,Clean & Large room hearth of NYC Midtown!!,Private room,741.0,9.0,5.0,No parties & No smoking,1,Harrisburg +2328,Beautiful 1 Bdrm w/ Large Private Patio,Entire home/apt,1193.0,2.0,4.0,No pets,8,Lihue +2329,Sunny Designer Apartment in East Village,Entire home/apt,143.0,2.0,5.0,No parties & No smoking,3,Nome +2330,Perfect Location! Spacious Upper West Side Flat,Entire home/apt,598.0,2.0,5.0,No parties,5,Casper +2331,"Huge amazing 1bdrm, Upper Manhattan",Entire home/apt,350.0,5.0,1.0,No children under 10 & No parties,2,Boston +2332,Shared apartment by the Central Park,Shared room,1112.0,1.0,2.0,No children under 10,1,Fort Leonard Wood +2333,Pet & Tony's Residence,Entire home/apt,271.0,1.0,3.0,No parties & No visitors & No pets,2,St. Louis +2334,Architect Designed Industrial Oasis in Greenpoint,Entire home/apt,458.0,1.0,2.0,No visitors & No parties & No pets,4,Valdosta +2335,Single Minimal Bedroom in Hip area of Brooklyn NYC,Private room,397.0,1.0,2.0,,1,Flagstaff +2336,Apartment in the Heart of Manhattan,Entire home/apt,694.0,14.0,3.0,,4,Elmira +2337,1 bedroom next to Prospect Park & SubwayStation,Private room,836.0,1.0,5.0,No children under 10 & No visitors & No pets,1,Belleville +2338,Bluebird Hells Kitchen 1-BR Apt Near Central Park,Entire home/apt,865.0,30.0,2.0,No children under 10 & No smoking,3,Springfield +2339,MIDTOWN APARTMENT WITH SPECTACULAR VIEW,Entire home/apt,1012.0,6.0,1.0,,8,Roswell +2340,Oasis III,Private room,819.0,30.0,5.0,No visitors & No parties,1,Hays +2341,Comfy Queen Size Bed Near Prospect Park!,Private room,571.0,2.0,1.0,,2,Hilton Head +2342,Room in lovely loft with waterfront view,Private room,234.0,10.0,4.0,No children under 10 & No pets,2,Worcester +2343,"Sunny, spacious Upper East Side studio, sleeps 3",Entire home/apt,289.0,2.0,3.0,,2,West Palm Beach +2344,Apartment-Therapy-Featured Greenpoint Flat,Entire home/apt,1145.0,60.0,2.0,No pets,3,Tyler +2345,Beautiful furnished bedroom in Crown Heights!!!,Private room,977.0,5.0,3.0,,2,Sarasota +2346,Brooklyn private luxury room with private bathroom,Private room,979.0,1.0,2.0,No parties & No smoking,2,Cedar Rapids +2347,Room 4 -Sunny Cozy Room in Historic Victorian Home,Private room,1196.0,2.0,4.0,No pets & No parties,1,Newark +2348,"Large Beautiful Room in Prime BK, 10 Min to City!!",Private room,905.0,30.0,5.0,No smoking & No children under 10,2,Spokane +2349,Room in Upper West Side Apartment - close to park,Private room,623.0,3.0,3.0,No pets & No children under 10,2,Rochester +2350,2 BDRM apt in elevator building,Entire home/apt,403.0,1.0,3.0,No children under 10 & No smoking,4,Johnstown +2351,~*PLANT HAVEN*~ Private Room -Charming Garden Apt,Private room,354.0,3.0,3.0,No parties & No smoking,2,Memphis +2352,Charming Bedroom in Gramercy,Private room,353.0,1.0,2.0,No visitors & No parties,2,San Antonio +2353,Furnished Luxury 1BR apt. in the heart of NYC!,Entire home/apt,654.0,30.0,1.0,No pets & No smoking & No children under 10,5,Gillette +2354,Harlem Oasis,Private room,244.0,1.0,2.0,No visitors & No smoking & No parties,2,Niagara Falls +2355,PrivateRoom1/LGA&JFK&Citi field&法拉盛/BustoManhattan,Private room,278.0,1.0,2.0,No parties & No visitors & No pets,2,Gainesville +2356,Sunny Bedroom in Park Slope,Private room,1108.0,3.0,5.0,No children under 10 & No visitors,1,Fort Smith +2357,livingroom for rent queen size sofa bed or air bed,Shared room,1109.0,2.0,3.0,No children under 10,1,Harrisburg +2358,Luxury Apartment with Epic Views,Entire home/apt,288.0,2.0,4.0,No smoking,3,Ogden +2359,Clean Lines Rule: Modern and Spacious and Orange,Entire home/apt,878.0,2.0,2.0,No smoking,4,Sault Ste. Marie +2360,"Hip, Vibrant, COLORFUL Downtown Manhattan 1 Bed",Entire home/apt,763.0,2.0,1.0,No visitors,7,Hilton Head +2361,Room in Brooklyn,Private room,81.0,2.0,3.0,,1,Fort Lauderdale +2362,Cosy private room in Manhattan!!!,Private room,938.0,1.0,2.0,,1,Alamosa +2363,Room in East Village,Private room,575.0,9.0,4.0,No pets & No visitors,2,Cedar Rapids +2364,"Fresh, bright modern studio w/ Garage Parking",Entire home/apt,488.0,3.0,1.0,No parties,3,Abilene +2365,"Sunny high-ceiling, large-windows, Bushwick apt",Private room,646.0,4.0,4.0,No pets,2,Springfield +2366,Midtown East penthouse studio,Entire home/apt,1147.0,10.0,2.0,No smoking & No pets & No parties,4,Abilene +2367,"Sunny and Spacious in East Village, Alphabet City.",Entire home/apt,416.0,3.0,3.0,,4,Flagstaff +2368,Manhattan room 3 NYC 127 st and convent ave,Shared room,640.0,2.0,4.0,No children under 10 & No parties,1,Victoria +2369,Awesome Place! Amazing Location!!!,Private room,1155.0,1.0,4.0,No pets & No parties & No children under 10,1,Butte +2370,Cozy 1 bedroom in Murray Hill.,Entire home/apt,1093.0,1.0,3.0,No pets & No visitors,10,Great Falls +2371,A Lovely One Bedroom Apartment!,Entire home/apt,882.0,10.0,5.0,No visitors,2,Missoula +2372,"Bright and airy, close to Central Park and museums",Entire home/apt,1194.0,4.0,4.0,No pets & No visitors,11,Minot +2373,"Gorgeous, Family-Friendly, NYC Garden Apt!",Entire home/apt,709.0,3.0,5.0,No children under 10,5,Norfolk +2374,Cozy Brownstone Apartment Near City,Entire home/apt,742.0,3.0,5.0,No parties & No children under 10 & No pets,3,Lawton +2375,Historic Harlem Townhome,Entire home/apt,1143.0,30.0,3.0,No children under 10,9,Salina +2376,Couch in Harlem Harvey Refugees only,Shared room,1168.0,1.0,5.0,No smoking & No parties & No pets,1,Clarksburg +2377,Private bedroom in FiDi,Private room,63.0,1.0,2.0,No smoking,1,Moab +2378,PentHouse In FiDi,Private room,843.0,3.0,5.0,No children under 10 & No smoking,2,Texarkana +2379,Huge full floor loft on Broadway and Bleecker,Entire home/apt,219.0,3.0,4.0,No parties,3,Sitka +2380,Giant 1br pre-war apartment in Flatbush / Lefferts,Entire home/apt,205.0,4.0,3.0,,2,Fort Myers +2381,Fresh Room One Block From Metro!!,Private room,230.0,2.0,5.0,No visitors & No pets,2,Beaumont +2382,The Home away from home!!!!,Entire home/apt,372.0,3.0,2.0,No pets & No visitors,3,Medford +2383,Bergen Street by (Hidden by Airbnb),Entire home/apt,1016.0,1.0,2.0,No smoking & No parties,3,Lewisburg +2384,Artist Loft,Entire home/apt,349.0,2.0,3.0,No children under 10 & No smoking,2,Paducah +2385,"Modern, big and comfy space in the heart of NYC",Entire home/apt,306.0,2.0,2.0,No children under 10,2,State College +2386,Family Friendly 2 BR in Park Slope Brooklyn,Entire home/apt,1036.0,3.0,4.0,No smoking,6,Brainerd +2387,Brooklyn home,Private room,287.0,4.0,4.0,No visitors,2,Grand Rapids +2388,Brooklyn Soul,Private room,1108.0,1.0,2.0,No pets,1,Beaumont +2389,2nd@THROOP MANSION,Entire home/apt,172.0,1.0,5.0,No children under 10 & No visitors,3,Trenton +2390,Large apt in prime carol gardens,Entire home/apt,1155.0,1.0,2.0,No smoking,10,San Antonio +2391,Amazing New 1 Bedroom in the UES #6132,Entire home/apt,1129.0,30.0,2.0,No parties,5,Panama City +2392,Bed Stuy Home Away From Home,Entire home/apt,735.0,1.0,2.0,No parties,6,Syracuse +2393,Deluxe bedroom w/ 2 beds - 3 Stops to Times Square,Private room,680.0,1.0,3.0,No pets,2,Ponce +2394,Simple Spacious Apartment,Entire home/apt,310.0,5.0,4.0,No children under 10,2,Missoula +2395,1 bedroom to yourself in Midtown Manhattan!,Entire home/apt,633.0,3.0,4.0,No parties & No pets,3,Kalamazoo +2396,Apt Lincoln Center And Central Park! Best location,Entire home/apt,975.0,2.0,2.0,No children under 10 & No smoking,6,Kona +2397,Sunny & Cozy 1BR/1BA Apartment In Upper NYC,Entire home/apt,111.0,2.0,2.0,No visitors & No children under 10,2,Kansas City +2398,Bronx Retreat in Contemporary Apt,Private room,660.0,2.0,4.0,No parties & No visitors & No children under 10,1,Baltimore +2399,ONE STOP TO TIME SQUARE BEAUTIFUL QUIET STUDIO,Entire home/apt,131.0,1.0,2.0,No visitors & No smoking & No pets,2,Everett +2400,Room in Upper East Side!,Private room,885.0,1.0,4.0,No smoking & No pets & No parties,2,Orlando +2401,Fast Commute - SUNNY PRIVATE ROOM in luxury BK,Private room,257.0,1.0,3.0,No children under 10,2,Boise +2402,Downtown Luxury 1 Bedroom 800 sq ft,Entire home/apt,982.0,7.0,5.0,No parties,4,Boise +2403,Cheap Small Bedroom w/Desk 10min to JFK & Mall,Private room,308.0,7.0,2.0,No smoking & No parties,1,Eagle +2404,Room # 5 Near from JFK & LGA Diner 7/24 open,Shared room,744.0,1.0,2.0,No smoking & No visitors,1,Missoula +2405,Private big room/Queen bed/Nice Apt,Private room,704.0,1.0,1.0,,2,Scottsbluff +2406,Modern Upper West Side Luxury!!,Entire home/apt,519.0,3.0,1.0,No visitors & No children under 10 & No smoking,4,Prescott +2407,Bkln (Vinegar Hill) duplex w/garden,Entire home/apt,64.0,14.0,5.0,No visitors & No pets,2,Prescott +2408,Penthouse in Crown Heights,Entire home/apt,524.0,1.0,1.0,No children under 10 & No parties,5,Ogden +2409,My Sweet Room,Entire home/apt,997.0,10.0,4.0,No parties & No smoking & No pets,9,Martha's Vineyard +2410,15 Minutes to Manhattan and Safe Neighborhood!,Private room,914.0,2.0,4.0,No children under 10 & No parties,2,Santa Maria +2411,Jackson Heights 2 bedrooms housing,Entire home/apt,747.0,2.0,3.0,No parties & No children under 10 & No smoking,2,Dallas +2412,"3 BR CLASSIC ON RIVER. Doorman. UWS, dogs ok",Entire home/apt,995.0,30.0,1.0,No visitors & No children under 10,7,San Jose +2413,Harlem Garden Oasis in New York City Brownstone,Entire home/apt,368.0,31.0,5.0,No parties,3,Pasco +2414,Cosy room in a sunny Brooklyn flat,Private room,678.0,3.0,3.0,No smoking,1,Los Angeles +2415,Spacious Room and PRIVATE bath in Harlem Townhouse,Private room,805.0,2.0,2.0,No visitors & No parties & No smoking,1,Louisville +2416,"$2,800 ",Entire home/apt,563.0,14.0,5.0,No children under 10,3,Lubbock +2417,Perfect Spot Between Bryant Park and Times Square,Private room,1046.0,1.0,3.0,No parties & No smoking,2,Honolulu +2418,Sunny Private Bedroom Near Manhattan,Private room,1182.0,1.0,2.0,No parties & No children under 10,1,Gainesville +2419,Luxury Apartment Central Park - Hell’s Kitchen,Entire home/apt,389.0,1.0,4.0,,3,Christiansted +2420,BKLYN Brownstone- Glam Getaway!,Entire home/apt,287.0,3.0,3.0,No pets & No visitors,2,Orlando +2421,J-ROOM SHARE BY CASINO*AIRPORT*CAFE*DOORSTEP METRO,Shared room,1073.0,4.0,2.0,No visitors,1,Minot +2422,"Best location, Midtown Times Square",Entire home/apt,567.0,4.0,1.0,,2,Newport News +2423,Retro Style Living In New York City,Private room,1133.0,2.0,2.0,No smoking,2,Columbia +2424,Large private bedroom New York,Private room,435.0,2.0,3.0,No children under 10 & No parties,1,Ogden +2425,Sunny Spotless Manhattan apartment,Private room,940.0,30.0,3.0,No smoking,2,Binghamton +2426,Cozy place.,Private room,149.0,1.0,3.0,No children under 10 & No visitors & No smoking,2,Indianapolis +2427,Spacious and airy room in prime South Williamsburg,Private room,74.0,3.0,1.0,No children under 10,2,Boise +2428,Sonder | Upper East Side | Chic 1BR + Sofa Bed,Entire home/apt,389.0,29.0,2.0,No visitors,2,New Orleans +2429,Stunning 5 BR Townhouse with Chef's Kitchen #10288,Entire home/apt,664.0,3.0,4.0,No pets,2,Charlotte +2430,"Room with the balcony, fits 3!",Private room,709.0,1.0,5.0,No smoking & No visitors & No children under 10,1,Savannah +2431,3 bedroom Tourist's heaven 2nd floor,Entire home/apt,508.0,1.0,4.0,No children under 10 & No parties,2,Corpus Christi +2432,Private Bedroom in Beautiful Central Williamsburg!,Private room,297.0,2.0,2.0,No pets,2,Dubuque +2433,Charming Brooklyn Artist's Room,Private room,1020.0,1.0,4.0,No children under 10 & No smoking & No parties,2,Bloomington +2434,Steps from the Barclays Center!,Private room,502.0,1.0,3.0,No parties & No children under 10 & No smoking,2,Cody +2435,1 Bedroom in williamsburg,Entire home/apt,864.0,7.0,1.0,No smoking & No pets,6,South Bend +2436,Beautiful and big 1BR sublet close by Central Park,Private room,983.0,5.0,5.0,No parties & No children under 10,2,New York +2437,Large Bright Williamsburg Apartment - Lorimer St.,Private room,683.0,20.0,3.0,No children under 10,2,Beaumont +2438,Prívate room,Private room,868.0,30.0,2.0,No pets,2,Atlantic City +2439,Luxury & Charm. Steps from Christopher Park!,Entire home/apt,301.0,5.0,4.0,No pets & No visitors & No parties,2,Chattanooga +2440,NYC Hideaway spacious Garden apartment,Entire home/apt,166.0,2.0,5.0,No smoking,2,Kona +2441,Charming House!!,Private room,929.0,3.0,4.0,No visitors & No smoking & No pets,2,Rock Springs +2442,Beautiful Bedroom in Washington Heights,Private room,898.0,2.0,3.0,No visitors & No pets,1,Stillwater +2443,"One Room, In The Heights",Private room,868.0,1.0,2.0,No smoking,1,Burlington +2444,Attractive one bedroom suite in midtown Manhattan,Entire home/apt,351.0,30.0,1.0,No pets,2,Wenatchee +2445,"Affordable 1 bedroom apt, in great neighborhood",Entire home/apt,344.0,2.0,2.0,No smoking,3,Eagle +2446,#NAME?,Private room,839.0,2.0,3.0,No parties,2,Alpena +2447,"""The Park View"" in Sunset Park",Private room,713.0,2.0,4.0,No pets & No parties,1,Jamestown +2448,Beautiful room close to Manhattan,Private room,803.0,15.0,2.0,No pets,1,Elmira +2449,Large private bedroom near Manhattan.,Private room,557.0,4.0,4.0,No visitors & No children under 10,1,Bellingham +2450,Spacious room with a hammock near Prospect park,Private room,376.0,1.0,3.0,No pets,1,Salisbury +2451,E. WILLIAMSBURG ROOM WITH PRIVATE BALCONY,Private room,800.0,2.0,3.0,,2,Fort Leonard Wood +2452,Cozy Room with Private Bath in Bay Ridge (Room B),Private room,1133.0,1.0,3.0,No parties & No children under 10,2,Hobbs +2453,A Cozy Place to Stay in Woodside Queens!,Private room,198.0,30.0,5.0,No children under 10,2,Casper +2454,Prince single room,Private room,401.0,2.0,3.0,No visitors,2,Eugene +2455,Private House in Trendy Crown Heights,Entire home/apt,642.0,2.0,4.0,No smoking,6,San Antonio +2456,Ground Floor Retreat near BKLYN Children’s Museum,Entire home/apt,472.0,3.0,3.0,No children under 10,2,Ogdensburg +2457,Cozy apartment close to subway & good restaurants,Entire home/apt,937.0,4.0,3.0,,4,Greenville +2458,Cozy modern studio in heart of LES,Entire home/apt,699.0,2.0,5.0,No visitors & No pets,4,Panama City +2459,"Bright, spacious loft in the heart of Soho",Entire home/apt,457.0,2.0,5.0,No visitors & No smoking & No children under 10,3,Guam +2460,Entire Place in Prime Brooklyn Neighborhood,Entire home/apt,637.0,1.0,4.0,No pets,5,Bethel +2461,CHIC STUDIOS ON E 54TH~PRIME LOCATION~SUTTON PLACE,Entire home/apt,180.0,30.0,3.0,No children under 10,2,Minneapolis +2462,Crown Heights LUXURY Kingston Apt,Entire home/apt,681.0,3.0,2.0,No parties,6,Laredo +2463,"Charming Apartment in Brooklyn, NY",Private room,1044.0,5.0,4.0,No smoking,1,West Palm Beach +2464,A Contemporary Homelike Stay in the Best of BK,Entire home/apt,228.0,2.0,2.0,No pets & No visitors & No children under 10,2,New York +2465,One little beautiful room in an 3bedroom apartment,Private room,385.0,2.0,3.0,No children under 10,1,Elmira +2466,NEW- Spacious & Bright Brooklyn 1 Bed,Entire home/apt,900.0,2.0,5.0,No children under 10,4,Norfolk +2467,Stylish Room w/ 2 Twin Beds in Times Square,Private room,637.0,1.0,4.0,No smoking,1,Albany +2468,Loft in the heart of Bushwick (jefferson L),Entire home/apt,1197.0,2.0,1.0,No smoking & No visitors,11,White Plains +2469,PRIVATE ROOM - Sunny and Spacious - Brooklyn Loft,Private room,672.0,2.0,5.0,No children under 10,2,Killeen +2470,"#2BED Luxury Midtown Full Kitchen, Comp Breakfast",Entire home/apt,1115.0,3.0,2.0,No pets,6,Sanford +2471,Beautiful Apartment in Ideal Manhattan Location,Private room,1026.0,5.0,2.0,No visitors,2,Valparaiso +2472,"Private room at Roselle, in the Bronx",Private room,427.0,2.0,2.0,,2,Houston +2473,"Sunny room in Sunset Park, Brooklyn",Private room,250.0,1.0,5.0,No pets & No children under 10,2,La Crosse +2474,Private apartment in new Brooklyn building!,Entire home/apt,132.0,2.0,4.0,,3,Erie +2475,Spacious 1 BR W/ adjustable Queen bed. Comfy!,Entire home/apt,581.0,2.0,2.0,No pets & No visitors,4,Pellston +2476,Private room in Astoria 10min ride to Central Park,Private room,416.0,1.0,3.0,No visitors,2,Santa Maria +2477,Mamas 2 twins purple #4 boro pk 2nd flr D train,Private room,529.0,3.0,3.0,No children under 10,1,Gulfport +2478,Spacious Brooklyn One Bedroom/Loft***Morgan L Stop,Entire home/apt,1164.0,4.0,3.0,No visitors,4,Del Rio +2479,Central Park Studio,Entire home/apt,96.0,30.0,4.0,No smoking & No visitors & No parties,2,Brunswick +2480,Unbeatable & Massive Midtown 3 Bedroom Apt,Entire home/apt,905.0,4.0,5.0,No smoking,6,Miami +2481,bayroom,Private room,841.0,28.0,3.0,No children under 10 & No smoking,1,Fairbanks +2482,Private Apt in Queens NYC/less 5min walk to train,Entire home/apt,446.0,5.0,4.0,No pets & No parties,4,Fort Myers +2483,True NYC soho experience amazing gem.. large space,Entire home/apt,663.0,1.0,5.0,No children under 10,2,Monroe +2484,Fabulous Room Near Central Park,Private room,951.0,1.0,4.0,No parties,1,Burlington +2485,One bedroom apartment,Entire home/apt,176.0,7.0,5.0,No children under 10,2,Charlottesville +2486,Large 1 bedroom to yourself. 1 block from subway,Entire home/apt,720.0,5.0,3.0,No children under 10 & No visitors & No smoking,4,Worcester +2487,"6 Guests! Close to JFK-Manhattan(30 min ""A"" train)",Entire home/apt,834.0,1.0,5.0,No pets & No parties,8,Phoenix +2488,convenient 5min away from jfk 20 min lga airport,Entire home/apt,1012.0,3.0,5.0,,10,Saginaw +2489,"New Apartment, Close to Ferry",Entire home/apt,95.0,2.0,5.0,No pets,2,Cincinnati +2490,The Art Of Living - Loft apartment,Entire home/apt,861.0,2.0,4.0,No smoking & No visitors,6,Columbus +2491,Spacious Sunny Private Bedroom in the Bushwick BK,Private room,368.0,2.0,3.0,No pets,2,Saginaw +2492,Spirited 2-Bed Sanctuary -- Entire Building!,Entire home/apt,202.0,2.0,4.0,,2,Clarksburg +2493,Private Room in Cozy Bushwick Apartment,Private room,665.0,2.0,5.0,No pets,1,Hibbing +2494,Luxury apartment in New York City,Private room,453.0,1.0,3.0,No children under 10 & No pets,1,Boston +2495,Brooklyn Gem: Stylish & Family Friendly,Entire home/apt,518.0,2.0,2.0,No pets & No smoking & No visitors,4,Bismarck +2496,"PRIVATE, Funky bunk style room in Williamsburg",Private room,913.0,2.0,5.0,No visitors & No parties & No children under 10,2,Valparaiso +2497,Spacious Room in Large 2 Bedroom Prewar Apartment,Private room,585.0,1.0,4.0,No visitors,2,Huntsville +2498,Modern luxurious studio apt. 15 mins to Times Sq.,Entire home/apt,1051.0,5.0,2.0,No children under 10,4,Key West +2499,20-25 minutes to downtown NYC/30-40 to midtown,Private room,122.0,30.0,5.0,No children under 10 & No parties,2,Hays +2500,Historic Brownstone - Full Floor - Central Harlem,Entire home/apt,579.0,3.0,2.0,,5,Dayton +2501,Affordable Lenox Ave Room. Clean Sunny Comfy!,Private room,352.0,30.0,2.0,No pets,1,Kansas City +2502,Private Room w/ Private Bath in Heart of Bed-Stuy,Private room,178.0,2.0,3.0,,2,Cordova +2503,Brooklyn Apartment,Private room,739.0,6.0,3.0,No smoking & No children under 10,2,Fort Myers +2504,"Peaceful spacious bedroom, easy commute to city",Private room,873.0,7.0,4.0,,1,Las Vegas +2505,Cozy 1 bedroom Apt Morningside/Harlem,Entire home/apt,1148.0,5.0,4.0,No visitors & No pets,5,Pullman +2506,Entire Private Floor of West Village Duplex- NY,Private room,595.0,2.0,4.0,No smoking,2,Scranton +2507,Water Front Duplex with Amazing Views and Parking.,Entire home/apt,1054.0,28.0,2.0,No pets,9,Fort Leonard Wood +2508,Hippie vibe spot,Private room,850.0,1.0,5.0,No children under 10,1,Lewisburg +2509,Huge Central Wiliamsburg 2 bedroom clean w/rooftop,Entire home/apt,610.0,10.0,3.0,No visitors,2,Tyler +2510,Suburban Living in Brooklyn,Entire home/apt,227.0,2.0,2.0,No pets,3,Adak Island +2511,"8mins to JFK airport, separate door & bathroom",Private room,1194.0,1.0,2.0,No parties & No pets & No visitors,1,Santa Barbara +2512,UN Dream Apt NYC,Entire home/apt,229.0,1.0,3.0,No pets,2,Wrangell +2513,Whole West Village Studio,Entire home/apt,324.0,2.0,5.0,No pets & No smoking & No children under 10,3,South Bend +2514,Furnished private large room at a great location,Private room,900.0,2.0,3.0,No parties,1,West Palm Beach +2515,"Large, sunny room in Brooklyn",Private room,1121.0,3.0,4.0,No children under 10,1,Pittsburgh +2516,5min to Manhattan apartment in new luxury building,Entire home/apt,872.0,1.0,4.0,No parties & No smoking & No visitors,5,Casper +2517,Private bedroom in large Chelsea apartment,Private room,803.0,3.0,5.0,No children under 10,2,Christiansted +2518,A Place of Comfort,Private room,715.0,7.0,2.0,No smoking & No visitors,2,Bangor +2519,Cozy Room 1 Block from the Train,Private room,948.0,10.0,2.0,No smoking,2,Newburgh +2520,10 mins from JFK. Smoking okay.,Private room,692.0,1.0,4.0,No smoking & No children under 10,2,Syracuse +2521,Sun-Filled Artist Loft in Private Townhouse,Entire home/apt,214.0,2.0,2.0,No parties,2,Bozeman +2522,Elmhurst Front Bedroom,Private room,545.0,1.0,2.0,No children under 10 & No smoking & No parties,1,Santa Rosa +2523,Brand New Studio with Balcony @ Williamsburg!,Entire home/apt,1103.0,3.0,3.0,No smoking & No children under 10,10,Panama City +2524,"Large, Private 1 Bedroom in Historic Brownstone",Entire home/apt,330.0,5.0,4.0,No children under 10 & No pets,2,Corpus Christi +2525,Gated Manhattan Enclave,Entire home/apt,836.0,2.0,4.0,No smoking & No children under 10 & No pets,7,Devils Lake +2526,Private bedroom located in Downtown Manhattan,Private room,644.0,2.0,3.0,No pets & No smoking,2,Greensboro +2527,Sunny 3 bedroom LES apartment,Entire home/apt,813.0,3.0,3.0,No smoking & No visitors & No children under 10,2,Santa Ana +2528,*Beautiful Private Room near Subway,Private room,551.0,2.0,4.0,No parties,1,Asheville +2529,Cute private room in the heart of Soho,Private room,1084.0,5.0,4.0,No pets & No children under 10 & No visitors,1,Mission +2530,Private Bedroom w/ Queen Size bed in Williamsburg,Private room,1158.0,2.0,3.0,No parties & No visitors,1,Shreveport +2531,Flatbush pad Sleeps 6 MANHATTAN 30 min Away!,Entire home/apt,754.0,2.0,5.0,No parties & No smoking,7,Santa Fe +2532,Clean/Elegant HK Apt. w/ Cute Bear,Entire home/apt,1118.0,3.0,1.0,No visitors,5,Portland +2533,NoLIta / Soho 1 bedroom oasis,Entire home/apt,1136.0,3.0,5.0,No children under 10 & No parties,5,Augusta +2534,Comfy room with WiFi. Mins to Central Park!,Private room,934.0,30.0,5.0,No children under 10,2,St. Louis +2535,Fort Greene Room,Private room,722.0,2.0,2.0,No visitors & No children under 10,1,Chattanooga +2536,LG. RED AND WHITE COOL OASIS ROOM.,Private room,154.0,2.0,3.0,No pets & No children under 10,2,Hibbing +2537,1 Bedroom Condo/Kitchen Wyndham Midtown 45 Resort*,Private room,488.0,3.0,2.0,No children under 10 & No pets,1,Paducah +2538,West Village Apartment,Entire home/apt,833.0,60.0,3.0,No children under 10,4,Riverton +2539,"New, Luxury and Sunny Apartment",Entire home/apt,887.0,1.0,3.0,,6,Flint +2540,A Cozy Harlem Stay,Private room,373.0,30.0,2.0,No pets,2,Jacksonville +2541,Charming Studio,Entire home/apt,591.0,4.0,3.0,No smoking & No pets,4,Santa Fe +2542,Midtown Studio,Entire home/apt,625.0,3.0,2.0,No children under 10,3,Dubuque +2543,Beautiful room in renovated Manhattan apartment,Private room,783.0,5.0,3.0,,1,Elko +2544,Central Park Slope Garden Apartment,Entire home/apt,352.0,4.0,5.0,No parties & No smoking,2,Aspen +2545,New York Po home sweet home,Shared room,1086.0,4.0,2.0,,1,Marquette +2546,Cozy private room in Midtown with private bathroom,Private room,446.0,3.0,5.0,No visitors,1,Hyannis +2547,☆ 2BR East Village ☆ Sleeps 5 | BEST LOCATION ☆,Entire home/apt,642.0,2.0,2.0,No smoking & No children under 10,2,West Yellowstone +2548,Large room near Times Square 31C4,Private room,798.0,7.0,3.0,No smoking,1,Newark +2549,Charming Bohemian Bushwick Apt,Private room,301.0,4.0,4.0,No visitors,2,State College +2550,Duplex STUDIO With Sunset View,Entire home/apt,392.0,4.0,5.0,No pets & No visitors,3,Champaign +2551,"Private room to rent - Hip Williamsburg, Brooklyn",Private room,1194.0,2.0,2.0,,2,Wrangell +2552,The real Brooklyn experience in Greenpoint!,Private room,778.0,7.0,5.0,No parties,1,Roanoke +2553,Perfect Luxury Studio in DUMBO,Entire home/apt,247.0,2.0,1.0,No smoking & No parties,3,San Francisco +2554,Adorable Room in Spacious Brooklyn Home,Private room,818.0,1.0,3.0,No visitors & No smoking,1,Staunton +2555,"In the heart of Prospect Park, BK!",Entire home/apt,926.0,4.0,4.0,No children under 10,7,Staunton +2556,Southern comfort in Harlem,Private room,175.0,1.0,1.0,No visitors & No pets,1,Kansas City +2557,Loft in Times Square with Roof Balcony,Entire home/apt,104.0,180.0,2.0,No parties & No visitors,2,Alpena +2558,Manhattan Hotel Room,Entire home/apt,387.0,1.0,1.0,No pets & No parties,2,Sanford +2559,Sunshine Studio near Columbia U,Entire home/apt,1023.0,1.0,2.0,No pets,7,Long Beach +2560,Manhattan Club Luxury Condo Central Park - Suite,Entire home/apt,306.0,1.0,3.0,No parties & No children under 10,2,Mobile +2561,Near Subway and Central Park :),Private room,466.0,1.0,5.0,No visitors & No parties & No children under 10,2,San Angelo +2562,Light Filled Private Room,Private room,210.0,7.0,5.0,No visitors,2,Rhinelander +2563,Morningside Heights Cozy & Clean Modern Apt.,Private room,500.0,1.0,3.0,,2,Austin +2564,Sunny room in quiet area of Brooklyn,Private room,130.0,7.0,3.0,No parties,1,Bellingham +2565,Brooklyn / Bed Stuy :: Brownstone garden-floor apt,Entire home/apt,428.0,5.0,2.0,No smoking,3,Kahului +2566,Two Private Floors in brownstone by Prospect Park,Private room,991.0,5.0,2.0,No pets & No children under 10,2,Williston +2567,Cozy room in Harlem,Private room,126.0,2.0,2.0,,2,Fort Smith +2568,Calm 1BR in 2BR,Private room,434.0,3.0,5.0,,1,Wilmington +2569,"Close to subway, Manhattan, & shops with kitchen",Entire home/apt,314.0,5.0,5.0,No visitors,3,Huntsville +2570,Charming bedroom with huge terrace in Greenpoint,Private room,712.0,2.0,3.0,,2,Worcester +2571,Artists' Sunny 1-BR Apt in Astoria,Entire home/apt,1071.0,1.0,2.0,No visitors & No children under 10,9,Kansas City +2572,Full Apartment in Upper West Side.,Entire home/apt,286.0,2.0,2.0,No children under 10,2,Mosinee +2573,2 Bedroom Apartment in Heart of Chinatown,Entire home/apt,1074.0,3.0,2.0,No parties,3,Lake Charles +2574,Convenient Downtown Apartment in LES/Chinatown,Private room,684.0,1.0,5.0,No smoking & No visitors,2,Joplin +2575,Bright & Dramatic 3 bed/2bath Duplex,Entire home/apt,581.0,2.0,5.0,No visitors & No pets,5,College Station +2576,Clean and convenient 2BR apartment,Private room,405.0,7.0,3.0,No visitors & No children under 10,2,Gunnison +2577,Charming Townhouse duplex in Chelsea,Entire home/apt,712.0,3.0,5.0,No smoking,6,Springfield +2578,Private Room with Private Bath Upper East Side,Private room,359.0,1.0,4.0,No children under 10,2,Los Angeles +2579,"Own Living room, Bathroom & W/D in the EV!",Private room,534.0,14.0,3.0,,1,Aguadilla +2580,Wonderful Large 1 bedroom,Entire home/apt,920.0,500.0,1.0,No visitors,8,Fort Leonard Wood +2581,Harlem apt,Private room,496.0,1.0,4.0,No children under 10 & No smoking & No pets,1,St. Petersburg +2582,Lovely 1B1B Apt in UWS Manhattan,Entire home/apt,1076.0,14.0,3.0,No parties & No visitors,8,Kodiak +2583,Authentic artist loft space in Prime Williamsburg,Entire home/apt,654.0,30.0,4.0,No smoking & No parties,5,Evansville +2584,BROWNSTONE TWO IN BROOKLYN in NYC,Private room,51.0,3.0,3.0,No smoking & No parties,2,Barrow +2585,Enormous 10 foot ceiling Bushwick room,Private room,926.0,1.0,2.0,No pets & No smoking & No parties,2,Trenton +2586,"Beloved Williamsburg, Brooklyn is calling to you!",Private room,332.0,3.0,4.0,No pets & No parties & No smoking,2,St. Louis +2587,Spacious modern 3 BR in Park Slope,Entire home/apt,148.0,4.0,2.0,,3,Raleigh +2588,LUXURIOUS APT in MANHATTAN w TERRACE and GYM,Private room,187.0,1.0,3.0,No parties & No visitors,1,Melbourne +2589,Spacious and Sunny Private Bedroom in Dumbo,Private room,1102.0,1.0,2.0,No visitors,2,North Platte +2590,Your TICKET to TIMES SQUARE New York,Entire home/apt,1042.0,5.0,4.0,,2,Spokane +2591,Awesome East Village Apartment!,Entire home/apt,333.0,7.0,1.0,No children under 10 & No parties,2,Mosinee +2592,"Private room. 1 bed, 2 guests, 3333 Broadway",Private room,705.0,1.0,3.0,No children under 10 & No smoking,2,Wilmington +2593,90 Washington St Luxury apartment,Entire home/apt,1160.0,30.0,3.0,No visitors,3,Bristol +2594,Cozy Private Bedroom 5mins to NYC,Private room,152.0,3.0,2.0,No children under 10,1,St. Cloud +2595,Comfy private room in great Astoria neighborhood,Private room,1150.0,1.0,5.0,No children under 10,2,Bismarck +2596,Private 1BR W/ Private Bathroom in Chinatown,Private room,1029.0,1.0,1.0,No visitors,1,Anchorage +2597,"Local West Village, Manhattan Apartment",Entire home/apt,382.0,4.0,5.0,No visitors & No parties,2,Rock Springs +2598,Small and Cozy room on Upper West Side,Private room,269.0,1.0,3.0,No parties,1,State College +2599,Windsor Terrace Garden Apartment,Entire home/apt,418.0,1.0,2.0,,3,Provo +2600,Bushwick Den,Private room,1173.0,3.0,2.0,No visitors & No pets,1,Tampa +2601,Queens Rm in Celebrity's Home,Private room,745.0,1.0,2.0,No visitors & No parties,2,Gulfport +2602,3 Bedroom/4 Beds @ Ferry. Sleeps 7. Beautiful!,Entire home/apt,762.0,4.0,3.0,No pets,7,Dickinson +2603,"NO FEE, Brand New Luxury Studio in Manhattan",Entire home/apt,1094.0,7.0,3.0,No pets & No visitors,6,Yakutat +2604,Luxury NYC 2 Bedroom with Terrace,Entire home/apt,907.0,7.0,5.0,No smoking,4,Evansville +2605,BEAUTIFUL 2 BED/ BRICK WALLS/ 52ST,Entire home/apt,731.0,30.0,3.0,No smoking,7,Las Vegas +2606,Sunny chic room with private bath in new apartment,Private room,1079.0,1.0,3.0,No parties & No children under 10,2,Kona +2607,SUNNY COZY PLACE,Entire home/apt,526.0,3.0,4.0,No smoking & No visitors & No children under 10,3,Lihue +2608,"Private Room in Top Floor Apartment, heart of NYC",Private room,116.0,1.0,2.0,No visitors & No children under 10,1,Fargo +2609,Charming and Bright 1 bdr apartment in Noho,Entire home/apt,112.0,2.0,3.0,No children under 10,3,Colorado Springs +2610,"Clean, spacious and comfortable room at Bronx",Private room,589.0,3.0,5.0,,2,Rochester +2611,New Chic Designer's Bedroom,Private room,636.0,3.0,3.0,No parties & No children under 10,1,Casper +2612,Brooklyn House at 443 Linden Room 3,Private room,1029.0,3.0,2.0,,1,Lake Charles +2613,CB3 BROOKLYN,Private room,1009.0,6.0,4.0,No smoking & No parties & No children under 10,1,Richmond +2614,Private room with private bathroom,Private room,58.0,2.0,3.0,No smoking,2,Tucson +2615,JULY/AUG SUBLET,Entire home/apt,386.0,1.0,5.0,No pets & No smoking,3,Newport News +2616,Spacious & Artsy Astoria Apartment,Entire home/apt,647.0,3.0,4.0,No parties & No children under 10,5,Syracuse +2617,Super Large & Cozy One Bedroom Apartment,Entire home/apt,656.0,2.0,5.0,No parties,3,Ogdensburg +2618,"Cozy, quiet and location, location, location",Entire home/apt,125.0,4.0,4.0,No smoking & No parties,3,Jacksonville +2619,Wonderful Williamsburg,Private room,440.0,1.0,2.0,No smoking & No parties,2,Fort Wayne +2620,The Palace of Perhaps (Bushwick / Ridgewood),Private room,761.0,2.0,2.0,No children under 10 & No smoking & No pets,1,Portland +2621,Light filled studio apt with expansive city view,Entire home/apt,376.0,2.0,2.0,No smoking,3,Baton Rouge +2622,Spacious artsy private bedroom,Private room,793.0,1.0,2.0,No smoking,1,Minneapolis +2623,Prime Artist Loft & Exposed Brick,Entire home/apt,956.0,2.0,5.0,,2,Moab +2624,"Large, Private, Sunny Room 8 min to Subway -Harlem",Private room,88.0,4.0,3.0,No pets,2,Marquette +2625,Exclusive Modern Penthouse Apartment,Entire home/apt,483.0,1.0,3.0,No pets & No visitors,3,Dallas +2626,"Entire, Immaculate 1-Bedroom CHELSEA APARTMENT",Entire home/apt,309.0,2.0,4.0,No smoking & No pets & No parties,2,Buffalo +2627,Madison Square - Double Double,Private room,297.0,1.0,5.0,No parties & No smoking & No children under 10,1,Mosinee +2628,Midtown East 2 Bedroom 3 Beds,Entire home/apt,551.0,30.0,5.0,No pets & No smoking,5,Hattiesburg +2629,Large Sunny Room with Huge patio in Wburg,Private room,881.0,2.0,4.0,No parties,2,Phoenix +2630,"Bright, Luxury FiDi Studio w/ Doorman, Roof deck by Blueground",Entire home/apt,1147.0,120.0,3.0,No visitors,9,Hattiesburg +2631,RATED ★★★★★ IN THIS 2 BEDROOM PRESIDENTIAL SUITE,Entire home/apt,262.0,2.0,2.0,No smoking & No visitors,3,Hayden +2632,Cozy Bedroom Uptown Manhattan,Private room,1042.0,4.0,5.0,No children under 10,1,Toledo +2633,Christmas Shopping in Manhattan,Private room,439.0,4.0,4.0,No children under 10,2,Hyannis +2634,Spacious Private Room in bright Manhattan 2 BR,Private room,963.0,1.0,5.0,No pets & No children under 10 & No visitors,1,Sanford +2635,Amazing Private Room in BK,Private room,848.0,2.0,5.0,No smoking & No children under 10,2,El Paso +2636,"Comfort, light and calm just 3 minutes from mid-town",Entire home/apt,1005.0,2.0,4.0,No children under 10 & No parties & No smoking,8,Huntsville +2637,Sunny Two Bedroom in South Slope,Entire home/apt,879.0,7.0,1.0,No children under 10 & No pets & No visitors,3,Bakersfield +2638,1 Room in Bushwick *Females only*,Private room,828.0,5.0,3.0,No visitors & No smoking,2,Jackson +2639,Sunny back bedroom in duplex,Private room,919.0,7.0,2.0,No children under 10,1,Riverton +2640,"Huge, One of A Kind, Artsy Loft in Greenpoint",Entire home/apt,453.0,2.0,1.0,No parties,4,Iron Mountain +2641,Sunny 1 Bedroom Apt in East Harlem!,Entire home/apt,162.0,2.0,3.0,No parties,2,Dubuque +2642,Spacious Bushwick Home w/ Zen Garden & Yoga Loft,Private room,743.0,3.0,2.0,No parties,2,Fargo +2643,Stunning Brooklyn loft in a church!,Entire home/apt,1039.0,2.0,5.0,No smoking,8,Hartford +2644,1Bedroom 15min Train ride to the Heart of NEW YORK,Private room,274.0,2.0,2.0,No pets,1,Colorado Springs +2645,Quiet Cozy Chelsea Studio,Entire home/apt,1029.0,3.0,5.0,No parties,7,Philadelphia +2646,"Spacious Bedroom, L.E.S.",Private room,821.0,3.0,5.0,,1,Charleston +2647,Beautiful room in the heart of Time Square,Private room,441.0,3.0,5.0,No children under 10 & No pets,1,Gulfport +2648,Cozy Bedroom in the heart of Manhattan,Private room,1183.0,3.0,2.0,No smoking & No visitors,1,Asheville +2649,Big Sunny Room 1 Block from Central Park,Private room,505.0,3.0,5.0,No parties,2,Owensboro +2650,Walk to Subway★15min to Manhattan★Min. to LGA/JFK,Entire home/apt,308.0,3.0,2.0,No visitors,2,Concord +2651,Charming Bright Room in Bed Stuy Brownstone,Private room,1064.0,30.0,3.0,No visitors & No smoking & No pets,2,New York +2652,Bright room in beautiful Park Slope apartment,Private room,1145.0,2.0,5.0,No parties,1,Juneau +2653,"Mid-Century Style Room Close to All, Astoria NYC!",Private room,921.0,3.0,3.0,No visitors & No parties,1,Idaho Falls +2654,Charming studio with Manhattan view.,Private room,398.0,7.0,2.0,,1,Decatur +2655,"Sunny/Quiet/Clean/Zen, in Central Location!",Private room,500.0,30.0,2.0,No children under 10 & No visitors,1,Sitka +2656,"Cozy Room, 2 min Times Square, centrally located",Private room,959.0,3.0,5.0,No children under 10,1,Ketchikan +2657,Big Bright room in Bushwick,Private room,427.0,3.0,3.0,No smoking,1,Muskegon +2658,Private Cozy Room,Private room,1024.0,1.0,2.0,No visitors,1,Hilo +2659,East Village 1BR with private patio,Entire home/apt,566.0,3.0,4.0,No smoking,4,Richmond +2660,Cozy Living Environment,Entire home/apt,669.0,2.0,5.0,No smoking & No pets,2,Kearney +2661,Stylish Park Slope loft,Entire home/apt,994.0,10.0,1.0,No smoking,6,Ashland +2662,The Brooklyn Blue House 3,Private room,214.0,2.0,3.0,No parties & No children under 10,1,Missoula +2663,Private room in luxury building,Private room,155.0,1.0,1.0,No smoking & No visitors,2,Fairbanks +2664,Bright room and private terrace with a view,Private room,322.0,2.0,3.0,No children under 10 & No visitors,1,Hobbs +2665,Bed-Stuy top floor room w/ extreme natural light,Private room,1184.0,4.0,2.0,No children under 10 & No parties,1,Alpena +2666,"Cute, airy attic room",Private room,522.0,1.0,3.0,No pets,1,Asheville +2667,Cozy 1 bedroom in Clinton Hill,Entire home/apt,702.0,7.0,5.0,No visitors & No pets,2,Oklahoma City +2668,Heights IV,Private room,895.0,1.0,5.0,No pets & No parties & No visitors,2,Norfolk +2669,Feel like you never leave your home,Entire home/apt,186.0,1.0,1.0,No pets & No children under 10 & No visitors,2,Champaign +2670,Brooklyn Duplex with Terrace near Park,Entire home/apt,156.0,30.0,2.0,No smoking,2,Appleton +2671,"2 room, lower level home in Queens",Private room,735.0,2.0,4.0,No children under 10 & No visitors,2,El Paso +2672,Room for sublet in lovely Ridgewood!,Private room,687.0,7.0,5.0,No pets & No parties & No children under 10,2,Boise +2673,Awesome Studio East 58&3rd avenue!,Entire home/apt,881.0,30.0,4.0,No pets,7,Hays +2674,"Spacious, Sunny Room in Park Slope",Private room,338.0,2.0,5.0,No smoking & No visitors,1,Watertown +2675,Elegant Stu Suite in Midtown East -21,Entire home/apt,981.0,30.0,2.0,No visitors & No parties,7,Minneapolis +2676,Spacious 1 BD in Williamsburg next to L train,Entire home/apt,454.0,1.0,3.0,No children under 10 & No parties,4,Portsmouth +2677,Private suite,Entire home/apt,130.0,1.0,1.0,No visitors,2,Kona +2678,Entire apartment in the heart of west village,Entire home/apt,599.0,2.0,5.0,No parties,3,Walla Walla +2679,Bushwick Rustic Loft,Private room,282.0,1.0,3.0,No children under 10 & No visitors & No parties,2,Greenville +2680,Cozy bedroom apt near to LGA airport. Free Parking,Entire home/apt,925.0,2.0,1.0,No smoking & No parties,9,Raleigh +2681,PRIME Location:2min Subway 1min LIRR & NEWLY Built,Private room,341.0,30.0,2.0,,1,Riverton +2682,Convenient family friendly entire 2br in Bushwick.,Entire home/apt,1092.0,7.0,5.0,No smoking & No pets & No children under 10,7,Juneau +2683,Sunny Brownstone Attic,Entire home/apt,280.0,2.0,1.0,No children under 10,3,Lewisburg +2684,New Stunning 1 Bed in Midtown East #6133,Entire home/apt,652.0,30.0,4.0,No pets,6,Rock Springs +2685,"1,600sq ft modern duplex in new harlem brownstone",Entire home/apt,1159.0,2.0,2.0,No smoking & No children under 10 & No pets,5,Knoxville +2686,Modern Sunlit Room w/ Balcony on Famous Street!,Private room,979.0,4.0,4.0,No smoking,2,Cleveland +2687,Cozy large Full 1 Bedroom Apt,Entire home/apt,168.0,354.0,2.0,,2,St. George +2688,Wyndham Midtown 45 (2 Bedroom Presidential) 4A,Entire home/apt,192.0,3.0,3.0,No visitors,2,Kansas City +2689,The Quintessential Bushwick Loft: The Dream Cove,Shared room,684.0,3.0,2.0,,1,Dallas +2690,Perfect Two Bed Railroad Style Apartment,Entire home/apt,1093.0,4.0,3.0,No pets & No parties,4,Tampa +2691,BK sunny 1 BR close to trains,Entire home/apt,967.0,3.0,4.0,No smoking,3,Charleston +2692,Spiritual Oasis in the East Village,Entire home/apt,79.0,19.0,4.0,No smoking & No children under 10,2,Providence +2693,1 Bedroom Apartment -Tompkins sq Park/East Village,Entire home/apt,841.0,4.0,5.0,No visitors & No pets,3,Traverse City +2694,Private Bedroom in LIC/ Astoria,Private room,1147.0,29.0,3.0,No pets,2,Bishop +2695,"Sunny, Spacious Private BR in East Village!",Private room,,1.0,1.0,No visitors & No smoking & No children under 10,2,Milwaukee +2696,Spacious Private Room in Crown Heights,Private room,1054.0,5.0,2.0,,2,Greer +2697,Chelsea/Union Square cozy studio,Entire home/apt,406.0,2.0,3.0,No smoking & No parties,4,Oklahoma City +2698,Charming Greenwich Village Oasis,Entire home/apt,1086.0,4.0,1.0,No children under 10 & No pets,8,Hilton Head +2699,"Sunny, Quiet top-floor 2 bedroom in Cobble Hill",Entire home/apt,707.0,1.0,2.0,No smoking,3,Tucson +2700,Bright Lux 1BR in Williamsburg,Entire home/apt,1139.0,4.0,5.0,No visitors & No smoking,2,Cordova +2701,Amazing Studio at the Time Square/52C,Entire home/apt,1140.0,30.0,4.0,No pets,4,Meridian +2702,Sonder | The Biltmore | Stunning 1BR + Sofa Bed,Entire home/apt,1031.0,29.0,2.0,,5,Newark +2703,Cute studio apt in West Village,Entire home/apt,1006.0,7.0,2.0,No children under 10,2,Yakima +2704,COZY HARLEM ROOM BY THE WATER - CREATIVE SPACE,Private room,205.0,2.0,3.0,No smoking & No visitors,1,Longview +2705,Big Apple Retreat,Entire home/apt,978.0,3.0,3.0,No smoking,5,Oklahoma City +2706,Welcome to YURT -- comfy room in East Village,Private room,442.0,1.0,3.0,No visitors,1,Lake Charles +2707,WILLIAMSBURG AUTHENTIC ARTIST LOFT,Private room,802.0,1.0,1.0,No smoking & No pets,2,Hilton Head +2708,Cozy 1 bedroom in Heart of East Village,Private room,761.0,1.0,4.0,No pets & No smoking,1,Oklahoma City +2709,Bushwick Room,Private room,353.0,20.0,4.0,No children under 10 & No smoking,2,Fort Leonard Wood +2710,East Village Getaway,Entire home/apt,878.0,3.0,5.0,No parties & No children under 10,8,Monroe +2711,Charismatic Flat in Astoria,Private room,1098.0,3.0,2.0,No children under 10,2,Charlottesville +2712,One Bedroom Bronx Bohemian style living space,Private room,77.0,2.0,4.0,No pets & No visitors,2,Hattiesburg +2713,Brooklyn Flavor,Private room,741.0,3.0,4.0,No pets,1,Oklahoma City +2714,Prime Doorman Elevator! Huge One bedroom UN 5239,Entire home/apt,1154.0,30.0,2.0,No visitors,4,Panama City +2715,Stunning ! All new near U.N. & Central Park,Entire home/apt,675.0,30.0,4.0,No pets,3,Atlanta +2716,*PRIME* Serenity & Love-Private Oasis (Bedford Av),Entire home/apt,828.0,3.0,4.0,No pets & No visitors,5,Garden City +2717,"private room in clean, homey apartment",Private room,348.0,29.0,3.0,No pets & No children under 10,1,Columbia +2718,Large family loft in the best Chelsea location,Entire home/apt,305.0,5.0,3.0,No pets,2,Columbus +2719,A lovely home to lay your head down,Private room,92.0,1.0,3.0,No pets,2,Bellingham +2720,"Sunny, Artistic Getaway Near Prospect Park",Entire home/apt,307.0,2.0,3.0,No parties,3,Akron +2721,Shared male room on Manhattan.Breathtaking view II,Shared room,1099.0,14.0,4.0,No pets,1,Alamosa +2722,East Williamsburg Cozy Studio,Entire home/apt,900.0,2.0,5.0,,4,Bloomington +2723,Studio Style Basement in Shared Apartment,Private room,498.0,20.0,5.0,No parties & No visitors,1,Denver +2724,Pvt. Room w/full bed safe & close to everything,Private room,1020.0,3.0,3.0,,2,Laredo +2725,"Stylish, convenient, renovated- 2 min to subway -",Entire home/apt,64.0,1.0,5.0,No smoking & No pets & No children under 10,2,Appleton +2726,New Renovated Studio~Prime Upper East~W/D,Entire home/apt,1174.0,30.0,4.0,No pets & No visitors & No parties,10,Grand Junction +2727,Room 2: Sunny Queen W Private Bathroom & Breakfast,Private room,257.0,1.0,2.0,No visitors & No children under 10,2,Waco +2728,Private apartment 45 min away from the city,Entire home/apt,805.0,1.0,5.0,,5,Kodiak +2729,Lovely Spacious Studio in Bedstuy,Shared room,202.0,3.0,4.0,No pets & No visitors & No children under 10,1,Hyannis +2730,**Studio Apartment 20 min. From MANHATTAN **,Entire home/apt,947.0,2.0,2.0,No pets & No parties & No visitors,6,Barrow +2731,Cozy room in South Williamsburg BK,Private room,783.0,2.0,5.0,No children under 10 & No pets & No smoking,2,Colorado Springs +2732,Manhattan adventure,Private room,430.0,4.0,5.0,No children under 10,2,Fort Wayne +2733,Leli’s Modern Luxe Apartment,Private room,885.0,2.0,2.0,No children under 10,2,Manhattan +2734,靠近机场交通购物两便利房间#1,Private room,892.0,1.0,3.0,No pets,2,Lubbock +2735,Room In Manhattan Close to Everything,Private room,191.0,2.0,3.0,No smoking & No visitors & No parties,2,West Yellowstone +2736,Where Love and Happiness Live,Entire home/apt,223.0,1.0,4.0,No visitors & No parties,2,Hyannis +2737,"Brooklyn, KingsHwy . 1 room for 1 person",Private room,297.0,1.0,3.0,,2,Jacksonville +2738,QUIET 1BR apartment CLOSE to EVERYTHING,Entire home/apt,498.0,5.0,5.0,No smoking & No parties,4,Punta Gorda +2739,Designer 2 Bedroom Loft**Greenwich Village**4BEDS*,Entire home/apt,660.0,5.0,2.0,No smoking & No parties,6,Charlotte +2740,Cozy Renovated 2 Bedroom Apartment Heart of Brklyn,Entire home/apt,890.0,30.0,5.0,No parties & No visitors,4,New Orleans +2741,Large 1st floor apartment at fantastic location!,Entire home/apt,210.0,2.0,4.0,,3,Cordova +2742,Sunlit 3BR Urban Retreat & Parking near City &JFK,Entire home/apt,329.0,2.0,3.0,No pets & No children under 10,3,Laramie +2743,2 Bed 2 Bath Close To Park Pool in building,Entire home/apt,386.0,31.0,5.0,,2,Christiansted +2744,Private Bedroom in Williamsburg Madison 2L-5,Private room,489.0,30.0,3.0,No visitors,1,Rock Springs +2745,Spacious Luxury Studio-96th and WEA,Entire home/apt,820.0,4.0,2.0,No parties & No pets,8,Los Angeles +2746,"Cozy private room, close to the subway & beach",Private room,887.0,1.0,1.0,No pets,2,Texarkana +2747,Spacious Apartment perfect to relax and enjoy .,Entire home/apt,743.0,5.0,3.0,No visitors & No smoking,6,Belleville +2748,"Brand new two-bedroom apt. in Bensonhurst, Bklyn!",Entire home/apt,1100.0,4.0,4.0,No children under 10,3,Lansing +2749,*JAMES* Amazing Spacious 2 Bedroom- Bright!,Entire home/apt,806.0,30.0,4.0,No pets & No visitors & No smoking,5,Eagle +2750,Quiet apartment next to subway. 15 min to midtown,Entire home/apt,695.0,15.0,5.0,No visitors & No children under 10,6,Aguadilla +2751,FABULOUS BED ROOM WITH 4 BEDS (JFK - 12 MINS),Private room,398.0,1.0,4.0,No pets,2,Paducah +2752,GREAT location LARGE 1BR $129 night,Entire home/apt,82.0,3.0,2.0,No children under 10 & No parties,2,Sitka +2753,"Clean, Quiet, Hip Apt in Bed Stuy",Entire home/apt,593.0,14.0,3.0,,5,Ogden +2754,"Newly renovated, 1.5 bdr SoHo apt",Entire home/apt,,1.0,5.0,No visitors & No pets & No smoking,3,Charlottesville +2755,THE PRIVACY DEN ~ 5 MINUTES TO JFK,Entire home/apt,1071.0,1.0,3.0,,4,Medford +2756,The Justice Suite,Entire home/apt,232.0,1.0,2.0,No children under 10,2,Sault Ste. Marie +2757,Spacious 1 bedroom in Woodlawn NYC,Entire home/apt,163.0,2.0,2.0,No children under 10,2,San Francisco +2758,"SUNNY, SAFE and FRIENDLY minutes to Manhattan!",Entire home/apt,559.0,2.0,2.0,No pets,4,Dallas +2759,"One bedroom Apt in Manhattan, East Village",Entire home/apt,86.0,1.0,5.0,No visitors,3,Dothan +2760,Sunny room in 2bed apt in East Harlem Fullsize bed,Private room,623.0,14.0,5.0,No children under 10,2,Traverse City +2761,Bed Stuy Brownstone Charm,Private room,925.0,2.0,4.0,,2,Manchester +2762,Rare gem of an apartment in NYC. So Spacious!,Private room,918.0,3.0,5.0,No visitors,1,Ketchikan +2763,Cozy Studio Apt-One block away from Prospect Park!,Entire home/apt,108.0,1.0,5.0,No children under 10 & No smoking,3,Las Vegas +2764,Two rooms in one. A family friendly neighborhood.,Private room,247.0,3.0,3.0,No parties & No pets,2,Liberal +2765,Bronx Beauty: Renovated historic rowhouse.,Private room,852.0,14.0,4.0,No smoking,1,Laramie +2766,Times Square Area Studio,Entire home/apt,176.0,2.0,1.0,No visitors,2,Jackson +2767,Quiet Riverside Park 1 bdrm w gym,Entire home/apt,385.0,10.0,3.0,No smoking & No children under 10 & No parties,3,Savannah +2768,Surfin’ Bird House Red at Rockaway Beach,Entire home/apt,1177.0,4.0,5.0,No parties & No visitors,6,Cordova +2769,Cosy Room in Williamsburg House,Private room,1173.0,4.0,3.0,No smoking,2,Scranton +2770,Beverly Hills Studio,Entire home/apt,873.0,3.0,4.0,No children under 10,3,Devils Lake +2771,"Huge 2 Bedroom, Great Location, Express Metro",Entire home/apt,745.0,4.0,5.0,No children under 10 & No visitors,4,Washington +2772,Cosy Apartment in the Heart of Manhattan,Entire home/apt,677.0,1.0,5.0,No children under 10 & No parties,2,Valdosta +2773,Peaceful Spacious 1 Bdrm Apt in Carroll Gardens,Entire home/apt,611.0,7.0,5.0,No pets,2,Charlottesville +2774,Modern Luxury Loft 3bd Williamsburg,Entire home/apt,980.0,3.0,5.0,No visitors & No children under 10,4,St. Louis +2775,East Village sunny/new bedroom,Private room,86.0,1.0,4.0,No pets,1,Deadhorse +2776,Sun-Drenched Studio in Clinton Hill,Entire home/apt,929.0,6.0,2.0,No pets & No smoking,4,Ogden +2777,2 bedrooms in upper east side #14,Entire home/apt,977.0,3.0,,No smoking & No pets & No children under 10,7,Santa Fe +2778,"Flatbush Apartment near 2,5 train",Entire home/apt,501.0,1.0,2.0,No visitors & No parties,4,Shreveport +2779,Good Vibes private room,Private room,356.0,3.0,2.0,No pets & No children under 10,1,Christiansted +2780,Bright and Sunny Room in Brand New Apt,Private room,727.0,1.0,5.0,No parties & No children under 10,1,Colorado Springs +2781,Coziness from a westelm catalog,Private room,759.0,1.0,4.0,No parties,2,Mason City +2782,Huge Sunny Apartment in Heart of Harlem NYC,Private room,1034.0,1.0,1.0,No smoking,1,Valdosta +2783,LOFT EXPERIENCE IN HEART OF WILLIAMSBURG,Private room,358.0,7.0,2.0,No parties,2,Guam +2784,A Great Room in Heart of NYC,Private room,680.0,3.0,3.0,No children under 10,2,Hobbs +2785,Private and Quiet Room in the Perfect Location,Private room,431.0,1.0,5.0,No smoking & No parties,2,Tucson +2786,Large 2 bedrooms in Little Italy/Chinatown,Entire home/apt,285.0,4.0,2.0,No parties & No pets,2,College Station +2787,Private Master BR/Bath - 15 Minutes to Manhattan,Private room,817.0,4.0,3.0,No parties & No smoking,2,Anchorage +2788,Comfortable Studio in the heart of Brooklyn,Entire home/apt,696.0,5.0,5.0,No pets & No smoking & No parties,2,Dillingham +2789,Bright Spacious BK Room with Bath,Private room,204.0,3.0,1.0,No visitors & No pets,2,Richmond +2790,HOME AWAY FROM HOME,Private room,911.0,1.0,2.0,No parties,1,Albuquerque +2791,The Ultimate Luxury!,Entire home/apt,1017.0,6.0,2.0,No smoking,8,Detroit +2792,Rare Downtown First Floor Apt w Private Backyard,Entire home/apt,764.0,3.0,5.0,,2,Bellingham +2793,Cozy Spacious Near TIMES SQUARE,Entire home/apt,624.0,1.0,5.0,,6,West Yellowstone +2794,Clinton Hill loft for your creative side.,Entire home/apt,770.0,3.0,4.0,No pets & No visitors & No parties,2,Hagerstown +2795,Luxury Loft Noho New York City,Entire home/apt,261.0,30.0,1.0,,2,Oklahoma City +2796,Harlem Cozy Studio,Entire home/apt,954.0,4.0,3.0,No smoking & No visitors,2,Sarasota +2797,nice room in bedstuy K,Private room,894.0,1.0,1.0,,2,Pueblo +2798,Cozy Studio In Crown Heights,Entire home/apt,633.0,2.0,5.0,No parties & No pets,2,Dickinson +2799,Studio Bedroom Apt in Williamsburg,Entire home/apt,173.0,3.0,3.0,No visitors,2,Fort Wayne +2800,Lovely apartment with a balcony,Entire home/apt,178.0,5.0,5.0,No smoking & No pets,3,Wichita Falls +2801,Nicki and Tim's place,Entire home/apt,447.0,5.0,4.0,No children under 10,3,Hobbs +2802,Cozy room in a 2B with backyard access,Private room,822.0,1.0,3.0,No parties,2,Roanoke +2803,Private and Comfortable bedroom,Private room,200.0,7.0,5.0,No parties & No children under 10 & No visitors,2,Dayton +2804,1 Bedroom Apartment with Balcony in Brooklyn,Entire home/apt,1192.0,1.0,2.0,No children under 10,6,Bangor +2805,Huge two bedroom apt n Bayridge!!!,Private room,1088.0,1.0,2.0,No children under 10,2,St. Louis +2806,Comfy Basement Studio,Private room,1118.0,2.0,2.0,No pets & No visitors,2,Kalamazoo +2807,Private Room Available in 2BedApt,Private room,952.0,1.0,1.0,No smoking & No parties & No pets,2,Moline +2808,Sofa bed for FEMALE only on the Lower East Side,Shared room,744.0,1.0,1.0,No smoking,1,Portland +2809,Perfectly formed in Park Slope,Entire home/apt,720.0,4.0,2.0,No children under 10,6,Colorado Springs +2810,Secret Garden,Private room,1066.0,4.0,5.0,No visitors & No children under 10,1,Charleston +2811,"Modern, lux BDR breakfast airport pickup included!",Private room,430.0,3.0,2.0,No children under 10,2,Adak Island +2812,Large Room in Park Slope,Private room,633.0,5.0,4.0,,2,Madison +2813,Group Friendly * Prospect Park * Close to Trains,Entire home/apt,1180.0,4.0,2.0,No smoking,2,Cincinnati +2814,Cute bedroom available near subway in Astoria!,Private room,1189.0,2.0,5.0,No visitors,1,New Orleans +2815,Bright and Cosy Room in Williamsburg,Private room,821.0,23.0,5.0,No children under 10,2,Lubbock +2816,Cozy private room / Williamsburg / L train,Private room,699.0,30.0,4.0,No visitors,1,Sacramento +2817,Home Studio Suite,Private room,405.0,4.0,5.0,No visitors,1,Monterey +2818,2BR luxury apt in Midtown East,Entire home/apt,897.0,4.0,3.0,No children under 10,3,Philadelphia +2819,Modern Loft overlooking McCarren Park,Entire home/apt,301.0,6.0,2.0,No pets,2,Corpus Christi +2820,"Private, Spacious Bedroom in Harlem, single bed",Private room,668.0,4.0,4.0,No smoking,1,Hilton Head +2821,Close to East Side Hospitals- Modern 2 Bedroom Apt,Entire home/apt,285.0,30.0,3.0,No smoking,3,Wilmington +2822,Huge Industrial Chic Williamsburg 1 Bdrm w/rooftop,Entire home/apt,640.0,1.0,5.0,,6,Charlotte +2823,Nice comfy private room with backyard included!,Private room,485.0,1.0,2.0,No parties & No children under 10 & No pets,1,Williston +2824,3 B GREAT 1BR APT IN NEW YORK CITY,Entire home/apt,135.0,30.0,1.0,No pets,2,Fayetteville +2825,Factory Converted 1BR Loft Brooklyn,Entire home/apt,982.0,30.0,3.0,No visitors & No smoking,3,Fort Leonard Wood +2826,Upper East Side 1 Bedroom Gem,Shared room,692.0,2.0,3.0,No children under 10 & No parties & No smoking,1,San Diego +2827,Prospect Heights Apartment,Entire home/apt,736.0,2.0,5.0,No children under 10,5,Manchester +2828,"Spacious, artsy bedroom in the heart of bushwick.",Private room,743.0,3.0,5.0,,1,Salt Lake City +2829,Elegant Guest Room A,Private room,208.0,1.0,2.0,No children under 10,2,Worcester +2830,Spacious bedroom w/ private entrance + roofdeck,Private room,266.0,2.0,5.0,No children under 10 & No smoking,1,Jackson +2831,Sonder | 21 Chelsea | Vibrant Studio + Rooftop,Entire home/apt,1016.0,29.0,4.0,No visitors,5,Monroe +2832,Center of it all Bushwick apartment,Private room,106.0,2.0,4.0,No smoking,2,Sun Valley +2833,Spacious Renovated Apt. in Harlem,Private room,120.0,1.0,2.0,No pets & No smoking,2,Moab +2834,Private Room pretty close to Manhattan,Private room,823.0,5.0,5.0,No visitors,2,Ontario +2835,Bright and cozy 1 bedroom,Entire home/apt,849.0,1.0,3.0,No visitors,6,Sioux Falls +2836,Historic Serene Chelsea Brownstone 2.5 Bed,Entire home/apt,338.0,30.0,5.0,No smoking,3,Elko +2837,Amazing new private bedroom 5 min to subway,Private room,790.0,2.0,3.0,No smoking,1,Chicago +2838,Mid Town East Side Apartment,Entire home/apt,737.0,1.0,1.0,No pets & No children under 10,6,Albany +2839,Large Private Bedroom in Williamsburg Apartment,Private room,457.0,30.0,3.0,No parties,1,Valdosta +2840,My Little Guest Apartment,Entire home/apt,524.0,2.0,1.0,No children under 10,4,Corpus Christi +2841,"BIG & SUNNY, 1 STOP FROM MANHATTAN",Entire home/apt,420.0,4.0,3.0,No pets,3,Mobile +2842,Clean and Cozy Brooklyn Room in Artsy Apartment,Private room,514.0,1.0,3.0,No pets,1,Pensacola +2843,Private Room in Cozy shared apt in Williamsburg,Private room,527.0,6.0,4.0,No smoking,2,Moline +2844,2 bedroom apt in the heart of Bushwick (House),Entire home/apt,293.0,2.0,5.0,No pets & No smoking & No parties,3,Akron +2845,Beautiful room near central park,Shared room,973.0,1.0,4.0,,1,Columbus +2846,UNIQUE 1 BED ROOM in FLATIRON/NOMAD/GRAMERCY,Entire home/apt,445.0,2.0,5.0,No pets,2,Bismarck +2847,2 bedrooms avail. In my house,Entire home/apt,748.0,30.0,1.0,No children under 10,6,Eagle +2848,Lovely 1 bedroom Manhattan flat in Spanish Harlem,Private room,168.0,7.0,2.0,No parties,1,Sault Ste. Marie +2849,Cozy Room Amazingly Located in Williamsburg !,Private room,448.0,3.0,4.0,No smoking,2,Seattle +2850,"4 Bedroom Apt. Prospect Lefferts Gardens, Bklyn",Entire home/apt,333.0,1.0,5.0,No smoking,3,Panama City +2851,Room in Clean/Quiet/Funky Space!,Private room,473.0,3.0,1.0,No parties,2,Monroe +2852,Beautiful Bay Ridge room,Private room,390.0,6.0,1.0,No pets & No children under 10,2,Jacksonville +2853,"Huge 2 Bedroom, Great Location, Express Metro",Entire home/apt,745.0,4.0,5.0,No visitors,4,Asheville +2854,"2017 BUILDING, NEW LOFT, 5 MIN SUB TO MANHATAN",Private room,833.0,1.0,4.0,No smoking,1,Del Rio +2855,NYC Spacious 6 Br Victorian Home w/ parking,Entire home/apt,336.0,3.0,3.0,No smoking & No visitors,3,Boston +2856,Central Harlem Home,Private room,1172.0,2.0,4.0,No smoking,2,Cincinnati +2857,Modern 1 bd in the heart of East Village,Entire home/apt,1018.0,2.0,1.0,No smoking,2,Charleston +2858,New york Cozy Studio Near multiple metro Lines,Entire home/apt,1021.0,1.0,2.0,No children under 10,10,Hays +2859,Sunny 1-Bedroom close to Manhattan,Entire home/apt,896.0,4.0,4.0,No pets,2,Aguadilla +2860,2 BDRM PRESIDENTIAL LUXURY CONDO MIDTOWN 45 NYC *,Private room,609.0,3.0,2.0,No visitors & No pets,2,Philadelphia +2861,Christmas Week ONLY! Spacious Sunnyside 2 Bdrm Apt,Entire home/apt,599.0,2.0,3.0,,5,Bishop +2862,Up to 4 people-Only steps away from Times Square!!,Private room,1046.0,1.0,2.0,No visitors & No smoking,2,Newark +2863,Cozy private bedroom,Private room,564.0,1.0,2.0,No visitors,2,Scranton +2864,Best CoLiving next to Bushwick!,Shared room,766.0,31.0,1.0,,1,Fort Lauderdale +2865,☆☆☆Extravagant Couple's Escape☆☆☆,Private room,972.0,1.0,4.0,No pets & No parties,2,Montgomery +2866,Sunny Brooklyn room,Private room,227.0,7.0,3.0,No pets,2,Dallas +2867,Cozy Private Room,Private room,1154.0,28.0,1.0,No smoking & No visitors,1,Kansas City +2868,Private room in quiet West Harlem Upper Manhattan,Private room,339.0,1.0,3.0,No pets,2,New Bern +2869,Spacious UES room for your travels!,Private room,712.0,1.0,2.0,No visitors & No parties,2,Fort Leonard Wood +2870,Organic Oasis Duplex (EMF-free),Entire home/apt,1186.0,60.0,4.0,No visitors & No smoking,4,San Diego +2871,Cozy Apartment off J&M Subway Lines,Entire home/apt,1056.0,1.0,2.0,No smoking,8,Punta Gorda +2872,The Perfect 1-bedroom in Cobble Hill,Entire home/apt,751.0,5.0,1.0,No children under 10 & No smoking & No pets,5,Kahului +2873,Sunny Private Bedroom in a Luxurious Apartment,Private room,941.0,2.0,2.0,No smoking,1,Laredo +2874,Chic & Cosy Lower East Side Apartment,Private room,577.0,2.0,3.0,No parties,1,Petersburg +2875,Lovely 3 bedroom Townhouse in BK Historic District,Entire home/apt,350.0,3.0,5.0,No children under 10,3,Bozeman +2876,Residential Area in the heart of Queens,Private room,913.0,1.0,5.0,No children under 10,1,Watertown +2877,Lush mid-century haven in Greenpoint,Private room,975.0,3.0,4.0,,2,Charleston +2878,"A place to sleep the night near NYC,RUMC, Brooklyn",Entire home/apt,723.0,3.0,4.0,No parties,7,Yuma +2879,Sunny room in the heart of Williamsburg,Private room,168.0,4.0,2.0,No parties & No pets & No smoking,2,Waco +2880,1 Bedroom in Modern Williamsburg Duplex,Private room,192.0,1.0,2.0,No visitors & No children under 10,1,Casper +2881,"ENTIRE, PRIVATE NYC home 3mins from JFK Airport",Entire home/apt,207.0,1.0,2.0,,2,Boise +2882,Peaceful Spacious 1 Bdrm Apt in Carroll Gardens,Entire home/apt,611.0,7.0,5.0,No pets & No smoking & No visitors,2,Ogden +2883,"LES private apt, 1 bedroom & more",Entire home/apt,613.0,3.0,5.0,No smoking,2,Santa Rosa +2884,LAST MINUTE STAY IN WARM COZY ROOM,Private room,1130.0,2.0,4.0,No parties,1,St. Cloud +2885,Huge Private Room in New York 10minute to Midtown,Private room,471.0,1.0,5.0,No pets & No visitors,2,Columbus +2886,The Oasis 1,Private room,328.0,3.0,2.0,No visitors,1,Evansville +2887,"Bright, airy loft in Bushwick's street art scene",Entire home/apt,1038.0,4.0,3.0,No pets,8,St. Petersburg +2888,1889 Brooklyn Firehouse Apt. Clinton Hill-BedStuy,Entire home/apt,977.0,2.0,3.0,No parties,2,St. George +2889,"A small bedroom, Lower East Side",Private room,142.0,3.0,1.0,No visitors,2,Bemidji +2890,"Clean, large, private R room with queen sized bed",Private room,404.0,2.0,4.0,No smoking & No pets & No parties,2,Binghamton +2891,Williamsburg large and sunny private room,Private room,579.0,7.0,3.0,No children under 10,2,San Luis Obispo +2892,Clean spacious 1 bedroom apt,Entire home/apt,1063.0,2.0,4.0,No children under 10 & No parties,3,Grand Junction +2893,Charming studio located in Kips Bay!,Entire home/apt,712.0,3.0,2.0,,2,Victoria +2894,Cute NYC studio in the heart of East Village,Entire home/apt,1004.0,5.0,3.0,No pets & No children under 10,2,Savannah +2895,Your own duplex 3 bedroom w. backyard in Bed-Stuy!,Entire home/apt,1115.0,5.0,5.0,No smoking,6,Bishop +2896,HOUSE WITH 2 ENTRANCES 15min TO MANHATTAN,Entire home/apt,961.0,3.0,4.0,,9,College Station +2897,West Village Private Flat AMAZING Location,Entire home/apt,702.0,5.0,4.0,No parties,6,Mission +2898,Stunning Central Park 1 bedroom,Entire home/apt,139.0,7.0,2.0,No smoking & No visitors & No parties,3,Butte +2899,Bx Apartment,Private room,531.0,1.0,3.0,,2,Baton Rouge +2900,Adorable Prospect Heights 1 Bedroom,Entire home/apt,107.0,31.0,3.0,No children under 10,2,Myrtle Beach +2901,Heart of Williamsubrg 1 Bedroom,Entire home/apt,437.0,3.0,5.0,No smoking & No pets,2,Ashland +2902,Harlem Short Term Stay,Entire home/apt,318.0,4.0,5.0,No pets & No smoking,2,New Orleans +2903,Beautiful sunny room in Central Brooklyn/Bed-Stuy,Private room,430.0,5.0,4.0,,2,Sitka +2904,Top Floor Newly Renovated 1-Bedroom,Entire home/apt,1046.0,4.0,1.0,No smoking,10,Sun Valley +2905,"A Clean, Quite, Great room for NY visit.",Private room,293.0,3.0,2.0,No visitors,1,North Platte +2906,"*Light & Love* vibrant, historic, sleeps 4",Entire home/apt,679.0,5.0,2.0,No pets,2,Nashville +2907,"Cozy Space-Sunny Studio- Flatbush, Brooklyn",Entire home/apt,450.0,3.0,3.0,No parties,2,Colorado Springs +2908,Beautiful bedroom in Upper Manhattan,Private room,1170.0,2.0,2.0,No parties & No pets,2,Lubbock +2909,(Williamsburg) Large bedroom with private balcony,Private room,924.0,1.0,2.0,No smoking,2,Albany +2910,Entire Home in NYC- 1 bedroom/ Private Entrance,Entire home/apt,346.0,2.0,4.0,No smoking,3,Sault Ste. Marie +2911,Bahia Brazil Vibe - Entire apt,Entire home/apt,1195.0,3.0,2.0,,2,Tallahassee +2912,"Waterfront Red Hook, Brooklyn",Entire home/apt,839.0,3.0,2.0,No visitors & No children under 10,4,North Bend +2913,Large and bright cozy room in Manhattan,Private room,425.0,7.0,4.0,No parties & No visitors,2,Newburgh +2914,Bright room in Williamsburg loft,Private room,636.0,14.0,4.0,No pets & No smoking & No visitors,2,Denver +2915,"Bright, Cozy & Quiet ""TreeFort""-type ONE bedroom",Entire home/apt,883.0,4.0,5.0,No parties & No smoking,4,Eau Claire +2916,Spacious 3 bedrooms Prime Manhattan,Entire home/apt,155.0,30.0,3.0,,3,Augusta +2917,Two bed apartment in the heart of Williamsburg,Entire home/apt,1192.0,2.0,3.0,No visitors,8,Concord +2918,New Massive 4BR/3.5BA Townhouse near Park Ave,Entire home/apt,1088.0,3.0,2.0,No pets,10,Cape Girardeau +2919,Midtown Loft,Entire home/apt,660.0,2.0,1.0,No pets,5,Reno +2920,Best Apartment Alphabet City Luxury & Comfort !!,Entire home/apt,874.0,2.0,5.0,No parties & No visitors,6,Albany +2921,"Studio apartment between NYC, JFK and LGA airports",Entire home/apt,728.0,3.0,3.0,No smoking,7,Del Rio +2922,Sunny Railroad Apt,Entire home/apt,496.0,6.0,3.0,No pets & No parties & No visitors,3,Toledo +2923,Brooklyn Family Getaway,Entire home/apt,813.0,5.0,2.0,No pets,3,Raleigh +2924,Your home away from home...,Private room,765.0,3.0,1.0,,1,Christiansted +2925,The real Brooklyn experience in Greenpoint!,Private room,778.0,7.0,5.0,No smoking,2,Prescott +2926,"New to Market, Extended Stay Studio in Park Slope",Entire home/apt,355.0,30.0,2.0,No smoking & No visitors,3,Texarkana +2927,"Clean, Cozy Private Room with TV Uptown Manhattan",Private room,251.0,2.0,4.0,,2,Santa Fe +2928,Vibrant Crown Heights,Private room,343.0,3.0,5.0,No visitors & No smoking & No children under 10,1,Wilmington +2929,Chic and homey Chelsea Studio,Entire home/apt,318.0,1.0,2.0,No pets & No parties,2,Walla Walla +2930,Private Room in Inwood!,Private room,1107.0,7.0,2.0,,1,Toledo +2931,"Studio w/EIK & Backyard, 23 Minutes to Manhattan",Entire home/apt,889.0,30.0,3.0,No pets & No smoking & No parties,3,Riverton +2932,1 rm @ 3BR loft williamsburg room 3,Private room,666.0,2.0,4.0,No smoking,1,Trenton +2933,Bright Clean Private Room in Crown Heights 4SR,Private room,831.0,1.0,3.0,No visitors,2,Kearney +2934,Large Comfortable Studio in Chelsea,Entire home/apt,591.0,2.0,1.0,No smoking,5,Pocatello +2935,A large Sunny Bedroom in Astoria,Private room,435.0,2.0,2.0,No smoking,1,Kotzebue +2936,Sunny Chelsea Studio,Entire home/apt,1118.0,1.0,1.0,No parties,4,Alamosa +2937,Stunning views room for two!,Private room,824.0,5.0,5.0,No smoking,2,Gillette +2938,"Super spacious cozy one-bedroom apartment, Astoria",Entire home/apt,809.0,14.0,4.0,No visitors & No smoking,4,Chicago +2939,Downtown: Two Bridges -Private room&bathroom!,Private room,331.0,14.0,5.0,,1,Tampa +2940,Worldclass Casa - Private Room - 5 min to JFK,Private room,232.0,2.0,3.0,No parties & No visitors,2,Bishop +2941,Cosy and comfortable 2 Bdrm with Outdoor Space,Entire home/apt,677.0,2.0,4.0,No visitors & No smoking,3,Ogden +2942,Luxurious 2BR Midtown Manhattan Perfect Location Fantastic views,Entire home/apt,285.0,2.0,2.0,,2,Owensboro +2943,Brooklyn Designer Home!!!,Entire home/apt,163.0,4.0,4.0,No smoking,2,Punta Gorda +2944,Joy's Luxury Apartment with Free Parking Space,Entire home/apt,651.0,1.0,3.0,No children under 10,3,Marquette +2945,Renting very clean bedroom,Private room,306.0,1.0,5.0,No smoking & No pets,1,Idaho Falls +2946,"Pop up room, 5 minutes to jfK",Private room,644.0,1.0,2.0,No children under 10 & No parties & No smoking,2,Anchorage +2947,Large 1 bdrm in Brooklyn - NYC,Entire home/apt,841.0,1.0,1.0,No parties,4,Wrangell +2948,Luxe Designed Home by Times Sq with a View,Entire home/apt,1018.0,5.0,3.0,No visitors,8,Cheyenne +2949,NYC HUB HOME: Train @ 900ft; midtown 30min!,Entire home/apt,1184.0,2.0,4.0,No parties & No pets,7,Seattle +2950,Lovely&Morden bedroom near everything you want!,Private room,605.0,1.0,2.0,,1,Indianapolis +2951,Marco's place,Private room,171.0,7.0,4.0,No smoking & No parties,1,Key West +2952,"Sunny, Charming Brooklyn 1 Bedroom!",Entire home/apt,67.0,8.0,3.0,No visitors & No pets,2,Roanoke +2953,Private room with stunning view,Private room,512.0,3.0,5.0,No parties & No visitors,1,Pasco +2954,Cozy 1-bedroom apartment in LES,Entire home/apt,1078.0,3.0,1.0,No parties,7,Scottsbluff +2955,Room in central Manhattan,Private room,486.0,4.0,2.0,No parties,2,Charleston +2956,Cozy Room in a Luxury Apartment,Private room,1176.0,1.0,1.0,No pets,2,Wenatchee +2957,"Perfect SOHO/NOLITA location, CLEAN and cozy home",Private room,173.0,1.0,3.0,No parties,1,Huntsville +2958,1 BR in Luxury Chelsea Doorman Bldg,Entire home/apt,259.0,2.0,3.0,No pets,3,Brainerd +2959,Rooftop Terrace Room - Inn Your Element B&B,Private room,676.0,1.0,3.0,,1,Victoria +2960,Nice bedroom at Manhattan -Upper East Side/Harlem,Private room,1048.0,3.0,3.0,No smoking,2,Madison +2961,NEW Brooklyn studio get away!,Entire home/apt,803.0,2.0,2.0,No children under 10,7,Detroit +2962,Bright Clinton Hill/Bed Stuy Room in Artist's Apt.,Private room,739.0,3.0,5.0,No visitors & No pets & No smoking,2,Charleston +2963,Brooklyn Sunny room 5 min to subway,Private room,793.0,2.0,5.0,No visitors & No children under 10,2,Knoxville +2964,Private bedroom in Washington Heights,Private room,423.0,3.0,5.0,No parties & No pets,1,Corpus Christi +2965,Large Cozy Bedroom in Manhattan,Private room,75.0,1.0,1.0,,1,Santa Rosa +2966,"Home Base, Minutes to Manhattan!!!",Entire home/apt,632.0,2.0,4.0,No smoking & No pets,2,Manhattan +2967,Trendy Williamsburg Apartment!,Private room,1199.0,2.0,1.0,No visitors,2,Grand Forks +2968,Pretty private room in Brooklyn by Prospect park,Private room,1144.0,2.0,4.0,No smoking & No visitors,2,College Station +2969,Cozy bedroom in LES apartment,Private room,183.0,1.0,3.0,No children under 10,2,Greer +2970,Rock star house!,Private room,530.0,2.0,4.0,No parties,2,Moline +2971,"New, Bright&Spacious cool apartment",Entire home/apt,410.0,7.0,3.0,No visitors,4,Fort Dodge +2972,Spacious room to rest in NYC,Private room,980.0,1.0,5.0,,2,New York +2973,Cool room Manhattan - Sleeps up to 3 guests,Private room,208.0,1.0,5.0,No pets,2,Grand Junction +2974,Modern 1 bedroom in Boerum Hill,Entire home/apt,562.0,5.0,4.0,,4,Myrtle Beach +2975,Quaint Studio. 20 mins to City,Entire home/apt,624.0,2.0,5.0,No pets,6,Fort Leonard Wood +2976,Private Green Apple Brownstone Studio Harlem NYC,Entire home/apt,749.0,4.0,4.0,No smoking,5,Anchorage +2977,Private Room Near Columbus Circle.,Private room,55.0,3.0,5.0,,1,Fort Smith +2978,East Manhattan (March 10th-18th),Private room,310.0,4.0,3.0,No smoking,1,Tampa +2979,Renovated & Spacious Chelsea Studio,Entire home/apt,752.0,3.0,3.0,No children under 10,7,Dayton +2980,"Separate PRIVATE ROOM furnished, 5 min to A train",Private room,501.0,3.0,3.0,,2,Augusta +2981,Large studio,Entire home/apt,1135.0,1.0,4.0,No visitors,4,Waterloo +2982,Private room,Private room,857.0,27.0,5.0,No pets,1,Nantucket +2983,Comfortable room in quite home with queen size bed,Private room,957.0,2.0,5.0,No visitors,1,Santa Rosa +2984,Beautiful spacious private room w/ lovely backyard,Private room,405.0,7.0,4.0,No smoking,1,Bethel +2985,New York Apartment / HIDDEN GEM ROSEDALE LLC,Entire home/apt,200.0,1.0,4.0,No visitors & No children under 10,2,Saipan +2986,"Lovely West Harlem Duplex, Comfortably Sleeps 4",Entire home/apt,1183.0,10.0,4.0,No smoking & No parties & No pets,6,Wichita Falls +2987,FiDi Cozy room overlooking East River,Private room,870.0,1.0,5.0,No parties,2,Nashville +2988,Private room in cozy Astoria apartment,Private room,1092.0,2.0,2.0,No smoking & No children under 10,2,Butte +2989,Fort Greene bungalow,Private room,304.0,2.0,5.0,,2,Islip +2990,Charming 1BR in Midtown East by Sonder,Entire home/apt,586.0,29.0,3.0,No pets & No smoking & No parties,4,Ontario +2991,"Sunny, spacious room in 3BR apt",Private room,615.0,11.0,5.0,No smoking & No visitors,1,Idaho Falls +2992,Lrg room 1 block from Prospect Park,Private room,306.0,3.0,1.0,No parties,1,Rhinelander +2993,"1 bdrm in Park Slope , Bklyn.",Entire home/apt,812.0,1.0,3.0,No children under 10 & No visitors,2,Stillwater +2994,Tulsi's Private Cozy Studio,Private room,812.0,2.0,3.0,No children under 10 & No visitors,2,Green Bay +2995,Two Bedroom Apartment,Entire home/apt,194.0,2.0,2.0,,3,Sitka +2996,"Big Apt/big bedroom, 71st & 1st Ave",Private room,1130.0,30.0,2.0,No smoking,1,Cape Girardeau +2997,Charming One Bedroom Apt on the Upper East Side.,Entire home/apt,206.0,1.0,5.0,No children under 10,3,Eau Claire +2998,July/Aug Sublet Available Huge Sunny Room,Private room,780.0,31.0,4.0,,1,Dothan +2999,Large Modern Studio with Free Parking in Driveway,Entire home/apt,867.0,2.0,5.0,No children under 10 & No smoking,2,Sanford +3000,Spacious sun-drenched room in Manhattan,Private room,541.0,1.0,5.0,,1,Concord +3001,Big Sunny 1BR near the subway - 20 mins to NYC!,Entire home/apt,845.0,3.0,4.0,,2,Elko +3002,Private Studio-like room on the Upper West Side.,Private room,495.0,1.0,3.0,No children under 10,2,Marquette +3003,Bright Loft-Like Apartment,Entire home/apt,915.0,15.0,4.0,No children under 10,2,Panama City +3004,Eclectic Charm in the East Village,Entire home/apt,542.0,2.0,5.0,No parties,2,Presque Isle +3005,"Newly renovated, large room. Right by trains!",Private room,958.0,1.0,4.0,No children under 10,1,Greenville +3006,Large 3 Bedroom Loft in Heart of Williamsburg,Entire home/apt,233.0,3.0,3.0,No pets,3,Fresno +3007,Stylish NYC Art Loft '3',Private room,421.0,3.0,5.0,No pets,2,Hays +3008,Amazing Location! mid-70s 1BR @ Columbus,Entire home/apt,883.0,1.0,4.0,,6,Sheridan +3009,Sunny and Bright 1BR Factory Loft,Entire home/apt,146.0,30.0,1.0,No smoking & No visitors,2,Milwaukee +3010,Welcome to the Secret Oasis in Williamsburg,Private room,409.0,1.0,3.0,No parties,1,Pocatello +3011,Blocks to the High Line * West Village Home for 10,Entire home/apt,1031.0,2.0,4.0,No parties,4,Cleveland +3012,Event Space | Backyard | Pool,Private room,819.0,1.0,3.0,No visitors,2,Nome +3013,Huge Bedroom w/direct access to backyard,Private room,635.0,2.0,2.0,No parties,1,Alpena +3014,"Cozy and home feeling, 1-bedroom apt near subway",Private room,969.0,1.0,4.0,No children under 10 & No parties,1,Honolulu +3015,Clean Private Room in Rosedale - Close to JFK+Mall,Private room,148.0,1.0,4.0,No children under 10 & No pets,1,Bloomington +3016,The Albany Residence,Entire home/apt,1092.0,7.0,2.0,,9,Hobbs +3017,2 BR/2BA Modern Apt in Prime TriBeCa Location,Entire home/apt,728.0,4.0,2.0,,5,Bismarck +3018,Gorgeous UWS apt with OWN full bath,Private room,1196.0,4.0,4.0,No visitors & No pets & No children under 10,1,Waterloo +3019,Harlem Roots Chic Apt,Entire home/apt,748.0,28.0,4.0,No visitors & No smoking,7,Lincoln +3020,"Brand New Modern Luxury Apt, Room B",Private room,337.0,1.0,3.0,No children under 10 & No visitors & No smoking,2,Saginaw +3021,Charming Shared Place in East Manhattan,Shared room,350.0,2.0,4.0,No pets & No parties & No smoking,1,Sheridan +3022,Ditmas Park Beautiful Spacious Apartment,Entire home/apt,425.0,2.0,4.0,No visitors,2,Bend +3023,Spacious Private Bedroom in the heart of Bushwick!,Private room,990.0,30.0,5.0,No parties & No children under 10,2,St. Petersburg +3024,Complitely Renovated in the heart of LES #14,Entire home/apt,914.0,30.0,5.0,,5,Washington +3025,Modern Touch.,Entire home/apt,1033.0,2.0,4.0,No smoking & No pets,6,Mission +3026,Historic Far Rockaway Beach Bungalow,Entire home/apt,222.0,3.0,5.0,No visitors,2,Oakland +3027,Tranquil Oasis in the Heart of Greenwich Village,Entire home/apt,809.0,2.0,2.0,No pets & No children under 10,6,Martha's Vineyard +3028,Penthouse,Entire home/apt,541.0,4.0,3.0,No pets,5,Fort Wayne +3029,South Park Slope House (Aug 5 - 27; 10 day min),Entire home/apt,113.0,10.0,4.0,No children under 10 & No visitors,3,Cheyenne +3030,Furnished room w/ AC in Crown Heights/Clinton Hill,Private room,1170.0,2.0,5.0,No visitors & No pets,2,Barrow +3031,"New, Luxury and Sunny Apartment",Entire home/apt,887.0,1.0,3.0,No parties,7,Fort Lauderdale +3032,"Stay with PJ above a café, 1 block from the subway",Private room,446.0,2.0,5.0,,1,Atlantic City +3033,Room in lovely loft with waterfront view,Private room,234.0,10.0,4.0,No parties,2,South Bend +3034,"The Architect’s Suite w/ Private Bath, Near Metro",Private room,157.0,3.0,2.0,No parties & No pets,1,Pago Pago +3035,Hell's Kitchen Enclave: a Diamond in the Rough.,Entire home/apt,577.0,4.0,2.0,No pets & No parties,2,Martha's Vineyard +3036,Beach House Retreat. 15 minutes from Manhattan.,Entire home/apt,1024.0,7.0,2.0,No pets,8,Rhinelander +3037,Charming 1 Bedroom in center of East Village,Entire home/apt,1098.0,90.0,5.0,No parties,3,Burlington +3038,Sunny room in Brooklyn (20 min from Manhattan),Private room,873.0,1.0,4.0,No pets & No children under 10,2,Tallahassee +3039,20 steps to subway!!,Entire home/apt,1144.0,2.0,2.0,No parties & No pets,7,Tyler +3040,⭐️Walk + Transit Score 97⭐️8min to Yankee Std⭐️,Entire home/apt,1130.0,2.0,1.0,No pets & No smoking,2,Myrtle Beach +3041,East Harlem Entire 1BR apt,Entire home/apt,1009.0,5.0,5.0,No pets & No smoking,8,Harrisburg +3042,Private Queen Bedroom in UWS near Central Park,Private room,984.0,3.0,5.0,No visitors & No parties,2,Aspen +3043,luz lunar bibis,Private room,1066.0,1.0,5.0,No pets & No parties,2,Sheridan +3044,Cozy 4 Bedroom's Times Square Apartment!,Private room,718.0,3.0,2.0,No visitors,2,San Antonio +3045,"Chic, Spacious Loft + Backyard",Entire home/apt,441.0,2.0,4.0,No visitors & No parties,3,Indianapolis +3046,Historic UES Penthouse/Rooftop Terrace by the MET,Entire home/apt,933.0,1.0,4.0,No parties & No visitors & No smoking,9,Baltimore +3047,Cozy Garden Oasis Brooklyn Private 1 Bedroom Apt,Entire home/apt,499.0,2.0,5.0,No visitors,2,Decatur +3048,"Modern, Well-Appointed Room in NYC!",Private room,223.0,2.0,3.0,,1,Miami +3049,EMPIRE STATE BUILDING APARTMENT,Entire home/apt,662.0,7.0,5.0,No smoking & No visitors,2,Pensacola +3050,1 Bedroom in a Modern Mid-Town Apt,Private room,187.0,1.0,4.0,No parties & No smoking,1,Sitka +3051,Design-Infused Two Bed Beauty in Fort Greene,Entire home/apt,942.0,3.0,1.0,No parties & No children under 10,2,Jacksonville +3052,Studio Apt in Washington Square <3,Entire home/apt,511.0,7.0,2.0,No children under 10,5,Dodge City +3053,Lovely Large Bedroom in West Harlem,Private room,784.0,3.0,4.0,No smoking,1,Bishop +3054,Tranquility on Times Square VIP Room King Bed,Private room,782.0,1.0,4.0,No smoking,1,Arcata +3055,Luxury building studio,Entire home/apt,1076.0,2.0,1.0,No parties & No children under 10,2,Los Angeles +3056,Greatly located Williamsburg 1BR ap,Entire home/apt,1126.0,30.0,2.0,No visitors,11,Green Bay +3057,Convenient Room Near Subway ABCD&1!,Private room,370.0,2.0,4.0,No children under 10,2,San Angelo +3058,Artist's huge family home in BK with Roof Deck!,Entire home/apt,1000.0,2.0,3.0,No visitors,10,Moline +3059,LOFT SPACE IN BUSHWICH,Entire home/apt,1176.0,2.0,4.0,No pets,4,Latrobe +3060,large serene room available in brooklyn duplex,Private room,268.0,2.0,2.0,No smoking & No pets,2,Bismarck +3061,Huge apt w New York City Skyline view,Entire home/apt,916.0,4.0,2.0,No children under 10 & No pets,3,Sarasota +3062,"Historic Brownstone (3Flrs). Pvt Deck, Garden,Park",Entire home/apt,1127.0,3.0,3.0,,4,Dayton +3063,Beautiful Park Slope apartment in great location!,Entire home/apt,67.0,31.0,5.0,No children under 10,2,Alpena +3064,Cute private space in an Awesome Location,Entire home/apt,662.0,1.0,5.0,No smoking,4,Madison +3065,Quiet and hip Astoria house (15 min. to Manhattan),Private room,729.0,1.0,1.0,No parties & No children under 10,1,Binghamton +3066,3bdrm cozy attic 15 mins from jfk & Belmont track,Entire home/apt,656.0,3.0,4.0,No parties & No visitors,5,Anchorage +3067,Entire apt close to Lincoln Center,Entire home/apt,285.0,10.0,2.0,No children under 10 & No smoking,2,Boise +3068,Private Room and Bathroom in Bright Apartment,Private room,1081.0,2.0,1.0,No smoking & No children under 10,1,Stockton +3069,Gorgeous Space in LIC/Astoria,Private room,1043.0,7.0,1.0,No smoking,1,Sacramento +3070,Upper East Side Cozy Apartment,Entire home/apt,151.0,4.0,1.0,No parties & No children under 10,2,Key West +3071,Huge Private Garden Apt - Memory Foam Mattress,Private room,894.0,14.0,3.0,No smoking,1,Lewiston +3072,"Luxury Room (rm4), 5 mins from Columbia",Private room,1023.0,3.0,2.0,No pets,2,La Crosse +3073,Comfortable Carroll Gardens 2 BR Amazing Location,Entire home/apt,936.0,2.0,2.0,,2,Twin Falls +3074,Large Sofa in Artist's Apartment,Shared room,944.0,1.0,2.0,No parties,1,Billings +3075,Bright Apartment in Clinton Hill,Entire home/apt,1144.0,5.0,3.0,No pets,4,Tucson +3076,"1 Bdr. Lower East Side, NY, 2 beds",Entire home/apt,70.0,1.0,4.0,No pets,3,Aberdeen +3077,Quaint&Cozy 1BR-Gem in East Village,Private room,65.0,8.0,4.0,No pets,2,Asheville +3078,Luxury Apartment in Amazing Williamsburg! Sleeps 7,Entire home/apt,175.0,3.0,4.0,No visitors & No smoking,3,Nantucket +3079,Cozy Beautiful Room Only 20min from Manhattan NYC!,Private room,122.0,7.0,1.0,No pets & No parties & No children under 10,1,Cape Girardeau +3080,Cozy 2BD Near Columbia Univ,Entire home/apt,102.0,4.0,2.0,No pets,3,Pocatello +3081,Private room near Columbia University,Private room,780.0,1.0,2.0,No pets & No visitors & No smoking,2,Lubbock +3082,Convenient Apartment in Washington Heights,Entire home/apt,857.0,1.0,3.0,No smoking & No children under 10 & No pets,2,Elko +3083,Cozy Chic Uptown Home,Private room,1005.0,4.0,5.0,No parties,1,Lawton +3084,Designer's Beautiful 2BR Apartment in NOLITA/SOHO,Entire home/apt,1120.0,2.0,5.0,No smoking & No children under 10,6,Pellston +3085,Charming Harlem studio,Entire home/apt,768.0,7.0,2.0,No smoking,2,Stillwater +3086,Spacious UWS 1BR + balcony by Central Park,Entire home/apt,661.0,2.0,2.0,No parties & No pets,3,Valparaiso +3087,"Hamilton Hts Beauty, Manhattan 1 BR",Entire home/apt,486.0,1.0,3.0,No smoking,4,Decatur +3088,"Luxury, Doorman, Steps From United Nations,",Private room,213.0,30.0,3.0,No parties & No children under 10,1,Ogden +3089,Cute LIC-Beautiful garden-Midtown1stop-Breakfast,Private room,815.0,1.0,2.0,No children under 10,1,Waterloo +3090,Cozy and extremely well located Bushwick room,Private room,1055.0,2.0,4.0,No parties,1,Pasco +3091,2bdrm apt w/private backyard in Artsy Bushwick,Entire home/apt,883.0,2.0,1.0,No parties & No children under 10,3,Ogdensburg +3092,1 Bd in Sunny Bedstuy Apt,Private room,353.0,7.0,5.0,,1,Augusta +3093,1bd in a sunny 2 bd Ft. Greene Apt,Private room,1056.0,1.0,4.0,No visitors & No pets,1,Atlanta +3094,Spacious Brooklyn loft in Clinton Hill,Private room,1159.0,2.0,5.0,No smoking,1,San Juan +3095,"Private room. 1 bed, 2 guests, 3333 Broadway",Private room,705.0,1.0,3.0,No pets,2,Bend +3096,Amazing Large Sunny Studio in Greenwich Village,Entire home/apt,144.0,30.0,4.0,No parties & No smoking,3,Knoxville +3097,Canadian Room @ Columbia Uni.,Private room,611.0,1.0,2.0,No pets,2,Oklahoma City +3098,Airy Inwood Apartment,Entire home/apt,396.0,1.0,4.0,,3,Valdosta +3099,*NO GUEST SERVICE FEE* Beekman Tower Studio with Queen Bed & Free Wifi,Entire home/apt,953.0,3.0,5.0,No visitors & No smoking,5,Kalispell +3100,Sweet and Secluded Suite minutes from Manhattan,Entire home/apt,406.0,3.0,5.0,No smoking,3,Mission +3101,Spacious & Quaint 1 Bed in Midtown,Entire home/apt,55.0,2.0,5.0,No smoking & No pets,3,Kalamazoo +3102,1 bed/bath condo steps from Bedford,Entire home/apt,142.0,5.0,1.0,No parties & No children under 10,3,Dodge City +3103,Private and Comfortable bedroom,Private room,200.0,7.0,5.0,No children under 10 & No parties,2,Stillwater +3104,Modern and Stylish 1 Bedroom in East Village,Entire home/apt,736.0,3.0,5.0,No visitors,5,Raleigh +3105,"Huge Private Bedroom, Manhattan Washington Heights",Private room,1050.0,1.0,2.0,,1,Santa Maria +3106,Gorgeous 1 bdrm in Carroll Gardens,Entire home/apt,1035.0,2.0,3.0,No parties,5,Burlington +3107,"Close to everything, transportation",Private room,1180.0,1.0,1.0,No parties & No smoking & No visitors,1,Yakima +3108,Columbia & CentralPark Private room!,Private room,918.0,30.0,5.0,No children under 10 & No smoking,1,Lubbock +3109,Welcome to YURT -- beautiful room in East Village,Private room,1032.0,1.0,5.0,No smoking,2,Palm Springs +3110,Sunny Private Rm in Bushwick,Private room,284.0,2.0,4.0,No visitors,1,Ogdensburg +3111,Stunning Modern Suite in the Heart of Brooklyn,Private room,473.0,4.0,2.0,No visitors,2,Salt Lake City +3112,Luxurious SOHO 2 Bedroom,Entire home/apt,970.0,30.0,1.0,No pets & No visitors,2,Prescott +3113,Beautiful spacious bedroom BayRidge FEMALES only,Private room,1105.0,1.0,3.0,,2,Liberal +3114,A futon in a beautiful studio for females only,Shared room,777.0,3.0,3.0,No pets,1,Scottsbluff +3115,Your cozy and comfy space near 7 train,Private room,814.0,1.0,1.0,No visitors,1,Hilton Head +3116,1 bedroom in Cozy 2 bedroom upper west side,Private room,548.0,3.0,5.0,No parties & No visitors,1,Mason City +3117,# 1 A Brooklyn New York Apt: close to metro subway,Entire home/apt,214.0,6.0,3.0,No pets,2,Flint +3118,"Cosy, friendly room in great part of Bed Stuy!",Private room,501.0,2.0,2.0,No pets & No visitors & No children under 10,2,Panama City +3119,"Your home away from home, private cozy room",Private room,188.0,1.0,4.0,No children under 10 & No parties,2,Longview +3120,"Enormous, Beautiful Apartment near Prospect Park",Entire home/apt,1068.0,1.0,5.0,No visitors,7,Marquette +3121,Pretty private room in Brooklyn by Prospect park,Private room,1144.0,2.0,4.0,No pets & No visitors,2,Portsmouth +3122,Private room in the lower east side,Private room,891.0,1.0,3.0,,2,Latrobe +3123,"modern, convenient safe Midwood, Brooklyn",Private room,422.0,3.0,2.0,No pets,2,Greenville +3124,Spacious Bedroom in Prime Brooklyn Location,Private room,782.0,3.0,4.0,No parties & No pets,1,New York +3125,"Pvt 1 full bed 10 min from JFK, close to Manhattan",Private room,782.0,2.0,4.0,,2,Wrangell +3126,Spacious and Sun-Soaked Luxury 1BR,Entire home/apt,97.0,2.0,4.0,No parties,3,Hobbs +3127,High-end bright 1 bedroom apt. in Midtown West,Entire home/apt,445.0,30.0,1.0,No smoking & No pets & No visitors,2,Mosinee +3128,Rustic Williamsburg Loft,Entire home/apt,965.0,5.0,4.0,No smoking & No parties,8,Raleigh +3129,Bright Brooklyn Apartment,Entire home/apt,712.0,5.0,2.0,No smoking & No visitors & No parties,7,Moab +3130,"HARLEM, NEW YORK WELCOMES YOU!!",Private room,990.0,2.0,2.0,No pets,2,Billings +3131,Modern City Suites - Near Central Park,Private room,885.0,1.0,5.0,No parties,1,Kona +3132,Central Park Treasure,Entire home/apt,464.0,20.0,5.0,No visitors & No pets & No smoking,4,Madison +3133,2400 Sq Ft Tribeca Loft w/Private Elevator,Entire home/apt,1141.0,6.0,4.0,No parties & No visitors,11,Clarksburg +3134,"Tranquil private bedroom, Hamilton Heights, NY",Private room,804.0,1.0,2.0,No children under 10 & No smoking,2,Flagstaff +3135,Sophisticated 1BR in Midtown East by Sonder,Entire home/apt,372.0,29.0,2.0,No smoking,2,Las Vegas +3136,"Rento mi sofá cama , en mi apartamento. Vivo solo",Shared room,499.0,2.0,4.0,No smoking & No children under 10,1,Champaign +3137,Fabulous Room in East Willamsburg!,Private room,487.0,1.0,2.0,No smoking & No children under 10,1,Cody +3138,Beautifully Furnished 1 BR w/Office,Entire home/apt,84.0,5.0,4.0,No children under 10,3,Sault Ste. Marie +3139,Huge 1BD near Central Park Sleeps 5,Entire home/apt,395.0,1.0,5.0,No smoking & No parties,3,Boise +3140,Room With A View of Central Park,Private room,1152.0,2.0,4.0,No children under 10,2,Branson +3141,Twin Cabin with a Window One,Private room,234.0,1.0,2.0,No parties,1,Phoenix +3142,Newly renovated modern Apt in heart of Astoria NY,Entire home/apt,465.0,4.0,1.0,No pets,3,Valparaiso +3143,Private Room on the Upper West Side,Private room,90.0,2.0,4.0,No visitors,2,Kansas City +3144,Furnished Room in Williamsburg,Private room,331.0,1.0,1.0,No parties,2,Tucson +3145,"Single Bed room in townhouse, near subway",Private room,827.0,2.0,3.0,No children under 10 & No pets,2,Yakima +3146,Cozy and full Daylight private room in greenpoint,Private room,666.0,3.0,1.0,,1,Green Bay +3147,The Lover´s Apartment in Midtown Manhattan,Entire home/apt,603.0,4.0,5.0,No pets & No children under 10,3,Sheridan +3148,Downtown Manhattan large studio with terrace,Entire home/apt,850.0,7.0,4.0,,6,Providence +3149,"Cozy clean room ;LGA 5 mints,JFK 10 mint Astoria",Private room,430.0,1.0,4.0,No pets & No parties,2,Belleville +3150,"Big apartment, comfy - calm bedroom",Private room,69.0,1.0,4.0,No visitors & No parties & No smoking,1,Grand Island +3151,Huge bedroom w/ private living room in big house!,Private room,223.0,2.0,4.0,No visitors & No children under 10,2,Colorado Springs +3152,Cozy Alphabet City bedroom with private patio,Private room,80.0,3.0,4.0,No visitors & No pets & No children under 10,2,Lubbock +3153,sunshine bedroom in old school artist loft,Private room,169.0,7.0,1.0,No parties & No children under 10,2,Panama City +3154,Spacious 1 BR Apartment - UES,Entire home/apt,1009.0,2.0,1.0,No smoking & No pets & No children under 10,6,Portsmouth +3155,Very close to Manhattan! Muy cerca de Manhattan,Private room,256.0,2.0,5.0,No children under 10 & No visitors,2,Augusta +3156,Cherry Hill,Entire home/apt,642.0,2.0,2.0,No children under 10 & No visitors & No parties,3,Boise +3157,Luxury apartment in Williamsburg,Entire home/apt,961.0,1.0,1.0,No parties & No smoking,4,New Orleans +3158,Private Room in Homey Roosevelt Island Apartment,Private room,499.0,2.0,2.0,No smoking,2,New Bern +3159,Cool New 1br Apt - 1block from L&M,Private room,868.0,7.0,2.0,No smoking & No pets,2,Montrose +3160,Amazing 2Bed apt in Union Square,Entire home/apt,692.0,30.0,3.0,,4,Beaumont +3161,"Beautiful, quiet, light-filled 1-bdrm apt",Entire home/apt,277.0,4.0,4.0,,2,Dubuque +3162,Nice private room in Astoria,Private room,1178.0,1.0,4.0,No parties & No children under 10,2,Christiansted +3163,Discounted! Cute Unique 2BR Apartment in SoHo,Entire home/apt,781.0,2.0,4.0,No parties,2,Chicago +3164,Cozy studio in the heart of Manhattan,Entire home/apt,826.0,5.0,5.0,No parties,3,Washington +3165,All season studio in Astoria,Entire home/apt,1112.0,3.0,1.0,,5,Pasco +3166,Cozy Two Bedrooms Home Away From Home Getaway.,Entire home/apt,914.0,2.0,5.0,No pets & No children under 10,3,Long Beach +3167,luz lunar bibis,Private room,1066.0,1.0,5.0,No children under 10 & No visitors,1,Cedar City +3168,Modern New York City Penthouse w/ Incredible Views,Entire home/apt,469.0,30.0,2.0,No visitors,2,Daytona Beach +3169,Room in conveniently located charming apartment,Private room,397.0,5.0,3.0,No parties & No pets & No visitors,2,Yuma +3170,"Sunny, 1 Bedroom in Bedstuy, Brooklyn",Entire home/apt,160.0,7.0,4.0,No smoking,2,Albany +3171,Spacious Bedroom with King Bed in Light-Filled Apt,Private room,64.0,5.0,2.0,No smoking & No pets,1,Anchorage +3172,One bedroom apartment in the heart of astoria,Entire home/apt,824.0,14.0,2.0,No children under 10,7,Appleton +3173,Elegant studio in the UES,Entire home/apt,350.0,8.0,3.0,No children under 10,2,Charleston +3174,Great Brooklyn Studio/1BR!,Entire home/apt,632.0,2.0,2.0,,6,Fairbanks +3175,Spacious Studio in E Flatbush,Entire home/apt,827.0,1.0,3.0,No visitors,6,Cleveland +3176,YUGE Sunlit Furnished Room!,Private room,600.0,30.0,5.0,No smoking & No parties,1,Raleigh +3177,Private 1 Bdrm Suite in Historic Brownstone,Private room,479.0,2.0,2.0,No visitors,2,Knoxville +3178,Warm little building 温馨小筑 따뜻한 작은 건물 G,Private room,1140.0,1.0,4.0,No children under 10,1,Williston +3179,Charming attic Room in Home + Backyard/Near Metro,Private room,249.0,3.0,1.0,No parties & No pets,2,Jacksonville +3180,Amazing 1BD in Harlem,Entire home/apt,147.0,6.0,4.0,No smoking & No pets,3,Kahului +3181,WEST VILLAGE/CHELSEA-PRIME LOCATION,Entire home/apt,292.0,30.0,5.0,,2,Gulfport +3182,Great 1 Bedroom on Upper East,Entire home/apt,484.0,2.0,1.0,No parties,2,San Francisco +3183,"Sunny Room Near Ferry, Train, bars, Restaurants !",Private room,675.0,2.0,2.0,,2,Salisbury +3184,1 Bedroom Apart in Spanish Harlem,Entire home/apt,431.0,2.0,4.0,No pets,2,Sault Ste. Marie +3185,"Enjoy whole apartment, safe, 25 min ferry to NYC",Entire home/apt,1172.0,2.0,3.0,,3,Santa Barbara +3186,"Williamsburg Gardens Flat, Large Room Private Bath",Private room,172.0,3.0,1.0,No smoking & No children under 10,1,San Antonio +3187,Large sunny park slope apartment,Entire home/apt,82.0,1.0,5.0,,2,Dickinson +3188,☆☆☆Luxurious Couple's Retreat☆☆☆,Private room,336.0,1.0,3.0,No pets & No parties,2,Twin Falls +3189,Modern High Rise Studio w/ Amazing Views (Sublet),Entire home/apt,623.0,7.0,5.0,No parties & No smoking & No visitors,2,Jackson +3190,Gorgeous Lower Manhattan studio for summer sublet,Entire home/apt,962.0,35.0,4.0,No pets,4,Philadelphia +3191,A COZY NYC STUDIO APARTMENT 20 minutes to Union Sq,Entire home/apt,321.0,4.0,4.0,No pets,2,Provo +3192,"Welcoming, Clean, Cheap on St Marks",Private room,639.0,2.0,2.0,,2,Rock Springs +3193,"Artist retreat in East Williamsburg, Brooklyn",Entire home/apt,233.0,2.0,5.0,No pets & No parties & No visitors,3,Redding +3194,Room in Bushwick Bk available June,Private room,197.0,14.0,5.0,,1,Dubuque +3195,Garden Duplex close to Central Park,Entire home/apt,859.0,3.0,5.0,No visitors & No smoking,8,Waterloo +3196,Beautiful Bedroom in Trendy Neighborhood!,Private room,479.0,1.0,5.0,No smoking & No parties,1,San Angelo +3197,2Bdrm PRESIDENTIAL CONDO Wyndham Midtown 45 Hotel,Private room,212.0,4.0,4.0,,1,Flagstaff +3198,Huge sunlit 1BD in heart of Williamsburg King Bed!,Entire home/apt,729.0,3.0,5.0,No visitors & No pets & No smoking,4,Pasco +3199,Bright & spacious east village apartment,Entire home/apt,1191.0,3.0,3.0,,8,Missoula +3200,"Cozy Living room sofa bed,close to LGA/JFK/subway",Shared room,975.0,1.0,4.0,No pets & No parties & No children under 10,1,Redding +3201,Artist Penthouse,Entire home/apt,846.0,1.0,4.0,No visitors,5,San Juan +3202,"Spacious and Cozy apartment, minutes to Manhattan!",Private room,1019.0,2.0,5.0,No children under 10 & No smoking,2,Fort Myers +3203,NEW: 2 BR Steps from Times Square,Entire home/apt,295.0,3.0,3.0,No parties & No pets,3,Devils Lake +3204,Spacious Apartment in Crown Heights,Entire home/apt,173.0,3.0,3.0,No parties & No smoking,2,Yakima +3205,East Village Studio Apt.,Entire home/apt,1054.0,5.0,3.0,No visitors & No parties,2,Laredo +3206,2 bed/3 bed with parking,Entire home/apt,732.0,3.0,1.0,,3,Chattanooga +3207,Sunny and Cozy Bedroom near Columbia University,Private room,842.0,3.0,2.0,No parties & No smoking & No visitors,2,Greenville +3208,Cute private bedroom and bathroom - Bushwick,Private room,278.0,2.0,3.0,,2,Panama City +3209,HARLEM CLEAN & COMFY SPACE,Private room,373.0,1.0,5.0,No pets & No smoking & No parties,2,Tucson +3210,"Bright, spacious, ensuite bedroom in Williamsburg",Private room,573.0,1.0,4.0,No children under 10 & No pets,2,Charleston +3211,Airy and bright room. Prospect Park,Shared room,214.0,1.0,1.0,No smoking & No pets & No visitors,1,Pellston +3212,Exclusive 2 bedrooms in lovely apartment in Nolita,Private room,1167.0,6.0,2.0,No pets & No visitors,1,State College +3213,1940's Historic Brooklyn Townhome,Entire home/apt,597.0,5.0,4.0,No visitors,3,Pasco +3214,Quiet comfortable near Times Sq.,Private room,676.0,2.0,1.0,No smoking,2,Greer +3215,A Lovely One Bedroom Apartment!,Entire home/apt,882.0,10.0,5.0,No parties,8,Wilmington +3216,the best you can find,Entire home/apt,894.0,3.0,4.0,No pets & No children under 10,2,Palm Springs +3217,"Central Brooklyn +Beautiful Rooms +Room Vista",Private room,899.0,2.0,2.0,No children under 10 & No visitors,2,Christiansted +3218,Prime location and room for 1,Private room,1104.0,2.0,2.0,,2,Lafayette +3219,"West Soho Apartment, One Bedroom",Entire home/apt,311.0,2.0,3.0,No visitors & No smoking,2,Stillwater +3220,☆ Home Away From Home <3 of NYC! ☆ 2BR ENTIRE HOME,Entire home/apt,885.0,4.0,3.0,No smoking & No parties,4,Medford +3221,Amazing 2 bedroom apt . Recently renovated.,Entire home/apt,1082.0,5.0,4.0,No parties & No pets,10,Barrow +3222,Spacious private 2BR with Backyard Williamsburg,Entire home/apt,309.0,2.0,2.0,No parties & No smoking & No pets,2,Santa Rosa +3223,Where Dreams are made of NYC,Shared room,212.0,1.0,3.0,No smoking & No children under 10,1,Mosinee +3224,Large private 1BR with backyard - Williamsburg,Entire home/apt,995.0,7.0,1.0,No children under 10,4,Devils Lake +3225,Luxury Apartment (1 Bedroom w/ twin beds),Private room,1052.0,1.0,4.0,No smoking & No parties,1,Dickinson +3226,Decatur street Limestone an Urban Zen experience,Entire home/apt,466.0,3.0,2.0,No children under 10,3,Bozeman +3227,Sunny & Spacious 1 bedroom in Williamsburg,Entire home/apt,422.0,2.0,2.0,,2,Phoenix +3228,Master Room in Downtown Queens NYC,Private room,771.0,16.0,3.0,No parties & No pets & No visitors,1,Salisbury +3229,Cozy apartment (East Williamsburg),Entire home/apt,361.0,3.0,3.0,No pets & No visitors,2,Panama City +3230,CozyPlace 20%off Week Pvt Entrance 18min Manhattan,Private room,1097.0,1.0,3.0,,1,Bristol +3231,Duplex w/ Patio @ Box House Hotel,Entire home/apt,593.0,3.0,4.0,,4,Erie +3232,Room in sunny art-filled apartment,Private room,779.0,1.0,4.0,No smoking & No visitors,1,Colorado Springs +3233,Artsy Stuyvesant Private Bedroom Madison 2L-1,Private room,845.0,30.0,3.0,,1,Richmond +3234,Sunny East Village apartment,Entire home/apt,1037.0,4.0,5.0,No parties,9,Huntsville +3235,Brand New Luxury Apartment with Breathtaking Views,Entire home/apt,405.0,4.0,3.0,No parties,2,Spokane +3236,Sonder | 116 John | Lovely Studio + Gym,Entire home/apt,1087.0,29.0,5.0,No pets & No children under 10 & No visitors,7,Santa Rosa +3237,Huge townhouse near Central Park!,Entire home/apt,372.0,7.0,1.0,No pets & No parties & No visitors,3,Cedar Rapids +3238,Williamsburg Pied-à-terre,Entire home/apt,283.0,3.0,3.0,No parties & No pets,3,Panama City +3239,The heart of Brooklyn,Entire home/apt,154.0,30.0,2.0,No children under 10 & No visitors & No pets,3,Rockford +3240,Perfect Location! Your Oasis in Heart of Chelsea,Private room,432.0,3.0,2.0,No smoking & No parties & No pets,2,San Francisco +3241,Comfortable & Clean Zen Bedroom,Entire home/apt,357.0,1.0,1.0,No children under 10,3,Pago Pago +3242,"J- LUXURY SHARED ROOM, AC FREE WIFI+CABLE GARDEN",Shared room,778.0,4.0,3.0,No parties,1,Midland +3243,Lower East Dream Room!,Private room,1155.0,2.0,2.0,No children under 10,1,Flagstaff +3244,Quaint Sunny Cobble Hill Brownstone,Entire home/apt,1170.0,4.0,2.0,No smoking,7,Hartford +3245,Colorful 1 Bedroom in the Heart of the E. Village,Entire home/apt,337.0,30.0,5.0,No smoking,2,San Juan +3246,One bedroom apt near Times Square,Entire home/apt,724.0,3.0,1.0,No visitors,5,Lake Charles +3247,Smart Home in the Heart of Harlem,Entire home/apt,499.0,2.0,2.0,No children under 10 & No smoking,3,Tucson +3248,Harlem Garden Oasis in New York City Brownstone,Entire home/apt,368.0,31.0,5.0,No visitors,3,San Diego +3249,Spacious Bed and Bathroom in Brooklyn,Private room,406.0,1.0,2.0,No visitors & No smoking,1,Gunnison +3250,LUXURY NEIGHBORHOOD IN NYC-EAST 86TH ST/5TH AVE,Entire home/apt,685.0,30.0,2.0,No smoking & No visitors,4,Ogden +3251,Evergreen Cozy Bed for Female Travelers 紐約民宿,Shared room,734.0,1.0,4.0,,1,Flagstaff +3252,"Sunny, Spacious Apartment on Upper East Side",Entire home/apt,1010.0,60.0,4.0,,2,Bemidji +3253,"Spacious, Sunny, 1br in Midtown East with doorman",Entire home/apt,83.0,3.0,1.0,No pets,3,Des Moines +3254,BROOKLYN BEDSTUY PIED-A-TERRE,Entire home/apt,86.0,1.0,3.0,No children under 10,2,Kotzebue +3255,Brooklyn Art Cove,Private room,237.0,1.0,2.0,No pets & No parties & No visitors,2,Green Bay +3256,Shared room in nice surroundings in Ridgewood!!,Shared room,351.0,31.0,4.0,No visitors,1,Sault Ste. Marie +3257,Private room in a quiet apartment,Private room,985.0,1.0,3.0,No parties,2,Mobile +3258,Warm & Cozy,Private room,576.0,3.0,2.0,No visitors & No smoking & No parties,2,Sacramento +3259,PRIVATE Bedroom & bathroom TRIBECA,Private room,856.0,3.0,4.0,No parties,2,Fort Lauderdale +3260,Private bedroom in artsy NYC apartment.,Private room,488.0,3.0,3.0,No smoking,1,Houston +3261,"15 min Manhattan. Quiet, Safe, Clean, Good price",Shared room,239.0,7.0,4.0,No parties,1,Pocatello +3262,Private Master Bedroom w/Garden 14 min to Union Sq,Private room,869.0,1.0,5.0,No smoking,1,Amarillo +3263,Sweet Super Bowl Accomodations,Entire home/apt,502.0,5.0,2.0,No parties & No pets,5,Cheyenne +3264,Private Studio steps from Herald Square ☆,Entire home/apt,84.0,1.0,2.0,No parties,3,Greer +3265,Modern Sunny Studio in Lower East Side,Entire home/apt,1135.0,1.0,2.0,No parties,7,Aspen +3266,Williamsburg Studio w/ Balcony & Stunning View,Entire home/apt,517.0,4.0,2.0,No smoking,4,Saipan +3267,"Scandinavian ""hygge"" in Bed Stuy Brooklyn",Entire home/apt,1151.0,4.0,5.0,No visitors,8,Binghamton +3268,Large-sunny-private room & bathroom in UES hi rise,Private room,1104.0,3.0,2.0,No pets & No smoking,2,Waco +3269,Beautiful Historic Harlem Townhouse,Private room,440.0,1.0,5.0,No smoking & No pets & No parties,2,North Bend +3270,Good Vibes and best location in East Village,Entire home/apt,126.0,2.0,5.0,No pets,3,Hays +3271,Nurturing room in a 3 bedroom apt.,Private room,1168.0,3.0,1.0,No children under 10,1,Minneapolis +3272,La Greka,Private room,633.0,14.0,2.0,No pets,1,Providence +3273,Garden studio w/ private entry&bath. No smokers.,Private room,681.0,3.0,2.0,No visitors,1,Ithaca +3274,Suite Dante-15 min Central Park+free street park,Entire home/apt,1103.0,30.0,5.0,No children under 10 & No visitors,9,Omaha +3275,Space to breath in Crown Heights,Private room,941.0,2.0,5.0,,1,Charlottesville +3276,Private room in Williamsburg,Private room,1176.0,2.0,3.0,,1,Charleston +3277,One bedroom in the Village,Entire home/apt,1183.0,7.0,4.0,No visitors & No parties,10,La Crosse +3278,Charming bedroom with huge terrace in Greenpoint,Private room,712.0,2.0,3.0,No parties & No children under 10 & No visitors,1,Knoxville +3279,Family Friendly Getaway,Entire home/apt,530.0,28.0,1.0,No pets & No visitors & No children under 10,4,Watertown +3280,"Roomy FiDi 1BR w/ Gym, Roof deck + Doorman by Blueground",Entire home/apt,758.0,30.0,2.0,No children under 10,7,Idaho Falls +3281,Amazing 1 Bedroom | 1 Bedroom | Skyline View,Entire home/apt,220.0,30.0,2.0,No pets & No children under 10 & No parties,2,Bozeman +3282,LG Bright Apartment,Private room,129.0,21.0,4.0,No smoking & No visitors,2,Wichita +3283,Summer vibes,Entire home/apt,1034.0,2.0,5.0,No smoking,8,Iron Mountain +3284,2 Bedrooms with room for 4,Entire home/apt,291.0,30.0,3.0,No visitors & No parties,2,Arcata +3285,"large, stylish, airy East Village loft apartment!",Entire home/apt,430.0,3.0,2.0,No children under 10 & No parties & No visitors,3,Charleston +3286,Artist's Bitchin 1BR,Entire home/apt,910.0,1.0,5.0,,8,Sioux City +3287,Spacious 1+ bedroom apt in NYC,Entire home/apt,547.0,1.0,5.0,No smoking & No parties & No children under 10,2,Tampa +3288,Charming Carroll Gardens 2 BR,Entire home/apt,576.0,1.0,2.0,No parties,4,Atlanta +3289,Paris in New York Cozy private entrance&bath bkfst,Private room,238.0,2.0,2.0,No visitors,2,Watertown +3290,Sofa bed space for rent nightly,Shared room,340.0,1.0,5.0,No pets & No smoking,1,Sarasota +3291,"Modern,Elegant,Private,with parking spot,safe area",Entire home/apt,726.0,1.0,3.0,No parties & No pets,6,Joplin +3292,SUPERBOWLSUNDAY! 3BLOCK FROM TIMESQ,Entire home/apt,551.0,1.0,2.0,No visitors & No children under 10,3,Deadhorse +3293,A Zen Oasis in the East Village,Private room,551.0,4.0,4.0,No visitors & No children under 10 & No parties,2,Newport News +3294,Entire 1 BR Williamsburg apt,Entire home/apt,766.0,7.0,1.0,No smoking,3,Eugene +3295,Deluxe Studio view Empire State #8,Entire home/apt,574.0,1.0,3.0,No pets & No parties,2,Nantucket +3296,Handmade artist loft,Private room,767.0,3.0,5.0,No visitors & No smoking,2,Gulfport +3297,PRIME LOCATION-EAST 62nd/BEAUTIFULLY APPOINTED 1BR,Entire home/apt,926.0,30.0,5.0,No smoking,2,Montgomery +3298,Romantic Garden Floor For Two or Big Groups,Entire home/apt,1091.0,1.0,4.0,,3,San Diego +3299,Lovely Brooklyn Room With Balcony,Private room,238.0,18.0,4.0,No pets & No parties & No visitors,2,Walla Walla +3300,Nice place in Brooklyn .,Private room,815.0,5.0,5.0,No parties,2,Bend +3301,Modern Studio in East Flatbush,Entire home/apt,131.0,1.0,4.0,No pets & No children under 10,3,Alexandria +3302,Spacious Home In South Brooklyn,Private room,580.0,1.0,4.0,No children under 10,2,Charleston +3303,"Homey private room in Inwood, Manhattan",Private room,198.0,2.0,3.0,No visitors,2,Fresno +3304,"EAST VILLAGE STUDIO, sunny & quiet",Entire home/apt,589.0,4.0,5.0,No pets & No smoking & No children under 10,4,Paducah +3305,Stylish NYC Art Loft '3',Private room,421.0,3.0,5.0,No visitors & No smoking,2,Springfield +3306,Summer 2019 Modern 2 Bedroom Flat New York City,Entire home/apt,284.0,3.0,5.0,No parties & No smoking,2,Toledo +3307,Discounted! Quiet 1 BR next to Times Square,Entire home/apt,441.0,2.0,4.0,No parties & No smoking,2,Sun Valley +3308,Gorgeous NY Studio in Midtown East,Entire home/apt,699.0,30.0,3.0,No pets & No smoking,2,Nome +3309,Home away from home lodging #2 with 2 Bed- 2 guest,Private room,990.0,1.0,2.0,,2,Sacramento +3310,Mott Haven Dorm-Bed H,Shared room,477.0,1.0,2.0,No visitors & No parties & No children under 10,1,Decatur +3311,Amazing Studio in Times Square,Entire home/apt,703.0,2.0,5.0,No smoking,7,Fort Dodge +3312,room with view and bath,Private room,268.0,1.0,3.0,No smoking & No parties,2,Jamestown +3313,Studio Apartment in Upper East Side,Entire home/apt,366.0,7.0,5.0,No smoking & No pets,2,Pocatello +3314,Light-filled South Slope Nest!,Entire home/apt,790.0,2.0,2.0,No children under 10,2,Fayetteville +3315,"Comfy 2BR + Outdoor patio/ Subway 2,3",Entire home/apt,51.0,28.0,5.0,,3,Roswell +3316,"Quiet, sunny, renovated",Entire home/apt,1013.0,15.0,5.0,No visitors,6,Colorado Springs +3317,Sunny one bedroom on the Upper East Side,Entire home/apt,336.0,2.0,1.0,No parties,2,Eugene +3318,Rustic Modern Brooklyn Apartment,Entire home/apt,294.0,30.0,3.0,No pets,2,Newark +3319,"Bright, airy west village retreat!Great location!",Entire home/apt,466.0,3.0,2.0,No parties,4,Honolulu +3320,Charming 1BR with sun-nook in Brooklyn,Entire home/apt,256.0,3.0,4.0,No children under 10 & No pets & No smoking,2,Nashville +3321,Charming Suite in Historic Home,Entire home/apt,348.0,1.0,3.0,No parties & No children under 10,3,Dallas +3322,Spacious & Sunny Brooklyn Home,Entire home/apt,117.0,4.0,4.0,No visitors & No smoking,2,Salt Lake City +3323,Super chic shared room for a guy near Central Park,Shared room,59.0,30.0,1.0,No children under 10 & No parties,1,Valparaiso +3324,"1st Floor, Room #7 (9' x 12')",Private room,339.0,7.0,4.0,No visitors,1,Wrangell +3325,Shared Loft in Charming Guest Suite (Front Left),Shared room,1162.0,3.0,2.0,,1,Bloomington +3326,2 Bedroom midcentury Brooklyn Brownstone apartment,Entire home/apt,372.0,2.0,4.0,No parties & No smoking,2,Marquette +3327,Sunny 1 bd apartment - Historic Brownstone Apt #2,Entire home/apt,191.0,30.0,2.0,No pets & No parties,3,Dubuque +3328,Williamsburg Domino Park Prime Location 2 bedroom,Entire home/apt,461.0,7.0,5.0,No parties,4,Myrtle Beach +3329,Sunny 1 BR in Brooklyn,Entire home/apt,722.0,3.0,1.0,No smoking,5,Valdosta +3330,Sonder | Stock Exchange | Ideal 1BR + Kitchen,Entire home/apt,903.0,2.0,4.0,No pets,9,Newark +3331,Cheap & Comfy Huge Private Room!,Private room,371.0,4.0,5.0,No pets & No smoking,1,Decatur +3332,1D Private Rm in Guesthouse Manhattan,Private room,378.0,1.0,3.0,No visitors & No parties,1,Pensacola +3333,Brand-new Luxury apt. Stunning views by Penn st.,Private room,929.0,2.0,4.0,,2,Buffalo +3334,Large 3bd 2 bath duplex in prime Greenpoint!,Entire home/apt,1049.0,2.0,4.0,No parties & No children under 10 & No visitors,7,St. Petersburg +3335,Tranquility in a Sunny Duplex w/Private Bathroom,Private room,158.0,1.0,1.0,No pets & No children under 10 & No visitors,2,Johnstown +3336,Cozy Private Bedroom in Upper West Side 107,Private room,1018.0,30.0,5.0,,1,Marquette +3337,Heart of Harlem Living - NYC to it's fullest!,Entire home/apt,884.0,1.0,4.0,No children under 10,6,Newburgh +3338,Williamsburg Gem: Sleep up to 5,Entire home/apt,486.0,2.0,1.0,No smoking,4,Manchester +3339,"STUNNING, HUGE 1 bed apartment, steps from train!",Entire home/apt,900.0,4.0,3.0,No parties & No smoking,9,Amarillo +3340,Amazing Luxury 1 Bedroom Apartment,Entire home/apt,878.0,30.0,1.0,No children under 10,8,Great Falls +3341,Centrally Located Beautiful Escape,Private room,828.0,1.0,5.0,No parties,2,Richmond +3342,"Charming Central 1- Bedroom Apartment, Gramercy",Entire home/apt,1058.0,10.0,5.0,No pets,8,Helena +3343,cozy apartment,Private room,1185.0,7.0,3.0,No smoking & No children under 10,1,Lewiston +3344,**Spacious 47th-Floor Apt** Convenient Location,Entire home/apt,849.0,3.0,3.0,No pets,8,Dothan +3345,Huge quiet modern oasis,Entire home/apt,1165.0,2.0,2.0,No smoking & No parties,8,Knoxville +3346,Light-filled cozy Greenpoint Brooklyn two bedroom,Entire home/apt,1030.0,30.0,5.0,No children under 10 & No visitors,10,Columbia +3347,Private bedroom in Gorgeous Brooklyn Apartment!,Private room,659.0,1.0,5.0,No pets,1,Raleigh +3348,Spacious retreat,Entire home/apt,528.0,2.0,4.0,No smoking,5,Amarillo +3349,Spacious Sun Drenched Brick Encrusted Loft,Entire home/apt,741.0,4.0,4.0,No visitors & No parties,3,Brainerd +3350,Spacious 1 BD in Williamsburg next to L train,Entire home/apt,454.0,1.0,3.0,No children under 10 & No parties,2,Erie +3351,Central Park Slope Garden Apartment,Entire home/apt,352.0,4.0,5.0,,2,Lake Charles +3352,Stay 10 minutes away from Times Square 63F2,Private room,719.0,7.0,3.0,No smoking,2,Cedar Rapids +3353,Peaceful Bed w Breakfast - Manhattan,Private room,675.0,3.0,3.0,No children under 10 & No visitors,2,Manhattan +3354,True 2 bedroom apartment in the heart of the LES,Entire home/apt,1094.0,2.0,1.0,No pets & No parties,10,Portland +3355,Spacious Room in the Heart of Williamsburg,Private room,983.0,4.0,4.0,,1,Amarillo +3356,Furnished room-5A-1 110th st-3rd Ave.,Private room,787.0,30.0,3.0,,2,Hayden +3357,Peaceful room in Bushwick,Private room,79.0,1.0,3.0,No parties,1,St. Louis +3358,"Unique 1 bedroom apt. in Gowanus, Brooklyn",Entire home/apt,255.0,4.0,3.0,No parties,2,Longview +3359,Gorgeous Brownstone Studio @ Central Park West,Entire home/apt,398.0,2.0,3.0,No children under 10 & No visitors & No smoking,2,Norfolk +3360,"LARGE ROOM ‘N CLINTON HILL, Brooklyn, w / LAUNDRY!",Private room,164.0,25.0,4.0,No visitors & No pets,2,North Platte +3361,Quiet room in Bed-Stuy,Private room,154.0,80.0,5.0,No visitors & No pets,1,Providence +3362,Sunny Spacious Two Bedroom - Park Slope,Entire home/apt,1129.0,2.0,2.0,No parties & No children under 10,4,Hilo +3363,Rustic Modern Brooklyn Apartment,Entire home/apt,294.0,30.0,3.0,,3,Sault Ste. Marie +3364,1 Bedroom Heart of Financial Dist,Private room,386.0,2.0,4.0,No visitors & No children under 10 & No smoking,2,Miami +3365,Large private BR in East Harlem near Central Park,Private room,1107.0,5.0,4.0,No parties & No visitors,2,Beaumont +3366,Beautiful sunny room in Manhattan,Private room,1141.0,4.0,5.0,No children under 10 & No visitors & No pets,2,Hibbing +3367,Park Slope Brooklyn Penthouse Apartment,Entire home/apt,1117.0,2.0,4.0,,5,Flint +3368,Sweet Quiet Spacious Room Brooklyn,Private room,572.0,1.0,4.0,No visitors & No pets & No smoking,2,Scottsbluff +3369,Bohemian 2 Bedroom in the East Village,Entire home/apt,999.0,6.0,2.0,No pets & No parties & No smoking,6,Oklahoma City +3370,Entire One Bedroom Apt-Great Location In Manhattan,Entire home/apt,955.0,1.0,5.0,No smoking,8,Spokane +3371,Cozy Home in Brooklyn Prime Location,Private room,868.0,3.0,4.0,No children under 10,2,Kalamazoo +3372,Bright apartment across from Riverside Park,Entire home/apt,926.0,3.0,5.0,No visitors,7,Valdosta +3373,Bushwick Duplex 1,Private room,283.0,1.0,5.0,No parties,2,Miami +3374,1 Bedroom in 2 bedroom Apartment,Private room,286.0,30.0,2.0,No pets,2,Charlotte +3375,Spacious UWS pre-war guest room!,Private room,361.0,3.0,5.0,No smoking,1,Dothan +3376,1 bedroom apt in heart of Chelsea,Entire home/apt,336.0,2.0,1.0,No visitors & No parties,2,North Bend +3377,Sonder | Stock Exchange | Airy 1BR + Sofa Bed,Entire home/apt,724.0,2.0,5.0,No pets,6,Fort Leonard Wood +3378,Sunny and spacious 1-bedroom in Brooklyn,Private room,550.0,1.0,3.0,No parties,1,Akron +3379,"Gorgeous, sun-filled LES 1 bedoom",Entire home/apt,473.0,5.0,5.0,No children under 10 & No smoking,4,New Bern +3380,"Near Brooklyn Museum, Barclays, Transit, & Banks",Entire home/apt,409.0,5.0,3.0,,3,Meridian +3381,Private East village Studio NO roommates Full bath,Entire home/apt,938.0,1.0,3.0,No visitors,3,Pueblo +3382,Lovely Brooklyn Bedroom,Private room,1058.0,2.0,5.0,No smoking & No children under 10 & No pets,2,Oakland +3383,room in house,Private room,122.0,30.0,4.0,No children under 10 & No visitors & No smoking,2,Laramie +3384,"Snug & Cozy 1 Bedroom -Hamilton Heights, NY",Private room,162.0,1.0,5.0,No pets & No visitors,2,Lewiston +3385,Sunny living room and great location in Brooklyn,Shared room,629.0,3.0,5.0,No smoking & No children under 10,1,Valdosta +3386,Bed Stuy Modern,Private room,267.0,2.0,2.0,No pets,2,Bemidji +3387,Private room in Harlem,Private room,315.0,1.0,4.0,,1,West Palm Beach +3388,Gorgeous One Bedroom in Clinton Hill,Entire home/apt,634.0,2.0,3.0,No visitors & No children under 10,6,Paducah +3389,Modern and Charming Greenpoint by the Park,Entire home/apt,917.0,2.0,2.0,No visitors,3,Ontario +3390,Luxury NYC 1 Bed w/Gorgeous Views + Pool,Entire home/apt,255.0,2.0,3.0,No pets & No children under 10,3,Richmond +3391,Cozy Sunnyside Apartment,Entire home/apt,938.0,15.0,4.0,,6,Charlotte Amalie +3392,Williamsburg Luxury Artist Loft With All Amenities,Entire home/apt,496.0,5.0,5.0,,2,Hartford +3393,Ziggy Stardust Surf House - A Beautiful Houseboat,Entire home/apt,712.0,1.0,3.0,No parties & No visitors & No pets,2,Bishop +3394,Casually chic 2+bedroom townhouse,Entire home/apt,1048.0,5.0,3.0,,9,Seattle +3395,1-Bedroom Apt Near Manhattan,Entire home/apt,199.0,4.0,4.0,No parties & No smoking,2,Oklahoma City +3396,Convenient Private and Cozy Environment,Private room,553.0,1.0,3.0,No children under 10 & No parties,2,Missoula +3397,Room available in spacious apartment UWS,Private room,271.0,4.0,2.0,No smoking,1,San Jose +3398,CITY VIEW/ 2BED 2BATH/ LINCOLN CENTER,Entire home/apt,401.0,30.0,3.0,No visitors,2,Bangor +3399,Welcome to Brooklyn! (Private bedroom & bathroom),Private room,1008.0,7.0,5.0,No pets & No children under 10,2,Nome +3400,CHILLIN ON 5TH,Private room,856.0,1.0,3.0,,1,Idaho Falls +3401,Loft Suite @ The Box House Hotel,Entire home/apt,847.0,3.0,4.0,No visitors & No pets,8,Long Beach +3402,My little LOFT in Brooklyn :),Entire home/apt,793.0,1.0,1.0,No visitors & No pets & No smoking,6,Cape Girardeau +3403,"Private Room in Bronx NY, Manhattan",Private room,983.0,1.0,2.0,No pets,1,White Plains +3404,"1,100 sq. ft. apt. Penthouse with private deck!",Entire home/apt,209.0,1.0,5.0,No visitors & No pets,3,Phoenix +3405,Entire floor private 1 bedroom in Bushwick,Private room,1114.0,3.0,4.0,No children under 10,1,Decatur +3406,Peace and Comfort,Private room,238.0,1.0,2.0,No parties,2,Belleville +3407,Rockaway Beach Surf and Garden Apartment,Entire home/apt,677.0,4.0,5.0,No pets & No visitors,4,Branson +3408,"Spacious 1BR amazing view, Beach 5 min, airport 20",Entire home/apt,567.0,30.0,1.0,No children under 10 & No pets & No visitors,5,Pasco +3409,Quiet Space,Private room,76.0,2.0,3.0,No visitors & No parties & No smoking,1,Hays +3410,Private Budget Room for Awesome Guests #2,Private room,495.0,1.0,3.0,No parties,2,La Crosse +3411,Classic UWS 1 Bed in Doorman Bldg,Entire home/apt,934.0,1.0,1.0,,8,Fort Myers +3412,Private Room near Columbia University,Private room,975.0,20.0,2.0,No pets,1,Baltimore +3413,Brooklyn - Bushwick - NYC #2,Private room,898.0,2.0,4.0,No visitors,1,Yakutat +3414,Hamilton Beach House,Entire home/apt,1186.0,1.0,3.0,No children under 10 & No visitors,10,Salt Lake City +3415,~**GORGEOUS DOWNTOWN LOFTS**~ MULTIPLE SPACES,Entire home/apt,406.0,1.0,5.0,No children under 10 & No smoking,3,Guam +3416,A SUPERB One Bedroom Apartment,Entire home/apt,417.0,2.0,2.0,No parties,2,Buffalo +3417,private bedroom and private bath,Private room,754.0,1.0,4.0,No parties,2,Ogdensburg +3418,"Private Room, Bath & Terrace on UWS",Private room,417.0,2.0,1.0,,2,Monroe +3419,"HUGE, SUNNY room in Financial District",Private room,59.0,4.0,5.0,No visitors & No pets,2,Niagara Falls +3420,Ft. Greene Loft,Entire home/apt,224.0,3.0,5.0,,3,Akron +3421,It's always sunny in Hells Kitchen,Entire home/apt,958.0,7.0,4.0,No pets & No parties,4,Sioux Falls +3422,Luxury TriBeCa Apartment at an amazing price,Entire home/apt,253.0,180.0,3.0,,3,Santa Maria +3423,Super Cute Studio in Heart of Greenpoint,Entire home/apt,818.0,1.0,3.0,No pets,4,Rochester +3424,Artist Loft East Williamsburg,Private room,979.0,1.0,3.0,No parties & No smoking,1,Tampa +3425,Gorgeous Room with private bath in Crown Heights,Private room,1120.0,2.0,4.0,,2,Savannah +3426,2 Blocks from Subway | Artsy BK Space,Private room,403.0,21.0,2.0,,1,Rochester +3427,SMALL ROOM 15 MINUTES AWAY FROM MANHATTAN,Private room,121.0,2.0,4.0,No parties,1,Santa Fe +3428,T-Square Stylish 1 Bedroom,Entire home/apt,695.0,4.0,5.0,,2,Baton Rouge +3429,Deluxe 1-Bedroom near Empire State Building!,Entire home/apt,979.0,30.0,2.0,,2,Hibbing +3430,A+ Chelsea_global inspired location. Large room,Private room,1091.0,2.0,5.0,No children under 10 & No visitors,2,Cheyenne +3431,Spacious home next to JFK airport,Entire home/apt,1183.0,2.0,3.0,,4,Cedar City +3432,"Spacious, Private LIC Studio 2 Blocks to Train!",Entire home/apt,671.0,2.0,2.0,,2,Fairbanks +3433,Williamsburg Luxury Artist Loft With All Amenities,Entire home/apt,496.0,5.0,5.0,No children under 10 & No visitors & No parties,2,Brownsville +3434,Private & Quaint West Village Gem!,Entire home/apt,532.0,4.0,3.0,No smoking,5,Alamosa +3435,"MASTER, NEW, PRIVATE BEDROOM, 10 MINS from JFK",Private room,769.0,1.0,5.0,No pets,1,Columbus +3436,Beautiful & Cozy Brownstone Apt In Gowanus,Entire home/apt,637.0,2.0,1.0,No pets,4,Ketchikan +3437,Stunning 2 bedroom Apt - Breathtaking views!!,Entire home/apt,914.0,30.0,4.0,No visitors & No pets,8,Flagstaff +3438,The Traveler's Suite,Entire home/apt,556.0,2.0,1.0,No children under 10,3,King Salmon +3439,Spacious Garden Apartment with Patio,Entire home/apt,377.0,4.0,1.0,,3,Sitka +3440,Dream Apartment - Greenwich Village,Entire home/apt,114.0,12.0,2.0,No smoking,2,Hyannis +3441,Private room in Brooklyn,Private room,226.0,1.0,3.0,No pets,2,Fort Wayne +3442,Colorful and central Gramercy apartment,Entire home/apt,736.0,2.0,4.0,No children under 10 & No pets,4,Del Rio +3443,Room in Spacious Williamsburg Loft,Private room,934.0,21.0,4.0,No parties,2,Denver +3444,Large Modern Studio Apartment UES,Entire home/apt,705.0,14.0,2.0,No pets,4,Albuquerque +3445,~The Perfect Funished Studio in Greenwich Village~,Entire home/apt,1063.0,1.0,5.0,No parties,4,Gulfport +3446,Nice Bedroom C in Bushwick,Private room,427.0,1.0,2.0,No pets,1,La Crosse +3447,Artists/Yoga Sunny Studio - Prime Location!,Entire home/apt,1086.0,4.0,4.0,No parties,10,Yuma +3448,Awesome Dyker Heights apartment!,Entire home/apt,597.0,3.0,5.0,No visitors & No children under 10 & No smoking,5,Jackson +3449,Spacious room an beautiful view to pedestrian zone,Private room,292.0,3.0,2.0,No pets,1,Vernal +3450,Room #1 in Hip Harlem Garden Apt.,Private room,66.0,2.0,3.0,No pets,2,Mason City +3451,Large Private Room in Quiet BK Heights Apartment,Private room,918.0,3.0,3.0,,1,Chicago +3452,Bright Williamsburg Apt Steps from Train,Entire home/apt,186.0,4.0,4.0,No visitors & No pets,2,Jackson +3453,"☀️Private, cozy & quiet room in Inwood Manhattan☀️",Private room,1183.0,4.0,2.0,No parties,2,Shreveport +3454,Cozy place II,Private room,737.0,1.0,5.0,No children under 10 & No parties & No pets,1,Appleton +3455,Huge Room in Upper West close to Columbia & Subway,Private room,260.0,4.0,4.0,No parties & No children under 10 & No smoking,1,Jacksonville +3456,Beautiful Bed-Stuy Room,Private room,731.0,1.0,2.0,No smoking,1,Burlington +3457,Reno 2BR~Sleeps5~Prime Upper east~,Entire home/apt,1037.0,30.0,5.0,,3,Juneau +3458,(B) Room for 2 - sharing bath,Private room,628.0,2.0,3.0,No pets,1,Appleton +3459,Small Sunny 1BR Apt Bradhurst Park,Entire home/apt,869.0,2.0,1.0,No parties & No children under 10,5,Minneapolis +3460,Huge NYC 4BR Condo ByD'subwaySlp 12,Entire home/apt,331.0,4.0,3.0,No visitors,3,Mosinee +3461,Bright and quiet room in East Village,Private room,651.0,10.0,5.0,,2,Flagstaff +3462,LOFT#1 - Broadway Av. Amazing Location! SoHo,Entire home/apt,648.0,6.0,2.0,No smoking & No visitors,5,Flint +3463,"Cozy apartment, SubwayEMR7NW, 5mins to Manhattan",Private room,85.0,2.0,2.0,,2,Fresno +3464,Private Room near Columbia University,Private room,100.0,28.0,5.0,No children under 10,2,Guam +3465,Private room w/private bathroom near Central Park!,Private room,764.0,2.0,5.0,No pets,1,San Angelo +3466,Newly renovated 2 bedroom with FREE WIFI,Entire home/apt,581.0,1.0,5.0,No children under 10,5,Longview +3467,Gerrie,Private room,1170.0,1.0,4.0,No children under 10 & No parties,1,Helena +3468,The Perfect Queens Getaway!,Entire home/apt,1029.0,2.0,1.0,No children under 10,8,Lubbock +3469,Hidden Gem in Canarsie-FREE private parking,Entire home/apt,613.0,1.0,5.0,No pets & No children under 10 & No parties,2,Jackson +3470,Private 4C Room in 4BR/2BA APT in Hell's Kitchen,Private room,1102.0,1.0,4.0,No smoking,2,Daytona Beach +3471,Serene Spacious and Sun lit Master 5 mins to metro,Private room,83.0,1.0,2.0,No children under 10 & No smoking,2,Nantucket +3472,Cozy 1-bedroom apartment in LES,Entire home/apt,1078.0,3.0,1.0,No children under 10,5,Twin Falls +3473,PRIME WILLIAMSBURG- Spacious 4BR Bohemian Oasis,Entire home/apt,497.0,3.0,5.0,No visitors & No parties,4,Gulfport +3474,Clean & Modern 3BR - Incredible Midtown Location !,Entire home/apt,67.0,4.0,3.0,No visitors,3,Latrobe +3475,2 bedrooms: 1 queen bed and 1 full bed,Private room,246.0,1.0,5.0,No parties,1,Pierre +3476,Furnished Historical Townhouse,Entire home/apt,810.0,5.0,3.0,,3,Wilmington +3477,Private Room by the Cloisters,Private room,1087.0,1.0,3.0,,1,Providence +3478,Elegant 3 BR in Victorian Home by Brooklyn College,Entire home/apt,503.0,4.0,1.0,No children under 10 & No visitors,4,South Bend +3479,Murray Hill Studio,Entire home/apt,196.0,1.0,4.0,,2,Saginaw +3480,Classic Room in Vintage Loft,Private room,435.0,2.0,3.0,,2,North Bend +3481,Unique 2BR Apartment,Entire home/apt,394.0,2.0,3.0,No parties & No pets & No children under 10,3,Atlanta +3482,,Entire home/apt,229.0,4.0,3.0,No visitors,2,Eau Claire +3483,"Ideally located cozy, quiet apartment",Entire home/apt,1043.0,2.0,5.0,No pets,8,Alamosa +3484,Private Bedroom Living Room w/Exposed Brick,Private room,713.0,1.0,2.0,No parties & No smoking,1,Albuquerque +3485,"Sunny, peaceful home in fantastic location",Private room,1185.0,1.0,4.0,No pets,2,Dayton +3486,Casa De Grattan,Shared room,1191.0,2.0,5.0,No visitors,1,Akron +3487,Spacious NY loft equipped for a baby!,Entire home/apt,930.0,5.0,3.0,No children under 10 & No smoking,8,Fairbanks +3488,Cozy farmhouse in NYC. 2 bdrms; 2 full baths. WiFi,Entire home/apt,770.0,2.0,2.0,,5,Melbourne +3489,Entire sunny 2-floor loft in East Williamsburg,Entire home/apt,1147.0,2.0,4.0,No visitors & No children under 10 & No parties,3,Pierre +3490,"Clean, Cozy, and Spacious Brooklyn Row House",Private room,107.0,2.0,4.0,No pets,1,El Paso +3491,Gorgeous Zen Home at Crossroads of Nolita and Soho,Entire home/apt,1148.0,2.0,5.0,No visitors,11,Austin +3492,Brand new Loft 2 blocks away from train w/ parking,Entire home/apt,714.0,1.0,5.0,No pets,2,Pocatello +3493,Bushwick gem with private garden patio.,Entire home/apt,618.0,4.0,4.0,No visitors,6,Newport News +3494,"Bushwick, Spacious Private Room with Balcony",Private room,311.0,4.0,3.0,No children under 10 & No visitors & No smoking,1,Honolulu +3495,"Lovely room with private bathroom, near Manhattan",Private room,681.0,1.0,1.0,No parties,1,Fort Myers +3496,Bright big bedroom in Brooklyn,Private room,894.0,1.0,5.0,No smoking,2,Phoenix +3497,Doorman 44Th st& 2nd! UN Doorman Studio Gym 5226,Entire home/apt,393.0,30.0,4.0,No visitors & No children under 10 & No parties,3,Williston +3498,Comfy 1 bedroom in spacious lower east side apt,Private room,56.0,2.0,4.0,No children under 10 & No parties,1,Kodiak +3499,KING ROOM IN 1500 SQFT WBRG BALLROOM LOFT,Private room,711.0,4.0,3.0,,2,Fort Dodge +3500,PRIVET ROOM FOR YOUR VACATION NEAR Central Park !!,Private room,253.0,1.0,2.0,,2,Gainesville +3501,HEART OF SOHO UPDATED 1 BR,Entire home/apt,1024.0,30.0,2.0,No smoking & No parties,4,Muskegon +3502,Room in a 4 bedroom Apt. in Harlem,Private room,453.0,1.0,3.0,,2,Kansas City +3503,Harlem Parkside - 1 cozy bedroom,Private room,946.0,2.0,4.0,No pets & No children under 10,1,Clarksburg +3504,✮ Gateway to the Boroughs ✮ Spacious Home Base ✮,Private room,917.0,1.0,5.0,No parties & No children under 10,1,Daytona Beach +3505,"The Studio, lush cabin living in Brooklyn",Entire home/apt,485.0,3.0,4.0,No pets & No parties,4,Roanoke +3506,"Gramercy Heaven, right off Park Ave",Entire home/apt,1043.0,2.0,2.0,No smoking & No parties & No pets,2,Owensboro +3507,Airy Brownstone 20 minutes to Manhattan/Groups,Entire home/apt,541.0,2.0,2.0,No visitors,5,Salisbury +3508,MASTER SUITE in 3 Story Loft in an old BK Church,Private room,1013.0,3.0,5.0,No pets & No parties,1,Lihue +3509,Gorgeous Studio Apartment in the heart of Manhatan,Entire home/apt,798.0,5.0,3.0,No children under 10 & No parties,3,Newport News +3510,Entire Home / Apt in Williamsburg + Rooftop,Entire home/apt,191.0,3.0,5.0,No pets,3,Abilene +3511,Cute & Cozy Studio in the BEST part of BK,Private room,783.0,1.0,3.0,No smoking & No parties & No visitors,1,Fort Leonard Wood +3512,Village/soho | 2Br + Skylights,Entire home/apt,739.0,31.0,2.0,,7,Grand Forks +3513,Charming Greenpoint Gem,Entire home/apt,179.0,3.0,1.0,No smoking,2,Lynchburg +3514,Sun-filled Brownstone in Brooklyn,Entire home/apt,679.0,2.0,3.0,,3,Yuma +3515,Sunny room in the heart of WILLIAMSBURG Brooklyn.,Private room,63.0,5.0,2.0,,2,Helena +3516,Close to Central Park,Entire home/apt,954.0,3.0,3.0,No parties,8,Staunton +3517,NYC Studio near Central Park and the Hudson River,Entire home/apt,304.0,2.0,3.0,No pets,2,Abilene +3518,Wonderlust in WIlliamsburg,Entire home/apt,65.0,2.0,5.0,No pets,2,Alpena +3519,Entire private # in a privately own brownstone,Private room,833.0,10.0,2.0,No parties,1,Pellston +3520,Lefferts Garden 1 bedroom,Private room,317.0,1.0,5.0,No pets & No parties & No visitors,2,Fort Lauderdale +3521,Private room in 2B East Village!,Private room,546.0,5.0,5.0,No smoking & No children under 10,2,Garden City +3522,ROOM AC WI-FI PARKING CABLE FOR 2,Private room,797.0,2.0,4.0,No smoking & No children under 10 & No pets,2,Juneau +3523,"BOERUM HILL, Entire Home / Loft",Entire home/apt,486.0,4.0,4.0,No pets & No children under 10,2,Lihue +3524,Comfortable bedroom for one person,Private room,248.0,3.0,1.0,No pets,2,Belleville +3525,Brooklyn Style Williamsburg 2 BR Apartment,Entire home/apt,135.0,3.0,2.0,No pets & No children under 10 & No smoking,2,Allentown +3526,"Charming Chelsea Bungalow w/ +Large Outdoor Terrace",Entire home/apt,985.0,2.0,5.0,No visitors & No children under 10,9,West Palm Beach +3527,Prime UWS studio with loft bed South expo !!,Entire home/apt,63.0,31.0,3.0,No pets,3,Adak Island +3528,Best location in Bay Ridge. Cozy and private room.,Private room,377.0,1.0,5.0,No children under 10,1,Florence +3529,Warm bed room,Private room,1098.0,1.0,2.0,No children under 10,1,Jamestown +3530,Big Room by Metro/Subway-15mns to Manhattan,Private room,720.0,2.0,4.0,No smoking,2,Marquette +3531,Sunny Quiet Bedroom in Brooklyn,Private room,846.0,3.0,2.0,,1,Milwaukee +3532,DSGN By Starck/ Washer & Dryer Basket Ball!5149,Entire home/apt,243.0,30.0,4.0,No visitors,3,Jackson +3533,4BR Brooklyn Apartment Minutes from City Life!,Entire home/apt,336.0,2.0,5.0,,2,Pittsburgh +3534,Private Room 2 in East Village (Large Window),Private room,1086.0,1.0,5.0,No visitors,2,El Paso +3535,Charming Bushwick Shared Space,Private room,936.0,2.0,3.0,No parties & No pets,2,Portland +3536,Cozy Apartment for 1 or 2 people,Entire home/apt,739.0,3.0,2.0,No visitors,4,Kotzebue +3537,Nice room,Private room,1167.0,2.0,5.0,No children under 10 & No parties,2,Asheville +3538,Spacious & Charming Nolita 1 Bed,Entire home/apt,954.0,2.0,3.0,,4,Binghamton +3539,Bright One Bdr Apartment in Center of Manhattan,Entire home/apt,673.0,1.0,4.0,No parties & No visitors,6,Laramie +3540,West Village NYC Sun-filled Studio!,Entire home/apt,74.0,30.0,5.0,No visitors,2,Eau Claire +3541,"Cute Room in Boho NYC Apt: Quiet, Close to Trains!",Private room,883.0,2.0,3.0,No visitors & No smoking & No parties,1,Sheridan +3542,Wyndham Midtown 45 (2 Bedroom Presidential) 7A,Entire home/apt,896.0,3.0,5.0,No visitors & No children under 10,6,Greensboro +3543,Fold out couch in prime Brooklyn,Shared room,115.0,1.0,2.0,,1,Palm Springs +3544,South Park Slope 1BR Apt with Shared Yard,Entire home/apt,62.0,2.0,2.0,No parties,3,Fort Leonard Wood +3545,Beautiful & Modern in the Heart of East Village,Entire home/apt,1017.0,2.0,5.0,No visitors & No children under 10 & No parties,6,Ponce +3546,Spacious Private Bedroom in Hip Bushwick,Private room,1198.0,25.0,1.0,No smoking & No parties,2,Ogdensburg +3547,Modern & Hip Building - Quiet Room - Elevator!,Private room,943.0,2.0,5.0,No children under 10 & No visitors,1,Jackson +3548,A great place to crash.,Private room,819.0,2.0,2.0,No parties,2,New Orleans +3549,Private room for sublet,Private room,313.0,12.0,1.0,No smoking & No children under 10 & No parties,1,Bellingham +3550,"Calm, quirky Harlem apartment Room 1",Private room,630.0,2.0,2.0,No parties,1,Punta Gorda +3551,"Beautiful, rustic 1BD in HEART of Willlamsburg!",Entire home/apt,1145.0,4.0,4.0,,7,New Orleans +3552,Private Room in Chelsea 3 BR,Private room,590.0,5.0,2.0,No children under 10 & No smoking,2,Medford +3553,Magnificent Fort Greene Home- 3 Floors,Entire home/apt,335.0,2.0,5.0,No parties & No visitors & No smoking,2,Rhinelander +3554,Fire Escape + Roof Views 30-min from Manhattan,Private room,378.0,31.0,2.0,No smoking,2,Lihue +3555,FANTASTIC Large 1 Bedroom near Columbus Circle.,Entire home/apt,403.0,2.0,2.0,No pets,4,Asheville +3556,Huge room in Brooklyn,Private room,106.0,1.0,5.0,No pets & No smoking & No children under 10,1,Hayden +3557,Lovely 1 bdrm in Prospect Heights!,Entire home/apt,690.0,4.0,5.0,,4,Bloomington +3558,Comfy and quiet bed for women travelers,Shared room,757.0,2.0,5.0,No smoking & No visitors,1,Provo +3559,Stylish Studio in Midtown East,Entire home/apt,910.0,1.0,5.0,No parties & No children under 10,6,Portland +3560,Lovely Shiny Private Room in NYC,Private room,109.0,3.0,1.0,,2,Cincinnati +3561,Shared room with bunk beds in Bensonhurst,Shared room,,3.0,5.0,No pets,1,Hayden +3562,Huge rm in 1500sq ft loft w/lots,Private room,560.0,1.0,3.0,No visitors,1,Manhattan +3563,Sunny Private Room in Crown Heights,Private room,868.0,3.0,1.0,No visitors & No smoking & No parties,1,West Yellowstone +3564,FULLY RENOVATED SECOND FLOOR FRONT VIEW APARTMENT,Entire home/apt,535.0,60.0,2.0,,2,Lawton +3565,Beautiful Sleek Apartment in New Building,Private room,1018.0,5.0,3.0,No smoking,2,Jackson +3566,Big Bright Studio in the Heart of Brooklyn,Entire home/apt,336.0,5.0,3.0,No visitors & No smoking & No children under 10,3,Riverton +3567,BEST LOCATION IN NEW YORK:PRIVATE MEDIUM SIZE ROOM,Private room,594.0,1.0,5.0,,2,Ithaca +3568,Brooklyn House at 443 Linden Room 1,Private room,150.0,3.0,4.0,No smoking,2,Sitka +3569,ART HOUSE VAULT,Private room,883.0,1.0,1.0,,2,Laramie +3570,Full-Service Junior Suite in Midtown Manhattan,Entire home/apt,368.0,3.0,3.0,No smoking & No pets,2,Wilmington +3571,"Brooklyn Love, Close to the City!!",Entire home/apt,655.0,2.0,2.0,No visitors & No parties,5,Newburgh +3572,Spacious 1BD Red Hook Apartment,Entire home/apt,1145.0,43.0,4.0,No pets & No smoking,8,Madison +3573,Charming duplex Morningside Heights-Private Floor,Private room,564.0,1.0,4.0,No children under 10 & No parties & No pets,1,Corpus Christi +3574,Newly renovated ground floor apt in Williamsburg,Entire home/apt,991.0,2.0,5.0,No children under 10 & No pets,4,Greenville +3575,"Lower East Side, Bohemian Home, hipster location",Private room,783.0,3.0,2.0,No parties,2,Fort Myers +3576,CLEAN PRIVATE bathroom in Newly built in 2014,Private room,353.0,29.0,4.0,No visitors,2,Trenton +3577,Cozy 1 Bedroom on Upper West Side,Entire home/apt,236.0,2.0,4.0,No smoking & No children under 10 & No pets,2,Juneau +3578,"Very Central, Nomad/Chelsea Loft Studio",Entire home/apt,508.0,18.0,4.0,No parties,2,Columbia +3579,Williamsburg Dream Loft,Private room,235.0,2.0,1.0,,1,La Crosse +3580,Hip Master Bedroom with A Private Bathroom in NYC,Private room,841.0,3.0,2.0,No visitors & No parties,1,Clarksburg +3581,1 bedroom clean & simple in manhattan.,Entire home/apt,405.0,6.0,2.0,No smoking,4,Redding +3582,Bright central designer's apt - steps to train!,Entire home/apt,1019.0,5.0,5.0,No visitors & No smoking,10,Atlanta +3583,Airy Crown Heights Loft,Entire home/apt,203.0,3.0,2.0,No smoking,2,Guam +3584,"Beautiful, spacious 2 bed, Crown Heights apartment",Entire home/apt,629.0,4.0,5.0,No parties,4,Hibbing +3585,Private room near LGA Airport with queen bed,Private room,890.0,1.0,5.0,No parties & No visitors & No pets,1,Grand Island +3586,Spacious 1BR Apt / Hamilton Heights,Entire home/apt,222.0,1.0,1.0,No smoking & No pets & No visitors,2,Bloomington +3587,Private Room Available in Hamilton Heights,Private room,542.0,7.0,5.0,No smoking,2,Manhattan +3588,"Private room in Queens Village, NY. Near JFK.",Private room,977.0,3.0,5.0,,1,Fayetteville +3589,"3 Beds, Uptown , one block train A ,15 min Wall St",Entire home/apt,588.0,30.0,4.0,No parties,4,Augusta +3590,Jewel Box Studio in Soho / Nolita,Entire home/apt,462.0,1.0,2.0,No pets & No children under 10,3,Marquette +3591,"Chill Private Room in Crown Heights, Brooklyn",Private room,239.0,2.0,5.0,No children under 10 & No visitors & No smoking,1,Alexandria +3592,Family Friendly BK Townhome With Garden Oasis!,Entire home/apt,593.0,365.0,1.0,No pets,2,Guam +3593,Quintessential New York Charm,Entire home/apt,548.0,3.0,4.0,No parties & No pets,3,Kearney +3594,Terrific Beach Front Condominium - Rockaway Beach,Entire home/apt,792.0,2.0,3.0,No visitors & No parties,7,Santa Fe +3595,Spacious Bushwick Studio,Entire home/apt,350.0,3.0,5.0,,3,Cedar Rapids +3596,Nice Room in the Upper West Side. Great Location.,Private room,942.0,3.0,4.0,,1,Cincinnati +3597,Renovated Studio Apt! Walk to the Subway & Ferry!,Private room,279.0,3.0,4.0,No smoking,2,Alamosa +3598,"Entire 2 bedroom apt ,Prime Williamsburg",Entire home/apt,94.0,4.0,1.0,No children under 10,3,Walla Walla +3599,Beautiful 1 bedroom apartment,Entire home/apt,56.0,3.0,1.0,No pets,2,Kona +3600,"Sun Drenched, Extra Large 1 Bdrm Clinton Hill Apt",Entire home/apt,660.0,3.0,4.0,No smoking & No visitors,4,Kodiak +3601,No Stairs 2BR near Times Square - very private!!,Entire home/apt,708.0,2.0,5.0,No smoking,3,Ontario +3602,Garden room in a private house,Private room,939.0,45.0,4.0,No children under 10,2,Cincinnati +3603,Be our guest!,Private room,459.0,1.0,3.0,No smoking,1,Cedar City +3604,Private big bedroom w/ access to kitchen- Flushing,Private room,591.0,1.0,5.0,No pets,1,Belleville +3605,TRANQUIL HAVEN W/PRIVATE BATH-8 MINS TO JFK RM.#1,Private room,251.0,1.0,4.0,No visitors & No parties & No children under 10,2,Fayetteville +3606,Akouaba,Private room,972.0,2.0,2.0,,2,Binghamton +3607,Chic & Cosy Lower East Side Apartment,Private room,577.0,2.0,3.0,No visitors,2,Santa Rosa +3608,"Cute, spacious, windowlit room in Williamsburg",Private room,826.0,2.0,4.0,No children under 10 & No pets & No visitors,1,Boise +3609,Serene atmosphere in Manhattan,Private room,987.0,2.0,5.0,No smoking,1,Eagle +3610,Cozy 2 Bedroom,Entire home/apt,845.0,3.0,1.0,No smoking & No children under 10 & No visitors,6,Montgomery +3611,"Cozy, Private 1 Bedroom Basement Apartment",Entire home/apt,650.0,2.0,5.0,No visitors,2,San Juan +3612,JFK Queens/House of Suedajoy#5(dis by flexibility,Private room,1003.0,1.0,5.0,No smoking & No pets,2,Las Vegas +3613,Private room for 2 (10 min to city) - Females only,Private room,453.0,1.0,4.0,No parties & No smoking & No visitors,1,Wilmington +3614,Comfy Home ~ 1st Floor,Entire home/apt,323.0,3.0,2.0,No smoking & No pets,2,Huntsville +3615,Big room in West Harlem/Morningside,Private room,190.0,7.0,4.0,No parties & No children under 10,1,Lewisburg +3616,URBAN LUXURY 2BR DUPLEX~24/7 DOORMAN/GYM~SUTTON PL,Entire home/apt,440.0,90.0,5.0,No parties & No children under 10,4,Portland +3617,Spacious bedroom available in SoHo,Private room,716.0,5.0,3.0,No visitors,1,Ponce +3618,Charming manhattan 1 bedrooms in the city,Entire home/apt,363.0,30.0,4.0,No pets,3,Peoria +3619,"Room w/private bathroom, Central Park & Times Sq",Private room,904.0,3.0,4.0,No pets & No smoking,1,Liberal +3620,New tidy room attached by PRIVATE FULL BATH,Private room,73.0,3.0,5.0,No parties & No smoking,2,Seattle +3621,Pop Fashion Studio,Entire home/apt,1198.0,3.0,2.0,No parties & No smoking,11,Casper +3622,"Morningside Park, near Columbia U., private room",Private room,847.0,1.0,2.0,No pets & No parties,1,Ashland +3623,A Small Kingdom in the Clouds,Entire home/apt,946.0,30.0,5.0,No pets & No parties,4,Columbus +3624,Private Room in Fort Green BK close to city,Private room,631.0,5.0,1.0,No pets & No smoking,2,Myrtle Beach +3625,The Prince - A Nolita One Bedroom Apartment,Entire home/apt,374.0,2.0,3.0,No pets,2,Ketchikan +3626,"Female only, Private room,3 min walking to metro J",Private room,500.0,2.0,5.0,No children under 10 & No visitors,1,Vernal +3627,Hospitality on Propsect Pk-12 yrs Hosting Legally!,Private room,556.0,1.0,4.0,No smoking & No visitors & No parties,1,Buffalo +3628,"Bright, Airy, Downtown Oasis :)",Entire home/apt,987.0,2.0,5.0,No visitors & No parties,9,Kotzebue +3629,"Sunny, Quiet Oasis w/ Elevator - Close to Subway!",Private room,383.0,3.0,5.0,No pets & No parties,1,Jacksonville +3630,Private Room With Manhattan Skyline Views,Private room,1119.0,1.0,1.0,No visitors,2,Santa Ana +3631,Laundry + Free Cleaning & WiFi - 5min to Metro,Private room,787.0,20.0,4.0,No smoking & No pets & No parties,2,Panama City +3632,Upper Westside Room w/ Private Bath & View,Private room,285.0,2.0,2.0,No smoking & No visitors,1,Eau Claire +3633,Cozy room in historic Brooklyn walk-up,Private room,134.0,2.0,5.0,No visitors & No children under 10,1,Scranton +3634,Cozy private room in L.E.S -,Private room,1164.0,3.0,4.0,No parties,1,Hagerstown +3635,GORGEOUS Newly-Renovated 2-BR Flat,Entire home/apt,731.0,30.0,5.0,No parties,6,Denver +3636,"Cozy, quiet room near Central Park",Private room,929.0,1.0,5.0,No children under 10,2,Atlantic City +3637,Sunny bedroom with amazing view in East Village,Private room,785.0,15.0,5.0,No parties,1,Brownsville +3638,Very small room near Columbia Uni med school,Private room,217.0,1.0,2.0,No children under 10 & No pets,2,Newburgh +3639,Modern Elegance on the Upper East Side,Entire home/apt,757.0,3.0,5.0,,5,Sarasota +3640,Large One Bedroom Apartment,Entire home/apt,675.0,1.0,3.0,No parties,4,Aberdeen +3641,"Huge, Sunny, & Private Room - 5 min to Times Sq.",Private room,406.0,1.0,5.0,,1,Kalispell +3642,midtown apartment,Entire home/apt,63.0,1.0,1.0,,3,Palm Springs +3643,Extreme Luxury Apt @ Times Sq w amazing river view,Entire home/apt,570.0,3.0,3.0,No children under 10 & No visitors,5,Kearney +3644,BED-STUY SOUTHERN COMFORT,Entire home/apt,837.0,3.0,2.0,,6,Salina +3645,Lapp House,Entire home/apt,118.0,3.0,5.0,No parties & No pets & No smoking,3,Savannah +3646,76 St & 2 Ave /Renovated studio/ Elevator/ Laundry,Entire home/apt,494.0,30.0,1.0,No pets,2,Hagerstown +3647,"Walk distance to Central Park, 10min Time Square",Private room,309.0,1.0,4.0,,2,Lansing +3648,"Huge 1-Bedroom, A+ Midtown Location",Entire home/apt,849.0,4.0,1.0,No pets,8,Eau Claire +3649,Large Loft Apartment - Private Terrace and Rooftop,Entire home/apt,985.0,2.0,3.0,No pets,8,Kodiak +3650,"Warm home in Woodside, Queens.",Private room,401.0,1.0,1.0,No parties,2,Ashland +3651,Queen sized bedroom with skyline view - Greenpoint,Private room,594.0,5.0,4.0,,1,Clarksburg +3652,Spacious 1BD in lovely Clinton Hill,Entire home/apt,1191.0,1.0,1.0,,3,Monterey +3653,Spacious One Bedroom Apartment,Entire home/apt,214.0,3.0,5.0,No pets,2,Nome +3654,!Captivating Private Room,Private room,809.0,2.0,2.0,No pets,1,Christiansted +3655,"Brooklyn NY, Comfy,Spacious Repose!",Private room,767.0,3.0,2.0,No smoking & No pets,2,Saipan +3656,Pretty Williamsburg Loft,Entire home/apt,1181.0,1.0,5.0,No visitors,6,Phoenix +3657,Cozy and private room in the East Village,Private room,421.0,3.0,5.0,No smoking,1,Lynchburg +3658,Great in Greenpoint,Entire home/apt,785.0,7.0,2.0,,4,Dubuque +3659,Spacious apt in Prospect Lefferts,Private room,348.0,1.0,4.0,No visitors,1,Fort Leonard Wood +3660,Sunny 1-Bdrm Near Shopping,Entire home/apt,172.0,5.0,2.0,No visitors,2,Panama City +3661,Your New York Retreat next to Times Square,Private room,867.0,1.0,3.0,No visitors,2,Hilo +3662,NYC private room in Private house|Mt Vernon area,Private room,1035.0,1.0,3.0,No pets,2,Fargo +3663,East Williamsburg private 2 bedroom apt by L train,Entire home/apt,895.0,1.0,3.0,No visitors,3,Eugene +3664,Chic Designer Home Guest Studio,Entire home/apt,61.0,2.0,2.0,No visitors & No parties,3,El Paso +3665,Stunning West Village Loft,Entire home/apt,530.0,1.0,4.0,No smoking,3,Arcata +3666,Studio in Amazing UES Location,Entire home/apt,340.0,1.0,4.0,No parties & No smoking,3,Trenton +3667,The proud New Yorker Room,Private room,82.0,1.0,4.0,No children under 10,1,Del Rio +3668,Home in Lower East Side,Entire home/apt,679.0,3.0,4.0,No visitors,2,Kahului +3669,紐約哥大週邊優質短租,Entire home/apt,973.0,10.0,4.0,No pets,6,Chattanooga +3670,"Centrally Located, Large, Clean, Private Bedroom",Private room,863.0,1.0,1.0,No visitors & No pets,1,Moab +3671,Spacious sunny bedroom (B) - East Village,Private room,486.0,2.0,5.0,,1,Stillwater +3672,Studio in Sunny Sanctuary,Private room,691.0,2.0,1.0,No pets,1,Tucson +3673,"Queen size bed room , New York Apartment",Private room,1028.0,1.0,3.0,No children under 10 & No visitors & No parties,2,Vernal +3674,Furnished room for rent - Manhattan,Private room,237.0,3.0,3.0,No smoking,1,El Paso +3675,East Village Apartment with Terrace,Entire home/apt,292.0,1.0,3.0,No pets & No visitors,3,Peoria +3676,Roomy Manhattan Studio,Entire home/apt,694.0,2.0,1.0,,3,Waterloo +3677,The Manhattan Club in the heart of midtown!!!!,Entire home/apt,723.0,4.0,1.0,No pets & No parties,7,Del Rio +3678,Manhattan *SuperHost* Luxury Master Bedrm PRIVATE,Private room,79.0,1.0,3.0,No children under 10 & No visitors,2,Lihue +3679,Hamilton Heights,Entire home/apt,867.0,30.0,3.0,No pets,3,Twin Falls +3680,"Luxury High Line Chelsea Doorman, Roof Deck/Gym",Entire home/apt,914.0,4.0,4.0,No smoking & No visitors & No children under 10,7,Elmira +3681,New york Cozy studio,Entire home/apt,366.0,7.0,4.0,,2,Brainerd +3682,Cozy and Modern apartment in Astoria,Entire home/apt,1024.0,7.0,1.0,,8,Bangor +3683,Brooklyn Home II,Private room,631.0,1.0,2.0,No visitors & No children under 10,2,Phoenix +3684,Comfortable sofa bed in Manhattan,Shared room,374.0,2.0,3.0,,1,Dallas +3685,Cozy West Village Studio,Entire home/apt,589.0,2.0,3.0,No smoking & No pets,5,Mason City +3686,Gorgeous Garden Apartment in Park Slope,Entire home/apt,910.0,3.0,1.0,No visitors,9,San Luis Obispo +3687,Great room near Chelsea market,Private room,800.0,1.0,3.0,No visitors & No children under 10,1,Jacksonville +3688,Manhattan Club Penthouse Suite,Entire home/apt,1010.0,1.0,4.0,No smoking,6,Hyannis +3689,1 BR in Williamsburg by Bedford Ave Station,Private room,826.0,2.0,4.0,,1,Gulfport +3690,Parisian Apt in PRIME Carroll Gardens Brooklyn,Entire home/apt,97.0,5.0,1.0,No children under 10 & No pets & No smoking,3,Marquette +3691,The Yellow CropTop in Harlem NYC,Private room,892.0,1.0,5.0,No children under 10 & No pets,2,Scranton +3692,Highclass clean and calm,Private room,732.0,1.0,3.0,No visitors,1,Great Falls +3693,Comfortable home in the heart of it all,Private room,672.0,1.0,3.0,No parties,1,Pasco +3694,"Bright, Beautiful + Adorable in S. Williamsburg",Entire home/apt,589.0,1.0,4.0,No children under 10 & No visitors & No smoking,2,Garden City +3695,Private Room,Private room,1113.0,1.0,3.0,No pets & No children under 10 & No visitors,2,Cincinnati +3696,Spacious Brooklyn One Bedroom/Loft***Morgan L Stop,Entire home/apt,1164.0,4.0,3.0,No children under 10 & No pets,6,Oakland +3697,"Luxury 2 BR Apartment, Columbus Circle",Entire home/apt,606.0,30.0,5.0,No parties,4,Tallahassee +3698,Minutes to everything in the middle of Manhattan,Private room,81.0,1.0,4.0,No visitors & No parties,1,Trenton +3699,Large sunny park slope apartment,Entire home/apt,82.0,1.0,5.0,,3,Orlando +3700,Cozy Bedroom in East Village,Private room,762.0,1.0,4.0,No parties,2,Huntsville +3701,Sunny and spacious apartment in Brooklyn,Private room,666.0,4.0,1.0,No smoking & No parties,2,Escanaba +3702,Large apartment walking distance to Williamsburg,Private room,1157.0,4.0,4.0,No parties & No smoking & No pets,2,Portland +3703,★ Your Cozy Home I Taxi Service I Backyard ★,Entire home/apt,837.0,1.0,5.0,,8,Saginaw +3704,Doll private room,Private room,444.0,5.0,4.0,,2,Cheyenne +3705,Spacious and welcoming studio apartment,Entire home/apt,938.0,30.0,3.0,No visitors,3,Florence +3706,Bright & Luxurious Studio in Financial District,Entire home/apt,1172.0,4.0,3.0,No smoking,11,Little Rock +3707,Charming Townhouse Near RSD Park! 2 Bedroom Apt,Entire home/apt,316.0,30.0,5.0,No smoking,3,St. George +3708,"Cozy Apartment in Williamsburg, BK",Private room,812.0,15.0,2.0,No pets & No children under 10 & No smoking,1,Branson +3709,Lovely 2-Bedroom Near Prospect Park,Entire home/apt,595.0,3.0,5.0,No parties,3,Grand Junction +3710,,Private room,666.0,1.0,4.0,No parties & No children under 10 & No pets,2,Hartford +3711,Bedroom with a view located steps from the train,Private room,133.0,5.0,3.0,,1,Ithaca +3712,"Bright, modern room with a view of NYC skyline",Private room,635.0,5.0,5.0,No children under 10,2,Kahului +3713,Cool Brooklyn spot,Private room,983.0,2.0,5.0,No smoking & No pets,1,Daytona Beach +3714,@ Amazing Midtown Furnished Apartment @,Entire home/apt,715.0,30.0,4.0,No parties,7,Buffalo +3715,Comfy Queen Bedroom in Crown Heights 2SR,Private room,603.0,1.0,1.0,No smoking & No parties & No children under 10,1,Fresno +3716,"Pretty, 775 sq ft, 1.75 BR, Manhattan Apt.",Entire home/apt,1178.0,2.0,2.0,No smoking,8,Grand Island +3717,Stylish Apt in the Heart of Greenwich Village,Entire home/apt,796.0,30.0,5.0,No parties,6,Louisville +3718,Park Slope House -private room -1 block from metro,Private room,978.0,5.0,5.0,,1,Greensboro +3719,Hudson COLUMBIA PRESBYTERIAN MED CTR * Studio Apt*,Entire home/apt,621.0,30.0,1.0,No parties,2,Flint +3720,Conveniently located 2 BR Time Square Apartment,Entire home/apt,502.0,2.0,5.0,No parties & No smoking & No children under 10,4,San Diego +3721,Sunny Upper East Side Escape,Private room,170.0,4.0,3.0,No pets,1,Islip +3722,Affordable 5-P Room n Private bath,Private room,1045.0,1.0,4.0,No visitors & No children under 10,1,Beaumont +3723,Private sunny room with private bathroom&entrance,Private room,119.0,5.0,1.0,No parties & No smoking,2,Santa Ana +3724,Williamsburg Sky,Entire home/apt,598.0,2.0,4.0,No smoking & No children under 10,2,Greensboro +3725,Private Room In Bushwick,Private room,663.0,1.0,1.0,No parties,1,Dillingham +3726,Nice bedroom - Lower East Side,Private room,993.0,1.0,4.0,No smoking,2,St. Louis +3727,"Lovely 2 Bdrm. Trains, Parks, Food!",Entire home/apt,445.0,3.0,1.0,,4,Fort Wayne +3728,"Artsy 3-Bdrm, 2 bath, Sleeps 10, 1 min from subway",Entire home/apt,610.0,2.0,2.0,,2,Oklahoma City +3729,FULL BED/Spa Amenities for Sophisticated Travelers,Private room,336.0,2.0,4.0,No visitors & No children under 10,1,Devils Lake +3730,"King Suite with sofa bed, your sanctuary in SoHo",Private room,771.0,1.0,4.0,No children under 10 & No smoking & No pets,1,Scottsbluff +3731,Modern stay w. 30 Min. to City Downtown on #4 line,Entire home/apt,1112.0,6.0,5.0,No parties,4,Vernal +3732,The Sweet Pea Cottage,Entire home/apt,968.0,1.0,5.0,No pets,3,St. Cloud +3733,"I promise you ,you'll never want to leave!",Private room,470.0,2.0,2.0,No pets,1,Portland +3734,Yankee baseball stay,Private room,911.0,1.0,5.0,No pets,1,San Jose +3735,纽约罗岛Roosevelt Island整租或合租 窗外美景 设施全 家具新 到曼哈顿方便 性价比高,Entire home/apt,191.0,1.0,4.0,No pets & No children under 10 & No smoking,3,Joplin +3736,2BR Getaway in Modern Luxury Building,Entire home/apt,826.0,3.0,5.0,No parties,5,San Juan +3737,Beautiful designer studio on 1st,Entire home/apt,897.0,3.0,5.0,No smoking,5,Lafayette +3738,Cozy Clean Small Apartment 2 Bedrooms Nyc,Entire home/apt,313.0,2.0,1.0,No children under 10 & No parties,3,Lubbock +3739,Chill East Williamsburg Apartment,Private room,426.0,2.0,4.0,No pets,1,Monterey +3740,Huge serene room in a perfect area!,Private room,981.0,2.0,4.0,,1,Oklahoma City +3741,The East Village Home: The Sunlight Room,Private room,764.0,1.0,3.0,No smoking & No children under 10 & No parties,2,Rapid City +3742,Private Room in Luxury Apt Building - NYC,Private room,1000.0,2.0,5.0,No children under 10,1,Burlington +3743,Warm & Cozy Room in Sunnyside. Awesome Location!,Private room,1060.0,30.0,5.0,,2,Brownsville +3744,Perfect Location_Upper West Side_*Central Park*,Private room,643.0,7.0,4.0,No parties,2,Kalamazoo +3745,Cozy Greenpoint Gem near park and hip amenities!,Private room,822.0,7.0,2.0,No parties & No children under 10,2,Yakutat +3746,Skyline #1 view ny skyline,Private room,78.0,2.0,4.0,,1,Atlantic City +3747,Air conditioned Excellent Private Room for 1,Private room,185.0,5.0,4.0,No children under 10 & No parties,2,Flagstaff +3748,Beautiful Private Bedroom with Balcony,Private room,606.0,1.0,5.0,No smoking,1,Fresno +3749,Entire 2bed apt in Brooklyn,Entire home/apt,1055.0,4.0,1.0,No children under 10 & No parties & No smoking,7,Hays +3750,Space & Comfort in Victorian Brooklyn home,Entire home/apt,1183.0,3.0,5.0,No smoking & No visitors & No children under 10,5,Key West +3751,Beautiful East Village Apartment,Entire home/apt,928.0,5.0,4.0,No smoking,5,Mosinee +3752,"Home Away From Home. Sunny, Spacious 1BR Apartment",Entire home/apt,1008.0,90.0,1.0,No pets,9,Charlotte +3753,Beautiful Brooklyn,Private room,112.0,1.0,5.0,,1,Bismarck +3754,Hip + Bright Studio w/ Balcony in Charming Chelsea by Blueground,Entire home/apt,684.0,30.0,5.0,,6,Newburgh +3755,Sunny and spacious private room in Bushwick,Private room,234.0,30.0,2.0,No children under 10 & No visitors,1,Santa Fe +3756,Large Stylish 1.5 BR Noho/Nolita,Entire home/apt,767.0,2.0,3.0,No children under 10,7,St. Petersburg +3757,Affordable Luxury Minutes to Manhattan,Entire home/apt,362.0,2.0,5.0,No smoking & No children under 10,3,Burlington +3758,Luxurious Full Floor 2 Bedroom Best Location,Entire home/apt,612.0,30.0,1.0,No children under 10 & No smoking,2,Ontario +3759,Charming Room 4 blocks from Empire State Building,Private room,1195.0,3.0,4.0,No parties & No pets & No visitors,1,Lewiston +3760,Charming sunny Bushwick bedroom,Private room,396.0,2.0,2.0,No children under 10,1,Moab +3761,Brooklyn Room in Hip Neighborhood - Close to Train,Private room,742.0,1.0,1.0,No children under 10 & No smoking,1,Kalispell +3762,Beautiful Room in Brooklyn!!,Private room,886.0,30.0,2.0,No children under 10,1,Durango +3763,A private bedroom in the Heart of the East Village,Private room,309.0,1.0,3.0,No smoking & No children under 10 & No parties,2,Kona +3764,"Spacious & Bright 3BRs Near Subways, Parks, Shops",Entire home/apt,623.0,1.0,4.0,No visitors & No smoking & No pets,5,Beaumont +3765,Home away from home in Upper Manhattan,Private room,791.0,4.0,3.0,,2,Petersburg +3766,2 Bedroom Apartment in Prime Midtown West,Entire home/apt,1121.0,3.0,3.0,,6,Jamestown +3767,Amazing Apartment in Upper East near Guggenheim,Entire home/apt,714.0,3.0,5.0,No parties & No pets & No visitors,3,Melbourne +3768,Charming apt in Bed-Study! Central location,Private room,1196.0,1.0,1.0,No pets,2,Charleston +3769,Cozy Studio Apartment in the Heart of Williamsburg,Entire home/apt,492.0,2.0,4.0,No parties,3,Grand Island +3770,Sunny one bedroom in the Friends Building,Entire home/apt,472.0,1.0,5.0,No visitors,4,Asheville +3771,Cozy Studio with Private Entrance,Entire home/apt,336.0,1.0,4.0,No children under 10,3,Bend +3772,Stunning designer loft in the heart of Downtown,Entire home/apt,933.0,15.0,4.0,No pets & No children under 10,4,Santa Ana +3773,Amazing views in the center of it all. Look at the Empire State Building right from your bed!,Entire home/apt,959.0,2.0,5.0,No children under 10 & No pets,2,Lawton +3774,Sunny Harlem Oasis feels like Luxury,Entire home/apt,693.0,1.0,3.0,No smoking & No children under 10,5,Fresno +3775,Spacious Private Room in Greenwich Village,Private room,916.0,1.0,2.0,No visitors & No children under 10,1,North Platte +3776,Cool Downtown Apartment in Great Location,Entire home/apt,997.0,4.0,4.0,No pets,7,New York +3777,Ocean Blue Room,Private room,1078.0,1.0,4.0,,2,Durango +3778,Historic Brooklyn 2-Bedroom Apt,Entire home/apt,1171.0,2.0,2.0,No pets & No parties,10,West Palm Beach +3779,A beautiful Cozy 1 BR Apartment.,Entire home/apt,198.0,2.0,5.0,No children under 10,2,Bemidji +3780,Full 1-Bedroom in a Picturesque Brownstone,Entire home/apt,598.0,1.0,1.0,No pets,4,Monterey +3781,,Entire home/apt,931.0,2.0,2.0,No smoking & No pets & No children under 10,5,Islip +3782,Beautiful Serene Bedroom,Private room,893.0,1.0,1.0,No visitors & No pets,2,Laredo +3783,U.E.S 1 Bedroom Spacious Apartment,Entire home/apt,147.0,4.0,1.0,No visitors,2,New Orleans +3784,2 BEDROOM GREAT APT ON LEXINGTON AVE MUST SEE,Entire home/apt,808.0,30.0,3.0,No visitors & No pets,7,Petersburg +3785,Beautiful big ROOM/Safe&comfortable/ near LG& JFK,Private room,289.0,4.0,4.0,No children under 10,2,Tulsa +3786,Convenient 1Bdr with Outdoor Space (sleeps 4),Entire home/apt,825.0,2.0,2.0,No visitors & No parties,8,South Bend +3787,Nice private room in quiet E Village apt,Private room,722.0,2.0,4.0,No parties & No pets,1,New Bern +3788,Spacious Room,Private room,484.0,1.0,3.0,,1,Branson +3789,Wash Heights Corner Apt,Private room,471.0,4.0,2.0,No visitors,2,Valparaiso +3790,Upper East Side Gem,Entire home/apt,619.0,15.0,2.0,No visitors,5,Santa Ana +3791,Couch in E. Williamsburg Luxury Apt,Shared room,306.0,1.0,3.0,No parties,1,San Jose +3792,Spacious 1 Bedroom Apt in Brooklyn,Entire home/apt,365.0,2.0,2.0,No pets & No children under 10 & No visitors,3,Lewiston +3793,Cozy and Creative in Clinton Hill,Private room,838.0,6.0,2.0,No visitors & No children under 10 & No parties,1,Killeen +3794,Newly Renovated LES Apartment with Private Balcony,Private room,970.0,5.0,5.0,No visitors & No smoking,1,Santa Barbara +3795,Large Private Bedroom in a 3 Story Brown Stone,Private room,342.0,2.0,4.0,No smoking & No children under 10,1,Grand Forks +3796,"4 bdrm/2 bath apt. Central Pk, Columbia U.",Entire home/apt,564.0,30.0,3.0,No visitors & No pets,4,Chattanooga +3797,211 East 34 St Room 8 (10 by 12),Private room,504.0,7.0,2.0,No parties,1,Everett +3798,"AMAZINGLY LOCATED ONE BEDROOM, NEAR CENTRAL PARK",Entire home/apt,637.0,4.0,3.0,No visitors & No smoking,5,Eagle +3799,Magical Brooklyn townhouse room fit for a wizard,Private room,386.0,1.0,2.0,No children under 10,2,Grand Forks +3800,Cozy 1 bdrm apt in the heart of hippest LES hood,Entire home/apt,542.0,3.0,2.0,No children under 10 & No smoking & No parties,2,Dothan +3801,Bright 3-bedroom apartment in beautiful Brooklyn,Entire home/apt,552.0,3.0,2.0,No children under 10,2,Wichita Falls +3802,Tribeca Apt w/ Rooftop Views,Private room,1040.0,4.0,2.0,No pets & No parties,2,State College +3803,The Godfather private room,Private room,1137.0,1.0,2.0,No children under 10,1,Eau Claire +3804,Santuary from the City - Sunny Greenpoint Apt,Entire home/apt,714.0,14.0,2.0,No pets & No children under 10 & No visitors,5,North Platte +3805,Bright large Williamsburg 1 bed apartment,Entire home/apt,324.0,5.0,2.0,,3,New Orleans +3806,Full Cosy apart in the middle of Manhattan!,Entire home/apt,455.0,4.0,1.0,No parties,3,Stockton +3807,Studio Apt in Washington Square <3,Entire home/apt,511.0,7.0,2.0,No children under 10,3,Walla Walla +3808,"Peaceful home, industrial neighborhood",Private room,1151.0,2.0,5.0,No parties,1,Muskegon +3809,Cozy room in Bushwick- 15 min to the city,Private room,933.0,1.0,2.0,No parties & No pets,2,Chattanooga +3810,Tranquil Room in Manhattan,Private room,505.0,2.0,2.0,No visitors,2,Wenatchee +3811,"Cute one bedroom apt. in Greenpoint, Brooklyn.",Private room,750.0,3.0,1.0,No smoking & No children under 10 & No visitors,1,Augusta +3812,Beautiful Newly Renovated BK Apt with W&D in Unit,Entire home/apt,108.0,4.0,2.0,No visitors & No parties,2,Roanoke +3813,Private Room with Skyline View. Near LGA airport,Private room,402.0,1.0,4.0,No parties,2,Manhattan +3814,✺ SOHO Adorable Studio ✺ Downtown NYC!,Entire home/apt,900.0,2.0,2.0,No parties,5,Brainerd +3815,Lovely Room!,Private room,574.0,1.0,4.0,No visitors,1,Arcata +3816,Large 1 bed w/big kitchen & exposed brick,Entire home/apt,1005.0,10.0,2.0,No smoking & No visitors,9,Honolulu +3817,$47/day Private ROOM! BETTER THAN HOSTEL! In Bklyn,Private room,667.0,1.0,3.0,No parties & No children under 10,2,Allentown +3818,"Large Room in Brownstone, heart of historic Harlem",Private room,426.0,4.0,4.0,No parties,2,Providence +3819,Upper Westside 1 BR/1.5 Bath Apt,Entire home/apt,353.0,30.0,5.0,No children under 10,2,Fort Leonard Wood +3820,Private Open Space,Entire home/apt,856.0,3.0,4.0,No children under 10,8,Juneau +3821,Spacious alcove studio in Tribeca,Entire home/apt,993.0,3.0,5.0,,9,Ashland +3822,Sunny Cozy Room Located In Prime East Flatbush,Private room,432.0,2.0,3.0,No parties & No visitors,2,Newark +3823,2 Blocks from Subway | Artsy BK Space,Private room,403.0,21.0,2.0,No children under 10 & No pets,1,Greer +3824,2 bed Apartment close to Times Sq,Entire home/apt,146.0,2.0,2.0,No pets,2,Yuma +3825,For cat lovers - East Village 1 bdr,Entire home/apt,926.0,5.0,1.0,No pets,6,Helena +3826,Huge sunny bedroom in Crown Heights,Private room,504.0,1.0,3.0,No smoking,2,Eau Claire +3827,Luxury Sun-filled Private Room near Time Square,Private room,918.0,2.0,5.0,No children under 10,1,Yakima +3828,Large Room in private Brownstone in Park Slope,Private room,498.0,,,No visitors,2,Green Bay +3829,Studio in Upper East Side Manhattan,Entire home/apt,72.0,4.0,3.0,No pets,2,Erie +3830,Chelsea's best kept secret,Entire home/apt,802.0,3.0,4.0,No visitors & No smoking,2,Washington +3831,2BED 2 BATH/COLUMBUS CIRCLE/ BALCONY,Entire home/apt,748.0,30.0,3.0,,5,Bloomington +3832,Modern Brooklyn oasis (PRIVATE ROOM),Private room,403.0,1.0,5.0,No children under 10,1,New York +3833,Quite and cozy room in Manatthan,Private room,1006.0,2.0,5.0,No visitors & No parties,2,Cedar City +3834,Private Guestroom in Landmark Bklyn Brownstone,Entire home/apt,1005.0,1.0,2.0,No parties,5,Niagara Falls +3835,LUXURY HUGE 2BR DUPLEX NEAR TRAIN - PATIO OASIS!!,Entire home/apt,356.0,1.0,3.0,No pets,3,State College +3836,Spacious Room in Bushwick with a back yard.,Private room,174.0,1.0,3.0,No children under 10,2,Omaha +3837,Mamas red rm#2- profs-interns-students bklyn train,Private room,630.0,3.0,2.0,No children under 10 & No parties & No pets,1,Cedar City +3838,"Greenpoint, BK 1 Bedroom, Couple/Solo Traveler",Entire home/apt,574.0,3.0,5.0,No pets,2,Hibbing +3839,Private Cozy 2-Bedroom Clinton Hill Apartment,Entire home/apt,942.0,2.0,5.0,No parties & No visitors & No pets,3,Paducah +3840,Charming home away from home,Entire home/apt,474.0,1.0,2.0,No pets,2,Santa Barbara +3841,Small & comfy Bedroom near Brooklyn college.,Private room,293.0,1.0,5.0,No pets,1,Shreveport +3842,room in a soho loft,Private room,914.0,3.0,2.0,No parties & No smoking & No visitors,2,Burlington +3843,Pleasant & Low-priced place in Manhattan,Private room,347.0,1.0,2.0,No parties,1,Cleveland +3844,Sunny Room,Private room,55.0,1.0,1.0,No pets,1,Bangor +3845,Huge private bedroom one block from the train!,Private room,1146.0,1.0,5.0,No visitors & No children under 10,1,Santa Ana +3846,Spectacular Williamsburg 2 BR Loft,Entire home/apt,111.0,10.0,5.0,No children under 10 & No visitors,3,Melbourne +3847,Bright & Quiet Minutes from Washington Square Park,Entire home/apt,936.0,7.0,5.0,No children under 10,8,San Francisco +3848,"NYMT07-1 LUXURY! Studio,Cozy,Gym,doorman Stu-7",Entire home/apt,514.0,45.0,3.0,No visitors & No pets,3,Butte +3849,Charming Apartment Up in the Trees,Entire home/apt,1052.0,5.0,1.0,No pets & No children under 10,9,Dillingham +3850,PRIVATE 1 BED IN APT OFF PROSPECT PARK | Q & B,Private room,1158.0,2.0,5.0,No pets & No visitors,1,Norfolk +3851,Cozy room in spacious and sunny apartment,Private room,830.0,2.0,4.0,No pets & No parties & No visitors,1,Sarasota +3852,Luxury Apartment/ Wall Street,Entire home/apt,1115.0,1.0,5.0,No smoking,6,Wichita +3853,Charming Brooklyn apartment in historic brownstone,Entire home/apt,873.0,2.0,1.0,No visitors & No smoking & No parties,2,Nantucket +3854,"Master Bedroom in a Beautiful, Spacious Home",Private room,976.0,3.0,5.0,No smoking & No parties,2,Burlington +3855,Clean and Cozy East Village Studio,Entire home/apt,890.0,9.0,4.0,No pets & No visitors & No parties,5,Twin Falls +3856,Quaint & Charming 2BR + Futon,Private room,897.0,1.0,1.0,No children under 10,1,Denver +3857,2000sq $2 million 3 story townhouse,Entire home/apt,92.0,1.0,1.0,No pets,3,Tyler +3858,Duplex Penthouse between Union Sq and East Village,Entire home/apt,889.0,2.0,2.0,,2,Alexandria +3859,Gr8 views in heart of Williamsburg,Private room,451.0,2.0,5.0,No pets,2,Honolulu +3860,Doctors lounge for 1 (Room 002),Private room,957.0,4.0,4.0,,2,Hilton Head +3861,Privet outdoor space!!!,Entire home/apt,173.0,30.0,1.0,No smoking & No children under 10 & No parties,2,Syracuse +3862,Comfortable shared apartmant by Times Square,Shared room,924.0,1.0,2.0,No smoking & No children under 10,1,Miami +3863,Designer Exposed Brick East Village Walk Up,Entire home/apt,920.0,4.0,4.0,No smoking & No visitors,3,Gillette +3864,Quite relaxing convenient shared room in UES.,Shared room,670.0,1.0,3.0,No children under 10,1,Branson +3865,"Luxury 1BR in Times Square ""Urban Oasis""",Entire home/apt,383.0,4.0,5.0,No smoking & No visitors,2,Portland +3866,Luxury doorman building great view NYC,Private room,616.0,2.0,4.0,No smoking & No visitors & No parties,1,Wrangell +3867,Room in two bedroom apartment,Private room,159.0,1.0,2.0,No visitors,1,Grand Island +3868,2Br~Union square~Newly furnished,Entire home/apt,379.0,30.0,5.0,No children under 10,2,Albany +3869,SUNNY 2BD W. ELEVATOR / PERFECT 4 SMALL FAMILY,Entire home/apt,876.0,7.0,2.0,No pets,6,Greensboro +3870,Private Pod in the heart of Brooklyn,Private room,521.0,30.0,4.0,No smoking,1,Midland +3871,Nice & cozy room located in Manhattan apt!!,Private room,133.0,1.0,5.0,No children under 10 & No pets & No parties,2,Arcata +3872,UWS Luxury 2 bdrm 2 bath Penthouse,Entire home/apt,1187.0,30.0,2.0,No visitors,4,Pittsburgh +3873,Big furnished bedroom Williamsburg,Private room,745.0,2.0,2.0,No parties & No visitors & No smoking,1,Clarksburg +3874,Private Lrg bedroom in a convrtable 2 Bed Apt.,Private room,83.0,1.0,4.0,No visitors & No parties & No children under 10,1,Joplin +3875,,Entire home/apt,248.0,5.0,3.0,No smoking,2,Greer +3876,Luxury Midtown Manhattan Condo with 24hr Doorman,Entire home/apt,406.0,2.0,3.0,No pets & No parties & No visitors,2,Manchester +3877,Celebrity Home Artistic Master Bdrm,Private room,642.0,1.0,4.0,,1,Dickinson +3878,Studio Apt. near Empire State Bldg 4B,Entire home/apt,390.0,30.0,2.0,No smoking,3,St. Louis +3879,"A home away from home, You will be at home.",Private room,683.0,1.0,5.0,No pets & No smoking & No parties,2,Green Bay +3880,"Clean design, One BD, Renovated!",Entire home/apt,1033.0,4.0,4.0,No children under 10,6,Kalamazoo +3881,Williamsburg Cozy Apartement,Entire home/apt,1054.0,4.0,5.0,No parties & No pets,3,New Bern +3882,The Rosedale Palace Master room,Private room,956.0,1.0,4.0,No parties,2,Dubuque +3883,1 bedroom,Private room,958.0,1.0,2.0,No smoking & No pets,2,Midland +3884,The Guest House,Private room,211.0,2.0,3.0,,2,Laramie +3885,American Room @ Columbia Uni.,Private room,599.0,1.0,4.0,No smoking & No pets,2,Lexington +3886,Sonder | The Biltmore | Serene 1BR + City View,Entire home/apt,838.0,29.0,4.0,No parties & No visitors,8,Belleville +3887,2 Bedroom Apt in downtown Brooklyn,Entire home/apt,1180.0,4.0,2.0,No visitors & No children under 10 & No parties,5,Dallas +3888,Sonder | Wall Street | Dreamy 2BR + Laundry,Private room,155.0,2.0,4.0,No children under 10 & No pets,2,Kona +3889,Lovely Room in Williamsburg,Entire home/apt,707.0,28.0,3.0,No smoking & No parties,4,Boise +3890,The ocean view room size 12x14,Private room,709.0,5.0,2.0,No parties,1,Devils Lake +3891,Your Quiet Refuge in the Heart of Manhattan,Entire home/apt,1150.0,3.0,4.0,No parties & No smoking & No visitors,4,Kahului +3892,"Sunny & Spacious 1BR w/Porch, W/D, Huge Kitchen",Entire home/apt,1025.0,3.0,2.0,No children under 10 & No smoking & No visitors,7,Akron +3893,Apartment on Riverside,Entire home/apt,436.0,4.0,4.0,No pets & No parties & No smoking,2,Dothan +3894,Entire 1 Bedroom Apartment in Midtown Manhattan,Entire home/apt,107.0,4.0,3.0,No visitors,3,Minneapolis +3895,Cozy affordable room #3,Private room,606.0,1.0,3.0,No parties,2,Nome +3896,Bright Modern clean convenient Brooklyn Location,Entire home/apt,299.0,2.0,4.0,No pets,2,Greensboro +3897,Lovely double bedroom in the centre of it all,Private room,773.0,2.0,2.0,No visitors & No pets & No parties,1,Yakutat +3898,ENTIRE PLACE! near Columbia-sleeps up to 8 guests!,Entire home/apt,663.0,1.0,5.0,No visitors,6,Minneapolis +3899,Lovely room in Manhattan Lower East Side,Private room,738.0,1.0,4.0,No children under 10 & No smoking & No visitors,2,Monterey +3900,Happy big family,Private room,889.0,1.0,3.0,No pets & No visitors,2,New Orleans +3901,423 ocean parkway,Private room,557.0,1.0,2.0,No parties & No children under 10 & No smoking,1,El Paso +3902,Stylish and cozy East Village 2 bedroom apartment,Entire home/apt,1036.0,1.0,4.0,No parties,5,Pensacola +3903,HugeTropical Bedrm near Ferry,Private room,67.0,1.0,5.0,No parties & No visitors,1,St. Petersburg +3904,Studio Apartment with Gorgeous View!,Entire home/apt,861.0,1.0,5.0,No parties,6,Grand Island +3905,Hell's Kitchen Funky 80's Hideaway!,Private room,781.0,1.0,1.0,,1,Toledo +3906,"Prime Chelsea Location,Washer/Dryer",Entire home/apt,437.0,120.0,1.0,No children under 10,3,Provo +3907,"Cute, artsy place in Bed/Stuy",Entire home/apt,514.0,5.0,4.0,,5,Dothan +3908,Harlem Getaway Jazz Mansion,Entire home/apt,111.0,3.0,3.0,,3,Vernal +3909,Private room in great apt bwick,Private room,609.0,1.0,3.0,,1,Scottsbluff +3910,"Studio loft, Cosy and charming with rooftop view",Entire home/apt,1062.0,2.0,1.0,No pets,7,Hobbs +3911,Entire apartment in the heart of Williamsburg,Entire home/apt,1043.0,30.0,5.0,No visitors & No parties & No pets,6,New Bern +3912,Best Apartment in Manhattan Central Park,Entire home/apt,383.0,2.0,2.0,No visitors & No pets,3,Spokane +3913,Comfortable private room near Columbia University,Private room,1036.0,1.0,3.0,No parties,1,Fargo +3914,Quite & Cozy High Raise Atmosphere,Private room,635.0,1.0,5.0,No smoking,1,Dallas +3915,Cozy Walk-up Apt in the Historic Lower East Side.,Entire home/apt,578.0,2.0,1.0,No smoking,3,Lake Charles +3916,Huge Apt on Central Park South,Entire home/apt,1189.0,7.0,5.0,No pets & No children under 10 & No smoking,10,La Crosse +3917,Comfy 1 Bed 1 Bath - great location,Entire home/apt,662.0,2.0,2.0,No smoking & No visitors,6,Lexington +3918,Private Theatre District Bedroom,Private room,149.0,2.0,4.0,No pets & No smoking & No parties,1,White Plains +3919,Private Room+Beautiful Private Backyard Near City,Private room,1047.0,1.0,2.0,No children under 10,2,Kahului +3920,Large studio in hip area near major subway stop,Entire home/apt,812.0,3.0,2.0,No smoking & No children under 10 & No pets,8,Adak Island +3921,NYC Private room with everything included !!,Entire home/apt,177.0,3.0,2.0,No pets & No visitors,2,Twin Falls +3922,Centrally Located 1BDR With Furnished Patio,Entire home/apt,1007.0,3.0,5.0,No smoking & No pets & No children under 10,2,Moab +3923,Great Spacious Appartment,Entire home/apt,339.0,5.0,2.0,No smoking,2,Nantucket +3924,"Rare Find: SUNNY, LARGE DUPLEX Chelsea 2BR 2BA",Entire home/apt,188.0,6.0,5.0,No pets,2,Orlando +3925,Room in East Williamsburg,Private room,858.0,1.0,3.0,No visitors,2,Eugene +3926,Large Sunny 1BD in Chelsea!,Entire home/apt,641.0,4.0,1.0,No smoking,2,North Platte +3927,Large Room in Garden Apartment,Private room,954.0,3.0,2.0,No smoking & No pets & No children under 10,2,Ogdensburg +3928,Comfortable Space in Heart of Astoria,Shared room,1184.0,30.0,3.0,No parties,1,Flagstaff +3929,2 BEDROOM/3BED APT/TIME SQUARE/HELLS KITCHEN,Entire home/apt,577.0,3.0,5.0,No visitors & No children under 10,2,Joplin +3930,Gem off of Prospect Park,Private room,534.0,2.0,5.0,No parties,1,Jacksonville +3931,Newly renovated 1br in the heart of NY,Entire home/apt,817.0,4.0,5.0,No pets,2,Killeen +3932,Private bathroom bedroom near JFK 30min to NYC,Private room,1095.0,3.0,3.0,No smoking,2,Decatur +3933,Spacious Comfortable Williamsburg- 1 Bedroom Apt,Entire home/apt,511.0,2.0,2.0,No smoking,4,Harlingen +3934,Prospect gardens,Private room,862.0,1.0,3.0,No smoking & No visitors,1,Palm Springs +3935,Brooklyn Retreat,Private room,581.0,3.0,3.0,No pets & No children under 10 & No smoking,1,Norfolk +3936,[301] 5 min WALK to Times Square,Private room,789.0,1.0,4.0,No children under 10,2,Charlotte Amalie +3937,Massive Master Bedroom in Manhattan Apartment,Private room,411.0,1.0,4.0,No smoking,1,Washington +3938,Washington Heights Getaway Bedroom,Private room,1120.0,15.0,2.0,No children under 10 & No parties & No smoking,2,College Station +3939,Modern Luxury Studio in Manhattan,Entire home/apt,1125.0,7.0,3.0,No pets,11,Fayetteville +3940,"Prime UES, Centrally located, Quiet NYC Apartment",Entire home/apt,315.0,3.0,3.0,No smoking,2,Birmingham +3941,Private bedroom in Gorgeous Tonwhouse/Backyard,Private room,385.0,2.0,3.0,,1,Sitka +3942,Cozy Room near Casino and Metro,Private room,1092.0,1.0,4.0,No parties,2,Houston +3943,Little Haven in Brooklyn Redeux,Entire home/apt,1190.0,1.0,1.0,,7,Bellingham +3944,Room in sunny art-filled apartment,Private room,779.0,1.0,4.0,No smoking & No visitors,2,Hilo +3945,Clean & Large room hearth of NYC Midtown!!,Private room,741.0,9.0,5.0,,1,Manchester +3946,Fresh East Village 4K Pre-War Remix w Full Bar!,Entire home/apt,278.0,3.0,5.0,No smoking & No pets,3,Hayden +3947,Williamsburg Getaway,Private room,,2.0,1.0,No pets,1,Charlotte +3948,Comfortable PRIVATE ROOM in a great location,Private room,763.0,4.0,5.0,No pets & No parties,2,Charlottesville +3949,Upper Manhattan - Female only,Private room,846.0,6.0,4.0,,2,Santa Maria +3950,Super suite to stay in New York,Entire home/apt,1049.0,7.0,2.0,No children under 10 & No visitors,5,Abilene +3951,Gorgeous Park Slope Studio,Entire home/apt,641.0,14.0,4.0,No visitors & No smoking,4,Concord +3952,Skylit Bedroom In Brooklyn,Private room,833.0,2.0,2.0,,2,Amarillo +3953,Luminous studio in Union Square,Entire home/apt,1111.0,7.0,4.0,,4,Eau Claire +3954,MY ROOM/COFFEE &BAGEL,Private room,815.0,6.0,4.0,No children under 10 & No visitors,1,Louisville +3955,"West 50th street, Lux 1bd Serviced Apartment*",Entire home/apt,407.0,30.0,2.0,No visitors & No smoking,3,Fort Wayne +3956,*CoZy Private Williamsburg Home*,Entire home/apt,546.0,2.0,2.0,No visitors & No parties,2,Missoula +3957,Williamsburg 2BR. Close to L train,Entire home/apt,941.0,1.0,2.0,No visitors,5,Elko +3958,"Huge Private Bedroom, Patio, + 20min to Midtown",Private room,791.0,3.0,2.0,No visitors,2,Ogden +3959,Spacious 1 bedroom. Best water pressure in NYC!,Entire home/apt,176.0,2.0,4.0,,2,Harrisburg +3960,Small and Cozy Private Room in Downtown,Private room,951.0,5.0,2.0,,2,Joplin +3961,The N residence,Private room,706.0,1.0,5.0,No smoking,2,Des Moines +3962,GREAT sunny 1 bedroom,Entire home/apt,1122.0,5.0,3.0,No parties & No smoking,9,Longview +3963,Spacious Apt in Bushwick,Entire home/apt,1056.0,1.0,5.0,No pets & No smoking,4,Springfield +3964,SPACIOUS STUDIO-HIGH END FINISHES,Entire home/apt,1083.0,5.0,5.0,No parties & No pets,10,Hartford +3965,Private Bedroom in a Prewar Brownstone,Private room,1063.0,2.0,4.0,No parties & No smoking & No visitors,1,Elko +3966,Open light loft in the heart of Manhattan,Entire home/apt,292.0,5.0,5.0,No visitors,2,Kearney +3967,PRIVATE BEDROOM and BATHROOM crown heights Aprtmnt,Private room,1047.0,1.0,5.0,No smoking & No pets,2,Philadelphia +3968,Cozy 1BD side apartment w/parking,Entire home/apt,615.0,5.0,3.0,,6,Fort Lauderdale +3969,Magical rowhouse and garden in Williamsburg,Entire home/apt,189.0,4.0,1.0,No parties,3,New York +3970,Big and Bright Apartment with Balcony,Entire home/apt,1029.0,7.0,4.0,No children under 10,7,Augusta +3971,Brand New One Bedroom In Prime Bushwick,Entire home/apt,69.0,1.0,1.0,No children under 10 & No visitors,2,Valparaiso +3972,NYC Artists Loft in Chelsea,Entire home/apt,1029.0,2.0,3.0,No children under 10 & No pets & No parties,10,Lafayette +3973,"Gorgeous, bright one-bed in amazing location",Entire home/apt,720.0,5.0,4.0,No pets,2,Garden City +3974,1940's Historic Brooklyn Townhome,Entire home/apt,597.0,5.0,4.0,No pets,3,Ponce +3975,Private bedroom near EVERYTHING,Private room,108.0,5.0,4.0,,2,Newport News +3976,Modern duplex 30 minutes to Times Square,Entire home/apt,334.0,4.0,4.0,No smoking,2,Johnstown +3977,Spacious Williamsburg Beauty,Entire home/apt,687.0,4.0,3.0,No visitors & No smoking & No children under 10,2,Baltimore +3978,"Bright + Airy Theater District 1BR w/ Gym, Doorman by Blueground",Entire home/apt,673.0,30.0,4.0,No pets & No parties,2,Wichita +3979,Sunny Apt. near Columbus circle,Entire home/apt,745.0,3.0,5.0,No smoking & No parties,6,Omaha +3980,"Bright 3 Bedroom, Garden, 2 Full Bathrooms",Entire home/apt,575.0,6.0,3.0,No smoking & No visitors & No pets,5,Owensboro +3981,Modern 4story building w/private bathroom elavator,Private room,276.0,2.0,3.0,No parties & No visitors,2,Fayetteville +3982,Clean 1br w/Parking Incl. also 10min near JFK/LGA,Private room,483.0,458.0,2.0,No visitors,2,Colorado Springs +3983,PERFECT LONG TERM RENTAL~1 BR- EAST 60TH STREET!,Entire home/apt,1033.0,30.0,5.0,No parties,4,Missoula +3984,**Cozy Private Room(B),Private room,514.0,2.0,4.0,,2,Evansville +3985,Spacious 1 bedroom in Bensonhurst - Sleeps 4,Entire home/apt,401.0,3.0,4.0,No children under 10 & No visitors,3,Elmira +3986,"Entire Apartment in Astoria, 15mins from Manhattan",Entire home/apt,290.0,5.0,1.0,No smoking & No children under 10,2,Latrobe +3987,Mint Green in Cypress Hills,Private room,992.0,3.0,1.0,No children under 10,2,Everett +3988,Private room in Central Park North,Private room,1032.0,2.0,5.0,No parties,2,Gustavus +3989,Charming 1 Bedroom in Ideal Location,Entire home/apt,433.0,3.0,3.0,No pets & No visitors,3,Fayetteville +3990,Adorable One-Bed in Williamsburg!,Entire home/apt,388.0,1.0,2.0,,3,Rock Springs +3991,New(2019) Renovated bath & 30-40 min to Manhattan,Private room,1115.0,30.0,5.0,No smoking,1,Greensboro +3992,"Big, Bright, Tribeca Studio w/ Doorman & Elevator",Entire home/apt,87.0,2.0,5.0,No parties,3,Fort Leonard Wood +3993,Bright Room in Historic Brownstone,Private room,181.0,5.0,3.0,No children under 10 & No smoking & No parties,1,Santa Ana +3994,Private and cozy bedroom in the middle of NYC,Private room,1054.0,4.0,4.0,,1,Jackson +3995,Private room in super location in lower Manhattan,Private room,621.0,14.0,5.0,No pets & No smoking & No parties,1,Indianapolis +3996,DLKLC Residence,Private room,62.0,2.0,5.0,,2,Phoenix +3997,Rosie's Home away from HomeBrooklyn,Entire home/apt,1090.0,1.0,2.0,No children under 10 & No smoking,5,Valparaiso +3998,Bright & Clean 1bed apt *PRIME* LES,Entire home/apt,1167.0,1.0,5.0,No parties & No pets & No smoking,3,Fresno +3999,LargeBedroom gem in historic Red Hook Brooklyn!,Private room,787.0,4.0,3.0,No visitors,2,San Diego +4000,Martha's Guest Room,Private room,312.0,1.0,4.0,No smoking,1,Butte +4001,Pvt Single Room Occupancy Near JFK 6 mi/LGA 10 mi,Private room,1058.0,2.0,5.0,No visitors,2,Huntsville +4002,Private room in heart of LES,Private room,1003.0,2.0,2.0,No children under 10,1,Little Rock +4003,"East 12th street, Lux 1bd in Greenwich Village**",Entire home/apt,479.0,30.0,2.0,No children under 10 & No pets,2,Adak Island +4004,Upper east side duplex,Entire home/apt,819.0,3.0,2.0,No pets,7,Dallas +4005,Sunny room in beautiful Brooklyn apartment,Private room,1122.0,10.0,3.0,No children under 10 & No smoking,2,Twin Falls +4006,AWESOME SUNNY 2 BEDS C NEAR 3 METROS WILLIAMSBURG,Private room,214.0,2.0,2.0,,2,Fayetteville +4007,Walk through room close to everything,Private room,75.0,3.0,2.0,No smoking & No visitors,2,North Bend +4008,Gorgeous studio Near Time Square,Entire home/apt,100.0,30.0,2.0,,3,Beaumont +4009,Super clean & new 1 bedroom apartment,Entire home/apt,647.0,1.0,4.0,No visitors & No parties,2,Watertown +4010,"Gramercy Heaven, right off Park Ave",Entire home/apt,1043.0,2.0,2.0,No smoking,8,Moline +4011,Pretty private bedroom in shared apt near Columbia,Private room,538.0,5.0,2.0,No pets,1,Provo +4012,1 bedroom in 2 bed-apt in the best of Brooklyn,Private room,650.0,3.0,1.0,No children under 10,2,Savannah +4013,Comfy apt next to Central Park!,Entire home/apt,1194.0,1.0,5.0,No parties,10,Kearney +4014,Semi Private Bedroom,Shared room,840.0,1.0,3.0,No smoking & No visitors,1,Wilmington +4015,"420 friendly rm,lots of sunlight great for couples",Private room,510.0,12.0,4.0,,2,Madison +4016,Cozy and Warm Apartment in Greenwich Village!!,Entire home/apt,466.0,1.0,4.0,No visitors & No parties,2,Mason City +4017,"Spacious & Sunny 2BD / 2BTH in Chelsea, Manhattan",Entire home/apt,277.0,3.0,3.0,No pets & No children under 10,2,Rock Springs +4018,Beautiful Modern Brooklyn Gem,Entire home/apt,482.0,1.0,3.0,No smoking & No parties,2,Bellingham +4019,31 Dec - 1 Jan lovely Prospect room,Private room,221.0,1.0,3.0,No visitors,1,Columbus +4020,Cozy bright apt with a touch of rustic charm -,Entire home/apt,529.0,2.0,3.0,No smoking & No pets,4,Boise +4021,Private Bedroom in the heart of Bushwick Him-1R-4,Private room,,30.0,3.0,No smoking,1,Raleigh +4022,Cozy private bedroom with window,Private room,700.0,4.0,3.0,No pets,1,Providence +4023,"Spacious Apt on the Park, 1 blk from L Train",Entire home/apt,434.0,5.0,4.0,No visitors & No smoking,4,Little Rock +4024,Cool Room in NYC,Private room,126.0,17.0,1.0,No parties,1,San Jose +4025,"Entire Unit 2BR+bathroom, 20min to Manhattan",Entire home/apt,733.0,1.0,3.0,No parties & No children under 10,7,Belleville +4026,Bohemian 2BR DuplexLoft in Brooklyn,Entire home/apt,205.0,30.0,3.0,No visitors,2,Sarasota +4027,"Sunny, clean & friendly Williamsburg room",Private room,113.0,1.0,1.0,,1,Oklahoma City +4028,"20min To Times Square, 10min LGA",Private room,315.0,1.0,2.0,No parties & No visitors,2,Minneapolis +4029,Heart of the city,Entire home/apt,294.0,4.0,2.0,No parties & No smoking & No children under 10,2,International Falls +4030,PRIVATE BEDROOM IN COMFY & CHIC UWS APT!,Private room,317.0,5.0,5.0,,1,St. Cloud +4031,Mellow Stuyvesant Bedroom Madison 2L-2,Private room,505.0,30.0,4.0,No pets & No visitors,2,Lynchburg +4032,Bronx Apartment,Entire home/apt,207.0,15.0,5.0,,3,Los Angeles +4033,Private Apartment In the Heart of Chelsea,Entire home/apt,253.0,5.0,5.0,,3,Boston +4034,A Comfortable Room,Private room,266.0,1.0,4.0,No parties & No visitors & No pets,1,Kansas City +4035,Great cozy room,Private room,863.0,3.0,4.0,,1,Long Beach +4036,Peaceful South Slope Living Quarters,Entire home/apt,948.0,3.0,5.0,No parties & No visitors & No pets,5,Eugene +4037,Tranquil Garden Level Apartment,Private room,900.0,1.0,5.0,,2,Brownsville +4038,Sunny Beach House type room on UWS,Private room,581.0,3.0,1.0,,1,Laramie +4039,Luxe Loft Apartment-10 minutes from Manhattan!,Private room,514.0,4.0,2.0,No parties & No pets,1,Corpus Christi +4040,**Cozy Space - Private Access**,Private room,954.0,2.0,4.0,No pets,2,Augusta +4041,Chic private room,Private room,454.0,4.0,4.0,No smoking & No pets & No children under 10,2,Charlotte Amalie +4042,"Harlem intimate room,20 min to Time Square,by Park",Private room,357.0,3.0,3.0,No children under 10,1,Des Moines +4043,Manhattan Club,Private room,432.0,1.0,5.0,No pets & No visitors & No parties,2,Wichita Falls +4044,Quiet East Village Apartment for 3,Entire home/apt,889.0,7.0,2.0,No parties,8,Cincinnati +4045,"Heart of NYC! - Large, Spacious, Bright 1 Bedroom!",Entire home/apt,583.0,30.0,4.0,No smoking & No pets,4,Pellston +4046,Cozy and sunny Studio,Entire home/apt,154.0,5.0,2.0,No pets & No children under 10 & No parties,2,Charlottesville +4047,Bedroom in the East Village ❤️,Private room,743.0,1.0,5.0,No visitors,2,Appleton +4048,Historical home N.shore Staten Isl. nr FREE ferry.,Entire home/apt,553.0,30.0,2.0,No parties,5,Harrisburg +4049,Crown Heights 1 Bedroom,Entire home/apt,450.0,7.0,2.0,No smoking,2,Plattsburgh +4050,Downtown warmth and charm,Entire home/apt,191.0,2.0,5.0,No visitors,3,Manhattan +4051,"Brand new true 1BD, close to everything!",Entire home/apt,1086.0,7.0,3.0,No smoking,7,Rhinelander +4052,Cozy Hell's Kitchen Apt,Entire home/apt,891.0,1.0,1.0,No parties,3,Lynchburg +4053,Midtown East Apartment,Entire home/apt,386.0,2.0,3.0,No smoking,3,Hattiesburg +4054,"Bright, spacious bedroom in comfy Brooklyn home",Private room,437.0,4.0,3.0,No visitors & No pets,2,Pierre +4055,Sunny Apartment Close to NYC's Major Attractions,Entire home/apt,847.0,2.0,3.0,No children under 10 & No visitors & No parties,7,Escanaba +4056,Renovated 1-bedroom apartment in Gramercy,Entire home/apt,833.0,1.0,2.0,No parties & No visitors & No pets,6,Evansville +4057,Cozy Escape in the thriving heart of Bed-Stuy,Entire home/apt,230.0,2.0,5.0,No pets & No visitors,3,St. Louis +4058,"Bright, spacious room in Williamsburg",Private room,415.0,2.0,2.0,No smoking,2,Tucson +4059,"Large, Sunny Private Room in New Renovated House",Private room,696.0,1.0,2.0,,1,Elmira +4060,1 Bedroom Condo/Kitchen Wyndham Midtown 45 Resort*,Private room,488.0,3.0,2.0,No parties,1,Syracuse +4061,Prime Upper East Side Studio,Entire home/apt,744.0,4.0,5.0,No children under 10 & No smoking,2,Santa Fe +4062,"2 Bed Apt Brighton Beach, Brooklyn by Beach",Entire home/apt,1001.0,1.0,3.0,No smoking,6,Punta Gorda +4063,Harlem Hideaway Guest Room,Private room,575.0,3.0,2.0,No pets & No parties & No children under 10,1,Clarksburg +4064,Small Artsy Room in HEART OF BROOKLYN,Private room,886.0,3.0,4.0,No visitors,2,Hancock +4065,Midtown East XL 1 BR,Entire home/apt,116.0,30.0,3.0,No pets & No visitors & No children under 10,2,Saipan +4066,Artist's Creative Loft Photo Studio-2 Bed + Office,Entire home/apt,510.0,2.0,2.0,,4,Johnstown +4067,"Beautiful, bright and friendly",Private room,985.0,1.0,5.0,No pets,2,Memphis +4068,"Private house in Queens, 10 minutes from JFK.",Entire home/apt,512.0,1.0,2.0,No visitors,4,Gillette +4069,Huge Room for Nightly Stays Downtown or Monthly,Private room,1021.0,5.0,3.0,No smoking,2,Dayton +4070,Private bedroom with bathroom in clean quiet space,Private room,535.0,2.0,2.0,No visitors & No smoking,2,Prescott +4071,"Brand New, Beautiful LES Apartment",Private room,925.0,30.0,4.0,No smoking & No visitors & No parties,2,North Platte +4072,Calm airy top floor W'burgh 1.5 bed,Entire home/apt,985.0,3.0,4.0,,7,Peoria +4073,Beautiful apartment /1 min walk from Time Square,Entire home/apt,955.0,2.0,3.0,No children under 10,6,Fargo +4074,"Sunny, Spacious, Private Room Close to Train!",Private room,254.0,7.0,3.0,No pets & No visitors,1,Belleville +4075,A Brooklyn Launch Pad,Private room,531.0,1.0,3.0,No pets,1,Lewiston +4076,Beige Room in Rego Park,Private room,601.0,1.0,5.0,,1,Harlingen +4077,Comfortable and convenient space for you!,Private room,835.0,2.0,3.0,No pets,2,Sanford +4078,Charming 1 bedroom in West Village,Entire home/apt,931.0,3.0,5.0,,8,Kalamazoo +4079,Sun Drenched Artist Loft in Williamsburg!,Entire home/apt,607.0,4.0,5.0,No children under 10 & No visitors & No parties,2,Seattle +4080,"Spacious, Private bedroom in Bushwick apartment",Private room,285.0,9.0,5.0,,1,Dayton +4081,Silvertowers - Sky Collection Studio Loft 59th Fl,Entire home/apt,513.0,1.0,4.0,,4,Providence +4082,One Bedroom in Central NYC location,Private room,800.0,2.0,5.0,No parties & No visitors,1,Belleville +4083,Columbia University Spacious Clean 1 BR Apartment,Entire home/apt,1129.0,3.0,4.0,No smoking,7,La Crosse +4084,Beautiful 3 bedroom apartment in East Williamsburg,Entire home/apt,1169.0,2.0,4.0,No visitors,7,Austin +4085,Cozy and Sunny Room Queen Size Bed in Bedstuy,Private room,736.0,2.0,3.0,No visitors,2,Eau Claire +4086,Amazing Private Room in the Heart of Manhattan,Private room,886.0,3.0,2.0,,2,Bethel +4087,"Spacious, Sunny 1 Bedroom Apartment",Entire home/apt,473.0,5.0,4.0,No visitors & No smoking,2,Del Rio +4088,1 BED and FUTON -SUNNY ROOM - PRIME WILLIAMSBURG,Private room,972.0,2.0,5.0,No parties & No smoking,1,Asheville +4089,Beautiful Convenient Bushwick Oasis w/Trampoline,Private room,526.0,1.0,5.0,No children under 10,1,Columbus +4090,Central Park South Luxury 2 Bedroom 2 Bathroom,Entire home/apt,371.0,29.0,5.0,No parties,2,Niagara Falls +4091,Riverside Drive Apartment,Entire home/apt,878.0,31.0,5.0,No visitors & No parties & No smoking,5,Orlando +4092,Sunny Room by Prospect Park,Private room,638.0,1.0,4.0,No smoking,1,Walla Walla +4093,Modern furnished 2-Bedroom NYC Apartment!,Entire home/apt,647.0,30.0,1.0,No parties,3,Miami +4094,Master Garden Suite @ Northern Lights Mansion,Private room,1165.0,2.0,3.0,No visitors & No smoking,2,Lafayette +4095,Brooklyn Apt with AMAZING NYC view,Entire home/apt,890.0,5.0,1.0,No pets,3,Christiansted +4096,889 Bushwick Ave,Private room,248.0,5.0,3.0,No parties,2,Nantucket +4097,Sunny Manhattan 1 bedroom in Landmark Brownstone,Entire home/apt,650.0,180.0,4.0,No pets & No children under 10,3,Fargo +4098,MIDTOWN EAST PRIVATE ROOM,Private room,586.0,1.0,5.0,No pets,1,Anchorage +4099,Cg hosting,Private room,1176.0,3.0,5.0,No pets & No smoking & No visitors,2,Cedar Rapids +4100,View Waterfront Studio - Manhattan,Entire home/apt,234.0,21.0,5.0,No smoking & No pets,3,Branson +4101,2 Rooms+Private Bath in Large Colonial House,Private room,898.0,1.0,2.0,No pets & No children under 10,1,College Station +4102,Charming and Artistic West Village Studio,Entire home/apt,1133.0,2.0,4.0,No visitors,2,Longview +4103,Newest private room / 15 mins to Manhattan,Private room,325.0,30.0,4.0,No pets,2,Victoria +4104,Comfy Queen Size Bed Near Prospect Park!,Private room,571.0,2.0,1.0,No pets,2,Belleville +4105,"Cozy , Cute and Spacious one bedroom Brooklyn Apt",Entire home/apt,830.0,1.0,2.0,No visitors & No smoking,4,Traverse City +4106,Modern Private Room in Historic Strivers Row,Private room,455.0,2.0,3.0,No children under 10,2,Cape Girardeau +4107,Sunnyside,Entire home/apt,355.0,2.0,5.0,No visitors,3,Lawton +4108,"Peaceful, beautiful home away ",Entire home/apt,414.0,2.0,1.0,No smoking & No visitors & No parties,4,Denver +4109,Surfer room 15mins to downtown NYC!,Private room,225.0,6.0,5.0,No smoking & No parties,1,Lincoln +4110,Spacious 2 bedroom penthouse in Williamsburg,Entire home/apt,468.0,30.0,3.0,No visitors,4,Charleston +4111,Central Park west. Big Cozy Room,Private room,709.0,1.0,4.0,No pets,2,Dallas +4112,Space for Small Events /Gatherings/Dinner Parties,Entire home/apt,641.0,1.0,1.0,No smoking & No visitors & No children under 10,4,Yakutat +4113,"Welcome to the best area of Williamsburg, NY",Entire home/apt,932.0,4.0,3.0,No parties,5,Ketchikan +4114,"Bright Williamsburg 1 BD, Bedford L",Entire home/apt,763.0,4.0,2.0,No children under 10 & No parties,2,Lihue +4115,Ideal Cute Sunny Room,Private room,603.0,20.0,2.0,No smoking,2,Mission +4116,Beautiful place in Brooklyn! #2,Private room,121.0,999.0,3.0,No pets,1,Dubuque +4117,Stunning Rare Garden Family Home w/Loft! #10303,Entire home/apt,970.0,3.0,3.0,No visitors & No smoking & No pets,5,Sarasota +4118,Spacious Private Room in two bedroom apartment,Private room,1139.0,2.0,2.0,No pets,2,Owensboro +4119,Adorable Lower East Side room with Patio,Private room,745.0,1.0,2.0,No smoking,2,Sitka +4120,Artsy Studio near The Brooklyn Museum,Entire home/apt,1011.0,3.0,5.0,No children under 10 & No parties,2,Joplin +4121,Sun Filled 18ft Ceiling Duplex Noho/East Village,Entire home/apt,558.0,2.0,4.0,No children under 10 & No parties & No smoking,5,Rochester +4122,Cozy Studio 15 minutes to Manhattan,Private room,822.0,1.0,3.0,No pets,2,San Juan +4123,★ Easy Access to the Best of Brooklyn - Tree Top ★,Entire home/apt,922.0,2.0,5.0,,3,Walla Walla +4124,#2 Apartment,Entire home/apt,77.0,5.0,3.0,No children under 10,2,Salina +4125,"Cozy room, easy trip to Manhattan & North Brooklyn",Private room,651.0,1.0,3.0,No smoking & No children under 10 & No pets,1,San Francisco +4126,Newly renovated 1bd on lively & historic St Marks,Entire home/apt,674.0,3.0,3.0,No smoking,5,West Palm Beach +4127,Charming 1BR at Columbus Circle,Private room,948.0,2.0,3.0,No visitors & No children under 10 & No parties,1,Sarasota +4128,Clinton Hill Dream House,Entire home/apt,1162.0,2.0,2.0,No smoking & No pets,8,Hilo +4129,Manhattan Private Room with a Garden view (Room 2),Private room,1053.0,3.0,3.0,No pets,2,Alamosa +4130,great private room,Private room,527.0,1.0,5.0,No pets,2,Deadhorse +4131,Well connected private room,Private room,708.0,10.0,3.0,No parties,1,Boise +4132,"Private room. 1 bed, 2 guests, 3333 Broadway",Private room,705.0,1.0,3.0,No pets,2,Orlando +4133,"Sunny room in Sunset Park, Brooklyn",Private room,433.0,7.0,3.0,No pets & No parties,1,Hartford +4134,Dumbo | Spacious private room w/ private bathroom,Private room,376.0,3.0,4.0,No children under 10 & No pets & No visitors,1,Dubuque +4135,Family and Friends Peaceful Home,Private room,479.0,3.0,2.0,No children under 10,1,Williston +4136,"Accessible Queen room, your sanctuary in SoHo",Private room,178.0,1.0,4.0,No visitors,1,Everett +4137,Private Spacious Room ~ Near Trains,Private room,405.0,3.0,5.0,No children under 10,1,Lafayette +4138,Gorgeous Tribeca 2BR w/ Amazing city views + Gym by Blueground,Entire home/apt,192.0,30.0,4.0,No parties,3,Midland +4139,Brooklyn private big bedroom,Private room,883.0,20.0,3.0,No visitors & No smoking,1,Yakutat +4140,East Village Hideaway,Entire home/apt,920.0,1.0,2.0,No smoking,9,Staunton +4141,3-BR duplex in Bed-Stuy Brownstone,Entire home/apt,392.0,3.0,5.0,No pets,3,Salt Lake City +4142,Spacious 2br Fort Greene apartment with yard!,Entire home/apt,844.0,7.0,5.0,No pets,6,Fort Smith +4143,Small Private Room for Rent,Private room,81.0,28.0,5.0,No pets & No visitors,2,Rock Springs +4144,Stunning Elevator 1 BR Chelsea,Entire home/apt,1120.0,30.0,5.0,No smoking & No children under 10,6,Greer +4145,A3Small Cozy Room in Long Island City,Private room,1174.0,1.0,4.0,No parties & No children under 10,1,Christiansted +4146,1 BR Apartment Upper West Side,Entire home/apt,543.0,3.0,3.0,,5,Santa Barbara +4147,Studio in heart of LES (Manhattan),Entire home/apt,438.0,3.0,1.0,No pets & No parties,2,Tampa +4148,Bright and Beautiful UWS Treasure!!,Entire home/apt,465.0,14.0,5.0,No children under 10,4,International Falls +4149,Brooklyn (G)reenery,Private room,1000.0,2.0,2.0,No pets & No visitors,1,Hyannis +4150,"Cool, cozy urban pad",Entire home/apt,390.0,2.0,2.0,No visitors,2,Atlantic City +4151,West Village Duplex with Backyard!,Entire home/apt,1146.0,3.0,2.0,No children under 10 & No parties,9,St. Cloud +4152,Beautiful place,Entire home/apt,1181.0,1.0,2.0,No parties & No children under 10,4,Hays +4153,"25 minutes from Manhattan, shared room bunk beds",Shared room,1159.0,3.0,2.0,No children under 10 & No smoking,1,Toledo +4154,Spacious Bright Top Floor Apt w/ Balcony in LIC 1,Private room,246.0,2.0,4.0,No children under 10 & No parties,2,Hilton Head +4155,Lovely Brooklyn Duplex near Prospect Park 3BR,Entire home/apt,866.0,2.0,1.0,No pets,8,Reno +4156,Lower East Side Getaway,Private room,910.0,4.0,3.0,No pets,1,Sheridan +4157,Bright and Spacious Parkside Apartment,Entire home/apt,1134.0,3.0,2.0,No children under 10,11,Joplin +4158,Large Brooklyn Rm- Prospect Park & F/G Train!,Shared room,718.0,2.0,4.0,No visitors & No pets & No smoking,1,Baltimore +4159,87st304,Private room,551.0,30.0,2.0,No parties & No visitors,1,Hilo +4160,The Sweet Suite,Entire home/apt,347.0,1.0,5.0,No parties & No children under 10,2,Portland +4161,Cozy and Unique Warehouse Apartment,Entire home/apt,285.0,3.0,2.0,No parties,3,Ogdensburg +4162,Great Room in Lively East Village,Private room,552.0,5.0,3.0,,1,Waterloo +4163,Cozy Brooklyn Stay,Private room,1152.0,2.0,3.0,No children under 10 & No pets & No smoking,2,Columbus +4164,Private 2 BR Apt in heart of South Slope,Entire home/apt,182.0,2.0,5.0,No children under 10 & No parties,3,Lawton +4165,Beautiful Crown Heights Pre-War 1 Bedroom,Entire home/apt,462.0,2.0,3.0,,2,Newburgh +4166,"Spacious, Sunny 1 Bedroom",Entire home/apt,979.0,3.0,2.0,No pets & No parties,5,Hilo +4167,Private Stuyvesant Bedroom Madison 1R-2,Private room,395.0,30.0,3.0,No parties & No children under 10,2,Rockford +4168,Bright room with full size bed.,Private room,710.0,1.0,2.0,No parties & No pets & No children under 10,1,Pago Pago +4169,Sunny spacious room full of good energy,Private room,155.0,1.0,2.0,No visitors,1,Charlottesville +4170,Large sunny room queen bed &balcony,Private room,412.0,1.0,2.0,No pets,2,Jacksonville +4171,Entire House For Rent In Brooklyn NY.,Entire home/apt,151.0,1.0,2.0,No smoking,2,Vernal +4172,Comfortable and close to everything!,Entire home/apt,1105.0,3.0,3.0,No visitors,4,Elmira +4173,"Spacious&Pretty, heart of Brooklyn",Entire home/apt,345.0,10.0,1.0,No visitors,2,Escanaba +4174,Industrial style Artist loft,Entire home/apt,426.0,3.0,2.0,,2,Hobbs +4175,"Beautiful, Bright Private-Room in West Harlem!",Private room,350.0,2.0,3.0,No visitors & No children under 10,1,New Bern +4176,Beautiful Light Filled Apartment in New York City!,Entire home/apt,299.0,1.0,1.0,No visitors & No parties & No children under 10,2,Buffalo +4177,Gorgeous Bedroom with breakfast by Central Park,Private room,424.0,3.0,5.0,No parties & No pets,2,Provo +4178,One stop to midtown Manhattan one stop to Brooklyn,Private room,1073.0,1.0,2.0,,1,Branson +4179,NYC Hideaway Urban Suite,Entire home/apt,647.0,2.0,3.0,No pets,2,Fresno +4180,perfect Location! studio!best value!Sleeps3,Entire home/apt,977.0,30.0,1.0,No children under 10 & No parties,5,Stillwater +4181,West Side Retreat,Private room,856.0,4.0,3.0,No visitors,1,Baton Rouge +4182,Hip Harlem Apartment,Entire home/apt,376.0,4.0,4.0,No pets,2,Yuma +4183,"1BR in Newly Renovated Apartment - Rm C, Bushwick!",Private room,288.0,1.0,4.0,No smoking,1,Houston +4184,Spacious & Charming Apartment in Bedstuy,Entire home/apt,649.0,2.0,1.0,No children under 10,2,Panama City +4185,Ruby Bedroom,Private room,585.0,2.0,2.0,No parties,2,Fayetteville +4186,Beautiful Greenpoint Apartment,Entire home/apt,651.0,14.0,1.0,No smoking,5,Owensboro +4187,Spacious private room in luxury building,Private room,375.0,7.0,3.0,No parties,1,Baton Rouge +4188,ENTIRE APARTMENT: BRIGHT & CHARMING- best location,Entire home/apt,938.0,2.0,5.0,No visitors & No pets,6,Prescott +4189,Large Private Furnished Patio + Cozy Indoors,Entire home/apt,604.0,2.0,2.0,No smoking & No pets,6,Presque Isle +4190,The Best little room in Brooklyn,Private room,327.0,15.0,4.0,No smoking & No parties,1,Palm Springs +4191,Private bedroom with queen bed and single bed.,Private room,935.0,1.0,1.0,,2,Sarasota +4192,Wyckoff Street Garden Apartment,Entire home/apt,313.0,5.0,3.0,No children under 10,3,Santa Rosa +4193,Family-friendly 2 bed apt.near Manhattan,Entire home/apt,880.0,4.0,5.0,,5,Spokane +4194,Sonder | Stock Exchange | Serene 2BR + Kitchen,Entire home/apt,856.0,2.0,2.0,,6,Birmingham +4195,"Great Room In Brooklyn, The Park, 30 min to MH.",Private room,309.0,5.0,3.0,No pets & No parties & No smoking,2,Santa Maria +4196,HOUSE WITH 2 ENTRANCES 15min TO MANHATTAN,Entire home/apt,961.0,3.0,4.0,No children under 10,8,Yakutat +4197,ROOMY 2BA/3BD - Parking Included,Entire home/apt,885.0,3.0,2.0,No parties & No visitors,8,Yakutat +4198,Luxurious LES/Nolita Loft,Entire home/apt,1195.0,3.0,4.0,,10,Aberdeen +4199,Cosy bedroom complete with fort,Private room,484.0,3.0,2.0,No parties,1,Stockton +4200,Call it Home.,Private room,460.0,15.0,5.0,,1,Billings +4201,Beautiful Alcove Studio in West Midtown,Entire home/apt,660.0,3.0,4.0,No smoking & No visitors & No children under 10,3,Everett +4202,PRIVATE STUDIO WITH LOTS OF LIGHT,Entire home/apt,713.0,1.0,4.0,No visitors,7,Lawton +4203,Dbl Room with Terrace and View!,Private room,1047.0,1.0,2.0,,2,Butte +4204,"Spacious living room, walk-in closet",Shared room,1125.0,3.0,3.0,No smoking & No children under 10,1,Watertown +4205,Huge 1 bedroom w/ a backyard near the heart of nyc,Entire home/apt,573.0,3.0,4.0,No pets & No parties,4,Riverton +4206,THE WHITE HOUSE BEDROOM 1,Private room,654.0,3.0,5.0,No parties & No pets,2,Atlanta +4207,Space For guest,Shared room,1022.0,1.0,1.0,No pets & No visitors & No parties,1,Salisbury +4208,Charming Studio,Entire home/apt,591.0,4.0,3.0,No children under 10 & No parties,4,Lewisburg +4209,Beautiful modern apartment located in Gramercy,Entire home/apt,187.0,7.0,1.0,No smoking,2,Cordova +4210,1 Room in 2 Bed Apt in the heart of Nolita/Soho,Private room,397.0,4.0,2.0,No parties & No visitors,2,Pullman +4211,~ Brooklyn Haven of Magic ~,Private room,550.0,2.0,2.0,No visitors,2,Fort Leonard Wood +4212,Spacious studio apartment on ideal LES block,Entire home/apt,79.0,2.0,3.0,No smoking,3,Nantucket +4213,Sunny big bedroom in lively Brooklyn neighborhood,Private room,440.0,14.0,3.0,No pets & No smoking,2,Rockford +4214,Location!! Welcome to my Lovely Home.,Private room,678.0,1.0,3.0,,1,Ontario +4215,Beautiful with private terrace,Entire home/apt,889.0,3.0,2.0,No visitors & No children under 10,7,Yuma +4216,Spacious 2 bedroom Garden apartment,Entire home/apt,621.0,2.0,5.0,No smoking,5,Bloomington +4217,Great Room in Williamsburg (uriel),Private room,1059.0,2.0,4.0,No visitors,2,Fort Leonard Wood +4218,Rosalee Stewart,Entire home/apt,1128.0,4.0,4.0,,5,Lewiston +4219,Brooklyn Bedroom Near Subway with Washer/Dryer,Private room,586.0,3.0,2.0,No visitors,1,Joplin +4220,Private bedroom w/pvt entrance near Times sq. 42D,Private room,214.0,7.0,2.0,No pets,1,Nantucket +4221,"Room w/private bathroom, Breakfast & 7min to Manh",Private room,81.0,5.0,2.0,No parties & No visitors,2,Williston +4222,#1 Rated 3br Park Slope Apt (1700sqf+Renovated!),Entire home/apt,169.0,3.0,5.0,No visitors & No smoking & No pets,3,Staunton +4223,Beautiful 1 bed Apt in Midtown!,Entire home/apt,1158.0,1.0,4.0,No children under 10 & No visitors,7,Ontario +4224,Private master bed and bath in Astoria,Private room,1117.0,7.0,2.0,No children under 10 & No pets & No smoking,1,Spokane +4225,Manhattan | Luxurious 1 Bedroom,Entire home/apt,573.0,30.0,2.0,No children under 10,2,Fort Wayne +4226,Modern luxury apartment 15 mins to central park!,Entire home/apt,719.0,2.0,4.0,No pets & No parties,2,Hilton Head +4227,"clean, quiet, 1 bdrm, great locale",Entire home/apt,691.0,6.0,1.0,,5,Traverse City +4228,Comfy room (only) in my apt - UWS,Private room,546.0,2.0,4.0,No visitors,2,Memphis +4229,"Sunny, Cozy, and a View!",Entire home/apt,1137.0,2.0,4.0,No smoking,9,Syracuse +4230,luxury apartment near wall street,Entire home/apt,1155.0,15.0,3.0,No pets,9,Decatur +4231,Stunning Apartment in Heart of Williamsburg,Entire home/apt,835.0,3.0,5.0,No parties,8,Mason City +4232,Huge sunny 2bed apt in Harlem. Skyline views!,Entire home/apt,732.0,2.0,4.0,No children under 10,7,Atlantic City +4233,Luxury loft 2bed 2bath Mulberry st,Private room,526.0,31.0,4.0,No children under 10 & No parties,1,St. Petersburg +4234,Private room in Sunnyside Gardens,Private room,408.0,2.0,1.0,No smoking,2,Cleveland +4235,Spacious One Bedroom in the Heart of Brooklyn,Entire home/apt,155.0,2.0,2.0,No visitors,2,Presque Isle +4236,Sunshine Studio near Columbia U,Entire home/apt,1023.0,1.0,2.0,No pets,4,Riverton +4237,NICE 2 BED APT NEAR TIME SQUARE,Entire home/apt,1070.0,30.0,4.0,No pets & No smoking & No children under 10,7,New Orleans +4238,5min to metro - Cozy and Bright - Shared Kitchen,Private room,1125.0,30.0,5.0,,2,Kahului +4239,"Authentic, Traditional NYC - Walk to Times Square",Entire home/apt,1025.0,2.0,3.0,No visitors,5,Walla Walla +4240,Large room in two-story brownstone,Private room,927.0,2.0,3.0,,2,Wilmington +4241,Comfortable 1-bedroom in South Slope,Private room,196.0,1.0,1.0,No smoking & No children under 10,2,Minot +4242,Large Basement Bedroom With Kitchen,Private room,433.0,4.0,,No parties,2,Grand Island +4243,Williamsburg bliss,Entire home/apt,1086.0,3.0,4.0,No visitors,3,Miami +4244,Private room - Midtown West elevator building,Private room,506.0,2.0,2.0,No pets & No children under 10,2,Monterey +4245,Room in The Heights!,Private room,1167.0,4.0,3.0,No smoking & No parties & No pets,2,Cincinnati +4246,An Amazing Creative Loft,Private room,703.0,2.0,3.0,No smoking,1,Indianapolis +4247,Huge Private Room Near Prospect Park,Private room,73.0,7.0,2.0,No parties & No pets,2,Dallas +4248,Cozy bedroom in Long Island city.,Private room,538.0,4.0,4.0,,1,White Plains +4249,TIGER’S REST,Entire home/apt,375.0,2.0,5.0,No pets,3,Decatur +4250,Comfortable 420 Friendly Room,Private room,486.0,1.0,4.0,No parties,2,Gillette +4251,"Beautiful, Sunny, Artsy apartment in Brooklyn",Entire home/apt,660.0,21.0,3.0,No children under 10,4,Newark +4252,"Cozy, two bedrooms in a shared apartment.",Private room,279.0,1.0,1.0,,1,Bloomington +4253,Large Modern Cozy Apartment Close to Train,Entire home/apt,1012.0,3.0,2.0,No visitors,6,Dickinson +4254,Cozy Midtown 1BR w/ Doorman near Penn Station by Blueground,Entire home/apt,829.0,30.0,5.0,No pets,2,Birmingham +4255,Private BR + Bathroom in brand new BK brownstone!,Private room,665.0,7.0,3.0,No smoking & No children under 10 & No pets,2,Elmira +4256,Beautiful Williamsburg 1.5 BR-9 min to NYC!,Entire home/apt,1108.0,2.0,1.0,No pets & No smoking,6,Charlotte +4257,Private room 5 mins to Manhattan 2 blocks to train,Private room,731.0,4.0,3.0,No children under 10 & No visitors,1,Waco +4258,"Beautiful well lit studio located in Brooklyn, NY",Entire home/apt,1079.0,1.0,5.0,No pets,4,Dayton +4259,Hillside Hotel,Private room,1096.0,1.0,5.0,No smoking,2,International Falls +4260,Luxury Modern Brownstone Full Apt,Entire home/apt,114.0,3.0,1.0,No children under 10 & No visitors,3,Lynchburg +4261,"Spacious Room in a Historic, Beautiful Apartment",Private room,284.0,3.0,3.0,No children under 10,1,Gillette +4262,Awesome Manhattan Midtown Apartment,Entire home/apt,683.0,2.0,2.0,No children under 10,6,Bangor +4263,Bright UWS Studio with great location,Entire home/apt,271.0,4.0,2.0,No smoking,3,Guam +4264,TriBeCa Amazing River View Loft 3BR,Entire home/apt,1195.0,10.0,1.0,No parties,11,Phoenix +4265,Spacious and romantic apartment near Prospect Park,Entire home/apt,1006.0,3.0,3.0,No visitors & No smoking,7,Pueblo +4266,Bright and Cozy Room in Williamsburg,Private room,566.0,4.0,4.0,No visitors & No parties,2,Garden City +4267,Luxury 3 bedroom apartment on the Upper East Side,Entire home/apt,481.0,2.0,5.0,No children under 10 & No smoking,3,Wilmington +4268,2 bedrooms: 1 queen bed and 1 full bed,Private room,246.0,1.0,5.0,No children under 10 & No parties & No smoking,2,Cody +4269,Breathtaking City Views 3 Bed Apt. in Lincoln Sq!,Entire home/apt,1033.0,30.0,2.0,No smoking & No visitors,5,Saginaw +4270,Gorgeous Daylight Photo Studio in Chelsea,Entire home/apt,177.0,1.0,2.0,,3,Charlotte Amalie +4271,Enormous bedroom in UWS 2-bed,Private room,1002.0,3.0,4.0,No pets & No parties,2,Mosinee +4272,Big Private Studio one Subway stop from Manhattan,Entire home/apt,763.0,5.0,2.0,No smoking & No pets,7,Missoula +4273,Sunny Greenpoint Junior 1 Bedroom,Entire home/apt,140.0,5.0,5.0,No smoking & No pets,2,Kalamazoo +4274,Dominiques Homesharing room NYC* metro*quiet*safe,Private room,1099.0,2.0,5.0,No visitors,1,Burbank +4275,"Sparkling 2nd Flr Apt, Near JFK, LGA & NY City",Entire home/apt,634.0,2.0,3.0,No parties,2,Lexington +4276,Gorgeous luxury place Williamsburg,Entire home/apt,994.0,1.0,2.0,No parties & No smoking,2,Newport News +4277,Queen Charlotte’s in B’klyn (accommodation for 1),Private room,313.0,2.0,2.0,No pets,2,Worcester +4278,Huge Bedroom in the Upper West near Central Park,Private room,184.0,7.0,3.0,No children under 10 & No smoking & No pets,2,Springfield +4279,Spacious Penthouse Bedroom,Private room,923.0,1.0,1.0,No smoking & No parties,1,Valparaiso +4280,Grande chambre lumineuse à bushwick,Private room,468.0,2.0,4.0,No visitors & No children under 10,1,Myrtle Beach +4281,Brooklyn apartment,Entire home/apt,137.0,7.0,4.0,No pets,3,Yuma +4282,East Village Studio Apt w/private Courtyard Oasis,Entire home/apt,309.0,6.0,5.0,No parties & No smoking,3,Great Falls +4283,Beautiful two bedrooms in front of the park,Entire home/apt,1082.0,2.0,5.0,,3,Brainerd +4284,Holiday Sublet! 20 min to midtown,Private room,1150.0,6.0,1.0,No smoking & No visitors,1,Aguadilla +4285,A2Long Island City Big Room Great Location,Private room,155.0,1.0,1.0,No children under 10 & No pets,1,Adak Island +4286,Newly renovated & spacious Woodside room,Private room,504.0,30.0,3.0,No parties,1,Chicago +4287,1 Bedroom in a Washington Heights Apartment,Private room,844.0,2.0,2.0,No pets,2,Lawton +4288,SHOOTS ONLY - Huge Artist loft in Williamsburg,Entire home/apt,526.0,1.0,4.0,No pets,2,Syracuse +4289,"Big Private, Sunny, and Quiet Room",Private room,913.0,1.0,4.0,No pets & No parties,2,Salina +4290,Beauty In The East-Mins to Subway/JFK/LGA/Manhatta,Entire home/apt,245.0,1.0,3.0,,3,Charlotte Amalie +4291,Big private bed/bath in penthouse!,Private room,277.0,1.0,2.0,No children under 10,2,Aguadilla +4292,Perfect UES location! Museum quality private room!,Private room,276.0,3.0,1.0,No visitors & No pets,2,Lawton +4293,Big One Bedroom Directly Across from Central Park!,Entire home/apt,1018.0,2.0,2.0,No children under 10,5,Charlotte Amalie +4294,"Modern 1 Bedroom with Large Windows, Lots of Light",Entire home/apt,590.0,2.0,5.0,No children under 10 & No smoking,4,Charleston +4295,Greenpoint Apartment,Private room,286.0,10.0,2.0,No pets & No smoking & No parties,2,Hyannis +4296,City Life in Harlem,Entire home/apt,763.0,5.0,2.0,No parties & No children under 10 & No pets,2,Aguadilla +4297,Manhattan Ave Apartment 2 stops from Times Square,Private room,411.0,2.0,4.0,No visitors,2,Fargo +4298,Upscale Sun-Soaked Luxury apartment in Brooklyn,Entire home/apt,789.0,1.0,4.0,No children under 10,5,Liberal +4299,Chez Jesse Vacation Spot,Private room,55.0,2.0,3.0,No visitors,1,Jackson +4300,LUX Doorman Gym ! 2 Bedroom5179,Entire home/apt,921.0,30.0,2.0,No parties & No visitors,7,Pueblo +4301,East Village Dream Apartment - Best Rooftop View,Entire home/apt,1110.0,7.0,3.0,No parties & No smoking,11,Casper +4302,NYC NEW YEARS EVE - LUXURY CRASH PAD!,Shared room,233.0,4.0,2.0,No children under 10,1,Newburgh +4303,Large 2 BDRM @ McCarren Park!!,Entire home/apt,97.0,30.0,3.0,,3,Aguadilla +4304,Brooklyn Flavor,Private room,741.0,3.0,4.0,No pets & No parties & No visitors,2,Gillette +4305,Private Apt Near NYC Airport & Northshore Hospital,Entire home/apt,592.0,1.0,1.0,No smoking & No children under 10,3,Washington +4306,1 Bedroom Apartment in Willimasburg,Private room,995.0,7.0,1.0,,2,Ogdensburg +4307,Cute modern one bedroom apartment near Gramercy,Entire home/apt,907.0,5.0,2.0,No visitors & No parties & No smoking,4,Dubuque +4308,"Bright, private room in the HEART of Williamburg",Private room,711.0,25.0,3.0,No parties & No children under 10 & No pets,2,Honolulu +4309,Nice bedroom in Morningside Heights spacious flat,Private room,777.0,30.0,5.0,No smoking,2,Marquette +4310,Williamsburg Penthouse,Entire home/apt,113.0,5.0,3.0,No parties,3,Killeen +4311,Country space in the city,Private room,1020.0,1.0,3.0,No parties,1,Punta Gorda +4312,Beautiful Bedroom Mid Town Manhattan,Private room,617.0,2.0,2.0,,1,Louisville +4313,Deluxe Loft Suite with Patio,Entire home/apt,717.0,1.0,5.0,No children under 10,2,Paducah +4314,PERFECT LONG TERM RENTAL~1 BR- EAST 60TH STREET,Entire home/apt,515.0,30.0,5.0,No smoking & No parties,2,White Plains +4315,Entire apartment next to McGolrick Park!,Entire home/apt,887.0,7.0,2.0,No visitors & No pets,8,Atlantic City +4316,Blue House on Martense,Entire home/apt,1031.0,4.0,5.0,No smoking,6,Ketchikan +4317,Nice studio 4 people next to Times Square.,Entire home/apt,392.0,2.0,4.0,,3,Waterloo +4318,5mn location from Manhattan midtown,Private room,875.0,1.0,1.0,No visitors,2,Corpus Christi +4319,"Artsy, Sun-Soaked Pre-War Williamsburg Apt",Entire home/apt,872.0,10.0,4.0,No parties,2,Houston +4320,Spacious South Slope apartment,Entire home/apt,742.0,5.0,5.0,No pets,7,Atlantic City +4321,Delicious & Airy Apt in Landmark Brownstone,Entire home/apt,1157.0,2.0,5.0,No smoking & No visitors & No parties,5,Montrose +4322,"Private Room, Modern Finishes - AC and Backyard!",Private room,1167.0,2.0,3.0,No children under 10 & No smoking & No visitors,1,Devils Lake +4323,"Quiet, Large, & Cozy Bedroom in Bushwick Apt - 2",Private room,1144.0,1.0,3.0,No pets & No smoking,2,Ontario +4324,"Modern loft in Cobble Hill, BK",Private room,186.0,1.0,4.0,No pets & No children under 10,2,Duluth +4325,Cozy bedroom close to Manhattan,Private room,576.0,1.0,3.0,No children under 10,1,Nashville +4326,Fort Greene Jewel,Entire home/apt,494.0,29.0,3.0,No pets,4,Elko +4327,"Cozy 3 Bedroom, 20 Minutes to Times Square!",Entire home/apt,458.0,3.0,4.0,No smoking,3,Montrose +4328,Midtown east for 5 people,Entire home/apt,459.0,2.0,5.0,No children under 10,3,Arcata +4329,"Private! entire studio, private bath, own entrance",Entire home/apt,886.0,1.0,4.0,No visitors,5,Hattiesburg +4330,LUXURY MID-CENTURY MODERN LOFT SOHO,Entire home/apt,1068.0,14.0,2.0,No pets,9,San Luis Obispo +4331,Cherry Hill House - Blue Room,Private room,1008.0,1.0,1.0,No smoking,1,Durango +4332,Large & comfortable studio in Financial District,Entire home/apt,1123.0,6.0,4.0,,7,San Juan +4333,Cozy LIC Loft-Style Apt- Minutes to Manhattan,Entire home/apt,1063.0,20.0,2.0,No smoking & No pets,6,Washington +4334,"Grand Street in Brooklyn, G stop, L stop.",Entire home/apt,565.0,2.0,3.0,,3,Wrangell +4335,Cozy Brooklyn Apartment room near Manhattan,Private room,467.0,2.0,2.0,No parties,2,Santa Fe +4336,Studio Apartment in Upper East Side,Entire home/apt,366.0,7.0,5.0,No children under 10 & No visitors & No parties,3,Fort Myers +4337,Luxurious Apt Best Finishes & Location,Entire home/apt,592.0,30.0,3.0,No children under 10 & No visitors,5,Vernal +4338,Modern townhouse convenient to everything,Entire home/apt,637.0,3.0,3.0,No parties,6,Reno +4339,Sunny bedroom in historic Bed Stuy BK brownstone,Private room,490.0,14.0,5.0,No pets & No smoking,1,Traverse City +4340,Centrally located East Village studio,Entire home/apt,188.0,2.0,5.0,No parties,2,Eagle +4341,Magic Waters - Brooklyn Refuge,Entire home/apt,363.0,2.0,2.0,No parties,2,El Paso +4342,Room in musicians loft/music venue,Private room,755.0,3.0,5.0,,1,Escanaba +4343,A Tree Grows in Brooklyn,Private room,1187.0,2.0,5.0,No parties & No visitors,1,Waterloo +4344,Nice and clean private space in Bklyn loft.,Private room,217.0,10.0,3.0,No visitors,1,Victoria +4345,Home away from home in cozy BK apartment,Private room,202.0,3.0,3.0,No pets & No visitors & No smoking,2,Elko +4346,"Spacious, Bright Harlem Treetop Duplex",Entire home/apt,1007.0,3.0,3.0,No smoking & No visitors & No children under 10,8,Lake Charles +4347,Upper East Side Spacious 2 Bedrooms,Entire home/apt,247.0,3.0,3.0,,2,Mason City +4348,Quality Cozy Studio Next to Subway,Entire home/apt,921.0,4.0,3.0,,3,Bismarck +4349,Private Room and most of apt in Upper West Side,Private room,752.0,1.0,3.0,No smoking & No parties,2,Medford +4350,"Home away from home,clean and cozy.",Private room,662.0,2.0,4.0,No smoking,2,Santa Rosa +4351,Contemporary Luxury Studio Apartment,Entire home/apt,509.0,30.0,4.0,No parties,5,Birmingham +4352,Greenwich Village Apartment,Entire home/apt,781.0,3.0,4.0,No parties & No smoking,3,Laramie +4353,Private room close to the center of Williamburg,Private room,231.0,1.0,2.0,No visitors & No children under 10,1,Dallas +4354,Beautiful Sunlit Retreat in Manhattan,Entire home/apt,268.0,2.0,2.0,No visitors & No parties & No smoking,3,Moline +4355,Comfortable 2BR Apartment in City Center ♛,Entire home/apt,734.0,1.0,4.0,No children under 10 & No visitors,5,Twin Falls +4356,"Sunny Studio, Amazing Neighborhood",Entire home/apt,254.0,7.0,4.0,No visitors & No smoking & No parties,2,Bemidji +4357,Beautiful home,Private room,351.0,1.0,2.0,No pets & No parties,1,San Angelo +4358,Chic East Village 1 bed apt,Entire home/apt,155.0,2.0,4.0,No parties & No children under 10 & No pets,3,Hattiesburg +4359,Charming attic Room in Home + Backyard/Near Metro,Private room,249.0,3.0,1.0,No visitors,1,Green Bay +4360,Cozy Bedroom in the heart of Williamsburg,Private room,1153.0,4.0,3.0,No parties & No pets,1,Lafayette +4361,Sunny Spacious King Size Bed,Entire home/apt,87.0,3.0,1.0,No children under 10,3,Fargo +4362,Beauty bedroom in 1899 gem,Private room,123.0,2.0,3.0,No parties,1,Fort Leonard Wood +4363,Modern Comfort in West Village,Entire home/apt,379.0,1.0,2.0,No smoking,3,Jackson +4364,A Couch In East Williamsburg Near Train.,Shared room,247.0,1.0,4.0,No pets & No visitors,1,Corpus Christi +4365,Spacious Bedroom in Williamsburg Duplex,Private room,294.0,2.0,1.0,No children under 10,1,Hibbing +4366,Private apartment (1st floor) with all amenities,Entire home/apt,1187.0,2.0,2.0,No parties,7,Ontario +4367,Big and cozy room,Private room,104.0,3.0,5.0,No smoking & No parties,2,Wilmington +4368,Beautiful Spacious 1 Bed in Hip Harlem Neighborhd,Entire home/apt,63.0,3.0,1.0,No visitors & No parties,3,Asheville +4369,Artist's Budget Apartment,Private room,142.0,2.0,1.0,No pets,2,Panama City +4370,Cozy room in renovated Harlem apt,Private room,143.0,6.0,4.0,No visitors,1,Kona +4371,--Into The Heart Of Greenpoint--,Entire home/apt,571.0,3.0,2.0,,4,Madison +4372,BK Master bedroom with King sized bed,Private room,1093.0,2.0,2.0,No parties,2,Kansas City +4373,Cozy apartment in Brooklyn Brownstone,Entire home/apt,267.0,1.0,4.0,No smoking,3,Jamestown +4374,"Enormous, Beautiful Apartment near Prospect Park",Entire home/apt,1068.0,1.0,5.0,No smoking & No pets,8,La Crosse +4375,15 min to NYC from a comfy and clean house.,Private room,636.0,2.0,3.0,No smoking & No visitors,2,Gulfport +4376,Private studio at a housework with backyard,Entire home/apt,773.0,3.0,4.0,No smoking,7,Springfield +4377,Corner Junior Suite Room with One King Bed,Private room,1093.0,1.0,3.0,,1,Seattle +4378,Close by Central Park,Private room,676.0,3.0,5.0,No smoking & No visitors & No pets,2,Bismarck +4379,Beautiful room in West Harlem,Private room,944.0,30.0,5.0,No visitors & No pets & No children under 10,2,Minneapolis +4380,Spacious 1+ bedroom apt in NYC,Entire home/apt,547.0,1.0,5.0,No visitors,5,Shreveport +4381,Rosedale Private residential ( SMOKE FREE),Entire home/apt,603.0,1.0,5.0,No visitors & No smoking & No children under 10,3,Roanoke +4382,One bedroom in Williamsburg,Private room,878.0,3.0,3.0,No parties,1,Martha's Vineyard +4383,Bedroom Apartment in the Heart of Manhattan,Private room,208.0,2.0,5.0,No children under 10 & No parties,2,Birmingham +4384,Private room with Central Park view,Private room,318.0,10.0,4.0,No pets & No smoking & No children under 10,2,Billings +4385,Harlem Parkside - 1 cozy bedroom,Private room,946.0,2.0,4.0,,2,Monterey +4386,Cozy Private Bedroom Near LGA,Private room,1077.0,2.0,3.0,No children under 10 & No smoking & No pets,1,Palm Springs +4387,Water View near Flushing近法拉盛海景房,Entire home/apt,687.0,7.0,2.0,No visitors,4,Great Falls +4388,Sunny Bedroom in Clinton Hill,Private room,663.0,3.0,5.0,No children under 10 & No smoking,1,Lafayette +4389,Awesome Apartment near Times Sq.,Entire home/apt,811.0,1.0,3.0,No smoking,8,Christiansted +4390,Perfect Williamsburg Summer Haven,Entire home/apt,250.0,2.0,5.0,No pets,3,Idaho Falls +4391,Cherry Hill House - Blue Room,Private room,1008.0,1.0,1.0,No smoking & No children under 10 & No pets,1,St. Petersburg +4392,Private bedroom on Upper East Side !!!,Private room,630.0,2.0,1.0,No parties,1,Moab +4393,Central park lovely cozy room,Private room,322.0,1.0,3.0,,2,Lubbock +4394,Sonder | 180 Water | Pristine Studio + Rooftop,Entire home/apt,448.0,29.0,3.0,No smoking & No visitors,3,Worcester +4395,"Great deal, full equiped room in Times Square",Private room,1169.0,1.0,3.0,No children under 10 & No pets,2,Branson +4396,Cozy Private Rm #2C Two Beds Near JFK and J Train,Private room,1041.0,1.0,4.0,No pets & No smoking,2,North Platte +4397,"Queens,Woodside.NY",Private room,101.0,1.0,5.0,,2,Cedar City +4398,Large one bedroom apt in Greenpoint,Entire home/apt,230.0,7.0,1.0,No visitors,3,Panama City +4399,True NYC Living! Flatiron:1 bdrm w/ outdoor space!,Entire home/apt,87.0,1.0,3.0,No visitors & No parties,2,Scottsbluff +4400,"Sunny, Spacious Apartment in Prime Williamsburg",Entire home/apt,301.0,2.0,1.0,No pets & No visitors,3,Johnstown +4401,Private Bedroom in Washington Heights,Private room,753.0,2.0,5.0,No visitors,2,Scranton +4402,Amazing 3BR Triplex Family Apartment w/ Garden,Entire home/apt,867.0,30.0,4.0,No children under 10,3,Jackson +4403,Historic Rockaway Beach Bungalow-By Subway & Beach,Entire home/apt,473.0,1.0,5.0,No smoking & No parties & No pets,3,Helena +4404,2 Full Size Beds Lower East Side,Entire home/apt,961.0,1.0,3.0,No smoking,8,Sarasota +4405,Big studio in Pospect Park,Entire home/apt,320.0,5.0,3.0,No parties,2,Saginaw +4406,1 bedroom/1 Bath/Balcony/Wash-Dryer,Entire home/apt,308.0,1.0,4.0,,2,Waterloo +4407,Industrial bedroom 1 minute to Subway,Private room,960.0,2.0,2.0,No parties,2,Aberdeen +4408,Artist Apartment with Tons of Space,Entire home/apt,487.0,20.0,4.0,No parties & No children under 10 & No pets,2,Boston +4409,HUGE 4 Bedroom PERFECT Wilburg Apt. on Bedford Ave,Entire home/apt,1134.0,4.0,3.0,No children under 10,9,Norfolk +4410,Modern apartment w/ gorgeous view,Private room,921.0,3.0,1.0,No pets,2,Chattanooga +4411,Spacious cozy apartment,Entire home/apt,314.0,2.0,1.0,No children under 10,3,Dallas +4412,A cozy garden apartment,Entire home/apt,902.0,2.0,3.0,No parties & No pets,3,Longview +4413,"Great location, private bedroom with two windows.",Private room,883.0,2.0,3.0,No pets,1,Amarillo +4414,Spacious and Clean Brooklyn Flat,Entire home/apt,881.0,15.0,3.0,No parties,5,Eugene +4415,ROOFTOP SWIMMING-POOL 1/BR APT.,Entire home/apt,464.0,5.0,5.0,No pets & No smoking & No visitors,3,Moline +4416,Sunny and Large Brooklyn Apartment!,Entire home/apt,866.0,4.0,4.0,No visitors,2,Panama City +4417,Spacious Room in East Village Oasis,Private room,652.0,6.0,1.0,,2,Memphis +4418,Massive 4 bed 3 bath Loft in SoHo/Little Italy,Entire home/apt,1089.0,3.0,5.0,No parties & No children under 10,4,Hancock +4419,"Private, Sunny, lofted bedroom in Bushwick, BK",Private room,391.0,1.0,5.0,No children under 10 & No visitors,2,Akron +4420,Private large room near LGA airport with queen bed,Private room,552.0,1.0,2.0,No pets,1,Knoxville +4421,Private Bedroom Midtown,Private room,826.0,4.0,2.0,No parties & No visitors,1,Albany +4422,Classic East Village Apartment,Private room,549.0,1.0,1.0,,2,Manhattan +4423,"Sun Filled, Luxury 1BR with Pool, Gym, Roof Deck!",Entire home/apt,585.0,1.0,4.0,No visitors & No parties & No pets,4,Pasco +4424,Delightful studio apartment.,Entire home/apt,335.0,2.0,2.0,No children under 10 & No pets,2,Oklahoma City +4425,Sun-drenched Charles Street studio!,Entire home/apt,1012.0,9.0,1.0,No visitors & No pets,10,Ogden +4426,Beautiful Apartment On Stivers Row,Entire home/apt,283.0,3.0,3.0,No children under 10,3,La Crosse +4427,Bedroom in Brooklyn Communal House,Private room,512.0,2.0,2.0,No smoking,1,Rock Springs +4428,Cozy Apartment in Chinatown/LES,Private room,193.0,5.0,3.0,No visitors,2,Aberdeen +4429,peaceful tree view room in sweet neighborhood,Private room,616.0,3.0,3.0,No children under 10,1,Providence +4430,Next to Central Park,Private room,913.0,2.0,2.0,No visitors & No smoking,1,Jacksonville +4431,J & G Comfort Cove: Feel of luxury and tranquility,Entire home/apt,756.0,1.0,5.0,No smoking & No children under 10,7,Florence +4432,Your SUNNYROOM 15mnts to Manhattan!,Private room,154.0,2.0,4.0,No smoking & No parties & No visitors,2,Kansas City +4433,478 BROOKLYN 2 bedrooms/2 bathrooms (974sf),Entire home/apt,693.0,30.0,3.0,No smoking & No parties,2,Mosinee +4434,Cozy Private room in Fort Greene,Private room,1101.0,2.0,4.0,,1,Rapid City +4435,Cute bedroom available near subway in Astoria!,Private room,1189.0,2.0,5.0,No parties & No smoking & No pets,1,Ashland +4436,"One of a kind, entire Brooklyn apartment",Entire home/apt,84.0,2.0,3.0,No pets,3,Deadhorse +4437,Williamsburg Loft Bedroom,Private room,586.0,8.0,4.0,No smoking & No parties,1,Stillwater +4438,Hells Kitchen 3 Bedroom,Entire home/apt,61.0,30.0,3.0,No visitors & No smoking,2,Des Moines +4439,Awesome Room in the Heart of Bushwick!,Private room,404.0,7.0,4.0,No visitors & No pets & No children under 10,1,Charlotte +4440,Park Slope Home away from Home,Entire home/apt,137.0,4.0,3.0,No children under 10 & No pets,3,Texarkana +4441,BEAUTIFUL NEW Renovated Apt!!,Entire home/apt,314.0,1.0,2.0,No children under 10,2,Honolulu +4442,"Spacious, Sunny Room in Park Slope",Private room,338.0,2.0,5.0,No pets & No smoking,1,Honolulu +4443,Magnificent NYC 1BR Apt + Superb Amenities!,Entire home/apt,416.0,30.0,2.0,,4,Juneau +4444,Large Bed-Stuy Apartment,Entire home/apt,132.0,6.0,4.0,No visitors,2,New York +4445,Beautiful Private Room Big Windows,Private room,755.0,30.0,3.0,No pets & No parties & No smoking,1,Fort Smith +4446,Charming 1BR in heart of Chinatown,Private room,503.0,2.0,2.0,No smoking & No children under 10,2,Wilmington +4447,2 Bedrooms PRIVATE BATHROOM AND KITCHEN,Private room,783.0,2.0,3.0,No pets & No smoking & No children under 10,2,Jackson +4448,AWESOME CHARMING ROOM C WITH ROOF DECK ACCESS :),Private room,553.0,30.0,5.0,No children under 10,2,Oklahoma City +4449,Great Small Room 15 Minutes From Time Square,Private room,574.0,2.0,5.0,,2,Alpena +4450,Your Quiet Refuge in the Heart of Manhattan,Entire home/apt,1150.0,3.0,4.0,No pets,7,King Salmon +4451,arty east village,Entire home/apt,100.0,2.0,3.0,No visitors,2,New Bern +4452,**Cozy Room In Hip Ultra Location LES/NOLITA**,Private room,537.0,2.0,5.0,No visitors,2,Seattle +4453,Spacious bedroom only 4 stations to Manhattan!,Private room,510.0,2.0,5.0,No smoking,1,Lincoln +4454,Cozy 4 Bedroom's Times Square Apartment!,Private room,718.0,3.0,2.0,No pets & No visitors,1,La Crosse +4455,Private Room with 2 Beds in Hamilton Heights,Private room,545.0,4.0,3.0,No pets,2,Santa Ana +4456,Trendy Nabe Bunk for travelers,Shared room,119.0,1.0,2.0,No visitors & No smoking,1,Gillette +4457,Brand New 3-Bedroom in Trendy L.E.S. #10296,Entire home/apt,605.0,2.0,5.0,No smoking & No visitors & No children under 10,3,Lawton +4458,"Large 1BR in Bay Ridge, Brooklyn",Entire home/apt,277.0,1.0,4.0,No visitors,3,Joplin +4459,Single Bed A in Sharing Room near Grand Central,Shared room,456.0,3.0,5.0,No smoking,1,Jackson +4460,Cozy yellow room,Private room,699.0,1.0,5.0,No visitors,2,Hays +4461,Skyline #1 view ny skyline,Private room,78.0,2.0,4.0,No visitors & No smoking,2,Ithaca +4462,1 Bedroom in Upper East Side,Private room,58.0,100.0,5.0,No parties,1,Plattsburgh +4463,Spacious Room in Uptown Manhattan,Private room,614.0,2.0,5.0,No visitors & No children under 10,1,Bismarck +4464,Private Room in HOME w/Professionals,Private room,735.0,5.0,3.0,No parties & No pets,1,Ogden +4465,Comfy Room,Private room,92.0,4.0,2.0,No parties & No smoking & No pets,1,Pensacola +4466,Trendy Harlem Apartment in New York,Entire home/apt,558.0,21.0,1.0,No smoking,4,Newport News +4467,Evergreen Cozy Bed for Female Travelers 紐約民宿,Shared room,734.0,1.0,4.0,No parties & No pets & No visitors,1,Wichita +4468,Stylish 1 BD in Garment District,Entire home/apt,894.0,3.0,1.0,,5,Santa Rosa +4469,Private Room in Luxury Building,Private room,258.0,5.0,4.0,No parties,2,La Crosse +4470,Bright and Sunny Williamsburg Oasis,Entire home/apt,1195.0,3.0,5.0,,10,Lewisburg +4471,#ERROR!,Private room,442.0,25.0,3.0,No smoking,1,Fayetteville +4472,Chic room in a clean and cozy apartment,Private room,728.0,2.0,3.0,No children under 10 & No parties & No smoking,1,Bismarck +4473,Renovated 3BR 2 Full Bath with Washer & Dryer,Entire home/apt,1054.0,,5.0,,4,South Bend +4474,Designer's spacious Manhattan apt.,Entire home/apt,879.0,3.0,4.0,No smoking & No visitors & No pets,4,San Luis Obispo +4475,Bohemian Paradise in Industrial BK,Private room,821.0,2.0,5.0,No visitors & No pets,1,Bakersfield +4476,1 Bedroom w/ common space in 4br Loft in Bushwick,Private room,622.0,7.0,3.0,No pets,1,Sioux City +4477,"☆Charming bedroom, 5min to Empire State Building☆",Private room,175.0,1.0,3.0,No smoking,2,Wenatchee +4478,"Bedroom & living area Upper East Side, 86th Subway",Entire home/apt,419.0,2.0,5.0,No smoking,3,Juneau +4479,*OH SO ZEN*~ Chill Bushwick Yoga Spot!!,Entire home/apt,948.0,2.0,2.0,No smoking,9,Buffalo +4480,Newly renovated garden apartment in brownstone!,Entire home/apt,513.0,30.0,5.0,,2,Florence +4481,Cute Lofted Apt.,Entire home/apt,296.0,2.0,4.0,No pets & No parties,3,Wrangell +4482,Cozy Apartment. 15 mins away from LGA & Manhattan,Entire home/apt,421.0,3.0,4.0,No parties,4,International Falls +4483,Cozy Artists Apartment in Central Harlem,Private room,284.0,1.0,2.0,No visitors,1,Abilene +4484,Private Bedroom in Bushwick,Private room,899.0,1.0,1.0,No pets,1,Aberdeen +4485,Peaceful Room...,Private room,327.0,4.0,3.0,No smoking & No children under 10,1,Juneau +4486,** Location~Location~Location in Time Square **,Entire home/apt,963.0,3.0,5.0,No pets,5,Binghamton +4487,"East Village, private room with free breakfast",Private room,909.0,1.0,4.0,No children under 10,1,Petersburg +4488,Bright Sanctuary in Williamsburg,Private room,358.0,1.0,3.0,No pets & No visitors,1,Sheridan +4489,Large room with private bath & kitchen near train,Entire home/apt,239.0,1.0,1.0,,2,San Diego +4490,The Real B&B Home,Entire home/apt,971.0,7.0,3.0,No visitors,5,Alpena +4491,Dreamy Private Room in Super Cool Bedstuy Apt.,Private room,60.0,3.0,4.0,,1,Cleveland +4492,Wonderful Apartment in the charming East Village,Entire home/apt,1017.0,1.0,3.0,,3,Tyler +4493,Northern Manhattan Getaway,Private room,663.0,2.0,3.0,No smoking & No visitors,2,Durango +4494,Charming Garden Apartment in Brooklyn Brownstone,Entire home/apt,434.0,2.0,3.0,No visitors,2,Dallas +4495,Cozy One Bedroom Near Fort Tryon Park,Entire home/apt,988.0,2.0,3.0,No children under 10,5,Washington +4496,Sweet one bedroom apartment in Cobble Hill,Entire home/apt,1060.0,3.0,3.0,No visitors & No children under 10,7,Butte +4497,Modern 2BR in the UES (94th and 2nd) 30 DAYS MIN,Entire home/apt,938.0,30.0,2.0,No children under 10,5,Cincinnati +4498,Perfect blend of urban and village atmosphere,Private room,640.0,1.0,5.0,No children under 10,2,Ketchikan +4499,The Artist Retreat Duplex and Garden 1,Entire home/apt,450.0,2.0,5.0,No parties & No pets,3,Ogdensburg +4500,The Heart of Bushwick!,Private room,1155.0,7.0,3.0,No pets,1,Sarasota +4501,3 Bedroom Prime Park Slope 6th Ave/Barclays Center,Entire home/apt,121.0,2.0,3.0,No visitors,2,Panama City +4502,Large private room in heart of BK,Private room,892.0,2.0,3.0,No pets,2,Saipan +4503,Spacious Bushwick Loft,Private room,1063.0,4.0,4.0,No parties,2,Ithaca +4504,,Private room,889.0,1.0,2.0,No visitors,2,Hibbing +4505,"Modern, bohemian 1 bedroom apt in Williamsburg",Entire home/apt,705.0,21.0,3.0,No pets & No children under 10,2,Williston +4506,"One B/R (1 Guest) Near Beach, A & air trains, JFK",Private room,1100.0,1.0,5.0,,1,Gillette +4507,Beautifull Bed Stuy 1bdrm apt with outdoor space!,Entire home/apt,1024.0,2.0,3.0,No visitors,5,Nantucket +4508,ACintheroom!35minutes toWALL St. quiet&residential,Private room,1003.0,7.0,4.0,,1,Mission +4509,"Sunny, spacious room in Bedstuy",Private room,646.0,1.0,3.0,No pets,2,Burbank +4510,Spacious 1BR Haven in Duplex w/Deck,Private room,1050.0,7.0,2.0,No parties,2,Pensacola +4511,☆Massive DUPLEX☆ 2BR & 2BTH East Village 9+ Guests,Entire home/apt,619.0,2.0,1.0,No pets,5,Corpus Christi +4512,Stylish 1 BR in the heart of SoHo,Entire home/apt,1075.0,3.0,5.0,No pets,3,Green Bay +4513,The Grove - A Luxury One Bedroom Apartment,Entire home/apt,66.0,2.0,2.0,No pets & No children under 10 & No parties,2,Wrangell +4514,Stunning refurbished church apt in heart of Wburg,Entire home/apt,380.0,2.0,3.0,No parties,3,Dodge City +4515,Modern Condo in Heart of Harlem,Entire home/apt,191.0,3.0,3.0,No smoking,3,Minneapolis +4516,Nice Room in Classic Williamsburg Loft,Private room,270.0,4.0,3.0,No smoking & No pets,2,Charlotte Amalie +4517,Central Cozy 3 Bedrooms Apartment,Entire home/apt,100.0,30.0,1.0,No pets,3,Santa Rosa +4518,"High wifi , private space and private room",Private room,713.0,5.0,5.0,No visitors & No smoking,2,Sitka +4519,AG's palace 2,Private room,81.0,1.0,5.0,No parties,2,Hayden +4520,The Brass Shack,Private room,874.0,5.0,2.0,No pets,2,Vernal +4521,Stunning New High-Rise Apartment - 1 Bedroom NYC,Entire home/apt,402.0,30.0,5.0,No pets & No parties & No smoking,4,Lincoln +4522,Times Square,Entire home/apt,940.0,,2.0,No smoking & No parties,5,San Angelo +4523,Big Sunny Bushwick Apartment,Entire home/apt,714.0,4.0,2.0,No pets & No visitors,3,Denver +4524,Romantic 1 bedroom Part2 Harlem USA,Entire home/apt,70.0,3.0,5.0,No visitors & No children under 10,3,Rochester +4525,"DESIGN, COLOR, MODERN, LIGHT!!! COOK'S KITCHEN!!!",Entire home/apt,583.0,4.0,5.0,No parties & No children under 10 & No smoking,2,Fargo +4526,5 Mins Walk to Columbia University,Private room,1143.0,14.0,2.0,No smoking,1,St. George +4527,Lovely Room in the heart of the East Village,Private room,813.0,2.0,5.0,No parties & No children under 10,2,San Luis Obispo +4528,Strivers Row Studio,Entire home/apt,212.0,2.0,2.0,No visitors & No smoking,2,Santa Barbara +4529,"AMAZINGLY LOCATED ONE BEDROOM, NEAR CENTRAL PARK",Entire home/apt,637.0,4.0,3.0,No smoking & No children under 10,2,Jackson +4530,YANKEE STADIUM DOWNTOWN BRONX,Private room,1194.0,1.0,5.0,No pets & No children under 10 & No visitors,2,Grand Island +4531,Private Room close to subway (3/3),Private room,232.0,1.0,2.0,No parties,2,Jackson +4532,Cozy Centrally Located Private Room in Bushwhick,Private room,147.0,2.0,1.0,No children under 10 & No pets,1,Champaign +4533,Bright Comfy Quiet Room Just 6 Mins from JFK!,Private room,402.0,1.0,5.0,No children under 10,2,Mason City +4534,First rate 2 bed/2 bath apt. in Midtown West!,Entire home/apt,356.0,30.0,3.0,No parties,2,Cincinnati +4535,1 Bedroom Apt East Village/USQ,Entire home/apt,236.0,1.0,4.0,No visitors,2,Panama City +4536,Two BDRM Perfect CHTWN Manhattan!,Entire home/apt,351.0,1.0,5.0,No pets & No children under 10,3,Santa Ana +4537,Spacious Private Room in Brooklyn,Private room,1167.0,20.0,4.0,No pets,2,Shreveport +4538,Cozy Studio in Queens zZZ,Entire home/apt,644.0,3.0,2.0,No pets & No children under 10 & No parties,2,Lansing +4539,Beautiful Apartment close to Time Square,Entire home/apt,99.0,3.0,5.0,,2,Atlantic City +4540,Prime New York Upper East Side 1 Bedroom Apartment,Entire home/apt,308.0,2.0,4.0,No visitors,3,Kona +4541,Spacious Room in the heart of Greenwich Village!,Private room,987.0,2.0,4.0,No pets,1,St. Cloud +4542,Super quiet Apartment in East Williamsburg!!! =),Private room,1010.0,3.0,2.0,No visitors,2,Moab +4543,Nice Room in Manhattan,Private room,300.0,1.0,1.0,No visitors,1,Detroit +4544,Luxurious Living in Williamsburg/Brooklyn,Entire home/apt,296.0,1.0,5.0,,3,Salt Lake City +4545,"1BR spacious, sunny (25 min to Manhattan)",Entire home/apt,127.0,17.0,3.0,No children under 10,3,Newburgh +4546,One Bedroom Apt next to Empire State,Entire home/apt,339.0,7.0,2.0,No smoking,2,Billings +4547,Williamsburg Large Modern Studio,Entire home/apt,734.0,4.0,3.0,No pets & No smoking,3,Erie +4548,Little Red and the big GWB,Private room,56.0,1.0,1.0,No smoking,1,Butte +4549,One bedroom in Murray Hill,Entire home/apt,698.0,14.0,3.0,No parties,2,Raleigh +4550,Cozy East Village Railroad 1 Bed!,Entire home/apt,1089.0,1.0,5.0,No visitors,5,Raleigh +4551,Private room in prime Cobble Hill neighborhood,Private room,490.0,7.0,1.0,No parties & No visitors,2,Dubuque +4552,Relax in SoHo with private outdoor space,Entire home/apt,1063.0,2.0,5.0,No visitors,4,Amarillo +4553,Beautiful Private Bedroom in North Brooklyn! 2-2,Private room,716.0,30.0,2.0,No pets & No smoking & No visitors,2,Bozeman +4554,Comfy UWS Room near Central Park & Times Square,Private room,693.0,1.0,3.0,No pets,1,Lewiston +4555,Beautiful 1200 sf 3 bedroom apt off Prospect Park,Entire home/apt,452.0,5.0,1.0,,3,Concord +4556,Bohemian bed & breakfast in the heart of Astoria!,Private room,729.0,1.0,5.0,No parties & No visitors & No children under 10,2,Kahului +4557,Luxury April Sublet in Manhattan NY,Private room,249.0,1.0,4.0,,2,North Bend +4558,Private Room By Central Park,Private room,131.0,1.0,3.0,,1,Melbourne +4559,Sunny Ditmas Park Carriage House (Events Listing),Entire home/apt,483.0,1.0,4.0,No pets,3,Grand Rapids +4560,A large bedroom with a king size bed in Queens.,Private room,599.0,1.0,2.0,No parties & No visitors,2,Erie +4561,Carroll Gardens Modern Sunny Loft,Entire home/apt,860.0,3.0,1.0,No pets & No children under 10 & No parties,2,Indianapolis +4562,Bright and Chill Room in Bushwick for two friends!,Private room,273.0,1.0,2.0,No parties,1,Martha's Vineyard +4563,Big 1 Bedroom Brooklyn Ditmas Park,Private room,577.0,3.0,3.0,No smoking & No visitors,1,Boise +4564,Luxury NYC 1 Bed w/Gorgeous Views + Pool,Entire home/apt,255.0,2.0,3.0,No visitors,2,Atlantic City +4565,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,Entire home/apt,459.0,30.0,3.0,No children under 10 & No visitors,3,Boston +4566,cozy room /female guests,Private room,91.0,1.0,5.0,No visitors,1,Flint +4567,Birds singing and sunsets in NYC!,Private room,592.0,2.0,5.0,No smoking & No visitors,1,Laredo +4568,5min to Manhattan apartment in new luxury building,Entire home/apt,872.0,1.0,4.0,No smoking,4,Manchester +4569,Prime West Village haven,Entire home/apt,540.0,5.0,2.0,No children under 10 & No parties,4,Yakima +4570,Studio-like July sublet,Private room,293.0,31.0,5.0,No parties,2,Mosinee +4571,Tranquil bedroom in classic Bed-Stuy brownstone,Private room,1178.0,30.0,5.0,No visitors,2,Pocatello +4572,Beautiful Light Filled 1 Bedroom in Kosher Apt,Private room,588.0,2.0,1.0,No children under 10,1,Sacramento +4573,City Living with a Home Town Feel.,Private room,895.0,1.0,3.0,No visitors & No parties & No children under 10,2,Pellston +4574,Peaceful Artist Bedroom—Just 30 Min to Manhattan!,Private room,,3.0,5.0,No children under 10,2,Wenatchee +4575,Cozy Room - Free Cleaning + WiFi - Quick Walk to L,Private room,364.0,30.0,2.0,,2,Alpena +4576,Cozy East Village walk up,Entire home/apt,128.0,3.0,2.0,No children under 10 & No smoking,3,Marquette +4577,Cozy Gem in Harlem Close to ALL!,Entire home/apt,260.0,2.0,1.0,No smoking & No visitors & No pets,2,Memphis +4578,Beautiful Private Bed & Bathroom (no kitchen),Private room,1083.0,30.0,5.0,No pets,2,Allentown +4579,Large private room in heart of BK,Private room,892.0,2.0,3.0,No visitors,1,Ashland +4580,LARGE PERFECT 1 bedroom Clean and Chic w/ JACUZZI,Entire home/apt,1140.0,1.0,3.0,,7,Lincoln +4581,"Bright, Cozy studio in beautiful West Village!",Entire home/apt,113.0,2.0,5.0,No pets,2,Everett +4582,"Sunny, spacious room in Williamsburg Brooklyn Apt",Private room,541.0,2.0,5.0,No children under 10 & No parties,2,Jackson +4583,Bright & Sunny FULLY FURNISHED Room,Private room,847.0,7.0,5.0,No parties & No pets,2,Myrtle Beach +4584,A serene apartment to rejuvenate yourself.,Entire home/apt,503.0,2.0,2.0,No smoking & No pets & No parties,4,Indianapolis +4585,Private room w/ fire escape in beautiful Soho,Private room,727.0,3.0,5.0,No children under 10 & No visitors & No smoking,2,Hayden +4586,Pvt Room for Two Near JFK 6 mi/ LGA 10 mi- Olive,Private room,1140.0,2.0,3.0,No smoking,1,Kalamazoo +4587,Park Slope garden oasis,Entire home/apt,735.0,2.0,2.0,No children under 10,2,Norfolk +4588,1 Person Only 1 Bdrm LES/East Village HugeDeck,Private room,1069.0,2.0,2.0,No children under 10 & No smoking,2,Portland +4589,Upper West Side - Huge 1 Bdrm in a Luxury Bldg,Entire home/apt,917.0,2.0,2.0,,6,Lincoln +4590,1 BR in 2 BR Apt (Upper East Side),Private room,255.0,1.0,5.0,No visitors & No pets,2,El Paso +4591,NICE 1 BEDROOM CLOSE 3 MALLS AND SHOPPING,Entire home/apt,922.0,3.0,4.0,No children under 10 & No visitors,7,Worcester +4592,Entire floor in Brooklyn Townhouse w/large patio,Entire home/apt,308.0,3.0,2.0,No smoking,2,Bemidji +4593,Spacious and cozy Lower East Side bedroom,Private room,1039.0,1.0,5.0,,1,Rapid City +4594,Designers Lovely UWS Full Floor Townhouse Apt!,Entire home/apt,978.0,3.0,2.0,No pets & No smoking & No visitors,9,Grand Junction +4595,"Gorgeous, charming upper east side one bedroom",Entire home/apt,667.0,3.0,3.0,No smoking,6,Saipan +4596,Brooklyn Home By The Pier,Entire home/apt,549.0,1.0,4.0,No children under 10,4,Charlotte Amalie +4597,Cozy room on the UES,Private room,700.0,5.0,4.0,,2,Paducah +4598,Cozy room in the East Village - Manhattan,Private room,941.0,4.0,2.0,,2,Dayton +4599,Cozy Studio in the Heart of Manhattan,Entire home/apt,570.0,5.0,2.0,No smoking & No children under 10,2,Harrisburg +4600,LARGE SUNNY QUIET NY APARTMENT,Private room,1056.0,1.0,1.0,No children under 10 & No pets & No smoking,2,Hattiesburg +4601,Near Yankee Stadium,Entire home/apt,73.0,1.0,1.0,No pets,3,Belleville +4602,Charming one bedroom Upper East,Entire home/apt,92.0,1.0,4.0,No visitors,3,Eugene +4603,Lovely 2-room Studio in Crown Hghts,Entire home/apt,929.0,3.0,2.0,No visitors,6,Aspen +4604,Cozy large Full 1 Bedroom Apt,Entire home/apt,168.0,354.0,2.0,No children under 10,2,Gainesville +4605,R5 Private King Room LGA JFK Manhattan 15 min!,Private room,238.0,1.0,2.0,No parties,2,Saipan +4606,The home is where the heart is.,Entire home/apt,174.0,2.0,5.0,No visitors & No smoking,2,Toledo +4607,Luxury NYC Studio for Super Bowl 48,Entire home/apt,250.0,1.0,5.0,No children under 10 & No smoking,2,Arcata +4608,Private room in well furnished quintessential 2BR!,Private room,435.0,2.0,4.0,No pets & No visitors,2,Medford +4609,Rare Downtown First Floor Apt w Private Backyard,Entire home/apt,764.0,3.0,5.0,No parties & No children under 10 & No pets,4,Kotzebue +4610,Unique 2BR Apartment,Entire home/apt,394.0,2.0,3.0,No pets,2,Honolulu +4611,BROWNSTONE SUNDRENCHED BEAUTY,Entire home/apt,1028.0,3.0,,No pets & No children under 10 & No smoking,9,Mason City +4612,Large Bedroom by Grand Central Station in NYC,Private room,230.0,7.0,3.0,No smoking,1,Moab +4613,Beautiful Sunny Top Floor 1BD Flat,Entire home/apt,320.0,4.0,1.0,No children under 10 & No parties,3,Manchester +4614,"Luxe Large Studio Apt with Rooftop, Doorman, & Gym",Entire home/apt,228.0,9.0,2.0,No parties & No smoking,3,Lubbock +4615,Zen Apartment With Backyard,Entire home/apt,394.0,1.0,4.0,No children under 10,3,Decatur +4616,Trendy Private Harlem Room - Plants & Light!,Private room,880.0,2.0,5.0,No visitors,1,Newport News +4617,Cozy & Quiet 2 Bedroom / Heart of Lower Manhattan,Entire home/apt,791.0,2.0,2.0,No children under 10,4,Charleston +4618,Entire 2 bedroom top floor in Clinton Hill,Entire home/apt,317.0,28.0,5.0,No visitors,3,Austin +4619,15 minute train ride to Times Square,Private room,852.0,3.0,5.0,,2,Saginaw +4620,NEW YORK CITY!!! MANHATTAN!!!,Private room,80.0,5.0,2.0,No parties & No pets & No children under 10,2,Guam +4621,Newly renovated studio in hip Bushwick near subway,Entire home/apt,365.0,2.0,2.0,No parties & No pets,2,Binghamton +4622,Financial District Oasis Room-1 Queen Bed,Private room,136.0,4.0,3.0,No visitors & No smoking,2,Brainerd +4623,"Large, Sunny 25 min to Central Park",Private room,691.0,4.0,2.0,No pets,1,Shreveport +4624,Artsy Apartment - Large Bedroom in Upper Manhattan,Private room,522.0,1.0,5.0,No children under 10 & No visitors,2,Lansing +4625,IN MINT CONDITION-1BR&TERRACE-E 44TH/UNITED NATION,Entire home/apt,297.0,30.0,4.0,No pets,2,New York +4626,Cozy apt next to park & train for 4,Entire home/apt,1196.0,5.0,4.0,,7,Lewisburg +4627,Spacious & sunny room in Brooklyn!,Private room,192.0,2.0,5.0,No smoking,1,Melbourne +4628,Artsy Private BR in Fort Greene Cumberland,Private room,727.0,30.0,3.0,No visitors,1,Chattanooga +4629,Sun-soaked 1BR in Park Slope with amazing NYC view,Entire home/apt,101.0,1.0,4.0,No pets,2,Montgomery +4630,"Lux room near train station, LGA & Manhattan.",Private room,824.0,30.0,4.0,No visitors & No parties,1,Grand Forks +4631,2. Private 1BR Suite in Shared Marine Park Apt.,Private room,222.0,2.0,1.0,No pets,1,Hilton Head +4632,Co-op Apartment in The Lombardy Hotel- 250 sq. ft.,Entire home/apt,190.0,1.0,1.0,,2,Sacramento +4633,Studio Deluxe 1 - Wyndham Midtown 45,Private room,848.0,3.0,2.0,No pets & No smoking & No children under 10,1,Chattanooga +4634,Comfortable 1 Bedroom Gem in Chinatown / Lil Italy,Entire home/apt,54.0,1.0,,No smoking & No children under 10,2,Alexandria +4635,Private bedroom with private bathroom!,Private room,455.0,1.0,3.0,No visitors,2,Williston +4636,Sunny Room w/Master Bathroom in NYC,Private room,390.0,7.0,1.0,No children under 10 & No pets,1,Texarkana +4637,Spacious Harlem 1-Br. Terrace Apt with Doorman,Entire home/apt,1198.0,4.0,3.0,No parties,8,Montgomery +4638,Private Room in Large Apartment With Yard,Private room,1134.0,2.0,3.0,No children under 10 & No parties & No pets,1,Bangor +4639,"East Brodway in Lower East Side, quiete and cute!",Private room,994.0,8.0,5.0,No pets,1,Kotzebue +4640,Apt in W 48th with private patio,Entire home/apt,483.0,30.0,3.0,No pets,3,Dodge City +4641,SPACIOUS 3 BEDROOM APARTMENT In BROOKLYN!!,Entire home/apt,841.0,3.0,4.0,,4,Charlotte Amalie +4642,Crown Heights Guest House 3R3L,Entire home/apt,487.0,4.0,5.0,,2,Longview +4643,Your Fab Home Away from Home awaits You in NYC!!!!,Entire home/apt,641.0,2.0,3.0,No pets,2,Eau Claire +4644,Private Entrance + Sunny Spacious Room in 2BR Apt,Private room,930.0,30.0,3.0,No visitors & No smoking,2,Daytona Beach +4645,Private room in a perfect location in the city,Private room,360.0,954.0,3.0,No children under 10,1,Joplin +4646,Great 1BD waterfront City Island NY,Entire home/apt,126.0,3.0,5.0,No smoking,3,Columbia +4647,Bright Meatpacking Studio,Entire home/apt,521.0,2.0,3.0,,5,Grand Island +4648,One private room in a brand new 2BR Penthouse!,Private room,105.0,2.0,5.0,No children under 10 & No pets,1,Oklahoma City +4649,ABSOLUTE PRIVACY - 10 Mins to JFK 20 Mins to LGA!,Entire home/apt,919.0,2.0,3.0,,5,Wenatchee +4650,Big Bright Quiet Williamsburg Townhouse Family Apt,Entire home/apt,359.0,3.0,2.0,No smoking & No parties,2,Lexington +4651,Private bedroom and bathroom in Brooklyn,Private room,119.0,30.0,5.0,,2,Kahului +4652,Cozy apt in Bedstuy,Entire home/apt,822.0,14.0,2.0,No parties & No pets,6,Monroe +4653,Sunny well-located room near Times Sq. 41D2,Private room,55.0,7.0,3.0,No parties,2,Midland +4654,"Sweet, Small Brooklyn Room!",Private room,245.0,2.0,3.0,No smoking,1,Adak Island +4655,BRIGHT HARLEM FLOOR THRU,Entire home/apt,691.0,7.0,2.0,No pets,3,Missoula +4656,Group-Student-Friendly Bklyn House,Entire home/apt,989.0,2.0,3.0,,6,Yakutat +4657,Private Room in Beautiful Williamsburg Apt.,Private room,690.0,5.0,1.0,No visitors & No children under 10,2,Appleton +4658,Stylish Pre-war,Entire home/apt,1168.0,4.0,1.0,No pets & No visitors,2,Yakutat +4659,12 east 86th Steet Upper East Side Building,Entire home/apt,632.0,30.0,2.0,No smoking,3,Knoxville +4660,"Exquisite Private room Central Park Subway A,B,C",Private room,572.0,30.0,5.0,No visitors & No children under 10,2,Columbus +4661,2 Bed 2 Bath Close To Park Pool in building,Entire home/apt,386.0,31.0,5.0,,2,Dayton +4662,GRACIOUS HARLEM 1 BEDROOM,Entire home/apt,904.0,2.0,1.0,No smoking,2,Provo +4663,Friendly hosts,Private room,806.0,1.0,4.0,No smoking,2,Dallas +4664,#2 Minutes to JFK!!!,Private room,746.0,4.0,2.0,No visitors,1,Kalamazoo +4665,Sunny Greenpoint 1 Bedroom with vintage feel,Entire home/apt,75.0,3.0,3.0,No smoking,3,Elko +4666,★Spacious Private Room★ MANHATTAN + Close to Park!,Private room,213.0,4.0,3.0,No visitors,1,Lihue +4667,Spacious Private Access Near Trains M - L and J,Private room,800.0,2.0,4.0,No pets,1,New York +4668,Private King Luxury Room - 20 Mins to City,Private room,1138.0,2.0,3.0,,1,Fargo +4669,Charming West Village Brownstone Apartment,Entire home/apt,842.0,10.0,4.0,No parties,5,Pasco +4670,Entire Loft with Private Bath in Queens,Entire home/apt,1158.0,1.0,2.0,No smoking & No visitors,3,Sanford +4671,"Festive and Cozy Williamsburg Apt, 2 Bedrooms",Entire home/apt,815.0,5.0,5.0,No pets & No visitors,3,Little Rock +4672,Beautiful and Huge Room in Brooklyn,Private room,957.0,13.0,3.0,No parties & No pets,1,Houston +4673,1st Floor 3 Bedroom Apt Midtown NYC,Entire home/apt,91.0,2.0,4.0,No pets,2,Columbus +4674,"Minimalist Private Room in Queens, New York",Private room,1200.0,2.0,2.0,No pets & No parties,2,Sun Valley +4675,Manhattan - Upper East Side Lovely Private Bedroom,Private room,81.0,1.0,5.0,No pets & No parties,2,Watertown +4676,Modern 1 Bedroom in Dumbo / Vinegar Hill,Entire home/apt,1028.0,30.0,1.0,No parties & No smoking,6,San Antonio +4677,Cozy Harlem Jewel,Private room,1153.0,2.0,1.0,,1,Pierre +4678,"Stylish Large 2 Bedroom, Perfect Location",Entire home/apt,57.0,2.0,3.0,No parties & No smoking & No pets,2,Duluth +4679,Park Slope 2 bedroom - Amazing Access to All!!!,Entire home/apt,1034.0,2.0,3.0,No smoking & No pets,8,Rochester +4680,Hip East Village Flat,Entire home/apt,239.0,8.0,4.0,,2,San Francisco +4681,"Home 4 Medical Professionals - The ""Crepitus""",Private room,293.0,30.0,2.0,No visitors,2,Billings +4682,Lovely & bright apartment in center of Park Slope,Entire home/apt,1013.0,30.0,4.0,No smoking,9,Minneapolis +4683,Lovely Park Slope Pied a Terre,Entire home/apt,1086.0,5.0,2.0,No parties & No pets,10,Amarillo +4684,Private sunny room in Chelsea,Private room,96.0,40.0,3.0,No pets & No smoking,2,Redding +4685,Cozy Room 25 Minutes from Manhattan,Private room,298.0,1.0,2.0,No parties,2,Kotzebue +4686,Entire home-- Brownstone Brooklyn,Entire home/apt,768.0,28.0,5.0,No visitors & No smoking & No pets,2,Erie +4687,"Private room by LGA, Citifield and near Manhattan.",Private room,842.0,2.0,4.0,No parties,1,Providence +4688,Wonderful Getaway in Bedstuy,Private room,1033.0,2.0,3.0,,2,Oklahoma City +4689,Private Apartment In the Heart of Chelsea,Entire home/apt,253.0,5.0,5.0,No smoking,3,Iron Mountain +4690,Sunny and spacious 1-bedroom in Brooklyn,Private room,550.0,1.0,3.0,No smoking & No pets & No visitors,2,Wrangell +4691,La Quinta Central Park West,Private room,327.0,1.0,5.0,No parties,2,Fort Myers +4692,Great Private & Cozy bedroom in Crown Heights,Private room,239.0,7.0,4.0,No pets,2,Bloomington +4693,Cozy Inn,Private room,611.0,1.0,4.0,No pets & No children under 10,2,Appleton +4694,Micro Room A,Private room,589.0,1.0,3.0,No children under 10 & No smoking & No visitors,2,Meridian +4695,"Gorgeous 2BR, 2BA, Pool + Doorman, near Times Sq by Blueground",Entire home/apt,722.0,30.0,5.0,,5,Fargo +4696,Views ! - Unique penthouse in UWS,Entire home/apt,1143.0,21.0,3.0,No pets,9,Joplin +4697,Suite with stunning view in convenient location,Private room,298.0,3.0,2.0,No children under 10 & No parties,2,Everett +4698,Crown heights Brooklyn House NYC,Entire home/apt,143.0,1.0,2.0,No parties & No visitors & No pets,2,Rock Springs +4699,Cozy Room in Upper-East Side Tower,Private room,1068.0,20.0,5.0,,2,Burbank +4700,The Halsey Treehouse,Private room,577.0,1.0,4.0,No pets,1,Hancock +4701,Green and spacious 1 Bedroom Apt with balcony!,Private room,724.0,5.0,3.0,No pets,2,Portland +4702,Nicest Room in Manhattan - Chelsea Beauty,Private room,335.0,1.0,5.0,No smoking & No pets & No parties,2,Arcata +4703,Harlem Gem,Entire home/apt,813.0,3.0,3.0,No children under 10 & No pets,3,Moline +4704,One bedroom in luxury FiDi building,Private room,675.0,5.0,2.0,,2,Flint +4705,Private Bedroom #2,Private room,689.0,1.0,2.0,No parties,2,Asheville +4706,HUGE East Village 2 Bd w/Priv Yard,Entire home/apt,67.0,3.0,4.0,No pets & No parties,2,Fresno +4707,SoHo LOFT #2 Broadway Av. - Amazing Location!,Entire home/apt,762.0,4.0,3.0,No parties & No smoking & No pets,4,Gunnison +4708,1st flr full studio apartment- entire place/SAFE,Entire home/apt,715.0,3.0,5.0,No pets & No parties & No children under 10,6,West Yellowstone +4709,Cozy & Elegant Private 1 Bedroom,Private room,212.0,2.0,4.0,,2,St. Louis +4710,Clean room with private bathroom in Bushwick!,Private room,1189.0,1.0,4.0,No visitors,2,Rock Springs +4711,Beautiful Private Room 15 min from JFK Airport,Private room,181.0,2.0,3.0,No parties & No visitors,1,White Plains +4712,Beautiful Apartment by Astoria park,Entire home/apt,474.0,4.0,1.0,,4,Little Rock +4713,Spacious Studio ( W 48 street ),Entire home/apt,222.0,30.0,2.0,No smoking & No pets,3,Indianapolis +4714,Spacious Sunny One Bed in Williamsburg,Entire home/apt,686.0,10.0,4.0,No smoking,3,Islip +4715,"Private room Bushwick, BK!",Private room,1092.0,1.0,3.0,No visitors & No parties & No pets,1,Jackson +4716,Brooklyn 1 bedroom near it all,Entire home/apt,798.0,7.0,4.0,No smoking,6,Greer +4717,Spacious 1 bedroom in Prime Williamsburg,Entire home/apt,515.0,3.0,2.0,No pets & No visitors & No smoking,5,Newark +4718,Luxury Apt very close to public transport,Private room,871.0,5.0,4.0,No pets & No children under 10,2,Wilmington +4719,AMAZING CENTRAL MANHATTAN 1 BED W/BALCONY FITS 4!,Entire home/apt,1198.0,1.0,3.0,,7,Bozeman +4720,SoBro Guest House,Entire home/apt,557.0,3.0,4.0,No visitors & No smoking,3,Florence +4721,Comfortable master room in Brooklyn close to train,Private room,471.0,2.0,4.0,No children under 10,2,St. George +4722,Greenpoint private 2 rooms,Private room,412.0,2.0,2.0,No pets,2,Pullman +4723,"Sunny Room Near Ferry, Train, bars, Restaurants !",Private room,675.0,2.0,2.0,No smoking & No parties & No children under 10,2,Vernal +4724,Sunny 1 bedroom in spacious 2 bedroom apt.,Private room,1034.0,30.0,3.0,No pets,1,Everett +4725,King's Airbnb,Entire home/apt,783.0,2.0,3.0,No parties,2,West Yellowstone +4726,Casa Blue In the Heart of Soho,Entire home/apt,833.0,2.0,5.0,No pets & No smoking & No children under 10,4,Florence +4727,Small room nearby C-train station (female only),Private room,232.0,1.0,2.0,No pets & No visitors,2,Bakersfield +4728,Manhattan - Columbus Circle Apt,Entire home/apt,150.0,1.0,2.0,No parties,3,Anchorage +4729,Sunny + Spacious Master Bedroom with Outdoor Deck,Private room,109.0,3.0,5.0,No pets,1,New York +4730,Crown Heights Hideaway,Private room,1100.0,1.0,3.0,,1,Erie +4731,Private room with lots of surprise,Private room,1104.0,2.0,5.0,No pets & No children under 10,2,Decatur +4732,Cozy room in a Victorian house in Central Brooklyn,Private room,1110.0,1.0,3.0,No parties & No smoking & No pets,2,Belleville +4733,Cozy 3rd Floor Studio in the Heart of Bedstuy,Entire home/apt,1099.0,2.0,3.0,No smoking,6,Raleigh +4734,BEAUTIFUL&BRIGHT 1 bd (E. Village),Private room,207.0,1.0,5.0,No pets,1,Wilmington +4735,Entire JR. One bedroom PRIME West Village,Entire home/apt,1017.0,7.0,3.0,No visitors,2,Birmingham +4736,Cosy Williamsburg Apartment in Brooklyn New York,Entire home/apt,149.0,5.0,3.0,No parties & No pets,3,Barrow +4737,Room in central Manhattan,Private room,145.0,2.0,5.0,No children under 10,2,Ogden +4738,Serene art-filled apartment near Prospect Park,Entire home/apt,554.0,5.0,3.0,No pets & No parties & No smoking,3,Monroe +4739,"West 16th street, Charming Svced 1bd Apt",Entire home/apt,439.0,30.0,4.0,No pets,3,Deadhorse +4740,Large Bohemian Room in Brownstone Apartment,Private room,835.0,1.0,1.0,No smoking & No children under 10,2,Roswell +4741,Huge Unique Two Story E.Vill Oasis,Entire home/apt,838.0,2.0,4.0,No smoking & No visitors,6,Kahului +4742,Amazing Private room in LIC minutes to Manhattan,Private room,97.0,1.0,4.0,No smoking,2,Charlottesville +4743,Cool Private Room in Dreamy Bedstuy Apartment,Private room,1199.0,3.0,5.0,No parties & No visitors & No smoking,1,St. Cloud +4744,Gorgeous 1-2 BDR apartment in the Lower East Side,Entire home/apt,107.0,1.0,4.0,No children under 10 & No pets,2,Cleveland +4745,Huge Private Suite in shared apt,Private room,474.0,4.0,5.0,,2,Baton Rouge +4746,Cozy & Private 1 Bedroom Garden Level Apartment,Entire home/apt,153.0,3.0,5.0,No smoking & No parties,2,New Bern +4747,Williamsburg Gem in BK! Queen BR in Luxury Apt,Private room,889.0,2.0,4.0,,2,Memphis +4748,Private bedroom & bath/Times Square & Central Park,Private room,522.0,2.0,2.0,No visitors,1,Monroe +4749,Spacious Studio Apartment,Entire home/apt,1059.0,3.0,5.0,No parties,9,Kearney +4750,Cozy UWS Only two blocks away from Central Park!,Private room,552.0,2.0,3.0,No smoking,1,Minneapolis +4751,Modern Luxury Loft 3bd Williamsburg,Entire home/apt,980.0,3.0,5.0,No pets & No parties,5,Detroit +4752,#1,Entire home/apt,641.0,31.0,2.0,No children under 10,4,Mobile +4753,prime central park location - 2 mins to subway,Entire home/apt,513.0,1.0,5.0,No parties & No smoking,3,Midland +4754,Private room in Brooklyn,Private room,673.0,3.0,3.0,No visitors & No parties & No pets,1,Rhinelander +4755,Lovely House in the Hill/ 2bedrm apt,Entire home/apt,284.0,7.0,3.0,,3,Baltimore +4756,1BR Apartment in the Heart of the East Village,Entire home/apt,1142.0,4.0,5.0,No smoking & No visitors,8,Moab +4757,Suite 18 - Private Room w/ private bath,Private room,643.0,1.0,2.0,,2,Yakutat +4758,peaceful space with a view,Entire home/apt,249.0,2.0,3.0,No smoking,2,Devils Lake +4759,2 bed spacious/Quiet Upper Ditmars Astoria Wifi.,Entire home/apt,1184.0,11.0,2.0,No parties,6,Hays +4760,"Bright room in huge, dog-friendly apt w/ balcony",Private room,93.0,2.0,2.0,No visitors,1,Columbus +4761,Mid-century-bricks exposed in Manhattan/ 2 beds,Entire home/apt,1089.0,2.0,3.0,No children under 10 & No parties & No visitors,9,Fort Dodge +4762,Wingate Manhattan Midtown (#1),Private room,653.0,1.0,4.0,,1,Del Rio +4763,"Cozy Apt steps to Park, Subway, Restaurants, Bars",Entire home/apt,623.0,2.0,1.0,No children under 10 & No parties & No visitors,2,Decatur +4764,Yellow submarine,Private room,179.0,2.0,5.0,No pets & No visitors & No children under 10,2,Myrtle Beach +4765,Newly Renovated Studio Near Manhattan,Entire home/apt,1099.0,2.0,3.0,No parties & No children under 10,9,Wichita +4766,Comfy room near trendy Columbia University,Private room,907.0,3.0,4.0,No children under 10 & No smoking & No visitors,1,Bend +4767,Stylish apartment in the heart of New York,Entire home/apt,1086.0,2.0,3.0,No smoking,8,Flagstaff +4768,Beautiful 1-br with Spectacular View,Entire home/apt,538.0,14.0,3.0,No visitors,5,Dayton +4769,Large room in sunny Prime Williamsburg pad.,Private room,1150.0,1.0,3.0,No children under 10 & No pets,2,San Luis Obispo +4770,NYC Lofted Room in the Lower East Side,Private room,135.0,5.0,2.0,No pets,1,Melbourne +4771,Private Room for 1 person in LES/Chinatown,Private room,516.0,1.0,4.0,No pets & No smoking & No parties,2,Rock Springs +4772,Heart of the West Village!,Private room,784.0,3.0,2.0,No children under 10,2,Boston +4773,Great private room in NYC 20 min to Manhattan,Private room,61.0,1.0,3.0,,2,Aspen +4774,Bright Modern Chic & Clean East Village APT,Entire home/apt,732.0,1.0,4.0,No pets & No smoking,6,Clarksburg +4775,1 bedroom available in heart of east village,Private room,637.0,7.0,2.0,No smoking,2,Bethel +4776,"Perfect Studio, Great location!",Private room,787.0,2.0,2.0,No pets & No visitors,2,Everett +4777,Cozy 1 Bedroom with Queen bed,Private room,1049.0,3.0,3.0,No smoking,2,Pocatello +4778,PRIVATE studio/not shared/ SAFE/ CLEAN/Affordable,Entire home/apt,241.0,3.0,4.0,No pets & No smoking & No parties,2,Bishop +4779,Great Location,Private room,1001.0,2.0,1.0,,1,Owensboro +4780,Hosting Harlem Brownstone Apartment,Entire home/apt,275.0,7.0,3.0,No pets,2,Owensboro +4781,Lux 1 BR NYC Midtown West Apartment,Entire home/apt,393.0,30.0,5.0,No visitors,3,Midland +4782,Private room/bathroom on the Upper West Side,Private room,155.0,1.0,4.0,No parties,2,South Bend +4783,Heights Haven,Entire home/apt,265.0,30.0,4.0,No parties & No visitors,3,Rhinelander +4784,Minutes from JFK airport and famous mall,Private room,711.0,2.0,3.0,No visitors & No parties,2,Dallas +4785,A Garden Grows in Greenpoint / Craft Chateau,Private room,1078.0,2.0,4.0,No smoking,1,Wichita +4786,Cozy Room in Lower East Side- NYC,Private room,94.0,3.0,5.0,No visitors & No children under 10,1,Savannah +4787,"Sizable UWS 1BR w/ Open kitchen, Doorman + Gym by Blueground",Entire home/apt,919.0,30.0,4.0,No children under 10,7,Bishop +4788,Quiet garden studio in Bushwick,Entire home/apt,941.0,,4.0,No smoking,5,Santa Ana +4789,Private Cozy 2-Bedroom Clinton Hill Apartment,Entire home/apt,942.0,2.0,5.0,No children under 10 & No parties,4,Sanford +4790,"Big bedroom in Astoria, 20 min from Central Park",Private room,110.0,3.0,5.0,No parties & No smoking,1,Chicago +4791,Bohemian getaway in NYC,Entire home/apt,975.0,2.0,4.0,No visitors,6,Green Bay +4792,"UWS Gem by Lincoln Center, Julliard & Central Park",Entire home/apt,790.0,3.0,4.0,No smoking,6,Presque Isle +4793,Quaint 2 Bedroom Apt in LES (6 ppl),Entire home/apt,92.0,1.0,5.0,,3,Texarkana +4794,MODERN GARDEN 1BR IN NEWLY RENOVATED TOWNHOUSE,Entire home/apt,949.0,2.0,5.0,No children under 10,2,Appleton +4795,Spacious Apartment in Park Slope Brownstone,Entire home/apt,539.0,11.0,1.0,No parties & No children under 10 & No smoking,4,Twin Falls +4796,Private room in busy location Br,Private room,1042.0,2.0,1.0,No smoking & No pets,1,Eau Claire +4797,In the heart of the West Village- cute apartment!,Entire home/apt,1179.0,3.0,3.0,No parties,6,Cody +4798,New York Apartment,Private room,1062.0,1.0,2.0,No smoking,2,Waco +4799,The Big Apple Paradise. 10 minutes from JFK,Entire home/apt,144.0,2.0,3.0,No smoking & No children under 10 & No visitors,2,Christiansted +4800,Lovely room(s) in Brooklyn brownstone w/ backyard,Private room,774.0,1.0,3.0,No smoking & No visitors,2,Hibbing +4801,"Good Access to Everywhere:)Bushwick, Brooklyn NY",Private room,197.0,1.0,5.0,No children under 10,2,Albuquerque +4802,Lovely Bed-Stuy Brownstone Parlor Apartment 1BR,Entire home/apt,845.0,5.0,3.0,No visitors & No smoking & No pets,2,Johnstown +4803,SIMPLEHOME,Entire home/apt,74.0,1.0,5.0,No smoking & No parties,2,Des Moines +4804,Sunny Chelsea Studio,Entire home/apt,1118.0,1.0,1.0,No children under 10,4,Sault Ste. Marie +4805,Brooklyn Bed and Breakfast next to Prospect Park,Entire home/apt,708.0,2.0,4.0,No visitors,6,Tulsa +4806,"Spacious Charming NYC Apt, 10 min to Midtown",Entire home/apt,928.0,10.0,3.0,No smoking,7,Milwaukee +4807,Cozy Junior 1BR in inwood.,Entire home/apt,192.0,2.0,3.0,No visitors & No children under 10,2,Burbank +4808,Balcony on 2nd floor Entire Apt close to Subway,Entire home/apt,195.0,1.0,3.0,No pets & No children under 10 & No smoking,3,Ponce +4809,MODERN AND NEWLY 4 BEDS / 2 BATHS IN LUXURY BUILD.,Entire home/apt,1150.0,4.0,2.0,,2,Charlotte Amalie +4810,Small Homey Studio in a Big Noisy City,Entire home/apt,847.0,2.0,2.0,No parties,8,Lawton +4811,Sunny & Quiet Room in Woodside,Private room,109.0,1.0,4.0,,2,Liberal +4812,"HUGE SPACE, HEART OF BROOKLYN, 1 BLOCK FROM SUBWAY",Private room,153.0,1.0,2.0,No visitors & No pets & No smoking,2,Sacramento +4813,Lovely studio,Entire home/apt,117.0,1.0,4.0,No visitors,3,Los Angeles +4814,Sunny Studio Near Central Park,Entire home/apt,496.0,2.0,4.0,No parties & No smoking,3,Raleigh +4815,"Downtown, 1 Bedroom with living room + sofa bed",Entire home/apt,271.0,5.0,3.0,No visitors & No children under 10,3,Elmira +4816,Charming House!!,Private room,929.0,3.0,4.0,No pets & No visitors,1,Minot +4817,Large 7 Bed minutes from Midtown Manhattan!,Entire home/apt,1030.0,2.0,2.0,No parties & No pets,2,Tucson +4818,Cozy East Village Loft!,Private room,896.0,3.0,5.0,No children under 10 & No pets,1,El Paso +4819,Your Dream 1 bed Apartment in the heart of SoHo,Entire home/apt,701.0,2.0,5.0,No parties & No children under 10,7,Toledo +4820,Cute & Comfy 1 bedroom apt (Downtown NYC),Entire home/apt,619.0,3.0,5.0,No children under 10,3,Bend +4821,"*Huge, Clean & Spacious Stay in NYC*",Private room,536.0,3.0,1.0,No children under 10,1,Birmingham +4822,Noel Palace,Private room,147.0,3.0,3.0,No parties & No visitors,2,Grand Rapids +4823,The Wielingen,Private room,672.0,1.0,5.0,No children under 10,2,Charlotte Amalie +4824,Spacious private room close St. Barnabas Hospital,Private room,144.0,2.0,4.0,No smoking,1,Atlanta +4825,Charming 2 Bedroom Space in Downtown Brooklyn,Private room,841.0,15.0,2.0,No visitors & No pets,2,Akron +4826,Huge Artist Loft Space - Red Hook,Entire home/apt,1172.0,2.0,3.0,No parties,9,Kalamazoo +4827,Entire Floor In Landmarked Building,Entire home/apt,520.0,10.0,2.0,No parties,3,Lansing +4828,Manhattan white room. Walk to central park,Private room,895.0,1.0,4.0,No children under 10 & No parties & No visitors,2,Lake Charles +4829,"Luxury room w/ balcony, 5 mins to subway",Private room,84.0,5.0,3.0,No smoking & No parties,2,Baltimore +4830,A Stunning Private 1 Bedroom in Downtown Flushing,Entire home/apt,596.0,30.0,5.0,No children under 10,5,Rock Springs +4831,Habitación ubicada céntricamente en la ciudad.,Private room,361.0,2.0,5.0,No children under 10,2,Beaumont +4832,7 mins from Times Sq! Modern elevator building!,Entire home/apt,987.0,4.0,4.0,No pets,4,Hobbs +4833,"Bright Williamsburg room, 1-stop from Manhattan",Private room,958.0,4.0,3.0,No smoking,1,Johnstown +4834,Ft Greene: 2-3 Bedroom Duplex w/Garden,Entire home/apt,174.0,6.0,4.0,No children under 10,3,Aberdeen +4835,307 E 44th st 1BR great loc,Entire home/apt,993.0,30.0,1.0,No children under 10,3,Providence +4836,Comfort Haven,Private room,910.0,1.0,3.0,No smoking & No visitors & No parties,2,Seattle +4837,Lovely HUGE Master Bed + Study,Private room,423.0,3.0,5.0,,2,Jackson +4838,Location Moreno,Private room,948.0,30.0,3.0,No children under 10 & No parties,1,Jackson +4839,Entire Newly Renovated Sugar Hill Apt,Entire home/apt,109.0,3.0,2.0,,3,Fargo +4840,Available in August only. One room with twin bed.,Private room,554.0,15.0,1.0,No smoking & No pets,2,Santa Rosa +4841,Private community close to all the NYC & NJ action,Entire home/apt,456.0,3.0,5.0,No parties,4,Rhinelander +4842,~Flatiron 2 Bedroom~Amazing Location~Sleeps 6~,Entire home/apt,184.0,4.0,5.0,No children under 10 & No parties,2,Fort Lauderdale +4843,Private charming room for gate away.,Private room,529.0,4.0,3.0,No visitors & No children under 10 & No pets,1,Midland +4844,XTRA LARGE~PRIME UPPER EAST SIDE-1ST AVE&EAST 86TH,Entire home/apt,421.0,30.0,5.0,,4,Des Moines +4845,Studio in Upper East Side,Entire home/apt,402.0,15.0,4.0,No visitors & No parties & No children under 10,4,Aberdeen +4846,The Hub 2 for 4,Entire home/apt,516.0,3.0,2.0,No children under 10 & No smoking,3,Lansing +4847,"Spacious, Cozy 1 Bedroom",Entire home/apt,588.0,1.0,2.0,No visitors,4,Eugene +4848,Quite & Cozy High Raise Atmosphere,Private room,635.0,1.0,5.0,No visitors,1,Medford +4849,Cozy 2,Private room,151.0,3.0,4.0,,1,Savannah +4850,"Large, charming studio on UWS",Entire home/apt,151.0,1.0,1.0,,2,St. George +4851,Chef's Kitchen and private garden,Entire home/apt,989.0,30.0,4.0,No smoking,4,Devils Lake +4852,apartment in ft Greene. Close to park and subway,Entire home/apt,146.0,28.0,5.0,No visitors,2,Anchorage +4853,Spacious 2 bedroom close to Manhattan,Entire home/apt,357.0,4.0,3.0,,3,Watertown +4854,2 Bedroom Loft in Clinton Hill,Entire home/apt,740.0,2.0,2.0,,6,Beaumont +4855,*Delightful budget room for travelers!,Private room,941.0,2.0,3.0,,1,New Bern +4856,"Cosy room in NYC, two blocks from Central Park!",Private room,108.0,3.0,3.0,No smoking & No pets,1,Wenatchee +4857,Sunny one-bedroom with terrace in Park Slope,Entire home/apt,628.0,70.0,4.0,No parties & No pets,2,Santa Ana +4858,Female Only Clean15min to Manhattan,Private room,805.0,40.0,1.0,No pets,2,Bend +4859,Private BR & Bath - Victorian Home,Private room,509.0,2.0,1.0,No pets & No visitors & No children under 10,2,Aguadilla +4860,The Perfect Upper East Side Apartment,Entire home/apt,847.0,1.0,3.0,No visitors,2,San Diego +4861,Cozy easy village apartment in central location,Private room,1047.0,4.0,2.0,,1,Miami +4862,Medical Student Room A : Brooklyn Hospitals,Private room,508.0,30.0,2.0,No smoking,2,Fort Myers +4863,Sunny 2BR in townhouse on cutest E Vill block,Entire home/apt,523.0,4.0,5.0,No visitors & No parties & No pets,3,Dubuque +4864,West Village Apt in the Heart of the Action,Entire home/apt,985.0,2.0,4.0,No parties & No pets & No children under 10,7,Waterloo +4865,5 STARS***MIDTOWN EAST-BRAND NEW!!!,Entire home/apt,100.0,30.0,5.0,No visitors & No parties & No pets,2,Hyannis +4866,Custom home by lake and NYC,Entire home/apt,769.0,1.0,4.0,No pets & No children under 10 & No smoking,2,Scranton +4867,Spacious 1BR Midtown Manhattan w DM,Entire home/apt,590.0,2.0,3.0,No smoking,5,Montgomery +4868,Broadway 1,Entire home/apt,677.0,2.0,4.0,No smoking,3,Everett +4869,"Large, cozy Studio in Morningside Heights",Entire home/apt,843.0,2.0,4.0,No pets & No visitors,4,Anchorage +4870,Big and Relaxing studio ; great location.,Entire home/apt,206.0,2.0,2.0,No smoking & No children under 10,3,Portland +4871,Hamilton Heights/City College,Private room,83.0,1.0,4.0,,1,Bishop +4872,"Quiet, tranquil room in the middle of everything!",Private room,493.0,1.0,5.0,No visitors & No pets,1,Colorado Springs +4873,East meets West,Entire home/apt,375.0,3.0,4.0,No parties & No smoking & No children under 10,3,Laramie +4874,"3-Bedroom Townhouse in Bed-Stuy, Brooklyn.",Entire home/apt,464.0,4.0,4.0,No smoking,2,Hays +4875,"Magical Artist Brownstone, Beautiful Colors Room",Private room,158.0,4.0,2.0,,2,Fort Leonard Wood +4876,Affordable Spacious Refurbished Room in Bushwick!,Private room,274.0,2.0,1.0,No visitors,1,Charlotte +4877,Gorgeous Garden Apt Steps To Park,Entire home/apt,1176.0,1.0,4.0,No smoking,4,Jacksonville +4878,Greenpoint Room,Entire home/apt,568.0,3.0,2.0,No visitors & No parties,5,Del Rio +4879,Studio Deluxe 2- Wyndham Midtown 45,Private room,815.0,3.0,5.0,No children under 10,1,Chicago +4880,Lovely Brooklyn Room near train stop,Private room,1022.0,2.0,3.0,No visitors,2,Medford +4881,"Private room in sunny, modern Bushwick apartment!",Private room,165.0,2.0,1.0,No pets & No smoking,1,Lincoln +4882,Crash Pad Close to LGA/JFK/Manhattan,Shared room,740.0,1.0,4.0,No visitors,1,Liberal +4883,Fully furnished lxury 2 BR with outdoor space (2E),Entire home/apt,722.0,30.0,2.0,No children under 10,3,Valdosta +4884,Cozy 2 Bedroom Condominium,Entire home/apt,55.0,1.0,2.0,No parties,3,Bakersfield +4885,Awesome Green Vill. Penthouse Apt.,Entire home/apt,1088.0,1.0,2.0,No children under 10 & No smoking,10,North Bend +4886,"Brooklyn, Where my story begins...",Entire home/apt,1023.0,3.0,2.0,,8,Daytona Beach +4887,Bright & chic 1BR in the West Village,Entire home/apt,631.0,2.0,1.0,,3,Duluth +4888,Wingate Manhattan Midtown (#1),Private room,653.0,1.0,4.0,No visitors & No pets & No smoking,1,Sault Ste. Marie +4889,2 Double Bed Hotel Style WYNDHAM MIDTOWN 45 *NYC*,Private room,226.0,3.0,2.0,No visitors,2,Lafayette +4890,Modern & Airy 1 Bedroom Apt in heart of Greenpoint,Entire home/apt,592.0,2.0,5.0,No children under 10 & No pets,4,Plattsburgh +4891,Spacious Washington Heights 1 Bedroom,Entire home/apt,943.0,15.0,4.0,No children under 10 & No visitors,8,Sarasota +4892,"1BR in Newly Renovated Apartment - Rm C, Bushwick!",Private room,288.0,1.0,4.0,No visitors & No children under 10 & No smoking,2,Evansville +4893,Le Petit Château,Entire home/apt,1119.0,3.0,5.0,No visitors & No smoking & No parties,9,Jackson +4894,Charming Upper West Private Floor,Private room,505.0,1.0,5.0,No parties & No pets,2,St. George +4895,Upper East Side 1 Bedroom Near MSK,Entire home/apt,261.0,30.0,4.0,No children under 10,2,Kotzebue +4896,Private Room in Spacious Apartment with Patio!,Private room,510.0,2.0,5.0,,1,West Yellowstone +4897,24HR Doorman Condo&Gym 3Blocks From Time Square!!!,Entire home/apt,364.0,2.0,2.0,No parties,2,Tyler +4898,Upper West Side Apartment,Entire home/apt,589.0,4.0,2.0,No pets & No visitors,2,Liberal +4899,Spacious and Bright 1.5 Bedroom by Prospect Park,Entire home/apt,807.0,13.0,3.0,No pets,5,Fargo +4900,A Gem In Downtown Flushing - Elegance and Class #1,Private room,1088.0,2.0,3.0,No pets,2,Colorado Springs +4901,Central Park Vacation,Private room,449.0,2.0,5.0,No children under 10 & No smoking,1,Champaign +4902,Comfortable and Cozy!,Private room,1143.0,1.0,2.0,No smoking & No pets,1,Augusta +4903,NYC Studio Apt right by Central Park!!,Entire home/apt,169.0,30.0,3.0,,2,Arcata +4904,*NO GUEST SERVICE FEE* Luxury Studio Suite w/ Free Continental Breakfast,Entire home/apt,390.0,3.0,2.0,No smoking & No visitors & No parties,2,Denver +4905,Incredible Views! Zen-Style Residence In The Sky,Entire home/apt,364.0,3.0,5.0,No smoking,2,Santa Ana +4906,"Sunny, Spacious Town Home w. Private Backyard!",Entire home/apt,451.0,2.0,5.0,No parties,2,Casper +4907,SUN FILLED 1BR in ARTSY FORT GREENE,Entire home/apt,62.0,21.0,3.0,No pets,2,Colorado Springs +4908,Large williamsburg apt. Sleeps 4.,Entire home/apt,515.0,2.0,1.0,No visitors,3,Saipan +4909,East Village - Beautiful 1 Bedroom,Private room,93.0,5.0,2.0,No smoking,1,Missoula +4910,Basement Suite w/Private Entrance,Entire home/apt,413.0,2.0,5.0,,2,La Crosse +4911,Large Beautiful BedStuy Apartment,Entire home/apt,941.0,2.0,5.0,No pets,3,Kotzebue +4912,CHIC EVENT SPACE,Entire home/apt,1068.0,1.0,5.0,No visitors,2,San Diego +4913,Private room in two fl apartment,Private room,1044.0,2.0,5.0,No children under 10 & No visitors,1,Hilo +4914,Large Upper West Side Apartment with Rooftop,Entire home/apt,408.0,3.0,3.0,No visitors,4,Allentown +4915,A Crown Heights Holiday,Private room,828.0,1.0,3.0,No pets,2,Syracuse +4916,Rock Rock Rockaway Beach House,Entire home/apt,149.0,2.0,4.0,,2,Juneau +4917,"Midtown 2 Bed United Nations Loc, Full Kitchen",Entire home/apt,245.0,3.0,4.0,No visitors,3,Rockford +4918,Bright mid-century brownstone apt,Entire home/apt,902.0,2.0,3.0,No parties,2,St. Petersburg +4919,Private & Cozy Room in Bushwick,Private room,258.0,1.0,2.0,No parties,2,Stillwater +4920,Great! Private Room in Sunnyside,Private room,187.0,1.0,3.0,No parties,1,Fort Wayne +4921,Charming 1 Bedroom in Townhouse,Entire home/apt,227.0,30.0,1.0,No children under 10,3,Staunton +4922,2-Bedroom Presidential 1 - Wyndham Midtown 45,Entire home/apt,819.0,3.0,2.0,No smoking,3,Wrangell +4923,"**Newly Renovated, Cozy, Urban Oasis entire apt**",Entire home/apt,820.0,2.0,3.0,No visitors & No children under 10 & No pets,4,Bloomington +4924,Unfurnished 2 bedrooms for rent at the end of May!,Private room,481.0,5.0,4.0,No visitors,2,Lafayette +4925,Sonder | 180 Water | Pleasant 2BR + Rooftop,Entire home/apt,394.0,29.0,2.0,No smoking & No visitors,3,Honolulu +4926,Sunny two bedroom-two bath in doorman building UWS,Entire home/apt,765.0,7.0,5.0,No children under 10,4,Madison +4927,specious 1bd apt on Saint Marks Pl,Entire home/apt,,6.0,4.0,No parties & No children under 10,3,Sheridan +4928,Modernly Furnished Studio Apt in Midtown NYC,Entire home/apt,784.0,30.0,2.0,No pets,6,La Crosse +4929,A huge bedroom in Harlem,Private room,373.0,30.0,3.0,No smoking,2,Worcester +4930,UNIQUE & COZY STUDIO NEAR CENTRAL PARK,Entire home/apt,930.0,5.0,,No parties,9,Spokane +4931,River View Apartment,Entire home/apt,1107.0,2.0,3.0,No pets,2,Burbank +4932,Beautiful one bedroom in Soho,Entire home/apt,751.0,2.0,4.0,No parties,6,Del Rio +4933,LUX 2 Bedroom Sleep 6 City Center Private Deck,Entire home/apt,546.0,3.0,5.0,No smoking & No parties & No pets,3,Escanaba +4934,Cozy room in the the heart of artful Bushwick BK,Private room,634.0,2.0,3.0,No children under 10 & No pets,1,Greer +4935,⭐⭐⭐Sleeps 10! Rare 4 Bedroom Apt Close to NYC,Entire home/apt,787.0,2.0,4.0,No parties & No children under 10,2,Joplin +4936,Brooklyn Home with a View,Entire home/apt,391.0,4.0,5.0,,3,Myrtle Beach +4937,Location Angel Boy,Private room,198.0,31.0,1.0,No children under 10,1,Myrtle Beach +4938,30 minutes to Times Square! 10 to Williamsburg!,Private room,671.0,4.0,5.0,No smoking & No parties,1,Yakima +4939,PRIME LOCATION CLEAN SOHO PRIVATE ROOM 2 BEDROOM,Private room,919.0,1.0,4.0,No smoking,2,Phoenix +4940,Room in South Harlem near Central Park,Private room,703.0,3.0,4.0,,2,Portland +4941,Spacious Garden Apt in Clinton Hill/Ft Greene,Entire home/apt,1006.0,3.0,3.0,No children under 10 & No visitors & No smoking,3,Knoxville +4942,"Spacious Midtown 1BR, w/ Balcony, Fitness center + Doorman by Blueground",Entire home/apt,99.0,30.0,4.0,,2,Tucson +4943,Cozy Shared Studio 10 minutes from Times Square!,Shared room,373.0,1.0,2.0,No children under 10 & No parties & No smoking,1,Baltimore +4944,Rare Spacious City Apartment - WIFI & GYM,Entire home/apt,904.0,3.0,4.0,No pets,2,Ogden +4945,✈ NYC/Travelers. New Private Access Room Bed Full,Private room,1158.0,2.0,5.0,No pets,1,New York +4946,Stylish Art-Filled Clinton Hill Apartment,Private room,142.0,4.0,2.0,No parties,2,Vernal +4947,Cheerful & spacious 1-bedroom by Columbia Medical.,Entire home/apt,393.0,15.0,4.0,No parties & No visitors,3,Dickinson +4948,"Large luxury 1 BR with views, greenwich village!",Entire home/apt,1138.0,2.0,2.0,No children under 10 & No smoking & No pets,9,Bethel +4949,Upscale Living. Home Away from Home.,Entire home/apt,616.0,2.0,3.0,No parties & No pets & No smoking,5,Lincoln +4950,"Spacious 2 BR Clinton Hill Apartment-Brooklyn, NY",Entire home/apt,823.0,1.0,2.0,No pets,6,Louisville +4951,"Sunny, ample, quiet w/balcony!",Entire home/apt,727.0,5.0,3.0,No visitors,6,Colorado Springs +4952,Beautiful Room/20 min downtown NYC,Private room,116.0,4.0,5.0,No pets & No children under 10 & No parties,1,Paducah +4953,Spacious room 2mins from 52st-Woodside 7 train!,Private room,253.0,30.0,4.0,No smoking,2,Mobile +4954,"#1 Spacious Cozy Room, 30 minutes from Manhattan",Private room,925.0,30.0,4.0,No children under 10,1,Portsmouth +4955,Modern apartment in the heart of Williamsburg,Entire home/apt,561.0,5.0,5.0,No pets,5,Grand Junction +4956,"Sunny & Clean Apt, Ideal Location",Entire home/apt,911.0,1.0,1.0,No smoking,7,Idaho Falls +4957,Huge 2BR/2BA on border of Carroll Gardens/Gowanus,Entire home/apt,393.0,2.0,4.0,,3,Aguadilla +4958,Beautiful Convenient Bushwick Oasis w/Trampoline,Private room,526.0,1.0,5.0,No smoking & No pets,1,Cedar Rapids +4959,"Two Bedroom Apartment in Ridgewood, near the train",Entire home/apt,305.0,7.0,2.0,No pets & No parties,2,Iron Mountain +4960,"Crown Heights 3BR, 2 BATH (15 mins to Manhattan!)",Entire home/apt,438.0,2.0,3.0,,4,Tallahassee +4961,Fabulous bedroom in the heart of BK,Private room,530.0,1.0,5.0,No children under 10,1,Myrtle Beach +4962,#1 Modern Gem 2br apt..(Street parking available),Entire home/apt,702.0,2.0,3.0,No smoking,5,Rapid City +4963,NY Queens Penthouse Share = 1LOFT aka Queens' Loft,Private room,1177.0,7.0,2.0,No pets,1,Lincoln +4964,"Cozy 1 bedroom + air mattress, 2 cats, sleeps 3",Entire home/apt,786.0,4.0,1.0,No visitors & No pets & No children under 10,2,Reno +4965,"Sunny high-ceiling, large-windows, Bushwick apt",Private room,646.0,4.0,4.0,,1,Kahului +4966,One bedroom with private roof deck,Entire home/apt,962.0,4.0,2.0,,7,Everett +4967,Backpackers Dream for 1 at The Funky Loft,Private room,244.0,3.0,4.0,No parties & No smoking,1,Houston +4968,Spacious studio in NEW apt building in Astoria,Entire home/apt,791.0,25.0,1.0,,7,Portsmouth +4969,Sunset & Chill: Master BR Sunset Park brownstone,Private room,361.0,7.0,2.0,No parties & No children under 10,2,Des Moines +4970,Sunny Two Bed in Prime Lower East Side/Chinatown:),Private room,898.0,1.0,4.0,No visitors & No pets,2,Harrisburg +4971,2 Double Bed WYNDHAM MIDTOWN 45 *NYC*,Private room,192.0,2.0,3.0,No children under 10 & No parties & No smoking,1,St. Cloud +4972,"Clean, Modern Duplex Upper East Side with Patio",Private room,346.0,2.0,3.0,No visitors,1,Kearney +4973,Sunny Jewel In Historic Harlem,Entire home/apt,1098.0,1.0,4.0,No children under 10 & No parties & No pets,3,Lihue +4974,LES Penthouse,Entire home/apt,993.0,2.0,4.0,No children under 10 & No parties,8,Knoxville +4975,Cozy Nest in the heart of Williamsburg Brooklyn,Entire home/apt,318.0,2.0,2.0,,3,New York +4976,"1 Bedroom , Beautiful Spacious Brownstone + Apt",Entire home/apt,68.0,3.0,2.0,No parties & No children under 10 & No smoking,3,Austin +4977,Sun-drenched corner apartment in East-Williamsburg,Entire home/apt,523.0,6.0,3.0,No children under 10,3,Flint +4978,BRAND NEW LUXE 2BR/2 BA APARTMENT IN BUSHWICK,Entire home/apt,521.0,12.0,4.0,No visitors & No pets & No parties,3,Islip +4979,NEW YORK CENTRAL APARTMENT/TIME SQUARE,Entire home/apt,636.0,3.0,4.0,,3,Lubbock +4980,"Flatbush Manor, Industrial-Deco 1BR Apt",Entire home/apt,1099.0,2.0,4.0,No pets & No parties,6,Twin Falls +4981,1 Bedroom in UWS Manhattan,Entire home/apt,117.0,2.0,2.0,No parties & No smoking,3,Newark +4982,Huge private room in a Brooklyn Brownstone,Private room,308.0,7.0,5.0,No children under 10,1,Baton Rouge +4983,Hunters Point 2500sf 3-story Garden Home,Entire home/apt,197.0,2.0,5.0,No visitors,2,Fort Dodge +4984,Sunny & Spacious - Private Master Bedroom near JFK,Private room,375.0,2.0,2.0,No smoking,1,Roanoke +4985,Couch of your dreams,Shared room,82.0,5.0,4.0,,1,Bethel +4986,Trendy and Stylish Downtown apartment !!!,Entire home/apt,110.0,3.0,2.0,No pets,2,Chattanooga +4987,Classy Brooklyn Studio,Entire home/apt,921.0,15.0,1.0,No visitors,3,South Bend +4988,Luxurious Williamsburg Loft with Private Patio,Entire home/apt,950.0,5.0,5.0,No pets & No smoking & No parties,4,Boston +4989,New York City!! Times Square Home!!!,Entire home/apt,102.0,3.0,2.0,No pets & No visitors,3,Boston +4990,Lovely Factory Loft in Greenpoint!,Entire home/apt,77.0,30.0,1.0,No smoking,2,Texarkana +4991,Charming townhouse,Entire home/apt,722.0,7.0,5.0,No pets & No smoking,3,Sioux City +4992,Renovated Apartment in Brooklyn - Steps to G Train,Entire home/apt,1089.0,6.0,4.0,No pets,2,El Paso +4993,1BD WITH PRIVATE BATHROOM - VERY COZY & 42 INCH TV,Private room,1181.0,2.0,4.0,,2,Hyannis +4994,"One of a Kind, Penthouse Apartment ",Entire home/apt,997.0,4.0,5.0,No visitors & No parties,2,Mission +4995,NEW Modern Apartment w/ OutdoorDeck,Entire home/apt,191.0,1.0,4.0,,3,Eugene +4996,Gorgeous & spacious room in Bed-Stuy,Private room,957.0,3.0,5.0,No smoking,2,Elko +4997,Sunny apartment close to manhattan,Entire home/apt,136.0,7.0,5.0,No pets & No smoking,3,Omaha +4998,Prime west village! design 1BR~Best Value,Entire home/apt,1066.0,30.0,4.0,No smoking,6,Newark +4999,East Village~Organic Living,Entire home/apt,984.0,2.0,5.0,No children under 10 & No parties,2,Fort Myers +5000,Clinton Hill 1 Bedroom Brooklyn heart of it all!,Entire home/apt,1042.0,5.0,2.0,No visitors & No pets,5,Roanoke +5001,Steps away from Brooklyn museum,Entire home/apt,659.0,5.0,1.0,No smoking,2,Monroe +5002,Prime apt in the heart of the LES,Entire home/apt,200.0,5.0,4.0,No parties,2,Escanaba +5003,New Cozy Quite Studio with Huge Secluded Yard,Entire home/apt,615.0,3.0,3.0,No visitors & No smoking,6,Prescott +5004,Spacious sun lit Bushwick room,Private room,87.0,5.0,5.0,No visitors & No parties,1,Charlottesville +5005,177st. Manhattan,Private room,1080.0,3.0,3.0,No parties,2,Escanaba +5006,Cozy quiet room in Morningside brownstone,Private room,492.0,3.0,4.0,No smoking & No visitors,2,Elko +5007,Adorable Polly Pocket-Sized Prospect Heights Space,Entire home/apt,397.0,2.0,5.0,No children under 10 & No smoking,3,Myrtle Beach +5008,Luxury Central Park Apartment close to everything,Entire home/apt,248.0,2.0,3.0,No children under 10 & No smoking,2,Santa Barbara +5009,"Beautiful, rustic 1BD in HEART of Willlamsburg!",Entire home/apt,1145.0,4.0,4.0,No pets & No children under 10 & No visitors,5,Staunton +5010,Beautiful Private Room,Private room,533.0,20.0,4.0,No smoking & No parties & No children under 10,1,New Bern +5011,Sonder | 180 Water | Luxurious 1BR + Rooftop,Entire home/apt,676.0,29.0,3.0,No pets & No smoking,5,Chattanooga +5012,Park Slope Sanctuary on F/G/R,Private room,533.0,1.0,4.0,No pets,2,Sanford +5013,500 sqft Art Deco Empire State and Hudson views,Private room,872.0,4.0,5.0,No parties,2,Latrobe +5014,Dreamy centrally located Bedroom with city views!,Private room,500.0,2.0,3.0,No parties,1,Lafayette +5015,Cozy apartment separated bedroom - Near Manhattan,Entire home/apt,115.0,2.0,5.0,No visitors & No pets & No children under 10,2,Kotzebue +5016,Beautiful private bedroom in Brooklyn,Private room,390.0,1.0,5.0,No children under 10,1,Kansas City +5017,Small clean cosy minimalist FEMALE ONLY -Bushwick,Private room,832.0,7.0,3.0,,2,Aspen +5018,"Home For Medical Professionals - ""The Macula""",Private room,710.0,19.0,2.0,No pets,2,Pellston +5019,"Clean sm room, with shared space. Great location.",Private room,277.0,1.0,4.0,No parties & No children under 10,2,Vernal +5020,Brooklyn Studio Apartment,Entire home/apt,952.0,1.0,3.0,No children under 10 & No visitors & No smoking,2,Cedar City +5021,All season studio in Astoria,Entire home/apt,1112.0,3.0,1.0,,9,Kona +5022,Brand New Beautiful Home (25 min to Manhattan),Entire home/apt,218.0,4.0,5.0,,2,Honolulu +5023,"Cozy Bedroom in Astoria, 17 min from Times Square",Private room,148.0,4.0,4.0,No pets,1,Saginaw +5024,Cozy room near central park,Private room,220.0,30.0,3.0,No visitors & No pets,2,Reno +5025,"Spacious 1 bdrm apt, East Village",Entire home/apt,1141.0,3.0,2.0,No visitors,5,Daytona Beach +5026,sunny nice studio,Entire home/apt,773.0,7.0,3.0,No children under 10 & No pets,3,Dickinson +5027,Cozy 2 Bed 2 Bath Fully Renovated POOl in Building,Entire home/apt,232.0,31.0,4.0,No pets & No children under 10,3,West Yellowstone +5028,East Village Artsy ONE-BEDROOOM ENTIRE APT,Entire home/apt,642.0,4.0,2.0,No parties & No smoking & No visitors,6,Lynchburg +5029,Gorgeous Astoria 1 Br,Private room,329.0,1.0,3.0,No visitors,2,Martha's Vineyard +5030,One BR duplex loft in midtown east townhouse - 43,Entire home/apt,223.0,30.0,5.0,No pets,2,Dayton +5031,"Nice 3Beds/2bedroom Apartment, 5min TIME SQUARE.",Entire home/apt,1127.0,1.0,3.0,No parties & No visitors,5,Wenatchee +5032,Bedstuy Flat Sublet 3 WEEK MIN,Entire home/apt,265.0,1.0,3.0,No children under 10,3,Branson +5033,Great Space in Williamsburg's Heart,Private room,736.0,1.0,4.0,No smoking & No pets & No children under 10,2,Myrtle Beach +5034,3 Bed Astoria Dream By N/W Train | Street Parking,Entire home/apt,503.0,4.0,5.0,,3,Concord +5035,Belo Quarto/w/UPGRADE to entire apartment,Private room,1144.0,2.0,4.0,No parties,2,Toledo +5036,Exposed Brick Midtown East Apt,Private room,345.0,4.0,3.0,No visitors,2,Nantucket +5037,Lovely studio near Grand Central /You will love it,Entire home/apt,430.0,30.0,5.0,No pets,3,Indianapolis +5038,Clinton Hill Duplex near Pratt w/Balcony!,Private room,648.0,3.0,4.0,No parties,1,Huntsville +5039,Astoria Suite - 20min to Manhattan,Private room,77.0,1.0,1.0,No pets & No smoking,2,Hartford +5040,Trendy Williamsburg Apartment,Private room,387.0,1.0,3.0,,1,Orlando +5041,Prime Chelsea 1BR Minimalist W16th,Entire home/apt,1079.0,2.0,1.0,No pets & No children under 10,9,Santa Barbara +5042,Amazing LOFT in Prime Williamsburg,Private room,249.0,5.0,5.0,No pets,2,Trenton +5043,Private Queen Bedroom in Brooklyn,Private room,1032.0,1.0,1.0,No pets,1,Des Moines +5044,Bushwick / Bed Sty Retreat,Private room,546.0,2.0,4.0,No children under 10 & No visitors & No smoking,2,Scottsbluff +5045,Charming Mid-Century Studio,Entire home/apt,1115.0,2.0,5.0,No pets & No children under 10,7,Butte +5046,3 Bed/ 2 Bath Full Apt. BK Heights,Entire home/apt,396.0,2.0,1.0,No smoking,3,Norfolk diff --git a/database/attractions/attractions.csv b/database/attractions/attractions.csv new file mode 100644 index 0000000000000000000000000000000000000000..3a194729fc2f24253b9ce4806265706609cc5c17 --- /dev/null +++ b/database/attractions/attractions.csv @@ -0,0 +1,5303 @@ +Name,Latitude,Longitude,Address,Phone,Website,City +Cabrillo National Monument,32.6722558,-117.2416094,"1800 Cabrillo Memorial Dr, San Diego, CA 92106, USA",(619) 523-4285,https://www.nps.gov/cabr/index.htm,San Diego +La Jolla Shores Park,32.8581537,-117.2561029,"8300 Camino Del Oro, La Jolla, CA 92037, USA",(619) 221-8899,https://www.sandiego.gov/lifeguards/beaches/shores,San Diego +California Tower,32.7316093,-117.1521668,"California Tower, 1350 El Prado, San Diego, CA 92101, USA",(619) 239-2001,https://museumofus.org/exhibits/california-tower/,San Diego +SeaWorld San Diego,32.7642958,-117.2264396,"500 Sea World Dr., San Diego, CA 92109, USA",(619) 222-4732,https://seaworld.com/san-diego?utm_source=google&utm_medium=organic&utm_campaign=gbp_listing,San Diego +Old Town San Diego,32.7558268,-117.1972614,"2829 Juan St, San Diego, CA 92110, USA",Unknown,https://www.oldtownsandiego.org/,San Diego +Balboa Park,32.7341479,-117.144553,"San Diego, CA, USA",(619) 239-0512,http://www.balboapark.org/,San Diego +Seaport Village,32.7090645,-117.1709366,"849 W Harbor Dr, San Diego, CA 92101, USA",(619) 530-0704,https://seaportvillage.com/,San Diego +The San Diego Museum of Art,32.732158,-117.15043,"1450 El Prado, San Diego, CA 92102, USA",(619) 232-7931,https://www.sdmart.org/,San Diego +USS Midway Museum,32.71373979999999,-117.1751265,"910 N Harbor Dr, San Diego, CA 92101, USA",(619) 544-9600,https://www.midway.org/,San Diego +Skytower,32.7654226,-117.2266623,"500 Sea World Dr., San Diego, CA 92109, USA",Unknown,Unknown,San Diego +Dolphin Point,32.76538969999999,-117.2274121,"500 Sea World Dr., San Diego, CA 92109, USA",(915) 525-4772,Unknown,San Diego +San Diego Zoo,32.7360353,-117.1509849,"2920 Zoo Dr, San Diego, CA 92101, USA",(619) 231-1515,https://zoo.sandiegozoo.org/,San Diego +Mission Bay Park,32.7641067,-117.2262649,"San Diego, CA 92109, USA",(619) 525-8213,https://www.sandiego.gov/locations/seaworld-san-diego,San Diego +Whaley House Museum,32.7529044,-117.1945102,"2476 San Diego Ave, San Diego, CA 92110, USA",(619) 786-1143,https://www.whaleyhousesandiego.com/,San Diego +Sunset Cliffs Natural Park,32.715915,-117.2551679,"Ladera St, San Diego, CA 92107, USA",(619) 525-8213,https://www.sandiego.gov/park-and-recreation/parks/regional/shoreline/sunset,San Diego +Old Town San Diego State Park,32.7549063,-117.1976407,"4002 Wallace St, San Diego, CA 92110, USA",(619) 220-5422,http://www.parks.ca.gov/?page_id=663,San Diego +Martin Luther King Jr Promenade,32.7083575,-117.1619929,"326 W Harbor Dr, San Diego, CA 92101, USA",(619) 525-8213,https://www.sandiego.gov/park-and-recreation/parks,San Diego +Balboa Park Carousel,32.7345758,-117.1467066,"1889 Zoo Pl, San Diego, CA 92101, USA",(619) 232-2282,http://balboaparkcarousel.org/,San Diego +San Diego Free Tour,32.70758560000001,-117.1602869,"200 Fifth Ave, San Diego, CA 92101, USA",(415) 503-7199,https://freesftour.com/,San Diego +Mission Beach Boardwalk | Ocean Front Walk,32.7714323,-117.2528308,"W Mission Bay Dr, San Diego, CA 92109, USA",(619) 232-3101,https://www.sandiego.gov/,San Diego +Pellston Pioneer Park,45.5494035,-84.78808509999999,"H627+88X, 100 Bud Carter Tr, Pellston, MI 49769, USA",(231) 539-2616,http://www.pellstonmi.com/,Pellston +Pellston Historical Society Museum,45.5527329,-84.7847187,"Petoskey to Mackinaw Trail, Pellston, MI 49769, USA",Unknown,https://www.facebook.com/pellstondepot/,Pellston +Philip J. Braun Nature Preserve,45.55068199999999,-84.79797429999999,"Mill St, Pellston, MI 49769, USA",(231) 347-0991,https://landtrust.org/explore/philip-j-braun-nature-preserve-north/,Pellston +Petoskey State Park,45.40671669999999,-84.9085162,"2475 M-119, Petoskey, MI 49770, USA",(231) 347-2311,http://www.dnr.state.mi.us/parksandtrails/Details.aspx?id=483&type=SPRK,Pellston +Headlands International Dark Sky Park,45.7754705,-84.7811722,"15675 Headlands Rd, Mackinaw City, MI 49701, USA",(231) 427-1001,http://www.midarkskypark.org/,Pellston +Wilderness State Park,45.7390953,-84.9220769,"903 Wilderness Park Dr, Carp Lake, MI 49718, USA",(231) 436-5381,https://www2.dnr.state.mi.us/parksandtrails/Details.aspx?id=509&type=SPRK,Pellston +Colonial Michilimackinac,45.7866083,-84.7320577,"800 N Huron Ave, Mackinaw City, MI 49701, USA",(231) 436-4100,http://www.mackinacparks.com/colonial-michilimackinac/,Pellston +Conkling Heritage Park,45.77852499999999,-84.72532319999999,"335 S Huron Ave, Mackinaw City, MI 49701, USA",(888) 455-8100,http://www.mackinawcity.com/,Pellston +Bear River Valley Recreation Area,45.3704648,-84.96290080000001,"302 Ione St, Petoskey, MI 49770, USA",(231) 347-2500,Unknown,Pellston +Mineral Well Park,45.3748812,-84.9603522,"136-158 E Lake St, Petoskey, MI 49770, USA",(231) 347-2500,http://www.petoskey.us/,Pellston +Aloha State Park,45.524797,-84.4654541,"4347 3rd St, Cheboygan, MI 49721, USA",(231) 625-2522,http://www.michigandnr.com/parksandtrails/details.aspx?id=434&type=SPRK,Pellston +McGulpin Point Lighthouse,45.7871056,-84.77295,"500 Headlands Rd, Mackinaw City, MI 49701, USA",(231) 436-5860,https://www.mcgulpinpoint.org/,Pellston +Castle Rock,45.9105972,-84.74158059999999,"N2690 Castle Rock Rd, St Ignace, MI 49781, USA",(906) 643-8268,http://www.castlerockmi.com/#!the-rock,Pellston +Oden Island Nature Preserve,45.414935,-84.81604999999999,"3160 Leeward Dr, Petoskey, MI 49770, USA",(231) 347-0991,http://landtrust.org/,Pellston +Burt Lake State Park,45.40204910000001,-84.6217363,"6635 State Park Dr, Indian River, MI 49749, USA",(231) 238-9392,https://www.dnr.state.mi.us/parksandtrails/Details.aspx?id=439&type=SPRK,Pellston +Andrew J Blackbird Museum,45.43042270000001,-84.9847527,"368 E Main St, Harbor Springs, MI 49740, USA",(231) 526-9771,Unknown,Pellston +Douglas Lake trail,45.55574959999999,-84.6870143,"8100-8998 County Rd 64, Pellston, MI 49769, USA",Unknown,Unknown,Pellston +"Mystery Town, USA",45.7794809,-84.73282689999999,"200 S Nicolet St, Mackinaw City, MI 49701, USA",(231) 427-7030,http://www.mysterytownusa.com/,Pellston +BlissFest,45.6219378,-84.9881022,"3695 Division Rd, Harbor Springs, MI 49740, USA",Unknown,https://blissfest.org/,Pellston +Sunset Park,45.3794398,-84.95207189999999,"101 E Lake St, Petoskey, MI 49770, USA",(231) 347-2500,http://www.petoskey.us,Pellston +The Buffalo Zoo,42.9371231,-78.85160909999999,"300 Parkside Ave, Buffalo, NY 14214, USA",(716) 837-3900,http://www.buffalozoo.org/,Buffalo +Buffalo and Erie County Botanical Gardens,42.827864,-78.823995,"2655 South Park Ave, Buffalo, NY 14218, USA",(716) 827-1584,https://www.buffalogardens.com/,Buffalo +Buffalo AKG Art Museum,42.93245,-78.875618,"1285 Elmwood Ave, Buffalo, NY 14222, USA",(716) 882-8700,https://buffaloakg.org/,Buffalo +Canalside,42.8769278,-78.8793944,"44 Prime St, Buffalo, NY 14202, USA",Unknown,http://www.buffalowaterfront.com/,Buffalo +Theodore Roosevelt Inaugural National Historic Site,42.9014678,-78.8724841,"641 Delaware Ave, Buffalo, NY 14202, USA",(716) 884-0095,http://trsite.org/,Buffalo +Buffalo Naval Park,42.8774855,-78.8795859,"1 Naval, Marina Park S, Buffalo, NY 14202, USA",(716) 847-1773,http://buffalonavalpark.org/,Buffalo +Buffalo Museum of Science,42.9061321,-78.8436047,"1020 Humboldt Pkwy, Buffalo, NY 14211, USA",(716) 896-5200,https://www.sciencebuff.org/,Buffalo +Delaware Park,42.9326617,-78.8527295,"84 Parkside Ave, Buffalo, NY 14214, USA",(716) 838-1249,http://www.bfloparks.org/index.php/parks/delaware,Buffalo +Lafayette Square,42.8856691,-78.87384829999999,"415 Main St, Buffalo, NY 14203, USA",(716) 851-5553,Unknown,Buffalo +Frank Lloyd Wright's Martin House,42.9362328,-78.84799,"125 Jewett Pkwy, Buffalo, NY 14214, USA",(716) 856-3858,https://martinhouse.org/,Buffalo +Buffalo Harbor State Park,42.8510464,-78.8645251,"1111 Fuhrmann Boulevard, Buffalo, NY 14203, USA",(716) 822-1207,https://parks.ny.gov/parks/buffaloharbor/details.aspx,Buffalo +Buffalo Bricks,42.87419309999999,-78.8776256,"Main St, Buffalo, NY 14204, USA",(716) 854-2314,http://www.workingfordowntown.org/,Buffalo +Buffalo Heritage Carousel,42.87554550000001,-78.87837309999999,"44 Prime St, Buffalo, NY 14202, USA",(716) 493-2110,https://www.buffaloheritagecarousel.org/,Buffalo +Michigan Street African American,42.8868801,-78.86809679999999,"Michigan Ave, Buffalo, NY 14203, USA",(716) 322-1002,http://www.michiganstreetbuffalo.org/,Buffalo +Tifft Nature Preserve,42.8461684,-78.85945939999999,"1200 Fuhrmann Boulevard, Buffalo, NY 14203, USA",(716) 825-6397,https://www.tifft.org/,Buffalo +Iron Island Museum,42.8900415,-78.8114399,"998 E Lovejoy St, Buffalo, NY 14206, USA",(716) 892-3084,http://www.ironislandmuseum.com/,Buffalo +The Electric Tower,42.88868,-78.8721146,"535 Washington St, Buffalo, NY 14203, USA",(716) 633-2096,http://www.electrictower.com/,Buffalo +Buffalo Main Light,42.8778401,-78.8894968,"1 Fuhrmann Boulevard, Buffalo, NY 14203, USA",(716) 264-1707,https://www.facebook.com/Buffalo-Lighthouse-245535252134529/,Buffalo +The Buffalo History Museum,42.9354287,-78.8762911,"1 Museum Ct, Buffalo, NY 14216, USA",(716) 873-9644,http://www.buffalohistory.org/,Buffalo +Buffalo City Hall,42.8866194,-78.879325,"65 Niagara Square, Buffalo, NY 14202, USA",(716) 851-4890,http://www.buffalony.gov/,Buffalo +Fort Christian,18.3405796,-64.9297139,"St. Thomas, Forts Straede, Charlotte Amalie, St Thomas 00802, USVI",(340) 714-3678,http://www.nps.gov/nr/travel/prvi/pr29.htm,Charlotte Amalie +Charlotte Amalie Overlook,18.3503167,-64.92421430000002,"932G+48F, Hospital Ground, St Thomas 00802, USVI",Unknown,Unknown,Charlotte Amalie +Skyride to Paradise Point,18.3338809,-64.9186206,"9617 Estate Thomas Charlotte Amalie, Estate Thomas, St Thomas 00802, USVI",(340) 774-9809,https://www.paradisepointvi.com/,Charlotte Amalie +99 Steps,18.3424668,-64.9301286,"St Thomas, Charlotte Amalie, St Thomas 00801, USVI",Unknown,Unknown,Charlotte Amalie +French Heritage Museum,18.3375442,-64.9415468,"83Q5+298, St Thomas, 00802, USVI",(340) 714-2583,https://www.frenchheritagemuseumvi.org/,Charlotte Amalie +Pirates Treasure Museum,18.3335829,-64.918717,"17-1 Estate Thomas St. Thomas Virgin Islands VI, Estate Thomas, St Thomas 00802, USVI",(340) 775-9575,https://piratemuseumstthomas.com/,Charlotte Amalie +St Thomas Historical Trust Museum,18.3407882,-64.932093,"St. Thomas, 5332 Raadets Gade, Charlotte Amalie, St Thomas 00804, USVI",(340) 774-5541,http://stthomashistoricaltrust.org/,Charlotte Amalie +Three Queens Statue,18.3433907,-64.9296461,"83VC+945 St Thomas, Dronningens Gade East, Charlotte Amalie, St Thomas 00802, USVI",(340) 775-1444,https://www.visitusvi.com/,Charlotte Amalie +Charlotte Amalie Historic District,18.3421059,-64.9307583,"St. Thomas, Tolbod Pldn, Charlotte Amalie, St Thomas 00802, USVI",Unknown,Unknown,Charlotte Amalie +Emancipation Garden,18.3411557,-64.93034349999999,"83R9+FV7, ST THOMAS, St Thomas 00803, USVI",Unknown,Unknown,Charlotte Amalie +Drake's Seat,18.35283,-64.9271286,"933F+44Q, Rte 37, St. Thomas, St Thomas 00802, USVI",Unknown,http://www.vinow.com/stt/stt-a/general/drakes-seat/,Charlotte Amalie +Statue of President Franklin D. Roosevelt,18.3418023,-64.9280383,"43-46 Norre Gade, Charlotte Amalie, St Thomas 00802, USVI",Unknown,Unknown,Charlotte Amalie +Cruise Ship Excursions,18.3315209,-64.9210614,"Suite 315 Building 3 Havensight Mall U.S., Charlotte Amalie, St Thomas 00802, USVI",(340) 775-5055,https://stthomascruiseexcursions.com/excursions/kayak-snorkeling-eco-tour/,Charlotte Amalie +The Virgin Islands Children's Museum,18.3334418,-64.9189184,"Buccaneer Mall, Rte 30, St. Thomas, St Thomas 00802, USVI",(340) 643-0366,http://www.vichildrensmuseum.org/,Charlotte Amalie +Coral World Ocean Park,18.349389,-64.86359999999999,"6450 Coki Point, St Thomas, Virgin Islands 00802, USVI",(340) 775-1555,http://www.coralworldvi.com/,Charlotte Amalie +Paradise Point Lookout,18.3308453,-64.9141867,"83JP+88P, Estate Thomas, St Thomas 00802, USVI",Unknown,Unknown,Charlotte Amalie +The Little Mermaid Statue,18.3323283,-64.9213695,"83JH+WFJ, Estate Thomas, St Thomas 00802, USVI",Unknown,https://mermaidsofearth.com/mermaid-statues-mermaid-sculptures/public/the-little-mermaid-statue-in-charlotte-amalie,Charlotte Amalie +Tree of Lost Soles,18.31788,-64.9516711,"St Thomas, Charlotte Amalie West, St Thomas 00802, USVI",Unknown,Unknown,Charlotte Amalie +Tree Limin' Extreme Zipline St. Thomas,18.3598589,-64.94600489999999,"7406 St Peter Mountain Rd, Saint Peter, St Thomas 00802, USVI",(340) 777-9477,http://www.ziplinestthomas.com/,Charlotte Amalie +Hebrew Congregation of St. Thomas,18.3426338,-64.93267759999999,"St Thomas, 2116 Krystal St, Charlotte Amalie, St Thomas 00802, USVI",(340) 774-4312,http://synagogue.vi/,Charlotte Amalie +Riordan Mansion State Historic Park,35.1877188,-111.6582426,"409 W Riordan Rd, Flagstaff, AZ 86001, USA",(928) 779-4395,https://azstateparks.com/riordan-mansion/,Flagstaff +Lowell Observatory,35.2028951,-111.6646428,"1400 W Mars Hill Rd, Flagstaff, AZ 86001, USA",(928) 774-3358,https://lowell.edu/welcomeback,Flagstaff +Museum of Northern Arizona,35.234499,-111.66562,"3101 N Fort Valley Rd, Flagstaff, AZ 86001, USA",(928) 774-5213,https://musnaz.org/,Flagstaff +Downtown Flagstaff,35.1987337,-111.6483259,"6 E Aspen Ave # 200, Flagstaff, AZ 86001, USA",(928) 275-2655,https://downtownflagstaff.org/,Flagstaff +Buffalo Park,35.2185163,-111.6329976,"2400 N Gemini Rd, Flagstaff, AZ 86004, USA",(928) 213-2300,https://www.flagstaff.az.gov/1923/City-Parks-Ramadas,Flagstaff +Flagstaff Area National Monuments,35.239009,-111.570669,"6400 US-89, Flagstaff, AZ 86004, USA",(928) 526-1157,https://www.nps.gov/waca/learn/management/flag_parks.htm,Flagstaff +The Arboretum at Flagstaff,35.1599444,-111.7318828,"4001 S Woody Mountain Rd, Flagstaff, AZ 86005, USA",(928) 774-1442,http://www.thearb.org/,Flagstaff +Picture Canyon Natural and Cultural Preserve,35.2306208,-111.5499975,"3920 N El Paso Flagstaff Rd, Flagstaff, AZ 86004, USA",(928) 213-2154,https://www.flagstaff.az.gov/2881/Picture-Canyon-Natural-Cultural-Preserve,Flagstaff +Wheeler Park,35.1999797,-111.6511748,"212 W Aspen Ave, Flagstaff, AZ 86001, USA",(928) 213-2300,http://www.flagstaff.az.gov/index.aspx?NID=1923,Flagstaff +Mountain lion sculpture,35.1858928,-111.6593893,"1520 S Riordan Ranch St, Flagstaff, AZ 86001, USA",Unknown,Unknown,Flagstaff +Flagstaff Visitor Center,35.1973546,-111.649203,"1 E Rte 66, Flagstaff, AZ 86001, USA",(928) 213-2951,http://www.flagstaffarizona.org/,Flagstaff +Bushmaster Park,35.2170284,-111.602725,"3150 N Alta Vista Dr, Flagstaff, AZ 86004, USA",(928) 779-7960,http://flagstaff.az.gov/,Flagstaff +Arizona Snowbowl,35.33071089999999,-111.7058368,"9300 N Snow Bowl Rd, Flagstaff, AZ 86001, USA",(928) 447-9928,http://www.snowbowl.ski/,Flagstaff +Flagstaff Community Labyrinth,35.187569,-111.6452524,"136 E Paseo del Rio, Flagstaff, AZ 86001, USA",Unknown,http://flagstafflabyrinth.com/,Flagstaff +Wupatki National Monument,35.5599835,-111.3935271,"Flagstaff, AZ 86004, USA",(928) 679-2365,https://www.nps.gov/wupa/index.htm,Flagstaff +Fort Tuthill Military History Museum,35.14125010000001,-111.6927984,"2446 Ft Tuthill Lp, Flagstaff, AZ 86001, USA",(928) 226-0965,http://www.forttuthill.org/,Flagstaff +Fatman's Loop Trail,35.23007639999999,-111.5792996,"5098 US-89, Flagstaff, AZ 86004, USA",Unknown,https://www.fs.usda.gov/recarea/coconino/recarea/?recid=55094,Flagstaff +Flagstaff Extreme Adventure Course,35.1427566,-111.6930081,"Fort Tuthill County Park, 2446 Ft Tuthill Lp, Flagstaff, AZ 86005, USA",(888) 259-0125,http://www.flagstaffextreme.com/,Flagstaff +Lava River Cave,35.342426,-111.836323,"171B Forest Rd, Flagstaff, AZ 86001, USA",(928) 526-0866,http://www.fs.usda.gov/recarea/coconino/recarea/?recid=55122,Flagstaff +Pioneer Museum--Arizona Historical Society,35.223814,-111.655126,"2340 N Fort Valley Rd, Flagstaff, AZ 86001, USA",(928) 774-6272,https://arizonahistoricalsociety.org/museum/pioneer-museum/,Flagstaff +Mesker Park Zoo,37.99685230000001,-87.6059008,"1545 Mesker Park Dr, Evansville, IN 47720, USA",(812) 435-6143,http://www.meskerparkzoo.com/,Evansville +Children's Museum of Evansville,37.97161699999999,-87.56926399999999,"22 SE 5th St, Evansville, IN 47708, USA",(812) 643-2663,http://www.cmoekids.org/,Evansville +Burdette Park,37.942692,-87.64021029999999,"5301 Nurrenbern Rd, Evansville, IN 47712, USA",(812) 435-5602,http://www.burdettepark.org/,Evansville +Evansville African American Museum,37.9705531,-87.5567485,"579 S Garvin St, Evansville, IN 47713, USA",(812) 423-5188,https://www.evvaam.org/,Evansville +Garvin Park,37.9943957,-87.56379129999999,"Evansville, IN 47710, USA",(812) 435-6141,https://www.visitevansville.com/attractions/garvin-park,Evansville +Evansville Museum,37.9650887,-87.57284109999999,"411 SE Riverside Dr, Evansville, IN 47713, USA",(812) 425-2406,https://evansvillemuseum.org/,Evansville +Reitz Home Museum,37.9678221,-87.5719714,"112 Chestnut St, Evansville, IN 47713, USA",(812) 426-1871,http://www.reitzhome.com/,Evansville +USS LST-325,37.9729601,-87.58019879999999,"610 NW Riverside Dr, Evansville, IN 47708, USA",(812) 435-8678,http://www.lstmemorial.org/,Evansville +Evansville Wartime Museum,38.04158400000001,-87.53729,"7503 Petersburg Rd, Evansville, IN 47725, USA",(812) 424-7461,http://evansvillewartimemuseum.org/,Evansville +Angel Mounds State Historic Site,37.94518589999999,-87.4518865,"8215 Pollack Ave, Evansville, IN 47715, USA",(812) 853-3956,https://www.indianamuseum.org/angel-mounds-state-historic-site,Evansville +Howell Wetlands,37.9616589,-87.6184237,"1400 S Tekoppel Ave, Evansville, IN 47712, USA",(812) 479-0771,https://wesselmanwoods.org/howellwetlands,Evansville +Mickey's Kingdom Park,37.96296460000001,-87.5727648,"Downtown, Riverfront, Evansville, IN 47713, USA",(812) 435-6141,Unknown,Evansville +Four Freedoms Monument,37.9670642,-87.5741974,"201 SE Riverside Dr, Evansville, IN 47713, USA",Unknown,Unknown,Evansville +Howell Park,37.9648181,-87.6103175,"1101 S Barker Ave, Evansville, IN 47712, USA",(812) 435-6141,Unknown,Evansville +Chandelier Tree,37.970539,-87.57361,"130 Main St, Evansville, IN 47708, USA",(812) 492-4536,http://downtownevansville.com/,Evansville +Wesselman Woods,37.9828856,-87.516741,"551 N Boeke Rd, Evansville, IN 47711, USA",(812) 479-0771,http://www.wesselmanwoods.org/,Evansville +Self.e Alley (Evansville Mural Art),37.9714073,-87.5716813,"318 Main St, Evansville, IN 47708, USA",Unknown,https://self-e-alley.business.site/?utm_source=gmb&utm_medium=referral,Evansville +Diamond Valley Park,38.0040517,-87.5793386,"1100 Fulton Pkwy, Evansville, IN 47710, USA",(812) 435-6141,http://www.vanderburghgov.org/egov/apps/locations/facilities.egov?view=detail&id=79,Evansville +Game Room Alley,37.9711986,-87.57145320000001,"317 Main St, Evansville, IN 47711, USA",(812) 492-4536,Unknown,Evansville +Cascade,37.96026869999999,-87.57259850000001,"1200 Waterworks Rd, Evansville, IN 47713, USA",Unknown,Unknown,Evansville +Panaewa Rainforest Zoo and Gardens,19.6542357,-155.0727822,"800 Stainback Hwy, Hilo, HI 96720, USA",(808) 959-7224,http://hilozoo.org/,Hilo +Lyman Museum,19.7221983,-155.0906609,"276 Haili St, Hilo, HI 96720, USA",(808) 935-5021,http://www.lymanmuseum.org/,Hilo +Mokupāpapa Discovery Center,19.7267489,-155.0870462,"76 Kamehameha Ave, Hilo, HI 96720, USA",(808) 498-4709,http://www.papahanaumokuakea.gov/education/center.html,Hilo +Richardson Ocean Park,19.735784,-155.013314,"2355 Kalanianaole St, Hilo, HI 96720, USA",(808) 961-8688,https://hawaiibeachsafety.com/big-island/richardson-ocean-park,Hilo +Liliʻuokalani Gardens,19.726372,-155.068079,"189 Lihiwai St #151, Hilo, HI 96720, USA",Unknown,Unknown,Hilo +Wailoa River State Recreation Area,19.7164465,-155.0730805,"799 Piilani St, Hilo, HI 96720, USA",(808) 961-9540,http://dlnr.hawaii.gov/dsp/parks/hawaii/wailoa-river-state-recreation-area/,Hilo +Imiloa Astronomy Center,19.7011173,-155.0886773,"600 Imiloa Pl, Hilo, HI 96720, USA",(808) 932-8901,http://www.imiloahawaii.org/,Hilo +Pacific Tsunami Museum,19.7259466,-155.0866304,"130 Kamehameha Ave, Hilo, HI 96720, USA",(808) 935-0926,http://www.tsunami.org/,Hilo +Wailuku River State Park,19.7187242,-155.1085773,"2-198 Rainbow Dr, Hilo, HI 96720, USA",(808) 961-9540,http://dlnr.hawaii.gov/dsp/parks/hawaii/wailuku-river-state-park/,Hilo +Rainbow Falls,19.7187908,-155.1085958,"Hilo, HI 96720, USA",Unknown,https://dlnr.hawaii.gov/dsp/parks/hawaii/wailuku-river-state-park/,Hilo +Gilbert Carvalho Park,19.71847379999999,-155.1043089,"850 Waianuenue Ave, Hilo, HI 96720, USA",(808) 961-8737,http://www.hawaiicounty.gov/,Hilo +Reeds Bay Beach Park,19.7264295,-155.0631119,"225 Banyan Dr, Hilo, HI 96720, USA",(808) 961-8311,Unknown,Hilo +Kamehameha The Great,19.7209657,-155.076765,"774 Kamehameha Ave, Hilo, HI 96720, USA",Unknown,https://dlnr.hawaii.gov/dsp/parks/hawaii/wailoa-river-state-recreation-area/,Hilo +Boiling Pots,19.71498189999999,-155.1312219,"1766 Wailuku Dr, Hilo, HI 96720, USA",Unknown,http://dlnr.hawaii.gov/dsp/parks/hawaii/wailuku-river-state-park/,Hilo +Kuhio Kalanianaole Park,19.7249023,-155.0608665,"Kalanianaole St, Hilo, HI 96720, USA",(808) 961-8311,Unknown,Hilo +Leleiwi Beach Park (Wai’uli),19.734024,-155.0162401,"2246 Kalanianaole St, Hilo, HI 96720, USA",Unknown,Unknown,Hilo +Moku Ola / Coconut Island,19.7294599,-155.068554,"77 Keliipio Pl, Hilo, HI 96720, USA",(808) 961-8311,http://www.hawaiicounty.gov/parks-and-recreation/,Hilo +Keaukaha Beach Park,19.7318433,-155.0461397,"27 Apapane Rd, Hilo, HI 96720, USA",(808) 961-8311,Unknown,Hilo +Lehia Beach Park,19.7347014,-155.0080829,"2499 Kalanianaole St, Hilo, HI 96720, USA",(808) 961-8311,https://lookintohawaii.com/hawaii/32700/lehia-beach-park-beach-big-island-hilo-hi,Hilo +Out-Lau Island Tours,19.7245545,-155.0845267,"Hilo, HI 96720, USA",Unknown,Unknown,Hilo +Snake River Canyon Rim Trail,42.59907399999999,-114.4792939,"Washington St N, Twin Falls, ID 83301, USA",(208) 736-2265,http://www.visitidaho.org/attraction/outdoor-recreation/snake-river-canyon-rim-trails/,Twin Falls +Twin Falls City Park,42.5581708,-114.4659443,"400 Shoshone St E, Twin Falls, ID 83301, USA",(208) 736-2265,https://www.tfid.org/facilities/facility/details/City-Park-10,Twin Falls +Evel Knievel Snake River Canyon Jump Site,42.5970726,-114.4228668,"Twin Falls, ID 83301, USA",Unknown,Unknown,Twin Falls +Herrett Center,42.58422299999999,-114.470397,"315 Falls Ave, Twin Falls, ID 83301, USA",(208) 732-6655,http://herrett.csi.edu,Twin Falls +Dierkes Lake Park,42.594477,-114.3901839,"HJV5+GX3, Twin Falls, ID 83301, USA",(208) 736-2265,http://www.tfid.org/facilities.aspx?search=1&CID=2&RID=13&Page=detail,Twin Falls +Shoshone Falls Park,42.5937,-114.401,"4155 Shoshone Falls Grade, Twin Falls, ID 83301, USA",(208) 736-2265,http://www.tfid.org/index.aspx?NID=309,Twin Falls +Rock Creek Park,42.56746279999999,-114.503585,"Twin Falls, ID 83301, USA",(208) 734-9491,https://www.tfid.org/Facilities/Facility/Details/Rock-Creek-Canyon-Parkway-25,Twin Falls +Centennial Waterfront Park,42.5995599,-114.4685312,"Canyon Springs Rd, Twin Falls, ID 83301, USA",(208) 734-9491,Unknown,Twin Falls +Bridge View Point,42.5980236,-114.4525231,"2082 Bridgeview Blvd, Twin Falls, ID 83301, USA",Unknown,Unknown,Twin Falls +Harmon Park,42.5544243,-114.4526504,"Twin Falls, ID 83301, USA",(208) 544-1943,http://www.tfid.org/,Twin Falls +Mary Alice Park,42.5592706,-114.4742345,"436 Main Ave W, Twin Falls, ID 83301, USA",(208) 421-1311,http://www.maryalicepark.org/,Twin Falls +Pillar Falls Scenic Overlook,42.596167,-114.445352,"1999 Pole Line Rd E, Twin Falls, ID 83301, USA",Unknown,Unknown,Twin Falls +Art Alley,42.5510486,-114.4761167,"113 Maxwell Ave, Twin Falls, ID 83301, USA",Unknown,Unknown,Twin Falls +Drury Park,42.5580901,-114.479779,"S Washington St & 4th Ave W, Twin Falls, ID 83301, USA",(208) 736-2265,Unknown,Twin Falls +Tandem Base,42.5986643,-114.4548057,"2015 Nielsen Point Pl Suite 200, Twin Falls, ID 83301, USA",(208) 546-9873,http://tandembase.com/,Twin Falls +Base jump the bridge,42.5983499,-114.4557012,"2015 Nielsen Point Pl, Twin Falls, ID 83301, USA",(865) 250-0666,http://basejumpthebridge.com/,Twin Falls +AWOL Adventure Sports At Centennial Park,42.60216339999999,-114.4709409,"Centennial Waterfront Park, Canyon Springs Rd, Twin Falls, ID 83301, USA",(208) 735-5344,http://www.awoladventuresports.com/,Twin Falls +Evel Knievel Jump Monument,42.5985385,-114.4546548,"Twin Falls, ID 83301, USA",(208) 733-3974,http://evelknievel.com/,Twin Falls +Snake River Canyons Park,42.6053377,-114.4327475,"Shoshone Falls Rd, Twin Falls, ID 83301, USA",Unknown,http://snakerivercanyonspark.com/,Twin Falls +Scenic View Perrine Coulee Waterfall,42.5971798,-114.471664,"Twin Falls, ID 83301, USA",Unknown,Unknown,Twin Falls +The Newark Museum of Art,40.7429427,-74.1714034,"49 Washington St, Newark, NJ 07102, USA",(973) 596-6550,http://www.newarkmuseumart.org/,Newark +Military Park,40.7391262,-74.1695195,"51 Park Pl, Newark, NJ 07102, USA",(973) 900-5800,Unknown,Newark +Branch Brook Park,40.759629,-74.1810895,"& Park Avenue, Lake St, Newark, NJ 07104, USA",(973) 268-3500,http://www.essexcountyparks.org/parks/branch-brook-park,Newark +Weequahic Park,40.70627169999999,-74.19728549999999,"Elizabeth Ave &, Meeker Ave, Newark, NJ 07112, USA",(973) 268-3500,http://www.essex-countynj.org/p/index.php?section=parks/sites/we#top,Newark +"Newark Riverfront Park, Orange Sticks",40.7331128,-74.1489969,"727 Raymond Blvd, Newark, NJ 07105, USA",Unknown,Unknown,Newark +New Jersey Historical Society,40.73893559999999,-74.1687484,"52 Park Pl, Newark, NJ 07102, USA",(973) 596-8500,http://www.jerseyhistory.org/,Newark +The Jewish Museum of New Jersey,40.7552784,-74.16984049999999,"145 Broadway, Newark, NJ 07104, USA",(973) 485-2609,http://www.jewishmuseumnj.org/,Newark +Newark Riverfront Park - Somme Street Entrance,40.7327264,-74.15025829999999,"709 Raymond Blvd, Newark, NJ 07105, USA",(201) 341-8311,https://newarkcityparksfoundation.com/,Newark +Veterans Memorial Park,40.73889979999999,-74.1825171,"W Market St & Wickliffe Street, Newark, NJ 07102, USA",(973) 268-3500,http://www.essexcountyparks.org/parks/veterans-memorial-park,Newark +Jesse Allen Park,40.7257142,-74.1889964,"Muhammad Ali Ave, Newark, NJ 07108, USA",(973) 733-6454,https://www.newarknj.gov/departments/rcass,Newark +Dreyfuss Planetarium,40.7432168,-74.1719212,"49 Washington St Dreyfuss Planetarium, Newark, NJ 07102, USA",(973) 596-6529,https://newarkmuseumart.org/event/planetarium-life,Newark +Ex-Casa do Paulo Landim II,40.723809,-74.1623347,"311 E Kinney St, Newark, NJ 07105, USA",Unknown,Unknown,Newark +Newark Preservation & Landmark,40.7428188,-74.17171,"69 Washington St, Newark, NJ 07102, USA",(973) 622-4910,https://www.newarklandmarks.org/,Newark +Riverbank Park,40.7317289,-74.1522553,"Market St & VanBuren Street, Newark, NJ 07105, USA",(973) 268-3500,https://www.essexcountyparks.org/parks/riverbank-park,Newark +Cherry Blossom Welcome Center,40.7846463,-74.1726869,"Branch Brook Park Dr, Newark, NJ 07104, USA",(973) 268-3500,http://www.essexcountyparks.org/parks/branch-brook-park,Newark +The Feigenspan Mansion,40.7278825,-74.1826564,"710 Dr Martin Luther King Jr Blvd, Newark, NJ 07102, USA",(973) 274-0995,https://www.nj.gov/dca/njht/funded/sitedetails/feigenspan_mansion.shtml,Newark +Essex County Riverfront Park,40.73419579999999,-74.14393869999999,"1-3 Brill St, Newark, NJ 07105, USA",(973) 268-3500,https://www.essexcountyparks.org/parks/riverfront-park,Newark +Alice Ransom Dreyfuss Memorial Garden,40.74332479999999,-74.17223899999999,"Newark, NJ 07102, USA",Unknown,Unknown,Newark +"Paul Robeson Galleries, Rutgers University - Newark",40.7420724,-74.1761532,"350 Dr Martin Luther King Jr Blvd, Newark, NJ 07103, USA",(973) 353-0615,https://paulrobesongalleries.rutgers.edu/,Newark +Weequahic Park,40.70005200000001,-74.2021571,"1 Thomas Carmichael Dr, Newark, NJ 07114, USA",(973) 926-2520,http://www.essexcountyparks.org/,Newark +Discovery Space of Central Pennsylvania,40.8022384,-77.8821932,"1224 N Atherton St, State College, PA 16803, USA",(814) 234-0200,https://discoveryspace.org/,State College +The Arboretum at Penn State,40.8132341,-77.8773338,"E Park Ave &, Bigler Rd, State College, PA 16803, USA",(814) 865-9118,http://arboretum.psu.edu/,State College +Centre County Historical Society,40.8065578,-77.8426703,"1001 E College Ave, State College, PA 16801, USA",(814) 234-4779,https://www.centrehistory.org/,State College +Tom Tudek Memorial Park,40.8014645,-77.8924608,"400 Herman Dr, State College, PA 16803, USA",(814) 231-3071,https://www.twp.ferguson.pa.us/ferguson-township-parks/pages/tom-tudek-memorial-park,State College +Millbrook Marsh Nature Center,40.8134389,-77.83437359999999,"548 Puddintown Rd, State College, PA 16801, USA",(814) 235-7819,http://www.crpr.org/millbrook-marsh-nature-center,State College +Penn State All-Sports Museum,40.81095229999999,-77.8557361,"1 Beaver Stadium, University Park, PA 16802, USA",(814) 865-0044,https://gopsusports.com/sports/2018/8/8/all-sports-museum-psu-all-sports-museum-html.aspx,State College +Matson Museum of Anthropology,40.7971662,-77.8695622,"208 Carpenter Bldg, Curtin Rd, University Park, PA 16802, USA",(814) 865-3853,https://matson.psu.edu/,State College +Palmer Museum of Art,40.8068782,-77.8682025,"Bigler Rd, University Park, PA 16802, USA",(814) 865-7673,https://palmermuseum.psu.edu/,State College +Penn's Cave & Wildlife Park,40.88254980000001,-77.61165679999999,"222 Penns Cave Rd, Centre Hall, PA 16828, USA",(814) 364-1664,http://www.pennscave.com/,State College +The Nittany Lion Shrine,40.79682589999999,-77.8690307,"Curtin Road and, Burrowes Rd, State College, PA 16801, USA",(717) 948-6009,https://www.psu.edu/this-is-penn-state/nittany-lion-shrine/,State College +Lederer Park,40.7965415,-77.84030159999999,"1101 University Dr, State College, PA 16801, USA",Unknown,https://www.crpr.org/find-your-park,State College +Sidney Friedman Parklet,40.7917101,-77.8598275,"241 S Fraser St, State College, PA 16801, USA",(814) 234-7109,https://statecollegehighlands.org/sidney-friedman-park-a-small-park-with-a-big-history/,State College +Old Main,40.79648100000001,-77.86284119999999,"Pollock Rd, University Park, PA 16802, USA",(814) 865-4700,Unknown,State College +Holmes-Foster Park,40.78238280000001,-77.86611959999999,"901 Westerly Pkwy, State College, PA 16801, USA",(814) 231-3071,https://www.crpr.org/,State College +Happy Valley Vineyard and Winery,40.76825389999999,-77.9013848,"576 S Foxpointe Dr, State College, PA 16801, USA",(814) 308-8756,http://www.thehappyvalleywinery.com/,State College +Frost Entomological Museum,40.80295,-77.862347,"160 Curtin Rd, State College, PA 16802, USA",(814) 865-1895,https://ento.psu.edu/about/facilities/frost,State College +Dalevue Park,40.7977136,-77.82521179999999,"413 Goldfinch Dr, State College, PA 16801, USA",(814) 231-3071,http://www.crpr.org/,State College +Walnut Springs Park,40.802626,-77.8388722,"843 Walnut Spring Ln, State College, PA 16801, USA",Unknown,Unknown,State College +Joel N. Myers Sundial,40.8056735,-77.8688394,"State College, PA 16803, USA",Unknown,Unknown,State College +Suburban Park,40.81063899999999,-77.8878175,"101 Suburban Ave, State College, PA 16803, USA",Unknown,https://www.twp.ferguson.pa.us/ferguson-township-parks/pages/suburban-park,State College +Johnstown Flood Museum,40.3279365,-78.92049,"304 Washington St, Johnstown, PA 15901, USA",(814) 539-1889,http://www.jaha.org/,Johnstown +Heritage Discovery Center,40.3401449,-78.9308235,"Broad St, Johnstown, PA 15906, USA",(814) 539-1889,http://www.jaha.org/,Johnstown +Greenhouse Park,40.2768689,-78.9220654,"Green House Rd, Johnstown, PA 15905, USA",(814) 288-1400,http://thestonycreek.com/greenhouse.shtml,Johnstown +Stackhouse Park,40.3267389,-78.93736969999999,"998 Luzerne St, Johnstown, PA 15905, USA",(814) 536-1674,http://www.stackhousepark.com/,Johnstown +Sandyvale Memorial Gardens and Conservancy,40.31213429999999,-78.9145319,"80 Hickory St, Johnstown, PA 15902, USA",(814) 266-7891,http://www.sandyvalememorialgardens.org/,Johnstown +I Love Johnstown Mural,40.3216656,-78.9229438,"123 Coconut Pl, Johnstown, PA 15901, USA",Unknown,Unknown,Johnstown +Central Park,40.32572340000001,-78.91823149999999,"507 Main St, Johnstown, PA 15901, USA",Unknown,Unknown,Johnstown +Point Park,40.3300696,-78.9246695,"100 Washington St, Johnstown, PA 15901, USA",Unknown,Unknown,Johnstown +Hinckston RD Waterfall,40.3710152,-78.8908508,"Hinckston Run,, Johnstown, PA 15906, USA",Unknown,Unknown,Johnstown +Steve Ditko Spider-Man Mural,40.32667440000001,-78.91715429999999,"104 Franklin St, Johnstown, PA 15901, USA",Unknown,Unknown,Johnstown +Johnstown Flood National Memorial,40.3498089,-78.7711995,"733 Lake Rd, South Fork, PA 15956, USA",(814) 886-6171,http://www.nps.gov/jofl,Johnstown +Conemaugh Gap Scenic Overlook,40.3663641,-78.9590836,"Haws Pike, Johnstown, PA 15906, USA",Unknown,Unknown,Johnstown +Wagner-Ritter House,40.3398049,-78.92875599999999,"418 Broad St, Johnstown, PA 15906, USA",(814) 539-1889 ext. 311,https://www.jaha.org/attractions/wagner-ritter-house/,Johnstown +"Visit Johnstown, PA",40.32561210000001,-78.91936810000001,"416 Main St #100, Johnstown, PA 15901, USA",(814) 536-7993,http://www.visitjohnstownpa.com/,Johnstown +Chapin Arch,40.3133738,-78.9165786,"841 Menoher Blvd, Johnstown, PA 15905, USA",Unknown,Unknown,Johnstown +Healing Garden Art Park,40.3200969,-78.919581,"514 Napoleon St, Johnstown, PA 15901, USA",(814) 262-5978,http://healinggardenartpark.org/,Johnstown +Wedding venue,40.3858247,-78.88676819999999,"1315 Waterfall Dr, Johnstown, PA 15906, USA",(814) 659-0381,Unknown,Johnstown +The Johnstown Inclined Plane,40.3255038,-78.928696,"711 Edgehill Dr, Johnstown, PA 15905, USA",Unknown,http://www.inclinedplane.org/,Johnstown +South Carolina Aquarium,32.7909936,-79.92549919999999,"100 Aquarium Wharf, Charleston, SC 29401, USA",(843) 577-3474,http://scaquarium.org/,Charleston +Pineapple Fountain,32.7780879,-79.9251889,"1 Vendue Range, Charleston, SC 29401, USA",(843) 724-5003,Unknown,Charleston +Rainbow Row,32.7753504,-79.9273372,"83-107 E Bay St, Charleston, SC 29401, USA",(803) 528-8317,http://rainbowrowcharlestonsc.com/,Charleston +The Charleston Museum,32.7896061,-79.9356663,"360 Meeting St, Charleston, SC 29403, USA",(843) 722-2996,https://www.charlestonmuseum.org/,Charleston +Magnolia Plantation and Gardens,32.8786105,-80.0883389,"Charleston, SC 29414, USA",(843) 571-1266,https://www.magnoliaplantation.com/,Charleston +Charleston City Market,32.78084439999999,-79.93055,"188 Meeting St, Charleston, SC 29401, USA",(843) 937-0920,http://www.thecharlestoncitymarket.com/,Charleston +Joe Riley Waterfront Park,32.778966,-79.9255465,"Vendue Range, Concord St, Charleston, SC 29401, USA",Unknown,Unknown,Charleston +Aiken-Rhett House Museum,32.7914295,-79.9348077,"48 Elizabeth St, Charleston, SC 29403, USA",(843) 723-1159,https://www.historiccharleston.org/house-museums/aiken-rhett-house/,Charleston +Nathaniel Russell House,32.77399719999999,-79.93102990000001,"51 Meeting St, Charleston, SC 29401, USA",(843) 724-8481,https://www.historiccharleston.org/house-museums/nathaniel-russell-house/,Charleston +Charles Towne Landing State Historic Site,32.8104054,-79.9951397,"1500 Old Towne Rd, Charleston, SC 29407, USA",(843) 852-4200,http://www.southcarolinaparks.com/ctl,Charleston +Old Exchange and Provost Dungeon,32.7768533,-79.9269411,"122 E Bay St, Charleston, SC 29401, USA",(843) 727-2166,http://oldexchange.org/,Charleston +White Point Garden,32.7699361,-79.9303611,"2 Murray Blvd, Charleston, SC 29401, USA",Unknown,Unknown,Charleston +Drayton Hall,32.87089949999999,-80.0763195,"3380 Ashley River Rd, Charleston, SC 29414, USA",(843) 769-2600,http://www.draytonhall.org/,Charleston +Children's Museum of the Lowcountry,32.789416,-79.9376529,"25 Ann St, Charleston, SC 29403, USA",(843) 853-8962,http://explorecml.org/,Charleston +McLeod Plantation Historic Site,32.7631484,-79.9730658,"325 Country Club Dr, Charleston, SC 29412, USA",(843) 762-9514,https://www.ccprc.com/1447/McLeod-Plantation-Historic-Site,Charleston +Charleston Pirate Tours,32.7794474,-79.9300671,"79 Cumberland St, Charleston, SC 29401, USA",(843) 442-7299,https://charlestonpiratetour.com/,Charleston +Middleton Place,32.8999341,-80.13776899999999,"4300 Ashley River Rd, Charleston, SC 29414, USA",(843) 556-6020,http://www.middletonplace.org/,Charleston +Boone Hall Plantation & Gardens,32.8582446,-79.82311490000001,"1235 Long Point Rd, Mt Pleasant, SC 29464, USA",(843) 884-4371,http://boonehallplantation.com/,Charleston +Old Slave Mart Museum,32.77782429999999,-79.92841109999999,"6 Chalmers St, Charleston, SC 29401, USA",(843) 958-6467,http://oldslavemartmuseum.com/,Charleston +Pirates of Charleston,32.7772275,-79.96233600000001,"95 Ripley Point Dr, Charleston, SC 29407, USA",Unknown,https://piratesofcharleston.com/,Charleston +Montgomery Zoo & Mann Wildlife Learning Museum,32.4198404,-86.2751933,"2301 Coliseum Pkwy, Montgomery, AL 36110, USA",(334) 625-4900,http://www.montgomeryzoo.com/,Montgomery +Rosa Parks Museum,32.3765926,-86.3114746,"252 Montgomery St, Montgomery, AL 36104, USA",(334) 241-8615,http://troy.edu/rosaparks,Montgomery +The Hank Williams Museum,32.379447,-86.310684,"118 Commerce St, Montgomery, AL 36104, USA",(334) 262-3600,https://www.thehankwilliamsmuseum.net/,Montgomery +Montgomery Museum of Fine Arts,32.35104139999999,-86.20641069999999,"1 Museum Dr, Montgomery, AL 36117, USA",(334) 625-4333,http://www.mmfa.org/,Montgomery +Freedom Rides Museum,32.3746331,-86.3091022,"210 S Court St, Montgomery, AL 36104, USA",(334) 414-8647,https://ahc.alabama.gov/properties/freedomrides/freedomrides.aspx,Montgomery +The Scott and Zelda Fitzgerald Museum,32.3586942,-86.29230940000001,"919 Felder Ave, Montgomery, AL 36106, USA",(334) 264-4222,https://www.thefitzgeraldmuseum.org/,Montgomery +The Legacy Museum,32.3821078,-86.30875549999999,"400 N Court St, Montgomery, AL 36104, USA",(334) 386-9100,http://legacysites.eji.org/,Montgomery +Civil Rights Memorial,32.3761526,-86.3033604,"400 Washington Ave, Montgomery, AL 36104, USA",(334) 956-8439,https://www.splcenter.org/civil-rights-memorial,Montgomery +The MOOseum,32.3749614,-86.300805,"201 S Bainbridge St, Montgomery, AL 36104, USA",(334) 265-1867,https://www.bamabeef.org/p/about/the-mooseum,Montgomery +Dexter Parsonage Museum,32.3730317,-86.2961102,"309 S Jackson St, Montgomery, AL 36104, USA",(334) 261-3270,http://www.dexterkingmemorial.org/,Montgomery +Riverfront Park,32.3829357,-86.31256330000001,"355 Commerce St, Montgomery, AL 36104, USA",(334) 625-2100,http://www.funinmontgomery.com/,Montgomery +Mann Wildlife Learning Museum,32.4177778,-86.2777778,"325 E Vandiver Blvd, Montgomery, AL 36110, USA",(334) 240-4900,https://www.montgomeryzoo.com/mann-museum/the-mann-museum,Montgomery +The First White House of the Confederacy,32.3761412,-86.2999377,"644 Washington Ave, Montgomery, AL 36130, USA",(334) 242-1861,https://www.thefirstwhitehouse.com/,Montgomery +Museum of Alabama,32.3758403,-86.30038929999999,"142-158 S Union St, Montgomery, AL 36104, USA",Unknown,https://www.museum.alabama.gov/,Montgomery +Riverwalk,32.382454,-86.31320950000001,"Montgomery, AL 36104, USA",Unknown,Unknown,Montgomery +Old Alabama Town,32.3822966,-86.3049784,"301 Columbus St, Montgomery, AL 36104, USA",(334) 240-4500,http://www.oldalabamatown.com/,Montgomery +Blount Cultural Park,32.3470355,-86.2085372,"1 Festival Dr, Montgomery, AL 36117, USA",(334) 625-2300,https://mmfa.org/visit/plan-your-visit/blount-cultural-park/,Montgomery +W.A. Gayle Planetarium,32.36815499999999,-86.287426,"1010 Forest Ave, Montgomery, AL 36106, USA",(334) 625-4799,Unknown,Montgomery +The National Memorial for Peace and Justice,32.3722561,-86.3127586,"417 Caroline St, Montgomery, AL 36104, USA",(334) 386-9100,http://legacysites.eji.org/,Montgomery +Alabama State Capitol,32.3773781,-86.3004643,"Montgomery, AL 36104, USA",(334) 242-3935,https://ahc.alabama.gov/alabama-state-capitol.aspx,Montgomery +Turtle Bay Exploration Park,40.59099479999999,-122.3763838,"844 Sundial Bridge Drive, Redding, CA 96001, USA",(530) 243-8850,http://www.turtlebay.org/,Redding +Sundial Bridge,40.59223060000001,-122.3774861,"Sacramento River Trail, Redding, CA 96001, USA",(530) 243-8850,https://www.turtlebay.org/sundial-bridge/,Redding +Fantasy Fountain,40.5467681,-122.3398393,"4000 Victor Ave, Redding, CA 96002, USA",Unknown,Unknown,Redding +Caldwell Park,40.5948563,-122.3909522,"3 Quartz Hill Rd, Redding, CA 96003, USA",(530) 215-5364,http://www.cityofredding.org/,Redding +Rivercrest Park,40.5450164,-122.3545485,"800 Woodacre Dr, Redding, CA 96002, USA",(530) 225-4095,http://www.cityofredding.org/,Redding +Eaton House Museum,40.58252969999999,-122.3974725,"1520 West St, Redding, CA 96001, USA",(530) 241-3454,http://eatonhousemuseum.org/,Redding +Kids' Kingdom,40.5470288,-122.3401693,"4000 Victor Ave, Redding, CA 96002, USA",(530) 225-4095,http://www.reddingrecreation.org/,Redding +Sculpture Park,40.5731625,-122.3816893,"777 Cypress Ave, Redding, CA 96001, USA",(530) 225-4512,Unknown,Redding +Lake Redding Park,40.5952103,-122.4002952,"2225 Benton Dr, Redding, CA 96003, USA",(530) 225-4095,Unknown,Redding +Shasta State Historic Park,40.5992482,-122.4917724,"15312 CA-299, Shasta, CA 96087, USA",(530) 243-8194,http://www.parks.ca.gov/?page_id=456,Redding +Minder Park,40.5959217,-122.3367808,"1210 Minder Dr, Redding, CA 96003, USA",(530) 225-4512,Unknown,Redding +Paul Bunyan Forest Camp,40.58961559999999,-122.3754611,"836 Sundial Bridge Drive, Redding, CA 96001, USA",(530) 243-8850,https://www.turtlebay.org/forestcamp,Redding +Redding River Trail,40.5893159,-122.3613584,"Redding, CA 96003, USA",(530) 225-4512,Unknown,Redding +Enterprise Park,40.5460466,-122.3399442,"4000 Victor Ave, Redding, CA 96002, USA",(530) 225-4095,https://www.cityofredding.org/Home/Components/FacilityDirectory/FacilityDirectory/60/36?backlist=%2Fdepartments%2Fparks-and-recreation%2Fparks%2Fpark-finder,Redding +Cascade Park,40.51265929999999,-122.3673585,"2901-2975 Girvan Rd, Redding, CA 96001, USA",Unknown,http://www.cityofredding.org/departments/parks-and-recreation,Redding +Turtle Bay Exploration Park,40.59402289999999,-122.3859746,"1335 Arboretum Dr, Redding, CA 96003, USA",(530) 243-8850,http://www.turtlebay.org/,Redding +Mc Connell Arboretum & Botanical Gardens,40.5944657,-122.3833208,"1125 Arboretum Dr, Redding, CA 96003, USA",(530) 243-8850,https://www.turtlebay.org/gardens,Redding +Whiskeytown National Recreation Area,40.6106256,-122.5280369,"Whiskeytown, CA 96095, USA",(530) 242-3400,https://www.nps.gov/whis/planyourvisit/whiskeytown-camping.htm,Redding +Swasey Recreational Area,40.55402,-122.4757566,"Redding, CA 96001, USA",Unknown,https://www.blm.gov/visit/swasey-recreation-area,Redding +Chamise Peak,40.6874559,-122.4366832,"Redding, CA 96003, USA",(530) 224-2100,http://healthyshasta.org/trail-maps/flanagan-and-chamise-peak-trails,Redding +Amazement Square,37.4161556,-79.1404816,"27 9th St, Lynchburg, VA 24504, USA",(434) 845-1888,http://www.amazementsquare.org/,Lynchburg +Point of Honor,37.4206461,-79.1439118,"112 Cabell St, Lynchburg, VA 24504, USA",(434) 455-6226,http://www.pointofhonor.org/,Lynchburg +The Anne Spencer House & Garden Museum,37.4038484,-79.1519678,"1313 Pierce St, Lynchburg, VA 24501, USA",(434) 845-1313,http://www.annespencermuseum.org/,Lynchburg +Lynchburg Museum,37.4137038,-79.14435019999999,"901 Court St, Lynchburg, VA 24504, USA",(434) 455-6226,http://www.lynchburgmuseum.org/,Lynchburg +Maier Museum of Art at Randolph College,37.4391876,-79.16988820000002,"1 Quinlan St, Lynchburg, VA 24503, USA",(434) 947-8136,http://www.maiermuseum.org/,Lynchburg +The Nature Zone,37.4026229,-79.16466299999999,"301 Grove St, Lynchburg, VA 24501, USA",(434) 455-5828,http://www.lynchburgparksandrec.com/the-nature-zone/,Lynchburg +Legacy Museum of African American History,37.41416280000001,-79.15434909999999,"403 Monroe St, Lynchburg, VA 24504, USA",(434) 845-3455,http://legacymuseum.org/,Lynchburg +SeaQuest Lynchburg,37.3649413,-79.1781669,"3405 Candlers Mountain Rd, Lynchburg, VA 24502, USA",(434) 237-5888,https://visitseaquest.com/lynchburg,Lynchburg +Historic Sandusky-University of Lynchburg,37.38036749999999,-79.1962928,"757 Sandusky Dr, Lynchburg, VA 24502, USA",(434) 832-0162,http://www.historicsandusky.org/,Lynchburg +Monument Terrace,37.4140749,-79.1437107,"313 9th St, Lynchburg, VA 24504, USA",Unknown,Unknown,Lynchburg +Thomas Jefferson's Poplar Forest,37.36158759999999,-79.2459505,"1776 Poplar Frst Pkwy, Lynchburg, VA 24502, USA",(434) 525-1806,http://www.poplarforest.org/,Lynchburg +Riverfront Park,37.41365500000001,-79.13798589999999,"1100 Jefferson St, Lynchburg, VA 24504, USA",(434) 455-5858,http://www.lynchburgparksandrec.com/our-parks/riverfront-park/,Lynchburg +Lynchburg Museum & Visitor Services,37.4136777,-79.14440499999999,"901 Court St, Lynchburg, VA 24504, USA",(434) 485-7290,http://www.lynchburgvirginia.org/,Lynchburg +Riverside Park,37.4386157,-79.16310570000002,"2238 Rivermont Ave, Lynchburg, VA 24503, USA",(434) 455-5858,http://www.lynchburgparksandrec.com/our-parks/riverside-park/,Lynchburg +Ivy Creek Park,37.4039835,-79.23379240000001,"118 Clemmons Lk Pl, Lynchburg, VA 24501, USA",(434) 455-5858,http://www.lynchburgparksandrec.com/our-parks/ivy-creek-park/,Lynchburg +"One Way Out Lynchburg, VA Escape Room",37.39940849999999,-79.2140277,"2264 Lakeside Dr, Lynchburg, VA 24501, USA",(434) 329-7329,https://www.lynchburgescape.com/,Lynchburg +Percival's Island Natural Area,37.4098431,-79.13206629999999,"1600 Concord Turnpike, Madison Heights, VA 24572, USA",(434) 856-2489,http://www.lynchburgparksandrec.com/trails/riverwalk-trail/,Lynchburg +Hollins Mill Park,37.4238519,-79.159393,"521 Hollins Mill Rd, Lynchburg, VA 24504, USA",(434) 455-5858,http://www.lynchburgparksandrec.com/our-parks/hollins-mill-park/,Lynchburg +Pest House Medical Museum,37.4157281,-79.15794679999999,"401 Taylor St, Lynchburg, VA 24501, USA",(434) 847-1465,http://www.gravegarden.org/the-pest-house/,Lynchburg +Lower Bluff Walk,37.4131632,-79.1387204,"2 12th St, Lynchburg, VA 24504, USA",(434) 856-2489,Unknown,Lynchburg +Studebaker National Museum,41.6748016,-86.2621037,"201 Chapin St, South Bend, IN 46601, USA",(574) 235-9714,http://www.studebakermuseum.org/,South Bend +The History Museum,41.6749128,-86.26268139999999,"808 W Washington St, South Bend, IN 46601, USA",(574) 235-9664,https://historymuseumsb.org/,South Bend +South Bend Museum of Art,41.676201,-86.2483985,"120 Doctor M.L.K. Jr Blvd, South Bend, IN 46601, USA",(574) 235-9102,http://www.southbendart.org/,South Bend +Potawatomi Zoo,41.6693401,-86.2179554,"500 S Greenlawn Ave, South Bend, IN 46615, USA",(574) 235-9800,https://potawatomizoo.org/,South Bend +River Lights Plaza,41.6764579,-86.24575089999999,"340 E Colfax Ave, South Bend, IN 46617, USA",Unknown,Unknown,South Bend +The Oliver Mansion,41.6757911,-86.2620778,"808 W Washington St, South Bend, IN 46601, USA",(574) 235-9664,http://historymuseumsb.org/see-do/historic-house#The%20Oliver%20Mansion,South Bend +Kidsfirst Children's Museum,41.6748412,-86.2625677,"808 W Washington St, South Bend, IN 46601, USA",(574) 235-9664,http://historymuseumsb.org/see-do/kidsfirst-childrens-museum/,South Bend +Kennedy Water Park,41.6840662,-86.28962519999999,"756 Eclipse Pl, South Bend, IN 46628, USA",(574) 235-9407,https://sbvpa.org/places/kennedy-park/,South Bend +Rum Village Nature Center,41.6474493,-86.27102459999999,"2626 S Gertrude St, South Bend, IN 46614, USA",(574) 235-9455,http://sbvpa.org/places/rum-village-park/,South Bend +Children's Museum of South Bend,41.64678649999999,-86.2493145,"2632 S Michigan St, South Bend, IN 46614, USA",(574) 222-2044,http://childrensmuseumofsouthbend.org/,South Bend +St. Patrick's County Park,41.7551906,-86.26556920000002,"50651 Laurel Rd, South Bend, IN 46637, USA",(574) 277-4828,http://www.sjcparks.org/592/St-Patricks,South Bend +Potawatomi Park,41.6684078,-86.219471,"2105 E Mishawaka Ave, South Bend, IN 46615, USA",(574) 299-4765,http://sbvpa.org/places/potawatomi-park/,South Bend +Seitz Park,41.6760102,-86.2452347,"S Niles Ave, South Bend, IN 46617, USA",(574) 299-4765,http://sbvpa.org/parks/seitz-park/,South Bend +Snite Research Center in the Visual Arts,41.6995878,-86.23569909999999,"100 Moose Krause Cir, Notre Dame, IN 46556, USA",(574) 631-5466,http://sniteartmuseum.nd.edu/,South Bend +Island Park at Century Center,41.6766274,-86.24752409999999,"120 S St Joseph St, South Bend, IN 46601, USA",(574) 235-9711,Unknown,South Bend +Kid's Kingdom at Potawatomi Park,41.6667944,-86.2168773,"2000 Wall St, South Bend, IN 46615, USA",Unknown,Unknown,South Bend +The Kizer House,41.6766044,-86.2617235,"803 W Washington St, South Bend, IN 46601, USA",(574) 232-4534,http://www.indianalandmarks.org/,South Bend +Birthday Chair,41.6866216,-86.2610753,"821 Portage Ave, South Bend, IN 46616, USA",Unknown,Unknown,South Bend +Park & Party - ND Tailgate Lot,41.69776170000001,-86.2251493,"54746 Twyckenham Dr, South Bend, IN 46637, USA",Unknown,Unknown,South Bend +South Bend Welcome Sign,41.6911107,-86.2506825,"1140 Hillcrest Rd, South Bend, IN 46617, USA",Unknown,Unknown,South Bend +Falls Park,43.55696669999999,-96.7219767,"131 E Falls Park Dr, Sioux Falls, SD 57104, USA",(605) 367-8222,http://www.siouxfalls.org/parks/parks/locations/falls-park,Sioux Falls +Great Plains Zoo,43.5392292,-96.7626989,"805 S Kiwanis Ave, Sioux Falls, SD 57104, USA",(605) 367-7003,http://www.greatzoo.org/,Sioux Falls +Butterfly House & Aquarium,43.50651679999999,-96.7624867,"4320 S Oxbow Ave, Sioux Falls, SD 57106, USA",(605) 334-9466,https://butterflyhouseaquarium.org//,Sioux Falls +Pettigrew Home & Museum,43.5483882,-96.7346368,"131 N Duluth Ave, Sioux Falls, SD 57104, USA",(605) 367-7097,http://www.siouxlandmuseums.com/,Sioux Falls +Good Earth State Park Visitor Center,43.4770412,-96.5944224,"26924 480th Ave, Sioux Falls, SD 57108, USA",(605) 213-1036,https://gfp.sd.gov/parks/detail/good-earth-state-park/,Sioux Falls +The Outdoor Campus,43.505875,-96.7612482,"4500 S Oxbow Ave, Sioux Falls, SD 57106, USA",(605) 362-2777,http://gfp.sd.gov/outdoor-learning/outdoor-campus/,Sioux Falls +Wild Water West Waterpark and Flamingo Falls Campground,43.50599340000001,-96.8918243,"26767 466th Ave, Sioux Falls, SD 57106, USA",(605) 361-9313,http://www.wildwaterwest.com/,Sioux Falls +Fawick Park,43.54539879999999,-96.7228082,"Sioux Falls, SD 57104, USA",(605) 367-8222,http://www.siouxfalls.org/parks/parks/locations/fawick,Sioux Falls +Sioux Empire Medical Museum,43.5356179,-96.7431672,"1305 18th St, Sioux Falls, SD 57105, USA",(605) 333-6397,https://news.sanfordhealth.org/news-release/sioux-empire-medical-museum-reopens/,Sioux Falls +Catfish Bay Greatest Show On H2O!,43.6085529,-96.7238608,"5500 Show Pl, Sioux Falls, SD 57104, USA",(605) 339-0911,http://www.catfishbay.com/,Sioux Falls +Sertoma Park,43.5069214,-96.760135,"4300 S Oxbow Ave, Sioux Falls, SD 57106, USA",Unknown,https://www.siouxfalls.org/parks/parks/locations/sertoma,Sioux Falls +Arrowhead Park,43.52544959999999,-96.6123832,"1600 River Bluff Rd, Sioux Falls, SD 57110, USA",(605) 367-8222,https://www.siouxfalls.org/parks/parks/locations/arrowhead-park,Sioux Falls +Downtown Sioux Falls,43.5503475,-96.7271125,"315 N Phillips Ave, Sioux Falls, SD 57104, USA",(605) 338-4009,http://www.dtsf.com/,Sioux Falls +Statue of David,43.54524079999999,-96.7232112,"200 S 2nd Ave, Sioux Falls, SD 57104, USA",Unknown,http://www.siouxfalls.org/parks/parks/locations/fawick,Sioux Falls +Sky Zone Trampoline Park,43.4983449,-96.782293,"5129 S Solberg Ave, Sioux Falls, SD 57108, USA",(605) 553-9910,https://www.skyzone.com/siouxfalls,Sioux Falls +Sherman Park,43.5419124,-96.764121,"Sherman Park Rd, Sioux Falls, SD 57104, USA",(605) 367-8222,http://www.siouxfalls.org/,Sioux Falls +Old Courthouse Museum,43.55157029999999,-96.7286659,"200 W 6th St, Sioux Falls, SD 57104, USA",(605) 367-4210,http://www.siouxlandmuseums.com/,Sioux Falls +Japanese Gardens,43.554862,-96.7421937,"707 N Grange Ave, Sioux Falls, SD 57104, USA",(605) 367-8222,http://www.siouxfalls.org/parks/parks/weddings/terrace-rules/gallery,Sioux Falls +Terrace Park,43.5575189,-96.7403772,"1100 W 4th St, Sioux Falls, SD 57104, USA",(605) 367-8222,http://www.siouxfalls.org/parks/parks/locations/terrace,Sioux Falls +Sioux Falls Murals,43.55040220000001,-96.7265223,"329 N Phillips Ave, Sioux Falls, SD 57104, USA",Unknown,Unknown,Sioux Falls +Lloyd Tilghman House & Civil War Museum,37.0844622,-88.60111909999999,"631 Kentucky Ave, Paducah, KY 42001, USA",(270) 575-5477,Unknown,Paducah +Paducah Railroad Museum,37.08542999999999,-88.5944339,"200 Washington St Downtown, Paducah, KY 42002, USA",(270) 908-6451,http://www.paducahrr.org/,Paducah +River Discovery Center is now the Inland Waterways Museum,37.0877355,-88.5941031,"117 S Water St, Paducah, KY 42001, USA",(270) 575-9958,http://inlandwaterways.org/,Paducah +The National Quilt Museum,37.0893311,-88.59713839999999,"215 Jefferson St, Paducah, KY 42001, USA",(270) 442-8856,http://www.quiltmuseum.org/,Paducah +William Clark Market House Museum,37.0872111,-88.59536399999999,"121 Market House Square, Paducah, KY 42001, USA",(270) 443-7759,Unknown,Paducah +Bob Noble Park,37.08631990000001,-88.6383567,"2801 Park Ave, Paducah, KY 42001, USA",(270) 444-8508,http://www.paducahky.gov/noble-park,Paducah +Historic Riverfront,37.0879133,-88.59359309999999,"27 The Foot of Broadway, Paducah, KY 42001, USA",Unknown,http://www.paducahky.gov/,Paducah +Mylo the Thirsty Sprocket,37.0709971,-88.6370851,"3121 Broadway St, Paducah, KY 42001, USA",Unknown,Unknown,Paducah +Whitehaven Welcome Center,37.05080099999999,-88.6528785,"1845 Lone Oak Rd, Paducah, KY 42003, USA",(270) 554-2077,https://www.kentuckytourism.com/,Paducah +Paducah Wall to Wall,37.08839260000001,-88.59417239999999,"200-298 S Water St, Paducah, KY 42003, USA",Unknown,http://paducahwalltowall.com/,Paducah +Atomic City Family Fun Center,37.0828283,-88.6700069,"3801 Hinkleville Rd, Paducah, KY 42001, USA",(270) 558-4868,https://atomicpaducah.com/,Paducah +Kolb Park,37.068064,-88.5889883,"1650 S 6th St, Paducah, KY 42003, USA",(270) 444-8508,https://paducahky.gov/kolb-park,Paducah +Carson Park,37.07537699999999,-88.63529199999999,"300 N 30th St, Paducah, KY 42001, USA",(270) 444-4744,Unknown,Paducah +Keiler Park,37.0711916,-88.63484539999999,"2900 Broadway St, Paducah, KY 42001, USA",(270) 444-8508,http://paducahky.gov/keiler-park,Paducah +Port of Paducah Kentucky,37.0851283,-88.595174,"300 S 3rd St, Paducah, KY 42003, USA",Unknown,Unknown,Paducah +Chief Paduke statue,37.0788646,-88.6206246,"Paducah, KY 42001, USA",Unknown,Unknown,Paducah +Raymond C. Schultz Park,37.0905566,-88.5958436,"The Greenway Trail, Paducah, KY 42001, USA",Unknown,Unknown,Paducah +Welcome To Kentucky Sign,37.1234671,-88.690924,"I-24, Paducah, KY 42001, USA",Unknown,Unknown,Paducah +Williams Park,37.0771154,-88.6751262,"Paducah, KY 42001, USA",Unknown,Unknown,Paducah +Gazebo,37.0862334,-88.63715119999999,"Paducah, KY 42001, USA",Unknown,Unknown,Paducah +Maui Nui Botanical Gardens,20.89260699999999,-156.486317,"150 Kanaloa Ave, Kahului, HI 96732, USA",(808) 249-2798,http://www.mnbg.org/,Kahului +Ho'aloha Park,20.8920946,-156.4689119,"1 E Kaahumanu Ave, Kahului, HI 96732, USA",(808) 270-7232,http://www.mauicounty.gov/facilities.aspx?search=1&CID=8&RID=3&Page=detail,Kahului +Keopuolani Regional Park,20.8941142,-156.4833713,"Kahului, HI 96732, USA",(808) 270-7389,Unknown,Kahului +Kanaha Pond State Wildlife Sanctuary,20.8882092,-156.4550603,"Amala Pl, Kahului, HI 96732, USA",Unknown,https://dlnr.hawaii.gov/wildlife/sanctuaries/kanaha/,Kahului +Kanaha Beach Park,20.89969869999999,-156.4405938,"Amala Pl, Kahului, HI 96732, USA",(808) 270-7389,http://www.co.maui.hi.us/Facilities.aspx?Page=detail&RID=101,Kahului +Maui Lani Regional Park,20.8668616,-156.4877588,"Kahului, HI 96732, USA",(808) 270-6139,https://www.mauicounty.gov/Facilities/Facility/Details/Maui-Lani-Regional-Park-413,Kahului +Maui Historical Society,20.8857761,-156.5071602,"2375A Main St, Wailuku, HI 96793, USA",(808) 244-3326,http://www.mauimuseum.org/,Kahului +Alexander & Baldwin Sugar Museum,20.86930389999999,-156.4550957,"3957 Hansen Rd, Puunene, HI 96784, USA",(808) 871-8058,http://www.sugarmuseum.com/,Kahului +Kahului Community Center Park,20.8821697,-156.4781165,"275 Uhu St, Kahului, HI 96732, USA",(808) 270-7232,http://www.co.maui.hi.us/Facilities.aspx?Page=detail&RID=97,Kahului +Nisei Veterans Memorial Center,20.9013808,-156.482685,"665 Kahului Beach Rd, Kahului, HI 96732, USA",(808) 244-6862,http://www.nvmc.org/,Kahului +Maui Tropical Plantation,20.8491053,-156.5067995,"1670 HI-30, Wailuku, HI 96793, USA",Unknown,http://www.mauitropicalplantation.com/,Kahului +Maui Zipline Company,20.84849,-156.5071043,"Maui Tropical Plantation, 1670 HI-30, Wailuku, HI 96793, USA",(808) 633-2464,http://www.mauizipline.com/,Kahului +Kahului Park,20.878614,-156.4720149,"410 Hina Ave, Kahului, HI 96732, USA",(808) 270-7232,http://www.mauicounty.gov/Facilities/Facility/Details/Kahului-Park-99,Kahului +Ali'i Greeting Service,20.8868557,-156.4595346,"250 Alamaha St unit n-14a, Kahului, HI 96732, USA",(808) 877-7088,https://www.aliigreetingservice.com/,Kahului +Maui Okinawa Cultural Center,20.9068784,-156.4874383,"688 Nukuwai Pl, Wailuku, HI 96793, USA",(808) 242-1560,https://huoa.org/clubs/maui-okinawa-kenjin-kai/,Kahului +Kamalii Park,20.8812888,-156.4611891,"59 Aiai St, Kahului, HI 96732, USA",(808) 270-7232,http://www.co.maui.hi.us/facilities.aspx?pagenum=27&RID=102&Page=detail,Kahului +Jym Park,20.9007477,-156.4402512,"Amala Pl, Kahului, HI 96732, USA",Unknown,Unknown,Kahului +Maui Activities,20.8878278,-156.4583524,"353 Hanamau St #23, Kahului, HI 96732, USA",(808) 214-1013,https://www.mauiactivities.com/,Kahului +Air Maui Helicopter Tours,20.8900192,-156.4326089,"108 lelepio place Kahului Heliport, 1 Keolani Pl, Kahului, HI 96732, USA",(808) 877-7005,http://www.airmaui.com/,Kahului +Maui Trampoline Park,20.8683323,-156.4976403,"21 Laa St, Wailuku, HI 96793, USA",(808) 214-5867,https://ultimateairmaui.com/,Kahului +Steel Pier,39.35766810000001,-74.41917160000001,"1000 Boardwalk, Atlantic City, NJ 08401, USA",(609) 345-4893,http://www.steelpier.com/,Atlantic City +Atlantic City Boardwalk,39.3539034,-74.4381586,"2301 Boardwalk, Atlantic City, NJ 08401, USA",(609) 449-7100,https://www.atlanticcitynj.com/explore/beaches-boardwalk/,Atlantic City +Absecon Lighthouse,39.3662285,-74.41430729999999,"31 S Rhode Island Ave, Atlantic City, NJ 08401, USA",(609) 449-1360,http://www.abseconlighthouse.org/,Atlantic City +Atlantic City Aquarium,39.3769065,-74.42005309999999,"800 N New Hampshire Ave, Atlantic City, NJ 08401, USA",(609) 348-2880,http://www.acaquarium.com/,Atlantic City +Atlantic City Boardwalk And Beach,39.3580919,-74.4216019,"Boardwalk, Atlantic City, NJ 08401, USA",(856) 688-3007,https://sites.google.com/view/acgambling/home,Atlantic City +Atlantic City Historical Museum,39.3540382,-74.4379577,"600-698 Boardwalk, Atlantic City, NJ 08401, USA",(609) 347-5839,http://atlanticcityexperience.org/,Atlantic City +Central Pier Arcade,39.35684980000001,-74.42490219999999,"1400 Boardwalk, Atlantic City, NJ 08401, USA",(609) 345-5219,https://www.centralpierarcade.com/,Atlantic City +Kennedy Plaza,39.3538153,-74.4379692,"2300-, 2498 Boardwalk, Atlantic City, NJ 08401, USA",Unknown,Unknown,Atlantic City +Brighton Park,39.3561412,-74.4308626,"124 Park Pl, Atlantic City, NJ 08401, USA",Unknown,Unknown,Atlantic City +Civil Rights Garden,39.359618,-74.43085769999999,"Pacific Ave & S Dr Martin Luther King Blvd, Atlantic City, NJ 08401, USA",(609) 347-0500,Unknown,Atlantic City +Harrah s Casino,39.3845487,-74.4296631,"777 Harrah's Blvd, Atlantic City, NJ 08401, USA",Unknown,Unknown,Atlantic City +Lucy the Elephant,39.32083129999999,-74.5115644,"9200 Atlantic Ave, Margate City, NJ 08402, USA",Unknown,http://www.lucytheelephant.org/,Atlantic City +New Jersey Korean War Memorial,39.3559353,-74.43105489999999,"124 Park Pl, Atlantic City, NJ 08401, USA",(609) 345-2500,http://www.nj.gov/military/korea/,Atlantic City +DO|AC - Spot,39.36565129999999,-74.4239296,"928 Arctic Ave, Atlantic City, NJ 08401, USA",Unknown,Unknown,Atlantic City +Storybook Land,39.4231837,-74.5915279,"6415 Black Horse Pike, Egg Harbor Township, NJ 08234, USA",(609) 646-0103,https://storybookland.com/,Atlantic City +Atlantic City Tiki Boat,39.3767042,-74.4199986,"800 N New Hampshire Ave, Atlantic City, NJ 08401, USA",(609) 770-1476,https://actikiboat.com/,Atlantic City +Oscar E. McClinton Waterfront Park,39.3720527,-74.4141154,"201 N New Hampshire Ave, Atlantic City, NJ 08401, USA",(609) 625-8219,http://www.aclink.org/,Atlantic City +Atlantic City Visitor Information Center (CRDA),39.354905,-74.438391,"2301 Boardwalk, Atlantic City, NJ 08401, USA",(609) 449-7100,https://www.atlanticcitynj.com/,Atlantic City +Atlantic City Shore line,39.3553642,-74.4275044,"1636 Boardwalk, Atlantic City, NJ 08401, USA",Unknown,Unknown,Atlantic City +Worker’s Memorial,39.3538041,-74.43771869999999,"2300-, 2498, Boardwalk, Atlantic City, NJ 08401, USA",Unknown,Unknown,Atlantic City +Paul Bunyan & Babe the Blue Ox Statues,47.4704,-94.878959,"300 Bemidji Ave N, Bemidji, MN 56601, USA",(800) 458-2223,http://www.bemidji.org/,Bemidji +Headwaters Science Center,47.47224509999999,-94.8816752,"413 Beltrami Ave NW, Bemidji, MN 56601, USA",(218) 444-4472,http://www.hscbemidji.org/,Bemidji +Diamond Point Park,47.4857667,-94.8726224,"1710 Birchmont Dr NE, Bemidji, MN 56601, USA",(218) 333-1859,http://www.ci.bemidji.mn.us/,Bemidji +Beltrami County History Center,47.46761159999999,-94.8824507,"130 Minnesota Ave SW, Bemidji, MN 56601, USA",(218) 444-3376,http://www.beltramihistory.org/,Bemidji +Chief Bemidji Statue,47.47196760000001,-94.8793492,"426 Bemidji Ave N #1st, Bemidji, MN 56601, USA",Unknown,Unknown,Bemidji +Cameron Park,47.49385769999999,-94.8745271,"2609 Birchmont Dr NE, Bemidji, MN 56601, USA",(218) 333-1859,https://findbemidji.com/listings/cameron-park/,Bemidji +Paul Bunyan Animal Land,47.4191702,-94.8165443,"3857 Animal Land Dr SE, Bemidji, MN 56601, USA",Unknown,Unknown,Bemidji +Bemidji City Park,47.4887081,-94.8988106,"1330 23rd St NW, Bemidji, MN 56601, USA",(218) 333-1859,https://www.ci.bemidji.mn.us/parksandrec,Bemidji +Shaynowishkung Statue,47.4719602,-94.8793587,"Paul Bunyan State Trail, Bemidji, MN 56601, USA",Unknown,Unknown,Bemidji +Mississippi Headwaters State Forest,47.4340662,-95.0979547,"Bemidji, MN 56601, USA",(651) 296-6157,http://www.dnr.state.mn.us/state_forests/sft00034/index.html,Bemidji +Buena Vista State Forest,47.5686026,-94.7124609,"Bemidji, MN 56601, USA",(651) 296-6157,http://www.dnr.state.mn.us/state_forests/sft00010/index.html,Bemidji +Lake Bemidji State Park,47.5351607,-94.8268149,"3401 State Park Rd NE, Bemidji, MN 56601, USA",(218) 308-2300,http://www.dnr.state.mn.us/state_parks/lake_bemidji/index.html,Bemidji +South Shore Park,47.4636528,-94.860828,"527 Lake Shore Dr NE, Bemidji, MN 56601, USA",Unknown,https://bemidjimn.recdesk.com/Community/Facility/Detail?facilityId=15,Bemidji +Visit Bemidji,47.47074019999999,-94.8788498,"300 Bemidji Ave N, Bemidji, MN 56601, USA",(218) 444-6081,http://www.visitbemidji.com/,Bemidji +Toledo Zoo,41.6216435,-83.5825426,"2 Hippo Way, Toledo, OH 43609, USA",(419) 385-5721,https://www.toledozoo.org/,Toledo +National Museum of the Great Lakes,41.65649080000001,-83.51516,"1701 Front St, Toledo, OH 43605, USA",(419) 214-5000,http://www.nmgl.org/,Toledo +Toledo Museum of Art,41.6583273,-83.55932519999999,"2445 Monroe St, Toledo, OH 43620, USA",(419) 255-8000,http://www.toledomuseum.org/,Toledo +Imagination Station,41.65193,-83.53161399999999,"1 Discovery Way, Toledo, OH 43604, USA",(419) 244-2674,http://www.imaginationstationtoledo.org/,Toledo +Toledo Botanical Garden,41.6663686,-83.6720878,"5403 Elmer Dr, Toledo, OH 43615, USA",(419) 270-7500,https://metroparkstoledo.com/explore-your-parks/toledo-botanical-garden/,Toledo +International Park,41.6504008,-83.526607,"Rails To Trails Next To Maumee River, Toledo, OH 43605, USA",(419) 936-2875,https://toledo.oh.gov/services/public-service/parks-recreation-forestry/parks/,Toledo +Toledo Firefighters Museum,41.6929682,-83.5641222,"918 W Sylvania Ave, Toledo, OH 43612, USA",(419) 478-3473,http://toledofirefightersmuseum.org/,Toledo +Wildwood Preserve Metropark,41.6818066,-83.66531859999999,"5100 Central Ave, Toledo, OH 43615, USA",(419) 407-9700,http://metroparkstoledo.com/wildwoodpreserve,Toledo +"Point Place Lighthouse, llc",41.6996116,-83.4788221,"Toledo, OH 43611, USA",(419) 626-7980,http://coastal.ohiodnr.gov/lucas/bayviewpark,Toledo +Toledo History Museum,41.6533199,-83.53335729999999,"425 N St Clair St, Toledo, OH 43604, USA",(419) 215-2437,https://www.toledohistorymuseum.org/,Toledo +Greetings From Toledo,41.64781009999999,-83.52289619999999,"120 Main St, Toledo, OH 43605, USA",Unknown,Unknown,Toledo +Glass Pavilion,41.65966299999999,-83.5580825,"2444 Monroe St, Toledo, OH 43620, USA",(419) 255-8000,http://www.toledomuseum.org/glass-pavilion/,Toledo +Promenade Park,41.6495389,-83.53334869999999,"400 Water St, Toledo, OH 43604, USA",(419) 936-2875,https://toledo.oh.gov/,Toledo +Delaware Park,41.610612,-83.5899603,"3076-3098, River Rd, Toledo, OH 43614, USA",(419) 936-2875,http://toledo.oh.gov/services/public-service/parks-recreation-forestry/parks/,Toledo +Glass City River Wall,41.62663,-83.53086499999999,"1306 Miami St, Toledo, OH 43605, USA",Unknown,http://glasscityriverwall.org/,Toledo +Perspective Arcade Public Art,41.6558802,-83.5361911,"740 Jackson St CTR 1920, Toledo, OH 43604, USA",Unknown,Unknown,Toledo +Toledo Zoo Aquarium,41.61792109999999,-83.58020259999999,"2700 Broadway St, Toledo, OH 43609, USA",(419) 385-5721,http://www.toledozoo.org/,Toledo +Cullen Park,41.7046893,-83.47487339999999,"4526 N Summit St, Toledo, OH 43611, USA",Unknown,http://cullenpark.org/,Toledo +Frida Kahlo Mural,41.64038379999999,-83.5431558,"402 Broadway St, Toledo, OH 43604, USA",Unknown,Unknown,Toledo +Jamie Farr Park,41.67115839999999,-83.5049703,"2140 N Summit St, Toledo, OH 43611, USA",(419) 936-3887,https://toledo.oh.gov/services/public-service/parks-recreation-forestry/,Toledo +The Grace Museum,32.4496457,-99.7344586,"102 Cypress St, Abilene, TX 79601, USA",(325) 673-4587,http://www.thegracemuseum.org/,Abilene +Frontier Texas!,32.4492935,-99.7282884,"625 N 1st St, Abilene, TX 79601, USA",(325) 437-2800,http://www.frontiertexas.com/,Abilene +Historic Fort Phantom Hill,32.642376,-99.679019,"10818 FM600, Abilene, TX 79601, USA",(325) 677-1309,http://fortphantom.org/,Abilene +12th Armored Division Memorial,32.4504051,-99.7364242,"1289 N 2nd St, Abilene, TX 79601, USA",(325) 677-6515,http://www.12tharmoreddivisionmuseum.com/,Abilene +National Center for Children's Illustrated Literature,32.4499118,-99.7357407,"102 Cedar St, Abilene, TX 79601, USA",(325) 673-4586,http://nccil.org/,Abilene +Adamson-Spalding Storybook Garden,32.45474889999999,-99.7329801,"1008-1098 N 6th St, Abilene, TX 79601, USA",Unknown,Unknown,Abilene +Abilene Zoo,32.4391428,-99.6906504,"2070 Zoo Ln, Abilene, TX 79602, USA",(325) 676-6085,http://www.abilenezoo.org/?utm_source=gmb&utm_medium=organic,Abilene +Everman Park,32.44925120000001,-99.7334499,"1007-1099 N 1st St, Abilene, TX 79601, USA",(325) 676-6217,http://www.abilenetx.gov/parksandrec,Abilene +'Good Night Dinosaur' Statue,32.4548779,-99.7332775,"Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,Abilene +'Dino Bob' Statue,32.4499817,-99.7353442,"133 Cedar St, Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,Abilene +Giant Buffalo Skull,32.4495551,-99.7276318,"625 N 1st St, Abilene, TX 79601, USA",(325) 437-2800,http://www.frontiertexas.com/,Abilene +'Sanderson Mansnoozie' Statue,32.4504517,-99.7343226,"174 Cypress St # 101, Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,Abilene +'Yertle the Turtle' Statue,32.4492543,-99.7335716,"Everman Park, 1007, 1099 N 1st St, Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,Abilene +'E. Aster Bunnymund' Statue,32.4494102,-99.7357411,"1201 N 1st St, Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,Abilene +Redbud Park,32.40837289999999,-99.7630098,"3125 S 32nd St, Abilene, TX 79605, USA",(325) 676-6217,http://www.abilenetx.gov/parksandrec,Abilene +'Stuart Little' Statue,32.4549492,-99.7330277,"1051 N 6th St, Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,Abilene +The Discovery Center & Truth Bookstore,32.4406388,-99.738419,"810 Butternut St, Abilene, TX 79602, USA",(325) 673-5050,http://www.evidences.org/,Abilene +'Toothiana' Statue,32.4506486,-99.7340607,"Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,Abilene +'The Lorax' Statue,32.4492628,-99.7345461,"1101 N 1st St, Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,Abilene +'The Three Little Pigs' Statue,32.4548253,-99.7328725,"Adamson-Spalding Storybook Garden, 1098 N 6th St #1008, Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,Abilene +California State Railroad Museum,38.5849368,-121.5043016,"125 I St, Sacramento, CA 95814, USA",(916) 323-9280,http://www.californiarailroad.museum/,Sacramento +Sacramento Zoo,38.5392791,-121.5040041,"3930 W Land Park Dr, Sacramento, CA 95822, USA",(916) 808-5888,http://saczoo.org/,Sacramento +Old Sacramento Waterfront,38.58280679999999,-121.505165,"1014 2nd St Suite 200, Sacramento, CA 95814, USA",(916) 970-5226,http://www.oldsacramento.com/,Sacramento +Crocker Art Museum,38.5769817,-121.5068534,"216 O St, Sacramento, CA 95814, USA",(916) 808-7000,http://crockerart.org/,Sacramento +Fairytale Town,38.5395888,-121.5012772,"3901 Land Park Dr, Sacramento, CA 95822, USA",Unknown,http://www.fairytaletown.org/,Sacramento +Stanford Mansion,38.5761903,-121.4978549,"800 N St, Sacramento, CA 95814, USA",(916) 324-9266,http://www.parks.ca.gov/?page_id=489,Sacramento +California State Capitol Museum,38.5765882,-121.4932368,"1315 10th St, Sacramento, CA 95814, USA",(916) 324-0333,http://www.capitolmuseum.ca.gov/,Sacramento +Sutter's Fort State Historic Park,38.57233889999999,-121.4712056,"2701 L St, Sacramento, CA 95816, USA",(916) 445-4422,http://www.parks.ca.gov/?page_id=485,Sacramento +California Museum,38.574563,-121.4956668,"1020 O St, Sacramento, CA 95814, USA",(916) 653-7524,https://www.californiamuseum.org/,Sacramento +Underground Tours,38.584838,-121.5047818,"101 I St, Sacramento, CA 95814, USA",(916) 808-7059,http://www.sachistorymuseum.org/,Sacramento +Scavenger Hunt Walking Tours - Old Sacramento,38.5833746,-121.5042066,"131 J St, Sacramento, CA 95814, USA",(916) 587-2923,https://www.scavengerhuntwalkingtours.com/,Sacramento +California State Capitol Park,38.57592820000001,-121.4907022,"1300 L St, Sacramento, CA 95814, USA",Unknown,https://capitolmuseum.ca.gov/learn/about-the-capitol/capitol-park/,Sacramento +State Indian Museum,38.5730175,-121.4716465,"2618 K St, Sacramento, CA 95816, USA",(916) 324-0971,https://www.parks.ca.gov/?page_id=486,Sacramento +William Land Regional Park,38.5416512,-121.5002654,"3800 W Land Park Dr, Sacramento, CA 95822, USA",(916) 808-6060,https://www.cityofsacramento.org/ParksandRec/Parks/Park-Directory/Land-Park/William-Land,Sacramento +Tower Bridge,38.5805535,-121.5083621,"Sacramento, CA 95814, USA",(916) 808-8300,http://www.cityofsacramento.org/,Sacramento +Discovery Park,38.60576259999999,-121.50348,"1600 Garden Hwy, Sacramento, CA 95833, USA",(916) 875-6961,https://regionalparks.saccounty.net/Parks/Pages/DiscoveryPark.aspx,Sacramento +Scavenger Hunt Walking Tours - Sacramento Capitol Building,38.5765882,-121.4932368,"1315 10th St, Sacramento, CA 95814, USA",(916) 587-2923,https://www.scavengerhuntwalkingtours.com/,Sacramento +about capa,38.578009,-121.4927243,"1127 11th St, Sacramento, CA 95814, USA",(916) 706-2939,https://www.capalink.org/contact.html,Sacramento +Waterfront Wheel,38.5816592,-121.5064629,"1150 Front St, Sacramento, CA 95814, USA",Unknown,https://www.oldsacramento.com/event/waterfront-wheel-1,Sacramento +California Automobile Museum,38.5702875,-121.5117814,"2200 Front St, Sacramento, CA 95818, USA",(916) 442-6802,http://www.calautomuseum.org/,Sacramento +Cadillac Ranch,35.1872366,-101.9870486,"13651 I-40 Frontage Rd, Amarillo, TX 79124, USA",(833) 330-2650,https://www.facebook.com/1974cadillacranch/,Amarillo +Amarillo Botanical Gardens,35.197691,-101.915258,"1400 Streit Dr, Amarillo, TX 79106, USA",(806) 352-6513,http://www.amarillobotanicalgardens.org/,Amarillo +Amarillo Zoo,35.2394971,-101.8352622,"700 Comanchero Trail, Amarillo, TX 79107, USA",(806) 381-7911,https://zoo.amarillo.gov/,Amarillo +Don Harrington Discovery Center,35.2000385,-101.9132754,"1200 Streit Dr, Amarillo, TX 79106, USA",(806) 355-9547,https://discoverycenteramarillo.org/,Amarillo +Texas Air & Space Museum,35.2134157,-101.7140016,"10001 American Dr, Amarillo, TX 79111, USA",(806) 335-9159,http://www.texasairandspacemuseum.org/,Amarillo +Amarillo Museum of Art,35.1885361,-101.8451167,"2200 S Van Buren St, Amarillo, TX 79109, USA",(806) 371-5050,http://www.amoa.org/,Amarillo +2nd Amendment Cowboy,35.1864958,-101.9741369,"2601 Hope Rd, Amarillo, TX 79124, USA",(806) 355-7121,https://m.facebook.com/cadillacranchshop/,Amarillo +American Quarter Horse Hall of Fame & Museum,35.1942386,-101.8079849,"2601 E Interstate Dr, Amarillo, TX 79104, USA",(806) 376-5181,http://aqha.com/foundation,Amarillo +Wildcat Bluff Nature Center,35.2351151,-101.9398872,"2301 N Soncy Rd, Amarillo, TX 79124, USA",(806) 352-6007,http://wildcatbluff.org/,Amarillo +Helium Time Columns Monument,35.1995489,-101.9133281,"1200-1348 Streit Dr, Amarillo, TX 79106, USA",Unknown,http://www.atlasobscura.com/places/helium-time-columns-monument,Amarillo +Wonderland Amusement Park,35.2425502,-101.8323075,"2601 Dumas Dr, Amarillo, TX 79107, USA",(806) 383-3344,http://www.wonderlandpark.com/,Amarillo +Amarillo Historical Museum,35.195302,-101.8320551,"1612 S Johnson St, Amarillo, TX 79102, USA",(806) 206-3926,http://amarillohistorical.wixsite.com/amarillohistory,Amarillo +"Amarillo Railroad Museum, Inc.",35.2443939,-101.674078,"3160 I Ave, Amarillo, TX 79111, USA",(806) 335-3333,http://www.amarillorailmuseum.com/,Amarillo +Madam Queen,35.2110486,-101.8302279,"500 SE 2nd Ave, Amarillo, TX 79101, USA",Unknown,https://www.waymarking.com/waymarks/WMA1AN_Madam_Queen_Amarillo_TX,Amarillo +Kwahadi Museum of the American Indian,35.1937799,-101.7340188,"9151 I-40, Amarillo, TX 79118, USA",(806) 335-3175,http://www.kwahadi.com/,Amarillo +Free Wall,35.1986363,-101.8477229,"716 SW 16th Ave, Amarillo, TX 79101, USA",Unknown,Unknown,Amarillo +Harrington House Historic Home,35.1971342,-101.8395419,"1600 S Polk St, Amarillo, TX 79102, USA",(806) 374-5490,https://www.harringtonhousehistorichome.org/,Amarillo +Yellow Girl Mural,35.2075485,-101.839954,"616 S Harrison St, Amarillo, TX 79101, USA",Unknown,Unknown,Amarillo +Amarillo Route66,35.2110614,-101.876196,"3511 SW 6th Ave, Amarillo, TX 79106, USA",(806) 373-1427,http://www.amarillo66.com,Amarillo +Thompson Memorial Park,35.2377131,-101.8350602,"2401 Dumas Dr, Amarillo, TX 79107, USA",(806) 378-3036,https://www.amarilloparks.org/parks-facilities/parks/thompson-memorial-park,Amarillo +Sylvan Island,41.5129153,-90.536511,"1st Ave & 2nd Street, Moline, IL 61265, USA",(309) 524-2424,https://www.facebook.com/Sylvan-Island-540088789705192/,Moline +Ben Butterworth Parkway,41.5142829,-90.4972829,"3000 River Dr, Moline, IL 61265, USA",(309) 524-2424,https://www.moline.il.us/1149/Ben-Butterworth-Memorial-Parkway,Moline +John Deere Pavilion,41.5076168,-90.5178983,"1400 River Dr, Moline, IL 61265, USA",(309) 765-1000,https://www.deere.com/en/connect-with-john-deere/visit-john-deere/pavilion/,Moline +Celebration River Cruises,41.5141131,-90.5000727,"2501 River Dr, Moline, IL 61265, USA",(309) 764-1952,http://www.celebrationbelle.com/,Moline +Prospect Park,41.47870919999999,-90.5111744,"1584 34th Ave, Moline, IL 61265, USA",(309) 524-2424,https://www.facebook.com/prospectparkmoline/,Moline +Stephens Park,41.4999079,-90.5298179,"7th St & 15th Avenue, FFXC+FP4, 941 6th St, Moline, IL 61265, USA",(309) 524-2424,https://www.moline.il.us/1164/Stephens-Park,Moline +Sylvan Island Gateway Park,41.5097925,-90.5362611,"Moline, IL 61265, USA",Unknown,Unknown,Moline +Riverside Park,41.5096875,-90.4961379,"3300 5th Ave, Moline, IL 61265, USA",(309) 524-2000,https://www.moline.il.us/1163/Riverside-Park,Moline +Millennium Park,41.4789006,-90.4334357,"79th Street and, 34th Ave, Moline, IL 61265, USA",(309) 524-2424,http://www.moline.il.us/,Moline +Visit Quad Cities - Moline Visitor Center,41.5094418,-90.5154066,"1601 River Dr #110, Moline, IL 61265, USA",(800) 747-7800,http://www.visitquadcities.com/,Moline +Wiman/Miss Pattie's Park,41.4747746,-90.5260796,"3550 8th St, Moline, IL 61265, USA",(309) 524-2424,http://www.moline.il.us/index.aspx?nid=94,Moline +Harold's Landing Park,41.4620575,-90.5006095,"2500-2660 N Shore Dr, Moline, IL 61265, USA",Unknown,Unknown,Moline +McCandless Park,41.5023443,-90.5370597,"Moline, IL 61265, USA",(309) 524-2424,https://www.moline.il.us/1158/McCandless-Park,Moline +Rock Island Arsenal Museum,41.5189881,-90.5463296,"3500 North Ave, Rock Island, IL 61201, USA",(309) 782-5021,https://www.arsenalhistoricalsociety.org/,Moline +Campbell's Island State Historic Site,41.5383861,-90.4364691,"124 Island Ave, East Moline, IL 61244, USA",(309) 788-0177,https://dnrhistoric.illinois.gov/experience/sites/site.campbells-island.html,Moline +Riverside Cemetery,41.5063794,-90.49319,"3400 5th Ave, Moline, IL 61265, USA",(309) 524-2435,https://www.moline.il.us/263/Riverside-Cemetery,Moline +Browning Park,41.49053989999999,-90.5112799,"15th Street, 22nd Ave, Moline, IL 61265, USA",(309) 524-2424,https://www.moline.il.us/1150/Browning-Park,Moline +Butterworth Park,41.5121194,-90.4301078,"1400 23rd Ave, East Moline, IL 61244, USA",(309) 752-1573,https://www.eastmoline.com/facilities/facility/details/Butterworth-Park-1,Moline +Black Hawk State Historic Site,41.4650494,-90.576452,"Park Office & Maintenance Shop, 1510 46th Ave, Rock Island, IL 61201, USA",(309) 788-0177,http://www.blackhawkpark.org/,Moline +Schwiebert Riverfront Park,41.51261110000001,-90.5745078,"101 17th St, Rock Island, IL 61201, USA",(309) 732-7275,http://www.rigov.org/Facilities.aspx?Page=detail&RID=34,Moline +Coastal Discovery Museum,32.2114854,-80.74402479999999,"70 Honey Horn Dr, Hilton Head Island, SC 29926, USA",(843) 689-6767,http://www.coastaldiscovery.org/,Hilton Head +Harbour Town Lighthouse,32.1386199,-80.81263659999999,"149 Lighthouse Rd, Hilton Head Island, SC 29928, USA",(866) 305-9814,http://www.harbourtownlighthouse.com/,Hilton Head +Coligny Beach Park,32.14156200000001,-80.7510617,"1 Coligny Circle, Hilton Head Island, SC 29928, USA",(843) 342-4580,https://www.hiltonhead.com/coligny-beach-park/,Hilton Head +Folly Field Beach Park,32.201649,-80.689193,"55 Starfish Dr, Hilton Head Island, SC 29928, USA",(843) 341-4600,https://hiltonheadislandsc.gov/parks/FollyFieldBeach/,Hilton Head +Driessen Beach Park,32.198988,-80.69429699999999,"64 Bradley Beach Rd, Hilton Head Island, SC 29928, USA",(843) 842-5698,http://www.hiltonheadislandsc.gov/ourisland/Parks/parksandfacdetails.cfm?FacilityID=29,Hilton Head +Historic Mitchelville Freedom Park,32.2370053,-80.68726269999999,"229 Beach City Rd, Hilton Head Island, SC 29926, USA",(843) 255-7301,Unknown,Hilton Head +Sea Pines Forest Preserve,32.1466096,-80.7819829,"Hilton Head Island, SC 29928, USA",(843) 842-1979,Unknown,Hilton Head +Fish Haul Beach Park,32.2421535,-80.6865516,"120 Mitchelville Rd, Hilton Head Island, SC 29926, USA",(843) 341-4600,https://www.hiltonheadislandsc.gov/parks/FishHaulBeach/,Hilton Head +Pirates of Hilton Head,32.138871,-80.813662,"149 Lighthouse Rd, Hilton Head Island, SC 29928, USA",(843) 363-7000,http://piratesofhiltonhead.com/,Hilton Head +Shelter Cove Community Park,32.18628330000001,-80.7215828,"39 Shelter Cove Ln, Hilton Head Island, SC 29928, USA",(843) 341-4600,https://www.hiltonheadislandsc.gov/parks/ShelterCove/,Hilton Head +King Neptune Sundial,32.1807202,-80.7280152,"13 Harbourside Ln, Hilton Head Island, SC 29928, USA",Unknown,https://www.sheltercovehiltonhead.com/post/celebrating-palmetto-dunes-resort-s-50th-anniversary-a-history-of-neptune-statue?utm_campaign=GoogleBusiness&utm_medium=local&utm_source=Google&utm_content=KingNeptune,Hilton Head +"swallowtail, hilton head island",32.1442018,-80.7604424,"35 Deallyon Ave, Hilton Head Island, SC 29928, USA",Unknown,Unknown,Hilton Head +The Sandbox Children's Museum,32.1443948,-80.754851,"80 Nassau St, Hilton Head Island, SC 29928, USA",(843) 842-7645,http://www.thesandbox.org/,Hilton Head +Gregg Russell Harbour Town Playground,32.1391694,-80.81053360000001,"140 Lighthouse Rd, Hilton Head Island, SC 29928, USA",(843) 785-3333,https://www.seapines.com/resort_activities/harbour_town/playground.aspx,Hilton Head +Stoney Baynard Ruins,32.1291366,-80.8132735,"Plantation Dr, Hilton Head Island, SC 29928, USA",Unknown,https://heritagelib.org/the-stoneys-the-baynards-and-their-mansion?rq=Stoney%20baynard,Hilton Head +Gullah Museum of Hilton Head Island,32.2263905,-80.7413411,"12 Georgianna Dr, Hilton Head Island, SC 29926, USA",(843) 681-3254,http://www.gullahmuseumhhi.org/,Hilton Head +Pirates HHI,32.17717289999999,-80.7719202,"86 Helmsman Way, Hilton Head Island, SC 29928, USA",(843) 415-8400,http://www.pirateshhi.com/,Hilton Head +Atlantic Ocean beach,32.18145369999999,-80.7335035,"2 Shelter Cove Ln, Hilton Head Island, SC 29928, USA",Unknown,Unknown,Hilton Head +Lowcountry Celebration Park,32.143504,-80.7539268,"94 Pope Ave, Hilton Head Island, SC 29928, USA",(843) 341-4600,https://hiltonheadislandsc.gov/parks/LowcountryCelebration/home.cfm,Hilton Head +Adventure Hilton Head,32.18658000000001,-80.758864,"33 Broad Creek Marina Way, Hilton Head Island, SC 29926, USA",(843) 682-6000,https://myadventurehiltonhead.com/,Hilton Head +Minneapolis Sculpture Garden,44.96954789999999,-93.2897803,"725 Vineland Pl, Minneapolis, MN 55403, USA",(612) 375-7600,https://www.walkerart.org/garden/,Minneapolis +Minneapolis Institute of Art,44.95850009999999,-93.273218,"2400 3rd Ave S, Minneapolis, MN 55404, USA",(888) 642-2787,https://new.artsmia.org/,Minneapolis +Mill City Museum,44.9787828,-93.257271,"704 S 2nd St, Minneapolis, MN 55401, USA",(612) 341-7555,https://www.mnhs.org/millcity,Minneapolis +Mill Ruins Park,44.9798041,-93.2563898,"102 Portland Ave S, Minneapolis, MN 55401, USA",(612) 313-7793,https://www.minneapolisparks.org/parks__destinations/parks__lakes/mill_ruins_park/,Minneapolis +Weisman Art Museum,44.9731104,-93.2369351,"333 E River Pkwy, Minneapolis, MN 55455, USA",(612) 625-9494,https://wam.umn.edu/,Minneapolis +Gold Medal Park,44.9776218,-93.2532512,"Second Street and 11th Avenue South, Minneapolis, MN 55415, USA",(612) 904-5607,http://www.goldmedalpark.org/,Minneapolis +Foshay Museum and Observation Deck,44.9747902,-93.2719858,"821 S Marquette Ave 30th floor, Minneapolis, MN 55402, USA",(612) 215-3700,http://wminneapolis.com/,Minneapolis +Minnehaha Falls,44.91535599999999,-93.2110781,"4801 S Minnehaha Dr, Minneapolis, MN 55417, USA",(612) 230-6400,https://www.minneapolisparks.org/parks__destinations/parks__lakes/minnehaha_regional_park/,Minneapolis +Prospect Park Water Tower,44.9686771,-93.2126581,"55 Malcolm Ave SE, Minneapolis, MN 55414, USA",(612) 767-6531,https://www.prospectparkmpls.org/,Minneapolis +St. Anthony Falls Visitor Center,44.98111000000001,-93.2582359,"1 Portland Ave, Minneapolis, MN 55401, USA",(651) 293-0200,https://www.nps.gov/miss/planyourvisit/stanfall.htm,Minneapolis +Mall of America®,44.8548651,-93.2422148,"60 E Broadway, Bloomington, MN 55425, USA",(952) 883-8800,https://mallofamerica.com/,Minneapolis +Walker Art Center,44.9681442,-93.2886494,"725 Vineland Pl, Minneapolis, MN 55403, USA",(612) 375-7600,https://walkerart.org/,Minneapolis +Central Mississippi Riverfront Regional Park,44.97951700000001,-93.2565925,"East and West banks of the Mississippi River between & 35W bridges, Ave N, Minneapolis, MN 55401, USA",Unknown,https://www.minneapolisparks.org/parks__destinations/parks__lakes/central_mississippi_riverfront_regional_park/,Minneapolis +Minneapolis Lookout,45.0034454,-93.2182984,"3045-3109 Ridgway Pkwy, Minneapolis, MN 55413, USA",Unknown,Unknown,Minneapolis +Water Power Park,44.982972,-93.2565953,"204 SE Main St, Minneapolis, MN 55414, USA",(612) 230-6400,https://www.nps.gov/miss/planyourvisit/waterpower.htm,Minneapolis +Minnehaha Regional Park,44.9167388,-93.2101066,"4801 S Minnehaha Dr, Minneapolis, MN 55417, USA",(612) 230-6400,https://www.minneapolisparks.org/parks__destinations/parks__lakes/minnehaha_regional_park/,Minneapolis +Stepped Tower,44.97339270000001,-93.2423939,"Unnamed Road, Minneapolis, MN 55454, USA",Unknown,Unknown,Minneapolis +American Swedish Institute,44.9545975,-93.2658596,"2600 Park Ave, Minneapolis, MN 55407, USA",(612) 871-4907,http://www.asimn.org/,Minneapolis +Boom Island Lighthouse,44.9931347,-93.2717894,"3-29 Plymouth Ave NE, Minneapolis, MN 55413, USA",Unknown,https://www.minneapolisparks.org/parks__destinations/parks__lakes/boom_island_park/,Minneapolis +Boom Island Park,44.9920367,-93.2686552,"724 Sibley St NE, Minneapolis, MN 55413, USA",(612) 230-6400,https://www.minneapolisparks.org/,Minneapolis +Edison & Ford Winter Estates,26.6338939,-81.880091,"2350 McGregor Blvd, Fort Myers, FL 33901, USA",(239) 334-7419,https://www.edisonfordwinterestates.org/,Fort Myers +River District,26.6449682,-81.8687348,"2180 First St #510, Fort Myers, FL 33901, USA",Unknown,https://www.myriverdistrict.com/,Fort Myers +Six Mile Cypress Slough Preserve,26.5705414,-81.82656349999999,"7751 Penzance Blvd, Fort Myers, FL 33966, USA",(239) 533-7550,https://www.sloughpreserve.org/,Fort Myers +IMAG History & Science Center,26.6404314,-81.8594537,"2000 Cranford Ave, Fort Myers, FL 33916, USA",(239) 243-0043,http://www.theimag.org/,Fort Myers +Calusa Nature Center & Planetarium,26.6156711,-81.81246949999999,"3450 Ortiz Ave, Fort Myers, FL 33905, USA",(239) 275-3435,http://www.calusanature.org/,Fort Myers +Manatee Park,26.69315319999999,-81.7775541,"10901 Palm Beach Blvd, Fort Myers, FL 33905, USA",(239) 690-5030,https://www.leegov.com/parks/parks/manateepark,Fort Myers +Centennial Park,26.6437185,-81.8740711,"2000 W First St, Fort Myers, FL 33901, USA",(239) 321-7524,Unknown,Fort Myers +Lakes Park,26.528064,-81.876818,"7330 Gladiolus Dr, Fort Myers, FL 33908, USA",(239) 533-7575,http://www.leegov.com/parks/parks/lakespark,Fort Myers +Lovers Key State Park,26.3913267,-81.86914139999999,"8700 Estero Blvd, Fort Myers Beach, FL 33931, USA",(239) 463-4588,https://www.floridastateparks.org/park/Lovers-Key,Fort Myers +Shell Factory,26.7057308,-81.8980436,"2787 N Tamiami Trail, North Fort Myers, FL 33903, USA",(239) 995-2141,https://www.shellfactory.com/,Fort Myers +North Shore Park,26.6575736,-81.88283849999999,"13001 N Cleveland Ave, North Fort Myers, FL 33903, USA",(239) 357-5443,https://www.leegov.com/parks/parks/northshore,Fort Myers +Mound House,26.4461233,-81.9277528,"451 Connecticut St, Fort Myers Beach, FL 33931, USA",(239) 765-0865,http://www.moundhouse.org/,Fort Myers +Riverside Park,26.6571136,-81.85300040000001,"3061 E Riverside Dr, Fort Myers, FL 33916, USA",(239) 321-7000,https://www.cityftmyers.com/facilities/facility/details/Riverside-Park-33,Fort Myers +Escape Room Adventures,26.5525,-81.8705556,"12995 S Cleveland Ave #217, Fort Myers, FL 33907, USA",(239) 689-6979,http://www.escaperoomadventures.com/,Fort Myers +The Shell Factory and Nature Park,26.7059888,-81.8970469,"16554 North Cleveland Avenue, 41 N Tamiami Trail US, North Fort Myers, FL 33903, USA",(239) 995-2141,https://www.shellfactory.com/,Fort Myers +Snell Park,26.6236615,-81.8870499,"2920 Valencia Way, Fort Myers, FL 33901, USA",(239) 321-7530,https://www.cityftmyers.com/facilities/facility/details/Snell-Park-37,Fort Myers +Bowditch Point Park,26.463961,-81.966886,"50 Estero Blvd, Fort Myers Beach, FL 33931, USA",(239) 765-6794,https://www.leegov.com/parks/beaches/bowditchpoint,Fort Myers +Clemente Park,26.6419966,-81.8476275,"3265 Dr Martin Luther King Jr Blvd, Fort Myers, FL 33916, USA",Unknown,Unknown,Fort Myers +Sky Zone Trampoline Park,26.6143728,-81.80136879999999,"9370 Dynasty Dr, Fort Myers, FL 33905, USA",(239) 344-8244,https://www.skyzone.com/northfortmyers,Fort Myers +Vivas Palm Park,26.64675819999999,-81.868619,"2414 Edwards Dr, Fort Myers, FL 33901, USA",(239) 931-7027,https://www.cityftmyers.com/Facilities/Facility/Details/Park-of-Palms-32,Fort Myers +International UFO Museum and Research Center and Gift Shop,33.3936879,-104.5229602,"114 N Main St, Roswell, NM 88203, USA",(575) 625-9495,http://www.roswellufomuseum.com/,Roswell +Spaceport Roswell,33.3943676,-104.5216013,"121 E 2nd St, Roswell, NM 88201, USA",(575) 495-4123,https://spaceportroswellnm.com/,Roswell +Roswell Museum,33.404179,-104.5236683,"1011 N Richardson Ave, Roswell, NM 88201, USA",(575) 624-6744,https://roswell-nm.gov/1259/Roswell-Museum,Roswell +Spring River Zoo,33.4071674,-104.503996,"1306 E College Blvd, Roswell, NM 88201, USA",(575) 624-6760,http://springriverzoo.com/,Roswell +The Anderson Museum of Contemporary Art,33.4089852,-104.5168281,"409 E College Blvd, Roswell, NM 88201, USA",(575) 623-5600,https://www.rair.org/about-amoca,Roswell +Roswell Welcome Sign,33.3382342,-104.5060945,"Roswell, NM 88203, USA",(575) 623-3442,Unknown,Roswell +Robert H Goddard Planetarium,33.4043228,-104.5241924,"1011 N Richardson Ave, Roswell, NM 88201, USA",(575) 624-6744,http://roswell-nm.gov/328/Goddard-Planetarium,Roswell +Walker Aviation Museum,33.3066523,-104.5193927,"Airport Terminal Building, 1 Jerry Smith Cir Suite 7, Roswell, NM 88203, USA",(575) 347-2464,http://www.wafbmuseum.org/,Roswell +Alien Zone,33.394923,-104.523166,"216 N Main St, Roswell, NM 88201, USA",(575) 627-6982,https://alienzoneroswellnm.com/,Roswell +BrickTown: Alien Attack,33.3943949,-104.5223344,"201 N Main St, Roswell, NM 88201, USA",(575) 208-9372,https://www.bricktownnm.com/,Roswell +Spring River Park,33.4083837,-104.5044835,"1306 E College Blvd, Roswell, NM 88201, USA",(575) 624-6760,http://www.roswell-nm.gov/,Roswell +Roswell welcome sign and spaceship,33.3107361,-104.4771983,"US Hwy 285, Roswell, NM 88203, USA",Unknown,Unknown,Roswell +Roswell Historical Marker,33.4802659,-104.5198342,"Roswell, NM 88201, USA",Unknown,Unknown,Roswell +Bottomless Lakes State Park,33.3361819,-104.3327217,"545A Bottomless Lakes Rd, Roswell, NM 88201, USA",(575) 988-3638,http://www.emnrd.state.nm.us/SPD/bottomlesslakesstatepark.html,Roswell +"Roswell, NM Welcome Sign",33.39446350000001,-104.5815214,"4001 W 2nd St, Roswell, NM 88201, USA",Unknown,Unknown,Roswell +Roswell Visitors Center,33.3974248,-104.5230764,"426 N Main St, Roswell, NM 88201, USA",(575) 623-3442,http://seeroswell.com/,Roswell +Miniatures And Curious Collections Museum,33.39616770000001,-104.5246276,"320 N Richardson Ave, Roswell, NM 88201, USA",(575) 208-0662,http://miniaturesandcuriouscollectionsmuseum.org/,Roswell +Roswell UFO Spacewalk,33.3941164,-104.5218259,"116 E 2nd St, Roswell, NM 88201, USA",(575) 910-2113,https://www.facebook.com/roswellufospacewalk/,Roswell +J Kenneth Smith Bird Sanctuary and Nature Center,33.397425,-104.5584262,"401 N Sycamore Ave, Roswell, NM 88201, USA",Unknown,http://www.roswellbirds.org/,Roswell +Welcome to Roswell Sign,33.3948292,-104.4328547,"3785 E 2nd St, Roswell, NM 88201, USA",Unknown,Unknown,Roswell +Seattle Aquarium,47.60740020000001,-122.3429559,"1483 Alaskan Way Pier 59, Seattle, WA 98101, USA",(206) 386-4300,https://www.seattleaquarium.org/,Seattle +The Seattle Great Wheel,47.6061342,-122.3425246,"1301 Alaskan Wy, Seattle, WA 98101, USA",(206) 623-8607,http://seattlegreatwheel.com/,Seattle +Chihuly Garden and Glass,47.6205599,-122.3504476,"305 Harrison St, Seattle, WA 98109, USA",(206) 753-4940,https://www.chihulygardenandglass.com/,Seattle +Olympic Sculpture Park,47.6166028,-122.3553167,"2901 Western Ave, Seattle, WA 98121, USA",(206) 654-3100,https://www.seattleartmuseum.org/visit/olympic-sculpture-park/,Seattle +The Gum Wall,47.6083607,-122.3403382,"1428 Post Alley, Seattle, WA 98101, USA",(206) 587-2414,https://unexpectedproductions.org/gumwall/,Seattle +Seattle Center,47.6205976,-122.3505055,"305 Harrison St, Seattle, WA 98109, USA",(206) 684-7200,https://www.seattlecenter.com/,Seattle +Museum of Pop Culture,47.6214824,-122.3481245,"325 5th Ave N, Seattle, WA 98109, USA",(206) 770-2700,https://www.mopop.org/,Seattle +Beneath the Streets,47.6028497,-122.3340931,"102 Cherry St, Seattle, WA 98104, USA",(206) 624-1237,http://www.beneath-the-streets.com/,Seattle +Seattle Art Museum,47.6075253,-122.3379599,"1300 1st Ave, Seattle, WA 98101, USA",(206) 654-3100,https://www.seattleartmuseum.org/,Seattle +Kerry Park,47.6294692,-122.3599224,"211 W Highland Dr, Seattle, WA 98119, USA",(206) 684-4075,http://www.seattle.gov/parks/find/parks/kerry-park,Seattle +Space Needle,47.6205063,-122.3492774,"400 Broad St, Seattle, WA 98109, USA",(206) 905-2100,https://www.spaceneedle.com/,Seattle +Smith Tower,47.6018528,-122.3318583,"506 2nd Ave, Seattle, WA 98104, USA",(206) 624-0414,http://www.smithtower.com/,Seattle +Pike Place Market,47.6089649,-122.3405821,"85 Pike St, Seattle, WA 98101, USA",(206) 682-7453,https://www.pikeplacemarket.org/,Seattle +Pier 55,47.604747,-122.339716,"1101 Alaskan Wy, Seattle, WA 98101, USA",(206) 623-1445,https://www.argosycruises.com/parking-directions/,Seattle +Original Selfie Museum | Seattle,47.6078031,-122.3397721,"92 Union St, Seattle, WA 98101, USA",(206) 487-4500,https://originalselfiemuseum.com/,Seattle +Washington Park Arboretum,47.6364162,-122.2958146,"2300 Arboretum Dr E, Seattle, WA 98112, USA",(206) 543-8800,https://botanicgardens.uw.edu/washington-park-arboretum/,Seattle +Sky View Observatory - Columbia Center,47.6043639,-122.3310111,"700 4th Ave, Seattle, WA 98104, USA",(206) 386-5564,http://skyviewobservatory.com/,Seattle +Discovery Park,47.6613197,-122.4171413,"Seattle, WA 98199, USA",(206) 386-4236,https://www.seattle.gov/parks/allparks/discovery-park,Seattle +The Museum of Flight,47.5185379,-122.2968545,"Seattle, WA 98108, USA",(206) 764-5700,https://www.museumofflight.org/,Seattle +International Fountain,47.6225227,-122.3520323,"305 Harrison St, Seattle, WA 98109, USA",(206) 684-7200,https://www.seattlecenter.com/explore/attractions/international-fountain,Seattle +Manchester Museum,53.4664686,-2.2342519,"University of, Oxford Rd, Manchester M13 9PL, UK",0161 275 2648,http://www.manchester.ac.uk/museum,Manchester +National Football Museum,53.48592980000001,-2.2421548,"Urbis Building Cathedral Gardens, Todd St, Manchester M4 3BG, UK",0161 605 8200,http://www.nationalfootballmuseum.com/,Manchester +Manchester Art Gallery,53.47869430000001,-2.2413604,"Mosley St, Manchester M2 3JL, UK",0161 235 8888,https://manchesterartgallery.org/,Manchester +Science and Industry Museum,53.47713580000001,-2.2545821,"Liverpool Rd, Manchester M3 4JP, UK",0330 058 0058,https://www.scienceandindustrymuseum.org.uk/,Manchester +Heaton Park,53.5349877,-2.2520726,"Middleton Rd, Manchester M25 2SW, UK",0161 773 1085,http://www.manchester.gov.uk/heatonpark,Manchester +Fletcher Moss Botanical Gardens,53.4097528,-2.2336973,"18 Stenner Ln, Didsbury, Manchester M20 2RQ, UK",0161 434 1877,https://fletchermossgardens.org.uk/,Manchester +"Museum of Transport, Greater Manchester",53.50302500000002,-2.233625,"Boyle St, Cheetham Hill, Manchester M8 8UW, UK",0161 205 2122,https://motgm.uk/,Manchester +The Manchester City Stadium Tour,53.4821942,-2.2001674,"Etihad Stadium, Etihad Campus, Manchester M11 3FF, UK",0161 444 1894,http://www.mancity.com/tours,Manchester +People's History Museum,53.4814144,-2.2528607,"Left Bank, Manchester M3 3ER, UK",0161 838 9190,http://www.phm.org.uk/,Manchester +The Crystal Maze LIVE Experience,53.4775001,-2.2539834,"St Johns, Lower Byrom St, Manchester M3 4FP, UK",Unknown,https://the-crystal-maze.com/manchester/?utm_source=google&utm_medium=organic&utm_campaign=gmb-listing,Manchester +Heaton Hall,53.5361028,-2.2528762,"GPPW+CR, Manchester M25 2SW, UK",Unknown,Unknown,Manchester +IWM North,53.4697358,-2.2987405,"Trafford Wharf Rd, Trafford Park, Stretford, Manchester M17 1TZ, UK",0161 836 4000,https://www.iwm.org.uk/visits/iwm-north,Manchester +Manchester Cathedral,53.4851459,-2.2443156,"Victoria St, Manchester M3 1SX, UK",0161 833 2220,http://www.manchestercathedral.org/,Manchester +The Tree of Life,53.47692929999999,-2.2362958,"Sackville Gardens, Sackville St, Canal St, Manchester M1 3EZ, UK",Unknown,Unknown,Manchester +Victoria Baths,53.4600473,-2.2163707,"Hathersage Rd, Manchester M13 0FE, UK",0161 224 2020,http://www.victoriabaths.org.uk/,Manchester +Greater Manchester Police Museum & Archives,53.48241729999999,-2.2323904,"57A Newton St, Manchester M1 1ET, UK",0161 856 4500,http://gmpmuseum.co.uk/,Manchester +LEGOLAND Discovery Centre,53.46679280000001,-2.342210300000001,"Trafford Palazzo in TraffordCity next to The Trafford Centre, Trafford Park, Stretford, Manchester M17 8AS, UK",0161 749 2870,https://www.legolanddiscoverycentre.com/manchester/,Manchester +Manchester Albert Square,53.4793597,-2.2451172,"Manchester M2 5PE, UK",Unknown,https://www.visitmanchester.com/things-to-see-and-do/albert-square-p33691,Manchester +Abraham Lincoln Statue,53.47967930000001,-2.2471289,"Lincoln Grove, Manchester M2 5LF, UK",Unknown,http://manchesterhistory.net/manchester/statues/lincoln.html,Manchester +Manchester Chinatown,53.4783,-2.2398884,"Nicholas St, Manchester M1 4HQ, UK",Unknown,Unknown,Manchester +Florida Museum of Natural History-Exhibits,29.6359326,-82.3698148,"3215 Hull Rd, Gainesville, FL 32611, USA",(352) 846-2000,https://www.floridamuseum.ufl.edu/,Gainesville +Devil's Millhopper Geological State Park,29.7069688,-82.3952053,"4732 Millhopper Rd, Gainesville, FL 32653, USA",(352) 955-2008,https://www.floridastateparks.org/park/Devils-Millhopper,Gainesville +Kanapaha Botanical Gardens,29.6123167,-82.4089389,"Summer House, 4700 SW 58th Dr, Gainesville, FL 32608, USA",(352) 372-4981,http://www.kanapaha.org/,Gainesville +Sweetwater Wetlands Park,29.619721,-82.32966739999999,"325 SW Williston Rd, Gainesville, FL 32601, USA",(352) 554-5871,https://www.gainesvillefl.gov/Parks/Sweetwater-Wetlands-Park,Gainesville +Butterfly Rainforest at the Florida Museum of Natural History,29.636308,-82.37032959999999,"3215 Hull Rd, Gainesville, FL 32611, USA",(352) 846-2000,https://www.floridamuseum.ufl.edu/exhibits/butterfly-rainforest/,Gainesville +Cade Museum for Creativity & Invention,29.6437271,-82.3248136,"811 S Main St, Gainesville, FL 32601, USA",(352) 371-8001,http://www.cademuseum.org/,Gainesville +Matheson History Museum,29.6516524,-82.3202967,"513 E University Ave, Gainesville, FL 32601, USA",(352) 378-2280,http://www.mathesonmuseum.org/,Gainesville +Morningside Nature Center,29.656867,-82.27752199999999,"3540 E University Ave, Gainesville, FL 32641, USA",(352) 393-8240,Unknown,Gainesville +Depot Park,29.6444536,-82.3221981,"874 SE 4th St, Gainesville, FL 32601, USA",(352) 393-8510,http://www.depotpark.org/,Gainesville +Sweetwater Preserve,29.6289767,-82.3214699,"309 SE 16th Ave, Gainesville, FL 32601, USA",(352) 264-6800,Unknown,Gainesville +"Visit Gainesville, Alachua County, FL",29.6524262,-82.3248796,"33 N Main St, Gainesville, FL 32601, USA",(352) 374-5260,http://www.visitgainesville.com/,Gainesville +Historic Matheson House,29.65104629999999,-82.3194974,"528 SE 1st Ave, Gainesville, FL 32601, USA",(352) 378-2280,http://www.mathesonmuseum.org/,Gainesville +Alfred A. Ring Park,29.6739166,-82.3472547,"1801 NW 23rd Blvd, Gainesville, FL 32605, USA",(352) 334-5067,https://www.gainesvillefl.gov/Parks/Alfred-A.-Ring-Park,Gainesville +Historic Haile Homestead,29.5945183,-82.4353511,"8500 SW Archer Rd, Gainesville, FL 32608, USA",(352) 336-9096,http://www.hailehomestead.org/,Gainesville +Loblolly Woods Nature Park,29.6548909,-82.3714668,"3315 NW 5th Ave, Gainesville, FL 32607, USA",(352) 334-5067,http://www.cityofgainesville.org/tabid/182/Default.aspx#LoblollyWoods,Gainesville +Carson Springs Wildlife Conservation Foundation,29.8374882,-82.2311592,"8528 E, County Rd 225, Gainesville, FL 32609, USA",(352) 468-2827,http://www.carsonspringswildlife.org/,Gainesville +Sweetwater Park,29.65067670000001,-82.32021,"532 SE 2nd Ave, Gainesville, FL 32601, USA",Unknown,Unknown,Gainesville +Boulware Springs Park,29.6209969,-82.3075446,"3300 SE 15th St, Gainesville, FL 32641, USA",(352) 334-5067,https://www.gainesvillefl.gov/Parks/Boulware-Springs-Nature-Park,Gainesville +UF Bat Houses,29.64423990000001,-82.3628313,"Museum Rd, Gainesville, FL 32611, USA",Unknown,http://www.floridamuseum.ufl.edu/bats,Gainesville +Gum Root Park,29.6764185,-82.23859209999999,"7300 NE 27th Ave, Gainesville, FL 32609, USA",(352) 334-5067,Unknown,Gainesville +Jean P Haydon Museum,-14.277686,-170.6877839,"P8C6+WVG, Fagatogo, Eastern District 96799, American Samoa",(684) 633-4347,https://haydonmuseumamericansamoa.org/,Pago Pago +National Park of American Samoa Visitor Center,-14.2744165,-170.696959,"P8G3+66M, Rte 001, Fagatogo, Eastern District 96799, American Samoa",(684) 633-7082,https://www.nps.gov/npsa/index.htm,Pago Pago +lefaleoo.com,-14.3216623,-170.7526462,"5988 Mapusaga Fou, Pago Pago, Western District 96799, American Samoa",(684) 699-1982,Unknown,Pago Pago +National Park of American Samoa,-14.2579491,-170.6859778,"P8R7+RJC, Vatia, American Samoa",(684) 633-7082,http://www.nps.gov/npsa/,Pago Pago +Plage de Betis,-14.3339976,-170.7124006,"M78Q+C25, Tafuna, Western District 96799, American Samoa",Unknown,Unknown,Pago Pago +Tia Seu Lupe,-14.3302321,-170.7324716,"M799+W22, Tafuna, Western District 96799, American Samoa",Unknown,Unknown,Pago Pago +American Samoa Visitors Bureau (ASVB),-14.2775423,-170.6897073,"Airport Road, Tafuna, P8C6+X4M, Pago Pago, AS 96799, American Samoa",(684) 633-9805,http://www.americansamoa.travel,Pago Pago +Breakers Point Trail,-14.2888576,-170.6618687,"P86Q+F72, Lauli'i, Eastern District, American Samoa",Unknown,Unknown,Pago Pago +Tauese P. F. Sunia Ocean Center,-14.2765327,-170.6821132,"P8F9+95J, Utulei, Eastern District 96799, American Samoa",(684) 633-6500,http://americansamoa.noaa.gov/about/ocean-center.html,Pago Pago +Pago Plaza,-14.2733761,-170.7019249,"P7GX+H48, Pago Pago, Eastern District 96799, American Samoa",(684) 633-2830,https://www.pagoplaza.com/about-us,Pago Pago +Playground,-14.277647,-170.6902707,"P8C5+WXJ Fagatogo Square, Fagatogo, Eastern District 96799, American Samoa",Unknown,Unknown,Pago Pago +Two Dollar Beach,-14.2808515,-170.6316283,"P999+M85, Avaio, Eastern District, American Samoa",(684) 622-5503,http://twodollarbeach.com/,Pago Pago +Super M,-14.2730524,-170.7034272,"P7GW+QJG, Rte 001, Pago Pago, Eastern District 96799, American Samoa",(684) 258-5253,Unknown,Pago Pago +Fia Fia Seafood Restaurant.,-14.2754495,-170.7034908,"P7FW+RJC, Pago Pago, Eastern District 96799, American Samoa",(684) 633-0101,Unknown,Pago Pago +Pago Pago,-14.2732727,-170.7030577,"Pago Pago, Eastern District, American Samoa",Unknown,Unknown,Pago Pago +Pago Pago American Samoa Temple,-14.3339675,-170.7319647,"M789+Q57, Tafuna, Western District 96799, American Samoa",Unknown,Unknown,Pago Pago +Sadie's Hotels,-14.2781428,-170.6820605,"Utulei 3222, Pago Pago, Eastern District 96799, American Samoa",(684) 633-5900,https://www.sadieshotels.com/,Pago Pago +Fagatogo Market,-14.2770827,-170.6908581,"Fagatogo Market, Fagatogo, Eastern District 96799, American Samoa",Unknown,Unknown,Pago Pago +Pago Pago International Airport,-14.334249,-170.7140481,"Pavaiai, Western District, American Samoa",(684) 633-4251,https://portadministration.as.gov/airports/pago-pago-international-airport,Pago Pago +Petroglyph Beach State Historic Site,56.48291709999999,-132.3937932,"Grave St, Wrangell, AK 99929, USA",(800) 367-9745,https://travelwrangell.com/petroglyph-beach,Wrangell +Chief Shakes Longhouse,56.4656675,-132.3805976,"Shakes St, Wrangell, AK 99929, USA",(907) 874-4304,https://m.facebook.com/wrangellcooperativeassociation/photos/a.899339836820109.1073741827.899330203487739/899339756820117/?type=3&source=44,Wrangell +Wrangell Museum,56.4699974,-132.3832244,"296 Campbell Dr, Wrangell, AK 99929, USA",(907) 874-3770,https://www.wrangell.com/museum,Wrangell +Chief Shakes Hot Springs Site,56.7208185,-132.0158209,"Wrangell, AK 99929, USA",(907) 225-3101,http://www.fs.usda.gov/recarea/tongass/recarea/?recid=79159,Wrangell +"Volunteer Park, Wrangell, Alaska",56.4728909,-132.3723601,"Box 531, Second Ave, Wrangell, AK 99929, USA",(907) 874-2444,https://travelwrangell.com/hiking-and-camping,Wrangell +Wrangell City Park,56.4535819,-132.3830439,"Wrangell, AK 99929, USA",Unknown,Unknown,Wrangell +Mt. Dewey Trail,56.4747757,-132.3854642,"Box 531, 3rd St, Wrangell, AK 99929, USA",(907) 874-2444,https://travelwrangell.com/mt-dewey,Wrangell +Anan Creek Wildlife Viewing Site,56.18698060000001,-131.8865733,"Box 531, Anan Creek, Wrangell, AK 99929, USA",(907) 874-2323,https://travelwrangell.com/anan-bears,Wrangell +Totem Park Wrangell,56.4697182,-132.3800729,"434 Front St, Wrangell, AK 99929, USA",(800) 367-9745,https://travelwrangell.com/totem-park,Wrangell +Anan Wildlife Observatory Site,56.1790457,-131.8836312,"Wrangell, AK 99929, USA",(907) 874-2323,http://www.fs.usda.gov/recarea/tongass/recreation/natureviewing/recarea/?recid=79154&actid=62,Wrangell +The Nolan Center,56.46981,-132.3829414,"296 Campbell Dr, Wrangell, AK 99929, USA",(907) 874-3770,https://www.wrangell.com/cc/welcome-nolan-center,Wrangell +North Wrangell Trailhead,56.4583114,-132.2973301,"Ishiyama Dr, Wrangell, AK 99929, USA",Unknown,Unknown,Wrangell +Anita Bay Overlook Campsite,56.2815545,-132.3497306,"Zimovia Hwy, Wrangell, AK 99929, USA",(907) 225-3101,http://www.fs.usda.gov/recarea/tongass/recarea/?recid=79155,Wrangell +Alaska Peak & Seas,56.4119422,-132.3409686,"5 Zimovia Hwy, Wrangell, AK 99929, USA",(907) 470-3200,http://www.wedoalaska.com/,Wrangell +Alaska Vistas Tours,56.471388,-132.387233,"City Dock, Wrangell, AK 99929, USA",(907) 874-3006,http://www.alaskavistas.com/,Wrangell +Stikine-LeConte Wilderness,56.6507107,-132.3684086,"Wrangell, AK 99929, USA",Unknown,https://www.thearmchairexplorer.com/alaska/stikine_leconte_wilderness,Wrangell +Wrangell Visitor Center,56.46979959999999,-132.383059,"Box 1350, 296 Campbell Dr, Wrangell, AK 99929, USA",(800) 367-9745,http://www.travelwrangell.com/,Wrangell +North Wrangell Pond Shelter,56.44331099999999,-132.3327626,"Spur Rd, Wrangell, AK 99929, USA",(907) 225-3101,http://www.fs.usda.gov/recarea/tongass/recarea/?recid=79201,Wrangell +North Wrangell High Country Shelter,56.4373231,-132.3228707,"Wrangell, AK 99929, USA",(907) 225-3101,http://www.fs.usda.gov/recarea/tongass/recarea/?recid=79200,Wrangell +Breakaway Adventures LLC,56.4719195,-132.38521,"104 Front St, Wrangell, AK 99929, USA",(907) 874-2488,http://www.breakawayadventures.com/,Wrangell +Phinizy Swamp Nature Park,33.3846224,-81.96751119999999,"1858 Lock and Dam Rd, Augusta, GA 30906, USA",(706) 828-2109,http://phinizycenter.org/,Augusta +Augusta Riverwalk,33.4796956,-81.9679085,"10th St, Augusta, GA 30901, USA",(706) 821-1754,http://www.augustaga.gov/292/Riverwalk,Augusta +Augusta Museum of History,33.4747658,-81.960556,"560 Reynolds St, Augusta, GA 30901, USA",(706) 722-8454,http://www.augustamuseum.org/,Augusta +Morris Museum of Art,33.4794159,-81.9685191,"1 10th St 2nd Floor, Augusta, GA 30901, USA",(706) 724-7501,http://www.themorris.org/,Augusta +Lucy Craft Laney Museum,33.46711490000001,-81.981248,"1116 Phillips St, Augusta, GA 30901, USA",(706) 724-3576,http://lucycraftlaneymuseum.com/,Augusta +Meadow Garden,33.473798,-81.979591,"1320 Independence Dr, Augusta, GA 30901, USA",(706) 724-4174,https://historicmeadowgarden.org/,Augusta +Pendleton King Park,33.45887119999999,-82.012639,"1600 Troupe St, Augusta, GA 30904, USA",(706) 564-7462,http://www.augustaga.gov/index.aspx?NID=261,Augusta +Augusta Canal National Heritage Area,33.4778848,-81.9823876,"1450 Greene St #400, Augusta, GA 30901, USA",(706) 823-0440,http://www.augustacanal.com/,Augusta +The Boyhood Home of President Woodrow Wilson,33.47169909999999,-81.9650119,"419 7th St, Augusta, GA 30901, USA",(706) 722-9828,http://www.wilsonboyhoodhome.org/,Augusta +Aqueduct Park,33.4965074,-81.99694679999999,"Augusta Levee Rd, Augusta, GA 30904, USA",Unknown,Unknown,Augusta +Augusta Sculpture Trail,33.4757159,-81.9661118,"15th St, Augusta, GA 30901, USA",Unknown,https://augustasculpturetrail.com/,Augusta +Augusta Canal Discovery Center,33.4780991,-81.9825393,"Blome Ln, Augusta, GA 30901, USA",(706) 823-0440,https://augustacanal.com/about-discovery-center.php,Augusta +Pexcho's American Dime Museum,33.4732313,-81.9617067,"216 6th St, Augusta, GA 30901, USA",(225) 448-1453,http://facebook.com/americandimemuseum,Augusta +Living History Park,33.495967,-81.9739573,"299 W Spring Grove Ave, North Augusta, SC 29841, USA",(803) 979-9776,http://www.colonialtimes.us/,Augusta +Sacred Heart Cultural Center,33.4773862,-81.9764422,"1301 Greene St, Augusta, GA 30901, USA",(706) 826-4700,http://www.sacredheartaugusta.org/,Augusta +Brick Pond Park,33.4859492,-81.97258289999999,"88 Georgia Ave, North Augusta, SC 29841, USA",(803) 441-4300,https://www.northaugusta.net/government/city-departments/engineering-public-works/stormwater-management/brick-pond-park,Augusta +Imagination Station Children's Museum,33.4735663,-82.0109866,"965 Hickman Rd, Augusta, GA 30904, USA",(706) 250-1377,http://imagineaugusta.org/,Augusta +Heroes' Overlook,33.4712362,-81.961744,"530 Greene St, Augusta, GA 30901, USA",(706) 821-2422,http://augustaga.gov/,Augusta +New Savannah Bluff Lock & Dam Park,33.3736464,-81.9459801,"2105 Lock and Dam Rd, Augusta, GA 30906, USA",(706) 793-9403,https://www.augustaga.gov/1079/New-Savannah-Bluff-Lock-Dam-Park,Augusta +Hunter’s Fountain of Youth,33.4777297,-82.0227345,"2500 Walton Way, Augusta, GA 30904, USA",Unknown,Unknown,Augusta +Brubacher House,43.4755535,-80.5523173,"200 University Ave W, Waterloo, ON N2L 3G1, Canada",(519) 886-3855,https://uwaterloo.ca/brubacher-house,Waterloo +Waterloo Park,43.4655488,-80.5336007,"100 Father David Bauer Dr, Waterloo, ON N2L 2Y4, Canada",(519) 725-0511,https://www.waterloo.ca/en/things-to-do/waterloo-park.aspx,Waterloo +The Most Inspiring Wall In Waterloo,43.4749018,-80.5329493,"251 Albert St, Waterloo, ON N2L 3T7, Canada",Unknown,Unknown,Waterloo +City of Waterloo Museum,43.496841,-80.526899,"550 King St North, Conestoga Mall, Waterloo, ON N2L 5W6, Canada",(519) 885-8828,http://www.waterloo.ca/museum,Waterloo +Earth Sciences Museum,43.47149539999999,-80.54211509999999,"200 University Ave W, Waterloo, ON N2L 3G1, Canada",(519) 888-4567,https://uwaterloo.ca/earth-sciences-museum/,Waterloo +Well in the Woods,43.4683863,-80.6077057,"514 Wilmot Line, Waterloo, ON N2J 3Z4, Canada",(519) 867-5309,http://wellinthewoods.ca/,Waterloo +Waterloo Central Railway,43.53796089999999,-80.5570309,"50 Isabella St, St. Jacobs, ON N0B 2N0, Canada",(888) 899-2757,http://waterloocentralrailway.com/,Waterloo +Autumn Willow Park,43.46185289999999,-80.6045391,"Waterloo, ON N2J 3Z4, Canada",Unknown,Unknown,Waterloo +Waterloo Park Central Promenade,43.46737940000001,-80.5319574,"Laurel Trail, Waterloo, ON N2L, Canada",Unknown,Unknown,Waterloo +West-side Trails,43.459458,-80.59670810000001,"594 Sundew Dr, Waterloo, ON N2V 0C3, Canada",Unknown,http://www.waterloo.ca/en/gettingactive/westsidetrails.asp,Waterloo +Oktoberfest Carillon,43.4614871,-80.5214482,"Waterloo, ON N2J, Canada",Unknown,Unknown,Waterloo +Adventure Rooms Canada | Escape Rooms Kitchener,43.4548301,-80.4972143,"283 Duke St W #102, Kitchener, ON N2H 3X7, Canada",(844) 766-6372,https://adventurerooms.ca/,Waterloo +Laurel Creek Conservation Area,43.490208,-80.57012689999999,"625 Westmount Rd N, Waterloo, ON N2J 2Z4, Canada",(519) 884-6620,https://www.grandriver.ca/en/outdoor-recreation/Laurel-Creek.aspx,Waterloo +Canadian Clay and Glass Gallery,43.4649381,-80.5262637,"25 Caroline St N, Waterloo, ON N2L 2Y5, Canada",(519) 746-1882,http://www.theclayandglass.ca/,Waterloo +Victoria Park,43.4457166,-80.4986983,"32 Dill St, Kitchener, ON N2G 1L1, Canada",(519) 741-2200,https://www.kitchener.ca/en/parks-and-trails/victoria-park.aspx,Waterloo +Brewmeister Green Park,43.4612772,-80.5211485,"155 King St S, Waterloo, ON N2J, Canada",Unknown,Unknown,Waterloo +Bingemans Big Splash,43.4724462,-80.4500466,"425 Bingemans Centre Dr, Kitchener, ON N2B 3X7, Canada",(519) 744-1555,http://bigsplash.ca/,Waterloo +Ken Seiling Waterloo Region Museum,43.4005525,-80.4382773,"10 Huron Rd, Kitchener, ON N2P 2R7, Canada",(519) 748-1914,http://www.waterlooregionmuseum.ca/,Waterloo +St. Jacobs memorial,43.5388055,-80.5538593,"1395 Waterloo Regional Rd 8, St. Jacobs, ON N0B 2N0, Canada",Unknown,Unknown,Waterloo +Waterloo Pioneer Memorial Tower Federal Heritage Building,43.400152,-80.41623299999999,"300 Lookout Ln, Kitchener, ON N2P 2X8, Canada",(519) 571-5684,https://www.pc.gc.ca/en/lhn-nhs/on/woodside/culture/waterloo,Waterloo +Colorado River State Historic Park,32.7276534,-114.6230063,"201 N 4th Ave, Yuma, AZ 85364, USA",(928) 329-0471,https://azstateparks.com/colorado-river/,Yuma +Yuma Territorial Prison State Historic Park,32.7270528,-114.614925,"220 Prison Hill Rd, Yuma, AZ 85364, USA",(928) 783-4771,https://azstateparks.com/yuma-territorial/,Yuma +Gateway Park,32.7279848,-114.6183764,"E 1st St & S Gila St, 250 Prison Hill Rd, Yuma, AZ 85364, USA",(928) 373-5204,https://www.yumaaz.gov/Home/Components/FacilityDirectory/FacilityDirectory/46/236,Yuma +West Wetlands Park,32.72961619999999,-114.6376607,"282 N 12th Ave, Yuma, AZ 85364, USA",(928) 373-5200,https://www.yumaaz.gov/Home/Components/FacilityDirectory/FacilityDirectory/72/236?npage=3,Yuma +Roxaboxen Park,32.7127635,-114.6217168,"835 S 2nd Ave, Yuma, AZ 85364, USA",(928) 373-5200,Unknown,Yuma +Ray Smucker Park,32.6746115,-114.6336148,"2913 S Avenue A, Yuma, AZ 85364, USA",(928) 373-5222,https://www.yumaaz.gov/Home/Components/FacilityDirectory/FacilityDirectory/66/236?npage=3,Yuma +Yuma Crossing National Heritage Area Business Office,32.7257587,-114.6216203,"180 W 1st St ste e, Yuma, AZ 85364, USA",(928) 373-5198,https://www.yumaheritage.com/,Yuma +Z Fun Factory,32.685295,-114.556782,"4446 E County 10th St, Yuma, AZ 85365, USA",(928) 726-6000,http://zfunfactory.com/,Yuma +East Wetlands Park,32.7271643,-114.6136608,"Yuma Crossing Bike Path (Colorado River Levee Multi-Use Path), Yuma, AZ 85364, USA",Unknown,Unknown,Yuma +Riverside Park,32.725448,-114.6130294,"Riverside Park, 50 Prison Hill Rd, Yuma, AZ 85364, USA",Unknown,Unknown,Yuma +Yuma Conservation Garden,32.6707913,-114.5947933,"2520 E 32nd St, Yuma, AZ 85365, USA",(928) 317-1935,http://www.yumaconservationgarden.org/?fbclid=IwAR3cnUBLGoeZu08Ro3Q9cfffkzqjmxoNpztR9-BROEbIGwojDIq_myT6rps,Yuma +Museum,32.7270803,-114.615007,"220 Prison Hill Rd, Yuma, AZ 85364, USA",Unknown,Unknown,Yuma +Yuma History Museum,32.722717,-114.624325,"233 S 4th Ave, Yuma, AZ 85364, USA",(928) 783-4453,http://yumahistorymuseum.com/,Yuma +Waylon's Water World,32.6852798,-114.5567322,"4446 E County 10th St, Yuma, AZ 85365, USA",(928) 726-6000,http://www.zfunfactory.com/,Yuma +Arizona Historical Society Sanguinetti House Museum and Gardens,32.7234253,-114.6198289,"240 S Madison Ave, Yuma, AZ 85364, USA",(928) 782-1841,http://www.arizonahistoricalsociety.org/museums/yuma/,Yuma +Yuma Armed Forces Park,32.7233925,-114.6159312,"291 S Gila St, Yuma, AZ 85364, USA",(928) 373-5200,http://www.armedforcespark.com/index.html,Yuma +Main Street Fountain,32.72258420000001,-114.6178692,"S Main St, Yuma, AZ 85364, USA",Unknown,Unknown,Yuma +Kennedy Memorial Park,32.6866732,-114.6085703,"2251 S Kennedy Ln, Yuma, AZ 85365, USA",(928) 373-5243,https://www.yumaaz.gov/Home/Components/FacilityDirectory/FacilityDirectory/54/236?npage=2,Yuma +Sunrise Point Park,32.73130459999999,-114.6144649,"Yuma, AZ 85364, USA",Unknown,Unknown,Yuma +Friendship Park,32.6653209,-114.6379928,"1435 W 34th St, Yuma, AZ 85365, USA",(928) 373-5200,https://www.yumaaz.gov/Home/Components/FacilityDirectory/FacilityDirectory/45/236,Yuma +The Grotto,15.2604383,145.8237491,"7R6F+5FH, Grotto Dr, Saipan 96950, CNMI",1833-9881,Unknown,Saipan +Suicide Cliff,15.2773945,145.8096818,"7RG5+XV3, Rte 322, Capitol Hill, Saipan 96950, CNMI",Unknown,Unknown,Saipan +Bird Island Observatory,15.2554582,145.8100613,"1 Beach Rd, Susupe, Saipan 96950, CNMI",Unknown,Unknown,Saipan +NMI Museum of History and Culture,15.2014014,145.719211,"Kopa Di Oru Street &, Chichirica Avenue, Garapan, Saipan 96950, CNMI",(670) 664-2160,http://www.nmimuseum.org/,Saipan +American Memorial Park,15.2160824,145.7195969,"6P89+CRQ, Micro Beach Rd, Garapan, Saipan 96950, CNMI",(670) 234-7207 ext. 2020,http://www.nps.gov/amme,Saipan +Japanese Lighthouse,15.2117219,145.731679,"6P6J+MMM, Garapan, Saipan 96950, CNMI",Unknown,http://www.atlasobscura.com/places/old-japanese-lighthouse,Saipan +Kalabera Cave,15.245,145.7975,"6QWX+222, Kalabera Cave Trail, Saipan 96950, CNMI",Unknown,Unknown,Saipan +Bird Island Beach,15.2603867,145.8136718,"7R67+5F3, Bird Island Trail, Saipan 96950, CNMI",Unknown,Unknown,Saipan +Sugar King Park,15.2019391,145.7207226,"6P2C+Q7H, Garapan, Saipan 96950, CNMI",Unknown,Unknown,Saipan +Marianas Trekking Saipan,15.264996,145.78852,"Marpi, Pale Arnold Rd, Saipan 96950, CNMI",(670) 323-8735,http://www.marianastrekking.com/,Saipan +Santa Lourdes Shrine,15.1930134,145.7622457,"5QV6+6V5, Saipan 96950, CNMI",Unknown,Unknown,Saipan +Abandoned Pacific Barrier Radar III,15.2491521,145.7962245,"6QXW+MF9, Saipan 96950, CNMI",Unknown,http://www.atlasobscura.com/places/abandoned-pacific-barrier-radar-iii,Saipan +Banzai Cliff Monument,15.2865293,145.8157023,"7RP8+J78, Capitol Hill, Saipan 96950, CNMI",Unknown,Unknown,Saipan +별빛투어,15.2861502,145.8147626,"7RP7+FW6, Banzai Cliff Road, Capitol Hill, Saipan 96950, CNMI",Unknown,Unknown,Saipan +Lao Lao Dive Site,15.1635375,145.762193,"Unnamed Road, 5Q76+CV8, Laulau Bay, Saipan 96950, CNMI",Unknown,Unknown,Saipan +Saipan Katori Shrine,15.2017519,145.7219131,"6P2C+PQ3, Garapan, Saipan 96950, CNMI",Unknown,Unknown,Saipan +Naftan cliff,15.1095708,145.7550714,"Naftan Rd, Naftan, Saipan 96950, CNMI",Unknown,https://youtube.com/channel/UCYp5O7jnrZ5uzvid1rTT5qQ,Saipan +Agingan Point,15.1200995,145.6907597,"4MCR+28J, Agingan, Saipan 96950, CNMI",Unknown,Unknown,Saipan +Okinawa Peace Memorial,15.2808422,145.80579,"7RJ4+88M, Saipan 96950, CNMI",Unknown,Unknown,Saipan +American Memorial Park Visitor Center,15.2157883,145.7203968,"6P8C+856, Garapan, Saipan 96950, CNMI",(670) 234-7207,https://www.nps.gov/amme/planyourvisit/basicinfo.htm,Saipan +Christiansted National Historic Site,17.7467366,-64.7023078,"1 Company St, Christiansted, St Croix 00820, USVI",Unknown,https://www.nps.gov/chri/index.htm,Christiansted +Old Danish Customs House,17.7467647,-64.7025147,"P7WW+PX5, Christiansted, St Croix 00820, USVI",Unknown,Unknown,Christiansted +The Scale House,17.7469796,-64.70302520000001,"P7WW+QQX, Christiansted, St Croix 00820, USVI",(340) 773-1460,https://www.nps.gov/chri/index.htm,Christiansted +Steeple Building,17.74617929999999,-64.7025556,"1 Company St, Christiansted, St Croix 00820, USVI",(340) 773-1460,https://www.nps.gov/chri/index.htm,Christiansted +Christiansted Boardwalk,17.7472506,-64.7051504,"81 Queen Cross St, Christiansted, St Croix 00820, USVI",Unknown,https://my-stcroix.com/restaurant-guide/christiansted-downtown-boardwalk/,Christiansted +Fort Christiansvaern,17.7469456,-64.70178539999999,"P7WX+Q7G, Hospital St, Christiansted, St Croix 00820, USVI",(340) 773-1460,https://www.nps.gov/chri/index.htm,Christiansted +Christiansted Historic District,17.7473007,-64.70230339999999,"P7WX+W3G, Christiansted, St Croix 00820, USVI",Unknown,Unknown,Christiansted +Salt River Bay National Historical Park and Ecological Preserve,17.7750581,-64.75592619999999,"2100 Church St, Christiansted, St Croix 00820, USVI",(340) 773-1460,http://www.nps.gov/sari/index.htm,Christiansted +Tan Tan Tours,17.7447054,-64.70317349999999,"34C Queen Cross St, Christiansted, St Croix 00822, USVI",(340) 473-6446,https://tantantoursbase.business.site/?utm_source=gmb&utm_medium=referral,Christiansted +Caribbean Sea Adventures,17.7474256,-64.7038567,"1102 King St Suite 12, Christiansted, St Croix 00820, USVI",(340) 773-2628,http://www.caribbeanseaadventures.com/,Christiansted +Tropical Tiki Tours,17.7467066,-64.7043631,"1 Strand Street Christiansted US, Christiansted, St Croix 00820, USVI",(340) 642-2801,http://tropicaltikitours.com/,Christiansted +Estate Little Princess Plantation,17.7571522,-64.72563029999999,"Q74F+VP9, St Croix 00820, USVI",Unknown,https://www.nature.org/en-us/get-involved/how-to-help/places-we-protect/us-virgin-islands-estate-little-princess/,Christiansted +Buck Island Beach,17.7861122,-64.6273863,"Q9PF+C2X Buck Island, Christiansted, St Croix, USVI",Unknown,Unknown,Christiansted +Virginia Museum of Fine Arts,37.5560356,-77.4747907,"200 N Arthur Ashe Blvd, Richmond, VA 23220, USA",(804) 340-1400,https://vmfa.museum/,Richmond +Maymont,37.5341784,-77.474571,"1700 Hampton St, Richmond, VA 23220, USA",(804) 525-9000,https://maymont.org/,Richmond +The Poe Museum,37.5320942,-77.4260343,"1914 E Main St, Richmond, VA 23223, USA",(804) 648-5523,http://www.poemuseum.org/,Richmond +Haunts of Richmond - Shadows of Shockoe Tour,37.5314833,-77.42607939999999,"5 S 20th St, Richmond, VA 23223, USA",(804) 543-3189,https://hauntsofrichmond.com/,Richmond +Canal Walk,37.5327238,-77.432238,"1512 Canal Walk, Richmond, VA 23219, USA",Unknown,https://venturerichmond.com/explore-downtown/riverfront-canal-walk/,Richmond +The Grand Kugel,37.5607646,-77.466158,"2500 W Broad St, Richmond, VA 23220, USA",(804) 864-1400,https://www.atlasobscura.com/places/the-grand-kugel-richmond-virginia,Richmond +Black History Museum and Cultural Center of Virginia,37.5500504,-77.4413774,"122 W Leigh St, Richmond, VA 23220, USA",(804) 780-9093,http://blackhistorymuseum.org/,Richmond +Virginia State Capitol,37.5388415,-77.433596,"1000 Bank St, Richmond, VA 23218, USA",(804) 698-1788,http://www.virginiacapitol.gov/,Richmond +The Valentine,37.5414596,-77.4308077,"1015 E Clay St, Richmond, VA 23219, USA",(804) 649-0711,http://www.thevalentine.org/,Richmond +American Civil War Museum- Historic Tredegar,37.5355813,-77.4454743,"480 Tredegar St, Richmond, VA 23219, USA",(804) 649-1861,http://www.acwm.org/,Richmond +Children's Museum of Richmond,37.5621261,-77.46727779999999,"2626 W Broad St, Richmond, VA 23220, USA",(804) 474-7000,http://www.cmorva.org/,Richmond +Libby Hill Park,37.526515,-77.41746800000001,"2801 E Franklin St, Richmond, VA 23223, USA",(804) 646-0036,Unknown,Richmond +Memorial Clock,37.5365208,-77.4360582,"1003 E Cary St, Richmond, VA 23219, USA",Unknown,Unknown,Richmond +Virginia Holocaust Museum,37.53091060000001,-77.42597839999999,"2000 E Cary St, Richmond, VA 23223, USA",(804) 257-5400,http://www.vaholocaust.org/,Richmond +Riverfront Canal Cruises,37.53344589999999,-77.4332704,"139 Virginia St, Richmond, VA 23219, USA",(804) 649-2800,https://venturerichmond.com/our-services/riverfront-canal-cruises,Richmond +Maggie L Walker National Historic Site,37.5478107,-77.4374764,"600 N 2nd St, Richmond, VA 23219, USA",(804) 771-2017,http://www.nps.gov/mawa,Richmond +Agecroft Hall & Gardens,37.5530231,-77.5051983,"4305 Sulgrave Rd, Richmond, VA 23221, USA",(804) 353-4241,http://www.agecrofthall.com/,Richmond +The John Marshall House,37.5419377,-77.4330751,"818 E Marshall St, Richmond, VA 23219, USA",(804) 648-7998,https://preservationvirginia.org/historic-sites/john-marshall-house/,Richmond +Richmond National Battlefield Park's Civil War Visitor Center,37.5355064,-77.4457972,"470 Tredegar St, Richmond, VA 23219, USA",(804) 771-2145,https://www.nps.gov/rich/planyourvisit/directions.htm,Richmond +Wilton House Museum,37.5625311,-77.5196595,"215 S Wilton Rd, Richmond, VA 23226, USA",(804) 282-5936,http://www.wiltonhousemuseum.org/,Richmond +New Mexico Museum of Natural History and Science,35.0981832,-106.665379,"1801 Mountain Rd NW, Albuquerque, NM 87104, USA",(505) 841-2800,http://www.nmnaturalhistory.org/,Albuquerque +Albuquerque Museum,35.097595,-106.668247,"2000 Mountain Rd NW, Albuquerque, NM 87104, USA",(505) 243-7255,http://albuquerquemuseum.org/,Albuquerque +Explora Science Center and Children's Museum of Albuquerque,35.097316,-106.664167,"1701 Mountain Rd NW, Albuquerque, NM 87104, USA",(505) 600-6072,http://www.explora.us/,Albuquerque +Turquoise Museum,35.0807475,-106.6497666,"400 2nd St SW, Albuquerque, NM 87102, USA",(505) 433-3684,http://www.turquoisemuseum.com/,Albuquerque +Petroglyph National Monument,35.124381,-106.7525097,"Western Trail NW, Albuquerque, NM 87120, USA",(505) 899-0205,https://www.nps.gov/petr/index.htm,Albuquerque +ABQ BioPark - Botanic Garden,35.0932029,-106.6809347,"2601 Central Ave NW, Albuquerque, NM 87104, USA",(505) 764-6200,http://www.cabq.gov/biopark,Albuquerque +Rio Grande Nature Center State Park,35.1304753,-106.6828452,"2901 Candelaria Rd NW, Albuquerque, NM 87107, USA",(505) 344-7240,http://www.emnrd.state.nm.us/spd/riograndenaturecenterstatepark.html,Albuquerque +#AbqTours - History & GHOST Tours of Old Town,35.09662429999999,-106.670977,"303, Plaza don Luis, 120 Romero St NW, Albuquerque, NM 87104, USA",Unknown,https://www.abqtours.fun/,Albuquerque +Indian Pueblo Cultural Center,35.1099323,-106.6590017,"2401 12th St NW, Albuquerque, NM 87104, USA",(505) 843-7270,http://indianpueblo.org/,Albuquerque +National Museum of Nuclear Science & History,35.0659855,-106.5338919,"601 Eubank Blvd SE, Albuquerque, NM 87123, USA",(505) 245-2137,http://www.nuclearmuseum.org/,Albuquerque +Rattlesnake Museum & Gift Shop,35.0954181,-106.6692678,"202 San Felipe St NW, Albuquerque, NM 87104, USA",(505) 242-6569,http://www.rattlesnakes.com/,Albuquerque +ABQ BioPark Aquarium,35.0931563,-106.6792669,"2601 Central Ave NW, Albuquerque, NM 87104, USA",(505) 764-6200,http://www.abqbiopark.com/,Albuquerque +Sandia Peak Tramway,35.1907104,-106.479402,"30 Tramway Rd NE, Albuquerque, NM 87122, USA",(505) 856-1532,http://www.sandiapeak.com/,Albuquerque +Madonna Of The Trail,35.09288639999999,-106.6498095,"323 Marble Ave NW, Albuquerque, NM 87102, USA",Unknown,Unknown,Albuquerque +Cliff's Amusement Park,35.1435262,-106.5890249,"4800 Osuna Rd NE, Albuquerque, NM 87109, USA",(505) 881-9373,http://cliffsamusementpark.com/,Albuquerque +Winter Wonderland NM,35.08221169999999,-106.5753271,"Inside EXPO, 300 San Pedro Dr NE, Albuquerque, NM 87108, USA",(505) 273-1871,https://winterwonderlandnm.com/,Albuquerque +Elena Gallegos Open Space,35.1617554,-106.473671,"7100 Tramway Blvd NE, Albuquerque, NM 87122, USA",(505) 768-5353,https://www.cabq.gov/parksandrecreation/open-space/lands/elena-gallegos-open-space,Albuquerque +Glass Gardens,35.0586889,-106.6571289,"2345 2nd St SW, Albuquerque, NM 87102, USA",Unknown,Unknown,Albuquerque +Albucreepy Ghost Walk,35.0956753,-106.6692217,"Box Office located inside Old Town Emporium, 204 San Felipe St NW, Albuquerque, NM 87104, USA",(505) 200-2642,http://www.tourabq.com/albucreepy,Albuquerque +Laberinto del Bosque,35.1169322,-106.689827,"Albuquerque, NM, Paseo del Bosque Trail, Albuquerque, NM 87104, USA",Unknown,Unknown,Albuquerque +Country Music Hall of Fame and Museum,36.1582632,-86.7761258,"222 Rep. John Lewis Way S, Nashville, TN 37203, USA",(615) 416-2001,https://countrymusichalloffame.org/,Nashville +Nashville Zoo at Grassmere,36.089705,-86.74209599999999,"3777 Nolensville Pk, Nashville, TN 37211, USA",(615) 833-1534,http://www.nashvillezoo.org/,Nashville +Belle Meade Historic Site & Winery,36.10491620000001,-86.8646954,"5025 Harding Pike, Nashville, TN 37205, USA",(615) 356-0501,https://visitbellemeade.com/,Nashville +Johnny Cash Museum,36.1609385,-86.77575709999999,"119 3rd Ave S, Nashville, TN 37201, USA",(615) 256-1777,http://www.johnnycashmuseum.com/,Nashville +Centennial Park,36.1489459,-86.81274979999999,"2500 West End Ave, Nashville, TN 37203, USA",(615) 862-8400,https://www.nashville.gov/Parks-and-Recreation/Parks/Centennial-Park.aspx,Nashville +Grand Ole Opry,36.2068571,-86.69210849999999,"600 Opry Mills Dr, Nashville, TN 37214, USA",(615) 871-6779,https://www.opry.com/?utm_campaign=opry&utm_medium=organicsearch&utm_source=googlemybusiness&utm_audience=tofu_googlemybusiness&utm_content=brandstory_google_my_business_website_link,Nashville +Frist Art Museum,36.1578972,-86.78385279999999,"919 Broadway, Nashville, TN 37203, USA",(615) 244-3340,https://fristartmuseum.org/,Nashville +The Parthenon,36.14967369999999,-86.81334670000001,"2500 West End Ave, Nashville, TN 37203, USA",(615) 862-8431,https://www.nashvilleparthenon.com/,Nashville +Nashville Shores,36.1582095,-86.6049146,"4001 Bell Rd, Hermitage, TN 37076, USA",(615) 889-7050,http://www.nashvilleshores.com/lodging,Nashville +Musicians Hall of Fame and Museum,36.1676681,-86.7823988,"401 Gay St, Nashville, TN 37219, USA",(615) 244-3263,https://www.musicianshalloffame.com/,Nashville +Bicentennial Capitol Mall State Park,36.1708875,-86.78758900000001,"600 James Robertson Pkwy, Nashville, TN 37243, USA",(888) 867-2757,https://tnstateparks.com/parks/bicentennial-mall,Nashville +Lane Motor Museum,36.1401967,-86.73457979999999,"702 Murfreesboro Pike, Nashville, TN 37210, USA",(615) 742-7445,http://www.lanemotormuseum.org/,Nashville +Honky Tonk Highway,36.1603925,-86.7784322,"501 Broadway, Nashville, TN 37203, USA",(800) 657-6910,https://www.visitmusiccity.com/visitors/honkytonkhighway,Nashville +Adventure Science Center,36.1466142,-86.775481,"800 Fort Negley Blvd, Nashville, TN 37203, USA",(615) 862-5160,http://www.adventuresci.org/,Nashville +Patsy Cline Museum,36.1609042,-86.77603049999999,"119 3rd Ave S, Nashville, TN 37201, USA",(615) 454-4722,https://www.patsymuseum.com/,Nashville +Andrew Jackson’s Hermitage,36.21375729999999,-86.61530970000001,"4580 Rachels Ln, Hermitage, TN 37076, USA",(615) 889-2941,http://www.thehermitage.com/,Nashville +NashTrash Tours,36.1694743,-86.78825429999999,"900 Rosa L Parks Blvd, Nashville, TN 37208, USA",(615) 226-7300,http://www.nashtrash.com/,Nashville +Fort Nashborough,36.1642682,-86.7754305,"170 1st Ave N, Nashville, TN 37201, USA",(615) 862-8400,https://www.nashville.gov/Parks-and-Recreation/Historic-Sites/Fort-Nashborough.aspx,Nashville +Ryman Auditorium,36.1612481,-86.7784714,"116 5th Ave N, Nashville, TN 37219, USA",(615) 889-3060,https://www.ryman.com/?utm_campaign=ryman&utm_medium=organicsearch&utm_source=googlemybusiness&utm_audience=tofu_googlemybusiness&utm_content=brandstory_google_my_business_website_link,Nashville +Nashville Public Square Park,36.16661129999999,-86.7781258,"Union St & 3rd Ave N, Nashville, TN 37201, USA",(615) 743-3090,https://www.nashvilledowntown.com/go/public-square-park,Nashville +Aberdeen Maritime Museum,57.1464556,-2.0948806,"Shiprow, Aberdeen AB11 5BY, UK",0300 020 0293,https://www.aberdeencity.gov.uk/AAGM/plan-your-visit/aberdeen-maritime-museum,Aberdeen +Duthie Park,57.130851,-2.103484,"Polmuir Road, Aberdeen AB11 7TH, UK",01224 585310,https://www.aberdeencity.gov.uk/services/leisure-culture-and-parks/parks/duthie-park,Aberdeen +Seaton Park,57.1723982,-2.0997173,"Don St, Old Aberdeen, Aberdeen AB24 1XS, UK",0300 020 0292,https://aberdeencity.gov.uk/services/environment/parks/seaton-park,Aberdeen +Provost Skene's House,57.1482926,-2.0974759,"Guestrow, Marischal Square, Aberdeen AB10 1AS, UK",0300 020 0293,http://www.aagm.co.uk/Visit/ProvostSkenesHouse/psh-overview.aspx,Aberdeen +Aberdeen Science Centre,57.15313829999999,-2.0846426,"179 Constitution St, Aberdeen AB24 5TU, UK",01224 640340,http://aberdeensciencecentre.org/,Aberdeen +Johnston Gardens,57.1362291,-2.1489215,"Johnston Gardens, Viewfield Rd, Aberdeen AB15 7XE, UK",01224 346421,https://www.aberdeencity.gov.uk/services/leisure-culture-and-parks/parks-and-gardens/johnston-gardens,Aberdeen +The Gordon Highlanders Museum,57.1374765,-2.1462081,"St. Luke’s, Viewfield Rd, Aberdeen AB15 7XH, UK",01224 311200,http://www.gordonhighlanders.com/,Aberdeen +Cruickshank Botanic Garden,57.1679378,-2.1044022,"St Machar Dr, Aberdeen AB24 3UU, UK",01224 272704,http://www.abdn.ac.uk/botanic-garden/,Aberdeen +Hazlehead Park,57.1391857,-2.1780864,"Hazlehead Ave, Aberdeen AB15 8BE, UK",01224 346421,https://www.aberdeencity.gov.uk/services/environment/parks/hazlehead-park,Aberdeen +The Tolbooth Museum,57.148021,-2.0940328,"Castle St, Aberdeen AB11 5BB, UK",0300 020 0293,https://www.aberdeencity.gov.uk/AAGM/plan-your-visit/tolbooth-museum,Aberdeen +David Welch Winter Gardens,57.1317309,-2.1042887,"Polmuir Road, Aberdeen AB11 7TH, UK",01224 346421,https://www.aberdeencity.gov.uk/services/environment/parks/duthie-park,Aberdeen +Torry Battery,57.1415966,-2.0591332,"Torry Battery, Greyhope Rd, Aberdeen AB11 8QX, UK",01224 624824,https://www.undiscoveredscotland.co.uk/aberdeen/torrybattery/index.html,Aberdeen +Den of Maidencraig,57.145601,-2.1807644,"Skene Rd, Aberdeen AB15 8BW, UK",Unknown,Unknown,Aberdeen +Footdee beach,57.1494029,-2.0765588,"Esplanade, Aberdeen AB24 5EN, UK",Unknown,Unknown,Aberdeen +Aberdeen beach,57.1671887,-2.078588599999999,"Aberdeen AB23 8DR, UK",Unknown,Unknown,Aberdeen +Aberdeen South Harbour,57.1341884,-2.060187200000001,"St Fitticks Rd, Aberdeen AB11 8TN, UK",Unknown,Unknown,Aberdeen +Aberdeen beach,57.15126699999999,-2.084709999999999,"Beach Blvd, Aberdeen AB11 5EG, UK",Unknown,Unknown,Aberdeen +The Den & The Glen,57.08570109999999,-2.232955,"S Deeside Rd, Maryculter, Aberdeen AB12 5FT, UK",01224 732941,http://www.denandtheglen.co.uk/,Aberdeen +Windows to the Sea,57.1720597,-2.0783966,"Beach Blvd, Aberdeen AB24 5EJ, UK",Unknown,https://emuseum.aberdeencity.gov.uk/objects/113540/windows-to-the-sea,Aberdeen +Huntfun Aberdeen,57.1454168,-2.1028951,"Union St, Aberdeen AB10 1QX, UK",01904 410975,http://www.huntfun.co.uk/,Aberdeen +The National Civil War Museum,40.2719945,-76.8553563,"1 Lincoln Cir, Harrisburg, PA 17103, USA",(717) 260-1861,http://www.nationalcivilwarmuseum.org/,Harrisburg +The State Museum of Pennsylvania,40.2657133,-76.8857592,"300 North St, Harrisburg, PA 17120, USA",(717) 787-4980,http://www.statemuseumpa.org/,Harrisburg +Susquehanna Art Museum,40.270908,-76.8895529,"1401 N 3rd St, Harrisburg, PA 17102, USA",(717) 233-8668,http://www.susquehannaartmuseum.org/,Harrisburg +Wildwood Park,40.3076643,-76.8865931,"100 Wildwood Way, Harrisburg, PA 17110, USA",(717) 221-0292,https://www.explorewildwoodpark.org/,Harrisburg +Fort Hunter Mansion and Park,40.3416627,-76.90769879999999,"5300 N Front St, Harrisburg, PA 17110, USA",(717) 599-5751,http://forthunter.org/,Harrisburg +Pennsylvania National Fire Museum,40.2764069,-76.89230239999999,"1820 N 4th St, Harrisburg, PA 17102, USA",(717) 232-8915,http://www.pnfm.org/,Harrisburg +John Harris-Simon Cameron,40.2567774,-76.8786906,"219 S Front St, Harrisburg, PA 17104, USA",(717) 233-3462,http://dauphincountyhistory.org/museum/,Harrisburg +City Island Park Railroad,40.2552246,-76.8889932,"25 Station Rd, Harrisburg, PA 17101, USA",(717) 232-2332,Unknown,Harrisburg +Riverfront Park,40.2568902,-76.8800787,"200 S Front St, Harrisburg, PA 17104, USA",Unknown,https://www.facebook.com/pages/Riverfront-Park-Harrisburg/134918523207797,Harrisburg +"Friends of Wildwood Lake Nature Center, Inc.",40.3075865,-76.8867497,"100 Wildwood Way, Harrisburg, PA 17110, USA",(717) 221-0292,http://www.wildwoodlake.org/,Harrisburg +Doll House Museum,40.2737991,-76.86126960000001,"2004 State St, Harrisburg, PA 17103, USA",(717) 233-1476,Unknown,Harrisburg +Harrisburg Artsfest,40.263578,-76.88979599999999,"614 N Front St, Harrisburg, PA 17101, USA",Unknown,https://harrisburgpa.gov/wp-content/uploads/2023/05/Event-Program-DIGITAL-Artsfest-2023.pdf,Harrisburg +Market Square,40.2590172,-76.8807534,"201-205 Market St, Harrisburg, PA 17101, USA",Unknown,Unknown,Harrisburg +Historical Society of Dauphin County,40.25671639999999,-76.87856959999999,"219 S Front St, Harrisburg, PA 17104, USA",(717) 233-3462,http://dauphincountyhistory.org/,Harrisburg +Harris Tower & Museum,40.2650803,-76.87902969999999,"637 Walnut St, Harrisburg, PA 17101, USA",(717) 232-6221,http://harristower.org/,Harrisburg +Whitaker Center for Science and the Arts,40.2607201,-76.8810852,"222 Market St, Harrisburg, PA 17101, USA",(717) 214-2787,http://www.whitakercenter.org/,Harrisburg +Benjamin Olewine III Nature Center,40.30716959999999,-76.88268029999999,"100 Wildwood Way, Harrisburg, PA 17110, USA",(717) 221-0292,https://explorewildwoodpark.org/about/olewine-nature-center/,Harrisburg +Five Senses Gardens,40.2519997,-76.83726109999999,"Capital Area Greenbelt, Harrisburg, PA 17111, USA",Unknown,http://caga.org/the-trail/garden/,Harrisburg +PA Museums,40.2657876,-76.885347,"300 North St rm 504, Harrisburg, PA 17120, USA",(717) 909-4951,http://www.pamuseums.org/,Harrisburg +Midtown Butterfly Mural,40.2687119,-76.8884095,"1224 N 3rd St, Harrisburg, PA 17102, USA",Unknown,Unknown,Harrisburg +Fort Wayne Museum of Art,41.08126499999999,-85.1360545,"311 E Main St, Fort Wayne, IN 46802, USA",(260) 422-6467,http://www.fwmoa.org/,Fort Wayne +Science Central,41.0918442,-85.1394141,"1950 N Clinton St, Fort Wayne, IN 46805, USA",(260) 424-2400,http://www.sciencecentral.org/,Fort Wayne +Historic Old Fort,41.08522699999999,-85.136248,"1201 Spy Run Ave, Fort Wayne, IN 46805, USA",(260) 427-6000,http://www.fortwayneparks.org/index.php?option=com_content&view=article&id=26&Itemid=43,Fort Wayne +Foellinger-Freimann Botanical Conservatory,41.0758189,-85.1391042,"1100 Calhoun St, Fort Wayne, IN 46802, USA",(260) 427-6440,http://botanicalconservatory.org/,Fort Wayne +Fort Wayne Firefighters Museum,41.0769542,-85.14193999999999,"226 W Washington Blvd, Fort Wayne, IN 46802, USA",(260) 426-0051,http://www.fortwaynefiremuseum.com/,Fort Wayne +Headwaters Park,41.08495959999999,-85.1393222,"333 S Clinton St, Fort Wayne, IN 46802, USA",(260) 422-7625,http://www.fortwayneparks.org/index.php?option=com_content&id=33&Itemid=49,Fort Wayne +Promenade Park,41.08241779999999,-85.1426023,"202 W Superior St, Fort Wayne, IN 46802, USA",(260) 427-6000,http://www.fortwayneparks.org/parks/park-page-links/36-parks/legacy-parks/856-promenade-park,Fort Wayne +Eagle Marsh Nature Preserve,41.037965,-85.2266188,"6801 Engle Rd, Fort Wayne, IN 46804, USA",(260) 478-2515,http://www.lrwp.org/,Fort Wayne +Kreager Park,41.090221,-85.040234,"7225 N River Rd, Fort Wayne, IN 46815, USA",(260) 427-6000,http://www.fortwayneparks.org/,Fort Wayne +Fort Wayne Children's Zoo,41.10594649999999,-85.1534411,"3411 Sherman Blvd, Fort Wayne, IN 46808, USA",(260) 427-6800,http://kidszoo.org/,Fort Wayne +Lakeside Park,41.0895284,-85.1197334,"1401 Lake Ave, Fort Wayne, IN 46805, USA",(260) 427-6000,https://www.fortwayneparks.org/parks/38-parks/park-page-links/176-lakeside-park-a-rose-garden.html,Fort Wayne +African / African American Historical Society Museum,41.0739851,-85.1323596,"436 E Douglas Ave, Fort Wayne, IN 46802, USA",(260) 420-0765,Unknown,Fort Wayne +Franke Park,41.1074897,-85.1586233,"3411 Sherman Blvd, Fort Wayne, IN 46808, USA",(260) 427-6000,http://www.fortwayneparks.org/,Fort Wayne +Buckner Park,41.091028,-85.222044,"6114 Bass Rd, Fort Wayne, IN 46818, USA",(260) 427-6000,http://www.fortwayneparks.org/index.php?option=com_content&view=article&id=293%3Abuckner-park&catid=38&Itemid=33,Fort Wayne +Lincoln Log Cabin Replica,41.0492172,-85.1585242,"3902 Old Mill Rd, Fort Wayne, IN 46807, USA",Unknown,http://www.fortwayneparks.org/38-parks/park-page-links/169-foster-park.html,Fort Wayne +Hugo Diamond Railroad Crossing,41.0498336,-85.1796262,"3020 Ojibway Trail, Fort Wayne, IN 46809, USA",Unknown,Unknown,Fort Wayne +Hanson Quarry Observation Deck,41.0285224,-85.1970338,"4529 Sand Point Rd, Fort Wayne, IN 46809, USA",(260) 478-9992,Unknown,Fort Wayne +77 Steps,41.0787014,-85.14028789999999,"113 W Berry St, Fort Wayne, IN 46802, USA",Unknown,https://www.artthiswayfw.com/public-art/77-steps/,Fort Wayne +Old Fort Park,41.0816188,-85.1340953,"Clay St, E Main St, Fort Wayne, IN 46802, USA",(260) 427-6000,https://oldfortwayne.org/,Fort Wayne +Shoaff Park,41.1404824,-85.09340019999999,"6401 St Joe Rd, Fort Wayne, IN 46835, USA",(260) 427-6000,http://www.fortwayneparks.org/index.php?option=com_content&id=114&Itemid=179,Fort Wayne +Green Bay Botanical Garden,44.5311737,-88.0983591,"2600 Larsen Rd, Green Bay, WI 54303, USA",(920) 490-9457,http://www.gbbg.org/,Green Bay +Green Bay Packers Hall of Fame & Museum,44.5015622,-88.0601798,"1265 Lombardi Ave, Green Bay, WI 54304, USA",(920) 569-7512,https://www.packershofandtours.com/explore/hall-of-fame,Green Bay +Heritage Hill State Historical Park,44.47346140000001,-88.0312908,"2640 S Webster Ave, Green Bay, WI 54301, USA",(920) 448-5150,http://www.heritagehillgb.org/,Green Bay +Neville Public Museum,44.518054,-88.0185365,"210 Museum Pl, Green Bay, WI 54303, USA",(920) 448-4460,http://www.nevillepublicmuseum.org/,Green Bay +The Children's Museum of Green Bay,44.5311985,-87.9834705,"1230 Bay Beach Rd, Green Bay, WI 54302, USA",(920) 432-4397,http://www.gbchildrensmuseum.org/,Green Bay +Oneida Nation Walk of Legends,44.5011961,-88.0562216,"Lombardi Ave &, S Oneida St, Green Bay, WI 54304, USA",(920) 497-5944,https://www.greenbay.com/directory/oneida-nation-walk-of-legends/,Green Bay +Bay Beach Wildlife Sanctuary,44.5294969,-87.97683420000001,"1660 E Shore Dr, Green Bay, WI 54302, USA",(920) 391-3671,http://baybeachwildlife.com/,Green Bay +The CityDeck,44.5168939,-88.0154409,"301 N Washington St, Green Bay, WI 54301, USA",(920) 448-3365,https://greenbaywi.gov/,Green Bay +Wequiock Falls,44.5685106,-87.8792162,"3426 Bay Settlement Rd, Green Bay, WI 54311, USA",(920) 448-6242,http://www.co.brown.wi.us/departments/page_87b205fddb72/?department=260ed145263d&subdepartment=dadc284c6c54,Green Bay +Bay Beach Amusement Park,44.5315546,-87.9797893,"1313 Bay Beach Rd, Green Bay, WI 54302, USA",(920) 448-3365,http://www.baybeach.org/,Green Bay +Leicht Memorial Park,44.5197705,-88.0158232,"128 Dousman St, Green Bay, WI 54303, USA",(812) 269-2442,https://greenbaywi.gov/Facilities/Facility/Details/Leicht-Memorial-106,Green Bay +"Grassy Island Lighthouse, llc",44.53614870000001,-88.00525460000001,"Green Bay, WI 54302, USA",Unknown,Unknown,Green Bay +The Green Bay Mural,44.5156092,-88.00714450000001,"620 Main St, Green Bay, WI 54301, USA",Unknown,Unknown,Green Bay +Welcome to Green Bay sign,44.4999917,-88.0385816,"Ashland & Liberty Outbound, Green Bay, WI 54304, USA",Unknown,Unknown,Green Bay +Segway the Fox Tours,44.5182454,-88.0198352,"200 N Broadway, Green Bay, WI 54303, USA",(920) 376-0256,https://glidenew.com/green-bay/,Green Bay +Pamperin Park,44.54515600000001,-88.101182,"2801 County Road RK, Green Bay, WI 54303, USA",(920) 448-6242,http://www.co.brown.wi.us/departments/page_c5caa1e1b96c/?department=260ed145263d&subdepartment=dadc284c6c54,Green Bay +Ashwaubomay Lake,44.46539720000001,-88.0593383,"2881 S Broadway, Green Bay, WI 54304, USA",(920) 492-2331,https://ashwaubenon.com/visitors/ashwaubomay-lake/,Green Bay +Brown County WI Fonferek's Glen,44.425378,-87.9397493,"2825 Dutchman Rd, Green Bay, WI 54311, USA",(920) 448-6242,http://www.co.brown.wi.us/departments/page_01e36501ddc8/?department=260ed145263d&subdepartment=dadc284c6c54,Green Bay +Bay Beach Wildlife Sanctuary Nature Center,44.5279404,-87.9729623,"Green Bay, WI 54302, USA",(920) 391-3671,http://www.baybeachwildlife.com/,Green Bay +King of The North Mural,44.5137699,-88.02310500000002,"305 S Broadway, Green Bay, WI 54303, USA",Unknown,Unknown,Green Bay +Wenatchee Confluence State Park,47.4604582,-120.3270233,"333 Olds Station Rd, Wenatchee, WA 98801, USA",(509) 664-6373,http://parks.state.wa.us/286/Wenatchee-Confluence,Wenatchee +Wenatchee Valley Museum & Cultural Center,47.4224411,-120.3108731,"127 S Mission St, Wenatchee, WA 98801, USA",(509) 888-6240,http://www.wenatcheevalleymuseum.org/,Wenatchee +Wenatchee Riverfront Park,47.4305338,-120.3105042,"Apple Capitol Recreational Loop Trail, Wenatchee, WA 98801, USA",(509) 661-4551,http://www.chelanpud.org/parks-and-recreation/our-parks/day-use-parks/wenatchee-riverfront-park,Wenatchee +Ohme Gardens,47.47801070000001,-120.326297,"3327 Ohme Rd, Wenatchee, WA 98801, USA",(509) 662-5785,http://ohmegardens.org/,Wenatchee +Rotary Park,47.44321009999999,-120.3464695,"Wenatchee, WA 98801, USA",(509) 888-3284,https://www.wenatcheewa.gov/Home/Components/FacilityDirectory/FacilityDirectory/10/1312,Wenatchee +Pybus Public Market,47.4252672,-120.30733,"3 N Worthen St, Wenatchee, WA 98801, USA",(509) 888-3900,http://www.pybuspublicmarket.org/,Wenatchee +Memorial Park,47.4228044,-120.3138326,"2 S Chelan Ave, Wenatchee, WA 98801, USA",(509) 888-3284,http://www.wenatcheewa.gov/Home/Components/FacilityDirectory/FacilityDirectory/26/1312,Wenatchee +The Wells House,47.4313447,-120.3334994,"801-817 Nelson Ave, Wenatchee, WA 98801, USA",(509) 888-6240,https://www.wenatcheevalleymuseum.org/wells-house/,Wenatchee +Walla Walla Point Park,47.4435602,-120.3191952,"1351 Walla Walla Ave, Wenatchee, WA 98801, USA",(509) 661-8006,http://www.chelanpud.org/walla-walla-point-park.html,Wenatchee +Lincoln Park,47.4032781,-120.3057421,"1410 S Mission St, Wenatchee, WA 98801, USA",(509) 888-3284,http://www.wenatcheewa.gov/Home/Components/FacilityDirectory/FacilityDirectory/44/1312,Wenatchee +Centennial Park,47.4223313,-120.3099117,"Centennial Park, 130 S Wenatchee Ave, Wenatchee, WA 98801, USA",(509) 888-3284,http://centennial-park-wenatchee.jany.io/,Wenatchee +Sweet Roll,47.42321039999999,-120.3104606,"102 S Wenatchee Ave, Wenatchee, WA 98801, USA",Unknown,https://www.wenatcheewa.gov/services/parks-recreation-and-cultural-services/public-art-collection?locale=en,Wenatchee +Wenatchee Mural,47.42518679999999,-120.3117178,"15 N Wenatchee Ave, Wenatchee, WA 98801, USA",Unknown,https://www.wenatcheewa.gov/services/parks-recreation-and-cultural-services/public-art-collection?locale=en,Wenatchee +Washington Park,47.42202899999999,-120.326082,"110 S Miller St, Wenatchee, WA 98801, USA",(509) 888-3284,http://www.wenatcheewa.gov/Home/Components/FacilityDirectory/FacilityDirectory/8/1312,Wenatchee +Horan Natural Area,47.45371,-120.3272988,"Apple Capitol Recreational Loop Trail, Wenatchee, WA 98801, USA",Unknown,https://www.wta.org/go-hiking/hikes/horan-natural-area-wenatchee-confluence,Wenatchee +Bridge of Friendship,47.41856019999999,-120.2811403,"East Wenatchee, WA 98802, USA",Unknown,Unknown,Wenatchee +Linden Tree Park,47.438588,-120.3149814,"Wenatchee, WA 98801, USA",Unknown,Unknown,Wenatchee +Porters Pond,47.4335622,-120.3039248,"East Wenatchee, WA 98802, USA",Unknown,Unknown,Wenatchee +Pioneer Park,47.4127398,-120.3197963,"220 Fuller St, Wenatchee, WA 98801, USA",(509) 888-3284,http://www.wenatcheewa.gov/Home/Components/FacilityDirectory/FacilityDirectory/38/1312,Wenatchee +Apple Capital Recreation Loop Trail,47.453433,-120.3254826,"Horan Natural Area, Apple Capitol Recreational Loop Trail, Wenatchee, WA 98801, USA",Unknown,Unknown,Wenatchee +Meow Wolf Santa Fe,35.6546084,-105.9968534,"1352 Rufina Cir, Santa Fe, NM 87507, USA",(866) 636-9969,https://tickets.meowwolf.com/santa-fe/#gbp,Santa Fe +Santa Fe Plaza,35.6874277,-105.9385121,"63 Lincoln Ave, Santa Fe, NM 87501, USA",(505) 955-6200,http://www.santafenm.gov/,Santa Fe +Georgia O'Keeffe Museum,35.6891517,-105.9412918,"217 Johnson St, Santa Fe, NM 87501, USA",(505) 946-1000,http://okeeffemuseum.org/,Santa Fe +Museum of International Folk Art,35.664126,-105.926582,"On Museum Hill, 706 Camino Lejo, Santa Fe, NM 87505, USA",(505) 476-1204,http://www.moifa.org/,Santa Fe +Palace of the Governors,35.68782849999999,-105.938226,"105 W Palace Ave, Santa Fe, NM 87501, USA",(505) 476-5100,http://www.nmhistorymuseum.org/,Santa Fe +Museum of Indian Arts & Culture,35.6649182,-105.9249207,"710 Camino Lejo, Santa Fe, NM 87505, USA",(505) 476-1269,http://www.indianartsandculture.org/,Santa Fe +New Mexico Museum of Art,35.688143,-105.939017,"107 W Palace Ave, Santa Fe, NM 87501, USA",(505) 476-5063,http://www.nmartmuseum.org/,Santa Fe +Cathedral Park,35.6869083,-105.9361917,"131 Cathedral Pl, Santa Fe, NM 87501, USA",(505) 955-2143,http://www.santafenm.gov/,Santa Fe +New Mexico History Museum,35.6882739,-105.9384354,"113 Lincoln Ave, Santa Fe, NM 87501, USA",(505) 476-5200,http://www.nmhistorymuseum.org/,Santa Fe +Cross of the Martyrs,35.6895016,-105.9329236,"617 Paseo De Peralta, Santa Fe, NM 87501, USA",(505) 955-6949,http://www.santafenm.gov/district_1_parks,Santa Fe +Oldest House Museum,35.68360879999999,-105.9373314,"215 E De Vargas St, Santa Fe, NM 87501, USA",(505) 988-2488,http://www.oldesthousesantafe.com/,Santa Fe +Santa Fe Railyard Park,35.68028770000001,-105.9503428,"740 Cerrillos Rd, Santa Fe, NM 87505, USA",(505) 982-3373,http://www.railyardpark.org/,Santa Fe +Fort Marcy Park,35.69559479999999,-105.9347458,"490 Bishops Lodge Rd, Santa Fe, NM 87501, USA",(505) 955-2105,http://www.santafenm.gov/district_1_parks#leave-site-alert,Santa Fe +Santa Fe Botanical Garden,35.6656347,-105.9270284,"715 Camino Lejo, Santa Fe, NM 87505, USA",(505) 471-9103,http://www.santafebotanicalgarden.org/,Santa Fe +The Cathedral Basilica of St. Francis of Assisi,35.68660309999999,-105.9364754,"131 Cathedral Pl, Santa Fe, NM 87501, USA",(505) 982-5619,http://cbsfa.org/,Santa Fe +San Miguel Chapel,35.6834569,-105.9375553,"401 Old Santa Fe Trail, Santa Fe, NM 87501, USA",(505) 983-3974,http://sanmiguelchapelsantafe.org/,Santa Fe +New Mexico State Capitol,35.68239459999999,-105.9396949,"411 S Capitol St, Santa Fe, NM 87501, USA",(505) 986-4589,http://www.nmlegis.gov/lcs/,Santa Fe +Museum of Spanish Colonial Art,35.66602039999999,-105.9241452,"750 Camino Lejo, Santa Fe, NM 87505, USA",(505) 982-2226,https://www.spanishcolonial.org/,Santa Fe +Santa Fe Children's Museum,35.672994,-105.93693,"1050 Old Pecos Trail, Santa Fe, NM 87505, USA",(505) 989-8359,http://www.santafechildrensmuseum.org/,Santa Fe +Wheelwright Museum of the American Indian,35.662755,-105.927002,"704 Camino Lejo, Santa Fe, NM 87505, USA",(505) 982-4636,http://www.wheelwright.org/,Santa Fe +The Dalí (Salvador Dalí Museum),27.76590860000001,-82.6315789,"1 Dali Blvd, St. Petersburg, FL 33701, USA",(727) 823-3767,https://thedali.org/,St. Petersburg +Sunken Gardens,27.7897718,-82.6378269,"1825 4th St N, St. Petersburg, FL 33704, USA",(727) 551-3102,http://www.stpete.org/sunken/,St. Petersburg +St. Pete Pier,27.7735842,-82.63142069999999,"600 2nd Ave NE, St. Petersburg, FL 33701, USA",(727) 822-7437,https://stpetepier.org/,St. Petersburg +Vinoy Park,27.7791003,-82.62572399999999,"701 Bayshore Dr NE, St. Petersburg, FL 33701, USA",(727) 893-7441,http://www.stpeteparksrec.org/vinoypark/,St. Petersburg +Museum of Fine Arts,27.774421,-82.63188400000001,"255 Beach Dr NE, St. Petersburg, FL 33701, USA",(727) 896-2667,https://mfastpete.org/,St. Petersburg +Imagine Museum,27.7712671,-82.6593797,"1901 Central Ave, St. Petersburg, FL 33713, USA",(727) 300-1700,https://www.imaginemuseum.com/,St. Petersburg +The Florida Holocaust Museum,27.7705345,-82.6406366,"55 5th St S, St. Petersburg, FL 33701, USA",(727) 820-0100,http://www.thefhm.org/,St. Petersburg +The monument of Tadeusz Kosciuszko,27.7732637,-82.6373377,"128-198 3rd St N, St. Petersburg, FL 33701, USA",Unknown,Unknown,St. Petersburg +North Straub Park,27.7759766,-82.6312918,"400 Bayshore Dr NE, St. Petersburg, FL 33701, USA",(727) 893-7441,http://www.stpeteparksrec.org/northstraubpark/,St. Petersburg +Chihuly Collection,27.771026,-82.6440401,"720 Central Ave, St. Petersburg, FL 33701, USA",(727) 896-4527,http://www.moreanartscenter.org/chihuly/,St. Petersburg +Boyd Hill Nature Preserve,27.7255753,-82.64969649999999,"1101 Country Club Way S, St. Petersburg, FL 33705, USA",(727) 893-7326,http://www.stpeteparksrec.org/boydhillpreserve/,St. Petersburg +St. Petersburg Museum of History,27.77412099999999,-82.6305801,"335 2nd Ave NE, St. Petersburg, FL 33701, USA",(727) 894-1052,http://www.spmoh.org/,St. Petersburg +The James Museum of Western & Wildlife Art,27.7710579,-82.63478769999999,"150 Central Ave, St. Petersburg, FL 33701, USA",(727) 892-4200,http://thejamesmuseum.org/,St. Petersburg +St. Petersburg Sundial World’s Largest,27.77370359999999,-82.63478649999999,"101 2nd Ave N, St. Petersburg, FL 33701, USA",Unknown,Unknown,St. Petersburg +Albert Whitted Park,27.76685239999999,-82.6282864,"480 Bayshore Dr SE, St. Petersburg, FL 33701, USA",(727) 893-7441,http://www.stpeteparksrec.org/albertwhittedpark/,St. Petersburg +Great Explorations Children's Museum,27.7903628,-82.6379247,"1925 4th St N, St. Petersburg, FL 33704, USA",(727) 821-8992,http://greatex.org/,St. Petersburg +Sacred Lands,27.7875426,-82.75356839999999,"1700 Park St N #4348, St. Petersburg, FL 33710, USA",(727) 347-0354,http://www.sacredlandspreservationandeducation.org/,St. Petersburg +Weedon Island Preserve,27.8475889,-82.60866299999999,"1800 Weedon Dr NE, St. Petersburg, FL 33702, USA",(727) 453-6500,http://www.weedonislandpreserve.org/,St. Petersburg +Sawgrass Lake Park,27.8379308,-82.6674635,"7400 25th St N, St. Petersburg, FL 33702, USA",(727) 582-2100,http://www.pinellascounty.org/park/16_Sawgrass.htm,St. Petersburg +St. Petersburg Saturday Morning Market,27.7681055,-82.6330698,"Al Lang Stadium, 230 1st St SE, St. Petersburg, FL 33701, USA",(727) 855-1937,http://www.saturdaymorningmarket.com/,St. Petersburg +Labor & Industrial Museum,38.515401,-89.980401,"123 N Church St, Belleville, IL 62220, USA",(618) 222-9430,http://www.laborandindustrymuseum.org/,Belleville +St. Clair County Historical Society,38.5135883,-89.9763848,"701 E Washington St, Belleville, IL 62220, USA",(618) 234-0600,http://stcchs.org/,Belleville +Old Brewery District Mural,38.51434469999999,-89.994885,"801 W Main St, Belleville, IL 62220, USA",Unknown,http://www.bellevillemuralproject.com/,Belleville +Hello Belleville Mural,38.513215,-89.9817285,"13 S Jackson St, Belleville, IL 62220, USA",Unknown,http://www.bellevillemuralproject.com/,Belleville +Belleville In Swing Mural,38.5137528,-89.9803749,"225 E Main St, Belleville, IL 62220, USA",Unknown,http://www.bellevillemuralproject.com/,Belleville +National Shrine of Our Lady of the Snows,38.5612988,-90.0921231,"442 S Demazenod Dr, Belleville, IL 62223, USA",(618) 397-6700,http://snows.org/,Belleville +Stookey Township Park,38.5527585,-90.0558891,"100 Arlington Dr, Belleville, IL 62223, USA",(618) 538-5531,Unknown,Belleville +Frank Holten Park,38.589046,-90.0848933,"161 62220, IL-161, Belleville, IL 62220, USA",Unknown,Unknown,Belleville +Belleville Square,38.5135857,-89.9842303,"Belleville, IL 62220, USA",(618) 233-6810,Unknown,Belleville +Belleville Tourism,38.51438040000001,-89.9807979,"216 E A St, Belleville, IL 62220, USA",(618) 233-6769,http://www.bellevillechamber.org/index.php?pagekey=attractions,Belleville +The Weingarten,38.47178419999999,-89.9238998,"1780 IL-15, Belleville, IL 62221, USA",(618) 257-9463,http://www.theweingarten.com/,Belleville +Citizens Park,38.53452449999999,-90.0260306,"317 S 44th St, Belleville, IL 62226, USA",(618) 233-7275,https://www.belleville.net/Facilities/Facility/Details/Citizens-Park-3,Belleville +Laderman Park,38.5021449,-89.9673005,"1105 Mascoutah Ave, Belleville, IL 62220, USA",(618) 233-6397,https://www.belleville.net/facilities/facility/details/Laderman-Park-11,Belleville +Loop Creek Park,38.5132914,-89.94137239999999,"411 Todd Ln, Belleville, IL 62221, USA",(618) 233-3437,http://www.stclairtownship.com/departments/parks-recreation/,Belleville +Centennial Park,38.5344702,-89.97497299999999,"311 N Belt E, Swansea, IL 62226, USA",(618) 234-0044,https://stclairtownship.com/centennial-park/,Belleville +Sierra Park,38.547065,-89.939961,"2605 Sierra Dr, Belleville, IL 62221, USA",(618) 632-1022,http://shilohil.org/,Belleville +William and Florence Schmidt Art Center,38.51724000000001,-89.9221326,"2500 Carlyle Ave, Belleville, IL 62221, USA",(618) 222-5278,http://swic.edu/theschmidt,Belleville +Schranz Memorial Park,38.5543452,-89.9921543,"360 Honeysuckle Ln, Swansea, IL 62226, USA",(618) 234-0044,https://www.swanseail.org/1082/Parks-Recreation,Belleville +Skate City Belleville,38.5300373,-89.9566385,"1400 West Blvd, Belleville, IL 62221, USA",(618) 234-4502,http://www.skatecitybelleville.com/,Belleville +Saint Clair County Orchard Trail,38.4821206,-89.93759349999999,"Belleville, IL 62221, USA",Unknown,Unknown,Belleville +Prien Lake Park,30.1878041,-93.268258,"3700 W Prien Lake Rd, Lake Charles, LA 70605, USA",(337) 721-3540,Unknown,Lake Charles +Imperial Calcasieu Museum,30.21334850000001,-93.2221294,"204 W Sallier St, Lake Charles, LA 70601, USA",(337) 439-3797,http://www.imperialcalcasieumuseum.org/,Lake Charles +Millennium Park,30.22508040000001,-93.2215785,"900 Lakeshore Dr, Lake Charles, LA 70601, USA",(337) 491-1280,http://www.cityoflakecharles.com/,Lake Charles +Jurassic Empire,30.2005895,-93.2253714,"496 W Prien Lake Rd, Lake Charles, LA 70601, USA",Unknown,https://jurassicempire.com/,Lake Charles +Mardi Gras Museum of Imperial Calcasieu,30.2324306,-93.2038104,"Parking and entrance in back if building, Lake Charles, LA 70601, USA",Unknown,https://mardi-gras-museum-of-imperial-calcasieu.business.site/,Lake Charles +Lake Charles Visitor Center,30.2364563,-93.2291523,"1205 N Lakeshore Dr, Lake Charles, LA 70601, USA",(337) 436-9588,https://www.visitlakecharles.org/,Lake Charles +Hillcrest Park Lake Charles,30.211546,-93.1774037,"Hillcrest Dr, Lake Charles, LA 70615, USA",Unknown,Unknown,Lake Charles +Bord Du Lac Park,30.230379,-93.2223989,"Bord du Lac Dr, Lake Charles, LA 70601, USA",Unknown,Unknown,Lake Charles +Isreal LeFleur Park,30.1964125,-93.2713415,"3100 Kiwanis Ln, Lake Charles, LA 70601, USA",(337) 721-3540,http://www.cppj.net/index.aspx?page=447,Lake Charles +Lock Park,30.2196429,-93.2184373,"1535 Ryan St, Lake Charles, LA 70601, USA",(337) 491-1280,https://www.cityoflakecharles.com/eGov/apps/locations/facilities.egov?view=detail&id=14,Lake Charles +Golden Nugget Lake Charles Hotel & Casino,30.20488619999999,-93.2634412,"2550 Golden Nugget Blvd, Lake Charles, LA 70601, USA",(337) 508-7777,https://www.goldennugget.com/lake-charles/,Lake Charles +Cypress Pond,30.2363868,-93.2279316,"507 N Lakeshore Dr, Lake Charles, LA 70601, USA",Unknown,Unknown,Lake Charles +Clinch Park,44.76578139999999,-85.621521,"111 E Grandview Pkwy, Traverse City, MI 49684, USA",(231) 922-4904,http://www.michigan.org/property/clinch-park/,Traverse City +Great Lakes Children's Museum,44.786155,-85.638223,"13240 S W Bay Shore Dr, Traverse City, MI 49684, USA",(231) 932-4526,http://www.greatlakeskids.org/,Traverse City +World's Largest Cherry Pie Pan,44.7362233,-85.6251954,"3424 Cass Rd, Traverse City, MI 49684, USA",(231) 947-0692,Unknown,Traverse City +Hippie Tree,44.7525757,-85.65038969999999,"Traverse City, MI 49684, USA",Unknown,Unknown,Traverse City +Pirate's Cove Adventure Park,44.7451249,-85.5420085,"1710 US-31 North, Traverse City, MI 49686, USA",(231) 938-9599,Unknown,Traverse City +Sunset Park,44.7646113,-85.6081044,"635 E Front St, Traverse City, MI 49686, USA",Unknown,http://www.traversecitymi.gov/tcparksmaplist.asp,Traverse City +Mission Point Lighthouse,44.9912806,-85.4795028,"20500 Center Rd, Traverse City, MI 49686, USA",(231) 645-0759,http://www.missionpointlighthouse.com/,Traverse City +East Bay Park,44.76286509999999,-85.57624100000001,"220 E Bay Blvd S, Traverse City, MI 49686, USA",Unknown,Unknown,Traverse City +Great Wolf Lodge Water Park | Traverse City,44.7388194,-85.6475857,"3575 US-31, Traverse City, MI 49684, USA",(866) 478-9653,https://www.greatwolf.com/traverse-city?utm_source=google&utm_medium=organic&utm_campaign=gmb-traversecity,Traverse City +Discovery Pier,44.786198,-85.636034,"13271 S W Bay Shore Dr, Traverse City, MI 49684, USA",(231) 715-5200,https://discoverygreatlakes.org/,Traverse City +Greilickville Harbor Park,44.7881829,-85.6368358,"13133 S W Bay Shore Dr, Traverse City, MI 49684, USA",(231) 946-0921,Unknown,Traverse City +Discovery Cruises,44.7869575,-85.6382512,"13170 S W Bay Shore Dr #104, Traverse City, MI 49684, USA",Unknown,Unknown,Traverse City +Traverse City Veterans Memorial Park,44.7563042,-85.6385786,"902-998 W Eleventh St, Traverse City, MI 49684, USA",Unknown,Unknown,Traverse City +Keith J. Charters Traverse City State Park,44.7473278,-85.5529112,"1132 US-31, Traverse City, MI 49686, USA",(231) 922-5270,https://www2.dnr.state.mi.us/parksandtrails/details.aspx?id=501&type=SPRK,Traverse City +Lay Park,44.7610813,-85.6233657,"301 S Union St, Traverse City, MI 49684, USA",Unknown,http://www.traversecitymi.gov/tcparksmaplist.asp,Traverse City +Historic Barns Park,44.7476828,-85.6479301,"1500 Red Dr, Traverse City, MI 49684, USA",(231) 409-8382,https://www.historicbarnspark.com/,Traverse City +City Opera House,44.76394729999999,-85.6234446,"106 E Front St, Traverse City, MI 49684, USA",(231) 941-8082,http://www.cityoperahouse.org/,Traverse City +Grand Traverse County Civic Center,44.7621467,-85.5912401,"1213 W Civic Center Dr, Traverse City, MI 49686, USA",(231) 922-4818,http://www.co.grand-traverse.mi.us/916/Civic-Center,Traverse City +Gens Park,44.74667849999999,-85.53089949999999,"2263 Munson Ave, Traverse City, MI 49686, USA",(231) 947-8647,http://www.gtrec.org/facility.asp?ait=av&aid=39,Traverse City +Family friendly beach,44.7655175,-85.6196382,"191 E Grandview Pkwy, Traverse City, MI 49684, USA",Unknown,Unknown,Traverse City +Erie Maritime Museum,42.1366367,-80.0867536,"150 E Front St, Erie, PA 16507, USA",(814) 452-2744,http://eriemaritimemuseum.org/,Erie +Presque Isle State Park,42.1585823,-80.1149411,"301 Peninsula Dr, Erie, PA 16505, USA",(814) 833-7424,http://www.dcnr.pa.gov/StateParks/FindAPark/PresqueIsleStatePark/Pages/default.aspx,Erie +expERIEnce Children's Museum,42.131262,-80.085,"420 French St, Erie, PA 16507, USA",(814) 453-3743,http://www.eriechildrensmuseum.org/,Erie +Tom Ridge Environmental Center at Presque Isle State Park,42.1099864,-80.1540494,"301 Peninsula Dr, Erie, PA 16505, USA",(814) 833-7424,https://www.dcnr.pa.gov/StateParks/FindAPark/PresqueIsleStatePark/TRECPI/Pages/TRECPI.aspx,Erie +Presque Isle Lighthouse,42.1657745,-80.1152675,"Presque Isle State Park, 301 Peninsula Dr, Erie, PA 16505, USA",(814) 833-3604,https://www.presqueislelighthouse.org/,Erie +Erie Zoo,42.0977099,-80.0765026,"423 W 38th St, Erie, PA 16508, USA",(814) 864-4091,http://www.eriezoo.org/,Erie +Firefighters Historical Museum,42.1274109,-80.0948028,"428 Chestnut St, Erie, PA 16507, USA",(814) 456-5969,http://firefightershistoricalmuseum.org/,Erie +Bicentennial Tower,42.1388277,-80.09143139999999,"1 State St, Erie, PA 16507, USA",(814) 455-6055,http://www.porterie.org/bicentennial/,Erie +Erie Art Museum,42.13104440000001,-80.08544599999999,"20 E 5th St, Erie, PA 16507, USA",(814) 459-5477,https://erieartmuseum.org/,Erie +9/11 Memorial,42.1366289,-80.0858457,"160 E Front St, Erie, PA 16507, USA",Unknown,Unknown,Erie +Lake Erie Arboretum at Frontier,42.1187271,-80.1173713,"1501 W 6th St, Erie, PA 16505, USA",(814) 453-5323,http://www.leaferie.org/,Erie +Splash Lagoon,42.04829499999999,-80.07792200000002,"8091 Peach St, Erie, PA 16509, USA",(866) 377-5274,http://www.splashlagoon.com/,Erie +Asbury Woods,42.06123789999999,-80.1726319,"4105 Asbury Rd, Erie, PA 16506, USA",(814) 835-5356,http://www.asburywoods.org/,Erie +Rainbow Gardens,42.10861359999999,-80.1584199,"220 Waldameer Park Rd, Erie, PA 16505, USA",(814) 838-3591,https://www.90sdancepartyerie.com/,Erie +Graffiti Wall,42.1207484,-80.0811579,"1401 Peach St, Erie, PA 16501, USA",Unknown,Unknown,Erie +ERIE Sign,42.12946290000001,-80.10146859999999,"598 W 2nd St, Erie, PA 16507, USA",Unknown,https://ourwestbayfront.org/,Erie +Rocket Blast,42.1075597,-80.15486600000001,"410420 Peninsula Dr, Erie, PA 16505, USA",Unknown,https://waldameer.com/park-attractions/rocket-blast/,Erie +Kite Beach,42.1720354,-80.09324629999999,"Erie, PA 16507, USA",Unknown,Unknown,Erie +Perry Monument,42.1550619,-80.0893966,"Perry Monument, Erie, PA 16507, USA",Unknown,Unknown,Erie +The Griff Hill Slides,42.1181346,-80.1182676,"Frontier Park (Bus Shelter, Erie, PA 16505, USA",Unknown,Unknown,Erie +Journey Behind the Falls,43.0791958,-79.07849619999999,"6650 Niagara River Pkwy, Niagara Falls, ON L2E 6T2, Canada",(877) 642-7275,https://www.niagaraparks.com/visit/attractions/journey-behind-the-falls/,Niagara Falls +Niagara SkyWheel,43.090929,-79.0755099,"4960 Clifton Hill, Niagara Falls, ON L2G 3N4, Canada",(905) 358-4793,http://www.cliftonhill.com/attractions/niagara-skywheel,Niagara Falls +Cave of the Winds,43.0822943,-79.0713474,"Goat Island Rd, Niagara Falls, NY 14303, USA",(716) 285-0705,https://www.niagarafallsstatepark.com/attractions-and-tours/cave-of-the-winds,Niagara Falls +White Water Walk,43.1109554,-79.0604553,"4330 River Rd, Niagara Falls, ON L2G 6T2, Canada",(877) 642-7275,https://www.niagaraparks.com/visit/attractions/white-water-walk/,Niagara Falls +Queen Victoria Park,43.08662599999999,-79.077083,"6345 Niagara River Pkwy, Niagara Falls, ON L2E 6X8, Canada",(905) 358-1814,https://www.niagaraparks.com/visit/nature-garden/queen-victoria-park/,Niagara Falls +Horseshoe Falls of Canada,43.0771624,-79.0757318,"6650 Niagara River Pkwy, Niagara Falls, ON L2E 6T2, Canada",(905) 356-2241,https://www.niagaraparks.com/,Niagara Falls +Bird Kingdom,43.09262809999999,-79.0687007,"5651 River Rd, Niagara Falls, ON L2E 7M7, Canada",(905) 356-8888,http://www.birdkingdom.ca/,Niagara Falls +Niagara Falls Observation Tower,43.086908,-79.06879169999999,"332 Prospect St, Niagara Falls, NY 14303, USA",(716) 278-1794,https://www.niagarafallsstatepark.com/attractions-and-tours/observation-tower,Niagara Falls +Skylon Tower,43.08509309999999,-79.07956200000001,"5200 Robinson St, Niagara Falls, ON L2G 2A2, Canada",(905) 356-2651,https://www.skylon.com/?utm_source=GMB&utm_medium=Organic&utm_campaign=Yrly,Niagara Falls +Niagara Glen Nature Centre,43.1291667,-79.06,"3050 Niagara River Pkwy, Niagara Falls, ON L2E, Canada",(905) 354-6678,https://www.niagaraparks.com/visit/attractions/niagara-glen-nature-centre,Niagara Falls +Fallsview Tourist Area,43.0826352,-79.0832261,"5305 Murray St, Niagara Falls, ON L2G 3W6, Canada",(514) 446-6789,Unknown,Niagara Falls +Butterfly Conservatory,43.1370218,-79.0555897,"2565 Niagara River Pkwy, Niagara-on-the-Lake, ON L0S 1J0, Canada",(905) 358-0025,https://www.niagaraparks.com/visit/attractions/butterfly-conservatory/,Niagara Falls +Great Canadian Midway,43.09110469999999,-79.0746084,"4848 Clifton Hill, Niagara Falls, ON L2G 3N4, Canada",(905) 358-3676,https://www.cliftonhill.com/attractions/great-canadian-midway,Niagara Falls +Aquarium of Niagara,43.0943442,-79.0598962,"701 Whirlpool St, Niagara Falls, NY 14301, USA",(716) 285-3575,http://www.aquariumofniagara.org/,Niagara Falls +Niagara Falls Canada,43.09142919999999,-79.0709396,"5704 Falls Ave, Niagara Falls, ON L2G 3K7, Canada",(289) 800-2800,http://www.canadianshuttle.com/,Niagara Falls +Table Rock Welcome Centre,43.0791675,-79.0788306,"6650 Niagara River Pkwy, Niagara Falls, ON L2E 6T2, Canada",(905) 358-3268,http://www.niagaraparks.com/visit/welcome-centres/table-rock-centre/,Niagara Falls +Niagara's Fury,43.079258,-79.0788046,"6650 Niagara River Pkwy, Niagara Falls, ON L2G 0L0, Canada",(905) 358-3268,https://www.niagaraparks.com/visit/attractions/niagaras-fury/,Niagara Falls +Niagara Falls Fireworks,43.0841316,-79.0764402,"6660 Niagara River Pkwy, Niagara Falls, ON L2G 3N4, Canada",(905) 356-6061,https://www.niagarafallstourism.com/fireworks/,Niagara Falls +Fallsview Indoor Waterpark,43.092463,-79.07175800000002,"5685 Falls Ave, Niagara Falls, ON L2E 6W7, Canada",(905) 374-4444,https://www.fallsviewwaterpark.com/,Niagara Falls +Whirlpool Aero Car,43.1180306,-79.0687889,"3850 Niagara River Pkwy, Niagara Falls, ON L2E 3E8, Canada",(877) 642-7275,https://www.niagaraparks.com/visit/attractions/whirlpool-aero-car/,Niagara Falls +Idaho Museum of Natural History,42.86022880000001,-112.4337638,"698 E Dillon St, Pocatello, ID 83201, USA",(208) 282-3168,http://imnh.isu.edu/,Pocatello +Museum of Clean,42.85960439999999,-112.4417621,"711 S 2nd Ave, Pocatello, ID 83201, USA",(208) 236-6906,https://museumofclean.com/visit/,Pocatello +Fort Hall Replica and Commemorative Trading Post,42.8441988,-112.4189232,"3000 Avenue of the Chiefs, Pocatello, ID 83204, USA",(208) 233-0434,http://www.bchm-id.org/,Pocatello +Bannock County Historical Museum,42.8442022,-112.4189361,"3000 Avenue of the Chiefs, Pocatello, ID 83204, USA",(208) 233-0434,http://www.bchm-id.org/,Pocatello +Zoo Idaho,42.84240959999999,-112.4218443,"2900 S 2nd Ave, Pocatello, ID 83204, USA",(208) 234-6264,https://zooidaho.org/,Pocatello +Ross Park,42.8422061,-112.4235477,"2695 S 2nd Ave, Pocatello, ID 83204, USA",(208) 234-0472,https://www.pocatello.us/facilities/facility/details/lower-ross-park-west-side-29,Pocatello +Ammon Park,42.8832072,-112.4307986,"Pocatello, ID 83201, USA",(208) 234-6232,https://www.pocatello.us/facilities/facility/details/ammonpark-7,Pocatello +Pocatello Model Railroad and Historical Society,42.8597603,-112.4466744,"b59 S Harrison Ave, Pocatello, ID 83204, USA",(208) 236-5359,http://www.modular-model-railroads.com/2008/04/pocatello-model-railroad-and-historical-society/,Pocatello +O.K. Ward Park / Brooklyn's Playground,42.907357,-112.4831269,"1400 W Quinn Rd & Northern Lights Drive, Pocatello, ID 83202, USA",(208) 234-6232,http://www.pocatello.us/Facilities/Facility/Details/OK-Ward-Park-Brooklyn39s-Playground-22,Pocatello +Sacajawea Park,42.875759,-112.472026,"Aspen Ln, Pocatello, ID 83204, USA",(208) 234-6232,http://www.pocatello.us/Facilities/Facility/Details/Sacajawea-Park-30,Pocatello +Outer Limits Fun Zone,42.878599,-112.458275,"1800 Garrett Way, Pocatello, ID 83201, USA",(208) 232-7529,http://www.outerlimitsfunzone.com/,Pocatello +Westello Park,42.8625677,-112.4769004,"70 Westello Blvd, Pocatello, ID 83204, USA",(208) 234-6232,https://www.pocatello.us/278/Parks-Recreation,Pocatello +Sister City Park,42.9009256,-112.4203441,"Pocatello Creek Road &, Satterfield Dr, Pocatello, ID 83201, USA",(208) 234-6232,http://www.pocatello.us/Facilities/Facility/Details/Sister-City-Park-32,Pocatello +Constitution Park,42.8363152,-112.4055274,"4020 S 5th Ave, Pocatello, ID 83204, USA",(208) 234-6232,http://www.pocatello.us/Facilities/Facility/Details/Constitution-Park-14,Pocatello +The Standrod House,42.8653144,-112.4573864,"648 N Garfield Ave, Pocatello, ID 83204, USA",(208) 479-7659,https://www.visitpocatello.com/stanrod-house/,Pocatello +Christmas Lights at Delphic Ct,42.9071804,-112.4339377,"1455 Delphic Ct, Pocatello, ID 83201, USA",Unknown,Unknown,Pocatello +Centennial Park,42.853376,-112.4460072,"S Grant Ave, Pocatello, ID 83204, USA",(208) 234-6232,https://www.pocatello.gov/facilities/facility/details/centennialpark-13,Pocatello +The Mini Berkeley Pit,42.911204,-112.4974419,"4279 W Arizona Dr, Pocatello, ID 83202, USA",Unknown,Unknown,Pocatello +Portneuf Wellness Complex,42.9185636,-112.431786,"10588 Fairground Dr, Pocatello, ID 83201, USA",(208) 237-1340,http://www.bannockcountyeventcenter.us/,Pocatello +Simplot Square,42.86105029999999,-112.4516317,"155 S Arthur Ave, Pocatello, ID 83204, USA",(208) 234-6232,http://www.pocatello.us/,Pocatello +Giant Eagle Waterfall Nest,43.4881074,-112.0492513,"1075 S Utah Ave, Idaho Falls, ID 83402, USA",Unknown,Unknown,Idaho Falls +Museum of Idaho,43.49043559999999,-112.0381705,"200 N Eastern Ave, Idaho Falls, ID 83402, USA",(208) 522-1400,http://www.museumofidaho.org/,Idaho Falls +Eagle Rock Fountain,43.488604,-112.0497842,"S Utah Ave, Idaho Falls, ID 83402, USA",Unknown,Unknown,Idaho Falls +Ghost Walk Idaho Falls,43.4935792,-112.0398192,"510 Park Ave, Idaho Falls, ID 83402, USA",(208) 757-0121,http://www.ghostwalkidahofalls.com/,Idaho Falls +Collectors Corner Museum,43.4934538,-112.013692,"900 John Adams Pkwy, Idaho Falls, ID 83401, USA",(208) 528-9900,https://www.facebook.com/collectors50/,Idaho Falls +East Idaho Aquarium,43.51092209999999,-112.0216562,"570 E Anderson St, Idaho Falls, ID 83401, USA",(208) 569-2996,http://eastidahoaquarium.com/,Idaho Falls +The Art Museum Of Eastern Idaho,43.4901557,-112.0454372,"300 S Capital Ave, Idaho Falls, ID 83402, USA",(208) 524-7777,http://www.theartmuseum.org/,Idaho Falls +Idaho Falls River Walk - Greenbelt Trail,43.4964851,-112.0439624,"525 River Pkwy, Idaho Falls, ID 83402, USA",(208) 529-1200,Unknown,Idaho Falls +Russ Freeman Park,43.5149128,-112.0482712,"1290 Science Center Dr, Idaho Falls, ID 83402, USA",(208) 612-8100,https://www.idahofallsidaho.gov/Facilities/Facility/Details/Freeman-Park-15,Idaho Falls +Funland,43.4731142,-112.0406516,"365 Sunken Diamond Dr, Idaho Falls, ID 83402, USA",(208) 525-9814,https://funlandatthezoo.com/,Idaho Falls +Japanese Friendship Garden,43.4925,-112.0447222,"600 W Broadway St, Idaho Falls, ID 83402, USA",(208) 612-8580,https://www.idahofallsidaho.gov/1248/Japanese-Friendship-Garden,Idaho Falls +Love Lock Pier View- River Walk,43.4835846,-112.0504718,"1623 Idaho Falls Greenbelt Trail, Idaho Falls, ID 83402, USA",Unknown,Unknown,Idaho Falls +Idaho Falls Zoo at Tautphaus Park,43.4720073,-112.0413356,"2940 Carnival Way, Idaho Falls, ID 83402, USA",(208) 612-8552,https://www.idahofallsidaho.gov/1230/Zoo,Idaho Falls +Tautphaus Park,43.473726,-112.0393608,"Idaho Falls, ID 83402, USA",(208) 525-9814,https://www.idahofallsidaho.gov/,Idaho Falls +Old Butte Park,43.5004813,-112.0918546,"Idaho Falls, ID 83402, USA",Unknown,Unknown,Idaho Falls +Kate Curley Park,43.4893686,-112.0274308,"300-398 9th St, Idaho Falls, ID 83404, USA",(208) 612-8480,https://www.idahofallsidaho.gov/facilities/facility/details/Kate-Curley-Park-Shelter-25,Idaho Falls +Reinhart Park,43.5049445,-112.07035,"1055 Washburn Ave, Idaho Falls, ID 83402, USA",(208) 612-8479,https://www.idahofallsidaho.gov/Facilities/Facility/Details/-32,Idaho Falls +Mini Golden Gate Bridge,43.4945219,-112.0461069,"395 Lindsay Blvd, Idaho Falls, ID 83402, USA",Unknown,Unknown,Idaho Falls +Bison Art in the park,43.49945349999999,-112.04452,"700 Lindsay Blvd, Idaho Falls, ID 83402, USA",Unknown,Unknown,Idaho Falls +Idaho Falls,43.4974244,-112.0438519,"River Pkwy, Idaho Falls, ID 83402, USA",(208) 529-1200,https://www.idahofallsidaho.gov/,Idaho Falls +Great Lakes Maritime Heritage Center,45.0685734,-83.4346415,"500 W Fletcher St, Alpena, MI 49707, USA",(989) 884-6200,https://thunderbay.noaa.gov/visit/great-lakes-maritime-heritage-center.html,Alpena +Besser Museum for Northeast Michigan,45.0806742,-83.4484532,"491 Johnson St, Alpena, MI 49707, USA",(989) 356-2202,http://www.bessermuseum.org/,Alpena +Mich-e-ke-wis Park,45.0450136,-83.4475787,"1302 S State Ave, Alpena, MI 49707, USA",(989) 354-1720,https://www.alpena.mi.us/residents/city_parks/mich-e-ke-wis_park.php,Alpena +Bay View Park,45.0582821,-83.4321458,"208 N 1st Ave, Alpena, MI 49707, USA",(989) 354-1780,https://www.alpena.mi.us/residents/city_parks/bay_view_park.php,Alpena +Island Park,45.0758699,-83.4526248,"River St, Alpena, MI 49707, USA",(989) 354-1700,https://www.alpena.mi.us/residents/city_parks/island_park.php,Alpena +Alpena Wildlife Sanctuary,45.0708621,-83.4574414,"Alpena, MI 49707, USA",Unknown,https://www.alpena.mi.us/,Alpena +McRae Park,45.0716212,-83.4195319,"1301 N 2nd Ave, Alpena, MI 49707, USA",(989) 354-1720,https://www.alpena.mi.us/residents/city_parks/mcrae_park.php,Alpena +Thunder Bay River Center,45.0784506,-83.4539083,"Alpena, MI 49707, USA",Unknown,http://www.thunderbayrivercenter.org/,Alpena +Arzo Amusement Park,45.1344611,-83.4409319,"6051 U.S. 23 N, Alpena, MI 49707, USA",(989) 358-1111,http://www.arzopark.com/,Alpena +Thunder Bay National Marine Sanctuary,45.0688473,-83.4346762,"500 W Fletcher St, Alpena, MI 49707, USA",(989) 884-6200,http://thunderbay.noaa.gov/welcome.html,Alpena +"Downtown Alpena, Michigan",45.06208090000001,-83.43342229999999,"Alpena, MI 49707, USA",(989) 356-6422,http://www.downtownalpenami.com/,Alpena +Rockport State Recreation Area,45.20207689999999,-83.38427879999999,"Alpena, MI 49707, USA",(989) 734-2543,http://www.michigandnr.com/parksandtrails/Details.aspx?type=SPRK&id=729,Alpena +Maritime Heritage Trail,45.06491399999999,-83.4303561,"Maritime Heritage Trail,, Alpena, MI 49707, USA",Unknown,Unknown,Alpena +Paul bunyan of car parts,45.0817878,-83.446556,"666 Johnson St, Alpena, MI 49707, USA",Unknown,Unknown,Alpena +Arthur E. Sytek Roadside Park,45.0666978,-83.47081709999999,"Alpena, MI 49707, USA",(989) 354-1700,https://www.alpena.mi.us/residents/city_parks/sytek_park.php,Alpena +Rotary Island Mill Park,45.0678153,-83.4364166,"Rotary Island Mill Park, River St, Alpena, MI 49707, USA",Unknown,Unknown,Alpena +Culligan Plaza,45.0619908,-83.43341989999999,"Alpena, MI 49707, USA",(989) 354-1700,https://www.alpena.mi.us/residents/city_parks/culligan_plaza.php,Alpena +Washington Avenue Park,45.06058030000001,-83.4590966,"Lake Besser, Alpena, MI 49707, USA",Unknown,https://www.alpena.mi.us/residents/city_parks/washington_avenue_park.php,Alpena +Alpena: Sanctuary of the Great Lakes,45.06475239999999,-83.4287349,"420 N 2nd Ave, Alpena, MI 49707, USA",(989) 340-2288,http://www.visitalpena.com/,Alpena +Long Lake Park,45.19435989999999,-83.448222,"10002 Hinks Park Rd, Alpena, MI 49707, USA",(989) 595-2401,https://www.visitalpena.com/member-detail/long-lake-campgrounds-and-county-park/,Alpena +Bellamy Mansion Museum,34.2361477,-77.9430101,"503 Market St, Wilmington, NC 28401, USA",(910) 251-3700,http://www.bellamymansion.org/,Wilmington +Cape Fear Museum of History and Science,34.2358178,-77.9383561,"814 Market St, Wilmington, NC 28401, USA",(910) 798-4370,https://www.nhcgov.com/548/Cape-Fear-Museum,Wilmington +Wilmington Riverwalk,34.2352196,-77.9499727,"Wilmington Downtown Riverwalk, Wilmington, NC 28401, USA",Unknown,https://www.wilmingtonnc.gov/visitors/riverwalk,Wilmington +Wilmington Railroad Museum,34.2416797,-77.9508027,"505 Nutt St, Wilmington, NC 28401, USA",(910) 763-2634,http://www.wrrm.org/,Wilmington +Museum of the Bizarre,34.23268509999999,-77.9490153,"201 S Water St, Wilmington, NC 28401, USA",(910) 399-2641,http://www.museumbizarre.com/,Wilmington +Airlie Gardens,34.2182979,-77.8302416,"300 Airlie Rd, Wilmington, NC 28403, USA",(910) 798-7700,http://airliegardens.org/,Wilmington +Burgwin-Wright House and Gardens,34.2352069,-77.9462863,"224 Market St, Wilmington, NC 28401, USA",(910) 762-0570,http://www.burgwinwrighthouse.com/,Wilmington +The Children's Museum of Wilmington,34.23274130000001,-77.9474961,"116 Orange St, Wilmington, NC 28401, USA",(910) 254-3534,http://www.playwilmington.org/,Wilmington +Jungle Rapids Family Fun Park,34.207308,-77.8630797,"5320 Oleander Dr, Wilmington, NC 28403, USA",(910) 791-0666,http://www.junglerapids.com/,Wilmington +Battleship North Carolina,34.2365524,-77.9543704,"1 Battleship Rd NE, Wilmington, NC 28401, USA",(910) 399-9100,http://www.battleshipnc.com/,Wilmington +Cameron Art Museum,34.18409489999999,-77.9154152,"3201 S 17th St, Wilmington, NC 28412, USA",(910) 395-5999,http://www.cameronartmuseum.org/,Wilmington +Latimer House,34.23321769999999,-77.9461429,"126 S 3rd St, Wilmington, NC 28401, USA",(910) 606-4343,http://www.latimerhouse.org/,Wilmington +One Tree Hill: The Bridge,34.24381109999999,-77.9429268,"694 N 6th St, Wilmington, NC 28401, USA",Unknown,Unknown,Wilmington +1898 Memorial Park,34.2478338,-77.9471185,"1018 N 3rd St, Wilmington, NC 28401, USA",(910) 341-7852,http://www.wilmingtonnc.gov/departments/parks-recreation/parks,Wilmington +Halyburton Park,34.17563059999999,-77.90535799999999,"4099 S 17th St, Wilmington, NC 28412, USA",(910) 341-0075,https://www.wilmingtonnc.gov/departments/parks-recreation/halyburton-park,Wilmington +Bijou Park,34.2380299,-77.9492872,"209 N Front St, Wilmington, NC 28401, USA",Unknown,http://www.wilmingtonnc.gov/departments/parks-recreation/parks,Wilmington +Wilmington Downtown Incorporated,34.2381179,-77.94856659999999,"226 N Front St Suite 130, Wilmington, NC 28401, USA",(910) 998-7744,http://www.wilmingtondowntown.com/,Wilmington +Battleship Park,34.2356666,-77.9523976,"191-199 USS North Carolina Rd, Wilmington, NC 28401, USA",Unknown,https://www.battleshipnc.com/,Wilmington +Poplar Grove Plantation,34.3206329,-77.7655262,"10200 Hwy 17, Wilmington, NC 28411, USA",Unknown,http://www.poplargrove.org/,Wilmington +Long Leaf Park,34.2081747,-77.8819245,"314 Pine Grove Dr, Wilmington, NC 28409, USA",(910) 798-7275,https://parks.nhcgov.com/,Wilmington +Journey Behind the Falls,43.0791958,-79.07849619999999,"6650 Niagara River Pkwy, Niagara Falls, ON L2E 6T2, Canada",(877) 642-7275,https://www.niagaraparks.com/visit/attractions/journey-behind-the-falls/,Ontario +Art Gallery of Ontario,43.6536066,-79.39251229999999,"317 Dundas St W, Toronto, ON M5T 1G4, Canada",(416) 979-6648,https://ago.ca/,Ontario +Canada's Wonderland,43.8423619,-79.54121549999999,"Vaughan, ON L6A 1S6, Canada",(905) 832-8131,https://www.canadaswonderland.com/,Ontario +Fort William Historical Park,48.3469885,-89.3542954,"1350 King Rd, Thunder Bay, ON P7K 1L7, Canada",(807) 473-2344,https://fwhp.ca/,Ontario +Royal Ontario Museum,43.6677097,-79.3947771,"100 Queens Park, Toronto, ON M5S 2C6, Canada",(416) 586-8000,https://www.rom.on.ca/,Ontario +Algonquin Provincial Park,45.83715909999999,-78.3791239,"Ontario 60, Ontario K0J 2M0, Canada",(705) 633-5572,http://www.ontarioparks.com/,Ontario +MarineLand,43.06548029999999,-79.0724345,"7657 Portage Rd, Niagara Falls, ON L2E 6X8, Canada",(905) 356-9565,https://marineland.ca/,Ontario +CN Tower,43.6425662,-79.3870568,"290 Bremner Blvd, Toronto, ON M5V 3L9, Canada",(416) 868-6937,https://www.cntower.ca/en-ca/home.html,Ontario +Niagara SkyWheel,43.090929,-79.0755099,"4960 Clifton Hill, Niagara Falls, ON L2G 3N4, Canada",(905) 358-4793,http://www.cliftonhill.com/attractions/niagara-skywheel,Ontario +Table Rock Welcome Centre,43.0791675,-79.0788306,"6650 Niagara River Pkwy, Niagara Falls, ON L2E 6T2, Canada",(905) 358-3268,http://www.niagaraparks.com/visit/welcome-centres/table-rock-centre/,Ontario +Skylon Tower,43.08509309999999,-79.07956200000001,"5200 Robinson St, Niagara Falls, ON L2G 2A2, Canada",(905) 356-2651,https://www.skylon.com/?utm_source=GMB&utm_medium=Organic&utm_campaign=Yrly,Ontario +Pukaskwa National Park,48.5930342,-86.2933777,"ON-627, Heron Bay, ON P0T 1R0, Canada",(807) 229-0801,https://www.pc.gc.ca/pukaskwa?utm_source=gmb&utm_medium=pukaskwa,Ontario +Fort Henry National Historic Site,44.2309431,-76.4598731,"1 Fort Henry Dr, Kingston, ON K7K 5G8, Canada",(800) 437-2233,https://www.forthenry.com/,Ontario +Fallsview Tourist Area,43.0826352,-79.0832261,"5305 Murray St, Niagara Falls, ON L2G 3W6, Canada",(514) 446-6789,Unknown,Ontario +Thunder Bay Tourist Pagoda,48.43456399999999,-89.2180427,"198 Red River Rd, Thunder Bay, ON P7A 4K8, Canada",(807) 684-3670,https://www.visitthunderbay.com/en/about-us/visitor-centres.aspx?_mid_=466,Ontario +Ouimet Canyon Provincial Park,48.7895139,-88.6712946,"Greenwich Lake Rd, Pass Lake, ON P0T 2M0, Canada",(807) 977-2526,https://www.ontarioparks.com/park/ouimetcanyon,Ontario +"The Grotto, Bruce Peninsula National Park",45.2452258,-81.52430609999999,"Bruce Trail, Tobermory, ON N0H 2R0, Canada",(519) 596-2233,https://www.pc.gc.ca/en/pn-np/on/bruce/activ/emplacements-locations/parking?utm_source=gmb&utm_medium=grotto,Ontario +Fathom Five National Marine Park,45.2571585,-81.6562794,"121 Chi sin tib dek Rd, Tobermory, ON N0H 2R0, Canada",(519) 596-2233,https://www.pc.gc.ca/fathomfive?utm_source=gmb&utm_medium=fathomfive,Ontario +Petroglyphs Provincial Park,44.619234,-78.0442207,"2249 Northeys Bay Road, Woodview, ON K0L 3E0, Canada",(705) 877-2552,https://www.ontarioparks.com/park/petroglyphs,Ontario +Sleeping Giant Provincial Park,48.3693046,-88.804575,"R R 1, Pass Lake, ON P0T 2M0, Canada",(807) 977-2526,http://www.ontarioparks.com/park/sleepinggiant/maps,Ontario +Buddy Holly Center,33.578509,-101.8426663,"1801 Crickets Ave, Lubbock, TX 79401, USA",(806) 775-3560,http://www.buddyhollycenter.org/,Lubbock +National Ranching Heritage Center,33.5908318,-101.8840372,"3121 4th St, Lubbock, TX 79409, USA",(806) 742-0498,http://www.ranchingheritage.org/,Lubbock +American Windmill Museum,33.5805711,-101.8235743,"1701 Canyon Lake Dr, Lubbock, TX 79403, USA",(806) 747-8734,http://www.windmill.com/,Lubbock +Mackenzie Main City Park,33.595618,-101.8380727,"301 I-27, Lubbock, TX, USA",(806) 775-2673,https://www.ci.lubbock.tx.us/,Lubbock +Museum of Texas Tech University,33.5906441,-101.8858761,"3301 4th St, Lubbock, TX 79415, USA",(806) 742-2490,http://www.depts.ttu.edu/museumttu/,Lubbock +Prairie Dog Town,33.5985402,-101.8332249,"MacKenzie Park Rd, Lubbock, TX 79401, USA",(806) 775-2673,https://ci.lubbock.tx.us/departments/parks-recreation/parks/prairie-dog-town,Lubbock +Lubbock Lake National Historic Landmark,33.6221931,-101.8895461,"2401 Landmark Dr, Lubbock, TX 79415, USA",(806) 742-1116,http://www.lubbocklake.ttu.edu/,Lubbock +Buddy Holly Statue,33.5781916,-101.8435121,"1824 Crickets Ave, Lubbock, TX 79404, USA",(806) 775-2242,http://civiclubbock.com/,Lubbock +Silent Wings Museum,33.6576936,-101.8318144,"Lubbock, TX 79403, USA",(806) 775-3049,https://ci.lubbock.tx.us/departments/silent-wings-museum,Lubbock +FiberMax Center for Discovery,33.5859838,-101.8231243,"1121 Canyon Lake Dr, Lubbock, TX 79403, USA",(806) 744-3786,http://www.agriculturehistory.org/,Lubbock +Lubbock Memorial Arboretum,33.5563278,-101.8700974,"4111 University Ave, Lubbock, TX 79413, USA",(806) 797-4520,http://www.lubbockarboretum.org/,Lubbock +George Bush,33.541719,-101.8879512,"3402 58th St, Lubbock, TX 79413, USA",Unknown,https://usa-artmuseum.worldorgs.com/catalog/lubbock/tourist-attraction/george-bush,Lubbock +Science Spectrum & OMNI Theater,33.5283386,-101.8765636,"2579 S Loop 289 #250, Lubbock, TX 79423, USA",(806) 745-2525,http://www.sciencespectrum.org/,Lubbock +O.W. Ribble Park,33.5403373,-101.8601783,"62nd St, Lubbock, TX 79401, USA",(806) 775-2687,Unknown,Lubbock +Leftwich Park,33.5382186,-101.8827563,"3101 60th St, Lubbock, TX 79413, USA",Unknown,Unknown,Lubbock +West Texas Walk of Fame,33.578189,-101.8435138,"19th St, Lubbock, TX 79404, USA",Unknown,Unknown,Lubbock +Water Rampage,33.542203,-101.9618206,"6602 Marsha Sharp Fwy W, Lubbock, TX 79407, USA",(806) 771-5953,https://waterrampage.com/,Lubbock +Aztlan Park,33.5989052,-101.8460948,"1019 1st Pl, Lubbock, TX 79401, USA",(806) 775-2687,Unknown,Lubbock +Mae Simmons Park,33.5770591,-101.8217814,"2004 Oak Ave, Lubbock, TX 79404, USA",(806) 767-2700,https://ci.lubbock.tx.us/departments/parks-recreation/parks/lubbock-parks,Lubbock +Stumpy Hamilton Park,33.5744142,-101.8662596,"Lubbock, TX 79411, USA",(806) 775-2687,Unknown,Lubbock +Holter Museum of Art,46.59057300000001,-112.0365359,"12 E Lawrence St, Helena, MT 59601, USA",(406) 442-6400,http://www.holtermuseum.org/,Helena +ExplorationWorks,46.597646,-112.036181,"995 Carousel Way, Helena, MT 59601, USA",(406) 457-1800,http://www.explorationworks.org/,Helena +Original Governor's Mansion,46.5878352,-112.0350337,"304 N Ewing St, Helena, MT 59601, USA",Unknown,http://mhs.mt.gov/,Helena +Great Northern Carousel,46.59757390000001,-112.0367448,"989 Carousel Way, Helena, MT 59601, USA",(406) 457-5353,http://www.gncarousel.com/,Helena +Reeder's Alley,46.584925,-112.043507,"101 Reeders Alley, Helena, MT 59601, USA",(406) 843-5247,http://reedersalley.com/,Helena +Spring Meadow Lake State Park,46.61212949999999,-112.0752399,"2715 Country Club Ave, Helena, MT 59620, USA",(406) 449-5109,http://stateparks.mt.gov/spring-meadow-lake,Helena +Cathedral of Saint Helena,46.5901658,-112.0336939,"530 N Ewing St, Helena, MT 59601, USA",(406) 442-5825,http://sthelenas.org/,Helena +Montana Military Museum,46.6224973,-112.0969939,"1956 Mt Majo St, Helena, MT 59602, USA",(406) 324-3550,https://www.montanamilitarymuseum.org/,Helena +Centennial Park,46.5999258,-112.0312028,"1200 N Last Chance Gulch, Helena, MT 59601, USA",(406) 447-8463,https://www.helenamt.gov/Parks/CentennialBausch-Park,Helena +Lewis & Clark Interpretive Experience,46.59655319999999,-112.0374054,"40 W 14th St, Helena, MT 59601, USA",(406) 457-5542,Unknown,Helena +Memorial Park,46.5995855,-112.0291943,"1203 N Last Chance Gulch, Helena, MT 59601, USA",Unknown,https://www.helenamt.gov/Parks/Memorial-Park,Helena +Flying Giant Adventure Park,46.5906137,-111.9708731,"3351 Tricia St, Helena, MT 59601, USA",(406) 458-5867,https://sleepinggiantparks.com/adventurepark/,Helena +Prospector Fountain,46.5866628,-112.039785,"E Broadway St &, S Last Chance Gulch St, Helena, MT 59601, USA",Unknown,Unknown,Helena +The H,46.59086099999999,-112.0599867,"Helena, MT 59601, USA",Unknown,Unknown,Helena +Acropolis,46.5817367,-112.0430061,"250 Clancy St, Helena, MT 59601, USA",Unknown,Unknown,Helena +Mount Helena,46.5879857,-112.0655177,"Dump Out Trail, Helena, MT 59601, USA",Unknown,Unknown,Helena +Pioneer Park,46.5847401,-112.042453,"120 S Last Chance Gulch St, Helena, MT 59601, USA",Unknown,Unknown,Helena +Helena Bike Tower sculpture,46.5954571,-112.0375831,"816 Great Northern Blvd, Helena, MT 59601, USA",Unknown,Unknown,Helena +Gates of the Mountains,46.8321182,-111.9526307,"8320 N Montana Ave, Helena, MT 59602, USA",Unknown,https://gatesofthemountains.com/,Helena +Northwest Park,46.6130795,-112.0488907,"Parking lot, 100 Valley Dr, Helena, MT 59601, USA",(406) 253-3655,Unknown,Helena +Kalamazoo Valley Museum,42.2933117,-85.58366939999999,"230 N Rose St, Kalamazoo, MI 49007, USA",(800) 772-3370,https://www.kalamazoomuseum.org/,Kalamazoo +Kalamazoo Institute of Arts,42.2892818,-85.58798000000002,"314 S Park St, Kalamazoo, MI 49007, USA",(269) 349-7775,http://www.kiarts.org/,Kalamazoo +Kalamazoo Nature Center,42.36353069999999,-85.59029989999999,"7000 N Westnedge Ave, Kalamazoo, MI 49009, USA",(269) 381-1574,http://www.naturecenter.org/,Kalamazoo +Milham Park,42.2462212,-85.57235,"607 E Kilgore Rd, Kalamazoo, MI 49001, USA",(269) 337-8191,https://www.kzooparks.org/milhampark,Kalamazoo +Air Zoo Aerospace & Science Museum,42.22746799999999,-85.55717980000001,"6151 Portage Rd, Portage, MI 49002, USA",(269) 382-6555,http://www.airzoo.org/,Kalamazoo +Bronson Park,42.2903325,-85.5853277,"200 S Rose St, Kalamazoo, MI 49007, USA",(269) 337-8191,https://www.kzooparks.org/Parks-Facilities/Bronson-Park,Kalamazoo +Markin Glen Park,42.3349362,-85.588031,"5300 N Westnedge Ave, Kalamazoo, MI 49004, USA",(269) 381-7570,http://www.kalcounty.com/parks/markinglen/,Kalamazoo +River Villa & Jan Schau Wildflower Walk,42.28611859999999,-85.50258629999999,"6712 E Michigan Ave, Kalamazoo, MI 49048, USA",(269) 381-2360,Unknown,Kalamazoo +Asylum Lake Preserve,42.2633598,-85.64092749999999,"3836 S Drake Rd, Kalamazoo, MI 49008, USA",(269) 387-8557,http://wmich.edu/asylumlake/,Kalamazoo +Christmas Card Lane,42.2897378,-85.6245034,"318 S Lauderdale Dr, Kalamazoo, MI 49006, USA",Unknown,Unknown,Kalamazoo +Urban Nature Park - Kalamazoo Nature Center,42.2933904,-85.5778632,"426 E Michigan Ave, Kalamazoo, MI 49007, USA",(269) 381-1574,Unknown,Kalamazoo +Cleveland Metroparks Zoo,41.4459468,-81.7126246,"3900 Wildlife Way, Cleveland, OH 44109, USA",(216) 661-6500,https://www.clevelandmetroparks.com/zoo,Cleveland +The Cleveland Museum of Art,41.5079261,-81.61197229999999,"11150 East Blvd, Cleveland, OH 44106, USA",(216) 421-7350,https://www.clevelandart.org/,Cleveland +Cleveland Botanical Garden,41.5111392,-81.6095981,"11030 East Blvd, Cleveland, OH 44106, USA",(216) 721-1600,https://holdenfg.org/,Cleveland +Greater Cleveland Aquarium,41.49657439999999,-81.7038345,"2000 Sycamore St, Cleveland, OH 44113, USA",(216) 862-8803,http://greaterclevelandaquarium.com/,Cleveland +Great Lakes Science Center,41.5074199,-81.6965984,"601 Erieside Ave, Cleveland, OH 44114, USA",(216) 694-2000,https://greatscience.com/,Cleveland +Rock & Roll Hall of Fame,41.5085414,-81.6953685,"1100 E 9th St, Cleveland, OH 44114, USA",(216) 781-7625,https://www.rockhall.com/,Cleveland +Edgewater Park,41.4902896,-81.73545519999999,"Cleveland, OH 44102, USA",(216) 635-3200,https://clevelandmetroparks.com/parks/visit/parks/lakefront-reservation/edgewater-park,Cleveland +Cleveland Harbor West Pierhead Lighthouse,41.5090078,-81.71769929999999,"2800 Whiskey Island Dr, Cleveland, OH 44102, USA",Unknown,Unknown,Cleveland +Mill Creek Falls,41.4450479,-81.6253258,"Mill Creek Trail, Cleveland, OH 44105, USA",(216) 635-3200,https://clevelandmetroparks.com/parks/visit/parks/garfield-park-reservation/mill-creek-falls-overlook,Cleveland +A Christmas Story House,41.4687384,-81.6873816,"3159 W 11th St, Cleveland, OH 44109, USA",(216) 298-4919,http://www.achristmasstoryhouse.com/,Cleveland +The Children's Museum of Cleveland,41.5044657,-81.6599124,"3813 Euclid Ave, Cleveland, OH 44115, USA",(216) 791-7114,https://cmcleveland.org/,Cleveland +Cleveland Cultural Gardens,41.51899359999999,-81.6181879,"10823 Magnolia Dr, Cleveland, OH 44106, USA",(216) 220-3075,http://www.culturalgardens.org/,Cleveland +Cleveland History Center,41.5130284,-81.61162399999999,"10825 East Blvd, Cleveland, OH 44106, USA",(216) 721-5722,https://www.wrhs.org/plan-your-visit/,Cleveland +Cleveland Script Sign - Edgewater Park,41.4875796,-81.74927579999999,"Cleveland Memorial Shoreway, Cleveland, OH 44102, USA",(800) 321-1001,https://www.thisiscleveland.com/locations/cleveland-script-sign-edgewater-park,Cleveland +Cleveland Museum of Natural History,41.511524,-81.61288359999999,"1 Wade Oval Dr, Cleveland, OH 44106, USA",(216) 231-4600,https://www.cmnh.org/,Cleveland +Museum of Contemporary Art Cleveland,41.5089105,-81.60464499999999,"11400 Euclid Ave, Cleveland, OH 44106, USA",(216) 421-8671,http://www.mocacleveland.org/,Cleveland +Cleveland Script Sign - Tremont,41.4846717,-81.6928701,"1502 Abbey Ave, Cleveland, OH 44113, USA",(800) 321-1001,http://www.thisiscleveland.com/,Cleveland +International Women’s Air & Space Museum,41.5115679,-81.6899785,"1501 N Marginal Rd, Cleveland, OH 44114, USA",(216) 623-1111,http://www.iwasm.org/,Cleveland +West Side Market,41.4847078,-81.7028394,"1979 W 25th St, Cleveland, OH 44113, USA",(216) 664-3387,http://www.westsidemarket.org/,Cleveland +Washington Reservation,41.4559597,-81.6603073,"4408 Pallister Dr, Cleveland, OH 44105, USA",Unknown,https://www.clevelandmetroparks.com/parks/visit/parks/washington-reservation,Cleveland +Stuhr Museum,40.8837625,-98.3733648,"3133 US-34, Grand Island, NE 68801, USA",(308) 385-5316,http://stuhrmuseum.org/,Grand Island +Hear Grand Island,40.9259163,-98.3425132,"278 W South Front St, Grand Island, NE 68801, USA",Unknown,http://heargrandisland.com/,Grand Island +Fred's Flying Circus,40.9301843,-98.3371221,"503 E 4th St, Grand Island, NE 68801, USA",Unknown,Unknown,Grand Island +Stolley Park,40.9011088,-98.3609922,"2103 W Stolley Park Rd, Grand Island, NE 68801, USA",(308) 385-5444,http://www.grand-island.com/Home/Components/FacilityDirectory/FacilityDirectory/36/2181?sortn=FCPhone&npage=2,Grand Island +"Railroad Town, Nebr.",40.8818768,-98.3699641,"College St, Grand Island, NE 68801, USA",Unknown,Unknown,Grand Island +Island Oasis Water Park,40.9085344,-98.3362357,"321 E Fonner Park Rd, Grand Island, NE 68801, USA",(308) 385-5381,Unknown,Grand Island +Grand Island Arboretum,40.91004949999999,-98.3534811,"Grand Island, NE 68803, USA",Unknown,Unknown,Grand Island +Pier Park,40.9173249,-98.3355389,"500 S Oak St, Grand Island, NE 68801, USA",(308) 385-5426,Unknown,Grand Island +Hall County Park,40.87361010000001,-98.3750049,"2447 W Schimmer Dr, Grand Island, NE 68801, USA",(308) 385-5087,https://www.hallcountyne.gov/content.lasso?page=6133,Grand Island +Splash park,40.9550954,-98.3630679,"2820 N Broadwell Ave, Grand Island, NE 68803, USA",Unknown,Unknown,Grand Island +Grand Island Tourism & Visitor Center,40.9252504,-98.3410929,"201 W 3rd St, Grand Island, NE 68801, USA",(308) 382-4400,http://visitgrandisland.com/,Grand Island +Imagination City Children's Museum,40.9333734,-98.3807193,"3404 W 13th St #124b, Grand Island, NE 68803, USA",(308) 385-8377,Unknown,Grand Island +Owens Valley Paiute-Shoshone Cultural Center,37.3620248,-118.4160002,"2300 W Line St, Bishop, CA 93514, USA",(760) 873-8844,https://www.bishoppaiutetribe.com/owens-valley-paiute-shoshone-cultural-center/,Bishop +Laws Railroad Museum & Historical Site,37.4005889,-118.3463194,"Silver Canyon Rd, Bishop, CA 93514, USA",(760) 873-5950,https://lawsmuseum.org/,Bishop +Ancient Bristlecone Pine Forest Visitor Center,37.3853054,-118.1782446,"White Mountain Rd, Bishop, CA 93514, USA",(760) 873-2400,http://www.fs.usda.gov/detail/inyo/specialplaces/?cid=stelprdb5129900,Bishop +Bishop Paiute Reservation,37.3665958,-118.4203887,"Bishop, CA 93514, USA",Unknown,Unknown,Bishop +Wanaaha Casino,37.3753627,-118.4262583,"2742 N Sierra Hwy, Bishop, CA 93514, USA",(760) 873-4150,https://www.wanaaha.com/,Bishop +Izaak Walton Park,37.360774,-118.442961,"3600 W Line St, Bishop, CA 93515, USA",(760) 873-5577,http://inyocountycamping.com/izaak_walton_park.html,Bishop +Bishop Information Center,37.3674571,-118.3948939,"690 N Main St, Bishop, CA 93514, USA",(760) 873-8405,https://bishopvisitor.com/,Bishop +Bishop City Park,37.3676575,-118.3928725,"Bishop, CA 93514, USA",(760) 873-5863,https://www.cityofbishop.com/departments/parks_and_recreation/index.php,Bishop +Vista Point,37.5188867,-118.6040943,"Bishop, CA 93514, USA",Unknown,Unknown,Bishop +Bishop Canyon,37.2487462,-118.5793035,"Bishop Canyon, CA 92530, USA",Unknown,Unknown,Bishop +The Toggery,37.3615962,-118.3955551,"115 N Main St, Bishop, CA 93514, USA",(760) 872-3211,http://www.toggerybishop.com/,Bishop +Bishop City Park,37.3670279,-118.3947399,"688 N Main St, Bishop, CA 93514, USA",(760) 872-4240,Unknown,Bishop +SEA LIFE Melbourne Aquarium,-37.820627,144.95822,"King St, Melbourne VIC 3000, Australia",Unknown,https://www.visitsealife.com/melbourne/?utm_source=gmb&utm_medium=organic&utm_campaign=yext&utm_content=2,Melbourne +Melbourne Skydeck,-37.8213341,144.9646982,"7 Riverside Quay, Southbank VIC 3006, Australia",(03) 9693 8888,https://www.melbourneskydeck.com.au/,Melbourne +Royal Botanic Gardens Victoria - Melbourne Gardens,-37.8302443,144.9801496,"Melbourne VIC 3004, Australia",(03) 9252 2300,https://www.rbg.vic.gov.au/,Melbourne +Fed Square,-37.8179789,144.9690576,"Swanston St & Flinders St, Melbourne VIC 3000, Australia",(03) 9655 1900,https://www.fedsquare.com/,Melbourne +National Gallery of Victoria,-37.8225942,144.9689278,"180 St Kilda Rd, Melbourne VIC 3006, Australia",(03) 8620 2222,https://www.ngv.vic.gov.au/,Melbourne +Queen Victoria Market,-37.8075798,144.956785,"Queen St, Melbourne VIC 3000, Australia",(03) 9320 5822,http://www.qvm.com.au/,Melbourne +Luna Park Melbourne,-37.8678147,144.976924,"18 Lower Esplanade, St Kilda VIC 3182, Australia",(03) 9525 5033,https://www.lunapark.com.au/,Melbourne +Shrine of Remembrance,-37.8305164,144.9734319,"Birdwood Ave, Melbourne VIC 3001, Australia",(03) 9661 8100,http://www.shrine.org.au/,Melbourne +Melbourne Zoo,-37.7841346,144.9515473,"Elliott Ave, Parkville VIC 3052, Australia",1300 966 784,https://www.zoo.org.au/melbourne,Melbourne +Immigration Museum (Museums Victoria),-37.81924420000001,144.9604547,"400 Flinders St, Melbourne VIC 3000, Australia",13 11 02,https://museumsvictoria.com.au/immigrationmuseum/,Melbourne +Melbourne Museum,-37.803273,144.9717408,"11 Nicholson St, Carlton VIC 3053, Australia",13 11 02,https://museumsvictoria.com.au/melbournemuseum,Melbourne +Old Melbourne Gaol,-37.807832,144.9653171,"377 Russell St, Melbourne VIC 3000, Australia",(03) 9656 9889,http://www.oldmelbournegaol.com.au/,Melbourne +Cooks' Cottage,-37.8145006,144.9794476,"Fitzroy Gardens, Wellington Parade, East Melbourne VIC 3002, Australia",(03) 9658 9658,https://whatson.melbourne.vic.gov.au/things-to-do/cooks-cottage,Melbourne +Under The Clocks,-37.81786140000001,144.9673341,"295 Flinders St, Melbourne VIC 3000, Australia",Unknown,Unknown,Melbourne +Eight Hour Day Monument,-37.8071525,144.9655773,"Cnr Russel St and, 8 Hour Reserve, Victoria St, Melbourne VIC 3000, Australia",Unknown,http://vhd.heritage.vic.gov.au/,Melbourne +Southbank lookout,-37.8211085,144.9585713,"SEA LIFE Melbourne Aquarium Corner of King and, Flinders St, Melbourne VIC 3000, Australia",Unknown,Unknown,Melbourne +Alexandra Gardens,-37.8204318,144.9721339,"Alexandra Gardens Skate Park, 3 Boathouse Dr, Melbourne VIC 3004, Australia",(03) 9658 9658,https://www.melbourne.vic.gov.au/community/parks-open-spaces/major-parks-gardens/Pages/alexandra-gardens.aspx,Melbourne +Model Tudor Village in Fitzroy Gardens,-37.813251,144.981001,"East Melbourne VIC 3002, Australia",Unknown,Unknown,Melbourne +Chinatown Melbourne,-37.812006,144.9668036,"Little Bourke St, Melbourne VIC 3000, Australia",0474 043 600,http://chinatownmelbourne.com.au/,Melbourne +Australian Sports Museum,-37.8189776,144.984324,"Melbourne Cricket Ground, Yarra Park, Gate 3 Brunton Ave, East Melbourne VIC 3002, Australia",(03) 9657 8879,http://www.australiansportsmuseum.org.au/,Melbourne +SeaWorld Orlando,28.4110418,-81.46122749999999,"7007 Sea World Dr, Orlando, FL 32821, USA",(407) 545-5550,https://seaworld.com/orlando/,Orlando +The Wheel at ICON Park,28.4432814,-81.46831619999999,"Orlando, FL 32819, USA",(407) 601-7907,https://iconparkorlando.com/attractions/the-wheel/,Orlando +Fun Spot America Theme Parks,28.4654176,-81.4555573,"5700 Fun Spot Way, Orlando, FL 32819, USA",(407) 363-3867,http://www.fun-spot.com/,Orlando +Madame Tussauds Orlando,28.4437626,-81.4686057,"8387 International Dr, Orlando, FL 32819, USA",(855) 450-0581,https://www.madametussauds.com/orlando/,Orlando +Ripley's Believe It or Not!,28.4462109,-81.47039989999999,"8201 International Dr, Orlando, FL 32819, USA",(407) 345-0501,http://www.ripleys.com/orlando,Orlando +Universal Orlando Resort,28.47235289999999,-81.4690029,"6000 Universal Blvd, Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us,Orlando +Harry P Leu Gardens,28.5697602,-81.3563798,"1920 N Forest Ave, Orlando, FL 32803, USA",(407) 246-2620,http://www.leugardens.org/,Orlando +Seuss Landing,28.4743207,-81.4678193,"6000 Universal Blvd, Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us/theme-parks/islands-of-adventure,Orlando +The Wizarding World of Harry Potter - Diagon Alley,28.4796116,-81.4693747,"6000 Universal Blvd, Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us/theme-parks/universal-studios-florida/the-wizarding-world-of-harry-potter-diagon-alley,Orlando +The Wizarding World of Harry Potter - Hogsmeade,28.4727457,-81.4726258,"6000 Universal Blvd, Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us/theme-parks/islands-of-adventure/the-wizarding-world-of-harry-potter-hogsmeade,Orlando +Crayola Experience Orlando,28.4448741,-81.3917402,"8001 S Orange Blossom Trl, Orlando, FL 32809, USA",(407) 757-1700,https://www.crayolaexperience.com/orlando/,Orlando +SEA LIFE Orlando Aquarium,28.4425885,-81.46856799999999,"8449 International Dr, Orlando, FL 32819, USA",(855) 450-0680,https://www.visitsealife.com/orlando/,Orlando +WonderWorks Orlando,28.433743,-81.4715282,"9067 International Dr, Orlando, FL 32819, USA",(407) 351-8800,http://www.wonderworksorlando.com/,Orlando +Universal Studios Florida,28.4793754,-81.4685422,"6000 Universal Blvd, Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us/theme-parks/universal-studios-florida?utm_source=google&utm_medium=organic&utm_campaign=GMB,Orlando +Magical Midway Arcade & SlingShot,28.456953,-81.47011599999999,"7001 International Dr, Orlando, FL 32819, USA",(407) 370-5353,https://magicalmidwayslingshot.com/,Orlando +Orlando Starflyer,28.4448715,-81.4699694,"8265 International Dr, Orlando, FL 32819, USA",(407) 640-7009,http://starflyer.com/,Orlando +Orlando Science Center,28.5722626,-81.3682645,"777 E Princeton St, Orlando, FL 32803, USA",(407) 514-2000,https://www.osc.org/,Orlando +The Simpsons Ride,28.4795101,-81.4676162,"6000 Universal Blvd, Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us/things-to-do/rides-attractions/the-simpsons-ride,Orlando +Harry Potter and the Forbidden Journey,28.4721027,-81.47372390000001,"Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us/things-to-do/rides-attractions/harry-potter-and-the-forbidden-journey,Orlando +Gatorland,28.3556496,-81.4022109,"14501 S Orange Blossom Trl, Orlando, FL 32837, USA",(407) 855-5496,https://www.gatorland.com/,Orlando +Fresno Chaffee Zoo,36.7521966,-119.8231766,"894 W Belmont Ave, Fresno, CA 93728, USA",(559) 498-5910,http://www.fresnochaffeezoo.org/,Fresno +Forestiere Underground Gardens,36.807573,-119.88181,"5021 W Shaw Ave, Fresno, CA 93722, USA",(559) 271-0734,http://www.undergroundgardens.com/,Fresno +Fresno County Blossom Trail,36.706824,-119.6996626,"2629 S Clovis Ave, Fresno, CA 93725, USA",(559) 600-4271,http://goblossomtrail.com/,Fresno +Meux Home Museum,36.7397314,-119.7824257,"1007 R St, Fresno, CA 93721, USA",(559) 233-8007,http://www.meuxhomemuseum.org/,Fresno +Fresno Art Museum,36.7708127,-119.7739796,"2233 N First St, Fresno, CA 93703, USA",(559) 441-4221,http://www.fresnoartmuseum.org/,Fresno +Fresno Discovery Center,36.76806089999999,-119.731474,"1944 N Winery Ave, Fresno, CA 93703, USA",(559) 251-5533,http://www.fresnodiscoverycenter.org/,Fresno +Kearney Mansion Museum,36.72375749999999,-119.919426,"7160 W Kearney Blvd, Fresno, CA 93706, USA",(559) 441-0862,http://www.valleyhistory.org/,Fresno +Storyland,36.7529162,-119.82524,"890 W Belmont Ave, Fresno, CA 93728, USA",(559) 486-2124,http://storylandfresno.com/,Fresno +FAC Water Tower,36.73921,-119.7871877,"2444 Fresno St, Fresno, CA 93721, USA",Unknown,https://www.facebook.com/facwatertower/,Fresno +Downing Planetarium,36.81455089999999,-119.7443539,"5320 N Maple Ave, Fresno, CA 93710, USA",(559) 278-4071,http://www.fresnostate.edu/csm/downing-planetarium/,Fresno +Kingdoms Of Asia,36.7519712,-119.8211274,"Fresno, CA 93728, USA",Unknown,Unknown,Fresno +Oso de Oro Park,36.8172875,-119.8296296,"5550 N Forkner Ave, Fresno, CA 93711, USA",(559) 456-3292,http://www.fresnofloodcontrol.org/,Fresno +Inspiration Park,36.8017815,-119.8945606,"5770 W Gettysburg Ave, Fresno, CA 93722, USA",(559) 621-2974,https://www.fresno.gov/parks/,Fresno +Blackbeard's Family Entertainment,36.7913416,-119.7298009,"4055 N Chestnut Diagonal, Fresno, CA 93726, USA",(559) 292-9000,http://www.blackbeards.com/,Fresno +Roeding Park,36.7538733,-119.8225141,"890 W Belmont Ave, Fresno, CA 93728, USA",(559) 621-7529,http://www.fresno.gov/parks,Fresno +Walker Maze,36.7526643,-119.7526,"4333 E Turner Ave, Fresno, CA 93702, USA",Unknown,Unknown,Fresno +Trolley Creek Park,36.73922849999999,-119.7217188,"5100 E Huntington Ave, Fresno, CA 93727, USA",(559) 456-3292,Unknown,Fresno +Alley Mural,36.7318922,-119.7852883,"600 Van Ness Ave, Fresno, CA 93721, USA",Unknown,Unknown,Fresno +Shinzen Friendship Garden Inc.,36.86581849999999,-119.7812127,"114 W Audubon Dr, Fresno, CA 93720, USA",(559) 478-4848,http://www.shinzenjapanesegarden.org/,Fresno +Halo Fountain,36.7364477,-119.7928378,"1232 Fulton St, Fresno, CA 93721, USA",Unknown,Unknown,Fresno +Western Heritage Center,45.78057,-108.5057927,"2822 Montana Ave, Billings, MT 59101, USA",(406) 256-6809,http://www.ywhc.org/,Billings +Pictograph Cave State Park,45.737818,-108.43111,"3401 Coburn Rd, Billings, MT 59101, USA",(406) 254-7342,http://stateparks.mt.gov/pictograph-cave/,Billings +Moss Mansion Museum,45.77965,-108.516024,"914 Division St, Billings, MT 59101, USA",(406) 256-5100,http://www.mossmansion.com/,Billings +Yellowstone Art Museum,45.78584009999999,-108.5071334,"401 N 27th St A, Billings, MT 59101, USA",(406) 256-6804,http://www.artmuseum.org/,Billings +Yellowstone County Museum,45.80240139999999,-108.5376724,"1950 Terminal Cir, Billings, MT 59105, USA",(406) 670-0888,http://www.ycmhistory.org/,Billings +ZooMontana,45.7322656,-108.6206567,"2100 Shiloh Rd, Billings, MT 59106, USA",(406) 652-8100,http://zoomontana.org/,Billings +Riverfront Park,45.74165439999999,-108.5339917,"7277-7337 State Secondary Hwy 416, Billings, MT 59101, USA",(406) 657-8371,http://www.billingsparks.org/park/riverfront/,Billings +Lake Elmo State Park,45.8451514,-108.4813303,"219 Rolling Hills Dr, Billings, MT 59105, USA",(406) 247-2940,http://stateparks.mt.gov/lake-elmo/,Billings +Two Moon Park,45.8091241,-108.4618069,"850 Two Moon Park Rd, Billings, MT 59105, USA",(406) 248-1400,http://www.yrpa.org/parks/two-moon-park/,Billings +Wise Wonders Science and Discovery Museum,45.781042,-108.5096193,"3024 2nd Ave N, Billings, MT 59101, USA",(406) 702-1280,http://www.wisewonders.org/,Billings +Pioneer Park,45.7883819,-108.5253202,"301 Parkhill Dr, Billings, MT 59101, USA",(406) 657-8371,http://www.billingsparks.org/park/pioneer/,Billings +Castle Rock Park,45.82701579999999,-108.5003892,"W Wicks Ln & Nutter Blvd, Billings, MT 59105, USA",(406) 657-8371,http://www.billingsparks.org/park/castlerock/,Billings +Coulson Park,45.7874854,-108.4785261,"Charlene St, Billings, MT 59101, USA",(406) 657-8371,http://www.billingsparks.org/park/coulson/,Billings +Four Dances Recreation Area,45.7771909,-108.4729803,"03092721101010000, Billings, MT 59101, USA",Unknown,Unknown,Billings +Zimmerman Park,45.8051463,-108.6035894,"3314 MT-3, Billings, MT 59106, USA",(406) 657-8371,http://www.billingsparks.org/park-finder/,Billings +Swords Park,45.7992314,-108.5074293,"Swords Park Dr, Billings, MT 59105, USA",(406) 657-8371,http://billingsparks.org/,Billings +Phipps Park,45.8159285,-108.6880515,"6790 Molt Rd, Billings, MT 59106, USA",(406) 657-8371,https://www.billingsparks.org/location/phipps/,Billings +Oasis,45.8078479,-108.4930933,"543 Aronson Ave, Billings, MT 59105, USA",(406) 969-3131,http://billingsoasis.com/,Billings +Shiloh Conservation Area,45.74957240000001,-108.6235351,"1132 Shiloh Rd, Billings, MT 59102, USA",Unknown,Unknown,Billings +Rimrock View Pullout,45.804058,-108.564472,"1701-2029, MT-3, Billings, MT 59106, USA",Unknown,Unknown,Billings +Daytona Boardwalk Amusements,29.2274507,-81.00742509999999,"12 N Ocean Ave., Daytona Beach, FL 32118, USA",(386) 252-8276,http://www.daytonabeachboardwalk.com/,Daytona Beach +Daytona Lagoon,29.2301097,-81.0116836,"601 Earl St, Daytona Beach, FL 32118, USA",(386) 254-5020,http://www.daytonalagoon.com/,Daytona Beach +World's Most Famous Beach,29.2224956,-81.00409859999999,"219 S Atlantic Ave, Daytona Beach, FL 32118, USA",Unknown,Unknown,Daytona Beach +Daytona Beach Main Street Pier,29.2272144,-81.0064355,"1200 Main St Bridge, Daytona Beach, FL 32118, USA",(386) 671-8000,http://www.daytonabeach.com/,Daytona Beach +Sun Splash Park,29.2184652,-81.0038548,"611 S Atlantic Ave, Daytona Beach, FL 32118, USA",(386) 248-8072,http://www.volusia.org/services/public-works/coastal-division/coastal-parks/sun-splash-park.stml,Daytona Beach +Drive On Beach,29.2219658,-81.005736,"Daytona Beach, FL 32118, USA",Unknown,Unknown,Daytona Beach +Welcome to Daytona Beach Sign,29.1911215,-81.07205599999999,"Daytona Beach, FL 32114, USA",Unknown,Unknown,Daytona Beach +Daytona Beach Zipline Adventure By TreeTop Trekking,29.201115,-81.040262,"1000 Orange Ave, Daytona Beach, FL 32114, USA",(386) 882-8016,http://www.daytonazipline.com/,Daytona Beach +Riverfront Park,29.2116717,-81.018586,"60 E Orange Ave, Daytona Beach, FL 32114, USA",Unknown,http://www.riverfrontshopsofdaytona.com/,Daytona Beach +Brownie The Town Dog's Grave and Memorial,29.2087806,-81.01707979999999,"62-94 Orange Ave, Daytona Beach, FL 32114, USA",Unknown,http://browniethetowndog.org/,Daytona Beach +Frank Rendon Park,29.179972,-80.984123,"2705 S Atlantic Ave, Daytona Beach, FL 32118, USA",(386) 248-8072,http://www.volusia.org/services/public-works/coastal-division/coastal-parks/frank-rendon-park.stml,Daytona Beach +Daytona Beach Coquina Clock Tower,29.2294561,-81.00834499999999,"62 N Atlantic Ave, Daytona Beach, FL 32118, USA",Unknown,Unknown,Daytona Beach +Birthplace of Speed Park,29.292524,-81.0396683,"21 Ocean Shore Blvd, Ormond Beach, FL 32176, USA",(386) 676-3250,Unknown,Daytona Beach +Sky Zone Trampoline Park,29.19848,-81.05635960000001,"1300 W International Speedway Blvd, Daytona Beach, FL 32114, USA",(386) 682-2020,https://www.skyzone.com/daytona,Daytona Beach +daytona beach zipline,29.2265579,-81.022117,"721 Ballough Rd, Daytona Beach, FL 32114, USA",Unknown,Unknown,Daytona Beach +Tuscawilla Park,29.1998394,-81.04008309999999,"1000 Orange Ave, Daytona Beach, FL 32114, USA",(386) 671-8337,http://www.sportsvolusia.com/facilities/daytona-beach/tuscawilla.stml,Daytona Beach +Daytona International Speedway,29.185169,-81.070528,"1801 W International Speedway Blvd, Daytona Beach, FL 32114, USA",(800) 748-7467,http://www.daytonainternationalspeedway.com/,Daytona Beach +Pier 11 Aid,29.2271328,-81.0064601,"13 S Atlantic Ave, Daytona Beach, FL 32118, USA",Unknown,Unknown,Daytona Beach +Magic Milk Island Art,29.1657584,-81.083701,"1425 Tomoka Farms Rd, Daytona Beach, FL 32124, USA",(386) 405-6836,http://magicmilkislandart.com/,Daytona Beach +Congo River Golf,29.19864189999999,-80.9948667,"2100 S Atlantic Ave, Daytona Beach, FL 32118, USA",(386) 258-6808,http://www.congoriver.com/,Daytona Beach +Jacksonville Zoo and Gardens,30.40222359999999,-81.6432579,"370 Zoo Pkwy, Jacksonville, FL 32218, USA",(904) 757-4463,http://www.jacksonvillezoo.org/,Jacksonville +Southbank Riverwalk,30.3201479,-81.6564993,"1001 Museum Cir, Jacksonville, FL 32207, USA",(904) 630-2489,http://downtownjacksonville.org/locations/l-100-southbank-riverwalk.aspx,Jacksonville +MOSH (Museum Of Science & History),30.31886519999999,-81.65976669999999,"1025 Museum Cir, Jacksonville, FL 32207, USA",(904) 396-6674,http://themosh.org/,Jacksonville +Tree Hill Nature Center,30.3334246,-81.58278620000002,"7152 Lone Star Rd, Jacksonville, FL 32211, USA",(904) 724-4646,http://www.treehill.org/,Jacksonville +Kingsley Plantation,30.43989019999999,-81.43780919999999,"11676 Palmetto Ave, Jacksonville, FL 32226, USA",(904) 251-3537,https://www.nps.gov/timu/learn/historyculture/kp_visiting.htm,Jacksonville +Kathryn Abbey Hanna Park,30.37092519999999,-81.4067718,"500 Wonderwood Dr, Jacksonville, FL 32233, USA",(904) 255-6767,http://www.coj.net/departments/parks-and-recreation/recreation-and-community-programming/kathryn-abbey-hanna-park.aspx,Jacksonville +Castaway Island Preserve,30.2961292,-81.4376879,"2885 San Pablo Rd S, Jacksonville, FL 32225, USA",(904) 630-2489,https://www.timucuanparks.org/castaway-island-preserve/,Jacksonville +Jacksonville Arboretum & Botanical Gardens,30.3461357,-81.5397758,"1445 Millcoe Rd, Jacksonville, FL 32225, USA",(904) 318-4342,http://www.jacksonvillearboretum.org/,Jacksonville +Fort George Island Cultural State Park,30.42393759999999,-81.43133209999999,"12241 Fort George Rd, Jacksonville, FL 32226, USA",(904) 251-2320,https://www.floridastateparks.org/parks-and-trails/fort-george-island-cultural-state-park,Jacksonville +Cummer Museum of Art & Gardens,30.31513780000001,-81.6769552,"829 Riverside Ave, Jacksonville, FL 32204, USA",(904) 356-6857,http://www.cummermuseum.org/,Jacksonville +James Weldon Johnson Park,30.328937,-81.659251,"135 W Monroe St, Jacksonville, FL 32202, USA",(904) 515-5098,https://jamesweldonjohnsonpark.org/events/,Jacksonville +The Catty Shack Ranch Wildlife Sanctuary,30.4931781,-81.58749159999999,"1860 Starratt Rd, Jacksonville, FL 32226, USA",(904) 757-3603,https://cattyshack.org/,Jacksonville +Shipwreck Island Water Park,30.2874387,-81.4117421,"1944 Beach Blvd, Jacksonville Beach, FL 32250, USA",(904) 246-4386,https://jacksonville-beach.adventurelanding.com/attractions/shipwreck-island-waterpark/,Jacksonville +Beaches Museum,30.2885577,-81.39276009999999,"381 Beach Blvd, Jacksonville Beach, FL 32250, USA",(904) 241-5657,http://beachesmuseum.org/,Jacksonville +"MOCA (Museum Of Contemporary Art), Jacksonville",30.3292778,-81.65840829999999,"333 N Laura St, Jacksonville, FL 32202, USA",(904) 366-6911,http://mocajacksonville.unf.edu/,Jacksonville +Huguenot Memorial Park,30.4110088,-81.4204882,"10980 Heckscher Dr, Jacksonville, FL 32226, USA",(904) 255-4255,http://www.coj.net/departments/parks-and-recreation/recreation-and-community-programming/huguenot-memorial-park.aspx,Jacksonville +Timucuan Ecological and Historical Preserve,30.4544578,-81.4498717,"12713 Ft Caroline Rd, Jacksonville, FL 32225, USA",(904) 641-7155,https://www.nps.gov/timu/index.htm,Jacksonville +Walter Jones Historic Park,30.1653631,-81.64645589999999,"11964 Mandarin Rd, Jacksonville, FL 32223, USA",(904) 268-0784,http://www.mandarinmuseum.net/visit/walter-jones-historical-park,Jacksonville +Museum of Southern History,30.2829643,-81.71375309999999,"4304 Herschel St, Jacksonville, FL 32210, USA",(904) 750-1950,https://www.museumsouthernhistory.com/,Jacksonville +Friendship Fountain,30.32001820000001,-81.65982029999999,"1015 Museum Cir, Jacksonville, FL 32207, USA",(904) 630-2489,http://www.coj.net/departments/parks-and-recreation/recreation-and-community-programming/parks/friendship-fountain,Jacksonville +Liberty Park,40.74570449999999,-111.8739202,"600 Harvey Milk Blvd, Salt Lake City, UT 84105, USA",(801) 972-7800,https://www.slc.gov/parks/parks-division/liberty-park/,Salt Lake City +Natural History Museum of Utah,40.7641297,-111.8226881,"301 Wakara Way, Salt Lake City, UT 84108, USA",(801) 581-6927,http://nhmu.utah.edu/,Salt Lake City +Temple Square,40.7707425,-111.8910709,"50 North Temple, Salt Lake City, UT 84150, USA",(801) 240-8945,https://www.churchofjesuschrist.org/feature/templesquare?lang=eng&y_source=1_MzA1ODU2NjYtNzE1LWxvY2F0aW9uLndlYnNpdGU%3D,Salt Lake City +Tracy Aviary & Botanical Gardens,40.7438995,-111.8751663,"589 E 1300 S, Salt Lake City, UT 84105, USA",(801) 596-8500,http://www.tracyaviary.org/,Salt Lake City +Utah State Capitol,40.7774076,-111.8881773,"350 State St, Salt Lake City, UT 84103, USA",Unknown,https://utahstatecapitol.utah.gov/,Salt Lake City +Memory Grove Park,40.7775333,-111.8843194,"300 N Canyon Rd, Salt Lake City, UT 84103, USA",(801) 972-7800,https://www.slc.gov/parks/parks-division/memory-grove/,Salt Lake City +Red Butte Garden,40.7661478,-111.8247707,"300 Wakara Way, Salt Lake City, UT 84108, USA",(801) 585-0556,http://www.redbuttegarden.org/,Salt Lake City +Gilgal Sculpture Garden,40.75880859999999,-111.8693781,"749 E 500 S, Salt Lake City, UT 84102, USA",(801) 972-7860,http://gilgalgarden.org/,Salt Lake City +Clark Planetarium,40.7666699,-111.9033733,"110 400 W, Salt Lake City, UT 84101, USA",(385) 468-7827,https://slco.org/clark-planetarium/,Salt Lake City +Discovery Gateway Children's Museum,40.76736449999999,-111.9039348,"444 W 100 S, Salt Lake City, UT 84101, USA",(801) 456-5437,http://www.discoverygateway.org/,Salt Lake City +Pioneer Memorial Museum,40.77670559999999,-111.8911293,"300 N Main St, Salt Lake City, UT 84103, USA",(801) 532-6479,http://www.dupinternational.org/,Salt Lake City +City Creek Park,40.7721245,-111.8877862,"350 State St, Salt Lake City, UT 84103, USA",(801) 972-7860,https://www.slc.gov/parks/parks-division/city-creek-park/,Salt Lake City +This Is The Place Heritage Park,40.7526353,-111.8158093,"2601 Sunnyside Ave S, Salt Lake City, UT 84108, USA",(801) 582-1847,http://www.thisistheplace.org/,Salt Lake City +Sugar House Park,40.723877,-111.8493998,"1330 2100 S, Salt Lake City, UT 84106, USA",(385) 468-7275,http://www.sugarhousepark.org/,Salt Lake City +The Leonardo,40.7589309,-111.8845602,"209 E 500 S, Salt Lake City, UT 84111, USA",(801) 531-9800,http://www.theleonardo.org/,Salt Lake City +Washington Square Park,40.7594963,-111.8875681,"451 S State St, Salt Lake City, UT 84111, USA",(801) 972-7800,http://www.slcgov.com/cityparks/parks-washington-square-park,Salt Lake City +Hogle Zoo,40.7503666,-111.8141741,"2600 Sunnyside Ave S, Salt Lake City, UT 84108, USA",(801) 584-1700,https://www.hoglezoo.org/,Salt Lake City +Utah Museum of Contemporary Art,40.76834609999999,-111.8947354,"20 S W Temple St, Salt Lake City, UT 84101, USA",(801) 328-4201,http://www.utahmoca.org/,Salt Lake City +Pony Express National Historic Trail,40.7522625,-111.8200551,"2423-2599 Sunnyside Ave S, Salt Lake City, UT 84108, USA",(505) 988-6098,https://www.nps.gov/poex/index.htm,Salt Lake City +Lumaze,40.7743213,-111.9244116,"1095 Motor Ave, Salt Lake City, UT 84116, USA",Unknown,Unknown,Salt Lake City +Texas State Aquarium,27.813759,-97.3919688,"2710 N Shoreline Blvd, Corpus Christi, TX 78402, USA",(361) 881-1200,http://www.texasstateaquarium.org/,Corpus Christi +South Texas Botanical Gardens & Nature Center,27.6525278,-97.4068597,"8545 S Staples St, Corpus Christi, TX 78413, USA",(361) 852-2100,https://stxbot.org/,Corpus Christi +The Art Museum of South Texas,27.8102129,-97.3929157,"1902 N Shoreline Blvd, Corpus Christi, TX 78401, USA",(361) 825-3500,http://www.artmuseumofsouthtexas.org/,Corpus Christi +USS Lexington,27.8150729,-97.3887026,"2914 N Shoreline Blvd, Corpus Christi, TX 78402, USA",(361) 888-4873,https://www.usslexington.com/,Corpus Christi +Selena Museum,27.7981622,-97.4612901,"5410 Leopard St, Corpus Christi, TX 78408, USA",(361) 289-9013,https://q-productions.com/,Corpus Christi +Viewpoint of the Flower,27.796656,-97.3909948,"600 N Shoreline Blvd, Corpus Christi, TX 78401, USA",Unknown,https://www.visitcorpuschristitx.org/see-and-do/1373/selena-memorial-mirador-de-la-flor-overlook-of-the-flower,Corpus Christi +Mustang Island State Park,27.67284739999999,-97.1765566,"9394 TX-361, Corpus Christi, TX 78418, USA",(361) 749-5246,http://www.tpwd.state.tx.us/state-parks/parks/find-a-park/mustang-island-state-park,Corpus Christi +Texas Sealife Center,27.6253434,-97.2214337,"14220 S Padre Island Dr, Corpus Christi, TX 78418, USA",(361) 589-4023,http://www.texassealifecenter.org/,Corpus Christi +Corpus Christi Museum of Science and History,27.8100921,-97.3952857,"1900 N Chaparral St, Corpus Christi, TX 78401, USA",(361) 826-4667,http://www.ccmuseum.com/,Corpus Christi +Bayfront Park,27.8064246,-97.3924947,"1513-1517 N Shoreline Blvd, Corpus Christi, TX 78401, USA",(361) 826-7529,http://www.cctexas.com/,Corpus Christi +Packery Channel Park,27.62617869999999,-97.221344,"Packary Channel Park, 14218 S Padre Island Dr, Corpus Christi, TX 78418, USA",(361) 949-7004,Unknown,Corpus Christi +Padre Balli Park,27.5851138,-97.2194982,"15820 Park Rd 22, Corpus Christi, TX 78418, USA",(361) 949-8121,https://www.nuecesbeachparks.com/padre-balli-park,Corpus Christi +Ropes Park,27.753858,-97.3766112,"3502 Ocean Dr, Corpus Christi, TX 78411, USA",(361) 826-7529,https://naturerockscoastalbend.org/greenspace/ropes-park,Corpus Christi +Watergarden,27.8086704,-97.3957592,"1700 N Chaparral St, Corpus Christi, TX 78401, USA",Unknown,Unknown,Corpus Christi +Corpus Christi bayfront,27.7176047,-97.3289286,"Ocean Dr, Corpus Christi, TX 78412, USA",Unknown,Unknown,Corpus Christi +The pilings,27.4916642,-97.2667089,"S Padre Island Dr, Corpus Christi, TX 78418, USA",Unknown,Unknown,Corpus Christi +Chancla Tree,27.8209622,-97.3876777,"221 S Hotel Pl, Corpus Christi, TX 78402, USA",Unknown,Unknown,Corpus Christi +Selena Memorial Statue,27.79664759999999,-97.3910146,"600 N Shoreline Blvd, Corpus Christi, TX 78401, USA",Unknown,https://www.visitcorpuschristitx.org/see-and-do/1373/selena-memorial-mirador-de-la-flor-overlook-of-the-flower,Corpus Christi +Artesian Park,27.7996007,-97.3944475,"524 Twigg St, Corpus Christi, TX 78401, USA",Unknown,https://www.nps.gov/places/artesian-park.htm,Corpus Christi +Oleander Point at Cole Park,27.7683645,-97.3853211,"S Shoreline Blvd, Corpus Christi, TX 78401, USA",Unknown,https://topbrunchspots.com/attractions/oleander-point-at-cole-park-corpus-christi-texas/,Corpus Christi +Piazza della Signoria,43.7696855,11.2556422,"P.za della Signoria, 50122 Firenze FI, Italy",Unknown,Unknown,Florence +Cathedral of Santa Maria del Fiore,43.77314499999999,11.2559602,"Piazza del Duomo, 50122 Firenze FI, Italy",055 230 2885,https://duomo.firenze.it/it/scopri/cattedrale-di-santa-maria-del-fiore,Florence +Basilica of Santa Croce in Florence,43.7685683,11.2622677,"Piazza di Santa Croce, 16, 50122 Firenze FI, Italy",055 200 8789,http://www.santacroceopera.it/,Florence +Ponte Vecchio,43.76792500000001,11.2531435,"Ponte Vecchio, 50125 Firenze FI, Italy",Unknown,Unknown,Florence +Piazzale Michelangelo,43.7629314,11.2650561,"Piazzale Michelangelo, 50125 Firenze FI, Italy",Unknown,Unknown,Florence +The Boboli Gardens,43.76249719999999,11.2483996,"Piazza de' Pitti, 1, 50125 Firenze FI, Italy",055 23885,https://www.uffizi.it/giardino-boboli/,Florence +Uffizi Gallery,43.7677856,11.2553108,"Piazzale degli Uffizi, 6, 50122 Firenze FI, Italy",055 294883,https://www.uffizi.it/gli-uffizi,Florence +Loggia dei Lanzi,43.7691899,11.2555334,"P.za della Signoria, 50121 Firenze FI, Italy",055 23885,https://www.uffizi.it/video/la-loggia-de-lanzi,Florence +Palazzo Vecchio,43.7693012,11.2561509,"P.za della Signoria, 50122 Firenze FI, Italy",055 276 8325,https://cultura.comune.fi.it/pagina/musei-civici-fiorentini/museo-di-palazzo-vecchio,Florence +Giotto's Bell Tower,43.7730133,11.2550615,"Cattedrale di Santa Maria del Fiore, Piazza del Duomo, 50122 Firenze FI, Italy",055 230 2885,http://ilgrandemuseodelduomo.it/#campanile,Florence +Basilica of Santa Maria Novella,43.77463460000001,11.2493859,"P.za di Santa Maria Novella, 18, 50123 Firenze FI, Italy",055 219257,https://www.smn.it/it/,Florence +Bargello National Museum,43.7703981,11.2580078,"Via del Proconsolo, 4, 50122 Firenze FI, Italy",055 064 9440,http://www.bargellomusei.beniculturali.it/,Florence +The Baptistery of St. John,43.77311539999999,11.2550232,"Piazza San Giovanni, 50122 Firenze FI, Italy",055 230 2885,http://www.operaduomo.firenze.it/,Florence +Pitti Palace,43.7651533,11.2500081,"Piazza de' Pitti, 1, 50125 Firenze FI, Italy",055 294883,https://www.uffizi.it/palazzo-pitti,Florence +Opera del Duomo Museum,43.7731722,11.2577573,"Piazza del Duomo, 9, 50122 Firenze FI, Italy",055 230 2885,https://duomo.firenze.it/,Florence +Basilica di San Miniato,43.7594184,11.2649796,"Via delle Porte Sante, 34, 50125 Firenze FI, Italy",055 234 2731,http://www.sanminiatoalmonte.it/,Florence +Piazza del Duomo,43.7730912,11.2554649,"Piazza del Duomo, 50122 Firenze FI, Italy",Unknown,Unknown,Florence +Piazza della Repubblica,43.77142629999999,11.254019,"Piazza della Repubblica, 50123 Firenze FI, Italy",Unknown,Unknown,Florence +Cappelle Medicee,43.7750913,11.2533903,"Piazza di Madonna degli Aldobrandini, 6, 50123 Firenze FI, Italy",055 064 9430,http://www.bargellomusei.beniculturali.it/musei/2/medicee/,Florence +David of Michelangelo,43.7767194,11.2593217,"Via Ricasoli, 60, 50122 Firenze FI, Italy",055 294883,https://www.galleriaaccademiafirenze.it/opere/david-michelangelo/,Florence +Moab Museum,38.5730959,-109.5483139,"118 E Center St, Moab, UT 84532, USA",(435) 259-7985,http://www.moabmuseum.org/,Moab +Dead Horse Point State Park,38.50542669999999,-109.7294241,"UT-313, Moab, UT 84532, USA",(800) 322-3770,https://stateparks.utah.gov/parks/dead-horse/,Moab +Corona Arch,38.5799139,-109.6200579,"Moab, UT 84532, USA",Unknown,https://www.blm.gov/visit/corona-arch-trail,Moab +Rotary Park,38.56493029999999,-109.5372838,"680 S Mill Creek Dr, Moab, UT 84532, USA",(435) 259-5121,https://moabcity.org/Facilities/Facility/Details/City-ParksRotary-Park-33,Moab +Moab Jett,38.5794136,-109.5517051,"50 W 400 N, Moab, UT 84532, USA",(435) 259-5538,http://www.moabjett.com/,Moab +Moab Jeep Adventure,38.58941830000001,-109.5616176,"Main St, Moab, UT 84532, USA",(844) 836-5337,https://www.moabjeepadventure.com/,Moab +Little Arch,38.56358829999999,-109.5858222,"Moab, UT 84532, USA",Unknown,http://www.utaharches.com/MA/littlearch.html,Moab +Lion's Back,38.5793726,-109.5301402,"Sand Flats Rd, Moab, UT 84532, USA",Unknown,Unknown,Moab +Double Arch,38.69161700000001,-109.5403916,"The Windows Rd, Moab, UT 84532, USA",Unknown,https://www.nps.gov/arch/index.htm,Moab +Moab Cowboy Off-Road Adventures,38.57187409999999,-109.550584,"97 S Main St, Moab, UT 84532, USA",(435) 220-0746,http://moabcowboy.com/,Moab +Moab Giants,38.671717,-109.686672,"112 UT-313, Moab, UT 84532, USA",(435) 355-0288,http://moabgiants.com/,Moab +Swanny City Park,38.5782061,-109.5537433,"400 N 100 W, Moab, UT 84532, USA",(435) 259-5121,http://www.moabcity.org/facilities/facility/details/City-ParksSwanny-City-Park-1,Moab +Sand Flats Recreation Area,38.5764609,-109.5186506,"Sand Flats Rd, Moab, UT 84532, USA",(435) 259-2444,http://www.sandflats.net/,Moab +Hole 'N' The Rock,38.39080939999999,-109.4542852,"11037 S Hwy 191, Moab, UT 84532, USA",(435) 686-2250,http://www.theholeintherock.com/,Moab +Morning Glory Arch,38.5935462,-109.508826,"HFVR+CF, Moab, UT 84532, USA",Unknown,Unknown,Moab +Courthouse Wash Rock Art,38.60714979999999,-109.5812294,"Moab Canyon Pathway, Moab, UT 84532, USA",Unknown,http://www.nps.gov/arch/learn/historyculture/courthouse-wash.htm,Moab +Sand Dune Arch,38.7642937,-109.5811041,"Arches Nat'l Pk Rd, Moab, UT 84532, USA",(435) 719-2299,http://www.nps.gov/arch/index.htm,Moab +Slickrock Bike Trail,38.58166669999999,-109.5194444,"Parking lot, Sand Flats Rd, Moab, UT 84532, USA",(435) 259-2444,http://grandcountyutah.net/287/Sand-Flats-Recreation-Area,Moab +Balanced Rock,38.7012882,-109.5645496,"Arches Scenic Dr, Moab, UT 84532, USA",(435) 719-2299,https://www.nps.gov/arch/index.htm,Moab +Arches National Park,38.733081,-109.5925139,"Utah, USA",(435) 719-2299,https://www.nps.gov/arch/index.htm,Moab +Splashers of the South Seas,47.9123889,-97.0903143,"1000 S 42nd St, Grand Forks, ND 58201, USA",(701) 772-8404,https://www.canadinns.com/play/splashers-of-the-south-seas/,Grand Forks +Grand Forks County Historical Society,47.8965054,-97.0276718,"2405 Belmont Rd, Grand Forks, ND 58201, USA",(701) 775-2216,http://grandforkshistory.com/,Grand Forks +Sertoma Park,47.9103473,-97.0754872,"3300 11th Ave S, Grand Forks, ND 58201, USA",(701) 746-2750,http://www.gfparks.org/parks-facilities/parks/sertoma-japanese-garden/,Grand Forks +North Dakota Museum of Art,47.9190627,-97.0737684,"261 Centennial Dr, Grand Forks, ND 58202, USA",(701) 777-4195,http://www.ndmoa.com/,Grand Forks +Lincoln Drive Park,47.91006429999999,-97.01977,"120 Euclid Ave, Grand Forks, ND 58201, USA",(701) 746-2750,http://www.gfparks.org/parks-facilities/parks/lincoln-drive/,Grand Forks +Sherlock Park,47.9332066,-97.0271106,"919 5th Ave NW, East Grand Forks, MN 56721, USA",Unknown,http://www.egf.mn/,Grand Forks +Heritage Village,47.9451489,-97.0156444,"219 20th St NE, East Grand Forks, MN 56721, USA",(218) 779-3034,http://www.egfheritage.com/,Grand Forks +Welcome to Minnesota Sign - East Grand Forks,47.9330996,-97.0384658,"1402 Lewis Blvd, Grand Forks, ND 58203, USA",Unknown,Unknown,Grand Forks +Japanese Gardens,47.9105742,-97.07485,"3300 11th Ave S, Grand Forks, ND 58201, USA",(701) 746-2750,https://www.gfparks.org/parks-facilities/parks/sertoma-japanese-garden/,Grand Forks +Northern Air Action Park,47.89048809999999,-97.0500894,"1600 32nd Ave S, Grand Forks, ND 58201, USA",(701) 757-4386,https://northernairactionpark.com/,Grand Forks +Masonic Park,47.88298100000001,-97.056511,"1950 40th Ave S, Grand Forks, ND 58201, USA",(701) 746-2750,http://www.gfparks.org/parks-facilities/parks/masonic/,Grand Forks +Kiwanis Park,47.883139,-97.076146,"4000 Ruemmele Rd, Grand Forks, ND 58201, USA",(701) 746-2750,http://gfparks.org/,Grand Forks +Exchange Club Park,47.9269687,-97.0830175,"3702 6th Ave N, Grand Forks, ND 58203, USA",(701) 746-2775,http://www.gfparks.org/parks-facilities/parks/exchange-club/,Grand Forks +Grand Forks Park District,47.876466,-97.0417302,"1060 47th Ave S, Grand Forks, ND 58201, USA",(701) 746-2750,http://www.gfparks.org/,Grand Forks +Elks Park,47.9099946,-97.0408679,"1002 13th Ave S, Grand Forks, ND 58201, USA",(701) 746-2781,http://www.gfparks.org/parks-facilities/parks/elks/,Grand Forks +Downtown Grand Forks Historic District,47.9244448,-97.0315254,"3 N 4th St, Grand Forks, ND 58203, USA",(701) 757-4051,http://downtownforks.com/,Grand Forks +Grand Forks County Fairgrounds WPA Structures,47.9343724,-97.0613958,"2300 Gateway Dr, Grand Forks, ND 58203, USA",(701) 330-1238,http://www.grandforksfair.com/,Grand Forks +Alley Of Love,47.9242022,-97.030199,"19 S 4th St, Grand Forks, ND 58201, USA",Unknown,Unknown,Grand Forks +Bringewatt Park,47.8957033,-97.0579793,"2205 24th Ave S, Grand Forks, ND 58201, USA",(701) 746-2785,https://www.gfparks.org/parks-facilities/parks/bringewatt/,Grand Forks +Riverside Park,47.9396446,-97.0437271,"Grand Forks, ND 58203, USA",Unknown,https://www.gfparks.org/parks-facilities/parks/riverside/,Grand Forks +SkyJump,36.1476134,-115.1563965,"2000 Las Vegas Blvd S, Las Vegas, NV 89104, USA",(702) 380-7777,https://www.thestrat.com/attractions/skyjump?utm_source=gmb&utm_medium=yext,Las Vegas +Madame Tussauds Las Vegas,36.12123,-115.1714421,"3377 S Las Vegas Blvd Ste. 2001, Las Vegas, NV 89109, USA",(702) 862-7800,http://www.madametussauds.com/lasvegas/,Las Vegas +Gondola Rides at the Venetian,36.12251250000001,-115.1705971,"3355 S Las Vegas Blvd, Las Vegas, NV 89109, USA",(702) 414-4300,http://www.venetian.com/Las-Vegas-Activities/Gondola-Rides/,Las Vegas +The Mob Museum,36.17281979999999,-115.1412395,"300 Stewart Ave, Las Vegas, NV 89101, USA",(702) 229-2734,https://themobmuseum.org/,Las Vegas +Eiffel Tower Viewing Deck,36.1124833,-115.1725102,"3655 Las Vegas Blvd S, Las Vegas, NV 89109, USA",(888) 727-4758,https://www.caesars.com/paris-las-vegas/things-to-do/eiffel-tower?utm_campaign=google&utm_source=google&utm_medium=local&utm_term=PLV15&utm_content=attractions&y_source=1_NDM2Njg4OC03MTUtbG9jYXRpb24ud2Vic2l0ZQ%3D%3D,Las Vegas +Big Shot,36.1478535,-115.1555127,"2000 S Las Vegas Blvd, Las Vegas, NV 89104, USA",(702) 383-5210,https://thestrat.com/attractions/thrill-rides/big-shot,Las Vegas +Fremont Street Experience,36.1707275,-115.1438229,"E Fremont St, Las Vegas, NV 89101, USA",(702) 678-5600,https://vegasexperience.com/?utm_source=google&utm_medium=organic&utm_campaign=GMB,Las Vegas +High Roller,36.1176324,-115.168294,"3545 S Las Vegas Blvd, Las Vegas, NV 89109, USA",(855) 234-7469,https://www.caesars.com/linq/things-to-do/attractions/high-roller?utm_campaign=GMB&utm_source=google&utm_medium=local&utm_term=HighRoller&utm_content=attractions&y_source=1_NDM2Njg1NS03MTUtbG9jYXRpb24ud2Vic2l0ZQ==,Las Vegas +The Neon Museum Las Vegas,36.1769882,-115.1353374,"770 Las Vegas Blvd N, Las Vegas, NV 89101, USA",(702) 387-6366,https://www.neonmuseum.org/,Las Vegas +Las Vegas Natural History Museum,36.17987099999999,-115.133864,"900 Las Vegas Blvd N, Las Vegas, NV 89101, USA",(702) 384-3466,http://www.lvnhm.org/,Las Vegas +Observation Deck,36.1476622,-115.1556113,"2000 Las Vegas Blvd S, Las Vegas, NV 89104, USA",(702) 380-7777,https://www.thestrat.com/attractions/skypod?utm_source=gmb&utm_medium=yext,Las Vegas +Las Vegas Boulevard Gateway Arches,36.1465596,-115.1555113,"1998 S Las Vegas Blvd, Las Vegas, NV 89104, USA",Unknown,https://www.lasvegasnevada.gov/News/Blog/Detail/las-vegas-boulevard-arches,Las Vegas +Lake of Dreams,36.12630439999999,-115.1670561,"3131 Las Vegas Blvd S, Las Vegas, NV 89109, USA",(702) 770-7000,https://www.wynnlasvegas.com/entertainment/lake-of-dreams,Las Vegas +Shark Reef Aquarium at Mandalay Bay,36.0887734,-115.1764706,"3950 S Las Vegas Blvd, Las Vegas, NV 89119, USA",(702) 632-4555,https://mandalaybay.mgmresorts.com/en/entertainment/shark-reef-aquarium.html,Las Vegas +AREA15,36.1317582,-115.1815485,"3215 S Rancho Dr, Las Vegas, NV 89102, USA",Unknown,https://www.area15.com/,Las Vegas +SlotZilla Zipline Las Vegas,36.16948659999999,-115.1412718,"425 Fremont St #160, Las Vegas, NV 89101, USA",(702) 678-5780,https://vegasexperience.com/slotzilla-zip-line/?utm_campaign=yext,Las Vegas +Springs Preserve,36.1693608,-115.1906908,"333 S Valley View Blvd, Las Vegas, NV 89107, USA",(702) 822-7700,http://www.springspreserve.org/,Las Vegas +Vegas Vic - Famous Neon Cowboy Sign,36.1711237,-115.1453502,"25 Fremont St, Las Vegas, NV 89101, USA",Unknown,http://www.lasvegasnevada.gov/portal/faces/home?_afrLoop=938201264872392&_afrWindowMode=0&_afrWindowId=null#%40%3F_afrWindowId%3Dnull%26_afrLoop%3D938201264872392%26_afrWindowMode%3D0%26_adf.ctrl-state%3D172clwwgtk_29,Las Vegas +Zak Bagans' The Haunted Museum,36.1583841,-115.1457007,"600 E Charleston Blvd, Las Vegas, NV 89104, USA",(702) 444-0744,https://thehauntedmuseum.com/,Las Vegas +Welcome to Fabulous Las Vegas Sign,36.0820727,-115.172779,"5100 Las Vegas Blvd S, Las Vegas, NV 89119, USA",(702) 533-9112,Unknown,Las Vegas +Pioneer Park,64.83903149999999,-147.7740312,"2300 Airport Way, Fairbanks, AK 99701, USA",(907) 459-1087,http://www.pioneerpark.us/,Fairbanks +Fountainhead Antique Auto Museum,64.8604433,-147.7137352,"212 Wedgewood Dr, Fairbanks, AK 99701, USA",(907) 450-2100,http://www.fountainheadmuseum.com/,Fairbanks +Museum of the North,64.85848469999999,-147.8423214,"1962 Yukon Dr, Fairbanks, AK 99775, USA",(907) 474-7505,http://www.uaf.edu/museum/,Fairbanks +Fairbanks Ice Museum,64.84378,-147.7181643,"500 2nd Ave, Fairbanks, AK 99701, USA",(907) 451-8222,http://icemuseum.com/,Fairbanks +Morris Thompson Cultural & Visitors Center,64.8460029,-147.7127243,"101 Dunkel St, Fairbanks, AK 99701, USA",(907) 459-3700,http://www.morristhompsoncenter.org/,Fairbanks +Moose Antler Arch,64.8464242,-147.7139601,"Fairbanks, AK 99701, USA",Unknown,https://www.morristhompsoncenter.org/antler-arch-is-gateway-to-downtown-fairbanks/,Fairbanks +Pioneer Air Museum,64.83946929999999,-147.7750963,"2300 Airport Way, Fairbanks, AK 99701, USA",(907) 451-0037,https://www.pioneerair.museum/,Fairbanks +Fairbanks Children's Museum,64.8425,-147.7216667,"302 Cushman St Suite 101, Fairbanks, AK 99701, USA",(907) 374-6873,http://www.fairbankschildrensmuseum.com/,Fairbanks +Friends of Creamers Field at Creamer's Field Migratory Waterfowl Refuge,64.8628622,-147.7384242,"1300 College Rd, Fairbanks, AK 99701, USA",(907) 978-8457,https://friendsofcreamersfield.org/,Fairbanks +Golden Heart Plaza,64.8442973,-147.7196799,"516 1st Ave #500, Fairbanks, AK 99701, USA",Unknown,http://www.alaska.org/detail/golden-heart-plaza,Fairbanks +Fairbanks Community Museum,64.84308159999999,-147.719517,"535 2nd Ave #215, Fairbanks, AK 99701, USA",(907) 457-3669,http://fairbankshistorymuseum.com/,Fairbanks +Wedgewood Wildlife Sanctuary,64.8615864,-147.7136744,"212 Wedgewood Dr, Fairbanks, AK 99701, USA",(907) 452-1442,https://www.alaska.org/detail/fountainhead-wedgewood-wildlife-sanctuary,Fairbanks +Alyeska Pipeline / Viewing Point,64.92954139999999,-147.6297414,"1671 Steese Hwy, Fairbanks, AK 99712, USA",Unknown,Unknown,Fairbanks +Alaska Range Overlook,64.8578082,-147.8356157,"Fairbanks, AK 99709, USA",Unknown,Unknown,Fairbanks +Lend Lease Monument,64.8453246,-147.7170001,"360 Wendell Ave, Fairbanks, AK 99701, USA",Unknown,Unknown,Fairbanks +Fun-Time Park,64.8559005,-147.8062415,"3440-3460 Shanly St, Fairbanks, AK 99709, USA",(907) 459-1070,Unknown,Fairbanks +Pioneer Museum,64.83923469999999,-147.7708045,"2300 Airport Way bldg 1, Fairbanks, AK 99701, USA",(907) 456-8579,https://pioneersofalaskafairbanks.org/pioneer-museum,Fairbanks +Denali Mural,64.84239769999999,-147.7205137,"321 Cushman St, Fairbanks, AK 99701, USA",Unknown,Unknown,Fairbanks +Explore Fairbanks,64.8458333,-147.7122222,"101 Dunkel St #111, Fairbanks, AK 99701, USA",(907) 456-5774,http://www.explorefairbanks.com/,Fairbanks +Graehl Park,64.845714,-147.7056026,"212 Front St, Fairbanks, AK 99701, USA",Unknown,Unknown,Fairbanks +Petersburg National Battlefield,37.2285701,-77.3662362,"Petersburg, VA 23803, USA",(804) 732-3531,http://www.nps.gov/pete/,Petersburg +Centre Hill Mansion-Museum,37.23067,-77.401235,"1 Centre Hill Ave, Petersburg, VA 23803, USA",(804) 733-2401,http://www.museumsofpetersburg.com/,Petersburg +Pamplin Historical Park,37.1876199,-77.4788123,"6125 Boydton Plank Rd, Petersburg, VA 23803, USA",(804) 861-2408,https://www.pamplinpark.org/,Petersburg +Petersburg National Battlefield Park Trailhead,37.2438545,-77.3568983,"5001 Siege Rd, Petersburg, VA 23804, USA",(804) 732-3531 ext. 0,http://www.nps.gov/pete/index.htm,Petersburg +Soldier Statue,37.2122022,-77.39752899999999,"1529-1517, US-301 ALT, Petersburg, VA 23805, USA",Unknown,Unknown,Petersburg +Legends Park,37.1972663,-77.4085149,"1614 Defense Rd, Petersburg, VA 23805, USA",(804) 733-2394,http://www.petersburgva.gov/Facilities/Facility/Details/Lee-Memorial-Park-1,Petersburg +Tavern Park,37.2331572,-77.40770859999999,"Petersburg, VA 23803, USA",Unknown,Unknown,Petersburg +Battersea Foundation,37.22556589999999,-77.4283433,"1289 Upper Appomattox St, Petersburg, VA 23803, USA",(804) 732-9882,http://www.batterseafound.org/,Petersburg +General Lee's Headquarters Historical Marker,37.2266252,-77.41056619999999,"Petersburg, VA 23803, USA",Unknown,https://www.hmdb.org/m.asp?m=17544,Petersburg +The Exchange Building and Petersburg Visitors Center,37.2320535,-77.4054209,"15 W Bank St, Petersburg, VA 23803, USA",(804) 835-9630,Unknown,Petersburg +Poplar Grove National Cemetery,37.16008619999999,-77.42825479999999,"8005 Vaughan Rd, Petersburg, VA 23805, USA",(804) 861-2488,https://www.nps.gov/pete/learn/historyculture/poplar-grove-national-cemetery.htm,Petersburg +"Graffiti Art ""Mechanical Wings""",37.2320632,-77.40432659999999,"9 E Bank St, Petersburg, VA 23803, USA",Unknown,Unknown,Petersburg +Peter Jones Trading Station,37.232898,-77.4074393,"600-698 N Market St, Petersburg, VA 23803, USA",(800) 313-1434,http://www.historicpetersburg.org/peter-jones-trading-station/,Petersburg +Blandford Church and Cemetery Visitor's Center,37.2266646,-77.38802930000001,"111 Rochelle Ln, Petersburg, VA 23803, USA",(804) 733-2396,Unknown,Petersburg +Petersburg Legends Historical Park and Nature Sanctuary,37.1972663,-77.4085149,"1614 Defense Rd, Petersburg, VA 23805, USA",Unknown,Unknown,Petersburg +Poplar Lawn Historic District,37.22237229999999,-77.4010933,"Petersburg, VA 23803, USA",Unknown,Unknown,Petersburg +Tombstone House,37.2021713,-77.4264426,"1736 Youngs Rd, Petersburg, VA 23803, USA",Unknown,Unknown,Petersburg +Violet Bank Museum,37.241899,-77.40512269999999,"303 Virginia Ave, Colonial Heights, VA 23834, USA",(804) 520-9395,https://www.colonialheightsva.gov/499/Violet-Bank,Petersburg +Matoax Park Trailhead,37.2383386,-77.40160449999999,"Petersburg, VA 23803, USA",Unknown,Unknown,Petersburg +Ettrick Park,37.2449544,-77.4293184,"20400 Laurel Rd, Petersburg, VA 23803, USA",(804) 706-2596,Unknown,Petersburg +Old Cowtown Museum,37.6934566,-97.359507,"1865 Museum Blvd, Wichita, KS 67203, USA",(316) 350-3323,https://www.oldcowtown.org/Pages/default.aspx,Wichita +Exploration Place,37.6894665,-97.3479609,"300 N McLean Blvd, Wichita, KS 67203, USA",(316) 660-0600,http://www.exploration.org/,Wichita +Museum of World Treasures,37.687089,-97.327885,"835 E 1st St N, Wichita, KS 67202, USA",(316) 263-1311,http://www.worldtreasures.org/,Wichita +The Keeper of the Plains,37.6913539,-97.3497162,"339 Veterans Pkwy, Wichita, KS 67203, USA",(316) 268-4497,https://www.wichita.gov/Arts/Pages/Keeper.aspx,Wichita +Wichita Art Museum,37.69491969999999,-97.3559687,"1400 Museum Blvd, Wichita, KS 67203, USA",(316) 268-4921,http://wam.org/,Wichita +Kansas Aviation Museum,37.632177,-97.2736988,"3350 George Washington Blvd, Wichita, KS 67210, USA",(316) 683-9242,http://www.kansasaviationmuseum.org/,Wichita +Sedgwick County Zoo,37.717034,-97.408561,"5555 W Zoo Blvd, Wichita, KS 67212, USA",(316) 660-9453,https://scz.org/,Wichita +Great Plains Nature Center,37.7389194,-97.2640385,"6232 East 29th St N #2200, Wichita, KS 67220, USA",(316) 683-5499,http://gpnc.org/,Wichita +Wichita-Sedgwick County Historical Museum,37.6847302,-97.3378698,"204 S Main St, Wichita, KS 67202, USA",(316) 265-9314,http://www.wichitahistory.org/,Wichita +"Botanica, The Wichita Gardens",37.69644760000001,-97.3634268,"701 Amidon St, Wichita, KS 67203, USA",(316) 264-0448,http://www.botanica.org/,Wichita +Frank Lloyd Wright's Allen House,37.68978879999999,-97.2924084,"255 N Roosevelt St, Wichita, KS 67208, USA",(316) 687-1027,http://flwrightwichita.org/,Wichita +Great Plains Transportation Museum,37.6862176,-97.3297059,"700 E Douglas Ave, Wichita, KS 67202, USA",(316) 263-0944,http://www.gptm.us/,Wichita +Mid-America All-Indian Museum,37.6921686,-97.35187030000002,"650 N Seneca St, Wichita, KS 67203, USA",(316) 350-3340,https://www.theindianmuseum.org/,Wichita +Ulrich Museum of Art,37.7170361,-97.2964674,"Wichita State University, 1845 Fairmount St, Wichita, KS 67260, USA",(316) 978-3664,https://ulrich.wichita.edu/,Wichita +The Kansas African American Museum (TKAAM),37.694961,-97.3397675,"601 N Water St, Wichita, KS 67203, USA",(316) 262-7651,https://www.tkaamuseum.org/,Wichita +All Star Adventures,37.6998372,-97.2238519,"1010 N Webb Rd, Wichita, KS 67206, USA",(316) 682-3700,http://www.allstarwichita.com/adventures/,Wichita +Kansas Firefighters Museum,37.669702,-97.3352402,"1300 S Broadway St, Wichita, KS 67211, USA",(316) 264-5990,https://kansasfirefightersmuseum.com/,Wichita +Wichita Toy Train Club & Museum,37.68516779999999,-97.3233791,"130 S Laura Ave, Wichita, KS 67211, USA",(316) 633-1179,http://www.wichitatoytrainmuseum.org/,Wichita +Veterans Memorial Park,37.6906041,-97.3449733,"339 Veterans Pkwy, Wichita, KS 67203, USA",(316) 219-9777,https://wichitaveteransmemorialpark.com/,Wichita +Steampunk Village,37.7158218,-97.3884005,"3831 W 17th St N, Wichita, KS 67203, USA",Unknown,Unknown,Wichita +Pioneer Park Historical Complex - Open for Season,45.6310325,-89.4066733,"Martin Lynch Dr, Rhinelander, WI 54501, USA",(715) 369-5004,http://www.rhinelanderpphc.com/,Rhinelander +Hodag Park,45.65266,-89.4109687,"509 Hodag Park Dr, Rhinelander, WI 54501, USA",Unknown,http://www.rhinelandercityhall.org/index.php?page=Parks-Buildings-Grounds,Rhinelander +ArtStart,45.6368549,-89.4115339,"68 S Stevens St, Rhinelander, WI 54501, USA",(715) 362-4328,http://artstartrhinelander.org/,Rhinelander +PPHC - Railroad Museum,45.63153,-89.40714009999999,"Martin Lynch Dr, Rhinelander, WI 54501, USA",(715) 369-5004,https://m.facebook.com/pphc.loggingmuseum.hodag,Rhinelander +John Heisman's Grave of Heisman Trophy,45.6312782,-89.39961389999999,"Rhinelander, WI 54501, USA",Unknown,Unknown,Rhinelander +Rhinelander Historical Society,45.6374706,-89.4096677,"9 S Pelham St, Rhinelander, WI 54501, USA",(715) 369-3833,http://www.rhinelanderhistoricalsociety.org/,Rhinelander +Kovac Planetarium,45.5738262,-89.0654582,"2392 Mud Creek Rd, Rhinelander, WI 54501, USA",(715) 490-6956,https://frankkovacplanetarium.com/,Rhinelander +Fire Ring,45.64814549999999,-89.43342390000001,"Rhinelander, WI 54501, USA",(715) 432-6678,Unknown,Rhinelander +Rhinelander Riverwalk Trailhead,45.6336459,-89.4196632,"Rhinelander, WI 54501, USA",Unknown,Unknown,Rhinelander +SirenCon,45.7294095,-89.4242824,"5403 Spider Lake Rd, Rhinelander, WI 54501, USA",Unknown,Unknown,Rhinelander +The Hodag,45.6321841,-89.4230025,"W Kemp St & Sutliff Ave, Rhinelander, WI 54501, USA",(715) 406-4324,http://www.rhinelanderchamber.com/,Rhinelander +Science City,39.085408,-94.5861467,"Union Station, 30 W Pershing Rd, Kansas City, MO 64108, USA",(816) 460-2000,http://www.unionstation.org/sciencecity,Kansas City +Kansas City Zoo & Aquarium,39.0072568,-94.5293443,"6800 Zoo Dr, Kansas City, MO 64132, USA",(816) 595-1234,https://www.kansascityzoo.org/,Kansas City +National WWI Museum and Memorial,39.080663,-94.5860835,"2 Memorial Dr, Kansas City, MO 64108, USA",(816) 888-8100,https://www.theworldwar.org/,Kansas City +The Nelson-Atkins Museum of Art,39.0449506,-94.5809284,"4525 Oak St, Kansas City, MO 64111, USA",(816) 751-1278,https://www.nelson-atkins.org/?utm_source=gmb&utm_medium=organic&utm_campaign=gmb-listing,Kansas City +Worlds of Fun,39.1763123,-94.4862721,"4545 Worlds of Fun Ave, Kansas City, MO 64161, USA",(816) 454-4545,https://www.worldsoffun.com/,Kansas City +Arabia Steamboat Museum,39.1094732,-94.5813811,"400 Grand Blvd, Kansas City, MO 64106, USA",(816) 471-1856,https://www.1856.com/,Kansas City +SEA LIFE Kansas City,39.0819915,-94.5814816,"2475 Grand Blvd, Kansas City, MO 64108, USA",(816) 471-4386,https://www.visitsealife.com/kansas-city/,Kansas City +The National Museum of Toys and Miniatures,39.03077409999999,-94.5820813,"5235 Oak St, Kansas City, MO 64112, USA",(816) 235-8000,http://www.toyandminiaturemuseum.org/,Kansas City +Money Museum,39.07593839999999,-94.5864272,"1 Memorial Dr, Kansas City, MO 64198, USA",(816) 881-2683,http://www.kansascityfed.org/moneymuseum,Kansas City +Kemper Museum of Contemporary Art,39.04643,-94.5851292,"4420 Warwick Blvd, Kansas City, MO 64111, USA",(816) 753-5784,http://www.kemperart.org/,Kansas City +Jacob L. Loose Park,39.0313447,-94.5944235,"5200 Wornall Rd, Kansas City, MO 64112, USA",(816) 513-7500,http://kcparks.org/park/loose-park/,Kansas City +Kansas City Museum,39.11601649999999,-94.5423536,"3218 Gladstone Blvd, Kansas City, MO 64123, USA",(816) 702-7700,http://kansascitymuseum.org/,Kansas City +American Jazz Museum,39.0914216,-94.5626844,"1616 E 18th St, Kansas City, MO 64108, USA",(816) 474-8463,http://americanjazzmuseum.org/,Kansas City +Union Station Kansas City,39.0846332,-94.5850238,"30 W Pershing Rd, Kansas City, MO 64108, USA",(816) 460-2000,http://www.unionstation.org/,Kansas City +Kansas City Workhouse,39.0878542,-94.5628947,"2001 Vine St, Kansas City, MO 64108, USA",Unknown,Unknown,Kansas City +Kaw Point Park,39.1165937,-94.6105429,"1403 Fairfax Trafficway, Kansas City, KS 66115, USA",(913) 677-2088,https://kawpointpark.org/,Kansas City +Carriage rides at plaza,39.0412223,-94.5933917,"459 Nichols Rd, Kansas City, MO 64112, USA",Unknown,Unknown,Kansas City +Negro Leagues Baseball Museum,39.0913923,-94.5626542,"1616 E 18th St, Kansas City, MO 64108, USA",(816) 221-1920,https://nlbm.com/,Kansas City +The Ewing and Muriel Kauffman Memorial Garden,39.039705,-94.579205,"4800 Rockhill Rd, Kansas City, MO 64110, USA",(816) 932-1200,Unknown,Kansas City +Hallmark Visitors Center,39.08137709999999,-94.5809329,"2501 McGee St, Kansas City, MO 64108, USA",(816) 274-3613,https://corporate.hallmark.com/about/hallmark-cards-company/hallmark-visitors-center/,Kansas City +Landmark Park,31.28914410000001,-85.3682011,"430 Landmark Dr, Dothan, AL 36303, USA",(334) 794-3452,https://www.landmarkparkdothan.com/,Dothan +Wiregrass Museum of Art,31.2246191,-85.3887365,"126 Museum Ave, Dothan, AL 36303, USA",(334) 794-3871,http://www.wiregrassmuseum.org/,Dothan +World's Smallest City Block,31.2253738,-85.3892348,"201-209 N College St, Dothan, AL 36303, USA",(229) 308-4121,Unknown,Dothan +Water World,31.2374514,-85.4401895,"401 Recreation Rd, Dothan, AL 36303, USA",(334) 615-3750,http://www.waterworlddothan.com/,Dothan +Dothan Area Botanical Gardens,31.2960983,-85.3710029,"5130 Headland Ave, Dothan, AL 36303, USA",(334) 793-3224,http://dabg.com/,Dothan +G W Carver Interpretive Museum,31.227214,-85.392934,"305 N Foster St, Dothan, AL 36303, USA",(334) 712-0933,http://www.gwcarvermuseum.com/,Dothan +Adventureland Theme Park,31.2336483,-85.44860829999999,"3738 W Main St, Dothan, AL 36305, USA",(334) 793-9100,http://www.adventurelandthemepark.com/,Dothan +Westgate Park,31.2386897,-85.43877549999999,"501 Recreation Rd, Dothan, AL 36303, USA",(334) 615-3760,https://www.dothan.org/582/Westgate-Recreation-Center,Dothan +Escape Dothan,31.2535596,-85.4146821,"3759 Ross Clark Cir, Dothan, AL 36303, USA",(334) 446-7135,https://www.escapedothan.com/,Dothan +Forever Wild Trails,31.2201089,-85.4674208,"384 Narcisse Dr, Dothan, AL 36305, USA",(334) 615-3700,http://www.dothan.org/index.aspx?NID=544,Dothan +Xtreme Air Mega Park,31.23068889999999,-85.4598962,"441 Nypro Ln, Dothan, AL 36305, USA",(334) 446-4631,https://xtremeairmegaparkdothan.com/,Dothan +Eastgate Park,31.1663489,-85.32036660000001,"1949 Sanitary Dairy Rd, Ashford, AL 36312, USA",(334) 615-3730,https://www.dothan.org/577/Eastgate-Park,Dothan +Big Hog,31.22407469999999,-85.35990550000001,"Dothan, AL 36303, USA",Unknown,Unknown,Dothan +Joseph Statue,31.2240076,-85.3889803,"126 Museum Ave, Dothan, AL 36303, USA",Unknown,Unknown,Dothan +San Luis Valley Museum | Alamosa,37.4690897,-105.8639857,"401 Hunt Ave #2658, Alamosa, CO 81101, USA",(719) 587-0667,https://www.museumtrail.org/san-luis-valley-museum,Alamosa +Rio Grande Farm Park,37.4739426,-105.8574731,"6935 CO-17, Alamosa, CO 81101, USA",(719) 937-2319,http://riograndefarmpark.org/,Alamosa +Cole Park,37.4731056,-105.8637924,"First St, Alamosa, CO 81101, USA",(719) 589-2105,https://www.alamosa.org/,Alamosa +Los Caminos Antiguos Scenic Byway: Alamosa Entrance,37.4742038,-105.8573872,"6978-6800 CO-17, Alamosa, CO 81101, USA",Unknown,https://www.codot.gov/travel/colorado-byways/south-central/los-caminos,Alamosa +Carroll Park,37.4835384,-105.8928883,"Carroll St, Alamosa, CO 81101, USA",Unknown,https://www.alamosarec.org/Default.aspx?id=11,Alamosa +Alamosa Archery Range,37.49138779999999,-105.8849057,"Alamosa, CO 81101, USA",Unknown,Unknown,Alamosa +Alamosa Riparian Park,37.4915119,-105.8914334,"400 Lakewood Dr, Alamosa, CO 81101, USA",Unknown,https://alamosarec.org/CourseActivities.aspx?id=51&cat=7,Alamosa +Alamosa Sub,37.4646297,-105.8690307,"817 8th St, Alamosa, CO 81101, USA",(303) 589-1320,Unknown,Alamosa +Boyd Park,37.46063669999999,-105.8631583,"410 12th St, Alamosa, CO 81101, USA",Unknown,http://www.alamosarec.org/,Alamosa +Alamosa National Wildlife Refuge and Visitor Center,37.4387868,-105.8030248,"9383 El Rancho Ln, Alamosa, CO 81101, USA",(719) 589-4021,https://www.fws.gov/refuge/alamosa,Alamosa +Toivo Malm Trail System,37.4570237,-105.853609,"8210 S River Rd, Alamosa, CO 81101, USA",(719) 587-2524,http://alamosarec.org/,Alamosa +Alamosa Colorado Welcome Center,37.466735,-105.865142,"610 State Ave, Alamosa, CO 81101, USA",(800) 258-7597,http://www.alamosa.org/,Alamosa +Adak National Forest and Pet Cemetery,51.9031542,-176.6221886,"Hillside Blvd, Adak, AK 99546, USA",Unknown,Unknown,Adak Island +Bering Hill Viewpoint,51.87123099999999,-176.67339,"V8CG+FJ, Adak, AK, USA",Unknown,Unknown,Adak Island +Sea Otters Lookout,51.9481876,-176.5837767,"WCX8+7F, Adak, AK, USA",Unknown,Unknown,Adak Island +Aleutian Maritime Wildlife Refuge - Adak Office,51.86969970000001,-176.6375077,"Finger Bay, Adak, AK 99546, USA",Unknown,Unknown,Adak Island +Elfin Forest,51.9076732,-176.6147363,"Adak, AK 99546, USA",Unknown,Unknown,Adak Island +"PADK, Adak Island, AK/Airport",51.8813162,-176.6482208,"Adak, AK 99546, USA",(907) 592-4500,Unknown,Adak Island +Brookwood Hall Park,40.7334732,-73.20039450000002,"50 Irish Ln, Islip, NY 11751, USA",(631) 224-5411,Unknown,Islip +East Islip Marina Park,40.7068805,-73.1902741,"333 Bayview Ave, East Islip, NY 11730, USA",Unknown,Unknown,Islip +South Shore Nature Center,40.717908,-73.192854,"130 Bayview Ave, East Islip, NY 11730, USA",(631) 581-6908,https://www.seatuck.org/index.php/nature-centers/south-shore-nature-center,Islip +Islip Art Museum,40.7346891,-73.1982829,"50 Irish Ln, East Islip, NY 11730, USA",(631) 224-5402,http://www.islipartmuseum.org/,Islip +Beaver Dam Park - Islip Owls,40.75057209999999,-73.20040829999999,"200 Beech St, Islip, NY 11751, USA",Unknown,Unknown,Islip +Heckscher State Park,40.7083126,-73.1654266,"1 Heckscher State Parkway, East Islip, NY 11730, USA",(631) 581-2100,https://parks.ny.gov/parks/heckscher/details.aspx,Islip +Seatuck Environmental Association,40.7147866,-73.2132874,"550 S Bay Ave, Islip, NY 11751, USA",(631) 581-6908,http://www.seatuck.org/,Islip +Islip Beach,40.7064753,-73.2137067,"Islip, NY 11751, USA",(631) 224-5404,https://islipny.gov/news/press-releases/1252-islip-town-beaches-open-for-the-summer,Islip +Islip Veterans Memorial Park,40.729907,-73.2116695,"625 Montauk Hwy, West Islip, NY 11795, USA",Unknown,Unknown,Islip +Islip Meadows County Nature Preserve,40.70589299999999,-73.19494399999999,"350 Bayview Ave, East Islip, NY 11730, USA",(631) 263-2439,Unknown,Islip +Connetquot River State Park Preserve,40.7702798,-73.153697,"4090 Sunrise Hwy, Oakdale, NY 11769, USA",(631) 581-1005,https://parks.ny.gov/parks/8,Islip +Shipwreck Cove Spray Park,40.7111458,-73.2441132,"S Clinton Ave, Bay Shore, NY 11706, USA",(631) 224-5404,https://islipny.gov/departments/parks-recreation-and-cultural-affairs,Islip +Suffolk County Environmental Center (Scully Estate),40.71594040000001,-73.2121385,"550 S Bay Ave, Islip, NY 11751, USA",Unknown,https://seatuck.org/suffolk-county-environmental-center/,Islip +Champlin Creek Nature Preserve,40.7346542,-73.1983537,"50 Irish Ln, East Islip, NY 11730, USA",(631) 263-2439,Unknown,Islip +Brookwood Hall,40.7333706,-73.1995302,"50 Irish Ln, East Islip, NY 11730, USA",(631) 224-5411,https://www.townofislip-ny.gov/departments/parks-recreation-and-cultural-affairs,Islip +Bayard Cutting Arboretum,40.7355723,-73.16246269999999,"440 Montauk Hwy, Great River, NY 11739, USA",(631) 581-1002,https://bayardcuttingarboretum.com/,Islip +Seatuck National Wildlife Refuge,40.7146467,-73.20834719999999,"Islip, NY 11751, USA",(631) 286-0485,http://www.fws.gov/refuge/Seatuck/,Islip +Gardiner County Park,40.6978413,-73.27429169999999,"Montauk Hwy, Bay Shore, NY 11706, USA",(631) 854-4949,Unknown,Islip +Vanderbilt Museum and Planetarium,40.90519279999999,-73.36718499999999,"180 Little Neck Rd, Centerport, NY 11721, USA",(631) 854-5579,http://www.vanderbiltmuseum.org/,Islip +The Himes Museum of Motor Racing Nostalgia,40.73012600000001,-73.2420453,"15 Oneill Ave, Bay Shore, NY 11706, USA",(631) 666-4912,Unknown,Islip +Museum of North Texas History,33.9128194,-98.4914167,"720 Indiana Ave, Wichita Falls, TX 76301, USA",(940) 322-7628,https://www.museumofnorthtexashistory.org/,Wichita Falls +River Bend Nature Center,33.9123153,-98.5133452,"2200 3rd St, Wichita Falls, TX 76301, USA",(940) 767-0843,http://www.riverbendnaturecenter.org/,Wichita Falls +The World's Littlest Skyscraper,33.9143842,-98.4897543,"World's littlest skyscraper, 701 La Salle, Wichita Falls, TX 76301, USA",(940) 761-9955,http://www.wichitafallstx.gov/DocumentCenter/View/19745,Wichita Falls +Lucy Park,33.9173376,-98.5166069,"100 Sunset Dr, Wichita Falls, TX 76302, USA",(940) 761-7490,https://www.wichitafallstx.gov/69/Lucy-Park,Wichita Falls +Kell House Museum,33.9073532,-98.4970016,"900 Bluff St, Wichita Falls, TX 76301, USA",(940) 723-2712,https://kellhouseheritagecenter.org/,Wichita Falls +Scotland Park,33.9179766,-98.5097638,"1500 N 1st St, Wichita Falls, TX 76306, USA",(940) 761-7490,http://www.wichitafallstx.gov/726/Scotland-Park,Wichita Falls +CrashWorks STEAM Studio & Makerspace,33.9112293,-98.4903122,"900 Indiana Ave, Wichita Falls, TX 76301, USA",(940) 264-7836,http://www.crashworkswf.com/,Wichita Falls +Lake Wichita Park,33.8474363,-98.5583676,"5205 Fairway Blvd, Wichita Falls, TX 76310, USA",(940) 761-7490,http://www.wichitafallstx.gov/index.aspx?NID=70,Wichita Falls +Hamilton Park,33.8799269,-98.5085944,"2901 Hamilton Blvd, Wichita Falls, TX 76308, USA",(940) 761-7491,http://www.wichitafallstx.gov/71/Hamilton-Park,Wichita Falls +Wichita Falls Museum of Art,33.8689043,-98.5248723,"2 Eureka Cir, Wichita Falls, TX 76308, USA",(940) 397-8900,https://wfma.msutexas.edu/,Wichita Falls +Castaway Cove Waterpark,33.8875245,-98.4724078,"1000 Central E Fwy, Wichita Falls, TX 76301, USA",(940) 322-5500,http://www.castawaycovewaterpark.com/,Wichita Falls +Largest Shovel in Texas,33.83877959999999,-98.4894718,"7001 US-281, Wichita Falls, TX 76310, USA",Unknown,Unknown,Wichita Falls +Wee-Chi-Tah Statue,33.9230686,-98.4957133,"501-603 Wichita St, Wichita Falls, TX 76306, USA",Unknown,Unknown,Wichita Falls +Lake Arrowhead State Park,33.7573708,-98.3905541,"229 Park Rd 63, Wichita Falls, TX 76310, USA",(940) 528-2211,http://www.tpwd.state.tx.us/state-parks/parks/find-a-park/lake-arrowhead-state-park,Wichita Falls +Ohio Bridge,33.9217403,-98.49594,"9 Bridge St, Wichita Falls, TX 76301, USA",Unknown,Unknown,Wichita Falls +Wichita Falls,33.9132827,-98.5066252,"Wichita River Trail, Wichita Falls, TX 76301, USA",(940) 761-7490,http://www.wichitafallstx.gov/75/The-Falls,Wichita Falls +Urban Air Trampoline and Adventure Park,33.8877531,-98.5273013,"2505 Kemp Blvd, Wichita Falls, TX 76309, USA",(940) 222-6460,https://www.urbanair.com/texas-wichita-falls/,Wichita Falls +Veterans memorial,33.838686,-98.5581116,"5205 Fairway Blvd, Wichita Falls, TX 76308, USA",Unknown,Unknown,Wichita Falls +Harold Jones Park,33.906804,-98.4989843,"1400-1512 9th St, Wichita Falls, TX 76301, USA",Unknown,https://www.wichitafallstx.gov/74/Other-Parks,Wichita Falls +Weeks Park,33.8574809,-98.5185335,"2006 Southwest Pkwy, Wichita Falls, TX 76302, USA",(940) 761-7491,http://wichitafallstx.gov/73/Weeks-Park,Wichita Falls +San Luis Obispo Children's Museum,35.2789885,-120.6661904,"1010 Nipomo St, San Luis Obispo, CA 93401, USA",(805) 544-5437,http://www.slocm.org/,San Luis Obispo +Mission Plaza,35.27983210000001,-120.6647509,"989 Chorro St, San Luis Obispo, CA 93401, USA",(805) 781-7067,https://www.slocity.org/Home/Components/FacilityDirectory/FacilityDirectory/12/2170,San Luis Obispo +San Luis Obispo Railroad Museum,35.2733026,-120.6556732,"1940 Santa Barbara Ave, San Luis Obispo, CA 93401, USA",(805) 548-1894,http://www.slorrm.com/,San Luis Obispo +Fountain,35.28062540000001,-120.6636917,"1023 Chorro St, San Luis Obispo, CA 93401, USA",Unknown,Unknown,San Luis Obispo +The Dorn Pyramid,35.2609486,-120.6706118,"2966 S Higuera St, San Luis Obispo, CA 93401, USA",Unknown,https://www.atlasobscura.com/places/the-dorn-pyramid-san-luis-obispo-california,San Luis Obispo +San Luis Obispo Botanical Garden,35.3302848,-120.7288794,"3450 Dairy Creek Rd, San Luis Obispo, CA 93405, USA",(805) 541-1400,http://slobg.org/,San Luis Obispo +Portola Fountain,35.2749512,-120.6692258,"San Luis Obispo, CA 93401, USA",Unknown,Unknown,San Luis Obispo +The Iron Road Pioneers,35.279645,-120.6594568,"Railroad Avenue and, Osos St, San Luis Obispo, CA 93401, USA",Unknown,Unknown,San Luis Obispo +San Luis Obispo Museum of Art,35.27959999999999,-120.665,"1010 Broad St, San Luis Obispo, CA 93401, USA",(805) 543-8562,https://sloma.org/,San Luis Obispo +Jack House & Gardens,35.2769845,-120.6662373,"536 Marsh St, San Luis Obispo, CA 93401, USA",(805) 781-7222,http://www.slocity.org/government/department-directory/parks-and-recreation/jack-house-and-gardens,San Luis Obispo +Cheng Park,35.280977,-120.6587498,"1095 Marsh St, San Luis Obispo, CA 93401, USA",(805) 781-7222,Unknown,San Luis Obispo +Santa Rosa Park,35.2900576,-120.6641398,"1050 Oak St, San Luis Obispo, CA 93405, USA",(805) 781-7222,https://www.slocity.org/Home/Components/FacilityDirectory/FacilityDirectory/16/2173,San Luis Obispo +Cuesta Canyon Park,35.2937121,-120.6438838,"2400 Loomis St, San Luis Obispo, CA 93405, USA",(805) 781-5930,https://slocountyparks.com/day-use-parks/cuesta-park/,San Luis Obispo +Leaning Pine Arboretum,35.3102041,-120.6622303,"San Luis Obispo, CA 93407, USA",(805) 756-2888,https://aeps.calpoly.edu/leaning-pine-arboretum,San Luis Obispo +Mitchell Park,35.2787418,-120.6579635,"1400 Osos St, San Luis Obispo, CA 93401, USA",(805) 781-7222,https://www.slocity.org/Home/Components/FacilityDirectory/FacilityDirectory/14/2173,San Luis Obispo +Dallidet Adobe & Gardens,35.2808982,-120.6565994,"1185 Pacific St, San Luis Obispo, CA 93401, USA",(805) 543-0638,http://www.dallidet.org/,San Luis Obispo +Puzzle Effect Escape Rooms - San Luis Obispo,35.2770417,-120.6653877,"583 Marsh St, San Luis Obispo, CA 93401, USA",(805) 250-4839,https://sanluisobispo.puzzleeffect.com/,San Luis Obispo +Smugglers Cave,35.1741931,-120.7168129,"1618 Cave Landing Rd, San Luis Obispo, CA 93401, USA",Unknown,Unknown,San Luis Obispo +Mission San Luis Obispo de Tolosa 1772,35.2809641,-120.6647577,"751 Palm St, San Luis Obispo, CA 93401, USA",(805) 781-8220,https://www.missionsanluisobispo.org/,San Luis Obispo +Madonna Inn,35.2674132,-120.6746599,"100 Madonna Rd, San Luis Obispo, CA 93405, USA",(805) 543-3000,http://www.madonnainn.com/,San Luis Obispo +Carillon Historical Park,39.729197,-84.199902,"1000 Carillon Blvd, Dayton, OH 45409, USA",(937) 293-2841,http://www.daytonhistory.org/,Dayton +Boonshoft Museum of Discovery,39.7886347,-84.2019907,"2600 Deweese Pkwy, Dayton, OH 45414, USA",(937) 275-7431,http://www.boonshoftmuseum.org/,Dayton +Dayton Aviation Heritage National Historical Park,39.7557317,-84.21172,"16 S Williams St, Dayton, OH 45402, USA",(937) 225-7705,http://www.nps.gov/daav/contacts.htm,Dayton +National Museum of the US Air Force,39.7807961,-84.1093818,"1100 Spaatz St, Dayton, OH 45433, USA",(937) 255-3286,http://www.nationalmuseum.af.mil/,Dayton +The Dayton Art Institute,39.7662644,-84.2017588,"456 Belmonte Park N, Dayton, OH 45405, USA",(937) 223-4278,http://www.daytonartinstitute.org/,Dayton +America's Packard Museum,39.7534718,-84.1917667,"420 S Ludlow St, Dayton, OH 45402, USA",(937) 226-1710,https://www.americaspackardmuseum.org/,Dayton +Wright Cycle Company Shop,39.7556111,-84.2118694,"22 S Williams St, Dayton, OH 45402, USA",(937) 225-7705,https://www.nps.gov/daav/planyourvisit/basicinfo.htm,Dayton +Sunwatch Indian Village,39.7163614,-84.2316749,"2301 W River Rd, Dayton, OH 45417, USA",(937) 268-8199,https://boonshoft.org/sunwatch-2/,Dayton +The International Peace Museum,39.7596547,-84.193297,"10 N Ludlow St, Dayton, OH 45402, USA",(937) 227-3223,http://peace.museum/,Dayton +Wegerzyn Gardens MetroPark,39.8044385,-84.2040052,"1301 E Siebenthaler Ave, Dayton, OH 45414, USA",(937) 275-7275,http://www.metroparks.org/places-to-go/wegerzyn-gardens/,Dayton +Five Rivers MetroParks,39.7652231,-84.1861555,"409 E Monument Ave, Dayton, OH 45402, USA",(937) 275-7275,https://www.metroparks.org/,Dayton +National Aviation Hall Of Fame,39.78120090000001,-84.1097997,"1100 Spaatz St, Dayton, OH 45433, USA",(937) 256-0944,https://www.nationalaviation.org/,Dayton +RiverScape MetroPark,39.7648331,-84.18876689999999,"237 E Monument Ave, Dayton, OH 45402, USA",(937) 274-0126,http://www.metroparks.org/places-to-go/riverscape/,Dayton +Wright Brothers Memorial,39.7946424,-84.0886899,"2380 Memorial Rd, Dayton, OH 45424, USA",(937) 425-0008,https://www.nps.gov/daav/planyourvisit/visitorcenters.htm,Dayton +Eastwood MetroPark,39.78754,-84.122551,"1385 Harshman Rd, Dayton, OH 45431, USA",(937) 275-7275,http://www.metroparks.org/places-to-go/eastwood/,Dayton +Patterson Homestead,39.7346476,-84.18206959999999,"1815 Brown St, Dayton, OH 45409, USA",(937) 293-2841,https://www.daytonhistory.org/visit/dayton-history-sites/patterson-homestead/,Dayton +Deeds Point MetroPark,39.76997249999999,-84.1855862,"510 Webster St, Dayton, OH 45402, USA",(937) 275-7275,http://www.metroparks.org/places-to-go/deeds-point/,Dayton +Possum Creek MetroPark,39.7093718,-84.2692486,"4790 Frytown Rd, Dayton, OH 45417, USA",(937) 275-7275,http://www.metroparks.org/places-to-go/possum-creek/,Dayton +Wright Brothers National Museum,39.72782039999999,-84.2015201,"Unnamed Road, Dayton, OH 45439, USA",(937) 293-2841,https://www.daytonhistory.org/visit/things-to-see-do/wright-brothers-national-museum/,Dayton +Smith Gardens,39.7237069,-84.1783784,"Dayton, OH 45419, USA",(937) 298-0600,https://oakwoodohio.gov/smith-memorial-gardens/,Dayton +Pinball Palace,31.1697287,-81.47570669999999,"3303 Hopkins Ave, Brunswick, GA 31520, USA",(912) 265-9275,http://www.thepinballpalace.com/,Brunswick +Howard Coffin Park,31.1516089,-81.4797315,"1402 Sonny Miller Way, Brunswick, GA 31520, USA",(912) 267-5566,https://www.glynncounty.org/153/Recreation-and-Parks,Brunswick +Lover's Oak,31.1423304,-81.4865265,"828 Albany St, Brunswick, GA 31520, USA",Unknown,http://www.goldenisles.com/listing/lovers-oak,Brunswick +Mary Ross Waterfront Park,31.149389,-81.49813999999999,"10 F St, Brunswick, GA 31520, USA",(912) 279-2600,https://discoverbrunswick.com/top-attractions/,Brunswick +Selden Park,31.1739137,-81.50546419999999,"100 Genoa Martin Dr, Brunswick, GA 31520, USA",(912) 279-2800,http://glynncounty.org/,Brunswick +Hofwyl-Broadfield Plantation,31.30503760000001,-81.46002109999999,"5556 Hwy 17, Brunswick, GA 31525, USA",(912) 264-7333,https://gastateparks.org/HofwylBroadfieldPlantation,Brunswick +Earth Day Nature Trail,31.124866,-81.477774,"4 Conservation Way, Brunswick, GA 31520, USA",(912) 264-7218,http://www.goldenisles.com/listing/earth-day-nature-trail,Brunswick +Richland Rum - Brunswick,31.148038,-81.494765,"1406 Newcastle St, Brunswick, GA 31520, USA",(229) 887-3537,http://www.richlandrum.com/,Brunswick +Paulk Park,31.1802462,-81.4963724,"3600 Wylly Ave, Brunswick, GA 31520, USA",(912) 264-4455,Unknown,Brunswick +Blythe Island Regional Park,31.155897,-81.542942,"6616 Blythe Island Hwy, Brunswick, GA 31523, USA",(912) 279-2812,http://www.glynncounty.org/index.aspx?NID=176,Brunswick +St. Simons Island Lighthouse Museum,31.1340516,-81.3934662,"610 Beachview Dr, St Simons Island, GA 31522, USA",(912) 638-4666,https://www.coastalgeorgiahistory.org/visit/st-simons-lighthouse-museum/,Brunswick +Queen Square,31.1465166,-81.4946001,"Brunswick, GA 31520, USA",Unknown,https://www.signaturesquares.org/,Brunswick +Golden Isles Convention & Visitors Bureau,31.13550499999999,-81.394712,"529 Beachview Dr, St Simons Island, GA 31522, USA",(912) 638-9014,http://www.goldenisles.com/,Brunswick +Parks & Historic Sites,31.12399090000001,-81.4781435,"1 Conservation Way, Brunswick, GA 31520, USA",(912) 262-3180,Unknown,Brunswick +Brunswick Adventures,31.2027709,-81.4997238,"5581 Habersham St, Brunswick, GA 31520, USA",(912) 342-7427,http://www.brunswickadventures.com/,Brunswick +Halifax Square,31.1422776,-81.48859329999999,"Halifax Square, Brunswick, GA 31520, USA",Unknown,https://www.signaturesquares.org/,Brunswick +Brunswick Parks & Recreation,31.1516,-81.4797451,"Brunswick, GA 31520, USA",(912) 267-5566,Unknown,Brunswick +Glynn County Recreation & Park,31.2047518,-81.5064977,"323 Old Jesup Rd, Brunswick, GA 31520, USA",(912) 554-7780,Unknown,Brunswick +Golden Isles Georgia Welcome Center,31.280075,-81.48999020000001,"300 I-95, Brunswick, GA 31525, USA",(912) 264-0202,https://www.goldenisles.com/about-us/visitor-information-centers/,Brunswick +Horton House,31.1017663,-81.4145668,"Riverview Dr, Jekyll Island, GA 31527, USA",Unknown,https://www.jekyllisland.com/history/horton-house/,Brunswick +Fort Smith Museum of History,35.387614,-94.42833,"320 Rogers Ave, Fort Smith, AR 72901, USA",(479) 783-7841,http://www.fortsmithmuseum.org/,Fort Smith +Fort Smith National Historic Site,35.388139,-94.4299163,"301 Parker Ave, Fort Smith, AR 72901, USA",(479) 783-3961,http://www.nps.gov/fosm/index.htm,Fort Smith +Fort Smith Trolley Museum,35.38549680000001,-94.4302072,"100 S 4th St, Fort Smith, AR 72901, USA",(479) 783-0205,http://www.fstm.org/,Fort Smith +Parrot Island Waterpark,35.3247482,-94.351715,"7300 S Zero St, Fort Smith, AR 72903, USA",(479) 788-6550,http://www.parrotislandwaterpark.com/,Fort Smith +Fort Smith Regional Art Museum,35.3814597,-94.4154387,"1601 Rogers Ave, Fort Smith, AR 72901, USA",(479) 784-2787,https://fsram.org/,Fort Smith +Miss Laura's Visitor Center,35.3920583,-94.4291594,"2 N B St, Fort Smith, AR 72901, USA",(800) 637-1477,https://www.misslaurasvc.com/,Fort Smith +Park at West End,35.3904845,-94.4288502,"115 Garrison Ave, Fort Smith, AR 72901, USA",(479) 784-2368,Unknown,Fort Smith +Clayton House,35.3913387,-94.4207866,"514 N 6th St, Fort Smith, AR 72901, USA",(479) 783-3000,http://claytonhouse.org/,Fort Smith +Chaffee Crossing Historic District,35.3102254,-94.3035878,"7313 Terry St, Fort Smith, AR 72916, USA",(479) 452-4554,http://www.chaffeecrossing.com/,Fort Smith +Chaffee Barbershop Museum,35.3112702,-94.3018645,"7313 Terry St Bldg. #803, Fort Smith, AR 72916, USA",(479) 452-4554,http://www.chaffeecrossing.com/amenitiesrecreation/museums,Fort Smith +Flower Tower,35.3135171,-94.3323619,"Wells Lake Rd, Fort Smith, AR 72916, USA",Unknown,Unknown,Fort Smith +AGFC Janet Huckabee Arkansas River Valley Nature Center,35.3027669,-94.3359083,"8300 Wells Lake Rd, Fort Smith, AR 72916, USA",(501) 710-6285,https://www.agfc.com/en/explore-outdoors/nature-centers/jharvnc/,Fort Smith +Belle Grove Historic District,35.3914382,-94.4215849,"804 N C St, Fort Smith, AR 72901, USA",(479) 783-3000,http://claytonhouse.org/,Fort Smith +Massard Prairie Battlefield Park,35.3121296,-94.3821437,"4999 Morgans Way, Fort Smith, AR 72916, USA",(479) 784-2368,https://www.fortsmith.org/massard-prairie-battlefield-park/,Fort Smith +Cisterna Park,35.3848217,-94.4212745,"1001 Garrison Ave, Fort Smith, AR 72901, USA",(479) 274-1013,Unknown,Fort Smith +Kay Rodgers Park,35.41922809999999,-94.3793193,"4400 Midland Blvd, Fort Smith, AR 72904, USA",(479) 783-6176,https://www.kayrodgerspark.org/,Fort Smith +Ruth Armstrong Nature Area,35.373774,-94.3986813,"Fort Smith, AR 72901, USA",(479) 784-2368,Unknown,Fort Smith +Ben Geren Regional Park,35.3222776,-94.3544267,"7200 Zero St, Fort Smith, AR 72903, USA",(479) 646-2444,https://sebastiancountyar.gov/,Fort Smith +United States Marshals Museum,35.39855569999999,-94.425354,"789 Riverfront Dr, Fort Smith, AR 72901, USA",(479) 242-1789,http://www.usmmuseum.org/,Fort Smith +Creekmore Park,35.370936,-94.3982514,"3301 S M St, Fort Smith, AR 72903, USA",(479) 784-2368,http://fortsmithparks.com/parks/community-parks/creekmore/,Fort Smith +Martha's Vineyard Museum,41.4492993,-70.59976089999999,"151 Lagoon Pond Rd, Vineyard Haven, MA 02568, USA",(508) 627-4441,http://www.mvmuseum.org/,Martha's Vineyard +East Chop Lighthouse,41.47026220000001,-70.5674306,"229 E Chop Dr, Vineyard Haven, MA 02568, USA",(508) 627-4441,http://www.mvmuseum.org/,Martha's Vineyard +Vincent House Museum,41.3911692,-70.5153339,"99 Main St, Edgartown, MA 02539, USA",(508) 627-8017,https://vineyardtrust.org/property/vincent-house-gardens/,Martha's Vineyard +Edgartown Harbor Lighthouse,41.3908631,-70.5030427,"121 N Water St, Edgartown, MA 02539, USA",(508) 627-4441,https://mvmuseum.org/visit/edgartown/,Martha's Vineyard +Aquinnah Cliffs Overlook,41.3473128,-70.8370166,"31 Aquinnah Cir, Aquinnah, MA 02535, USA",Unknown,Unknown,Martha's Vineyard +Gay Head Light,41.3483447,-70.83453039999999,"15 Aquinnah Cir, Aquinnah, MA 02535, USA",(508) 693-1039,http://gayheadlight.org/,Martha's Vineyard +Ocean Park,41.45561929999999,-70.555887,"2 Seaview Ave, Oak Bluffs, MA 02557, USA",Unknown,Unknown,Martha's Vineyard +Wasque Point Wildlife Management Area,41.3622238,-70.45034849999999,"11 Dike Rd, Edgartown, MA 02539, USA",Unknown,Unknown,Martha's Vineyard +Jaws Bridge,41.41609810000001,-70.5487443,"267-125 Seaview Ave, Edgartown, MA 02539, USA",Unknown,Unknown,Martha's Vineyard +Pirate Adventures Martha's Vineyard,41.45811659999999,-70.55833249999999,"12 Circuit Avenue Extension, Oak Bluffs, MA 02557, USA",(508) 687-2739,http://www.mvpirates.com/,Martha's Vineyard +The Carnegie | Vineyard Preservation Trust,41.3904192,-70.5112164,"58 N Water St, Edgartown, MA 02539, USA",(774) 549-9107,http://www.vineyardtrust.org/,Martha's Vineyard +Joseph Sylvia State Beach,41.4219361,-70.5515408,"267-125 Seaview Ave, Edgartown, MA 02539, USA",(508) 627-6145,Unknown,Martha's Vineyard +Flying Horses Carousel a Vineyard Preservation Trust Property,41.45741069999999,-70.5571307,"15 Lake Ave, Oak Bluffs, MA 02557, USA",(508) 693-9481,https://vineyardtrust.org/property/flying-horses-carousel/,Martha's Vineyard +Mytoi Japanese Garden,41.375902,-70.458383,"41 Dike Rd, Edgartown, MA 02539, USA",(508) 627-7689,http://www.thetrustees.org/places-to-visit/cape-cod-islands/mytoi.html,Martha's Vineyard +Edgartown Fire Museum,41.3878039,-70.5195475,"68 Peases Point Way S, Edgartown, MA 02539, USA",Unknown,https://edgartownfiremensassociation.org/about-1,Martha's Vineyard +Lighthouse Beach,41.391331,-70.5035463,"230 N Water St, Edgartown, MA 02539, USA",(508) 627-6145,Unknown,Martha's Vineyard +Long Point Wildlife Refuge,41.3676368,-70.624095,"Scrubby Neck Rd, Vineyard Haven, MA 02568, USA",(508) 693-7392,http://www.thetrustees.org/places-to-visit/cape-cod-islands/long-point.html,Martha's Vineyard +Mass Audubon's Felix Neck Wildlife Sanctuary,41.413565,-70.563565,"100 Felix Neck Dr, Edgartown, MA 02539, USA",(508) 627-4850,http://massaudubon.org/felixneck,Martha's Vineyard +Edgartown Lighthouse,41.3909689,-70.5030689,"Edgartown, MA 02539, USA",Unknown,Unknown,Martha's Vineyard +Edgartown Memorial Wharf,41.38916529999999,-70.51004329999999,"50 Dock St, Edgartown, MA 02539, USA",Unknown,Unknown,Martha's Vineyard +Washington Park,45.51517560000001,-122.7104903,"4033 SW Canyon Rd, Portland, OR 97221, USA",(503) 319-0999,http://explorewashingtonpark.org/,Portland +Pittock Mansion,45.5252061,-122.7162689,"3229 NW Pittock Dr, Portland, OR 97210, USA",(503) 823-3623,http://pittockmansion.org/,Portland +Portland Art Museum,45.51614999999999,-122.683357,"1219 SW Park Ave, Portland, OR 97205, USA",(503) 226-2811,https://portlandartmuseum.org/,Portland +Portland Japanese Garden,45.5188634,-122.7080354,"611 SW Kingston Ave, Portland, OR 97205, USA",(503) 223-1321,https://japanesegarden.org/,Portland +International Rose Test Garden,45.51895239999999,-122.7052686,"400 SW Kingston Ave, Portland, OR 97205, USA",(503) 823-3636,https://www.portlandoregon.gov/parks/finder/index.cfm?action=viewpark&propertyid=1113,Portland +OMSI,45.5083931,-122.6660355,"1945 SE Water Ave, Portland, OR 97214, USA",(503) 797-4000,https://omsi.edu/,Portland +Haunted Underground Shanghai Tunnels Tour,45.5243779,-122.6730043,"226 NW Davis St, Portland, OR 97209, USA",(503) 622-4798,http://www.portlandtunnels.com/,Portland +The Grotto,45.5532151,-122.5735354,"8840 NE Skidmore St, Portland, OR 97220, USA",(503) 254-7371,http://www.thegrotto.org/,Portland +Lan Su Chinese Garden,45.5256321,-122.6729955,"239 NW Everett St, Portland, OR 97209, USA",(503) 228-8131,https://lansugarden.org/,Portland +Oregon Zoo,45.5093572,-122.714291,"4001 SW Canyon Rd, Portland, OR 97221, USA",(503) 226-1561,http://www.oregonzoo.org/?utm_source=google-gmb-maps&utm_medium=gmb-website-button&utm_campaign=locl.io&utm_content=093c59cc-81f8-430c-a54b-2f222231412d,Portland +Hoyt Arboretum,45.5162616,-122.7152124,"4000 SW Fairview Blvd, Portland, OR 97221, USA",(503) 865-8733,http://www.hoytarboretum.org/,Portland +The Wishing Tree,45.54452129999999,-122.6584834,"2954 NE 7th Ave, Portland, OR 97212, USA",Unknown,https://m.facebook.com/pages/The-Wishing-Tree/290167554473421,Portland +Forest Park,45.5709848,-122.7683495,"Portland, OR 97231, USA",(503) 823-4492,https://www.portlandoregon.gov/parks/finder/index.cfm?action=ViewPark&PropertyID=127,Portland +The Freakybuttrue Peculiarium and Museum,45.53543029999999,-122.6975904,"2234 NW Thurman St, Portland, OR 97210, USA",(503) 227-3164,http://www.peculiarium.com/,Portland +Crystal Springs Rhododendron Garden,45.4799247,-122.6355177,"5801 SE 28th Ave, Portland, OR 97202, USA",(503) 267-7509,https://www.crystalspringsgardenpdx.org/,Portland +Oaks Amusement Park,45.472652,-122.6613775,"7805 SE Oaks Park Way, Portland, OR 97202, USA",(503) 233-5777,http://oakspark.com/,Portland +Witch's Castle,45.5283626,-122.7250661,"Lower Macleay Trail, Portland, OR 97210, USA",(503) 823-4000,https://www.portlandoregon.gov/,Portland +Pittock Mansion Park Viewpoint,45.525277,-122.7169258,"3229 NW Pittock Dr, Portland, OR 97210, USA",Unknown,https://www.portland.gov/parks/pittock-mansion,Portland +Mt Tabor Park,45.51125489999999,-122.5958201,"SE 60th Ave &, SE Salmon St, Portland, OR 97215, USA",(503) 823-7529,https://www.portland.gov/parks/mt-tabor-park,Portland +Oregon Historical Society,45.51591099999999,-122.682432,"1200 SW Park Ave, Portland, OR 97205, USA",(503) 222-1741,http://www.ohs.org/,Portland +Dr Pepper Museum,31.5551583,-97.1295999,"300 S 5th St, Waco, TX 76701, USA",(254) 757-1024,http://www.drpeppermuseum.com/,Waco +Cameron Park Zoo,31.5701472,-97.1445667,"1701 N 4th St, Waco, TX 76707, USA",(254) 750-8400,http://www.cameronparkzoo.com/,Waco +Waco Mammoth National Monument,31.6067336,-97.1758392,"6220 Steinbeck Bend Dr, Waco, TX 76708, USA",(254) 750-7946,https://www.nps.gov/waco/index.htm,Waco +Texas Ranger Hall of Fame & Museum,31.5555471,-97.1187182,"100 Texas Ranger Trail, Waco, TX 76706, USA",(254) 750-8631,http://www.texasranger.org/,Waco +Mayborn Museum Complex,31.5518639,-97.11499200000002,"1300 S University Parks Dr, Waco, TX 76706, USA",(254) 710-1110,https://www.baylor.edu/mayborn/,Waco +Waco Suspension Bridge,31.5612041,-97.1271447,"101 N University Parks Dr, Waco, TX 76701, USA",(254) 750-5980,http://www.waco-texas.com/,Waco +East Terrace Museum,31.56748209999999,-97.1342396,"100 Mill St, Waco, TX 76704, USA",(254) 753-5166,http://www.historicwaco.org/,Waco +Waco Sculpture Zoo,31.562098,-97.1308615,"407 N University Parks Dr, Waco, TX 76701, USA",Unknown,Unknown,Waco +Jacob's Ladder,31.5772222,-97.1488158,"2500 Cameron Park Dr, Waco, TX 76708, USA",(254) 750-8080,Unknown,Waco +Hawaiian Falls Waco,31.5949646,-97.1648846,"900 Lake Shore Dr, Waco, TX 76708, USA",(254) 892-0222,https://hfalls.com/waco.php,Waco +Cameron Park,31.5836578,-97.1562575,"2601 N University Parks Dr, Waco, TX 76708, USA",(254) 750-5980,https://www.waco-texas.com/Departments/Parks-Recreation/Cameron-Park,Waco +Hueco Pedicab Tours,31.5510142,-97.131072,"811 Webster Ave, Waco, TX 76706, USA",(469) 763-2032,Unknown,Waco +Lee Lockwood Library and Museum,31.5407652,-97.1563198,"2801 W Waco Dr, Waco, TX 76707, USA",(254) 754-3942,http://leelockwood.org/,Waco +Miss Nellie's Pretty Place,31.5767692,-97.1507516,"2602 N University Parks Dr, Waco, TX 76708, USA",(254) 750-5980,https://topbrunchspots.com/attractions/miss-nellies-pretty-place-waco-texas/,Waco +Martin Museum of Art,31.55010079999999,-97.1147283,"60 Baylor Ave, Waco, TX 76706, USA",(254) 710-6371,http://www.baylor.edu/martinmuseum/,Waco +Amazing Brazos River Adventure,31.5581759,-97.1149837,"1001 S M.L.K. Jr Blvd, Waco, TX 76704, USA",Unknown,Unknown,Waco +Lake Waco Wetlands,31.6063682,-97.3017097,"1752 Eichelberger Crossing Road., China Spring, TX 76633, USA",(254) 848-9654,https://www.waco-texas.com/Departments/Water-Utility-Services/Lake-Waco-Wetlands,Waco +Texas Sports Hall of Fame,31.552843,-97.117887,"1108 S University Parks Dr, Waco, TX 76706, USA",(254) 756-1633,http://www.tshof.org/,Waco +City of Waco Brazos Park East,31.5843496,-97.1517178,"3516 N M.L.K. Jr Blvd, Waco, TX 76702, USA",(254) 750-5980,http://www.waco-texas.com/parks,Waco +McCulloch House Museum,31.55915229999999,-97.1335632,"407 Columbus Ave, Waco, TX 76701, USA",(254) 753-5166,http://www.historicwaco.org/,Waco +Top of The Rock,40.75934950000001,-73.9794087,"30 Rockefeller Plaza, New York, NY 10112, USA",(212) 698-2000,https://www.rockefellercenter.com/attractions/top-of-the-rock-observation-deck/,New York +One World Observatory,40.7130062,-74.013173,"117 West St, New York, NY 10007, USA",(844) 696-1776,https://oneworldobservatory.com/,New York +SUMMIT One Vanderbilt,40.752764,-73.9787461,"45 E 42nd St, New York, NY 10017, USA",Unknown,http://www.summitov.com/,New York +Rockefeller Center,40.7587402,-73.9786736,"45 Rockefeller Plaza, New York, NY 10111, USA",(212) 588-8601,https://www.rockefellercenter.com/,New York +Statue of Liberty,40.6892494,-74.04450039999999,"New York, NY 10004, USA",(212) 363-3200,https://www.nps.gov/stli/index.htm,New York +The High Line,40.7479925,-74.0047649,"New York, NY 10011, USA",(212) 500-6035,https://www.thehighline.org/,New York +Empire State Building,40.7484405,-73.98566439999999,"20 W 34th St., New York, NY 10001, USA",(212) 736-3100,https://www.esbnyc.com/,New York +Brooklyn Bridge,40.7060855,-73.9968643,"New York, NY 10038, USA",Unknown,https://www.nyc.gov/html/dot/html/infrastructure/brooklyn-bridge.shtml,New York +9/11 Memorial & Museum,40.7115776,-74.0133362,"180 Greenwich St, New York, NY 10007, USA",(212) 312-8800,https://www.911memorial.org/,New York +Flatiron Building,40.7410605,-73.9896986,"175 5th Ave, New York, NY 10010, USA",Unknown,Unknown,New York +Times Square,40.7579747,-73.9855426,"Manhattan, NY 10036, USA",Unknown,https://www.timessquarenyc.org/,New York +RiseNY,40.75762069999999,-73.98517609999999,"160 W 45th St, New York, NY 10036, USA",(718) 701-4998,https://riseny.co/,New York +The Channel Gardens,40.7585013,-73.97808700000002,"New York, NY 10020, USA",Unknown,https://www.rockefellercenter.com/attractions/the-channel-gardens/,New York +The Battery,40.70293119999999,-74.0153603,"Battery Park City, New York, NY 10004, USA",(212) 344-3491,https://www.thebattery.org/,New York +Central Park,40.7825547,-73.9655834,"New York, NY, USA",(212) 310-6600,https://www.centralparknyc.org/,New York +Tenement Museum,40.71881799999999,-73.9900876,"103 Orchard St, New York, NY 10002, USA",(877) 975-3786,https://www.tenement.org/,New York +MUSEUM OF ICE CREAM,40.7238545,-73.99791669999999,"558 Broadway, New York, NY 10012, USA",Unknown,https://www.museumoficecream.com/,New York +Radio City Music Hall,40.75997599999999,-73.9799772,"1260 6th Ave, New York, NY 10020, USA",(212) 465-6000,https://www.msg.com/radio-city-music-hall,New York +Pier 46 at Hudson River Park,40.7341889,-74.011265,"Hudson River Greenway, New York, NY 10014, USA",(212) 627-2020,http://hudsonriverpark.org/,New York +Tiffany Street Clock,40.74198140000001,-73.9893778,"200 5th Ave, New York, NY 10010, USA",Unknown,Unknown,New York +Center of Science and Industry (COSI),39.9598362,-83.0070197,"333 W Broad St, Columbus, OH 43215, USA",(614) 228-2674,https://cosi.org/,Columbus +Franklin Park Conservatory and Botanical Gardens,39.9645689,-82.9552693,"1777 E Broad St, Columbus, OH 43203, USA",(614) 715-8000,http://fpconservatory.org/,Columbus +Columbus Museum of Art,39.9642074,-82.98789719999999,"480 E Broad St, Columbus, OH 43215, USA",(614) 221-6801,http://www.columbusmuseum.org/,Columbus +Columbus Zoo and Aquarium,40.1561609,-83.1179609,"4850 W Powell Rd, Powell, OH 43065, USA",(614) 645-3400,https://www.columbuszoo.org/,Columbus +Topiary Park,39.96110039999999,-82.9875742,"480 E Town St, Columbus, OH 43215, USA",(614) 645-0197,https://www.columbus.gov/recreationandparks/parks/Topiary-Garden-(Deaf-School-Park)/,Columbus +LEGOLAND Discovery Center Columbus,40.05128759999999,-82.9158451,"157 Easton Town Ctr, Columbus, OH 43219, USA",(614) 407-7721,http://columbus.legolanddiscoverycenter.com/,Columbus +Ohio Statehouse,39.96133,-82.99911469999999,"1 Capitol Sq, Columbus, OH 43215, USA",(614) 752-9777,http://www.ohiostatehouse.org/,Columbus +Kelton House Museum & Garden,39.96081809999999,-82.9843102,"586 E Town St, Columbus, OH 43215, USA",(614) 464-2022,http://www.keltonhouse.com/,Columbus +ZipZone Outdoor Adventures,40.1254616,-83.0165336,"7925 N High St, Columbus, OH 43235, USA",(614) 847-9477,https://zipzonetours.com/,Columbus +Columbus Park of Roses,40.04355690000001,-83.0267477,"3901 N High St, Columbus, OH 43214, USA",(614) 645-3391,http://www.parkofroses.org/,Columbus +John F. Wolfe Columbus Commons,39.9590967,-82.9988101,"160 S High St, Columbus, OH 43215, USA",(614) 545-4701,http://columbuscommons.org/,Columbus +Zoombezi Bay,40.153597,-83.119104,"4850 Powell Rd, Powell, OH 43065, USA",(614) 645-3400,http://www.zoombezibay.com/,Columbus +Thurber House,39.9657832,-82.985242,"77 Jefferson Ave, Columbus, OH 43215, USA",(614) 464-1032,https://www.thurberhouse.org/,Columbus +Discovery Park,39.9626791,-82.9940769,"275 E Broad St, Columbus, OH 43215, USA",Unknown,Unknown,Columbus +Columbus Love Mural,39.956996,-82.9937867,"220 E Main St, Columbus, OH 43215, USA",Unknown,https://www.nkdsgn.com/cbuslovemural,Columbus +Bicentennial Park,39.9563318,-83.0040559,"233 S Civic Center Dr, Columbus, OH 43215, USA",(614) 645-3800,http://www.sciotomile.com/parks/bicentennial-park/,Columbus +Gambrinus: King of Beer,39.94957969999999,-83.00015499999999,"Columbus, OH 43215, USA",Unknown,Unknown,Columbus +Scioto Mile Promenade,39.9600883,-83.0028554,"233 S Civic Center Dr, Columbus, OH 43215, USA",(614) 645-3335,http://www.sciotomile.com/parks/the-promenade/,Columbus +Goodale Park,39.9752105,-83.0067753,"120 W Goodale St, Columbus, OH 43215, USA",(614) 645-3300,http://goodalepark.org/,Columbus +Bishops Walk Fountain,39.964375,-82.9955925,"182 E Gay St, Columbus, OH 43215, USA",Unknown,Unknown,Columbus +The Florida Aquarium,27.943972,-82.44487470000001,"701 Channelside Dr, Tampa, FL 33602, USA",(813) 273-4000,https://www.flaquarium.org/,Tampa +Busch Gardens Tampa Bay,28.037066,-82.4194607,"10165 McKinley Dr, Tampa, FL 33612, USA",(813) 884-4386,https://buschgardens.com/tampa?utm_source=google&utm_medium=organic&utm_campaign=gbp_listing,Tampa +Adventure Island,28.0417018,-82.4130318,"10001 McKinley Dr, Tampa, FL 33612, USA",(813) 884-4386,https://adventureisland.com/,Tampa +Henry B. Plant Museum,27.9463553,-82.4640404,"401 W Kennedy Blvd, Tampa, FL 33606, USA",(813) 254-1891,http://www.plantmuseum.com/,Tampa +Museum of Science & Industry,28.0531223,-82.40449749999999,"4801 E Fowler Ave, Tampa, FL 33617, USA",(813) 987-6000,http://www.mosi.org/,Tampa +Tampa Bay History Center,27.9423647,-82.4498608,"801 Water St, Tampa, FL 33602, USA",(813) 228-0097,https://tampabayhistorycenter.org/,Tampa +Glazer Children's Museum,27.949577,-82.461494,"110 W Gasparilla Plaza, Tampa, FL 33602, USA",(813) 443-3861,http://www.glazermuseum.org/,Tampa +ZooTampa at Lowry Park,28.0138361,-82.4699672,"1101 W Sligh Ave, Tampa, FL 33604, USA",(813) 935-8552,https://zootampa.org/,Tampa +Tampa Museum of Art,27.9495237,-82.4629933,"120 W Gasparilla Plaza, Tampa, FL 33602, USA",(813) 274-8130,https://tampamuseum.org/,Tampa +Sulphur Springs Water Tower,28.02138859999999,-82.4589025,"455-479 E Bird St, Tampa, FL 33604, USA",(813) 458-3605,http://tampagov.net/,Tampa +Congo River Rapids,28.0399821,-82.4238733,"10165 McKinley Dr, Tampa, FL 33612, USA",(813) 884-4386,https://buschgardens.com/tampa/rides/congo-river-rapids/,Tampa +MacDill Park on the Riverwalk,27.9452783,-82.4587869,"100 N Ashley Dr, Tampa, FL 33602, USA",(813) 274-8615,https://www.tampa.gov/parks-and-recreation,Tampa +Falcon's Fury,28.0376443,-82.42275149999999,"3000 E Busch Blvd, Tampa, FL 33612, USA",(813) 884-4386,https://buschgardens.com/tampa/rides/falcons-fury/,Tampa +Tampa Theatre,27.9503523,-82.4589293,"711 N Franklin St, Tampa, FL 33602, USA",(813) 274-8981,http://www.tampatheatre.org/,Tampa +Ybor City Museum State Park,27.96196359999999,-82.43866849999999,"1818 E 9th Ave, Tampa, FL 33605, USA",(813) 247-6323,https://www.floridastateparks.org/parks-and-trails/ybor-city-museum-state-park,Tampa +Tampa History Center Dock #3,27.9419228,-82.4497251,"PWT3 - History Center/Amalie, Arena, Tampa, FL 33602, USA",Unknown,Unknown,Tampa +USF Botanical Gardens,28.0577333,-82.423799,"12210 USF Pine Drive, Tampa, FL 33612, USA",(813) 974-2329,http://gardens.usf.edu/,Tampa +Ballast Point Park,27.8889874,-82.4812381,"5300 Interbay Blvd, Tampa, FL 33611, USA",(813) 274-8615,https://www.tampa.gov/parks-and-recreation/featured-parks/ballast-point,Tampa +Kumba,28.0394995,-82.4231389,"10165 McKinley Dr, Tampa, FL 33612, USA",(813) 884-4386,https://buschgardens.com/tampa/roller-coasters/kumba/,Tampa +Busch Gardens Tampa Bay Howl-O-Scream,28.037962,-82.42115199999999,"10165 McKinley Dr, Tampa, FL 33612, USA",(813) 884-4386,https://buschgardens.com/tampa/events/howl-o-scream/?utm_source=gbp_listing&utm_medium=organic&utm_campaign=HoS_gpb_listing,Tampa +Museum of Discovery,34.74752229999999,-92.2646356,"500 President Clinton Ave, Little Rock, AR 72201, USA",(501) 396-7050,http://www.museumofdiscovery.org/,Little Rock +Little Rock Zoo,34.7470271,-92.3301901,"1 Zoo Dr, Little Rock, AR 72205, USA",(501) 661-7200,http://www.littlerockzoo.com/,Little Rock +Old State House Museum,34.7490498,-92.2725927,"300 W Markham St, Little Rock, AR 72201, USA",(501) 324-9685,http://www.oldstatehouse.com/,Little Rock +Little Rock Central High School National Historic Site,34.7380293,-92.2974572,"2120 W Daisy L Gatson Bates Dr, Little Rock, AR 72202, USA",(501) 374-1957,http://www.nps.gov/chsc/index.htm,Little Rock +The Old Mill,34.7917,-92.2494,"3800 Lakeshore Dr, North Little Rock, AR 72116, USA",(501) 791-8538,Unknown,Little Rock +Arkansas Inland Maritime Museum,34.75227900000001,-92.267067,"120 Riverfront Park Dr, North Little Rock, AR 72114, USA",(501) 371-8320,https://nlr.ar.gov/departments/parks-and-recreation/arkansas-inland-maritime-museum/,Little Rock +Esse Purse Museum & Store,34.73398289999999,-92.2733658,"1510 Main St, Little Rock, AR 72202, USA",(501) 916-9022,http://essepursemuseum.com/,Little Rock +Julius Breckling Riverfront Park,34.74840929999999,-92.266912,"400 President Clinton Ave, Little Rock, AR 72201, USA",(501) 371-4770,Unknown,Little Rock +Historic Arkansas Museum,34.7460543,-92.2690532,"200 E 3rd St, Little Rock, AR 72201, USA",(501) 324-9351,http://www.historicarkansas.org/,Little Rock +AGFC Witt Stephens Jr. Central Arkansas Nature Center,34.7479751,-92.2641193,"602 President Clinton Ave, Little Rock, AR 72201, USA",(501) 251-1083,https://www.agfc.com/en/explore-outdoors/nature-centers/wsjcanc/,Little Rock +MacArthur Museum of Arkansas Military History,34.7383187,-92.2652979,"503 E 9th St, Little Rock, AR 72202, USA",(501) 376-4602,https://www.littlerock.gov/macarthur,Little Rock +Mosaic Templars Cultural Center,34.7407324,-92.2769908,"501 W 9th St, Little Rock, AR 72201, USA",(501) 683-3593,https://www.arkansasheritage.com/mosaic-templars-cultural-center/mtcc-home,Little Rock +William J. Clinton Library and Museum,34.7464097,-92.2583824,"1200 President Clinton Ave, Little Rock, AR 72201, USA",(501) 370-8000,https://www.clintonpresidentialcenter.org/,Little Rock +Central High Museum,34.738033,-92.2974622,"2120 W Daisy L Gatson Bates Dr, Little Rock, AR 72202, USA",(501) 374-1957,https://www.nps.gov/chsc/index.htm,Little Rock +ARKANSAS CIVIL RIGHTS HERITAGE TRAIL,34.7490353,-92.2726184,"300 W Markham St, Little Rock, AR 72201, USA",Unknown,https://civilrightstrail.com/attraction/arkansas-civil-rights-heritage-trail/,Little Rock +“City Dreamers” Mural,34.7434161,-92.2748384,"6th St. and, S Spring St, Little Rock, AR 72201, USA",Unknown,http://joelboydfineart.com/,Little Rock +Big Dam Bridge,34.7925668,-92.3584127,"4000 Cook's Landing Rd, North Little Rock, AR 72118, USA",Unknown,http://bigdambridge.com/,Little Rock +Rock Town Distillery,34.73699300000001,-92.2720862,"1201 Main St, Little Rock, AR 72202, USA",(501) 907-5244,http://www.rocktowndistillery.com/,Little Rock +H.U. Lee International Gate and Garden,34.74847889999999,-92.2694331,"101 E Markham St, Little Rock, AR 72201, USA",(501) 376-4781,http://www.grandmasterhulee.com/gate-and-garden/,Little Rock +Lorax Tree Carving,34.7259061,-92.2703048,"2324 Rock St, Little Rock, AR 72206, USA",Unknown,Unknown,Little Rock +Kona Cloud Forest Sanctuary,19.7065195,-155.9481795,"73-1865 Hao St, Kailua-Kona, HI 96740, USA",(808) 491-2369,http://www.konacloudforest.com/,Kona +Kaloko-Honokōhau National Historical Park,19.6778522,-156.0216868,"Kailua-Kona, HI 96740, USA",(808) 326-9057,http://www.nps.gov/kaho/contacts.htm,Kona +Hulihe‘e Palace,19.6393337,-155.9943522,"75-5718 Ali'i Drive, Kailua-Kona, HI 96740, USA",(808) 329-1877,https://daughtersofhawaii.org/hulihee-palace/,Kona +Kamakahonu National Historic Landmark,19.6388191,-155.9975195,"Kaahumanu Pl, Kailua-Kona, HI 96740, USA",Unknown,http://historichawaii.org/2014/01/27/kamakahonu-national-historic-landmark/,Kona +Voyagers of the Pacific Lū‘au,19.6321094,-155.9903138,"75-5852 Ali‘i Dr, Kailua-Kona, HI 96740, USA",(808) 427-2452,https://www.konaluau.com/?utm_source=gmb+listing&utm_medium=organic,Kona +Old Kona Airport State Recreation Area,19.6423449,-156.0077153,"75-5560 Kuakini Hwy, Kailua-Kona, HI 96740, USA",(808) 323-4322,Unknown,Kona +Niumalu Beach / Kailua Bay,19.639654,-155.994879,"75 Ali‘i Dr, Kailua-Kona, HI 96740, USA",Unknown,Unknown,Kona +Atlantis Adventures,19.6403623,-155.9977037,"75-5660 Palani Rd, Kailua-Kona, HI 96740, USA",Unknown,Unknown,Kona +Kikaua Point Park,19.8183043,-155.9995297,"Kailua-Kona, HI 96740, USA",Unknown,Unknown,Kona +Botanical World Kona,19.6375706,-155.9932915,"75-5744 Ali‘i Dr #118, Kailua-Kona, HI 96740, USA",(808) 963-5427,http://botanicalworld.com/,Kona +Pāhoehoe Beach Park,19.5960702,-155.9732178,"77-6434 Ali‘i Dr, Kailua-Kona, HI 96740, USA",Unknown,Unknown,Kona +Magic Sands Beach Park,19.5943328,-155.9718466,"Ali'i Drive, Kailua-Kona, HI 96740, USA",Unknown,Unknown,Kona +Kona Hawai‘ian Quilt Museum and Gallery,19.6401184,-155.9929826,"75-5706 Kuakini Hwy APT 112, Kailua-Kona, HI 96740, USA",(808) 331-2958,http://www.konahqm.org/,Kona +Kiholo Bay,19.8563675,-155.9217446,"71-1890 Queen Ka'ahumanu Hwy, Kailua-Kona, HI 96740, USA",(808) 961-9540,http://dlnr.hawaii.gov/dar/fishing/fishing-regulations/regulated-areas/regulated-fishing-areas-on-hawaii/#kiholo-bay,Kona +Kona Farmers Market,19.6370647,-155.9918398,"75-5767 Ali‘i Dr, Kailua-Kona, HI 96740, USA",Unknown,Unknown,Kona +Kahalu’u Beach Park,19.5792662,-155.9666712,"Ali‘i Dr, Kailua-Kona, HI 96740, USA",(808) 961-8311,http://www.hawaiicounty.gov/parks-and-recreation/,Kona +Hale Halawai Park,19.636737,-155.9926468,"75-5760 Ali‘i Dr, Kailua-Kona, HI 96740, USA",(808) 327-3565,Unknown,Kona +Maka'eo Walking Path,19.6455061,-156.0120897,"755560 Kuakini Hwy, Kailua-Kona, HI 96740, USA",Unknown,http://friendsforfitness.org/,Kona +Ironman finish line,19.6400749,-155.9965638,"755669 Ali‘i Dr, Kailua-Kona, HI 96740, USA",Unknown,Unknown,Kona +Sadie Seymour Botanical Gardens and the Kona Educational Center,19.6139353,-155.9682393,"76-6280 Kuakini Hwy, Kailua-Kona, HI 96740, USA",(808) 329-7286,Unknown,Kona +San Angelo Museum of Fine Arts,31.4574091,-100.4322436,"423 S Oakes St, San Angelo, TX 76903, USA",(325) 653-3333,http://www.samfa.org/,San Angelo +Fort Concho National Historic Landmark,31.4547729,-100.4312343,"630 S Oakes St, San Angelo, TX 76903, USA",(325) 481-2646,https://fortconcho.com/,San Angelo +San Angelo State Park,31.4638985,-100.5080343,"362 FM 2288, San Angelo, TX 76901, USA",(325) 949-4757,http://www.tpwd.state.tx.us/state-parks/parks/find-a-park/san-angelo-state-park,San Angelo +Railway Museum of San Angelo,31.453665,-100.4351625,"703 S Chadbourne St, San Angelo, TX 76903, USA",(325) 486-2140,http://sanangelorailway.org/,San Angelo +Miss Hattie's Bordello Museum,31.46041919999999,-100.4349051,"18 E Concho Ave, San Angelo, TX 76903, USA",(325) 653-0112,http://misshatties.com/,San Angelo +International Waterlily Collection,31.459059,-100.4515359,"2 S Park St, San Angelo, TX 76901, USA",(832) 274-3377,http://www.internationalwaterlilycollection.com/,San Angelo +Concho Riverwalk,31.4586909,-100.4348643,"24 W Concho Ave, San Angelo, TX 76903, USA",(325) 655-2345,https://www.downtownsanangelo.com/riverwalk,San Angelo +Concho Riverwalk,31.4603787,-100.4425251,"301 W Beauregard Ave, San Angelo, TX 76903, USA",(325) 481-2727,http://www.cosatx.us/Bosque,San Angelo +River Walk,31.4591103,-100.4331382,"332 S Oakes St, San Angelo, TX 76903, USA",(325) 481-2727,https://www.cosatx.us/departments-services/parks-recreation/the-bosque,San Angelo +The Bosque along the Concho River,31.4582187,-100.4356585,"330 S Irving St, San Angelo, TX 76903, USA",(325) 657-4450,http://www.cosatx.us/bosque,San Angelo +San Angelo's first Historical Mural,31.45450669999999,-100.4346722,"643 S Chadbourne St, San Angelo, TX 76903, USA",(325) 653-0112,http://historicmuralsofsanangelo.org/chadbourne.html,San Angelo +"San Angelo State Park, South Entrance",31.4577593,-100.5150591,"San Angelo, TX 76901, USA",(325) 949-8935,https://tpwd.texas.gov/state-parks/san-angelo,San Angelo +Lake Nasworthy Lookout,31.3898381,-100.5051103,"9FQV+WX, San Angelo, TX 76904, USA",Unknown,Unknown,San Angelo +Kayak Launch,31.45655499999999,-100.4402872,"San Angelo, TX 76903, USA",Unknown,Unknown,San Angelo +Mayer Museum,31.4422734,-100.4638287,"2501 W Ave N, San Angelo, TX 76904, USA",(325) 942-2785,https://www.angelo.edu/community/mayer-museum/,San Angelo +Farm and Ranch Museum of the Concho Valley,31.4602218,-100.4339509,"305 S Oakes St, San Angelo, TX 76903, USA",(325) 653-3333,https://m.facebook.com/cvfarmranch,San Angelo +Middle Concho Park,31.3795136,-100.5199553,"Middle Concho Dr, San Angelo, TX 76904, USA",(325) 657-4279,http://www.cosatx.us/Home/Components/FacilityDirectory/FacilityDirectory/30/555,San Angelo +Pop Art Museum,31.4600198,-100.4389837,"125 W Twohig Ave, San Angelo, TX 76903, USA",Unknown,https://sapopartmuseum.com/,San Angelo +Angelo State University Planetarium,31.4410511,-100.46135,"2333 Vanderventer Ave, San Angelo, TX 76904, USA",(325) 942-2136,http://www.angelo.edu/dept/physics/planetarium.php,San Angelo +Think In A Box - Escape Room,31.4604492,-100.4330139,"Happy to open any day or time, 123 E Concho Ave, San Angelo, TX 76903, USA",(325) 650-1755,https://www.thinkinaboxtx.com/,San Angelo +Downtown Aquarium,29.7642703,-95.36737920000002,"410 Bagby St, Houston, TX 77002, USA",(713) 223-3474,http://www.aquariumrestaurants.com/downtownaquariumhouston/,Houston +Space Center Houston,29.551832,-95.0981044,"1601 E NASA Pkwy, Houston, TX 77058, USA",(281) 244-2100,https://www.spacecenter.org/,Houston +Water Wall,29.7357404,-95.4613154,"2800 Post Oak Blvd, Houston, TX 77056, USA",(713) 850-8841,https://uptown-houston.com/experience/parks/waterwall-park/,Houston +Houston Museum of Natural Science,29.7220625,-95.3895625,"5555 Hermann Park Dr, Houston, TX 77030, USA",(713) 639-4629,https://www.hmns.org/,Houston +Houston Zoo,29.71578129999999,-95.3903207,"6200 Hermann Park Dr, Houston, TX 77030, USA",(713) 533-6500,https://www.houstonzoo.org/,Houston +"The Museum of Fine Arts, Houston",29.7256229,-95.3905328,"1001 Bissonnet St, Houston, TX 77005, USA",(713) 639-7300,https://www.mfah.org/,Houston +Hermann Park,29.7135284,-95.3899524,"6001 Fannin St, Houston, TX 77030, USA",(713) 526-2183,https://www.hermannpark.org/,Houston +Houston Arboretum & Nature Center,29.7652236,-95.4520705,"4501 Woodway Dr, Houston, TX 77024, USA",(713) 681-8433,http://www.houstonarboretum.org/,Houston +"Bayou Bend Collection and Gardens, Museum of Fine Arts, Houston",29.7606593,-95.4216927,"6003 Memorial Dr, Houston, TX 77007, USA",(713) 639-7750,http://www.mfah.org/visit/bayou-bend-collection-and-gardens/,Houston +Market Square Park,29.7626451,-95.3623608,"301 Milam St, Houston, TX 77002, USA",(713) 650-3022,http://marketsquarepark.com/,Houston +Discovery Green,29.7532402,-95.3599123,"1500 McKinney St, Houston, TX 77010, USA",(713) 400-7336,http://www.discoverygreen.com/,Houston +Smither Park,29.7167608,-95.3246374,"2441 Munger St, Houston, TX 77023, USA",(713) 926-6368,http://orangeshow.org/,Houston +Children's Museum Houston,29.7229313,-95.385289,"1500 Binz St, Houston, TX 77004, USA",(713) 522-1138,https://www.cmhouston.org/?utm_source=google&utm_medium=organic&utm_campaign=gmbhouston,Houston +Holocaust Museum Houston,29.7252479,-95.3856873,"5401 Caroline St, Houston, TX 77004, USA",(713) 942-8000,https://hmh.org/,Houston +Sam Houston Park,29.7601375,-95.3716402,"1000 Bagby St, Houston, TX 77002, USA",(832) 394-8805,https://www.houstontx.gov/abouthouston/samhoustonpark.html,Houston +Houston Legendary Graffiti Building,29.7473046,-95.35936,"2011 Leeland St, Houston, TX 77003, USA",(409) 245-3778,https://instagram.com/gofa_dagusto1k?utm_source=qr&igshid=MzNlNGNkZWQ4Mg%3D%3D,Houston +Gerald D. Hines Waterwall Park,29.7359479,-95.4613024,"2800 Post Oak Blvd, Houston, TX 77056, USA",(713) 850-8841,http://www.uptown-houston.com/news/page/water-wall-park,Houston +Beer Can House,29.763759,-95.4191033,"222 Malone St, Houston, TX 77007, USA",(713) 926-6368,https://www.full.orangeshow.org/beer-can-house,Houston +American Statesmanship Park,29.7713213,-95.3669258,"1400 Elder St, Houston, TX 77007, USA",(713) 344-6568,https://www.waymarking.com/waymarks/WMNHPK_Mount_Rush_Hour_Houston_TX,Houston +Pioneer Memorial Obelisk,29.7186327,-95.3909288,"6001 Fannin St, Houston, TX 77030, USA",Unknown,http://www.hermannpark.org/poi/44/,Houston +Glensheen Mansion,46.815161,-92.051791,"3300 London Rd, Duluth, MN 55804, USA",(888) 454-4536,http://glensheen.org/,Duluth +Leif Erikson Park,46.7960171,-92.0829666,"1301 London Rd, Duluth, MN 55805, USA",(218) 730-4300,http://www.duluthmn.gov/parks/parks-listing/leif-erikson-park/,Duluth +Lake Superior Railroad Museum,46.7810639,-92.1041611,"506 W Michigan St, Duluth, MN 55802, USA",(218) 727-8025,http://www.lsrm.org/,Duluth +Lake Superior Maritime Visitor Center,46.779847,-92.092464,"600 Canal Park Dr, Duluth, MN 55802, USA",(218) 788-6430,https://www.lsmma.com/content.aspx?page_id=22&club_id=605134&module_id=308439,Duluth +Enger Park,46.77578880000001,-92.1241707,"1601 Enger Tower Dr, Duluth, MN 55806, USA",(405) 314-5693,http://www.duluthmn.gov/parks/parks-listing/enger-park/,Duluth +The St. Louis County Depot,46.7811,-92.1039528,"506 W Michigan St, Duluth, MN 55802, USA",(218) 733-7571,http://www.experiencethedepot.org/,Duluth +Gichi-ode' Akiing,46.7890125,-92.0937993,"N 2nd Ave E & East Michigan Street, Duluth, MN 55802, USA",(218) 730-4300,http://www.duluthmn.gov/parks/parks-listing/lake-place-park/,Duluth +Hartley Nature Center,46.8385303,-92.0829445,"3001 Woodland Ave, Duluth, MN 55803, USA",(218) 724-6735,http://hartleynature.org/,Duluth +The CRIBS (Uncle Harvey's Mausoleum),46.7845678,-92.0920592,"The Lake Walk, Duluth, MN 55802, USA",Unknown,https://www.atlasobscura.com/places/uncle-harveys-mausoleum,Duluth +Bayfront Festival Park,46.7773348,-92.1021589,"350 Harbor Dr, Duluth, MN 55802, USA",(218) 722-5573,http://bayfrontfestivalpark.com/,Duluth +Kitchi Gammi Park,46.842482,-91.9943856,"7030 Congdon Blvd, Duluth, MN 55804, USA",(218) 730-4305,https://duluthmn.gov/parks/parks-listing/brighton-beach-park-kitchi-gammi/,Duluth +The Duluth Lakewalk,46.7802213,-92.0914878,"The Lakewalk, Duluth, MN 55802, USA",Unknown,https://www.friendsofthelakewalk.org/,Duluth +Duluth Children's Museum,46.7663731,-92.1255398,"2125 W Superior St, Duluth, MN 55806, USA",(218) 733-7543,http://www.playduluth.org/,Duluth +Lake Superior Zoo,46.725798,-92.190494,"7210 Fremont St, Duluth, MN 55807, USA",(218) 730-4500,http://lszooduluth.org/,Duluth +Duluth Diamond Railroad Crossing,46.7700013,-92.1144142,"Rice's Point, Duluth, MN 55802, USA",Unknown,Unknown,Duluth +Great Lakes Aquarium,46.7789955,-92.1000213,"353 Harbor Dr, Duluth, MN 55802, USA",(218) 740-3474,http://www.glaquarium.org/,Duluth +Spirit Mountain Recreation Area,46.71826839999999,-92.2167365,"9500 Spirit Mountain Pl, Duluth, MN 55810, USA",(218) 628-2891,http://www.spiritmt.com/,Duluth +Aerial Lift Bridge,46.77901139999999,-92.09292,"601 S Lake Ave, Duluth, MN 55802, USA",Unknown,https://www.dot.state.mn.us/historicbridges/L6116.html,Duluth +Duluth Rose Garden,46.7982032,-92.0807614,"15 S 13th Ave E, Duluth, MN 55802, USA",(218) 730-4300,http://www.duluthmn.gov/parks/parks-listing/rose-garden/,Duluth +North Shore Scenic Railroad,46.7818561,-92.1036946,"506 W Michigan St, Duluth, MN 55802, USA",(218) 722-1273,http://www.duluthtrains.com/,Duluth +Brauer Museum of Art,41.46395870000001,-87.039985,"1709 Chapel Dr, Valparaiso, IN 46383, USA",(219) 464-5365,http://www.valpo.edu/artmuseum/,Valparaiso +Rogers-Lakewood Park,41.5166258,-87.06591790000002,"5320 N Campbell St, Valparaiso, IN 46383, USA",(219) 462-1959,http://www.ci.valparaiso.in.us/633/Rogers-Lakewood-Park,Valparaiso +Forest Park,41.47938310000001,-87.0696068,"564 Harrison Blvd, Valparaiso, IN 46385, USA",(219) 462-5114,http://valpoparks.org/,Valparaiso +Butterfly Meadows & Caterpillar Crossing,41.498283,-87.06381809999999,"3210 N Campbell St, Valparaiso, IN 46385, USA",(219) 462-5144,https://www.valpoparks.org/facilities/facility/details/Butterfly-Meadows-Caterpillar-Crossing-8,Valparaiso +Central Park Plaza,41.46729999999999,-87.0619,"68 Lafayette St, Valparaiso, IN 46383, USA",(219) 548-4888,http://www.centralparkplazavalpo.com/,Valparaiso +Ogden Gardens Park,41.4795418,-87.06646760000001,"451 Harrison Blvd, Valparaiso, IN 46385, USA",Unknown,http://valpoparks.org/,Valparaiso +Gabis Arboretum at Purdue Northwest,41.44776830000001,-87.15275969999999,"450 W 100 N, Valparaiso, IN 46385, USA",(219) 462-0025,https://www.pnw.edu/gabis-arboretum/,Valparaiso +Valpo Parks,41.497149,-87.063636,"3210 N Campbell St, Valparaiso, IN 46385, USA",(219) 462-5144,http://www.valpoparks.org/,Valparaiso +Porter County Museum,41.46660379999999,-87.0599672,"20 Indiana Ave, Valparaiso, IN 46383, USA",(219) 510-1836,http://pocomuse.org/,Valparaiso +contact — World of Ugly,41.4711132,-87.0739208,"1150 West Lincolnway Valparaiso Center Township, Valparaiso, IN 46383, USA",(312) 898-0226,Unknown,Valparaiso +Glenrose Park North - ValPLAYso,41.48494329999999,-87.04347399999999,"1400 E Glendale Blvd, Valparaiso, IN 46383, USA",(219) 462-5144,http://www.valpoparks.org/,Valparaiso +Meadowbrook Nature Preserve,41.5359895,-87.0872842,"109 W 700 N, Valparaiso, IN 46385, USA",(219) 242-8558,http://www.heinzetrust.org/meadowbrook,Valparaiso +Lakewood Park - Gertsmeyer Bridge,41.51540600000001,-87.06467599999999,"5100-5298 N Meridian Rd, Valparaiso, IN 46383, USA",(219) 462-5144,http://www.ci.valparaiso.in.us/,Valparaiso +Bicentennial Park,41.5072009,-87.06381189999999,"175 Burlington Beach Rd, Valparaiso, IN 46383, USA",Unknown,http://www.ci.valparaiso.in.us/607/Bicentennial-Park,Valparaiso +Sunset Hill Farm County Park,41.5456429,-87.0636321,"775 Meridian Rd #8507, Valparaiso, IN 46383, USA",(219) 465-3586,https://www.portercountyparks.org/sunset-hill,Valparaiso +Center Township Diamond Railroad Crossing #1,41.4882155,-87.1164225,"356 N 250 W, Valparaiso, IN 46385, USA",Unknown,Unknown,Valparaiso +Will Park,41.464074,-87.0581732,"354 Morgan Blvd, Valparaiso, IN 46383, USA",(219) 462-5144,http://www.valpoparks.org/,Valparaiso +Chapel of the Resurrection,41.46313610000001,-87.0418139,"Valparaiso, IN 46383, USA",(219) 464-5000,https://www.valpo.edu/chapel/,Valparaiso +Zao Island,41.4585022,-87.0676757,"1050 Horse Prairie Ave, Valparaiso, IN 46385, USA",(219) 462-1194,http://www.zaoisland.net/,Valparaiso +Moraine Nature Preserve,41.5423479,-87.0177034,"Valparaiso, IN 46383, USA",(703) 841-5300,http://www.nature.org/ourinitiatives/regions/northamerica/unitedstates/indiana/placesweprotect/moraine-nature-preserve.xml,Valparaiso +Phoenix Zoo,33.45003740000001,-111.9470063,"455 N Galvin Pkwy, Phoenix, AZ 85008, USA",(602) 286-3800,https://www.phoenixzoo.org/,Phoenix +Heard Museum,33.4725814,-112.0722331,"2301 N Central Ave, Phoenix, AZ 85004, USA",(602) 252-8840,https://heard.org/,Phoenix +Desert Botanical Garden,33.4616795,-111.944926,"1201 N Galvin Pkwy, Phoenix, AZ 85008, USA",(480) 941-1225,https://www.dbg.org/,Phoenix +Phoenix Art Museum,33.4670863,-112.0727721,"1625 N Central Ave, Phoenix, AZ 85004, USA",(602) 257-1880,https://phxart.org/,Phoenix +Enchanted Island Amusement Park,33.474739,-112.088152,"1202 W Encanto Blvd, Phoenix, AZ 85007, USA",(602) 254-1200,http://www.enchantedisland.com/,Phoenix +Hole in the Rock,33.4564869,-111.9452606,"625 N Galvin Pkwy, Phoenix, AZ 85008, USA",(602) 495-5458,https://www.phoenix.gov/parks/trails/locations/papago-park,Phoenix +Arizona Science Center,33.4485282,-112.0662095,"600 E Washington St, Phoenix, AZ 85004, USA",(602) 716-2000,https://azscience.org/,Phoenix +The Japanese Friendship Garden of Phoenix,33.4609597,-112.0765703,"1125 N 3rd Ave, Phoenix, AZ 85003, USA",(602) 274-8700,http://www.japanesefriendshipgarden.org/?utm_source=google&utm_medium=wix_google_business_profile&utm_campaign=1646036250481864746,Phoenix +Arizona Capitol Museum,33.4480967,-112.0970236,"1700 W Washington St, Phoenix, AZ 85007, USA",(602) 926-3620,https://www.azlibrary.gov/azcm,Phoenix +Musical Instrument Museum,33.6679904,-111.9782969,"4725 E Mayo Blvd, Phoenix, AZ 85050, USA",(480) 478-6000,https://mim.org/,Phoenix +Papago Park,33.4536315,-111.948693,"625 N Galvin Pkwy, Phoenix, AZ 85008, USA",(602) 495-5458,https://www.phoenix.gov/parks/trails/locations/papago-park,Phoenix +Heritage & Science Park/Historic Heritage Square,33.450207,-112.0659142,"113 N 6th St, Phoenix, AZ 85004, USA",(602) 258-0048,https://heritagesquarephx.org/,Phoenix +Children’s Museum of Phoenix,33.4504029,-112.0645824,"215 N 7th St, Phoenix, AZ 85034, USA",(602) 253-0501,http://www.childrensmuseumofphoenix.org/,Phoenix +Arizona Falls,33.4899045,-111.9587094,"5802 E Indian School Rd, Phoenix, AZ 85018, USA",(602) 236-8888,https://www.srpnet.com/water/canals/azfalls.aspx,Phoenix +Dobbins Lookout,33.3454505,-112.0585719,"Phoenix, AZ 85042, USA",Unknown,https://www.phoenix.gov/parks/trails/locations/south-mountain,Phoenix +Phoenix Bat Cave,33.5145059,-112.0012821,"3698-3694 E Colter St, Phoenix, AZ 85018, USA",Unknown,Unknown,Phoenix +South Mountain Park and Preserve,33.34033679999999,-112.0609473,"10919 S Central Ave, Phoenix, AZ 85042, USA",(602) 495-5458,http://phoenix.gov/parks/trails/locations/south/index.html,Phoenix +Hall of Flame Fire Museum,33.4476794,-111.953272,"6101 E Van Buren St, Phoenix, AZ 85008, USA",(602) 275-3473,http://www.hallofflame.org/,Phoenix +S'edav Va'aki Museum (formerly Pueblo Grande Museum),33.4457435,-111.9846914,"4619 E Washington St, Phoenix, AZ 85034, USA",(602) 495-0901,https://www.phoenix.gov/sedav-vaaki,Phoenix +Butterfly Wonderland,33.5545114,-111.87619,"9500 East Vía de Ventura F100, Scottsdale, AZ 85256, USA",(480) 800-3000,http://butterflywonderland.com/,Phoenix +Oakland Zoo,37.7486635,-122.1454166,"9777 Golf Links Rd, Oakland, CA 94605, USA",(510) 632-9525,http://www.oaklandzoo.org/,Oakland +Chabot Space & Science Center,37.81874739999999,-122.1807217,"10000 Skyline Blvd, Oakland, CA 94619, USA",(510) 336-7300,http://www.chabotspace.org/,Oakland +Knowland Park,37.7559541,-122.1316042,"9777 Golf Links Rd, Oakland, CA 94605, USA",(510) 615-5566,http://www2.oaklandnet.com/government/o/opr/s/Parks/index.htm,Oakland +Reinhardt Redwood Regional Park,37.8115064,-122.1629595,"7867 Redwood Rd, Oakland, CA 94619, USA",(888) 327-2757,http://www.ebparks.org/parks/redwood,Oakland +Children's Fairyland,37.8081474,-122.2605499,"699 Bellevue Ave, Oakland, CA 94610, USA",(510) 452-2259,http://www.fairyland.org/,Oakland +Oakland Aviation Museum,37.7331781,-122.2126447,"8252 Earhart Rd, Oakland, CA 94621, USA",(510) 638-7100,https://www.oaklandaviationmuseum.org/,Oakland +The Pergola at Lake Merritt,37.8085518,-122.249744,"599 El Embarcadero, Oakland, CA 94610, USA",Unknown,Unknown,Oakland +Jack London's Cabin,37.7938807,-122.2748216,"1-199 Webster Street Tube, Oakland, CA 94607, USA",Unknown,Unknown,Oakland +Pyramid to Moses,37.8126616,-122.1906871,"Joaquin Miller Park, Oakland, CA 94602, USA",Unknown,Unknown,Oakland +Black Food Tour,37.80343180000001,-122.2715248,"Various Locations, Oakland, CA 94607, USA",(510) 224-3346,http://blackfoodtour.com/,Oakland +Rotary Nature Center,37.8071638,-122.2559996,"600 Bellevue Ave, Oakland, CA 94610, USA",(510) 238-3739,https://www.oaklandca.gov/topics/rotary-nature-center,Oakland +Temescal Regional Recreation Area,37.8478593,-122.233447,"6500 Broadway, Oakland, CA 94618, USA",(888) 327-2757,http://www.ebparks.org/parks/temescal,Oakland +Snow Park,37.8071141,-122.2642898,"Harrison St & 19th St, Lakeside Dr, Oakland, CA 94612, USA",(510) 238-7275,Unknown,Oakland +Joaquin Miller Park,37.8142056,-122.1845382,"3300 Joaquin Miller Rd, Oakland, CA 94602, USA",(510) 615-5566,https://www.oaklandca.gov/topics/joaquin-miller-park,Oakland +Pardee Home Museum,37.80474770000001,-122.2778923,"672 11th St, Oakland, CA 94607, USA",(510) 444-2187,http://www.pardeehome.org/,Oakland +Chappell Hayes Observation Tower,37.79971099999999,-122.3263102,"2777 Middle Harbor Rd, Oakland, CA 94607, USA",Unknown,https://www.portofoakland.com/port/seaport/middle-harbor/park-features/,Oakland +Middle Harbor Shoreline Park,37.8045767,-122.3232961,"2777 Middle Harbor Rd, Oakland, CA 94607, USA",(510) 627-1634,http://www.portofoakland.com/port/seaport/middle-harbor/,Oakland +Eastshore Park,37.809542,-122.2481954,"Oakland, CA 94610, USA",Unknown,Unknown,Oakland +Huckleberry Botanic Regional Preserve,37.8428628,-122.1949799,"7087 Skyline Blvd, Oakland, CA 94611, USA",(888) 327-2757,http://www.ebparks.org/parks/huckleberry,Oakland +Oakland Sports Street Art Mural,37.8383784,-122.2696819,"5319 Martin Luther King Jr Way, Oakland, CA 94609, USA",Unknown,Unknown,Oakland +Sci-Tech Museum,43.9743485,-75.9131192,"154 Stone St, Watertown, NY 13601, USA",(315) 788-1340,http://www.scitechcenter.org/,Watertown +Public Square,43.9746047,-75.9096945,"1 Public Square, Watertown, NY 13601, USA",(315) 785-7775,Unknown,Watertown +Jefferson County Historical Society,43.9732439,-75.9118196,"228 Washington St, Watertown, NY 13601, USA",(315) 782-3491,http://www.jeffersoncountyhistory.org/,Watertown +Historic Thompson Park,43.9635447,-75.88783959999999,"Thompson Park, Watertown, NY 13601, USA",(315) 785-7775,https://historicthompsonpark.org/,Watertown +Roswell P. Flower Monument,43.9738625,-75.91092499999999,"Watertown, NY 13601, USA",(315) 785-7705,https://www.flowermemoriallibrary.org/,Watertown +Waterworks Park,43.9779233,-75.8801332,"1630 Huntington St, Watertown, NY 13601, USA",(315) 785-7780,https://hmienterprises.com/nnytrails/waterworks-park/,Watertown +Zero Latency VR - Watertown,43.9784611,-75.95328529999999,"21182 Salmon Run Mall Loop W Suite B101, Watertown, NY 13601, USA",(315) 767-2286,http://www.zerolatencyvr.com/,Watertown +Marble Street Park,43.97759629999999,-75.8736852,"Watertown, NY 13601, USA",Unknown,Unknown,Watertown +Honor the Mountain Monument,43.9620834,-75.88932489999999,"34 Thompson Park, Watertown, NY 13601, USA",Unknown,http://www.honorthemountain.com/,Watertown +Dry Hill Ski Area,43.931234,-75.90181,"18160 Alpine Ridge Rd, Watertown, NY 13601, USA",(315) 782-8584,http://skidryhill.com/,Watertown +The Escape Works Inc,43.97428439999999,-75.9123201,"140 Stone St, Watertown, NY 13601, USA",(315) 771-0787,https://www.theescapeworks.com/,Watertown +Zoo New York,43.9619033,-75.8855962,"1 Thompson Park, Watertown, NY 13601, USA",(315) 782-6180,https://www.zoonewyork.org/,Watertown +Fun on the Run,43.9771697,-75.9533395,"21182 Salmon Run Mall Loop W, Watertown, NY 13601, USA",(315) 777-8003,https://www.shopsalmonrunmall.com/tenants/fun-on-the-run/,Watertown +Escape the Mystery Room,43.97760660000001,-75.9534674,"21182 Salmon Run Mall Loop W Suite D, Watertown, NY 13601, USA",(315) 965-8010,https://allinadventures.com/locations/watertown-ny,Watertown +Black River Outfitters,43.9818179,-75.9148314,"531 W Main St, Watertown, NY 13601, USA",(888) 960-4276,http://www.brorafting.com/,Watertown +Ogden Nature Center,41.24476000000001,-112.003537,"966 W 12th St, Ogden, UT 84404, USA",(801) 621-7595,http://www.ogdennaturecenter.org/,Ogden +Ogden's George S. Eccles Dinosaur Park,41.237827,-111.937941,"1544 Park Blvd, Ogden, UT 84401, USA",(801) 393-3466,http://www.dinosaurpark.org/,Ogden +Union Station,41.2207103,-111.9797967,"Union Station, 2501 Wall Ave, Ogden, UT 84401, USA",(801) 629-8680,https://www.ogdencity.com/1337/Visit,Ogden +Beus Pond Park,41.1846451,-111.9377521,"4240 Country Hills Dr, Ogden, UT 84403, USA",Unknown,https://www.ogdencity.com/Facilities/Facility/Details/Beus-Pond-Park-8,Ogden +Fort Buenaventura Park,41.2204023,-111.9882658,"2450 A Ave, Ogden, UT 84401, USA",(801) 399-8099,https://www.wcparksrec.com/fortbuenaventura,Ogden +Treehouse Children's Museum,41.2265046,-111.9718977,"347 22nd St, Ogden, UT 84401, USA",(801) 394-9663,https://www.treehousemuseum.org/,Ogden +High Adventure Park,41.2350515,-111.974386,"251 18th St, Ogden, UT 84401, USA",(801) 629-8271,http://www.ogdencity.com/461/Parks,Ogden +Big-Dee Sports Park,41.2358297,-111.9431432,"1375 Park Blvd, Ogden, UT 84401, USA",(801) 629-8253,https://www.ogdencity.com/,Ogden +Browning-Kimball Classic Car Museum,41.2211715,-111.9796649,"2501 Wall Ave suite a, Ogden, UT 84401, USA",(801) 629-8672,Unknown,Ogden +Eccles Art Center,41.2187218,-111.9645087,"2580 Jefferson Ave, Ogden, UT 84401, USA",(801) 392-6935,http://www.ogden4arts.org/,Ogden +Mount Ogden Park,41.2080858,-111.9392076,"3144 Taylor Ave, Ogden, UT 84403, USA",(801) 629-8284,https://www.ogdencity.com/Facilities/Facility/Details/Mount-Ogden-Park-32,Ogden +Lorin Farr Park,41.2371297,-111.9594831,"769 Canyon Rd, Ogden, UT 84404, USA",(801) 399-4357,https://www.ogdencity.com/Facilities/Facility/Details/Lorin-Farr-Park,Ogden +Ogden Botanical Gardens,41.2351739,-111.9535463,"1750 Monroe Blvd, Ogden, UT 84401, USA",(801) 399-8080,http://ogdenbotanicalgardens.org/,Ogden +South Ogden Nature Park,41.1535558,-111.9493568,"1175 E 5875 S St, South Ogden, UT 84405, USA",(801) 479-4613,http://www.southogdencity.com/departments/parks.php,Ogden +Weber Co Daughters of Utah Pioneers Museum,41.2288946,-111.9755369,"2104 Lincoln Ave, Ogden, UT 84401, USA",(801) 393-4460,Unknown,Ogden +Star Noodle Dragon,41.2205006,-111.9753012,"225 25th St, Ogden, UT 84401, USA",Unknown,Unknown,Ogden +North Ogden Historical Museum,41.3094087,-111.9636436,"545 E 2750 N, North Ogden, UT 84414, USA",(801) 782-4458,http://www.wp.nohmuseum.org/,Ogden +Ogden Bike Park,41.248405,-111.9330621,"Trailhead, 9th St, Ogden, UT 84404, USA",(801) 629-8284,https://www.facebook.com/ogdenbikepark,Ogden +West Ogden Water Tower,41.2219604,-112.0027305,"2455 Pennsylvania Ave, Ogden, UT 84401, USA",Unknown,Unknown,Ogden +Marquardt Park,41.2044286,-111.9395595,"3280 Taylor Ave, Ogden, UT 84403, USA",Unknown,Unknown,Ogden +Cape River Heritage Museum,37.3042614,-89.52527719999999,"538 Independence St, Cape Girardeau, MO 63703, USA",(573) 334-0405,Unknown,Cape Girardeau +Crisp Museum,37.2962544,-89.5220744,"518 S Fountain St, Cape Girardeau, MO 63703, USA",(573) 651-2260,https://semo.edu/museum/,Cape Girardeau +Cape Safari Park,37.3747165,-89.6053252,"2763 Co Rd 618, Cape Girardeau, MO 63701, USA",(573) 243-7862,http://www.capesafaripark.com/,Cape Girardeau +Red House Interpretive Center,37.30086860000001,-89.51872449999999,"128 Aquamsi St, Cape Girardeau, MO 63703, USA",(573) 335-1631,https://www.cityofcapegirardeau.org/departments/parks/Facilities/red_house_interpretive_center,Cape Girardeau +The Glenn House,37.2981477,-89.52068849999999,"325 S Spanish St, Cape Girardeau, MO 63703, USA",Unknown,https://www.glennhouse.org/,Cape Girardeau +Cape Girardeau Conservation Nature Center,37.3435806,-89.59001579999999,"2289 County Park Dr, Cape Girardeau, MO 63701, USA",(573) 290-5218,https://mdc.mo.gov/capecnc,Cape Girardeau +Cape Rock Park,37.32853290000001,-89.49606190000002,"E Cape Rock Dr, Cape Girardeau, MO 63701, USA",(573) 339-6340,Unknown,Cape Girardeau +Historic Fort D,37.2908661,-89.526275,"920 Fort St, Cape Girardeau, MO 63701, USA",(573) 335-1631,https://fortdhistoricsite.com/,Cape Girardeau +World's Largest Fountain Cup,37.2905442,-89.5717366,"425 S Mt Auburn Rd, Cape Girardeau, MO 63703, USA",Unknown,Unknown,Cape Girardeau +Riverfront Bridge Park,37.2974162,-89.51976619999999,"Morgan Oak St, Cape Girardeau, MO 63703, USA",Unknown,Unknown,Cape Girardeau +Discovery Playhouse,37.3066621,-89.5238639,"502 Broadway St, Cape Girardeau, MO 63701, USA",(573) 335-7529,http://www.discoveryplayhouse.org/,Cape Girardeau +Levi's Adventure Trail,37.3417809,-89.59233230000001,"2400 County Park Dr, Cape Girardeau, MO 63701, USA",(573) 243-1052,http://www.levisadventuretrail.com/,Cape Girardeau +Capaha Park,37.3128567,-89.5372867,"1400 Broadway St, Cape Girardeau, MO 63701, USA",(573) 339-6340,Unknown,Cape Girardeau +Dennis Scivally Park,37.328107,-89.54978899999999,"2428 Cape Rock Dr, Cape Girardeau, MO 63701, USA",Unknown,https://cityofcapegirardeau.org/departments/parks,Cape Girardeau +Cape Girardeau County Park South,37.3409508,-89.5923421,"2400 County Park Dr, Cape Girardeau, MO 63701, USA",(573) 335-4146,https://www.capecounty.us/parks-department/,Cape Girardeau +Cape Splash Family Aquatic Center,37.3288943,-89.5693637,"1625 N Kingshighway St, Cape Girardeau, MO 63701, USA",(573) 339-6343,https://www.cityofcape.org/capesplash,Cape Girardeau +Riverfront park,37.3052974,-89.5174431,"121 N Water St, Cape Girardeau, MO 63701, USA",Unknown,Unknown,Cape Girardeau +John Boardman Pavilion,37.30283899999999,-89.5184628,"42 S Main St, Cape Girardeau, MO 63703, USA",Unknown,Unknown,Cape Girardeau +Cape Woods Conservation Area,37.32676619999999,-89.57190600000001,"1348 N Mt Auburn Rd, Cape Girardeau, MO 63701, USA",(573) 290-5730,https://mdc.mo.gov/discover-nature/places/cape-woods-conservation-area,Cape Girardeau +Groves Park,37.32497239999999,-89.5479884,"2400 Jean Ann Dr, Cape Girardeau, MO 63701, USA",Unknown,Unknown,Cape Girardeau +Soo Locks,46.50328889999999,-84.35169479999999,"Soo Locks, Sault Ste. Marie, MI 49783, USA",(906) 632-3366,http://www.saultstemarie.com/attractions/soo-locks/,Sault Ste. Marie +Sault Ste. Marie Boardwalk,46.51018089999999,-84.339156,"St Mary's River Dr, Sault Ste. Marie, ON P6A, Canada",(705) 759-2500,http://www.saulttourism.com/what-to-do/attractions/listing.aspx?listing=33,Sault Ste. Marie +Soo Locks Park,46.50186489999999,-84.3469586,"329 W Portage Ave, Sault Ste. Marie, MI 49783, USA",Unknown,http://www.saultstemarie.com/member-detail/soo-locks-park/,Sault Ste. Marie +Rotary Island Park,46.4838752,-84.3007838,"Sault Ste. Marie, MI 49783, USA",Unknown,Unknown,Sault Ste. Marie +Sault Historical Sites,46.4989479,-84.3371682,"501 E Water St, Sault Ste. Marie, MI 49783, USA",(906) 632-3658,https://www.saulthistoricsites.com/,Sault Ste. Marie +Ermatinger Clergue National Historic Site,46.50559999999999,-84.325026,"800 Bay St, Sault Ste. Marie, ON P6A 3G4, Canada",(705) 759-5443,https://saultstemarie.ca/City-Hall/City-Departments/Community-Services/Recreation-and-Culture/Historic-Sites-and-Heritage/Ermatinger-Clergue-National-Historic-Site.aspx?ext=.,Sault Ste. Marie +Museum Ship Valley Camp,46.499465,-84.33613179999999,"501 E Water St, Sault Ste. Marie, MI 49783, USA",(906) 632-3658,http://www.saulthistoricsites.com/,Sault Ste. Marie +Gros Cap Conservation Area,46.5390314,-84.5865354,"Marshall Dr, Sault Ste. Marie, ON P6A 6K4, Canada",(705) 946-8530,http://ssmrca.ca/index.cfm?fuseaction=content&menuid=24&pageid=1023,Sault Ste. Marie +Sault Ste. Marie Canal National Historic Site,46.5132426,-84.3508986,"1 Canal Dr, Sault Ste. Marie, ON P6A 6W4, Canada",(705) 941-6262,https://pc.gc.ca/sault?utm_source=gmb&utm_medium=sault,Sault Ste. Marie +Bellevue Park,46.5018013,-84.2983643,"1310 Queen St E, Sault Ste. Marie, ON P6A 4A5, Canada",(705) 759-2500,https://saultstemarie.ca/City-Hall/City-Departments/Public-Works-Engineering-Services/Public-Works/Parks/Bellevue-Park.aspx,Sault Ste. Marie +Soo Locks Visitor Center,46.5018315,-84.3506858,"312 W Portage Ave, Sault Ste. Marie, MI 49783, USA",(906) 202-1333,http://www.lre.usace.army.mil/Missions/Recreation/Soo-Locks-Visitor-Center/,Sault Ste. Marie +River of History Museum,46.4963989,-84.3478164,"531 Ashmun St, Sault Ste. Marie, MI 49783, USA",(906) 632-1999,http://www.riverofhistory.org/,Sault Ste. Marie +Canadian Bushplane Heritage Centre,46.5046915,-84.32377919999999,"50 Pim St, Sault Ste. Marie, ON P6A 3G4, Canada",(705) 945-6242,http://bushplane.com/,Sault Ste. Marie +Sault Ste. Marie Museum,46.5080303,-84.3278488,"690 Queen St E, Sault Ste. Marie, ON P6A 2A4, Canada",(705) 759-7278,http://www.saultmuseum.ca/,Sault Ste. Marie +Pointe aux Pins Range Front Lighthouse,46.46775640000001,-84.47238349999999,"300 Pointe Louise Dr, Sault Ste. Marie, ON P6A 5K6, Canada",Unknown,Unknown,Sault Ste. Marie +The Roberta Bondar Park and Tent Pavilion,46.5086609,-84.336828,"65 Foster Dr, Sault Ste. Marie, ON P6A 5N1, Canada",(705) 759-5310,http://saultstemarie.ca/BondarPark,Sault Ste. Marie +Tower of History,46.49815,-84.3405389,"326 E Portage Ave, Sault Ste. Marie, MI 49783, USA",(906) 632-3658,http://www.saulthistoricsites.com/tower-of-history/,Sault Ste. Marie +Clergue Park,46.5068432,-84.3302674,"Bay St & East St, Sault Ste. Marie, ON P6A, Canada",(705) 759-2500,https://saultstemarie.ca/City-Hall/City-Departments/Public-Works-Engineering-Services/Public-Works/Parks/Parks-and-Playgrounds.aspx,Sault Ste. Marie +The Old Stone House,46.5060442,-84.3245264,"831 Queen St E, Sault Ste. Marie, ON P6A 2A8, Canada",(705) 759-5443,http://www.saultstemarie.ca/City-Hall/City-Departments/Community-Services/Recreation-and-Culture/Historic-Sites-and-Heritage/Ermatinger-Clergue-National-Historic-Site.aspx,Sault Ste. Marie +Little Rapids Cut Light,46.48671849999999,-84.3023735,"Sault Ste. Marie, MI 49783, USA",Unknown,Unknown,Sault Ste. Marie +Old Barracks Museum,40.2199101,-74.7686849,"101 Barrack St, Trenton, NJ 08608, USA",(609) 396-1776,http://www.barracks.org/,Trenton +New Jersey State Museum,40.2210647,-74.7730924,"205 W State St, Trenton, NJ 08608, USA",(609) 292-6464,http://www.statemuseum.nj.gov/,Trenton +1719 William Trent House Museum,40.2130959,-74.7658056,"15 Market St, Trenton, NJ 08611, USA",(609) 989-3027,http://www.williamtrenthouse.org/,Trenton +Trenton City Museum/ Ellarslie Museum,40.23683479999999,-74.7899485,"299 Parkside Ave., Trenton, NJ 08606, USA",(609) 989-1191,http://ellarslie.org/,Trenton +Cadwalader Park,40.2368726,-74.7907577,"36 Parkside, Trenton, NJ 08618, USA",(609) 989-3635,Unknown,Trenton +Planetarium At NJ State Museum,40.2210006,-74.77316359999999,"205 W State St, Trenton, NJ 08608, USA",(609) 292-6464,https://www.state.nj.us/state/museum/explore-planetarium.shtml,Trenton +Trenton Battle Monument,40.2258431,-74.76477299999999,"350 N Warren St, Trenton, NJ 08618, USA",(609) 448-1947,http://www.state.nj.us/dep/parksandforests/historic/Trentonbattlemonument/,Trenton +World War II Memorial,40.22118629999999,-74.7697151,"125 W State St, Trenton, NJ 08608, USA",Unknown,Unknown,Trenton +Mill Hill Park,40.2186588,-74.7634649,"East Front Street, S Broad St, Trenton, NJ 08608, USA",(609) 989-3635,https://www.trentonnj.org/Facilities/Facility/Details/Mill-Hill-Park-14,Trenton +Trenton Historical Society,40.2200888,-74.7642278,"212 1/2 S Broad St, Trenton, NJ 08608, USA",(609) 396-4478,https://trentonhistory.org/,Trenton +Grounds For Sculpture,40.2367777,-74.7188915,"80 Sculptors Way, Hamilton Township, NJ 08619, USA",(609) 586-0616,http://www.groundsforsculpture.org/,Trenton +George Page Park,40.2327885,-74.7413232,"N Clinton Ave & Lawrence St, 27 Firth St, Trenton, NJ 08638, USA",Unknown,Unknown,Trenton +Roebling Park,40.19037790000001,-74.72651880000001,"Trenton, NJ 08611, USA",(609) 303-0700,https://abbottmarshlands.org/,Trenton +South Riverwalk Park,40.2010548,-74.7588875,"John Fitch Way, Trenton, NJ 08611, USA",Unknown,http://www.mercercountyparks.org/#!/parks/south-river-park/,Trenton +Clay Street Park,40.2168626,-74.75900829999999,"Clay St, Trenton, NJ 08611, USA",Unknown,Unknown,Trenton +John A. Roebling Memorial Park,40.1886385,-74.7293175,"Hamilton Township, NJ 08610, USA",Unknown,https://www.mercercounty.org/departments/mercer-county-park-commission/find-parks-facilities/john-a-roebling-memorial-park,Trenton +Wilkinson Park,40.222812,-74.7697175,"Trenton, NJ 08618, USA",Unknown,Unknown,Trenton +Hetzel Field,40.23055519999999,-74.74138789999999,"Assunpink Park, Trenton, NJ 08638, USA",Unknown,Unknown,Trenton +Old Wharf,40.20745089999999,-74.7658165,"385 NJ-29, Trenton, NJ 08611, USA",Unknown,Unknown,Trenton +Waterfront Park,40.204636,-74.7631732,"300 Riverview Plaza, Trenton, NJ 08611, USA",Unknown,Unknown,Trenton +Missoula Art Museum,46.872442,-113.992366,"335 N Pattee St, Missoula, MT 59802, USA",(406) 728-0447,http://www.missoulaartmuseum.org/,Missoula +Caras Park,46.869377,-113.997101,"123 Carousel Dr, Missoula, MT 59802, USA",(406) 543-4238,https://www.missouladowntown.com/caras-park/,Missoula +The Historical Museum at Fort Missoula,46.84368269999999,-114.0629836,"3400 Capt Rawn Way, Missoula, MT 59804, USA",(406) 728-3476,http://www.fortmissoulamuseum.org/,Missoula +Montana Natural History Center,46.8706701,-114.0062453,"120 Hickory St # A, Missoula, MT 59801, USA",(406) 327-0405,http://www.montananaturalist.org/,Missoula +Montana Museum of Art & Culture,46.863236,-113.9850057,"Performing Arts and Radio Center, Missoula, MT 59812, USA",(406) 243-2019,http://www.umt.edu/montanamuseum/,Missoula +McCormick Park,46.8720367,-114.0036651,"600 Cregg Ln, Missoula, MT 59801, USA",(406) 721-7275,http://www.ci.missoula.mt.us/Facilities/Facility/Details/McCormick-27,Missoula +Museum of Mountain Flying,46.9175073,-114.0780545,"5843 Museum Way, Missoula, MT 59808, USA",(406) 721-3644,Unknown,Missoula +Boone and Crockett Club,46.8676235,-113.9986563,"250 Station Dr, Missoula, MT 59801, USA",(406) 542-1888,http://www.boone-crockett.org/,Missoula +Splash Montana,46.8425375,-114.0090346,"3001 Bancroft St, Missoula, MT 59801, USA",(406) 721-7275,http://www.splashmontana.org/,Missoula +A Carousel for Missoula,46.87029099999999,-113.998088,"101 Carousel Dr, Missoula, MT 59802, USA",(406) 549-8382,http://carouselformissoula.com/,Missoula +The M,46.85938239999999,-113.975747,"Missoula, MT 59803, USA",(406) 721-7275,http://www.ci.missoula.mt.us/Facilities/Facility/Details/30,Missoula +Crossings,46.8750318,-113.9921072,"531n N Higgins Ave, Missoula, MT 59802, USA",Unknown,http://www.ci.missoula.mt.us/facilities/facility/details/Crossings-97,Missoula +spectrUM Discovery Area,46.8698524,-113.9898726,"455 E Main St, Missoula, MT 59802, USA",(406) 728-7836,http://umt.edu/spectrum,Missoula +Street Art,46.8707229,-113.9951941,"127 N Higgins Ave, Missoula, MT 59802, USA",Unknown,Unknown,Missoula +Glacier Country Tourism,46.8866059,-114.0349971,"3021 Palmer St STE A, Missoula, MT 59808, USA",(800) 338-5072,http://www.glaciermt.com/,Missoula +Rocky Mountain Museum,46.84394400000001,-114.0648354,"2975 Gen Foster Ave, Missoula, MT 59804, USA",(406) 549-5346,http://www.fortmissoula.org/,Missoula +Snowbowl,47.014436,-113.999568,"1700 Snow Bowl Rd, Missoula, MT 59808, USA",(406) 549-9777,http://www.montanasnowbowl.com/,Missoula +Greenough Park,46.87699529999999,-113.9768536,"1001 Monroe St, Missoula, MT 59802, USA",Unknown,http://www.ci.missoula.mt.us/Facilities/Facility/Details/Greenough-14,Missoula +Bonner Park,46.8550556,-113.9929992,"1600 Ronald Ave, Missoula, MT 59801, USA",(406) 721-7275,http://www.ci.missoula.mt.us/facilities/facility/details/Bonner-4,Missoula +Western Cultural,46.84309289999999,-114.0572867,"30 Fort Missoula Rd #3, Missoula, MT 59804, USA",(406) 829-0301,http://www.westerncultural.com/,Missoula +Three Bear Waterpark,46.37976159999999,-94.2505958,"15739 Audubon Way, Brainerd, MN 56401, USA",(218) 824-3232,http://brainerdhi.com/brainerd-water-park/,Brainerd +Paul Bunyan Land,46.35129209999999,-94.0292184,"17553 MN-18, Brainerd, MN 56401, USA",(218) 764-2524,http://www.paulbunyanland.com/,Brainerd +Lum Park,46.3684749,-94.1650628,"1619 NE, Washington St, Brainerd, MN 56401, USA",(218) 828-2320,http://www.ci.brainerd.mn.us/201/Parks-Recreation,Brainerd +Kiwanis Park,46.34814799999999,-94.2061527,"1101 E River Rd, Brainerd, MN 56401, USA",(218) 828-2320,http://www.ci.brainerd.mn.us/Facilities/Facility/Details/Kiwanis-Park-8,Brainerd +Brainerd Water Tower,46.3578334,-94.200235,"624 Washington St, Brainerd, MN 56401, USA",Unknown,http://brainerdwatertower.com/,Brainerd +Gregory Park,46.36142379999999,-94.2009367,"511 N 5th St, Brainerd, MN 56401, USA",Unknown,http://www.ci.brainerd.mn.us/201/Parks-Recreation,Brainerd +Crow Wing County Historical Society,46.3554397,-94.2042748,"320 Laurel St, Brainerd, MN 56401, USA",(218) 829-3268,http://www.crowwinghistory.org/,Brainerd +Buffalo Hills Park,46.33268959999999,-94.2064776,"2104 Graydon Ave, Brainerd, MN 56401, USA",(218) 828-2320,http://www.ci.brainerd.mn.us/Facilities/Facility/Details/Buffalo-Hills-Lions-Park-2,Brainerd +Gustafson Park,46.37304400000001,-94.1753073,"9th Ave NE & N St NE, Brainerd, MN 56401, USA",(218) 828-2320,https://www.ci.brainerd.mn.us/facilities/facility/details/Gustafson-Park-5,Brainerd +O'Brien Park,46.3504528,-94.1723806,"2424 Pine St, Brainerd, MN 56401, USA",(218) 828-2320,Unknown,Brainerd +Bane Park,46.3393628,-94.1991257,"1701 S 7th St, Brainerd, MN 56401, USA",(218) 828-2320,http://www.visitbrainerd.com/directory/bane-park/,Brainerd +Downtown Brainerd,46.3526733,-94.2020084,"523 S 5th St, Brainerd, MN 56401, USA",Unknown,Unknown,Brainerd +Northland Arboretum,46.3594011,-94.2279973,"14250 Conservation Dr, Baxter, MN 56425, USA",(218) 829-8770,http://www.northlandarb.org/,Brainerd +"Paul Bunyan Water Park - Arrowhead Lodge, Baxter-Brainerd",46.3782431,-94.2549175,"6967 Lake Forest Rd, Baxter, MN 56425, USA",(218) 822-5634,http://arrowwoodbrainerdlodge.com/,Brainerd +Parker Building,46.3559776,-94.1996161,"623 Laurel St, Brainerd, MN 56401, USA",Unknown,Unknown,Brainerd +Crow Wing State Park,46.2728199,-94.332072,"3124 State Park Rd, Brainerd, MN 56401, USA",(218) 825-3075,http://www.dnr.state.mn.us/state_parks/crow_wing/index.html,Brainerd +Triangle Park,46.3645141,-94.1980219,"723 Fir St, Brainerd, MN 56401, USA",(218) 828-2320,https://www.ci.brainerd.mn.us/Facilities/Facility/Details/Triangle-Park-14,Brainerd +Visit Brainerd,46.3562604,-94.1993477,"214 S 7th St, Brainerd, MN 56401, USA",(218) 825-0410,http://www.visitbrainerd.com/,Brainerd +Buster Park- A Playground for Dogs,46.344932,-94.2088567,"1101 E River Rd, Brainerd, MN 56401, USA",(218) 828-2320,http://www.brainerd.com/rec/brainerd-dog-park.html,Brainerd +Glacier Bay National Park Visitor Center,58.4546522,-135.8824918,"179 Barlett Cove Road, Gustavus, AK 99826, USA",(907) 697-2661,http://www.nps.gov/glba/planyourvisit/hours.htm,Gustavus +Cross Sound Express Whale Watching,58.39297610000001,-135.7289408,"1 State Dock Rd, Gustavus, AK 99826, USA",Unknown,Unknown,Gustavus +Glacier Bay National Park and Preserve Headquarters,58.4556346,-135.8683773,"1 Park Rd, Gustavus, AK 99826, USA",(907) 697-2230,http://www.nps.gov/glba/index.htm,Gustavus +Gustavus Community Garden,58.4093431,-135.7350035,"Bills Dr, Gustavus, AK 99826, USA",Unknown,Unknown,Gustavus +NatVenture Tours,58.41293089999999,-135.7390174,"123 Postmark Dr, Gustavus, AK 99826, USA",(512) 520-7393,https://www.natventuretours.com/,Gustavus +Sea Wolf Adventures,58.41277290000001,-135.713242,"22 Glenn's Ditch Rd # 312, Gustavus, AK 99826, USA",(907) 957-1438,http://www.seawolfadventures.net/,Gustavus +Gustavus Visitors Association,58.41317900000001,-135.7396186,"Parker Rd, Gustavus, AK 99826, USA",Unknown,https://www.gustavusak.com/,Gustavus +Spirit Walker Expeditions,58.41258469999999,-135.7660044,"1 Grandpas Farm Rd, Gustavus, AK 99826, USA",(800) 529-2537,https://seakayakalaska.com/,Gustavus +Fairweather Adventures at Glacier Bay,58.4225049,-135.7328999,"1010 Chase Dr Box 148, Gustavus, AK 99826, USA",(907) 697-2334,http://www.fairweatheradventures.net/,Gustavus +Glacier Bay Sea Kayaks,58.4191123,-135.7288146,"2 Parker Dr, Gustavus, AK 99826, USA",(907) 697-2257,http://www.glacierbayseakayaks.com/,Gustavus +Reid Glacier,58.4126017,-135.7389018,"Gustavus, AK 99826, USA",Unknown,Unknown,Gustavus +Bartlett Cove Campground,58.4508543,-135.8937763,"Gustavus, AK 99826, USA",(907) 697-2230,http://www.nps.gov/glba/planyourvisit/campground.htm,Gustavus +"Fireweed Gallery, Coffee and Tea House",58.41304620000001,-135.72805,"4 Corners, Gustavus, AK 99826, USA",(907) 697-3013,http://www.fireweedcoffee.com/,Gustavus +Gustavus Visitors Association,58.42285099999999,-135.748593,"101 Sockeye Dr, Gustavus, AK 99826, USA",Unknown,Unknown,Gustavus +Glacier Bay Lodge,58.45463580000001,-135.882383,"179 Barlett Cove Road, Gustavus, AK 99826, USA",(888) 229-8687,http://www.visitglacierbay.com/?utm_source=google&utm_medium=places&utm_campaign=google_places,Gustavus +TITANIC Museum Attraction,36.63817239999999,-93.2800792,"3235 W 76 Country Blvd, Branson, MO 65616, USA",(800) 381-7670,https://titanicbranson.com/,Branson +Silver Dollar City,36.66647159999999,-93.33816000000002,"399 Silver Dollar City Pkwy, Branson, MO 65616, USA",(417) 336-7100,https://www.silverdollarcity.com/,Branson +The Butterfly Palace & Rainforest Adventure,36.6535502,-93.2927947,"4106 W 76 Country Blvd, Branson, MO 65616, USA",(417) 332-2231,http://www.thebutterflypalace.com/,Branson +The Shepherd of the Hills,36.6674295,-93.3066651,"5585 W 76 Country Blvd, Branson, MO 65616, USA",(417) 334-4191,http://theshepherdofthehills.com/,Branson +Branson's Promised Land Zoo,36.65202219999999,-93.2749218,"2751 Shepherd of the Hills Expy, Branson, MO 65616, USA",(417) 337-9453,http://www.plzoo.com/,Branson +Branson Scenic Railway,36.6438029,-93.21501150000002,"206 E Main St, Branson, MO 65616, USA",(417) 334-6110,http://www.bransontrain.com/,Branson +Fritz's Adventure,36.64173700000001,-93.2458431,"1425 W 76 Country Blvd, Branson, MO 65616, USA",(417) 320-6138,http://www.fritzsadventure.com/,Branson +Beyond The Lens! Branson,36.63815309999999,-93.2779853,"3115 W 76 Country Blvd, Branson, MO 65616, USA",(417) 337-9333,https://www.beyondthelens.com/,Branson +Hollywood Wax Museum,36.637666,-93.277017,"3030 W 76 Country Blvd A, Branson, MO 65616, USA",(417) 337-8700,https://www.hollywoodwaxentertainment.com/branson-mo-attractions/hollywood-wax-museum/,Branson +Branson's Wild World,36.6393754,-93.2582238,"2020 W 76 Country Blvd #2100, Branson, MO 65616, USA",(417) 239-0854,http://bransonswildworld.com/,Branson +Ripley's Believe It or Not!,36.637866,-93.2833588,"3326 W 76 Country Blvd, Branson, MO 65616, USA",(417) 337-5300,http://www.ripleys.com/branson,Branson +Showboat Branson Belle,36.5869939,-93.3172096,"4800 Historic Hwy 165, Branson, MO 65616, USA",(800) 775-2628,https://www.silverdollarcity.com/showboat-branson,Branson +Bigfoot Fun Park,36.6466686,-93.2884325,"3608 W 76 Country Blvd, Branson, MO 65616, USA",(800) 562-2416,https://www.bigfootfunpark.com/,Branson +World's Largest Toy Museum Complex,36.6463431,-93.2875596,"3609 W 76 Country Blvd, Branson, MO 65616, USA",(417) 332-1499,http://worldslargesttoymuseum.com/,Branson +The Branson Coaster,36.6412761,-93.2605235,"2115 W 76 Country Blvd, Branson, MO 65616, USA",(417) 544-8068,https://thebransoncoaster.com/,Branson +Branson Ferris Wheel,36.6385147,-93.2834869,"3335 W 76 Country Blvd, Branson, MO 65616, USA",(417) 334-1612,https://www.fivestarparks.com/branson-tracks/rides/ferris-wheel?utm_source=Google&utm_medium=Listing&utm_campaign=Branson+Ferris+Wheel,Branson +Hannah's Maze of Mirrors,36.6376287,-93.2765828,"3030 W 76 Country Blvd C, Branson, MO 65616, USA",(417) 337-8700,https://www.hollywoodwaxentertainment.com/branson-mo-attractions/hannahs-maze-of-mirrors/,Branson +Table Rock State Park,36.5834496,-93.3092756,"5272 Historic Hwy 165, Branson, MO 65616, USA",(417) 334-4704,http://www.mostateparks.com/park/table-rock-state-park,Branson +Dinosaur Museum,36.6468699,-93.2868221,"3619 W 76 Country Blvd, Branson, MO 65616, USA",(417) 239-0733,http://www.bransondinosaurmuseum.com/,Branson +Shepherd of the Hills Inspiration Tower,36.66847449999999,-93.3102833,"6021 W 76 Country Blvd, Branson, MO 65616, USA",Unknown,http://theshepherdofthehills.com/inspiration-tower/,Branson +RISD Museum,41.82618110000001,-71.40805689999999,"20 N Main St, Providence, RI 02903, USA",(401) 454-6500,https://risdmuseum.org/,Providence +Providence Children's Museum,41.816496,-71.4093006,"100 South St, Providence, RI 02903, USA",(401) 273-5437,http://providencechildrensmuseum.org/,Providence +Waterplace Park,41.8274486,-71.4139414,"Memorial Blvd, Providence, RI 02903, USA",(800) 556-2484,http://www.visitrhodeisland.com/,Providence +The John Brown House Museum,41.8230955,-71.4033603,"52 Power St, Providence, RI 02906, USA",(401) 273-7507,https://www.rihs.org/locations/the-john-brown-house-museum/,Providence +Roger Williams National Memorial,41.8313318,-71.4107403,"282 N Main St, Providence, RI 02903, USA",(401) 521-7266,https://www.nps.gov/rowi/index.htm,Providence +Roger Williams Park,41.7829832,-71.4117265,"Pine Hill Ave, Providence, RI 02907, USA",Unknown,https://rwpconservancy.org/,Providence +Museum of Natural History and Planetarium,41.786836,-71.413225,"1000 Elmwood Ave, Providence, RI 02907, USA",(401) 680-7221,http://www.providenceri.gov/museum,Providence +Roger Williams Park Zoo,41.7903742,-71.4148082,"1000 Elmwood Ave, Providence, RI 02907, USA",(401) 785-3510,http://www.rwpzoo.org/,Providence +Carousel Village,41.7833713,-71.4146207,"1000 Elmwood Ave, Providence, RI 02907, USA",(401) 785-3510,http://www.rwpzoo.org/carousel-village,Providence +Prospect Terrace,41.8298915,-71.4072831,"60 Congdon St, Providence, RI 02906, USA",(401) 785-9450,http://providenceri.com/parks-and-rec/neighborhood-parks,Providence +Lippitt House Museum,41.8282963,-71.39706439999999,"199 Hope St, Providence, RI 02906, USA",(401) 453-0688,http://www.preserveri.org/lippitt-house-museum,Providence +The Stephen Hopkins House,41.8251654,-71.4064672,"15 Hopkins St, Providence, RI 02903, USA",Unknown,http://www.stephenhopkins.org/,Providence +Betsey Williams Cottage,41.78557259999999,-71.4163895,"1000 Elmwood Ave, Providence, RI 02907, USA",(401) 785-9457,https://rwpconservancy.org/,Providence +Old State House,41.8290995,-71.4086439,"150 Benefit St, Providence, RI 02903, USA",(401) 222-2678,http://www.preservation.ri.gov/about/old_state_house.php,Providence +Memorial Park,41.8247222,-71.4075,"S Main St, Providence, RI 02903, USA",Unknown,https://www.goprovidence.com/listing/memorial-park/24225/,Providence +Providence Little Italy,41.8235985,-71.4270198,"280 Atwells Ave, Providence, RI 02903, USA",Unknown,Unknown,Providence +The Providence Athenaeum,41.825788,-71.406378,"251 Benefit St, Providence, RI 02903, USA",(401) 421-6970,http://www.providenceathenaeum.org/,Providence +Haffenreffer Museum of Anthropology,41.82647619999999,-71.4038674,"21 Prospect St, Providence, RI 02912, USA",(401) 863-2065,http://brown.edu/Haffenreffer/,Providence +Providence Rhode Island,41.8240001,-71.4128376,"Providence, RI 02903, USA",Unknown,Unknown,Providence +Roger Williams Park Botanical Center,41.7830028,-71.407553,"Floral Ave, Providence, RI 02905, USA",(401) 680-7263,http://www.providenceri.gov/botanical-center/,Providence +Roosevelt Park Zoo,48.2336684,-101.2763144,"1219 E Burdick Expy, Minot, ND 58701, USA",(701) 857-4166,http://rpzoo.com/,Minot +Dakota Territory Air Museum,48.2720261,-101.2896704,"100 34th Ave NE, Minot, ND 58703, USA",(701) 852-8500,http://www.dakotaterritoryairmuseum.com/,Minot +Scandinavian Heritage Association,48.225706,-101.296425,"1020 S Broadway, Minot, ND 58701, USA",(701) 852-9161,https://scandinavianheritage.org/,Minot +Oak Park,48.23765119999999,-101.3139626,"1300 4th Ave NW, Minot, ND 58703, USA",(701) 857-4136,http://minotparks.com/parks/oak-park/,Minot +Taube Museum of Art,48.2365637,-101.2928545,"2 Main St N, Minot, ND 58703, USA",(701) 838-4445,https://www.taubemuseum.org/,Minot +Railroad Museum of Minot,48.2370798,-101.2918536,"19 1st St NE, Minot, ND 58703, USA",(701) 852-7091,http://www.railroadmuseumofminot.org/,Minot +Roosevelt Park,48.2329004,-101.275026,"1215 E Burdick Expy, Minot, ND 58701, USA",(701) 857-4114,http://minotparks.com/,Minot +Lucy's Amusement Park,48.1849619,-101.2930499,"5119 US-83, Minot, ND 58701, USA",(701) 839-2320,http://visitminot.org/play/lucys-amusement-park/,Minot +Splash Down Dakota Water Park,48.20522949999999,-101.3105047,"2400 10th St SW, Minot, ND 58701, USA",(701) 837-3115,https://www.choicehotels.com/north-dakota/minot/sleep-inn-hotels/nd029?source=lb,Minot +Magic City Discovery Center,48.25244239999999,-101.2934773,"1545 1st St NW, Minot, ND 58703, USA",(701) 858-7529,https://www.magiccitydiscoverycenter.com/,Minot +Riverwalk,48.2360482,-101.284282,"134-140 6th St SE, Minot, ND 58701, USA",Unknown,Unknown,Minot +Scandinavian Heritage Park,48.22570109999999,-101.2965857,"1020 S Broadway, Minot, ND 58701, USA",(701) 852-9161,https://scandinavianheritage.org/,Minot +The Putt District,48.23574079999999,-101.2926456,"17 Main St S suite a, Minot, ND 58701, USA",(701) 852-7888,http://www.theputtdistrict.com/,Minot +Radio City Park,48.19796929999999,-101.2892815,"3417 2nd St SE, Minot, ND 58701, USA",(701) 857-4136,http://minotparks.com/parks/radio-city-park/,Minot +Minot Park District,48.2332781,-101.2987407,"420 3rd Ave SW, Minot, ND 58701, USA",(701) 857-4136,http://minotparks.com/,Minot +Dakota Bark Park,48.2298875,-101.3380513,"2905 7th Ave SW, Minot, ND 58701, USA",Unknown,http://minotparks.com/parks/dakota-bark-park/,Minot +Biggest Cottonwood in Minot,48.23414469999999,-101.2708917,"205 15th St SE, Minot, ND 58701, USA",Unknown,Unknown,Minot +Leach Park,48.2334373,-101.329971,"2400 2nd Ave SW, Minot, ND 58701, USA",(701) 857-4136,http://minotparks.com/parks/leach-park/,Minot +Polaris Park,48.2648531,-101.3046407,"712 26th Ave NW, Minot, ND 58703, USA",(701) 857-4136,http://visitminot.org/play/polaris-park/,Minot +11th &11th Park,48.2468112,-101.311204,"11th st 11th ave nw, Hebrew Cemetery, 1004 11th St NW, Minot, ND 58703, USA",(701) 857-4136,http://minotparks.com/,Minot +U.S. Space & Rocket Center,34.7111322,-86.6539363,"1 Tranquility Base, Huntsville, AL 35805, USA",(800) 637-7223,https://www.rocketcenter.com/,Huntsville +Big Spring International Park,34.7287192,-86.5879066,"200 Church St SW, Huntsville, AL 35801, USA",(256) 883-3754,http://www.huntsville.org/listing/big-spring-international-park/862/,Huntsville +Huntsville Botanical Garden,34.7074956,-86.63403749999999,"4747 Bob Wallace Ave SW, Huntsville, AL 35805, USA",(256) 830-4447,http://hsvbg.org/,Huntsville +Huntsville Museum of Art,34.7271426,-86.5872323,"300 Church St SW, Huntsville, AL 35801, USA",(256) 535-4350,http://hsvmuseum.org/,Huntsville +Burritt on the Mountain,34.715948,-86.539693,"3101 Burritt Dr SE, Huntsville, AL 35801, USA",(256) 536-2882,http://www.burrittonthemountain.com/,Huntsville +Alabama Constitution Hall Park,34.7291338,-86.58414479999999,"109 Gates Ave SE, Huntsville, AL 35801, USA",(256) 564-8100,http://www.earlyworks.com/,Huntsville +EarlyWorks Children's Museum,34.7280556,-86.5844444,"404 Madison St SE, Huntsville, AL 35801, USA",(256) 564-8100,http://www.earlyworks.com/,Huntsville +U.S. Veterans Memorial Museum,34.6920508,-86.58619379999999,"2060 Airport Rd SW, Huntsville, AL 35801, USA",(256) 883-3737,http://www.memorialmuseum.org/,Huntsville +North Alabama Railroad Museum,34.7835803,-86.54621739999999,"694 Chase Rd NE, Huntsville, AL 35811, USA",(256) 851-6276,http://www.northalabamarailroadmuseum.com/,Huntsville +Madison County Nature Trail,34.598093,-86.517315,"5000 Nature Trail Rd SE, Huntsville, AL 35803, USA",(256) 883-9501,https://www.madisoncountyal.gov/services/green-mountain-nature-trail-1594,Huntsville +Weeden House Museum and Garden,34.7296998,-86.5822768,"300 Gates Ave SE, Huntsville, AL 35801, USA",(256) 536-7718,http://weedenhousemuseum.com/,Huntsville +Purdy Butterfly House,34.710362,-86.63224199999999,"4747 Bob Wallace Ave SW, Huntsville, AL 35805, USA",(256) 830-4447,http://www.hsvbg.org/,Huntsville +Monte Sano State Park,34.7399425,-86.5118155,"5105 Nolen Ave SE, Huntsville, AL 35801, USA",(256) 534-3757,https://www.alapark.com/parks/monte-sano-state-park,Huntsville +J.D. & Annie S. Hays Nature Preserve,34.6440983,-86.47291249999999,"7161 US-431, Owens Cross Roads, AL 35763, USA",(256) 427-5116,http://www.huntsvilleal.gov/environment/green-team/nature-preserves/hays-nature-preserve/,Huntsville +Natural Well,34.7327639,-86.5263378,"Huntsville, AL 35801, USA",Unknown,Unknown,Huntsville +Garden Railway,34.7093755,-86.6343641,"Unnamed Road, 4747 Bob Wallace Ave SW, Huntsville, AL 35805, USA",Unknown,Unknown,Huntsville +Lowe Mill ARTS & Entertainment,34.7154142,-86.5974057,"2211 Seminole Dr SW, Huntsville, AL 35805, USA",(256) 533-0399,http://www.lowemill.art/,Huntsville +Land Trust of North Alabama: Monte Sano Nature Preserve,34.74357080000001,-86.54439699999999,"2442 Bankhead Pkwy NE, Huntsville, AL 35801, USA",(256) 534-5263,https://www.landtrustnal.org/monte-sano-preserve,Huntsville +Huntsville Madison County Veterans Memorial,34.73493759999999,-86.5884878,"200 Monroe St NW, Huntsville, AL 35801, USA",(256) 604-3896,http://hmcvm.org/wp/,Huntsville +Maple Hill Park,34.7309624,-86.56527109999999,"1351 McClung Ave SE, Huntsville, AL 35801, USA",(256) 883-3291,Unknown,Huntsville +San Antonio River Walk,29.42297370000001,-98.486034,"San Antonio, TX 78205, USA",(210) 227-4262,https://www.thesanantonioriverwalk.com/,San Antonio +SeaWorld San Antonio,29.4562822,-98.6999612,"10500 SeaWorld Dr, San Antonio, TX 78251, USA",(210) 520-4732,https://seaworld.com/san-antonio?utm_source=google&utm_medium=organic&utm_campaign=gbp_listing,San Antonio +San Antonio Missions National Historical Park,29.3292707,-98.4535781,"San Antonio, TX 78214, USA",(210) 534-8875,https://www.nps.gov/saan/index.htm,San Antonio +Six Flags Fiesta Texas,29.5993818,-98.6088838,"San Antonio, TX 78257, USA",(210) 697-5050,https://www.sixflags.com/fiestatexas?utm_source=googlebusinessprofile&utm_medium=organic&utm_campaign=Google+Business+Profile,San Antonio +San Antonio Museum of Art (SAMA),29.4372761,-98.4821898,"200 W Jones Ave, San Antonio, TX 78215, USA",(210) 978-8100,http://www.samuseum.org/,San Antonio +San Antonio Botanical Garden,29.4576699,-98.4574396,"555 Funston Pl, San Antonio, TX 78209, USA",(210) 536-1400,https://www.sabot.org/,San Antonio +Morgan's Wonderland,29.5391049,-98.3926044,"5223 David Edwards Dr, San Antonio, TX 78233, USA",(210) 495-5888,https://www.morganswonderland.com/,San Antonio +San Antonio Zoo,29.4623904,-98.4737232,"3903 N St Mary's St, San Antonio, TX 78212, USA",(210) 734-7184,https://sazoo.org/,San Antonio +The Alamo,29.4259671,-98.4861419,"300 Alamo Plaza, San Antonio, TX 78205, USA",(210) 225-1391,http://www.thealamo.org/,San Antonio +Aquatica San Antonio,29.45935849999999,-98.6981239,"10500 SeaWorld Dr, San Antonio, TX 78251, USA",(210) 520-4732,https://aquatica.com/san-antonio?utm_source=google&utm_medium=organic&utm_campaign=gbp_listing,San Antonio +LEGOLAND Discovery Center San Antonio,29.42398349999999,-98.4846229,"849 E Commerce St Suite 910, San Antonio, TX 78205, USA",(210) 610-1150,https://sanantonio.legolanddiscoverycenter.com/,San Antonio +Sisters Grimm Ghost Tours & Oddities Parlor,29.4244308,-98.486446,"204 Alamo Plaza suite j, San Antonio, TX 78205, USA",(210) 638-1338,http://www.sistersgrimmghosttour.com/,San Antonio +Briscoe Western Art Museum,29.4229603,-98.4891439,"210 W Market St, San Antonio, TX 78205, USA",(210) 299-4499,http://www.briscoemuseum.org/,San Antonio +The DoSeum,29.4533152,-98.4716971,"2800 Broadway, San Antonio, TX 78209, USA",(210) 212-4453,http://thedoseum.org/,San Antonio +Hemisfair,29.4193306,-98.484005,"434 S Alamo St, San Antonio, TX 78205, USA",(210) 709-4750,http://www.hemisfair.org/,San Antonio +Natural Bridge Caverns,29.6924095,-98.3427276,"26495 Natural Bridge Caverns Rd, San Antonio, TX 78266, USA",(210) 651-6101,https://naturalbridgecaverns.com/,San Antonio +Brackenridge Park,29.45910009999999,-98.4714912,"3700 N St Mary's St, San Antonio, TX 78209, USA",(210) 207-7275,http://brackenridgepark.org/,San Antonio +Ripley's Believe It or Not!,29.425463,-98.487424,"307 Alamo Plaza, San Antonio, TX 78205, USA",(210) 224-9299,http://www.ripleys.com/sanantonio,San Antonio +The Amazing Mirror Maze,29.4250871,-98.487239,"217 Alamo Plaza, San Antonio, TX 78205, USA",(210) 224-2288,http://www.amazingmazes.com/,San Antonio +Kiddie Park,29.4621943,-98.4734067,"3903 N St Mary's St, San Antonio, TX 78212, USA",(210) 734-7184,https://www.kiddiepark.com/,San Antonio +Presque Isle Park,46.5863853,-87.38251029999999,"Peter White Dr, Marquette, MI 49855, USA",(906) 228-0460,https://www.marquettemi.gov/departments/community-services/parks-and-recreation/presque-isle-rentals/,Marquette +Marquette Harbor Lighthouse,46.5465629,-87.376294,"300 N Lakeshore Blvd, Marquette, MI 49855, USA",(906) 226-2006,http://www.mqtmaritimemuseum.com/,Marquette +Upper Peninsula Children's Museum,46.5407959,-87.39477099999999,"123 W Baraga Ave, Marquette, MI 49855, USA",(906) 226-3911,http://www.upchildrensmuseum.org/,Marquette +Marquette Regional History Center,46.5413889,-87.39555560000001,"145 W Spring St, Marquette, MI 49855, USA",(906) 226-3571,http://www.marquettehistory.org/,Marquette +De Vos Art Museum,46.55821549999999,-87.4026013,"1401 Presque Isle Ave, Marquette, MI 49855, USA",(906) 227-2235,https://nmuartmuseum.com/,Marquette +Ellwood A Mattson Lower Harbor Park,46.5436263,-87.3874403,"200 N Lakeshore Blvd, Marquette, MI 49855, USA",(906) 228-0460,https://www.marquettemi.gov/departments/community-services/parks-and-recreation/,Marquette +Black Rocks,46.59268470000001,-87.3807946,"2 Peter White Dr, Marquette, MI 49855, USA",Unknown,Unknown,Marquette +Marquette Mountain Resort,46.5082074,-87.42080969999999,"4501 M-553, Marquette, MI 49855, USA",(906) 225-1155,http://www.marquettemountain.com/,Marquette +Picnic Rocks Park,46.5556856,-87.38430729999999,"Marquette, MI 49855, USA",(906) 228-0460,Unknown,Marquette +Marquette Maritime Museum,46.545625,-87.379342,"300 Lake Shore Blvd, Marquette, MI 49855, USA",(906) 226-2006,http://mqtmaritimemuseum.com/,Marquette +Founders Landing,46.5351241,-87.3940691,"Marquette, MI 49855, USA",Unknown,Unknown,Marquette +Sunset Point,46.59294010000001,-87.3829635,"2 Peter White Dr, Marquette, MI 49855, USA",Unknown,Unknown,Marquette +Tourist Park,46.5689429,-87.4066982,"2145 Sugar Loaf Ave, Marquette, MI 49855, USA",(906) 228-0465,http://www.marquettemi.gov/departments/community-services/parks-and-recreation/tourist-park/,Marquette +Lower Harbor Park,46.5434973,-87.3889725,"201 E Main St, Marquette, MI 49855, USA",Unknown,Unknown,Marquette +Carp River Falls,46.50367000000001,-87.44668999999999,"Marquette, MI 49855, USA",Unknown,Unknown,Marquette +Mt. Marquette Overlook,46.5138866,-87.4010806,"Marquette, MI 49855, USA",Unknown,Unknown,Marquette +Lakenenland,46.49249220000001,-87.1523165,"2800 M-28 East, Marquette, MI 49855, USA",(906) 250-5138,http://lakenenland.com/,Marquette +Gold Mine Falls,46.69444000000001,-87.58425,"Marquette, MI 49855, USA",Unknown,Unknown,Marquette +Upper Dead River Falls,46.56926,-87.478754,"Marquette, MI 49855, USA",Unknown,Unknown,Marquette +Hogback Mountain,46.6051167,-87.4897543,"Marquette, MI 49855, USA",Unknown,Unknown,Marquette +Smothers Park,37.776193,-87.1118795,"199 W Veterans Blvd, Owensboro, KY 42303, USA",(270) 687-8333,https://www.owensboroparks.org/parks/smothers-park/,Owensboro +Owensboro Museum of Science and History,37.774834,-87.1101781,"122 E 2nd St, Owensboro, KY 42303, USA",(270) 687-2732,http://www.owensboromuseum.org/,Owensboro +Owensboro Museum of Fine Art,37.7671693,-87.1122395,"901 Frederica St, Owensboro, KY 42301, USA",(270) 685-3181,http://www.omfa.us/,Owensboro +Joe Ford Nature Park,37.7737665,-87.16379219999999,"3870 W 2nd St, Owensboro, KY 42301, USA",(270) 240-1300,https://owensboroparks.org/parks/joe-ford-nature-park/,Owensboro +Legion Park,37.7409413,-87.1053012,"3047 Legion Park Dr, Owensboro, KY 42303, USA",(270) 687-8700,https://owensboroparks.org/parks/legion-park/,Owensboro +Western Kentucky Botanical Garden,37.7765522,-87.1448609,"2731 W 2nd St, Owensboro, KY 42301, USA",(270) 993-1234,http://www.wkbg.org/,Owensboro +English Park,37.7780457,-87.12813919999999,"2 Woodford Ave, Owensboro, KY 42303, USA",(270) 687-8700,https://owensboroparks.org/parks/english-park/,Owensboro +Panther Creek Park,37.716463,-87.216089,"5160 Wayne Bridge Rd, Owensboro, KY 42301, USA",Unknown,http://www.daviessky.org/,Owensboro +Ben Hawes Park,37.7952399,-87.1834378,"400 Booth Field Rd, Owensboro, KY 42301, USA",(270) 687-7134,https://owensboroparks.org/parks/ben-hawes-park/,Owensboro +Jack C. Fisher Park,37.7618022,-87.15992349999999,"3900 W 5th Street Rd, Owensboro, KY 42301, USA",(270) 687-8725,https://owensboroparks.org/parks/jack-c-fisher-park/,Owensboro +Russell Shifley Park,37.7519459,-87.14979799999999,"2731 Bittel Rd, Owensboro, KY 42301, USA",(270) 687-8700,Unknown,Owensboro +Owensboro Moreland Park,37.76276010000001,-87.1242884,"1215 Hickman Ave, Owensboro, KY 42301, USA",(270) 687-8711,http://www.owensboroparks.org/?page_id=78,Owensboro +Bluegrass Music Hall of Fame & Museum,37.77493749999999,-87.11415199999999,"311 W 2nd St, Owensboro, KY 42301, USA",(270) 926-7891,http://www.bluegrasshall.org/,Owensboro +Yellow Creek Park,37.799949,-87.026535,"5710 KY-144, Owensboro, KY 42303, USA",(270) 685-6142,https://www.daviessky.org/yellow-creek-park/,Owensboro +Sassafras Tree,37.754887,-87.11169199999999,"2100-2166, KY-2831, Owensboro, KY 42301, USA",Unknown,Unknown,Owensboro +Owensboro Mural,37.7751875,-87.1093415,"215 E 2nd St, Owensboro, KY 42303, USA",Unknown,Unknown,Owensboro +Kentucky Mirror Mosiac,37.7752968,-87.10811679999999,"319 E 2nd St, Owensboro, KY 42303, USA",Unknown,Unknown,Owensboro +Gold Star Families Memorial Monument,37.7761865,-87.1106241,"119 E Veterans Blvd, Owensboro, KY 42303, USA",Unknown,Unknown,Owensboro +Cap Gardner Park,37.7563277,-87.1081456,"238 E 20th St, Owensboro, KY 42303, USA",(270) 687-8700,http://www.owensboroparks.org/?page_id=55,Owensboro +Yewells-Heritage Park,37.7461953,-87.06998809999999,"Owensboro, KY 42303, USA",Unknown,https://owensboroparks.org/parks/yewell-heritage-park/,Owensboro +Whitehead Memorial Museum,29.3516888,-100.8980148,"1308 S Main St, Del Rio, TX 78840, USA",(830) 774-7568,http://www.whiteheadmuseum.org/,Del Rio +Moore Park,29.3683043,-100.8827224,"100 Swift Street, Del Rio, TX 78840, USA",(830) 774-8541,http://www.cityofdelrio.com/,Del Rio +Amistad National Recreation Area,29.5353461,-101.075648,"4121 Veterans Blvd, Del Rio, TX 78840, USA",(830) 775-7491,https://www.nps.gov/amis/index.htm,Del Rio +The Brinkley Mansion,29.33961590000001,-100.9020068,"512 Qualia Dr, Del Rio, TX 78840, USA",(830) 775-1803,https://www.hmdb.org/m.asp?m=185127,Del Rio +San Felipe Natural Spring Park,29.3695406,-100.8840977,"401 Mario Salas Ave, Del Rio, TX 78840, USA",Unknown,Unknown,Del Rio +Devils River State Natural Area,29.9401792,-100.9698151,"21715 Dolan Crk Rd, Del Rio, TX 78840, USA",(830) 395-2133,http://www.tpwd.state.tx.us/state-parks/parks/find-a-park/devils-river-state-natural-area,Del Rio +Blue Hole Park,29.3691851,-100.884893,"Del Rio, TX 78840, USA",Unknown,Unknown,Del Rio +Park Del Rio,29.3325669,-100.9213113,"398-300 Perry St, Del Rio, TX 78840, USA",(830) 774-8541,https://www.cityofdelrio.com/government/departments/parks-recreation,Del Rio +Rotary Park,29.35541080000001,-100.8947867,"30482, Del Rio, TX 78840, USA",Unknown,Unknown,Del Rio +Laughlin Heritage Foundation Museum,29.3614283,-100.9002542,"309 S Main St, Del Rio, TX 78840, USA",(830) 719-9380,http://www.laughlinheritagefoundationmuseum.org/,Del Rio +Portsmouth Historic Dockyard,50.800531,-1.1094659,"Victory Gate, HM Naval Base, Portsmouth PO1 3LJ, UK",023 9283 9766,https://www.historicdockyard.co.uk/,Portsmouth +Spinnaker Tower,50.79557519999999,-1.1085171,"Portsmouth PO1 3TT, UK",023 9285 7520,https://www.spinnakertower.co.uk/,Portsmouth +Mary Rose Museum,50.8022114,-1.1088526,"Main Rd, HM Naval Base, Portsmouth PO1 3PY, UK",023 9281 2931,https://maryrose.org/,Portsmouth +The D-Day Story,50.77964100000001,-1.089412,"Clarence Esplanade, Southsea, Portsmouth PO5 3NT, UK",023 9288 2555,https://theddaystory.com/,Portsmouth +Portsmouth Museum and Art Gallery,50.79156099999999,-1.097727,"Museum Rd, Portsmouth PO1 2LJ, UK",023 9283 4779,https://portsmouthmuseum.co.uk/,Portsmouth +HMS Victory,50.8017096,-1.1095345,"Main Rd, HM Naval Base, Portsmouth PO1 3LJ, UK",023 9283 9766,https://www.nmrn.org.uk/hms-victory/,Portsmouth +HMS Warrior,50.7982384,-1.1092475,"Victory Gate, Portsmouth PO1 3QX, UK",023 9277 8600,https://historicdockyard.co.uk/discover/hms-warrior/,Portsmouth +Action Stations,50.7999392,-1.1069561,"19 College Rd, HM Naval Base, Portsmouth PO1 3LJ, UK",023 9289 3338,Unknown,Portsmouth +National Museum of the Royal Navy,50.8009215,-1.1100098,"HM Naval Base (PP66), HM Naval Base, Portsmouth PO1 3NH, UK",023 9289 1370,http://www.nmrn.org.uk/,Portsmouth +Round Tower,50.7905018,-1.1088269,"Broad St, Old Portsmouth, Portsmouth PO1 2JE, UK",023 9282 7261,https://www.visitportsmouth.co.uk/things-to-do/round-tower-p267631,Portsmouth +Charles Dickens' Birthplace Museum,50.80706399999999,-1.0871982,"393 Old Commercial Rd, Portsmouth PO1 4QL, UK",023 9282 1879,https://charlesdickensbirthplace.co.uk/,Portsmouth +South Parade Pier,50.77922590000001,-1.0763774,"S Parade, Southsea, Portsmouth, Southsea PO4 0SW, UK",023 9421 0888,http://southparadepier.net/,Portsmouth +The Portsmouth Ghost Walk,50.789334,-1.1064023,"Broad St, Old Portsmouth, Portsmouth PO1 2ND, UK",01962 435020,https://ghost-walks.com/portsmouth-ghost-tours,Portsmouth +Portsmouth Cathedral,50.79046879999999,-1.1042969,"High St, Old Portsmouth, Portsmouth PO1 2HA, UK",023 9282 3300,https://portsmouthcathedral.org.uk/,Portsmouth +Victoria Park,50.7989677,-1.0941696,"3 Stanhope Rd, Portsmouth PO1 3HJ, UK",023 9282 2251,https://victoriaparkportsmouth.org.uk/,Portsmouth +Southsea Model Village,50.781011,-1.068746,"Lumps Fort, Eastney Esplanade, Southsea, Portsmouth, Southsea PO4 9RU, UK",023 9275 1443,https://www.southseamodelvillage.biz/,Portsmouth +Cumberland House Natural History Museum,50.78209700000001,-1.070221,"Cumberland House Natural History Museum, Eastern Parade, Southsea, Portsmouth PO4 9RF, UK",023 9281 5276,https://portsmouthnaturalhistory.co.uk/,Portsmouth +Blue Reef Aquarium Portsmouth,50.7802299,-1.0927269,"Clarence Esplanade, Southsea, Portsmouth, Southsea PO5 3PB, UK",023 9287 5222,http://www.bluereefaquarium.co.uk/portsmouth,Portsmouth +Exploria,50.7791692,-1.0847654,"Pyramids Centre, Clarence Esplanade, Southsea, Portsmouth, Southsea PO5 3ST, UK",023 9320 0330,https://www.exploria.org.uk/,Portsmouth +Clarence Pier,50.7858104,-1.101455,"Southsea, Portsmouth, Southsea PO5 3AA, UK",Unknown,https://www.clarencepier.co.uk/,Portsmouth +Mary Todd Lincoln House,38.051281,-84.502738,"578 W Main St, Lexington, KY 40507, USA",(859) 233-9999,http://www.mtlhouse.org/,Lexington +Waveland State Historic Site,37.97126569999999,-84.5374389,"225 Waveland Museum Ln, Lexington, KY 40514, USA",(859) 272-3611,https://parks.ky.gov/lexington/parks/historic/waveland-state-historic-site,Lexington +Aviation Museum of Kentucky,38.0334207,-84.59846809999999,"4029 Airport Rd, Lexington, KY 40510, USA",(859) 231-1219,https://www.aviationky.org/,Lexington +Kentucky Horse Park,38.1496243,-84.51988539999999,"4089 Iron Works Pkwy, Lexington, KY 40511, USA",(859) 233-4303,http://www.kyhorsepark.com/,Lexington +Raven Run Nature Sanctuary,37.88938760000001,-84.3945334,"3885 Raven Run Wy, Lexington, KY 40515, USA",(859) 272-6105,http://www.lexingtonky.gov/raven-run-nature-sanctuary,Lexington +McConnell Springs Park,38.0549694,-84.52782499999999,"416 Rebmann Ln, Lexington, KY 40504, USA",(859) 225-4073,https://www.lexingtonky.gov/mcconnell-springs-park,Lexington +Ashland - The Henry Clay Estate,38.02854329999999,-84.4801454,"120 Sycamore Rd, Lexington, KY 40502, USA",(859) 266-8581,http://www.henryclay.org/,Lexington +Explorium of Lexington,38.050004,-84.500023,"440 W Short St, Lexington, KY 40507, USA",(859) 258-3253,http://explorium.com/,Lexington +The Living Arts & Science Center,38.0487812,-84.488621,"362 N Martin Luther King Blvd, Lexington, KY 40508, USA",(859) 252-5222,http://www.lasclex.org/,Lexington +The Loudoun House,38.05532590000001,-84.4760331,"209 Castlewood Dr, Lexington, KY 40505, USA",(859) 254-7024,https://www.nps.gov/nr/travel/lexington/lou.htm,Lexington +Fright Nights Kentucky,38.0316927,-84.4517899,"1209 E New Circle Rd Suite 190, Lexington, KY 40505, USA",(859) 940-8143,https://www.frightnightskentucky.com/,Lexington +Thoroughbred Park,38.04164299999999,-84.49029759999999,"100 Midland Ave, Lexington, KY 40507, USA",(859) 233-7299,Unknown,Lexington +American Saddlebred Museum,38.1497228,-84.518202,"4083 Wing Commander Way Suite 150, Lexington, KY 40511, USA",(859) 259-2746,http://www.asbmuseum.org/,Lexington +Hopemont,38.0501468,-84.49632199999999,"201 N Mill St, Lexington, KY 40507, USA",(859) 233-3290,http://www.bluegrasstrust.org/,Lexington +Jacobson Park,37.9842776,-84.42582929999999,"Jacobson Park, 4001 Athens Boonesboro Rd, Lexington, KY 40509, USA",(859) 288-2900,https://www.lexingtonky.gov/departments/parks-recreation,Lexington +Southern Lights,38.14507820000001,-84.52255,"Kentucky Horse Park Campground Entrance, 4089 Iron Works Pike, Lexington, KY 40511, USA",(859) 255-5727,http://www.southernlightsky.com/,Lexington +Transylvania University Monroe Moosnick Medical and Science Museum,38.05084059999999,-84.4930935,"300 N Broadway, Lexington, KY 40507, USA",(859) 233-8228,https://libguides.transy.edu/aboutspec/MoosnickMuseum,Lexington +Spencer Reinhard mural,38.0450294,-84.49784249999999,"112 E Vine St, Lexington, KY 40507, USA",Unknown,Unknown,Lexington +The Lexington Cemetery,38.06074,-84.510421,"833 W Main St, Lexington, KY 40508, USA",(859) 255-5522,http://www.lexcem.org/,Lexington +Keeneland Association Inc,38.0469517,-84.60624039999999,"4201 Versailles Rd, Lexington, KY 40510, USA",(859) 254-3412,http://www.keeneland.com/,Lexington +Santa Barbara Botanic Garden,34.4565481,-119.7100254,"1212 Mission Canyon Rd, Santa Barbara, CA 93105, USA",(805) 682-4726,http://sbbotanicgarden.org/,Santa Barbara +Santa Barbara Zoo,34.4204053,-119.6670952,"500 Ninos Dr, Santa Barbara, CA 93103, USA",(805) 962-5339,http://www.sbzoo.org/,Santa Barbara +Santa Barbara Museum of Natural History Sea Center,34.4104119,-119.6857157,"211 Stearns Wharf, Santa Barbara, CA 93101, USA",(805) 962-2526,https://www.sbnature.org/seacenter,Santa Barbara +"MOXI, The Wolf Museum of Exploration + Innovation",34.41343699999999,-119.691698,"125 State St, Santa Barbara, CA 93101, USA",(805) 770-5000,http://moxi.org/,Santa Barbara +Santa Barbara Museum Of Art,34.42340499999999,-119.7039316,"1130 State St, Santa Barbara, CA 93101, USA",(805) 963-4364,http://www.sbma.net/,Santa Barbara +The Funk Zone,34.4150309,-119.6904939,"137 Anacapa St, Santa Barbara, CA 93101, USA",Unknown,https://www.funkzone.net/,Santa Barbara +Pier Santa Barbara,34.41024379999999,-119.6865171,"144-152 Stearns Wharf, Santa Barbara, CA 93101, USA",Unknown,http://stearnswharf.org/,Santa Barbara +Santa Barbara Maritime Museum,34.4040808,-119.6937357,"113 Harbor Way STE 190, Santa Barbara, CA 93109, USA",(805) 962-8404,http://www.sbmm.org/,Santa Barbara +Old Mission Santa Barbara 1786,34.4383262,-119.7140678,"2201 Laguna St, Santa Barbara, CA 93105, USA",(805) 682-4713,http://www.santabarbaramission.org/,Santa Barbara +Visit Santa Barbara,34.4198176,-119.6890404,"500 E Montecito St, Santa Barbara, CA 93103, USA",(805) 966-9222,https://santabarbaraca.com/,Santa Barbara +Santa Barbara Museum of Natural History,34.4409134,-119.7144601,"2559 Puesta Del Sol, Santa Barbara, CA 93105, USA",(805) 682-4711,https://sbnature.org/,Santa Barbara +Shoreline Park,34.3964348,-119.7067671,"Shoreline Dr & Santa Rosa Place, Santa Barbara, CA 93109, USA",(805) 564-5418,http://www.santabarbaraca.gov/Parks/parks_community_main.html,Santa Barbara +1000 Steps Beach,34.39595870000001,-119.7133251,"1429 Shoreline Dr, Santa Barbara, CA 93109, USA",Unknown,https://sbparksandrec.santabarbaraca.gov/parks/thousand-steps,Santa Barbara +Scavenger Hunt Walking Tours - Santa Barbara,34.4220889,-119.7031836,"1033 State St, Santa Barbara, CA 93101, USA",(916) 597-2923,https://www.scavengerhuntwalkingtours.com/,Santa Barbara +Outdoors Santa Barbara Visitor Center,34.4039769,-119.6938188,"113 Harbor Way, Santa Barbara, CA 93109, USA",(805) 456-8752,https://sbmm.org/visitor-center/,Santa Barbara +Chase Palm Park,34.4154207,-119.6828708,"323 E Cabrillo Blvd, Santa Barbara, CA 93101, USA",(805) 897-1983,https://sbparksandrec.santabarbaraca.gov/park/chase-palm-park,Santa Barbara +El Presidio de Santa Bárbara State Historic Park,34.42259379999999,-119.6988752,"123 E Canon Perdido St, Santa Barbara, CA 93101, USA",(805) 965-0093,https://www.sbthp.org/,Santa Barbara +Santa Barbara Historical Museum,34.421553,-119.6971856,"136 E De La Guerra St, Santa Barbara, CA 93101, USA",(805) 966-1601,https://www.sbhistorical.org/,Santa Barbara +Arroyo Burro Beach County Park,34.4028444,-119.7432062,"2981 Cliff Dr, Santa Barbara, CA 93109, USA",(805) 687-3714,http://www.countyofsb.org/parks/parks02.aspx?id=7942,Santa Barbara +Santa Barbara Carriage and Western Art Museum,34.408962,-119.6977151,"129 Castillo St #5725, Santa Barbara, CA 93101, USA",(805) 962-2353,https://carriagemuseum.org/,Santa Barbara +National Aquarium,39.2853928,-76.6083984,"501 E Pratt St, Baltimore, MD 21202, USA",(410) 576-3800,https://aqua.org/,Baltimore +Fort McHenry National Monument and Historic Shrine,39.26410070000001,-76.58064139999999,"2400 E Fort Ave, Baltimore, MD 21230, USA",(410) 962-4290,https://www.nps.gov/fomc/index.htm,Baltimore +The Walters Art Museum,39.296425,-76.61649849999999,"Baltimore, MD 21201, USA",(410) 547-9000,https://thewalters.org/,Baltimore +Baltimore Museum of Industry,39.27395689999999,-76.6016162,"1415 Key Hwy, Baltimore, MD 21230, USA",(410) 727-4808,http://www.thebmi.org/,Baltimore +Historic Ships in Baltimore,39.28560470000001,-76.6110054,"301 E Pratt St, Baltimore, MD 21202, USA",(410) 539-1797,http://historicships.org/,Baltimore +The Maryland Zoo in Baltimore,39.32270679999999,-76.6498096,"1 Safari Pl, Baltimore, MD 21217, USA",(410) 396-7102,https://www.marylandzoo.org/,Baltimore +Top of the World Observation Level,39.28601689999999,-76.6094754,"401 E Pratt St 27th floor, Baltimore, MD 21202, USA",(410) 837-8439,http://www.viewbaltimore.org/,Baltimore +American Visionary Art Museum,39.2804205,-76.6068947,"800 Key Hwy, Baltimore, MD 21230, USA",(410) 244-1900,https://www.avam.org/,Baltimore +B&O Railroad Museum,39.28546809999999,-76.6326119,"901 W Pratt St, Baltimore, MD 21223, USA",(410) 752-2490,http://www.borail.org/,Baltimore +Maryland Science Center,39.28141490000001,-76.61191699999999,"601 Light St, Baltimore, MD 21230, USA",(410) 685-2370,http://www.mdsci.org/,Baltimore +Baltimore Museum of Art,39.3261668,-76.6193437,"10 Art Museum Dr, Baltimore, MD 21218, USA",(443) 573-1700,https://artbma.org/,Baltimore +Inner Harbor,39.2830332,-76.6117345,"401 Light St, Baltimore, MD 21202, USA",Unknown,Unknown,Baltimore +Fell's Point,39.2822341,-76.5916767,"1724 Thames St, Baltimore, MD 21231, USA",(410) 675-6751,http://www.fellspoint.us/,Baltimore +Pierce's Park,39.2853334,-76.605509,"701 E Pratt St, Baltimore, MD 21202, USA",(443) 743-3308,Unknown,Baltimore +The Baltimore Basilica,39.2944081,-76.6161746,"409 Cathedral St, Baltimore, MD 21201, USA",(410) 727-3565,https://www.americasfirstcathedral.org/,Baltimore +Baltimore Harbor,39.2857226,-76.61166519999999,"Harborplace, Baltimore, MD 21230, USA",Unknown,Unknown,Baltimore +Port Discovery Children's Museum,39.2890694,-76.60628890000001,"35 Market Pl, Baltimore, MD 21202, USA",(410) 727-8120,http://www.portdiscovery.org/,Baltimore +Federal Hill Park,39.2797209,-76.60846219999999,"300 Warren Ave, Baltimore, MD 21230, USA",Unknown,http://www.federalhillonline.com/,Baltimore +Patterson Park,39.2896838,-76.57987829999999,"2601 E Baltimore St, Baltimore, MD 21224, USA",(410) 276-3676,https://bcrp.baltimorecity.gov/parks/patterson-park,Baltimore +Oriole Park at Camden Yards,39.28381940000001,-76.62167819999999,"333 W Camden St, Baltimore, MD 21201, USA",(410) 685-9800,http://www.mlb.com/orioles,Baltimore +Sea Dragon Pirate Cruise,30.1480105,-85.7446496,"5325 N Lagoon Dr, Panama City, FL 32408, USA",(850) 234-7400,https://www.piratecruise.net/,Panama City +Coconut Creek Family Fun Park,30.1784026,-85.79868870000001,"9807 Front Beach Rd, Panama City Beach, FL 32407, USA",(850) 234-2625,http://coconutcreekfun.com/,Panama City +ZooWorld Zoological Park,30.182227,-85.787261,"9008 Front Beach Rd, Panama City Beach, FL 32407, USA",(850) 230-1243,http://www.zooworldpcb.com/,Panama City +Ripley's Believe It or Not!,30.1783208,-85.79935499999999,"9907 Front Beach Rd, Panama City Beach, FL 32407, USA",(850) 230-6113,http://www.ripleys.com/panamacitybeach,Panama City +SkyWheel Panama City Beach,30.218174,-85.87276899999999,"15700 L C Hilton Jr Dr, Panama City Beach, FL 32413, USA",(850) 888-0020,http://skywheelpcb.com/,Panama City +Oaks by the Bay Park,30.16642,-85.7010009,"2715 W 10th St, Panama City, FL 32401, USA",(850) 872-3199,https://www.pcgov.org/190/Leisure-Services,Panama City +Island Tiki Tours,30.1894692,-85.7536775,"312 Bay Shore Dr, Panama City Beach, FL 32407, USA",(850) 832-5958,http://islandtikitours.com/,Panama City +St. Andrews State Park,30.13144370000001,-85.7365997,"4607 State Park Ln, Panama City, FL 32408, USA",(850) 708-6100,https://www.floridastateparks.org/park/St-Andrews,Panama City +Rick Seltzer Park,30.159265,-85.777395,"7419 Thomas Dr, Panama City Beach, FL 32408, USA",(850) 233-6503,http://www.visitpanamacitybeach.com/listings/rick-seltzer-park/545/?fromMenu=778&startrow=1,Panama City +Cobra Adventure Park,30.18014619999999,-85.7917475,"9323 Front Beach Rd, Panama City, FL 32408, USA",(850) 235-0321,http://www.visitpanamacitybeach.com/listings/cobra-adventure-park/169/,Panama City +Frank Brown Park,30.2297876,-85.8771235,"16200 Panama City Beach Pkwy, Panama City Beach, FL 32413, USA",(850) 233-5045,https://www.pcbfl.gov/departments/parks-recreation-department/parks-facilities/frank-brown-park,Panama City +Panama City Small Diamond Railroad Crossing,30.1398729,-85.62543749999999,"400 S East Ave, Panama City, FL 32401, USA",Unknown,Unknown,Panama City +Escape Manor,30.155813,-85.659966,"430 Harrison Ave, Panama City, FL 32401, USA",(850) 319-4343,https://www.panamacityescape.com/bookings,Panama City +WonderWorks Panama City Beach,30.1789395,-85.7996003,"9910 Front Beach Rd, Panama City Beach, FL 32407, USA",(850) 249-7000,http://www.wonderworksonline.com/panama-city-beach,Panama City +Man in the Sea Museum,30.2325158,-85.89304899999999,"17314 Panama City Beach Pkwy, Panama City Beach, FL 32413, USA",(850) 235-4101,https://maninthesea.org/,Panama City +Gulf World Marine Park,30.2109791,-85.8675365,"15412 Front Beach Rd, Panama City Beach, FL 32413, USA",(850) 234-5271,http://www.gulfworldmarinepark.com/,Panama City +Race City,30.1788997,-85.79409179999999,"9523 Front Beach Rd, Panama City Beach, FL 32407, USA",(850) 234-1588,http://racecitypcb.com/,Panama City +Panama City Beach,30.215551,-85.8770009,"16201 Front Beach Rd, Panama City Beach, FL 32413, USA",Unknown,Unknown,Panama City +Sea Screamer,30.14562559999999,-85.74879760000002,"3605 Thomas Dr, Panama City Beach, FL 32408, USA",(850) 235-3000,http://www.seascreamer.net/,Panama City +Emerald Falls Family Recreation Center,30.16749469999999,-85.787967,"8602 Thomas Dr, Panama City, FL 32408, USA",(850) 234-1049,http://www.emeraldfallsamusement.com/,Panama City +Fort Abercrombie State Historic Park,57.8340488,-152.3572397,"Miller Point, Kodiak, AK 99615, USA",(907) 486-6339,https://dnr.alaska.gov/parks/aspunits/kodiak/fortabercrombieshp.htm,Kodiak +Kodiak History Museum,57.78763490000001,-152.4032831,"101 E Marine Way, Kodiak, AK 99615, USA",(907) 486-5920,https://kodiakhistorymuseum.org/,Kodiak +Kodiak Maritime Museum,57.7818449,-152.4063253,"500 Alimaq Dr., Trident Way, Kodiak, AK 99615, USA",(907) 486-0384,http://www.kodiakmaritimemuseum.org/,Kodiak +Kodiak National Wildlife Refuge Main Office,57.7588871,-152.4984963,"1390 Buskin River Rd, Kodiak, AK 99615, USA",(907) 487-2600,https://www.fws.gov/refuge/kodiak/,Kodiak +Alutiiq Museum,57.78903219999999,-152.4020219,"215 Mission Road, First Floor, Kodiak, AK 99615, USA",(844) 425-8844,http://alutiiqmuseum.org/,Kodiak +Buskin River State Park,57.75611730000001,-152.4887156,"Kodiak, AK 99615, USA",Unknown,https://dnr.alaska.gov/parks/aspunits/kodiak/buskinriversrs.htm,Kodiak +Ambassador Adventures of Kodiak,57.81790030000001,-152.3791074,"2678 Lake View Dr, Kodiak, AK 99615, USA",(907) 942-2904,http://www.ambassadoradventureskodiak.com/,Kodiak +Holy Resurrection Orthodox Cathedral,57.7885208,-152.4023958,"385 Kashevaroff Ave, Kodiak, AK 99615, USA",(907) 486-5532,https://www.facebook.com/hrckodiak/,Kodiak +Northend Park,57.7861584,-152.3948386,"100 Alimaq Dr, Kodiak, AK 99615, USA",Unknown,Unknown,Kodiak +Alutiiq Ancestors' Memorial,57.7892161,-152.4033409,"210 Mill Bay Rd, Kodiak, AK 99615, USA",(844) 425-8844,http://ancestorsmemorial.org/,Kodiak +Kodiak National Wildlife Refuge Visitor Center,57.7874946,-152.4041484,"402 Center St, Kodiak, AK 99615, USA",(907) 487-2626,http://kodiak.fws.gov/,Kodiak +Dark Lake Park,57.8121295,-152.3704491,"Kodiak, AK 99615, USA",Unknown,Unknown,Kodiak +Kodiak Scenic Tours,57.78332169999999,-152.4045139,"539 Alimaq Dr, Kodiak, AK 99615, USA",(907) 654-9653,https://www.kodiaktravels.com/boat-adventures.html,Kodiak +Woody Island NDB RWO 394,57.7748116,-152.3246014,"Kodiak, AK 99615, USA",Unknown,Unknown,Kodiak +Kodiak Military History Museum at Miller Point Fort Abercrombie,57.8366,-152.3536,"1100 Abercrombie Dr, Kodiak, AK 99615, USA",(907) 486-7015,http://www.kadiak.org/museum/museum.html,Kodiak +Woman's Bay,57.717916,-152.534964,"Kodiak, AK 99615, USA",Unknown,Unknown,Kodiak +Adventures In Kodiak,57.79007439999999,-152.404408,"208 E Rezanof Dr, Kodiak, AK 99615, USA",(907) 539-8866,https://www.possibilitiesunlimitedalaska.com/,Kodiak +Spruce Cape Trail,57.82021659999999,-152.3409704,"4149 Woodland Dr, Kodiak, AK 99615, USA",Unknown,Unknown,Kodiak +Sea Hawk Air,57.7784996,-152.3981933,"506 Trident Way, Kodiak, AK 99615, USA",(907) 486-8282,https://www.seahawkair.com/,Kodiak +Kodiak Community Gardens,57.7969664,-152.3931647,"Larch St, Kodiak, AK 99615, USA",Unknown,http://kodiaksoilandwater.org/,Kodiak +Yakima Valley Museum,46.5927848,-120.5375071,"2105 Tieton Dr, Yakima, WA 98902, USA",(509) 248-0747,http://www.yvmuseum.org/,Yakima +Yakima Area Arboretum,46.588776,-120.4727671,"1401 Arboretum Dr, Yakima, WA 98901, USA",(509) 248-7337,http://www.ahtrees.org/,Yakima +Yakima Sportsman State Park,46.59190479999999,-120.4629346,"904 University Pkwy, Yakima, WA 98907, USA",(509) 575-2774,http://parks.state.wa.us/278/Yakima-Sportsman,Yakima +Franklin Park,46.5940889,-120.5376116,"2101 Tieton Dr, Yakima, WA 98902, USA",(509) 575-6020,http://www.yakimaparks.com/parks/franklin/,Yakima +Yakima Valley Trolleys Powerhouse Museum,46.59458,-120.5099404,"418 S 3rd Ave, Yakima, WA 98902, USA",(509) 249-5962,https://m.yakimavalleytrolleys.org/,Yakima +Sarg Hubbard Park,46.6015053,-120.4748382,"111 S 18th St, Yakima, WA 98901, USA",(509) 453-8280,http://www.yakimagreenway.org/#!parks/c4fi,Yakima +Kiwanis Park,46.5991639,-120.4829514,"1501 E Maple St, Yakima, WA 98901, USA",(509) 575-6020,http://www.yakimaparks.com/parks/kiwanis/,Yakima +Arboretum & Botanical Garden,46.5893378,-120.4738952,"Yakima, WA 98901, USA",Unknown,https://www.ahtrees.org/,Yakima +West Valley Community Park,46.5808506,-120.6097937,"1323 S 80th Ave, Yakima, WA 98908, USA",(509) 575-6020,http://www.yakimaparks.com/parks/west-valley-park/,Yakima +"Yakima ""Cruise-the-Ave"" June-September",46.6021857,-120.5061864,"199-101 E Yakima Ave, Yakima, WA 98901, USA",Unknown,Unknown,Yakima +Hub Area of Yakima,46.60228,-120.5057955,"101 E Yakima Ave, Yakima, WA 98901, USA",Unknown,Unknown,Yakima +Chesterley Park,46.6159694,-120.5583551,"40th Ave and River Road, River Rd, Yakima, WA 98902, USA",(509) 575-6020,http://www.yakimaparks.com/parks/chesterley-park/,Yakima +Harlan Landing,46.6318191,-120.5208658,"Rovetto Rd, Yakima, WA 98901, USA",(509) 453-8280,http://yakimagreenway.org,Yakima +Miller Park,46.6099066,-120.5059808,"JF5V+WJQ, 513 N 3rd St, Yakima, WA 98901, USA",(509) 575-6020,http://www.yakimaparks.com/parks/miller/,Yakima +Cowiche Canyon Trail,46.62059190000001,-120.6717197,"J8CH+75, 12015 Summitview Rd, Yakima, WA 98908, USA",(509) 665-2100,https://www.blm.gov/visit/cowiche-canyon-trail-system,Yakima +Randall Dog Park,46.5784014,-120.5717446,"1401 S 48th Ave, Yakima, WA 98903, USA",(509) 575-6020,https://m.facebook.com/YakimaDogPark/,Yakima +Lions Park,46.59534499999999,-120.5141352,"509 W Pine St, Yakima, WA 98902, USA",(509) 575-6020,http://www.yakimaparks.com/parks/lions/,Yakima +Yakima Valley Trolleys Carbarn Museum,46.5952522,-120.5106955,"306 W Pine St, Yakima, WA 98902, USA",(509) 249-5962,http://www.yakimavalleytrolleys.org/,Yakima +Meadowbrook Family Fun Center,46.5852984,-120.60472,"7200 W Nob Hill Blvd, Yakima, WA 98908, USA",Unknown,Unknown,Yakima +Randall Park,46.5799273,-120.5700473,"1399 S 48th Ave, Yakima, WA 98908, USA",(509) 575-6020,http://www.yakimaparks.com/parks/randall/,Yakima +Utah Field House of Natural History State Park Museum,40.4552778,-109.5197222,"496 E Main St, Vernal, UT 84078, USA",(435) 789-3799,https://stateparks.utah.gov/parks/utah-field-house/,Vernal +Uintah County Heritage Museum,40.45607449999999,-109.5255867,"155 E Main St, Vernal, UT 84078, USA",(435) 789-7399,http://www.uintahmuseum.org/,Vernal +Steinaker State Park,40.5188219,-109.5424803,"4335 N Hwy 191, Vernal, UT 84078, USA",(800) 322-3770,https://stateparks.utah.gov/parks/steinaker/discover/,Vernal +Regional History Center,40.4563236,-109.5259821,"152 E 100 N, Vernal, UT 84078, USA",(435) 789-6276,http://uintahhistory.org/,Vernal +Ashley Valley Community Park,40.4626565,-109.5453301,"500 N 900 W, Vernal, UT 84078, USA",(435) 781-0982,http://www.co.uintah.ut.us/,Vernal +Dinosaur Land In Vernal Utah,40.4556181,-109.5256214,"134 E Main St, Vernal, UT 84078, USA",(800) 477-5558,http://www.dinoland.com/contact-us/,Vernal +First Lady Dolls,40.45580119999999,-109.5256862,"100-198 E Main St, Vernal, UT 84078, USA",Unknown,Unknown,Vernal +Dinah,40.45598579999999,-109.5115074,"905 E Main St, Vernal, UT 84078, USA",(888) 556-3845,Unknown,Vernal +Fantasy Canyon,40.057357,-109.3932191,"Vernal, UT 84078, USA",Unknown,https://www.blm.gov/visit/fantasy-canyon,Vernal +Cobble Rock Park,40.455486,-109.5281218,"29 S Vernal Ave, Vernal, UT 84078, USA",(435) 789-2255,http://vernalcity.org/,Vernal +Freestone Legacy Walking Park,40.462092,-109.5441869,"811 W 500 N, Vernal, UT 84078, USA",(435) 781-0982,Unknown,Vernal +Ashley Nature Park,40.4789518,-109.5630901,"1776 W 1500 N, Vernal, UT 84078, USA",Unknown,http://uintahrecreation.org/,Vernal +Vernal Regional Airport General Aviation Ramp,40.4466827,-109.5136395,"830 E 500 S, Vernal, UT 84078, USA",Unknown,Unknown,Vernal +Vernal DUP Museum,40.4531721,-109.5383698,"186 S 500 W, Vernal, UT 84078, USA",(435) 789-0352,http://isdup.org/,Vernal +Uintah County Western Park,40.452768,-109.522952,"302 E 200 S, Vernal, UT 84078, USA",(435) 789-7396,https://www.westernpark.org/,Vernal +McConkie Ranch Petroglyphs,40.54603929999999,-109.6368726,"6228 McConkie Rd, Vernal, UT 84078, USA",Unknown,Unknown,Vernal +Steinaker Lake State Park,40.51180529999999,-109.5240814,"4335 US-191 Scenic, Vernal, UT 84078, USA",(435) 789-4432,https://stateparks.utah.gov/parks/steinaker/,Vernal +Red Fleet State Park,40.58715,-109.4433707,"8750 N Hwy 191, Vernal, UT 84078, USA",(435) 789-6614,http://stateparks.utah.gov/parks/red-fleet,Vernal +Remember the Maine Park,40.5161996,-109.5984413,"4250 N 3500 W, Vernal, UT 84078, USA",Unknown,http://www.uintahrecreation.org/index.asp?SEC=B838A255-7885-4ECA-895A-A3D4729199CE&Type=GALLERY,Vernal +Western Park Museum,40.4524026,-109.5212923,"302 E 200 S, Vernal, UT 84078, USA",(435) 789-7392,http://maxwells-silverhammer.com/,Vernal +The Salisbury Museum,51.0643934,-1.7997539,"The Kings House, 65 The Cl, Salisbury SP1 2EN, UK",01722 332151,http://www.salisburymuseum.org.uk/,Salisbury +Salisbury Cathedral,51.0649871,-1.797303499999999,"Salisbury SP1 2EJ, UK",01722 555100,https://www.salisburycathedral.org.uk/,Salisbury +Arundells,51.0657006,-1.7993074,"59 Cathedral Close, Salisbury SP1 2EN, UK",01722 326546,http://www.arundells.org/,Salisbury +Old Sarum,51.0932288,-1.8048782,"Castle Rd, Salisbury SP1 3SD, UK",0370 333 1181,https://www.english-heritage.org.uk/visit/places/old-sarum/?utm_source=Google%20Business&utm_campaign=Local%20Listings&utm_medium=Google%20Business%20Profiles&utm_content=old%20sarum&utm_source=Google%20Business&utm_campaign=Local%20Listings&utm_medium=Google%20Business%20Profiles&utm_content=old%20sarum,Salisbury +The Rifles Berkshire and Wiltshire Museum,51.0662065,-1.7996348,"The Wardrobe, 58 The Cl, Salisbury SP1 2EX, UK",01722 419419,http://www.thewardrobe.org.uk/,Salisbury +National Trust - Mompesson House,51.066758,-1.798473,"The Close, Salisbury SP1 2EL, UK",01722 335659,https://www.nationaltrust.org.uk/mompesson-house/,Salisbury +Boscombe Down Aviation Collection,51.0999835,-1.7854731,"Hangar 1 Old Sarum Airfield, Old Sarum, Salisbury SP4 6DZ, UK",01722 323636,http://boscombedownaviationcollection.co.uk/,Salisbury +Churchill Gardens,51.0625489,-1.7892383,"Churchill Way S, Salisbury SP1 2JN, UK",01722 342860,http://www.salisburycitycouncil.gov.uk/responsibilities/parks-open-spaces/churchill-gardens,Salisbury +Milford Street Bridge,51.06836209999999,-1.7898186,"88 Milford St, Salisbury SP1 2BS, UK",Unknown,Unknown,Salisbury +History Hunt - Salisbury,51.07433179999999,-1.8020908,"Market Square, Salisbury SP1 1JH, UK",07780 677840,https://www.historyhunt.co.uk/,Salisbury +Live Escape Rooms Salisbury - Castle Street,51.0712217,-1.7964535,"49c Castle St, Salisbury SP1 3SP, UK",07917 701797,https://live-escape.co.uk/,Salisbury +Salisbury Escape Rooms,51.06925289999999,-1.7998528,"11a Fisherton St, Salisbury SP2 7SU, UK",01722 428980,https://www.salisburyescape.com/,Salisbury +Hudson's Field,51.0879632,-1.8024651,"291 Castle Rd, Salisbury SP1 3SB, UK",01722 342860,Unknown,Salisbury +Harnham Water Meadows,51.0639796,-1.8082164,"Rose Cottage, Town Path, Salisbury SP2 8EU, UK",Unknown,http://www.salisburywatermeadows.org.uk/,Salisbury +Salisbury Bug Cathedral,51.0637828,-1.7982968,"The Close, Salisbury SP1 2EN, UK",Unknown,Unknown,Salisbury +The Salisbury Story Trail,51.0682213,-1.7987115,"1 Fisherton St, Salisbury SP2 7SU, UK",Unknown,Unknown,Salisbury +Avon Valley Nature Reserve,51.0827372,-1.8074096,"Salisbury SP1 3JY, UK",01722 342860,http://www.salisburycitycouncil.gov.uk/parks-and-open-spaces,Salisbury +Salisbury Watermeadows,51.0664989,-1.8053982,"Salisbury SP2 7RZ, UK",Unknown,Unknown,Salisbury +Magna Carta Chapter House,51.0644859,-1.7971883,"Salisbury SP1 2EL, UK",01722 555120,http://www.salisburycathedral.org.uk/magna-carta,Salisbury +Victoria Park,51.0802655,-1.7977891,"Unnamed Road, Salisbury SP1 3NE, UK",01722 415089,Unknown,Salisbury +Monticello,38.00860429999999,-78.4531994,"1050 Monticello Loop, Charlottesville, VA 22902, USA",(434) 984-9800,https://www.monticello.org/,Charlottesville +Virginia Discovery Museum,38.0295391,-78.4779059,"524 E Main St, Charlottesville, VA 22902, USA",(434) 977-1025,https://vadm.org/,Charlottesville +The Fralin Museum of Art at the University of Virginia,38.038286,-78.50300200000001,"155 Rugby Rd, Charlottesville, VA 22904, USA",(434) 924-3592,https://uvafralinartmuseum.virginia.edu/,Charlottesville +Ix Art Park,38.0263106,-78.48223159999999,"522 2nd St SE D, Charlottesville, VA 22902, USA",(434) 207-2964,https://www.ixartpark.org/,Charlottesville +The Rotunda,38.0355514,-78.50342599999999,"1826 University Ave, Charlottesville, VA 22904, USA",(434) 924-7969,http://rotunda.virginia.edu/,Charlottesville +Freedom of Speech Wall,38.0295447,-78.4776545,"605 E Main St, Charlottesville, VA 22902, USA",Unknown,Unknown,Charlottesville +Albemarle Charlottesville Historical Society,38.0318462,-78.47997210000001,"200 2nd St NE, Charlottesville, VA 22902, USA",(434) 296-1492,http://www.albemarlehistory.org/,Charlottesville +Administrative Offices of the Charlottesville Albemarle Convention & Visitors Bureau,38.0498691,-78.5245932,"501 Faulconer Dr, Charlottesville, VA 22903, USA",(434) 293-6789,http://www.visitcharlottesville.org/,Charlottesville +Kluge-Ruhe Aboriginal Art Collection of the University of Virginia,38.02533849999999,-78.4423807,"400 Worrell Dr, Charlottesville, VA 22911, USA",(434) 243-8500,https://kluge-ruhe.org/,Charlottesville +Saunders-Monticello Trail,38.00221669999999,-78.4776991,"503 Thomas Jefferson Pkwy, Charlottesville, VA 22902, USA",(434) 984-9822,http://www.monticello.org/site/visit/kemper-park,Charlottesville +The Lawn,38.0352422,-78.5036059,"400 Emmet St S, Charlottesville, VA 22903, USA",(434) 924-0311,https://housing.virginia.edu/area/1176,Charlottesville +Berkeley Art Wall,38.0772069,-78.4812993,"2118 Dominion Dr, Charlottesville, VA 22901, USA",Unknown,Unknown,Charlottesville +McIntire Park,38.04729750000001,-78.47538469999999,"375 US-250 BYP, Charlottesville, VA 22901, USA",(434) 970-3589,https://www.charlottesville.gov/Facilities/Facility/Details/McIntire-Park-25,Charlottesville +Leander McCormick Observatory,38.0329765,-78.5223966,"600 McCormick Rd, Charlottesville, VA 22904, USA",(434) 243-1885,Unknown,Charlottesville +Blue Ridge Sanitarium,38.00993390000001,-78.4717296,"Unnamed Road, Charlottesville, VA 22902, USA",Unknown,Unknown,Charlottesville +Riverview Park,38.0236256,-78.4545224,"1909 Chesapeake St, Charlottesville, VA 22902, USA",(434) 970-3333,https://www.charlottesville.gov/facilities/facility/details/Riverview-Park-61,Charlottesville +Ragged Mountain Nature Area,38.026673,-78.55592899999999,"1730 Reservoir Rd, Charlottesville, VA 22902, USA",Unknown,https://www.charlottesville.gov/Facilities/Facility/Details/Ragged-Mountain-Natural-Area-40,Charlottesville +Pen Park,38.0536025,-78.45402270000001,"1300 Pen Park Rd, Charlottesville, VA 22901, USA",(434) 970-3589,https://www.charlottesville.gov/Facilities/Facility/Details/Pen-Park-26,Charlottesville +Forest Hills Park,38.02416239999999,-78.4973351,"1022 Forest Hills Ave, Charlottesville, VA 22903, USA",(434) 970-3260,https://www.charlottesville.gov/Facilities/Facility/Details/Forest-Hills-Park-23,Charlottesville +Greenleaf Park,38.04942460000001,-78.48206069999999,"1598 Rose Hill Dr, Charlottesville, VA 22903, USA",(434) 970-3021,https://www.charlottesville.gov/facilities/facility/details/Greenleaf-Park-24,Charlottesville +"Museum of the West, Museums of Western Colorado",39.06568799999999,-108.564776,"462 Ute Ave, Grand Junction, CO 81501, USA",(970) 242-0971,https://museumofwesternco.com/,Grand Junction +Eureka! McConnell Science Museum,39.0804296,-108.5606897,"1400 N 7th St, Grand Junction, CO 81501, USA",(970) 254-1626,http://www.eurekasciencemuseum.org/,Grand Junction +Bananas Fun Park,39.08354910000001,-108.5962921,"2469 Riverside Pkwy, Grand Junction, CO 81505, USA",(970) 241-7529,http://www.bananasfunpark.com/,Grand Junction +Western Colorado Botanical Gardens,39.0552228,-108.5612046,"655 Struthers Ave, Grand Junction, CO 81501, USA",(970) 245-9030,https://wcbotanic.org/,Grand Junction +Canyon View Park,39.11066309999999,-108.605773,"730 24 Rd, Grand Junction, CO 81505, USA",(970) 254-3866,http://gjparksandrec.org/,Grand Junction +Eagle Rim Park,39.0526189,-108.5452034,"Grand Junction, CO 81503, USA",Unknown,https://www.gjcity.org/Facilities/Facility/Details/Eagle-Rim-Park-12,Grand Junction +"Cross Orchards Historic Site, Museums of Western Colorado",39.0914955,-108.4830551,"3073 F Rd, Grand Junction, CO 81504, USA",(970) 242-0971,https://museumofwesternco.com/,Grand Junction +James M. Robb - Colorado River State Park,39.0574368,-108.4607565,"361 32 Rd, Clifton, CO 81520, USA",(970) 434-3388,https://cpw.state.co.us/placestogo/Parks/jamesmrobbcoloradoriver,Grand Junction +Long Family Memorial Park,39.0894159,-108.4744683,"3117 F Rd, Grand Junction, CO 81504, USA",(970) 244-3230,Unknown,Grand Junction +James M. Robb - Colorado River State Park Connected Lakes Section,39.0824732,-108.6128938,"Dike Rd, Grand Junction, CO 81507, USA",(970) 858-9188,https://cpw.state.co.us/placestogo/Parks/jamesmrobbcoloradoriver,Grand Junction +Attractions Grand Junction!!,39.0921805,-108.6028252,"US-6, Grand Junction, CO 81505, USA",Unknown,Unknown,Grand Junction +Palisade Tourism,39.06946509999999,-108.5615607,"652 White Ave, Grand Junction, CO 81501, USA",(970) 242-7674,Unknown,Grand Junction +Rocket Park,39.0840252,-108.535,"1827 N 26th St, Grand Junction, CO 81501, USA",(970) 254-3866,https://www.gjcity.org/Facilities/Facility/Details/Rocket-Park-26,Grand Junction +Welcome To Grand Junction Mural,39.0675251,-108.5642427,"500 Main St, Grand Junction, CO 81501, USA",Unknown,http://gjcreates.org/,Grand Junction +Walter Walker State Wildlife Area,39.106128,-108.6499523,"2175 Railroad Ave, Grand Junction, CO 81505, USA",(970) 255-6100,Unknown,Grand Junction +Visit Grand Junction,39.1102477,-108.5399957,"740 Horizon Dr, Grand Junction, CO 81506, USA",(970) 256-4060,https://www.visitgrandjunction.com/,Grand Junction +Hawthorne Park,39.0739469,-108.565285,"400 Gunnison Ave, Grand Junction, CO 81501, USA",(970) 254-3866,Unknown,Grand Junction +Columbine Park,39.0834819,-108.5277651,"544 28 1/4 Rd, Grand Junction, CO 81501, USA",(970) 254-3866,http://www.gjcity.org/residents/parks-recreation/parks/#footer,Grand Junction +Red Canyon Overlook,39.0308468,-108.6863272,"2198 Rimrock Dr, Grand Junction, CO 81507, USA",(970) 858-3617,http://nps.gov/colm,Grand Junction +Lincoln Park,39.07514129999999,-108.5453352,"910 N 12th St, Grand Junction, CO 81501, USA",(970) 254-3866,http://gjparksandrec.org/,Grand Junction +Louisiana's Old State Capitol,30.446593,-91.1890443,"100 North Blvd, Baton Rouge, LA 70801, USA",(225) 342-0500,http://www.louisianaoldstatecapitol.org/,Baton Rouge +BREC's Baton Rouge Zoo,30.5623594,-91.1598293,"3601 Thomas Rd, Baton Rouge, LA 70811, USA",(225) 775-3877,http://www.brzoo.org/,Baton Rouge +USS KIDD Veterans Museum,30.44359949999999,-91.1901607,"305 S River Rd, Baton Rouge, LA 70802, USA",(225) 342-1942,http://www.usskidd.com/,Baton Rouge +Capitol Park Museum,30.4540283,-91.1865059,"660 N 4th St, Baton Rouge, LA 70802, USA",(225) 342-5428,http://www.louisianastatemuseum.org/,Baton Rouge +Louisiana Art & Science Museum,30.4462269,-91.1903226,"100 S River Rd, Baton Rouge, LA 70801, USA",(225) 344-5272,http://www.lasm.org/,Baton Rouge +Louisiana State University Rural Life Museum,30.4116371,-91.1155079,"4560 Essen Ln, Baton Rouge, LA 70803, USA",(225) 765-2437,http://www.lsu.edu/rurallife/,Baton Rouge +Veteran's Memorial Park,30.4574126,-91.1848053,"599 State Capitol Dr #523, Baton Rouge, LA 70802, USA",Unknown,Unknown,Baton Rouge +BREC's Bluebonnet Swamp Nature Center,30.3699987,-91.1045565,"10503 N Oak Hills Pkwy, Baton Rouge, LA 70810, USA",(225) 757-8905,http://brec.org/swamp,Baton Rouge +Liberty Lagoon,30.44921399999999,-91.1113241,"111 Lobdell Ave, Baton Rouge, LA 70806, USA",(225) 923-3202,http://libertylagoon.com/,Baton Rouge +LSU Museum of Art,30.4476526,-91.1890612,"100 Lafayette St, Baton Rouge, LA 70801, USA",(225) 389-7200,http://lsumoa.org/,Baton Rouge +Magnolia Mound Plantation,30.4262376,-91.1872027,"2161 Nicholson Dr, Baton Rouge, LA 70802, USA",(225) 343-4955,https://www.brec.org/facility/MagnoliaMound,Baton Rouge +Riverfront Plaza & City Dock,30.445301,-91.1906815,"300 S River Rd, Baton Rouge, LA 70802, USA",Unknown,Unknown,Baton Rouge +Burden Museum & Gardens,30.4088909,-91.1058458,"4560 Essen Ln, Baton Rouge, LA 70809, USA",(225) 763-3990,https://www.lsuagcenter.com/portals/burden/,Baton Rouge +Blue Bayou Water Park,30.34508380000001,-91.0260951,"18142 Perkins Rd E, Baton Rouge, LA 70810, USA",(225) 753-3333,http://www.bluebayou.com/,Baton Rouge +Mike the Tiger's Habitat,30.4134061,-91.1850348,"16 N Stadium Dr, Baton Rouge, LA 70802, USA",(225) 578-4823,http://www.mikethetiger.com/,Baton Rouge +Sing the River Sculpture,30.4492512,-91.1906571,"Florida St &, River Rd, Baton Rouge, LA 70801, USA",Unknown,https://www.visitbatonrouge.com/listing/sing-the-river-sculpture/2839/,Baton Rouge +Knock Knock Children's Museum,30.4301736,-91.170001,"1900 Dalrymple Dr, Baton Rouge, LA 70808, USA",(225) 388-3090,http://www.knockknockmuseum.org/,Baton Rouge +Hilltop Arboretum,30.3561566,-91.0949904,"Enter off of, 11855 Highland Rd, Baton Rouge, LA 70810, USA",(225) 767-6916,http://hilltop.lsu.edu/,Baton Rouge +Mississippi River Park,30.44922829999999,-91.1905404,"299 River Rd, Baton Rouge, LA 70801, USA",Unknown,Unknown,Baton Rouge +Spanish Town Park,30.4544288,-91.1763417,"1300 Spanish Town Rd, Baton Rouge, LA 70802, USA",(225) 272-9200,http://www.brec.org/index.cfm/park/SpanishTown,Baton Rouge +Frontier Culture Museum,38.1249916,-79.05011139999999,"1290 Richmond Ave, Staunton, VA 24401, USA",(540) 332-7850,https://www.frontiermuseum.org/,Staunton +Woodrow Wilson Presidential Library & Museum,38.1500659,-79.0687657,"20 N Coalter St, Staunton, VA 24401, USA",(540) 885-0897,http://www.woodrowwilson.org/,Staunton +Montgomery Hall Park,38.1441593,-79.09554140000002,"1000 Montgomery Ave, Staunton, VA 24401, USA",(540) 332-3945,https://www.ci.staunton.va.us/departments/parks-recreation-/parks/montgomery-hall-park,Staunton +The Camera Heritage Museum,38.1496653,-79.0727995,"1 W Beverley St, Staunton, VA 24401, USA",(540) 886-8535,http://www.cameraheritagemuseum.com/,Staunton +Betsy Bell Wilderness Park,38.1365148,-79.0584367,"525 Betsy Bell Rd, Staunton, VA 24401, USA",(540) 332-3945,https://www.ci.staunton.va.us/departments/parks-recreation-/parks-/montgomery-hall-park/betsy-bell-mary-gray-wilderness-park,Staunton +Gypsy Hill Park,38.158508,-79.0808345,"600 Churchville Ave, Staunton, VA 24401, USA",(540) 332-3990,https://www.ci.staunton.va.us/departments/parks-recreation-/parks/gypsy-hill-park,Staunton +Virginia Scenic Railway,38.1474809,-79.0724056,"STA, 12 Middlebrook Ave, Staunton, VA 24401, USA",(434) 391-9772,http://virginiascenicrailway.com/,Staunton +Staunton Watering Can,38.1470783,-79.0686474,"Staunton, VA 24401, USA",Unknown,Unknown,Staunton +Staunton Mural,38.1492818,-79.07373190000001,"102 W Beverley St, Staunton, VA 24401, USA",Unknown,Unknown,Staunton +Wharf Area Historic District,38.1476165,-79.0733312,"Staunton, VA 24401, USA",(540) 332-3867,Unknown,Staunton +Gypsy Express,38.1598224,-79.0802937,"370 Constitution Dr, Staunton, VA 24401, USA",(540) 885-6618,http://www.staunton.va.us/,Staunton +Augusta County Historical Society,38.148924,-79.071663,"20 S New St, Staunton, VA 24401, USA",(540) 248-4151,https://www.augustacountyhs.org/,Staunton +Downtown Staunton Visitor Center,38.1490404,-79.0713597,"35 S New St suite a, Staunton, VA 24401, USA",(540) 332-3971,http://www.visitstaunton.com/,Staunton +Bruce A. Elder Antique And Classic Automobiles,38.148119,-79.071534,"114 S New St, Staunton, VA 24401, USA",(540) 290-2529,https://automotivemuseumguide.com/bruce-a-elder-antique-and-classic-automobiles/,Staunton +Octagonal Barn at the Frontier Culture Museum,38.1261909,-79.0491102,"Staunton, VA 24401, USA",Unknown,http://frontiermuseum.org/,Staunton +Conrad Mansion Museum,48.1969781,-114.3031522,"330 Woodland Ave, Kalispell, MT 59901, USA",(406) 755-2166,https://www.conradmansion.com/,Kalispell +Lone Pine State Park,48.1740316,-114.3376039,"300 Lone Pine Rd, Kalispell, MT 59901, USA",(406) 755-2706,http://stateparks.mt.gov/lone-pine,Kalispell +Woodland Water Park,48.2021945,-114.3003131,"45 N Woodland Pk Rd, Kalispell, MT 59901, USA",(406) 758-7812,https://www.kalispell.com/248/Woodland-Water-Park,Kalispell +Hockaday Museum of Art,48.1960766,-114.3101756,"302 2nd Ave E, Kalispell, MT 59901, USA",(406) 755-5268,http://hockadaymuseum.com/,Kalispell +Herron Park,48.1473796,-114.3567689,"2310 Foys Lake Rd, Kalispell, MT 59901, USA",(406) 758-5800,https://flathead.mt.gov/parks_rec/request.php,Kalispell +Depot Park,48.19921189999999,-114.3130211,"15 Depot Pk, Kalispell, MT 59901, USA",(406) 758-2800,http://www.kalispellchamber.com/,Kalispell +Northwest Montana History Museum,48.1976983,-114.3106696,"124 2nd Ave E, Kalispell, MT 59901, USA",(406) 756-8381,http://www.nwmthistory.org/,Kalispell +Woodland Park,48.1998851,-114.302204,"Conrad Dr & Woodland Ave, 705 2nd St E, Kalispell, MT 59901, USA",(406) 758-7718,https://www.kalispell.com/248/Woodland-Water-Park,Kalispell +Thompson Memorial Park,48.19127419999999,-114.2994243,"900-998 7th Ave E, Kalispell, MT 59901, USA",(406) 758-7718,Unknown,Kalispell +Kalispell Parks & Recreation,48.1958162,-114.311718,"306 1st Ave E, Kalispell, MT 59901, USA",(406) 758-7718,https://www.kalispell.com/237/Parks-Recreation,Kalispell +Leisure Island Park,48.1742778,-114.2756599,"Kalispell, MT 59901, USA",Unknown,https://flathead.mt.gov/parks_rec/parks.php,Kalispell +Lawrence Park,48.2107805,-114.3138704,"1105 N Main St, Kalispell, MT 59901, USA",(406) 758-7718,https://www.kalispell.com/240/Pavilions-Gardens-Parks-Reservations,Kalispell +Olsen Pioneer Park,48.31057149999999,-114.2339313,"3054 Helena Flats Rd, Kalispell, MT 59901, USA",Unknown,Unknown,Kalispell +406 Adventures,48.2134971,-114.1884464,"205 Sunset Trail, Kalispell, MT 59901, USA",(406) 270-6035,Unknown,Kalispell +Faerie Steps,48.2073119,-114.2848806,"Evergreen, MT 59901, USA",Unknown,Unknown,Kalispell +Dill Park,48.2136994,-114.3693257,"130 Looking Glass Ave, Kalispell, MT 59901, USA",Unknown,Unknown,Kalispell +Bibler Gardens,48.1798462,-114.3784687,"350 Lake Hills Dr, Kalispell, MT 59901, USA",(406) 755-6578,http://biblergardens.org/,Kalispell +Kalispell Climbing Boulder,48.2100934,-114.3155564,"Kalispell, MT 59901, USA",(406) 758-7849,https://www.kalispell.com/237/Parks-Recreation,Kalispell +Leisure park,48.1757939,-114.2797533,"681 Leisure Dr, Kalispell, MT 59901, USA",Unknown,Unknown,Kalispell +Spring Prairie Tree Park,48.2292255,-114.335323,"Kalispell, MT 59901, USA",Unknown,Unknown,Kalispell +Southernmost Point of the Continental U.S.A.,24.5465114,-81.7975065,"1400 Whitehead St, Key West, FL 33040, USA",(305) 809-3700,https://cityofkeywest-fl.gov/Facilities/Facility/Details/Southernmost-Point-44,Key West +The Key West Butterfly and Nature Conservatory,24.5475638,-81.79682489999999,"1316 Duval St, Key West, FL 33040, USA",(305) 296-2988,https://www.keywestbutterfly.com/,Key West +Key West Aquarium,24.55907,-81.807332,"1 Whitehead St, Key West, FL 33040, USA",(305) 296-2051,https://www.keywestaquarium.com/,Key West +Fort Zachary Taylor Historic State Park,24.5465476,-81.81056459999999,"601 Howard England Way, Key West, FL 33040, USA",(305) 292-6713,https://www.floridastateparks.org/park/Fort-Taylor,Key West +Key West Lighthouse,24.5504565,-81.8006803,"938 Whitehead St, Key West, FL 33040, USA",(305) 294-0012,https://www.kwahs.org/museums/lighthouse-keepers-quarters/visit,Key West +Smathers Beach,24.5519783,-81.7687296,"2601 S Roosevelt Blvd, Key West, FL 33040, USA",(305) 809-3700,https://www.cityofkeywest-fl.gov/facilities/facility/details/Smathers-Beach-5,Key West +Sunset Celebration at Mallory Square,24.5599363,-81.80771519999999,"Mallory Square Pier, 420 Wall St, Key West, FL 33040, USA",(786) 565-7448,https://www.sunsetcelebration.org/index.html,Key West +Mel Fisher Maritime Museum,24.5580622,-81.8064833,"200 Greene St, Key West, FL 33040, USA",(305) 294-2633,http://www.melfisher.org/,Key West +Fort East Martello Museum,24.5520945,-81.7551964,"3501 S Roosevelt Blvd, Key West, FL 33040, USA",(305) 296-3913,https://www.kwahs.org/museums/fort-east-martello/visit,Key West +Truman Little White House,24.556274,-81.80686469999999,"111 Front St, Naval Air Station Key West, FL 33040, USA",(305) 294-9911,https://www.trumanlittlewhitehouse.org/,Key West +Mallory Square Key West,24.5598677,-81.8076774,"420 Wall St, Key West, FL 33040, USA",(352) 727-0403,Unknown,Key West +West Martello Tower and Key West Garden Club,24.5473056,-81.7860352,"1100 Atlantic Blvd, Key West, FL 33040, USA",(305) 294-3210,https://keywestgardenclub.com/,Key West +Florida Keys Eco-Discovery Center,24.5507245,-81.80722659999999,"35 Quay Rd, Key West, FL 33040, USA",(305) 809-4753,https://floridakeys.noaa.gov/eco_discovery.html,Key West +Key West Cemetery,24.5568098,-81.79650219999999,"701 Passover Ln, Key West, FL 33040, USA",(305) 809-3986,Unknown,Key West +The Kapok Tree,24.5547708,-81.8038234,"502 Whitehead St, Key West, FL 33040, USA",Unknown,Unknown,Key West +Clarence S.Higgs Memorial Beach,24.5471717,-81.78724729999999,"1000 Atlantic Blvd, Key West, FL 33040, USA",Unknown,http://www.monroecounty-fl.gov/235/Higgs-Beach,Key West +The Key West Nature Preserve,24.5507276,-81.7792698,"1799-1691 Atlantic Blvd, Key West, FL 33040, USA",Unknown,https://www.attractionskeywest.com/key-west-travel-blog/key-west-nature-preserve/,Key West +Key West Tropical Forest & Botanical Garden,24.573176,-81.748672,"5210 College Rd, Key West, FL 33040, USA",(305) 296-1504,https://keywest.garden/,Key West +The Hemingway Home and Museum,24.5511923,-81.8006162,"907 Whitehead St, Key West, FL 33040, USA",(305) 294-1136,https://www.hemingwayhome.com/,Key West +Key West Ghost And Mysteries Tour,24.5582306,-81.80447079999999,"429 Caroline St, Key West, FL 33040, USA",(305) 292-2040,http://keywestghostandmysteriestour.com/,Key West +National Trust - Greyfriars House and Garden,52.1905507,-2.2188139,"Friar St., Worcester WR1 2LZ, UK",01905 23571,http://www.nationaltrust.org.uk/greyfriars/,Worcester +Tudor House Museum,52.19,-2.2188889,"38 Friar St., Worcester WR1 2NA, UK",01905 612309,https://www.tudorhouse.org.uk/,Worcester +Worcester City Art Gallery and Museum,52.1963746,-2.2223626,"Foregate St, Worcester WR1 1DT, UK",01905 25371,https://www.museumsworcestershire.org.uk/,Worcester +Museum of Royal Worcester,52.1871047,-2.2191047,"Severn St, Worcester WR1 2ND, UK",01905 21247,http://www.museumofroyalworcester.org/,Worcester +Worcester Cathedral,52.1887259,-2.2207065,"8 College Yard, Worcester WR1 2LA, UK",01905 732900,https://www.worcestercathedral.co.uk/,Worcester +The Commandery,52.1875626,-2.2171453,"Sidbury, Worcester WR1 2HU, UK",01905 361821,https://www.museumsworcestershire.org.uk/,Worcester +Worcester Woods Country Park,52.1867658,-2.1785135,"Wildwood Dr, Worcester WR5 2LG, UK",01905 766493,Unknown,Worcester +The Infirmary Museum,52.19584959999999,-2.2262474,"University of, City Campus, Castle St, Worcester WR1 3AS, UK",01905 542373,http://www.medicalmuseum.org.uk/,Worcester +Edgar Tower,52.1880861,-2.2196706,"District, College Grn, Worcester WR1 2LJ, UK",Unknown,Unknown,Worcester +George Marshall Medical Museum,52.1922,-2.183767,"Charles Hastings Education Centre, Worcestershire Royal Hospital, Charles Hastings Way, Worcester WR5 1DD, UK",01905 760738,http://www.medicalmuseum.org.uk/,Worcester +South Quay Fountains,52.19072910000001,-2.2241021,"S Parade, Worcester WR1 2JN, UK",Unknown,Unknown,Worcester +Chapter Meadows,52.1829,-2.225665,"Bromwich Rd, Worcester WR2 4AR, UK",01905 734934,http://www.dwt.org.uk/,Worcester +Blockhouse Lock,52.1898925,-2.2151493,"Lock Cottage, Lock St, Worcester WR5 1AL, UK",Unknown,Unknown,Worcester +Sidbury lock,52.18775429999999,-2.2172808,"71 Sidbury, Worcester WR1 2HU, UK",Unknown,Unknown,Worcester +The Great Worcester Maize Maze,52.1557384,-2.2448329,"Upton Rd, Powick, Worcester WR2 4QZ, UK",07419 815621,http://www.worcestermaze.com/,Worcester +Fort Royal Park,52.1874224,-2.2146486,"Wyld's Ln, Worcester WR5 2DJ, UK",01905 722233,https://www.worcester.gov.uk/fort-royal-park,Worcester +Gheluvelt Park,52.2072222,-2.230555599999999,"69 Waterworks Rd, Worcester WR1 3EY, UK",01905 722233,https://www.worcester.gov.uk/gheluvelt-park,Worcester +Ronkswood Hill Meadows Local Nature Reserve,52.1964795,-2.1918286,"Worcester WR4 9BW, UK",Unknown,Unknown,Worcester +"Gregory's Mill, Bottom Lock",52.2073122,-2.2197962,"11 Canal Side, Worcester WR3 8HZ, UK",Unknown,Unknown,Worcester +The Slip,52.21745199999999,-2.2421916,"Old Northwick Ln, Worcester WR3 7NE, UK",Unknown,Unknown,Worcester +Zoo Boise,43.6078294,-116.2027255,"355 Julia Davis Dr, Boise, ID 83702, USA",(208) 608-7760,http://www.zooboise.org/,Boise +Julia Davis Park,43.6071131,-116.2014806,"700 S Capitol Blvd, Boise, ID 83702, USA",(208) 608-7600,https://www.cityofboise.org/departments/parks-and-recreation/parks/julia-davis-park/,Boise +Boise Art Museum,43.60974179999999,-116.2064251,"670 Julia Davis Dr, Boise, ID 83702, USA",(208) 345-8330,http://www.boiseartmuseum.org/,Boise +Old Idaho Penitentiary Site,43.6027935,-116.1619792,"2445 Old Penitentiary Rd, Boise, ID 83712, USA",(208) 334-2844,https://history.idaho.gov/location/old-penitentiary/,Boise +Discovery Center of Idaho,43.6085238,-116.1992386,"131 W Myrtle St, Boise, ID 83702, USA",(208) 343-9895,http://www.dcidaho.org/,Boise +Camel's Back Park,43.63487800000001,-116.2023442,"1200 Heron St, Boise, ID 83702, USA",Unknown,https://www.cityofboise.org/departments/parks-and-recreation/parks/camels-back-park/,Boise +Basque Museum and Cultural Center,43.6138201,-116.2026809,"611 W Grove St, Boise, ID 83702, USA",(208) 343-2671,http://www.basquemuseum.eus/,Boise +Kathryn Albertson Park,43.6145258,-116.227071,"1001 S Americana Blvd, Boise, ID 83706, USA",(208) 608-7644,https://www.cityofboise.org/departments/parks-and-recreation/parks/kathryn-albertson-park/,Boise +Idaho Botanical Garden,43.6017855,-116.1639284,"2355 N Old Penitentiary Rd, Boise, ID 83712, USA",(208) 343-8649,https://idahobotanicalgarden.org/,Boise +Idaho Anne Frank Human Rights Memorial,43.60993939999999,-116.208771,"770 S 8th St, Boise, ID 83702, USA",(208) 345-0304,https://annefrankmemorial.org/,Boise +Hyde Park,43.6301133,-116.2034709,"1413-1620 N 13th St, Boise, ID 83702, USA",Unknown,https://northend.org/historic-hyde-park/,Boise +JUMP Boise Spiral Slide,43.6145194,-116.2088631,"1000 W Myrtle St, Boise, ID 83702, USA",(208) 639-6610,https://jumpboise.org/spiral-slide,Boise +Idaho State Museum,43.6105765,-116.2056149,"610 Julia Davis Dr, Boise, ID 83702, USA",(208) 334-2120,http://history.idaho.gov/museum,Boise +MK Nature Center - Idaho Fish and Game,43.6012603,-116.1858739,"600 S Walnut St, Boise, ID 83712, USA",(208) 334-2225,https://idfg.idaho.gov/education/mknc,Boise +J.A. and Kathryn Albertson Family Foundation Boise Whitewater Park,43.6251756,-116.2346657,"3400 W Pleasanton Ave, Boise, ID 83702, USA",(208) 608-7192,https://www.cityofboise.org/departments/parks-and-recreation/parks/ja-and-kathryn-albertson-family-foundation-boise-whitewater-park/,Boise +Idaho Black History Museum,43.6100176,-116.2038788,"508 Julia Davis Dr, Boise, ID 83702, USA",(208) 789-2164,http://www.ibhm.org/,Boise +Barber Park,43.5670276,-116.1390858,"4049 S Eckert Rd, Boise, ID 83716, USA",(208) 577-4575,https://adacounty.id.gov/Parks-Waterways,Boise +Table Rock,43.5985383,-116.1477831,"3199 E Table Rock Rd, Boise, ID 83712, USA",(208) 334-2844,https://history.idaho.gov/table-rock/,Boise +Boise Depot,43.6020647,-116.2147603,"2603 W Eastover Terrace, Boise, ID 83706, USA",(208) 608-7644,https://www.cityofboise.org/departments/parks-and-recreation/facilities/boise-depot/,Boise +Boise Sign,43.5882326,-116.2774244,"7609 W Overland Rd, Boise, ID 83709, USA",Unknown,Unknown,Boise +The Gerald R. Ford Presidential Museum,42.96841449999999,-85.6773697,"303 Pearl St NW, Grand Rapids, MI 49504, USA",(616) 254-0400,https://www.fordlibrarymuseum.gov/,Grand Rapids +Grand Rapids Children's Museum,42.96360039999999,-85.667191,"11 Sheldon Ave NE, Grand Rapids, MI 49503, USA",(616) 235-4726,http://www.grcm.org/,Grand Rapids +Grand Rapids Art Museum,42.96501170000001,-85.67103949999999,"101 Monroe Center St NW, Grand Rapids, MI 49503, USA",(616) 831-1000,http://www.artmuseumgr.org/,Grand Rapids +John Ball Zoo,42.9635731,-85.704636,"1300 Fulton St W, Grand Rapids, MI 49504, USA",(616) 336-4300,http://www.jbzoo.org/,Grand Rapids +Frederik Meijer Gardens & Sculpture Park,42.9795078,-85.5901123,"1000 E Beltline Ave NE, Grand Rapids, MI 49525, USA",(616) 957-1580,http://meijergardens.org/,Grand Rapids +Grand Rapids Public Museum,42.965528,-85.676715,"272 Pearl St NW, Grand Rapids, MI 49504, USA",(616) 929-1700,http://www.grpm.org/,Grand Rapids +La Grande Vitesse,42.96930279999999,-85.67075,"525 Ottawa Ave NW, Grand Rapids, MI 49503, USA",(202) 682-5400,https://wkpd.one/yseZHt,Grand Rapids +The Blue Bridge,42.9646038,-85.67555519999999,"Blue Footbridge, Grand Rapids, MI 49504, USA",Unknown,Unknown,Grand Rapids +Meyer May House,42.9541937,-85.6587796,"450 Madison Ave SE, Grand Rapids, MI 49503, USA",(616) 246-4821,http://meyermayhouse.steelcase.com/,Grand Rapids +Ah-Nab-Awen Park,42.96873069999999,-85.67666740000001,"220 Front Ave NW, Grand Rapids, MI 49504, USA",(616) 456-3696,https://www.grandrapidsmi.gov/directory/places/parks/ah-nab-awen-park,Grand Rapids +Fish Ladder Park,42.97451359999999,-85.67661079999999,"606 Front Ave NW, Grand Rapids, MI 49504, USA",(616) 456-3696,https://www.grandrapidsmi.gov/Directory/Places/Parks/Fish-Ladder-Park,Grand Rapids +John Ball Park,42.9610918,-85.7008152,"John Ball Park Ballroom, 1300 Fulton St W, Grand Rapids, MI 49504, USA",(616) 336-4300,https://www.grandrapidsmi.gov/Directory/Places/Parks/John-Ball-Park,Grand Rapids +Millennium Park,42.93615810000001,-85.7496555,"1415 Maynard Ave SW, Walker, MI 49534, USA",(616) 791-2357,http://www.kentcountyparks.org/millennium/index.php,Grand Rapids +The Ruse Escape Rooms,42.9623752,-85.6680149,"25 Division Ave S STE 125, Grand Rapids, MI 49503, USA",(616) 214-7799,http://www.the-ruse.com/,Grand Rapids +Lookout Park,42.97688720000001,-85.6682096,"801 Fairview Ave NE, Grand Rapids, MI 49505, USA",(616) 456-3232,https://www.grandrapidsmi.gov/Directory/Places/Parks/Lookout-Park,Grand Rapids +Sixth Street Park,42.97533430000001,-85.6731097,"647 Monroe Ave NW, Grand Rapids, MI 49503, USA",(616) 456-3696,https://www.grandrapidsmi.gov/Directory/Places/Parks/Sixth-Street-Bridge-Park,Grand Rapids +Richmond Park,42.9959696,-85.6957851,"963 Richmond St NW, Grand Rapids, MI 49504, USA",(616) 456-3696,https://www.grandrapidsmi.gov/Directory/Places/Parks/Richmond-Park,Grand Rapids +John Collins Park,42.951394,-85.611587,"650 Lakeside Dr SE, East Grand Rapids, MI 49506, USA",(616) 949-1750,http://www.eastgr.org/Facilities/Facility/Details/14,Grand Rapids +Martin Luther King Park,42.9467199,-85.63830569999999,"1200 M.L.K. Jr St SE, Grand Rapids, MI 49506, USA",(616) 456-3000,https://www.grandrapidsmi.gov/Directory/Places/Parks/Martin-Luther-King-Park,Grand Rapids +Cherry Park,42.95979999999999,-85.6506769,"725 Cherry St SE, Grand Rapids, MI 49503, USA",(616) 456-3696,Unknown,Grand Rapids +Smoky Hill Museum,38.8403568,-97.6109971,"211 W Iron Ave, Salina, KS 67401, USA",(785) 309-5776,http://www.smokyhillmuseum.org/,Salina +Central Kansas Flywheels-Yesteryear Museum,38.879013,-97.623279,"1100 W Diamond Dr, Salina, KS 67401, USA",(785) 825-8473,http://yesteryearmuseum.org/,Salina +Indian Rock Park Salina Kansas,38.8354836,-97.5877024,"1500 Gypsum Ave, Salina, KS 67401, USA",Unknown,Unknown,Salina +Rolling Hills Zoo,38.85256760000001,-97.7641581,"625 N Hedville Rd, Salina, KS 67401, USA",(785) 827-9488,http://www.rollinghillszoo.org/,Salina +"""Hello from Salina"" Mural",38.8421323,-97.6093576,"141 N Santa Fe Ave, Salina, KS 67401, USA",Unknown,Unknown,Salina +Jerry Ivey Memorial Park,38.79729,-97.5955223,"2465 Edward St, Salina, KS 67401, USA",(785) 309-5765,http://www.salina-ks.gov/,Salina +Sunset Park,38.8180584,-97.620233,"700 Sunset Dr, Salina, KS 67401, USA",(785) 309-5700,http://www.salina-ks.gov/content/18394/18534/20376/22704.aspx,Salina +Centennial Park,38.82435050000001,-97.6325583,"746 Hemlock Dr, Salina, KS 67401, USA",(785) 826-7275,http://www.salina-ks.gov/content/18394/18534/20376/22670.aspx,Salina +Lakewood Park,38.84128390000001,-97.5894964,"Unnamed Road, Salina, KS 67401, USA",(785) 826-7335,Unknown,Salina +Oakdale Park,38.8353239,-97.6026521,"730 Oakdale Dr, Salina, KS 67401, USA",(785) 826-7275,http://www.salina-ks.gov/content/18394/18534/20376/22695.aspx,Salina +Smoky Hill Vineyards & Winery,38.7887688,-97.6319685,"2771 Centennial Rd, Salina, KS 67401, USA",(785) 825-8466,https://smokyhillwinery.com/,Salina +Kenwood Cove Aquatic Park,38.8325165,-97.6008869,"701 Kenwood Park Dr, Salina, KS 67401, USA",(785) 826-7430,http://www.kenwoodcove.com/,Salina +Jumpin' Joe's Family Fun Center,38.8078084,-97.6323705,"1634 Sunflower Road, Salina, KS 67401, USA",(785) 827-9090,Unknown,Salina +"District Eat & Play, Salina",38.8013898,-97.6098021,"2259 S 9th St #75 in Central Mall (old Sears, Salina, KS 67401, USA",(785) 515-2329,http://www.districtsalina.com/,Salina +Frog Rock,37.8272132,-92.1925919,"599-799 U.S. Rt. 66, Waynesville, MO 65583, USA",(573) 336-6355,Unknown,Fort Leonard Wood +John B Mahaffey Museum Complex,37.7455156,-92.1115929,"495 S Dakota Ave #1607, Fort Leonard Wood, MO 65473, USA",(573) 596-0604,Unknown,Fort Leonard Wood +Old Stagecoach Stop,37.82918590000001,-92.2004351,"106 N Lynn St, Waynesville, MO 65583, USA",(573) 336-3561,http://www.oldstagecoachstop.org/,Fort Leonard Wood +Stone Mill Spring,37.74013489999999,-92.0415902,"Fort Leonard Wood, MO 65473, USA",Unknown,https://www.fs.usda.gov/recarea/mtnf/recreation/recarea/?recid=21798,Fort Leonard Wood +Gammon Field,37.7523218,-92.1211355,"800 Iowa Ave, Fort Leonard Wood, MO 65473, USA",(573) 596-4223,https://leonardwood.armymwr.com/directory/27/outdoor-recreation,Fort Leonard Wood +Uranus Missouri Towne Center,37.8291694,-92.1051106,"14400 State Hwy Z, St Robert, MO 65584, USA",(833) 487-2687,https://www.uranusmissouri.com/,Fort Leonard Wood +Memorial Grove,37.7403991,-92.1118751,"Fort Leonard Wood, MO 65473, USA",(573) 329-6772,https://www.mpraonline.org/memorial-grove/,Fort Leonard Wood +Route 66 1903 Courthouse Museum,37.8290579,-92.2012581,"301 U.S. Rt. 66, Waynesville, MO 65583, USA",(573) 855-3644,http://www.route66courthouse.com/,Fort Leonard Wood +The Freedom Rock w/ military unit rocks,37.82450019999999,-92.1553858,"St Robert, MO 65584, USA",Unknown,https://www.thefreedomrock.com/50statefreedomrocktour/,Fort Leonard Wood +Engineer Trail,37.77260630000001,-92.1100812,"Morelli Heights, Fort Leonard Wood, MO 65473, USA",Unknown,Unknown,Fort Leonard Wood +George M Reed Roadside Park,37.82106479999999,-92.1483499,"133 Reed PKWY, St Robert, MO 65584, USA",(573) 451-2000,Unknown,Fort Leonard Wood +Uranus Fudge Factory And General Store,37.8287218,-92.1053864,"14400 State Hwy Z, St Robert, MO 65584, USA",(833) 487-2687,https://www.uranusgeneralstore.com/,Fort Leonard Wood +1903 Courthouse Museum (also known as Pulaski County Museum),37.82914640000001,-92.201213,"303 U.S. Rt. 66, Waynesville, MO 65583, USA",(573) 855-3644,http://www.route66courthouse.com/,Fort Leonard Wood +Fort Leonard Wood Visitor Center,37.7932308,-92.1340027,"316 Missouri Ave BLDG 100, Fort Leonard Wood, MO 65473, USA",(573) 596-0356,https://home.army.mil/wood/index.php/my-fort/visitors-access,Fort Leonard Wood +Roy Laughlin Park,37.826826,-92.204201,"Spring Rd, Waynesville, MO 65583, USA",(573) 774-6171,http://www.waynesvillemo.org/laughlinpark.htm,Fort Leonard Wood +Chemical Corps Museum Gift Shop,37.7455526,-92.1112654,"14296 S Dakota Ave # 1607, Fort Leonard Wood, MO 65473, USA",(573) 329-6566,Unknown,Fort Leonard Wood +Outdoor Adventure Center,37.7686369,-92.0868444,"Building 2290, 1st St, Fort Leonard Wood, MO 65473, USA",(573) 596-4223,http://leonardwood.armymwr.com/,Fort Leonard Wood +St Robert Aqua Park,37.8202354,-92.1476644,"105 Jh Williamson Jr Dr, St Robert, MO 65584, USA",(573) 451-2628,Unknown,Fort Leonard Wood +Fort Leonard Wood,37.7252315,-92.1646722,"Fort Leonard Wood, MO, USA",Unknown,Unknown,Fort Leonard Wood +St Robert Municipal Park,37.8195523,-92.1495149,"132 J.H. Williamson Dr, St Robert, MO 65584, USA",(573) 451-2625,https://www.saintrobert.com/Facilities/Facility/Details/St-Robert-Municipal-Park-7,Fort Leonard Wood +Fort Walla Walla Museum,46.0486409,-118.3653618,"755 NE Myra Rd, Walla Walla, WA 99362, USA",(509) 525-7703,http://fwwm.org/,Walla Walla +Pioneer Park,46.0676481,-118.3196973,"940 E Alder St, Walla Walla, WA 99362, USA",(509) 527-4527,https://wallawallawa.gov/government/parks-and-recreation,Walla Walla +Kirkman House Museum,46.069805,-118.339926,"214 N Colville St, Walla Walla, WA 99362, USA",(509) 529-4373,https://www.kirkmanhousemuseum.org/,Walla Walla +The Museum of Un-Natural History,46.0666483,-118.3398506,"4 & 1/2 West Main over Tallman’s, Walla Walla, WA 99362, USA",(509) 529-9399,Unknown,Walla Walla +Children's Museum of Walla Walla,46.05537,-118.358755,"77 Wainwright Dr, Walla Walla, WA 99362, USA",(509) 526-7529,http://www.cmww.org/,Walla Walla +Rooks Park (WA) Bennington Lake,46.0808667,-118.2554616,"Mill Creek Trail, Walla Walla, WA 99362, USA",(509) 527-7160,http://www.recreation.gov/camping/rooks-park-wa-bennington-lake/r/campgroundDetails.do?contractCode=NRSO&parkId=72173,Walla Walla +Pioneer Park Aviary,46.0644509,-118.3180451,"925 Whitman St, Walla Walla, WA 99362, USA",(509) 527-4403,https://wallawallawa.gov/government/parks-and-recreation/parks,Walla Walla +Fort Walla Walla Park,46.0447978,-118.3622963,"1550 Dalles Military Rd City of, Walla Walla, WA 99362, USA",(509) 527-4527,https://www.wallawallawa.gov/government/parks-and-recreation,Walla Walla +Mill Creek and Bennington Lake Recreation Area,46.0762361,-118.2730358,"3211 Reservoir Rd, Walla Walla, WA 99362, USA",(509) 527-7160,http://www.nww.usace.army.mil/Missions/Recreation/MillCreekDamandBenningtonLake.aspx,Walla Walla +Whitman Mission National Historic Site,46.04135769999999,-118.4639806,"328 Whitman Mission Rd, Walla Walla, WA 99362, USA",(509) 522-6360,http://www.nps.gov/whmi/,Walla Walla +Heritage Square,46.068136,-118.336362,"116 E Main St, Walla Walla, WA 99362, USA",(509) 527-4527,https://wallawallawa.gov/government/parks-and-recreation/parks,Walla Walla +Howard-Tietan Park,46.04877889999999,-118.3233434,"616 E Tietan St, Walla Walla, WA 99362, USA",(509) 527-4527,https://www.wallawallawa.gov/government/parks-and-recreation,Walla Walla +Marcus Whitman Statue,46.0698872,-118.334977,"9 Boyer Ave, Walla Walla, WA 99362, USA",Unknown,Unknown,Walla Walla +Seven Hills Winery,46.0685635,-118.3423437,"212 N 3rd Ave, Walla Walla, WA 99362, USA",(509) 529-7198,https://www.sevenhillswinery.com/,Walla Walla +Washington Park,46.0670102,-118.352629,"700 W Cherry St, Walla Walla, WA 99362, USA",(509) 527-4527,https://www.wallawallawa.gov/government/parks-and-recreation,Walla Walla +Spring Valley Vineyard Tasting Room,46.067392,-118.339795,"2 E Rose St, Walla Walla, WA 99362, USA",(509) 525-1506,https://www.springvalleyvineyard.com/,Walla Walla +Eastgate Lions Park,46.0748497,-118.3029244,"2140 Tacoma St, Walla Walla, WA 99362, USA",(509) 527-4527,https://wallawallawa.gov/government/parks-and-recreation/parks,Walla Walla +Memorial Park,46.0752792,-118.3347166,"505 E Rees Ave, Walla Walla, WA 99362, USA",(509) 527-4527,http://www.wallawallawa.gov/depts/parksrecreation/parks,Walla Walla +Drumheller Building,46.0655953,-118.3387429,"5 W Alder St, Walla Walla, WA 99362, USA",Unknown,Unknown,Walla Walla +Dunham Cellars,46.08914259999999,-118.278365,"150 E Boeing Ave, Walla Walla, WA 99362, USA",(509) 529-4685,http://www.dunhamcellars.com/,Walla Walla +American Legion Memorial Park,48.016023,-122.2034168,"145 Alverson Blvd, Everett, WA 98201, USA",(425) 257-8300,https://everettwa.gov/Facilities/Facility/Details/Legion-Memorial-Park-47,Everett +Imagine Children's Museum,47.9775273,-122.2098158,"1502 Wall St, Everett, WA 98201, USA",(425) 258-1006,https://www.imaginecm.org/,Everett +Grand Avenue Park,47.9951667,-122.2127589,"1720 Grand Ave, Everett, WA 98201, USA",(425) 257-8300 ext. 2,https://everettwa.gov/Facilities/Facility/Details/Grand-Ave-Park-25,Everett +Evergreen Arboretum & Gardens,48.0140796,-122.2038346,"145 Alverson Blvd, Everett, WA 98201, USA",(425) 257-8597,http://www.evergreenarboretum.com/,Everett +Howarth Park,47.96294409999999,-122.2394556,"1127 Olympic Blvd, Everett, WA 98203, USA",(425) 257-8300,https://everettwa.gov/Facilities/Facility/Details/Howarth-Park-46,Everett +Flying Heritage & Combat Armor Museum,47.89939,-122.280243,"3407 109th St SW, Everett, WA 98204, USA",(877) 342-3404,https://flyingheritage.org/,Everett +Spencer Island Park,47.9929582,-122.1643624,"5033 4th St SE, Everett, WA 98205, USA",(425) 388-6600,http://snohomishcountywa.gov/Facilities/Facility/Details/Spencer-Island-76,Everett +Narbeck Wetland Sanctuary,47.9343254,-122.2608254,"7007 Seaway Blvd, Everett, WA 98203, USA",Unknown,https://www.wta.org/go-hiking/hikes/narbeck-wetland-sanctuary,Everett +Hauge Homestead Park,47.8888672,-122.2072508,"1819 121st St SE, Everett, WA 98208, USA",(425) 257-8300 ext. 2,https://everettwa.gov/Facilities/Facility/Details/Hauge-Homestead-Park-45,Everett +Langus Riverfront Park,47.999317,-122.1773609,"400 Smith Island Rd, Everett, WA 98201, USA",(425) 257-8300 ext. 2,https://everettwa.gov/1329/Langus-Riverfront,Everett +Thornton A. Sullivan Park,47.8945821,-122.2136723,"11405 W, 11405 Silver Lake Rd, Everett, WA 98208, USA",Unknown,https://everettwa.gov/Facilities/Facility/Details/Thornton-A-Sullivan-Park-at-Silver-Lake-40,Everett +Rotary Park,47.9466947,-122.1884713,"3505 Lowell Snohomish River Rd, Everett, WA 98203, USA",(425) 257-8300,https://everettwa.gov/Facilities/Facility/Details/Rotary-Park-35,Everett +Harborview Park,47.9573717,-122.2517291,"1621 W Mukilteo Blvd, Everett, WA 98203, USA",(425) 257-8300,http://everettwa.gov/Facilities/Facility/Details/Harborview-Park-102,Everett +Jetty Island,48.0036139,-122.2286998,"Everett, WA 98201, USA",(425) 257-8304,Unknown,Everett +Island Adventure Whale Watching,47.9995166,-122.2227945,"402 14th St, Everett, WA 98201, USA",Unknown,https://island-adventures.com/,Everett +Forest Park,47.9583232,-122.220349,"802 E Mukilteo Blvd, Everett, WA 98203, USA",(425) 257-8300,https://everettwa.gov/Facilities/Facility/Details/Forest-Park-23,Everett +Walter E. Hall Park,47.9205304,-122.2515773,"1226 W Casino Rd, Everett, WA 98204, USA",(425) 257-8300,https://everettwa.gov/Facilities/Facility/Details/Walter-E-Hall-Park-42,Everett +The Rucker Mansion,47.97279460000001,-122.2241137,"412 Laurel Dr, Everett, WA 98201, USA",Unknown,Unknown,Everett +Boxcar Park,48.000771,-122.221839,"1200 Millwright Loop West, Everett, WA 98201, USA",(425) 259-3164,Unknown,Everett +Green Lantern Park,47.8941873,-122.2030131,"11398-11438 19th Ave SE, Everett, WA 98208, USA",(425) 257-8300 ext. 2,https://everettwa.gov/149/Parks-Community-Services,Everett +Nushagak/Mulchatna-Wood,59.03972219999999,-158.4575,"PO Box 1388, Dillingham, AK 99576, USA",(907) 842-2832,Unknown,Dillingham +Alaska Department of Fish and Game Wildlife Division,59.04263479999999,-158.4683459,"546 Kenny Wren Rd, Dillingham, AK 99576, USA",(907) 842-2334,https://www.adfg.alaska.gov/index.cfm?adfg=ByAreaSouthcentralBristolBay.contact,Dillingham +Wood-Tikchik State Park,59.8547807,-158.7198264,"Dillingham, AK 99576, USA",(907) 842-2641,Unknown,Dillingham +Togiak National Wildlife Refuge,59.2217121,-159.9801491,"Dillingham, AK 99576, USA",(907) 842-1063,http://togiak.fws.gov/,Dillingham +Mishka’s Little Bear Korner,59.0361534,-158.53,"100 Aleknagik Lake Rd, Dillingham, AK 99576, USA",Unknown,Unknown,Dillingham +Bear Paw Inn,59.04264009999999,-158.4626482,"119 E St W, Dillingham, AK 99576, USA",(907) 843-1806,http://www.dillinghamlodging.com/,Dillingham +Beaver Creek B&B,59.0520608,-158.5645578,"1800 Birch Cir Suite 563, Dillingham, AK 99576, USA",(907) 842-7335,http://www.dillinghamalaska.com/,Dillingham +The Bristol Inn,59.0402271,-158.4613929,"104 Main St E, Dillingham, AK 99576, USA",(907) 842-2240,http://bristolinn.com/,Dillingham +Little Lake Togiak,59.5749849,-159.1475989,"Little Togiak Lake, AK 99576, USA",Unknown,Unknown,Dillingham +Lake Aleknagik State Recreation Site,59.2714303,-158.6237543,"Aleknagik Lake Rd, Aleknagik, AK 99555, USA",(907) 842-2641,Unknown,Dillingham +Tikchik Airventures,59.05061320000001,-158.5827759,"841 Emperor Way, Dillingham, AK 99576, USA",(907) 842-5841,Unknown,Dillingham +Bayside Diner,59.040243,-158.4610695,"104 Main St E, Dillingham, AK 99576, USA",(907) 842-1013,https://baysidedinerak.com/,Dillingham +Bailey's of Bristol Bay,59.04066759999999,-158.4744159,"805 Kanakanak Rd, Dillingham, AK 99576, USA",(907) 842-2820,http://facebook.com/#baileysofbristolbay,Dillingham +Tide Table Coffee,59.0407717,-158.4775762,"237 Harbor Rd, Dillingham, AK 99576, USA",Unknown,https://m.facebook.com/tidetablecoffee/,Dillingham +KDLG,59.0426181,-158.4645169,"670 Seward St, Dillingham, AK 99576, USA",(907) 842-5281,https://www.kdlg.org/,Dillingham +Wren’s Drive Thru,59.0391456,-158.4652486,"100 Main St E, Dillingham, AK 99576, USA",Unknown,https://www.facebook.com/profile.php?id=100090690760554&mibextid=LQQJ4d,Dillingham +Bigfoot LGM Inc,59.0458046,-158.5535401,"1307 Nerka Dr, Dillingham, AK 99576, USA",(907) 842-4707,https://bigfoot-lgm-inc.business.site/,Dillingham +Nush River Camp,58.92855350000001,-157.7504283,"Dillingham Census Area, AK, USA",Unknown,Unknown,Dillingham +Dillingham,59.0395277,-158.4633056,"Dillingham, AK 99576, USA",Unknown,http://www.ci.dillingham.ak.us/,Dillingham +Nushagak River Adventures Lodge,58.94287,-157.6933846,"Dillingham, AK 99576, USA",(877) 876-6874,http://www.fishthenush.com/,Dillingham +Whatcom Falls Park,48.75044750000001,-122.4269052,"1401 Electric Ave, Bellingham, WA 98229, USA",(360) 778-7000,https://cob.org/services/recreation/parks-trails/parks-guide/whatcom-falls-park,Bellingham +Whatcom Museum,48.75266800000001,-122.481351,"Lightcatcher, 250 Flora Street Old City Hall, 121 Prospect St, Bellingham, WA 98225, USA",(360) 778-8930,https://www.whatcommuseum.org/,Bellingham +SPARK Museum of Electrical Invention,48.75132779999999,-122.4802389,"1312 Bay St, Bellingham, WA 98225, USA",(360) 738-3886,http://www.sparkmuseum.org/,Bellingham +Big Rock Garden Park,48.7684343,-122.4218301,"2900 Sylvan St, Bellingham, WA 98226, USA",(360) 778-7700,https://cob.org/services/recreation/parks-trails/parks-guide/big-rock,Bellingham +Marine Park,48.7192848,-122.5157985,"100 Harris Ave, Bellingham, WA 98225, USA",(360) 676-2500,https://www.portofbellingham.com/505/Marine-Park---Fairhaven,Bellingham +Maritime Heritage Park,48.7530538,-122.48283,"500 W Holly St, Bellingham, WA 98225, USA",(360) 778-7000,http://www.cob.org/,Bellingham +Zuanich Point Park,48.75429669999999,-122.5001556,"2600 N Harbor Loop Dr, Bellingham, WA 98225, USA",(360) 676-2500,https://www.portofbellingham.com/,Bellingham +Mindport Exhibits,48.750964,-122.480664,"210 W Holly St, Bellingham, WA 98225, USA",(360) 647-5614,http://www.mindport.org/,Bellingham +Lake Padden Park,48.7059866,-122.4555929,"4882 S Samish Way, Bellingham, WA 98229, USA",(360) 778-7000,https://www.cob.org/services/recreation/parks-trails/Pages/lake-padden-park.aspx,Bellingham +Larrabee State Park,48.652989,-122.4907639,"245 Chuckanut Dr, Bellingham, WA 98229, USA",(360) 676-2093,http://parks.state.wa.us/536/larrabee,Bellingham +Lightcatcher Building,48.7529935,-122.4790867,"250 Flora St, Bellingham, WA 98225, USA",(360) 778-8930,http://whatcommuseum.org/,Bellingham +Sehome Hill Arboretum,48.7354156,-122.4798767,"600 25th St, Bellingham, WA 98225, USA",(360) 778-7000,https://www.cob.org/services/recreation/parks-trails/Pages/sehome-arboretum.aspx,Bellingham +Waypoint Park,48.7510941,-122.4849055,"1145 Granary Ave, Bellingham, WA 98225, USA",(360) 778-7000,https://cob.org/services/recreation/parks-trails/parks-guide/waypoint-park,Bellingham +Marine Life Center,48.7571763,-122.4954355,"1801 Roeder Ave STE 100, Bellingham, WA 98225, USA",(360) 671-2431,https://portofbellingham.com/508/Marine-Life-Center---Bellingham,Bellingham +Bloedel Donovan Park,48.7589455,-122.4199782,"2114 Electric Ave, Bellingham, WA 98229, USA",(360) 778-7000,https://www.cob.org/services/recreation/parks-trails/Pages/bloedel-donovan-park.aspx,Bellingham +Family Interactive Gallery (FIG) at the Whatcom Museum,48.7533158,-122.4790785,"250 Flora St, Bellingham, WA 98225, USA",(360) 778-8970,https://www.whatcommuseum.org/explore/family-interactive-gallery/about-the-fig/,Bellingham +Fairhaven Park,48.7137599,-122.4973631,"107 Chuckanut Dr N, Bellingham, WA 98225, USA",(360) 778-7100,https://cob.org/services/recreation/parks-trails/parks-guide/fairhaven-park,Bellingham +Acid Ball,48.75074910000001,-122.4855707,"Granary Ave, Bellingham, WA 98225, USA",Unknown,https://cob.org/services/arts/waterfront-artifact,Bellingham +Little Squalicum Beach,48.76277460000001,-122.5130859,"2929 Roeder Ave, Bellingham, WA 98225, USA",Unknown,https://www.portofbellingham.com/507/Little-Squalicum-Beach,Bellingham +Squalicum Creek Park,48.7681791,-122.501392,"1001 Squalicum Way, Bellingham, WA 98225, USA",(360) 778-8000,https://www.cob.org/services/recreation/parks-trails/Pages/squalicum-creek-park.aspx,Bellingham +Impression 5 Science Center,42.73227329999999,-84.5484943,"200 Museum Dr, Lansing, MI 48933, USA",(517) 485-8116,http://www.impression5.org/,Lansing +Potter Park Zoo,42.71786960000001,-84.5276713,"1301 S Pennsylvania Ave, Lansing, MI 48912, USA",(517) 483-4222,http://www.potterparkzoo.org/,Lansing +Michigan History Center,42.7317464,-84.5630202,"702 W Kalamazoo St, Lansing, MI 48915, USA",(517) 335-2573,http://www.michigan.gov/mhc,Lansing +Hawk Island Park,42.6921808,-84.5296636,"1601 E Cavanaugh Rd, Lansing, MI 48910, USA",(517) 676-2233,http://pk.ingham.org/parks/hawk_island.php,Lansing +Eli and Edythe Broad Art Museum,42.73276,-84.4766762,"547 E Circle Dr, East Lansing, MI 48824, USA",(517) 884-4800,https://broadmuseum.msu.edu/,Lansing +Fenner Nature Center,42.7117556,-84.5216221,"2020 E Mt Hope Ave, Lansing, MI 48910, USA",(517) 483-4224,http://www.mynaturecenter.org/,Lansing +Crego Park,42.717779,-84.5150649,"1600 Fidelity Road,, Lansing, MI 48910, USA",(517) 483-4277,http://www.lansing.org/,Lansing +R.E. Olds Transportation Museum,42.73115300000001,-84.548052,"240 Museum Dr, Lansing, MI 48933, USA",(517) 372-0529,http://reoldsmuseum.org/,Lansing +Moores Park,42.7168453,-84.5592351,"420 Moores River Dr, Lansing, MI 48910, USA",Unknown,https://www.facebook.com/jhenrymoorespark/,Lansing +Frances Park,42.717311,-84.5883729,"2701 Moores River Dr, Lansing, MI 48911, USA",(517) 483-4277,https://www.lansing.org/listings/frances-park/432/,Lansing +Adado Riverfront Park,42.7405231,-84.54988879999999,"201 E Shiawassee St, Lansing, MI 48933, USA",(517) 483-4277,https://www.lansing.org/listings/louis-f-adado-riverfront-park/430/,Lansing +Lansing Diamond Railroad Crossing,42.7192346,-84.5421559,"703 Beulah St, Lansing, MI 48910, USA",Unknown,Unknown,Lansing +African World Museum and Resource Center,42.7212766,-84.5264808,"1136 Shepard St, Lansing, MI 48912, USA",(517) 214-1031,http://www.africanworldmuseum.com/,Lansing +Remembrance Memorial,42.733994,-84.5502826,"100 N Grand Ave, Lansing, MI 48933, USA",Unknown,Unknown,Lansing +Turner-Dodge House,42.7510389,-84.552115,"100 E North St, Lansing, MI 48906, USA",(517) 483-4220,http://www.lansing.org/listings/turner-dodge-house-and-heritage-center/543/,Lansing +Michigan Princess Riverboat,42.721542,-84.587476,"Grand River Park, Lansing, MI 48917, USA",(517) 627-2154,http://www.michiganprincess.com/,Lansing +Love Your Selfie Factory,42.7631617,-84.5167079,"2910 Centre Blvd, Lansing, MI 48912, USA",Unknown,Unknown,Lansing +World's Largest Lug Nut,42.7330341,-84.547229,"420 E Michigan Ave, Lansing, MI 48933, USA",Unknown,Unknown,Lansing +Durant Park,42.7415028,-84.5526853,"700 N Capitol Ave, Lansing, MI 48906, USA",(517) 483-4277,https://friendsofdurantpark.com/,Lansing +Grand Woods Park,42.75701530000001,-84.609134,"Grand Woods Park Dr, Lansing, MI 48906, USA",(517) 323-8555,Unknown,Lansing +Madison Children's Museum,43.0769396,-89.3843946,"100 N Hamilton St, Madison, WI 53703, USA",(608) 256-6445,http://madisonchildrensmuseum.org/,Madison +Chazen Museum of Art,43.0738323,-89.39931930000002,"800 University Ave, Madison, WI 53706, USA",(608) 263-2246,http://www.chazen.wisc.edu/,Madison +Olbrich Botanical Gardens,43.09263670000001,-89.3346028,"3330 Atwood Ave, Madison, WI 53704, USA",(608) 246-4550,http://www.olbrich.org/,Madison +Madison Museum of Contemporary Art,43.0744554,-89.3892675,"227 State St, Madison, WI 53703, USA",(608) 257-0158,https://www.mmoca.org/,Madison +Wisconsin Veterans Museum,43.0750335,-89.3864552,"30 W Mifflin St, Madison, WI 53703, USA",(608) 267-1799,http://www.wisvetsmuseum.com/,Madison +Wisconsin State Capitol,43.0747008,-89.3841491,"2 E Main St, Madison, WI 53703, USA",(608) 266-0382,https://www.wisconsin.gov/Pages/home.aspx,Madison +Olbrich Park,43.08809129999999,-89.3300817,"3527 Atwood Ave, Madison, WI 53714, USA",(608) 266-4711,https://www.cityofmadison.com/parks/find-a-park/park.cfm?id=1315,Madison +Physics Museum,43.0736801,-89.40521210000001,"1150 University Ave, Madison, WI 53706, USA",(608) 262-3898,https://www.physics.wisc.edu/ingersollmuseum/,Madison +James Madison Park,43.0813926,-89.3828841,"614 E Gorham St, Madison, WI 53703, USA",(608) 266-4711,http://www.cityofmadison.com/parks/find-a-park/park.cfm?id=1241,Madison +Vilas (Henry) Park,43.06057989999999,-89.40995749999999,"702 S Randall Ave, Madison, WI 53715, USA",(608) 266-4711,http://www.cityofmadison.com/parks/find-a-park/park.cfm?id=1365,Madison +Geology Museum,43.0705756,-89.40626139999999,"1215 W Dayton St, Madison, WI 53706, USA",(608) 262-1412,https://museum.geoscience.wisc.edu/,Madison +Period Garden Park,43.07865750000001,-89.38660209999999,"110 E Gorham St, Madison, WI 53703, USA",(608) 283-0517,http://www.periodgardenpark.org/,Madison +Warner Park,43.1278811,-89.3704102,"2930 N Sherman Ave, Madison, WI 53704, USA",(608) 266-4711,http://www.cityofmadison.com/parks/find-a-park/park.cfm?id=1368,Madison +Downtown Area,43.074913,-89.386999,"100 State St, Madison, WI 53703, USA",Unknown,Unknown,Madison +Picnic Point,43.0896767,-89.4154768,"University of Wisconsin-Madison, 2000 University Bay Dr, Madison, WI 53705, USA",Unknown,https://lakeshorepreserve.wisc.edu/visit/places/picnic-point/,Madison +Wisconsin Science Museum,43.0412025,-89.3952894,"2300 S Park St, Madison, WI 53713, USA",(608) 720-1010,https://wiscimuseum.org/,Madison +University of Wisconsin–Madison Arboretum,43.0428709,-89.4243205,"1207 Seminole Hwy, Madison, WI 53711, USA",(608) 263-7888,http://arboretum.wisc.edu/,Madison +Yahara Place Park,43.0856434,-89.35380359999999,"2025 Yahara Pl, Madison, WI 53704, USA",(608) 266-4711,https://www.cityofmadison.com/parks/find-a-park/park.cfm?id=1397,Madison +Turville Point Conservation Park,43.0506304,-89.37239989999999,"1202 Olin-Turville Ct, Madison, WI 53715, USA",(608) 266-4711,https://www.cityofmadison.com/parks/find-a-park/park.cfm?id=1317,Madison +Owen Conservation Park,43.0743348,-89.48458529999999,"6021 Old Sauk Rd, Madison, WI 53705, USA",(608) 266-4711,http://www.cityofmadison.com/parks/find-a-park/park.cfm?id=1305,Madison +Fisherman's Wharf Park,48.42195,-123.3830139,"12 Erie St, Victoria, BC V8V 4X5, Canada",Unknown,http://fishermanswharfvictoria.com/,Victoria +Victoria’s Chinatown National Historic Site,48.4293744,-123.3673305,"500 Fisgard St, Victoria, BC V8W 1R4, Canada",Unknown,http://chinatown.library.uvic.ca/,Victoria +Royal BC Museum,48.4198111,-123.3674497,"675 Belleville St., Victoria, BC V8W 9W2, Canada",(250) 356-7226,https://www.royalbcmuseum.bc.ca/,Victoria +Thunderbird Park,48.4197936,-123.3666803,"638 Douglas St, Victoria, BC V8V 2P8, Canada",Unknown,Unknown,Victoria +Beacon Hill Park,48.4122222,-123.3627778,"100 Cook St, Victoria, BC V8V, Canada",(250) 361-0600,https://www.victoria.ca/EN/main/residents/parks/beacon-hill.html,Victoria +Mile Zero Monument,48.40910099999999,-123.3690133,"18 Douglas St, Victoria, BC V8V 2N6, Canada",(250) 953-2033,Unknown,Victoria +Craigdarroch Castle,48.42262940000001,-123.3437226,"1050 Joan Crescent, Victoria, BC V8S 3L5, Canada",(250) 592-5323,http://www.thecastle.ca/,Victoria +The Moss Lady,48.413832,-123.365677,"250 Douglas St, Victoria, BC V8V, Canada",Unknown,Unknown,Victoria +Breakwater Lighthouse,48.4135222,-123.3938674,"The Breakwater, Victoria, BC V8V 1A1, Canada",Unknown,Unknown,Victoria +Victoria Bug Zoo,48.42329959999999,-123.3666683,"631 Courtney St, Victoria, BC V8W 1B8, Canada",(250) 384-2847,http://www.victoriabugzoo.ca/,Victoria +A Taste of Victoria Food Tours,48.4297057,-123.3641851,"1701 Douglas St, Victoria, BC V8W 2G7, Canada",(250) 893-9815,https://www.atasteofvictoriafoodtours.com/?utm_source=google&utm_medium=organic&utm_campaign=gbp,Victoria +Abkhazi Garden,48.4157067,-123.3261833,"1964 Fairfield Rd, Victoria, BC V8S 1H2, Canada",(778) 265-6466,https://conservancy.bc.ca/featured-projects/abkhazi-garden/,Victoria +Legislative Assembly of British Columbia,48.4196283,-123.3702583,"501 Belleville St., Victoria, BC V8V 2L8, Canada",(250) 387-3046,https://www.leg.bc.ca/,Victoria +Point Ellice House,48.4362721,-123.3771518,"2616 Pleasant St, Victoria, BC V8T 4V3, Canada",(250) 800-1831,http://www.pointellicehouse.com/,Victoria +Hatley Castle,48.43447,-123.4727111,"2005 Sooke Rd, Victoria, BC V9B 5Y2, Canada",(250) 391-2600,http://hatleycastle.com/,Victoria +Mungo Martin House in Thunderbird Park,48.4200068,-123.3667036,"475 Belleville St., Victoria, BC V8V 2P8, Canada",Unknown,Unknown,Victoria +The Maritime Museum of British Columbia,48.4218702,-123.36631,"744 Douglas St, Victoria, BC V8W 3M6, Canada",(250) 385-4222,http://mmbc.bc.ca/,Victoria +Trafalgar Park,48.4078937,-123.3199707,"240 King George Terrace #190, Victoria, BC V8S 2K2, Canada",(250) 361-0600,https://www.oakbay.ca/parks-recreation/parks-playgrounds/parks-listing/trafalgar-park,Victoria +Gate of Harmonious Interest,48.42946269999999,-123.3673345,"Fisgard St, Victoria, BC V8W 1R5, Canada",Unknown,Unknown,Victoria +Ogden Point Sundial,48.4151178,-123.3840789,"211 Dallas Rd, Victoria, BC V8V 1A1, Canada",(250) 386-1321,Unknown,Victoria +Sioux City Public Museum,42.494613,-96.4031533,"607 4th St, Sioux City, IA 51101, USA",(712) 279-6174,http://www.siouxcitymuseum.org/,Sioux City +Lewis & Clark Interpretive Center,42.49034289999999,-96.4155633,"900 Larsen Park Rd, Sioux City, IA 51103, USA",(712) 224-5242,http://www.siouxcitylcic.com/,Sioux City +Sergeant Floyd River Museum,42.4911681,-96.418499,"1000 Larsen Park Rd, Sioux City, IA 51103, USA",(712) 279-0198,https://www.siouxcitymuseum.org/sergeant-floyd-river-museum,Sioux City +LaunchPAD Children's Museum,42.4971772,-96.4083274,"623 Pearl St, Sioux City, IA 51101, USA",(712) 224-2542,http://www.launchpadmuseum.com/,Sioux City +Sioux City Railroad Museum,42.5288267,-96.4766324,"3400 Sioux River Rd, Sioux City, IA 51109, USA",(712) 233-6996,https://www.siouxcityrailroadmuseum.org/,Sioux City +Stone State Park,42.5548916,-96.4690437,"5001 Talbot Rd, Sioux City, IA 51103, USA",(712) 255-4698,https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/Stone-State-Park,Sioux City +Dorothy Pecaut Nature Center,42.54333039999999,-96.4733219,"4500 Sioux River Rd, Sioux City, IA 51109, USA",(712) 258-0838,http://woodburyparks.org/,Sioux City +Mid America Museum of Aviation and Transportation,42.4138785,-96.3742051,"2600 Expedition Ct, Sioux City, IA 51102, USA",(712) 252-5300,http://www.midamericaairmuseum.org/,Sioux City +Sioux City Art Center,42.4927885,-96.4039964,"225 Nebraska St, Sioux City, IA 51101, USA",(712) 279-6272,http://www.siouxcityartcenter.org/,Sioux City +Sergeant Floyd Monument,42.4621526,-96.3773377,"2601 S Lewis Blvd, Sioux City, IA 51103, USA",(202) 354-2211,https://www.nps.gov/places/sergeant-floyd-monument.htm,Sioux City +Bacon Creek Park,42.4973301,-96.3353991,"5015 Correctionville Rd, Sioux City, IA 51106, USA",(712) 279-6109,Unknown,Sioux City +Siouxland Historical Railroad,42.5294783,-96.4750242,"3400 Sioux River Rd, Sioux City, IA 51109, USA",(712) 233-6996,http://siouxcityrailroadmuseum.org/,Sioux City +Trinity Heights,42.5279688,-96.3783879,"2509 33rd St, Sioux City, IA 51108, USA",(712) 239-8670,http://www.trinityheights.com/,Sioux City +Buffalo Mural,42.49539980000001,-96.4068049,"321 5th St, Sioux City, IA 51101, USA",Unknown,Unknown,Sioux City +Alley Art,42.49470549999999,-96.4041946,"416 Pierce St, Sioux City, IA 51101, USA",Unknown,Unknown,Sioux City +Dinosaur Park,42.5065633,-96.4037955,"1515 Nebraska St, Sioux City, IA 51105, USA",Unknown,Unknown,Sioux City +Chris Larsen City Park,42.48593169999999,-96.3957004,"1280 Larsen Park Rd, Sioux City, IA 51103, USA",(712) 279-6126,https://www.sioux-city.org/Home/Components/FacilityDirectory/FacilityDirectory/54/164,Sioux City +Grandview Park,42.5168188,-96.4086463,"Sioux City, IA 51104, USA",(712) 279-6126,https://www.sioux-city.org/Home/Components/FacilityDirectory/FacilityDirectory/14/164,Sioux City +Iowa Welcome Sign,42.494674,-96.4760916,"Sioux City, IA 51109, USA",Unknown,Unknown,Sioux City +Cone Park,42.4416214,-96.3597067,"3800 Line Dr, Sioux City, IA 51106, USA",(712) 222-2663,https://www.coneparksiouxcity.com/,Sioux City +"Children's Museum, Stockton",37.9519756,-121.2967856,"402 W Weber Ave, Stockton, CA 95203, USA",(209) 465-4386,https://www.childrensmuseumstockton.org/,Stockton +Haggin Museum,37.9605722,-121.3138609,"1201 N Pershing Ave, Stockton, CA 95203, USA",(209) 940-6300,http://www.hagginmuseum.org/,Stockton +Louis Park,37.9558644,-121.3464878,"3121 Monte Diablo Ave, Stockton, CA 95203, USA",(209) 937-8206,http://www.stocktongov.com/,Stockton +Stockton Water Tower,37.956838,-121.3185108,"811 Buena Vista Ave, Stockton, CA 95203, USA",Unknown,Unknown,Stockton +Miracle Mile,37.9717771,-121.30132,"221 Tuxedo Ct, Stockton, CA 95204, USA",(209) 623-1144,http://www.stocktonmiraclemile.com/,Stockton +Buckley Cove Park,37.9748014,-121.3756927,"Buckley Cove Way, Stockton, CA 95219, USA",(209) 937-8539,Unknown,Stockton +Wat Dhammararam Buddhist Temple,37.9243986,-121.2251909,"3732 Carpenter Rd, Stockton, CA 95215, USA",(209) 943-2883,http://www.watdhammararambuddhist.org,Stockton +Joan Darrah Promenade,37.95318710000001,-121.2931709,"W Weber Ave, Stockton, CA 95202, USA",Unknown,Unknown,Stockton +Stockton Diamond Railroad Crossing,37.9467542,-121.2758804,"796 S Sacramento St, Stockton, CA 95205, USA",Unknown,Unknown,Stockton +American Legion Park,37.9680472,-121.3080513,"Stockton, CA 95204, USA",(209) 937-8206,http://www.stocktongov.com/services/parkRec/default.html,Stockton +Mexican Heritage Center & Gallery,37.9522222,-121.2858333,"111 S Sutter St, Stockton, CA 95206, USA",(209) 969-9306,http://www.mexicanheritagecenter.org/,Stockton +Visit Stockton,37.9528632,-121.2937217,"146 W Weber Ave, Stockton, CA 95202, USA",(209) 938-1555,http://www.visitstockton.org/,Stockton +Upper Stockton Diamond Railroad Crossing,37.96859329999999,-121.2693805,"Stockton, CA 95205, USA",Unknown,Unknown,Stockton +Stockton Field Aviation Museum,37.8907085,-121.2427084,"7430 C E Dixon St, Stockton, CA 95206, USA",(209) 982-0273,http://www.stocktonfieldmuseum.org/,Stockton +Sousa Park,37.9576352,-121.2487092,"2829 Yellowstone Ave, Stockton, CA 95205, USA",(209) 937-8206,http://www.stocktongov.com/government/departments/publicWorks/contactUs.html,Stockton +Stockton Arena,37.9561651,-121.2960735,"248 W Fremont St, Stockton, CA 95203, USA",(209) 373-1400,http://stocktonlive.com/,Stockton +Shumway Oak Grove Regional Park,38.0574996,-121.3638536,"4520 W Eight Mile Rd, Stockton, CA 95209, USA",(209) 953-8800,http://www.sjparks.com/parks/oak-grove-regional-park.aspx,Stockton +Garrigan Park,38.04405,-121.36532,"3690 Iron Canyon Cir, Stockton, CA 95209, USA",(209) 937-8411,http://www.stocktongov.com/government/departments/publicworks/contactUs.html,Stockton +Gibbons Park,38.0218141,-121.3371861,"Stockton, CA 95209, USA",Unknown,Unknown,Stockton +Filipino American National Historical Society Museum,37.9545233,-121.2865715,"337 E Weber Ave, Stockton, CA 95202, USA",(209) 932-9037,http://fanhsmuseum.com/,Stockton +Anchorage Museum,61.2162281,-149.8855791,"625 C St, Anchorage, AK 99501, USA",(907) 929-9200,http://www.anchoragemuseum.org/,Anchorage +Alaska Native Heritage Center,61.23281489999999,-149.7170998,"8800 Heritage Center Dr, Anchorage, AK 99504, USA",(907) 330-8000,http://www.alaskanative.net/,Anchorage +Chugach State Park,61.1934395,-149.2304786,"18620 Seward Hwy, Anchorage, AK 99516, USA",(907) 345-5014,Unknown,Anchorage +Alaska Aviation Museum,61.1794747,-149.9718595,"4721 Aircraft Dr, Anchorage, AK 99502, USA",(907) 248-5325,http://www.alaskaairmuseum.org/,Anchorage +Earthquake Park,61.1954326,-149.9753402,"5101 Point Woronzof Rd, Anchorage, AK 99502, USA",(907) 343-4355,https://www.anchorage.net/discover/trails-and-local-parks/earthquake-park/,Anchorage +Beluga Point,61.00675009999999,-149.6943858,"Mile 110, Seward Hwy, Anchorage, AK 99540, USA",Unknown,https://www.adfg.alaska.gov/index.cfm%3Fadfg%3Dviewinglocations.belugapoint,Anchorage +Alaska Museum of Science and Nature,61.22514929999999,-149.8078589,"201 N Bragaw St, Anchorage, AK 99508, USA",(907) 274-2400,http://www.alaskamuseum.org/,Anchorage +Visit Anchorage Log Cabin Visitor Information Center,61.2183685,-149.8931748,"546 W 4th Ave, Anchorage, AK 99501, USA",(907) 257-2363,https://www.anchorage.net/listing/visit-anchorage/36982/,Anchorage +Bird Point,60.9287953,-149.3466586,"Seward Hwy, Anchorage, AK 99540, USA",Unknown,https://www.anchorage.net/blog/alaska-bore-tide-viewing/,Anchorage +Alaska Botanical Garden,61.17777439999999,-149.7615572,"4601 Campbell Airstrip Road, Anchorage, AK 99507, USA",(907) 770-3692,http://www.alaskabg.org/,Anchorage +Resolution Park,61.21918559999999,-149.9038468,"320 L St, Anchorage, AK 99501, USA",(907) 343-4355,Unknown,Anchorage +Campbell Creek Science Center,61.1641914,-149.7769605,"5600 Science Center Dr, Anchorage, AK 99507, USA",(907) 267-1247,https://www.blm.gov/learn/interpretive-centers/campbell-creek-science-center,Anchorage +Anchorage Light Speed Planet Walk - Mars,61.2176497,-149.9061661,"1201-1253 W 5th Ave, Anchorage, AK 99501, USA",Unknown,http://anchorageplanetwalk.org/,Anchorage +Planet Walk,61.21733620000001,-149.8951787,"W 6th Ave & G St, Anchorage, AK 99501, USA",(907) 258-0415,https://anchorageplanetwalk.org/,Anchorage +Kincaid Park,61.1536409,-150.05538,"9401 Raspberry Rd, Anchorage, AK 99502, USA",(907) 343-6397,Unknown,Anchorage +Potter Marsh Bird Sanctuary,61.0778009,-149.8271763,"Seward Hwy, Anchorage, AK 99516, USA",Unknown,Unknown,Anchorage +Valley of the Moon Park,61.2049461,-149.8945141,"610 W 17th Ave, Anchorage, AK 99501, USA",(907) 343-4355,https://www.alaska.org/detail/valley-of-the-moon-park,Anchorage +Oscar Anderson House Museum,61.21856469999999,-149.9060092,"420 M St, Anchorage, AK 99501, USA",(907) 206-2284,http://www.oscarandersonhousemuseum.org/,Anchorage +Anchorage Welcomes You,61.21786669999999,-149.8543696,"1175 E 5th Ave, Anchorage, AK 99501, USA",Unknown,Unknown,Anchorage +Carr-Gottstein Park,61.11752300000001,-149.9378554,"3130 Discovery Bay Dr, Anchorage, AK 99515, USA",(907) 343-4355,Unknown,Anchorage +Freedom Park,35.19144879999999,-80.8434408,"1908 East Blvd, Charlotte, NC 28203, USA",(980) 314-1002,Unknown,Charlotte +Levine Museum of the New South,35.224457,-80.8467217,"401 S Tryon St, Charlotte, NC 28202, USA",(704) 333-1887,http://www.museumofthenewsouth.org/,Charlotte +Discovery Place Science,35.2296941,-80.8415655,"301 N Tryon St, Charlotte, NC 28202, USA",(704) 327-2189,http://discoveryplace.org/,Charlotte +NASCAR Hall of Fame,35.22113660000001,-80.8439538,"400 E M.L.K. Jr Blvd, Charlotte, NC 28202, USA",(704) 654-4400,http://www.nascarhall.com/,Charlotte +The Mint Museum,35.1974615,-80.8143212,"2730 Randolph Rd, Charlotte, NC 28207, USA",(704) 337-2000,http://www.mintmuseum.org/,Charlotte +Bechtler Museum of Modern Art,35.2244822,-80.8473279,"420 S Tryon St, Charlotte, NC 28202, USA",(704) 353-9209,http://bechtler.org/,Charlotte +The Charlotte Museum of History,35.23353499999999,-80.766542,"3500 Shamrock Dr, Charlotte, NC 28215, USA",(704) 568-1774,http://www.charlottemuseum.org/,Charlotte +Mint Museum Uptown,35.2244083,-80.8480847,"500 S Tryon St, Charlotte, NC 28202, USA",(704) 337-2000,http://mintmuseum.org/,Charlotte +Ray’s Splash Planet,35.2381165,-80.8513028,"215 N Sycamore St, Charlotte, NC 28202, USA",(980) 314-4729,https://www.mecknc.gov/ParkandRec/Aquatics/RaysSplashPlanet/Pages/default.aspx,Charlotte +Trail of History,35.21684229999999,-80.8326733,"100 N Kings Dr, Charlotte, NC 28204, USA",Unknown,http://charlottetrailofhistory.org/,Charlotte +UNC Charlotte Botanical Gardens,35.30781329999999,-80.72973460000001,"9090 Craver Rd, Charlotte, NC 28262, USA",(704) 687-0721,http://gardens.uncc.edu/,Charlotte +Marshall Park,35.21921,-80.838582,"Marshall Park, 800 E 3rd St, Charlotte, NC 28202, USA",(704) 432-4280,https://www.mecknc.gov/ParkandRec/Parks/ParksByRegion/CentralRegion/Pages/marshallpark.aspx,Charlotte +Billy Graham Library,35.1905516,-80.9093017,"4330 Westmont Dr, Charlotte, NC 28217, USA",(704) 401-3200,https://billygrahamlibrary.org/,Charlotte +Romare Bearden Park,35.2269701,-80.8478773,"300 S Church St, Charlotte, NC 28202, USA",(704) 432-4280,Unknown,Charlotte +Midtown Park,35.2110133,-80.8366283,"510 S Kings Dr, Charlotte, NC 28204, USA",(980) 314-1000,Unknown,Charlotte +Reedy Creek Nature Center,35.261767,-80.71938000000002,"2986 ROCKY RIVER RD, Charlotte, NC 28215, USA",(980) 314-1119,https://parkandrec.mecknc.gov/Places-to-Visit/Nature/reedy-creek-nature-center,Charlotte +First Ward Park,35.2276781,-80.8364588,"301 E 7th St, Charlotte, NC 28202, USA",(704) 336-3854,Unknown,Charlotte +Books Monument,35.22348,-80.8461289,"435 S College St, Charlotte, NC 28202, USA",Unknown,Unknown,Charlotte +The Mural House,35.21519,-80.81965439999999,"1812 E 8th St, Charlotte, NC 28204, USA",Unknown,Unknown,Charlotte +Fourth Ward Park,35.2317347,-80.8427408,"301 N Poplar St, Charlotte, NC 28202, USA",(704) 432-4280,Unknown,Charlotte +Historic Jamestowne,37.2112795,-76.7772028,"1368 Colonial Nat'l Historical Pkwy, Jamestown, VA 23081, USA",(757) 856-1250,http://www.historicjamestowne.org/,Jamestown +Jamestown Settlement,37.224777,-76.7838764,"2110 Jamestown Rd, Williamsburg, VA 23185, USA",(757) 253-4838,https://www.jyfmuseums.org/visit/jamestown-settlement?utm_source=gmb&utm_medium=organic&utm_campaign=gmb-listing,Jamestown +Archaearium Archaeology Museum,37.21000339999999,-76.7800803,"1369 Colonial Nat'l Historical Pkwy, Jamestown, VA 23081, USA",(757) 856-1250,http://historicjamestowne.org/collections/exhibits/archaearium/,Jamestown +Jamestown Glasshouse,37.2207441,-76.7853186,"1348 Colonial Nat'l Historical Pkwy, Williamsburg, VA 23185, USA",(757) 229-2437,https://www.nps.gov/jame/planyourvisit/glasshouse.htm,Jamestown +Jamestown Beach Event Park,37.2271939,-76.7838435,"2205 Jamestown Rd, Williamsburg, VA 23185, USA",(757) 259-5360,http://www.jamescitycountyva.gov/Facilities/Facility/Details/Jamestown-Beach-Event-Park-15,Jamestown +Jamestown Rediscovery,37.2101432,-76.7794172,"1365 Colonial Nat'l Historical Pkwy, Williamsburg, VA 23185, USA",(757) 229-4997,http://www.historicjamestowne.org/,Jamestown +Yorktown Battlefield,37.2294775,-76.5019458,"1000 Colonial Nat'l Historical Pkwy, Yorktown, VA 23690, USA",(757) 898-2410,https://www.nps.gov/york/index.htm,Jamestown +Jamestown VA,37.2097416,-76.7782414,"Jamestown Rd, Williamsburg, VA 23185, USA",Unknown,Unknown,Jamestown +Powhatan Indian Village,37.224777,-76.7838764,"2110 Jamestown Rd, Williamsburg, VA 23185, USA",(843) 336-3395,http://www.historyisfun.org/jamestown-settlement/powhatan-village/,Jamestown +American Revolution Museum at Yorktown,37.2387626,-76.5182237,"200 Water St, Yorktown, VA 23690, USA",(757) 253-4838,https://www.jyfmuseums.org/?utm_source=gmb&utm_medium=organic&utm_campaign=gmb-listing&utm_content=american-revolution-yorktown,Jamestown +Jamestowne Visitors Center,37.2112652,-76.7773124,"1368 Colonial Nat'l Historical Pkwy, Jamestown, VA 23081, USA",(800) 275-8777,https://historicjamestowne.org/,Jamestown +York River State Park,37.4018789,-76.7182693,"9801 York River Park Rd, Williamsburg, VA 23188, USA",(757) 566-3036,http://www.dcr.virginia.gov/state-parks/york-river.shtml,Jamestown +Busch Gardens Williamsburg,37.2337159,-76.6439896,"1 Busch Gardens Blvd, Williamsburg, VA 23185, USA",(757) 229-4386,https://buschgardens.com/williamsburg?utm_source=google&utm_medium=organic&utm_campaign=gbp_listing,Jamestown +Colonial Williamsburg Visitor Center,37.27908729999999,-76.6986089,"101 Visitor Center Dr, Williamsburg, VA 23185, USA",(888) 965-7254,https://www.colonialwilliamsburg.org/locations/colonial-williamsburg-regional-visitor-center/?utm_source=google-gbp&utm_medium=organic&utm_campaign=gbp,Jamestown +George Wythe House,37.2720718,-76.7024576,"101 Palace Green St, Williamsburg, VA 23185, USA",(888) 965-7254,https://www.colonialwilliamsburg.org/locations/george-wythe-house/?utm_source=google&utm_medium=organic&utm_campaign=map_listing&utm_content=Wythe_house,Jamestown +The Hunt Shrine,37.2089196,-76.7792916,"5420100001, Williamsburg, VA 23185, USA",Unknown,Unknown,Jamestown +Jamestown National Historic Site,37.2093282,-76.7750466,"Williamsburg, VA 23185, USA",Unknown,https://historicjamestowne.org/visit/plan-your-visit/,Jamestown +Smith’s Fort,37.1640622,-76.82012859999999,"217 Smith Fort Ln, Surry, VA 23883, USA",Unknown,https://preservationvirginia.org/historic-sites/smiths-fort-plantation/,Jamestown +Dewitt Wallace Decorative Art Museum,37.268543,-76.70548699999999,"301 S Nassau St, Williamsburg, VA 23185, USA",(855) 776-1765,https://www.colonialwilliamsburg.org/locations/dewitt-wallace-decorative-arts-museum/?utm_source=google&utm_medium=organic&utm_campaign=map_listing&utm_content=dewitt_wallace,Jamestown +Abby Aldrich Rockefeller Folk Art Museum,37.2684892,-76.7047413,"301 S Nassau St, Williamsburg, VA 23185, USA",(877) 848-8039,https://www.colonialwilliamsburg.org/locations/abby-aldrich-rockefeller-folk-art-museum/?utm_source=google&utm_medium=organic&utm_campaign=map_listing&utm_content=abby_aldrich_rockefeller_museum,Jamestown +Geological Museum,41.3141149,-105.5831856,"200 N 9th St, Laramie, WY 82072, USA",(307) 766-2646,http://www.uwyo.edu/geomuseum/,Laramie +Laramie Plains Museum,41.312149,-105.5890426,"603 E Ivinson Ave, Laramie, WY 82070, USA",(307) 742-4448,http://laramiemuseum.org/,Laramie +University of Wyoming Art Museum,41.31492959999999,-105.567725,"Centennial Complex, 2111 E Willett Dr, Laramie, WY 82071, USA",(307) 766-6622,http://www.uwyo.edu/artmuseum/,Laramie +Wyoming Women's History House,41.31038159999999,-105.5944461,"317 S 2nd St, Laramie, WY 82070, USA",(307) 760-7771,https://wyomingwomenshistoryhouse.org/,Laramie +Rocky Mountain Herbarium,41.3126515,-105.5847833,"1000 E University Ave, Laramie, WY 82071, USA",(307) 766-2236,https://www.rockymountainherbarium.org/,Laramie +American Heritage Center,41.3141653,-105.5681222,"2111 E Willett Dr, Laramie, WY 82072, USA",(307) 766-4114,http://www.uwyo.edu/ahc/,Laramie +Laramie Railroad Depot,41.3082385,-105.5964692,"600 S 1st St, Laramie, WY 82072, USA",(307) 399-7345,http://www.laramiedepot.org/,Laramie +"Iconic Grand Ave, Laramie",41.3111747,-105.5961385,"101 Grand Ave, Laramie, WY 82070, USA",Unknown,Unknown,Laramie +Undine Park,41.30533,-105.5903077,"800-898 S 7th St, Laramie, WY 82070, USA",(307) 721-5264,http://cityoflaramie.org/,Laramie +Wyoming Territorial Prison State Historic Site,41.3116128,-105.6105124,"975 Snowy Range Rd, Laramie, WY 82070, USA",(307) 745-6161,https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison,Laramie +"Laramie, Wyoming, USA - Virtual Railfan LIVE",41.3082385,-105.5964692,"600 S 1st St, Laramie, WY 82072, USA",Unknown,Unknown,Laramie +University of Wyoming Anthropology Museum,41.3151455,-105.5809113,"12th E Lewis St, Laramie, WY 82071, USA",(307) 766-5136,http://www.uwyo.edu/anthropology/anthropology-museum.html,Laramie +Abraham Lincoln Memorial Monument,41.2367911,-105.4366128,"136 US Frst Service Rd 705 A, Laramie, WY 82070, USA",Unknown,https://www.roadsideamerica.com/story/8450,Laramie +Snowy Range Rotating Sculpture Program,41.3195041,-105.5926711,"E Harney St &, Snowy Range Rd, Laramie, WY 82072, USA",Unknown,https://www.cityoflaramie.org/1125/Laramie-Public-Art,Laramie +Harbon Park,41.3185163,-105.5789498,"1200-1398 E Harney St, Laramie, WY 82072, USA",(307) 721-5200,https://www.cityoflaramie.org/Facilities/Facility/Details/15,Laramie +Kiowa Park,41.32321719999999,-105.5440557,"4100-4198 Kiowa Dr, Laramie, WY 82072, USA",(307) 721-5200,https://www.cityoflaramie.org/Facilities/Facility/Details/1,Laramie +Laramie Park,41.3184253,-105.5627537,"900-998 N Television Rd, Laramie, WY 82072, USA",(307) 721-5200,https://www.cityoflaramie.org/Facilities/Facility/Details/5,Laramie +Brush Creek Work Center,41.3085657,-105.6296606,"2468 W Jackson St, Laramie, WY 82070, USA",Unknown,Unknown,Laramie +LaBonte Park,41.3215509,-105.5873425,"501-599 E Canby St, Laramie, WY 82072, USA",Unknown,https://www.cityoflaramie.org/Facilities/Facility/Details/3,Laramie +LaPrele Park,41.3039199,-105.5649167,"South 23rd Street &, E Spring Creek Dr, Laramie, WY 82070, USA",Unknown,https://cityoflaramie.org/Facilities/Facility/Details/16,Laramie +DeKalb History Center Museum,33.7751654,-84.2964989,"101 E Court Square, Decatur, GA 30030, USA",(404) 373-1088,http://www.dekalbhistory.org/,Decatur +Toy Park,33.776129,-84.304726,"133 Nelson Ferry Rd, Decatur, GA 30030, USA",Unknown,http://www.decaturdisciples.org/?page_id=340,Decatur +Decatur Square,33.7747076,-84.29612030000001,"509 N McDonough St, Decatur, GA 30030, USA",(404) 370-4100,http://www.decaturga.com/,Decatur +Glenlake Park,33.7838118,-84.2929793,"1121 Church St, Decatur, GA 30030, USA",(404) 377-7231,https://www.decaturga.com/parksrec/page/glenlake-park,Decatur +Clyde Shepherd Nature Preserve,33.806827,-84.28304899999999,"2580 Pine Bluff Dr, Decatur, GA 30033, USA",(678) 466-0572,http://www.cshepherdpreserve.org/,Decatur +What Sonia Said,33.7748275,-84.2963123,"Recreation Center Access, Decatur, GA 30030, USA",Unknown,Unknown,Decatur +Waffle House Museum,33.77455510000001,-84.2784502,"2719 E College Ave, Decatur, GA 30030, USA",(770) 326-7086,https://www.wafflehouse.com/museum/,Decatur +McKoy Park,33.7575835,-84.29890569999999,"1000 Adams St, Decatur, GA 30030, USA",(404) 377-7231,Unknown,Decatur +Mason Mill Park,33.80720889999999,-84.30629019999999,"1406-1458 McConnell Dr, Decatur, GA 30033, USA",(404) 371-2000,https://www.dekalbcountyga.gov/parks/mason-mill-park,Decatur +Woodlands Garden,33.786119,-84.3036992,"932 Scott Blvd, Decatur, GA 30030, USA",(404) 373-2222,http://www.woodlandsgarden.org/,Decatur +Oakhurst Park,33.7606281,-84.30685009999999,"307 Feld Ave, Decatur, GA 30030, USA",(404) 377-0494,Unknown,Decatur +Legacy Park,33.7668742,-84.28101029999999,"500 S Columbia Dr, Decatur, GA 30030, USA",Unknown,https://decaturlegacypark.com/,Decatur +Lanier Gardens,33.7745027,-84.2792491,"2699 E College Ave, Decatur, GA 30030, USA",Unknown,https://www.dekalbcountyga.gov/parks/,Decatur +Glenn Creek Nature Preserve,33.7814559,-84.28564759999999,"104 Fairview St, Decatur, GA 30030, USA",(404) 378-7939,http://www.glenncreeknaturepreserve.org/,Decatur +Scott Park,33.7730308,-84.2934609,"231 Sycamore St, Decatur, GA 30030, USA",(404) 377-0494,Unknown,Decatur +Oakhurst Dog Park,33.76,-84.3097222,"414 East Lake Dr, Decatur, GA 30030, USA",Unknown,https://oakhurstdogpark.com/,Decatur +Shoal Creek Park I,33.7384843,-84.2701792,"3642 Glenwood Rd, Decatur, GA 30032, USA",(404) 371-2000,https://www.dekalbcountyga.gov/parks/mission-statement,Decatur +Medlock Park,33.80347099999999,-84.29495,"874 Gaylemont Cir, Decatur, GA 30033, USA",(404) 371-2000,https://www.dekalbcountyga.gov/parks/decatur,Decatur +Dearborn Park,33.75615659999999,-84.2872977,"1310 Deerwood Dr, Decatur, GA 30030, USA",(678) 435-9991,http://www.dearbornpark.org/,Decatur +Hidden Cove Park,33.7838729,-84.30969809999999,"Decatur, GA 30030, USA",Unknown,Unknown,Decatur +Animas Museum,37.2992304,-107.8733226,"3065 W 2nd Ave, Durango, CO 81301, USA",(970) 259-2402,https://www.animasmuseum.org/,Durango +The Powerhouse,37.2782875,-107.8805411,"1295 Camino Del Rio, Durango, CO 81301, USA",(970) 259-9234,https://powsci.org/,Durango +Durango Wildlife Museum,37.2814416,-107.875858,"151 E 16th St, Durango, CO 81301, USA",(970) 247-0855,https://www.durango.org/discover-durango/fish-hatchery-and-wildlife-museum,Durango +Whitewater Park,37.2641324,-107.881276,"107 Camino Del Rio, Durango, CO 81301, USA",Unknown,https://www.durangogov.org/Facilities/Facility/Details/Whitewater-Park-31,Durango +Durango Adventures and Zipline Tours,37.2702327,-107.908568,"20673 US-160, Durango, CO 81301, USA",(970) 759-9880,http://durangoadventures.com/,Durango +Oxbow Park and Preserve,37.3096535,-107.8543142,"500 Animas View Dr, Durango, CO 81301, USA",(970) 375-7321,http://www.durangogov.org/Facilities/Facility/Details/33,Durango +Durango & Silverton Narrow Gauge Railroad,37.2690881,-107.8825343,"479 Main Ave, Durango, CO 81301, USA",(888) 872-4607,http://www.durangotrain.com/,Durango +Fish Hatchery,37.2813949,-107.875608,"151 E 16th St, Durango, CO 81301, USA",Unknown,Unknown,Durango +Animas City Park,37.3016533,-107.8686998,"E 32nd St, Durango, CO 81301, USA",(970) 375-7321,https://www.durangogov.org/facilities/facility/details/Animas-City-Park-1,Durango +Durango train ride,37.27527999999999,-107.8800667,"Durango, CO 81301, USA",Unknown,Unknown,Durango +Schneider Park,37.2781864,-107.882483,"950 Roosa Ave, Durango, CO 81301, USA",Unknown,https://www.durango.org/listing/schneider-park/1843/,Durango +Lions Den,37.2880791,-107.8614313,"2401 Rim Dr, Durango, CO 81301, USA",(970) 375-7321,http://www.durangogov.org/Facilities/Facility/Details/16,Durango +Statue,37.2773437,-107.8822476,"1129 Camino Del Rio, Durango, CO 81301, USA",Unknown,Unknown,Durango +Grizzly Brown carving,37.2799199,-107.8815851,"1423 W 3rd Ave, Durango, CO 81301, USA",Unknown,Unknown,Durango +Durango Treasures,37.2735159,-107.8803706,"900 Main Ave, Durango, CO 81301, USA",(970) 403-5562,http://durangotreasures.com/?utm_source=gmb&utm_medium=referral,Durango +DurangoLiveCam,37.272949,-107.9382454,"529 Castle Rdg Dr, Durango, CO 81303, USA",Unknown,Unknown,Durango +Scenic View,37.243582,-107.869547,"800 S Camino Del Rio, Durango, CO 81301, USA",Unknown,Unknown,Durango +Dallabetta Park,37.2212764,-107.860924,"12120-13452 La Posta Rd, Durango, CO 81303, USA",Unknown,https://durangogov.org/Facilities/Facility/Details/6,Durango +Pinkerton Hot Springs,37.4510282,-107.8053135,"35554 US-550, Durango, CO 81301, USA",Unknown,Unknown,Durango +Discovery Museum At-Powerhouse,37.27869589999999,-107.8799678,"1333 Camino Del Rio, Durango, CO 81301, USA",(970) 422-2034,https://powsci.org/,Durango +Longview World of Wonders,32.494791,-94.7395559,"112 E Tyler St, Longview, TX 75601, USA",(903) 212-4969,http://www.longviewwow.org/,Longview +Gregg County Historical Museum,32.4953078,-94.7382885,"214 N Fredonia St, Longview, TX 75601, USA",(903) 753-5840,http://gregghistorical.org/,Longview +Longview Museum of Fine Arts,32.4946741,-94.7379781,"215 E Tyler St, Longview, TX 75601, USA",(903) 753-8103,https://www.lmfa.org/,Longview +KidsView Playground,32.49205389999999,-94.7751147,"100 H G Mosley Pkwy, Longview, TX 75604, USA",(903) 237-1270,https://www.longviewtexas.gov/2162/Park-and-Facility-Locations,Longview +Lear Park,32.4918841,-94.7773128,"100 H G Mosley Pkwy, Longview, TX 75604, USA",(903) 237-1270,https://www.longviewtexas.gov/2162/Park-and-Facility-Locations,Longview +Longview Arboretum and Nature Center,32.49630919999999,-94.7574346,"706 W Cotton St, Longview, TX 75604, USA",(903) 212-2181,http://longviewarboretum.org/,Longview +Teague Park,32.5009758,-94.7214503,"415 American Legion Blvd, Longview, TX 75601, USA",(903) 237-1270,https://www.longviewtexas.gov/2162/Park-and-Facility-Locations,Longview +Stamper Park,32.4888322,-94.7490656,"400 Fair St, Longview, TX 75601, USA",(903) 237-1270,https://www.longviewtexas.gov/2162/Park-and-Facility-Locations,Longview +Lear Park - Jack M Mann Splash Pad,32.4925979,-94.7781713,"100 H G Mosley Pkwy, Longview, TX 75604, USA",(903) 237-1270,https://www.longviewtexas.gov/3174/Splash-Pads,Longview +Rotary Park,32.51020059999999,-94.7438943,"500 Baylor Dr, Longview, TX 75601, USA",(903) 237-1270,https://www.longviewtexas.gov/2162/Park-and-Facility-Locations,Longview +Paul Boorman Trail Park,32.515092,-94.7595346,"919 W Marshall Ave, Longview, TX 75604, USA",(903) 237-1270,https://www.longviewtexas.gov/2162/Park-and-Facility-Locations,Longview +Air U Trampoline Park,32.57095249999999,-94.7336406,"4300 US-259, Longview, TX 75605, USA",(903) 663-2478,http://www.airu-longview.com/,Longview +McWhorter Park,32.52199929999999,-94.7892257,"1000 Toler Rd, Longview, TX 75604, USA",(903) 237-1270,https://www.longviewtexas.gov/2162/Park-and-Facility-Locations,Longview +Erie Canal Museum,43.05067899999999,-76.14882899999999,"318 Erie Blvd E, Syracuse, NY 13202, USA",(315) 471-0593,https://eriecanalmuseum.org/,Syracuse +Rosamond Gifford Zoo,43.0433241,-76.1810744,"1 Conservation Pl, Syracuse, NY 13204, USA",(315) 435-8511,http://www.rosamondgiffordzoo.org/,Syracuse +Museum of Science & Technology,43.04709829999999,-76.1555908,"500 S Franklin St, Syracuse, NY 13202, USA",(315) 425-9068,http://www.most.org/,Syracuse +Everson Museum of Art,43.04472319999999,-76.1467421,"401 Harrison St, Syracuse, NY 13202, USA",(315) 474-6064,http://www.everson.org/,Syracuse +Onondaga Historical Association,43.0478833,-76.1492051,"321 Montgomery St, Syracuse, NY 13202, USA",(315) 428-1864,http://www.cnyhistory.org/,Syracuse +Museum Of Intrigue,43.0673103,-76.1710008,"9658 Destiny USA Dr, Syracuse, NY 13204, USA",(855) 653-7227,https://www.museumofintrigue.com/,Syracuse +WonderWorks Destiny,43.06738999999999,-76.17256739999999,"9090 Destiny USA Dr, Syracuse, NY 13204, USA",(315) 466-7700,http://www.wonderworksonline.com/destiny/,Syracuse +Thornden Park,43.0420963,-76.1266681,"Thornden Park Dr, Syracuse, NY 13210, USA",(315) 473-4330,http://www.syrgov.net/parks,Syracuse +5 Wits Syracuse,43.06846679999999,-76.1716631,"10351 Destiny USA Dr, Syracuse, NY 13204, USA",(315) 988-4001,http://www.5-wits.com/,Syracuse +E.M. Mills Rose Garden,43.0390225,-76.1278912,"Thornden Park Dr, Syracuse, NY 13210, USA",(315) 473-4330,http://syracuserosesociety.org/,Syracuse +Onondaga Park,43.0285453,-76.16271320000001,"655 Onondaga Ave, Syracuse, NY 13207, USA",(315) 469-3464,Unknown,Syracuse +Elmwood Park,43.0187198,-76.166893,"919 Glenwood Ave, Syracuse, NY 13207, USA",(315) 473-4330,http://www.syrgov.net/parks/elmwoodPark.html,Syracuse +Burnet Park,43.0422774,-76.183934,"Syracuse, NY 13204, USA",(315) 473-4330,Unknown,Syracuse +Clinton Square,43.0510781,-76.1529286,"161 Genesee St, Syracuse, NY 13202, USA",(315) 423-0129,Unknown,Syracuse +Taste of Syracuse,43.05086120000001,-76.15288269999999,"1000 S Clinton St, Syracuse, NY 13202, USA",Unknown,Unknown,Syracuse +Barry Park,43.0291204,-76.1171363,"Meadowbrook Dr, Syracuse, NY 13210, USA",(315) 473-4330,https://syracuseparksconservancy.org/parks/barry-park/,Syracuse +Upper Onondaga Park,43.0269743,-76.1651971,"655 Onondaga Ave, Syracuse, NY 13207, USA",(315) 473-4330,http://www.syrgov.net/parks/onondagaParkUpper.html,Syracuse +Salt Museum,43.0997557,-76.2068199,"106 Lake Dr, Liverpool, NY 13088, USA",(315) 453-6712,http://www.onondagacountyparks.com/salt-museum/,Syracuse +Franklin Square Park,43.0569389,-76.1571244,"101 Solar St, Syracuse, NY 13204, USA",(315) 473-4330,Unknown,Syracuse +Community Folk Art Center,43.04724679999999,-76.1390807,"805 E Genesee St, Syracuse, NY 13210, USA",(315) 442-2230,https://communityfolkartcenter.org/,Syracuse +Stearns History Museum,45.5476191,-94.2026901,"235 South 33rd Ave S, St Cloud, MN 56301, USA",(320) 253-8424,http://www.stearnshistorymuseum.org/,St. Cloud +Munsinger Gardens,45.5514024,-94.1445174,"1515 Riverside Dr SE, St Cloud, MN 56304, USA",(320) 257-5959,https://www.munsingerclemens.com/,St. Cloud +Seberger Park,45.5569918,-94.1819139,"2001 2nd St N, St Cloud, MN 56303, USA",(320) 257-5959,http://ci.stcloud.mn.us/210/wading-pools-splash-pads,St. Cloud +Welcome to Saint Cloud Sign,45.543831,-94.2055304,"3800 18th St S, St Cloud, MN 56301, USA",Unknown,Unknown,St. Cloud +Pine View Park,45.5570278,-94.2409058,"6520 Saukview Dr, St Cloud, MN 56303, USA",(320) 255-7200,Unknown,St. Cloud +Lake George Park,45.5542645,-94.1625308,"1101 7th St S, St Cloud, MN 56301, USA",(320) 255-7277,http://www.ci.stcloud.mn.us/91/Park-Recreation,St. Cloud +Sauk River Regional Park,45.5883695,-94.1910554,"3237 Dolores Dr, St Cloud, MN 56303, USA",Unknown,Unknown,St. Cloud +Music Mural,45.55850940000001,-94.1626097,"903 1st St S, St Cloud, MN 56301, USA",Unknown,Unknown,St. Cloud +Summerland Family Fun Park,45.5820921,-94.1038389,"1050 28th Ave NE, Sauk Rapids, MN 56379, USA",(320) 251-0940,http://www.summerlandfunpark.com/,St. Cloud +Quarry Park and Nature Preserve,45.53649199999999,-94.241842,"1802 Co Rd 137, Waite Park, MN 56387, USA",(320) 255-6172,https://www.stearnscountymn.gov/396/Quarry-Park-Nature-Preserve,St. Cloud +Clemens Gardens,45.55128089999999,-94.1430993,"56301, 1301 Kilian Blvd SE #56301, St Cloud, MN 56304, USA",(320) 257-5959,https://www.munsingerclemens.com/the-gardens/clemens-gardens/,St. Cloud +Wilson Park,45.5726941,-94.1618962,"625 Riverside Dr NE, St Cloud, MN 56304, USA",Unknown,https://www.ci.stcloud.mn.us/facilities/facility/details/Wilson-Park-24,St. Cloud +River Bluffs Regional Park,45.50492390000001,-94.1514714,"3828 38th St S, St Cloud, MN 56301, USA",Unknown,http://ci.stcloud.mn.us/91/Park-Recreation,St. Cloud +Visit Greater St. Cloud,45.55672020000001,-94.169164,"1411 W St Germain St #104, St Cloud, MN 56301, USA",(320) 251-4170,http://www.visitstcloud.com/,St. Cloud +Riverside Park,45.54551079999999,-94.143043,"St Cloud, MN 56304, USA",(320) 650-3053,https://www.ci.stcloud.mn.us/Facilities/Facility/Details/25,St. Cloud +Minnesota Amateur Baseball Hall of Fame,45.56193040000001,-94.1566376,"10 4th Ave S, St Cloud, MN 56301, USA",(320) 252-8227,Unknown,St. Cloud +Heritage Park,45.5460628,-94.2018288,"265 33rd Ave S, St Cloud, MN 56301, USA",Unknown,Unknown,St. Cloud +Blacklight Adventures,45.548603,-94.1967697,"240 33rd Ave S, St Cloud, MN 56301, USA",(320) 774-1500,http://www.blacklightadventuresllc.com/,St. Cloud +AirMaxx Trampoline Park & Warrior Course,45.5025596,-94.1526412,"3900 Roosevelt Rd, St Cloud, MN 56301, USA",(320) 281-5599,https://www.airmaxxstcloud.com/,St. Cloud +Beaver Island Trail South,45.5140786,-94.1583741,"3330 Roosevelt Rd, St Cloud, MN 56301, USA",Unknown,Unknown,St. Cloud +Charles M. Schulz Museum and Research Center,38.46037,-122.7359139,"2301 Hardies Ln, Santa Rosa, CA 95403, USA",(707) 579-4452,https://schulzmuseum.org/,Santa Rosa +Children's Museum of Sonoma County,38.4608589,-122.7369642,"1835 W Steele Ln, Santa Rosa, CA 95403, USA",(707) 546-4069,https://www.cmosc.org/?utm_source=google&utm_medium=organic&utm_campaign=gmb&utm_content=gmb_website,Santa Rosa +Trione-Annadel State Park,38.4522438,-122.6346359,"6201 Channel Dr, Santa Rosa, CA 95409, USA",(707) 539-3911,http://www.parks.ca.gov/?page_id=480,Santa Rosa +Railroad Square Historic District,38.4375005,-122.7214031,"9 4th St, Santa Rosa, CA 95401, USA",Unknown,https://www.railroadsquare.net/,Santa Rosa +Howarth Park,38.4526631,-122.6692682,"630 Summerfield Rd, Santa Rosa, CA 95405, USA",(707) 543-3425,https://srcity.org/1271/Howarth-Park,Santa Rosa +Spring Lake Park,38.4500466,-122.6496719,"5585 Newanga Ave, Santa Rosa, CA 95405, USA",(707) 539-8092,http://parks.sonomacounty.ca.gov/Get_Outdoors/Parks/Spring_Lake_Regional_Park.aspx,Santa Rosa +Pacific Coast Air Museum,38.5065179,-122.8021181,"One Air Museum Way, Santa Rosa, CA 95403, USA",(707) 575-7900,http://pacificcoastairmuseum.org/,Santa Rosa +Museum of Sonoma County,38.44185,-122.7183725,"425 7th St, Santa Rosa, CA 95401, USA",(707) 579-1500,https://museumsc.org/,Santa Rosa +Safari West,38.5569166,-122.6955347,"3115 Porter Creek Rd, Santa Rosa, CA 95404, USA",(707) 579-2551,https://www.safariwest.com/,Santa Rosa +Luther Burbank Home & Gardens,38.4361572,-122.7117766,"204 Santa Rosa Ave, Santa Rosa, CA 95404, USA",(707) 524-5445,http://www.lutherburbank.org/,Santa Rosa +Santa Rosa Junior College Multicultural Museum,38.45614359999999,-122.7208729,"Bussman Hall, Santa Rosa, CA 95401, USA",(707) 527-4479,https://museum.santarosa.edu/,Santa Rosa +Laguna de Santa Rosa Trail,38.40604359999999,-122.8117633,"6303 CA-12, Santa Rosa, CA 95409, USA",(707) 433-1625,http://parks.sonomacounty.ca.gov/Get_Outdoors/Parks/Laguna_de_Santa_Rosa_Trail.aspx,Santa Rosa +Peanuts Statue,38.4405718,-122.7144757,"545 4th St, Santa Rosa, CA 95401, USA",Unknown,Unknown,Santa Rosa +Peanuts Statue,38.42784239999999,-122.7493697,"751 Lombardi Ct, Santa Rosa, CA 95407, USA",Unknown,Unknown,Santa Rosa +Peanuts Statue,38.4590836,-122.7306704,"151 Coddingtown Center, Santa Rosa, CA 95401, USA",Unknown,Unknown,Santa Rosa +California Welcome Center,38.4375432,-122.7214426,"9 4th St, Santa Rosa, CA 95401, USA",(707) 577-8674,https://www.visitcalifornia.com/experience/california-welcome-center-santa-rosa/,Santa Rosa +California Indian Museum & Cultural Center,38.5088862,-122.7645482,"5250 Aero Dr, Santa Rosa, CA 95403, USA",(707) 579-3004,https://cimcc.org/,Santa Rosa +Laguna de Santa Rosa Foundation,38.4260534,-122.8215185,"900 Sanford Rd, Santa Rosa, CA 95401, USA",(707) 527-9277,http://www.lagunadesantarosa.org/,Santa Rosa +Snoopy's Home Ice,38.460572,-122.734344,"1667 W Steele Ln, Santa Rosa, CA 95403, USA",(707) 546-7147,http://www.snoopyshomeice.com/,Santa Rosa +Peanuts Statues,38.4415633,-122.7455996,"131 Stony Cir, Santa Rosa, CA 95401, USA",Unknown,Unknown,Santa Rosa +Buena Vista Museum of Natural History & Science,35.3777015,-119.0184299,"2018 Chester Ave, Bakersfield, CA 93301, USA",(661) 324-6350,http://www.buenavistamuseum.org/?utm_source=google&utm_medium=wix_google_business_profile&utm_campaign=17814811990716261384,Bakersfield +Kern County Museum,35.3934454,-119.0194027,"3801 Chester Ave, Bakersfield, CA 93301, USA",(661) 437-3330,http://kerncountymuseum.org/,Bakersfield +Bakersfield Museum of Art,35.37678599999999,-119.008974,"1930 R St, Bakersfield, CA 93301, USA",(661) 323-7219,http://www.bmoa.org/,Bakersfield +Central Park at Mill Creek,35.3741849,-119.0088485,"500 19th St, Bakersfield, CA 93301, USA",(661) 326-3866,https://www.bakersfieldcity.us/297/Recreation-Parks,Bakersfield +The Park at River Walk,35.3513811,-119.1272181,"11298 Stockdale Hwy, Bakersfield, CA 93311, USA",(661) 326-3866,https://www.bakersfieldcity.us/297/Recreation-Parks,Bakersfield +California Living Museum,35.4322965,-118.8853528,"10500 Alfred Harrell Hwy, Bakersfield, CA 93306, USA",(661) 872-2256,http://calmzoo.org/,Bakersfield +Mural Alley Bakersfield,35.3750252,-119.0220234,"1727 18th St Suite B, Bakersfield, CA 93301, USA",Unknown,http://www.localefarmtotable.com/,Bakersfield +BLOOM Mural Bakersfield,35.3771554,-118.9894868,"801 Kentucky St, Bakersfield, CA 93305, USA",Unknown,http://www.thehubofbakersfield.org/,Bakersfield +Lori Brock Discovery Center,35.3935639,-119.0194149,"3801 Chester Ave, Bakersfield, CA 93301, USA",(661) 437-3330,https://kerncountymuseum.org/lori-brock-discovery-center/,Bakersfield +Colonel Thomas Baker Memorial,35.3730326,-119.0195212,"1501 Truxtun Ave, Bakersfield, CA 93301, USA",(661) 392-2130,http://ohp.parks.ca.gov/?page_id=21423,Bakersfield +Beale Park,35.3622881,-119.0249926,"500 Oleander Ave, Bakersfield, CA 93304, USA",(661) 326-3866,https://www.bakersfieldcity.us/297/Recreation-Parks,Bakersfield +Visit Bakersfield,35.37300939999999,-119.007677,"515 Truxtun Ave, Bakersfield, CA 93301, USA",(866) 425-7353,http://www.visitbakersfield.com/,Bakersfield +The Bakersfield Sign,35.38615,-119.0424809,"3032-3000 Sillect Ave, Bakersfield, CA 93308, USA",Unknown,Unknown,Bakersfield +Saunders Park,35.3621328,-119.0412278,"3300 Palm St, Bakersfield, CA 93309, USA",(661) 326-3866,https://www.bakersfieldcity.us/297/Recreation-Parks,Bakersfield +Panorama Vista Preserve,35.4127933,-118.9994859,"901 E Roberts Ln, Bakersfield, CA 93308, USA",(661) 872-3569,http://panoramavista.org/,Bakersfield +Cross of Palms,35.43429409999999,-119.172055,"7000-9698 Rudd Ave, Bakersfield, CA 93314, USA",Unknown,Unknown,Bakersfield +Panorama Park,35.40849850000001,-118.9933925,"901 Panorama Dr, Bakersfield, CA 93305, USA",(661) 872-5149,Unknown,Bakersfield +Yokuts Park,35.37599489999999,-119.0470921,"4200 Empire Dr, Bakersfield, CA 93309, USA",(661) 326-3866,https://www.bakersfieldcity.us/297/Recreation-Parks,Bakersfield +Ingenious Escape Rooms - Bakersfield Stockdale,35.31139919999999,-119.0719076,"6225 District Blvd #103, Bakersfield, CA 93313, USA",(661) 493-6383,https://ingeniousescapebakersfield.com/,Bakersfield +Hart Memorial Park,35.4444575,-118.9081356,"Hart Park, Bakersfield, CA 93308, USA",Unknown,https://hmp.areafish.com/,Bakersfield +Buffalo Bill Ranch State Historical Park Museum,41.1631459,-100.7962165,"2921 Scouts Rest Ranch Rd, North Platte, NE 69101, USA",(308) 535-8035,http://outdoornebraska.gov/buffalobillranch/,North Platte +Golden Spike Tower,41.144225,-100.829387,"1249 N Homestead Rd, North Platte, NE 69101, USA",(308) 532-9920,https://goldenspiketower.com/,North Platte +Cody Park Railroad Museum,41.1475898,-100.7528683,"1400 N Jeffers St, North Platte, NE 69101, USA",(308) 535-6719,https://www.visitnorthplatte.com/listing/cody-park-railroad-museum/145/,North Platte +North Platte Area Children's Museum,41.136185,-100.763657,"314 N Jeffers St, North Platte, NE 69101, USA",(308) 532-3512,http://www.npchildrensmuseum.com/,North Platte +Cody Park,41.1498274,-100.7572245,"1601 N Jeffers St, North Platte, NE 69101, USA",(308) 535-6700,http://www.ci.north-platte.ne.us/parks/cody-park/,North Platte +Buffalo Bill Ranch State Historical Park,41.1627692,-100.7956034,"2921 Scouts Rest Ranch Rd, North Platte, NE 69101, USA",(308) 535-8035,http://outdoornebraska.gov/buffalobillranch/,North Platte +20th Century Veterans Memorial,41.10789399999999,-100.762932,"2811 S Jeffers St, North Platte, NE 69103, USA",(308) 532-6579,https://visitnorthplatte.com/directory-posts/20th-century-veterans-memorial/,North Platte +Lincoln County Historical Museum,41.1602472,-100.7907139,"2403 N Buffalo Bill Ave, North Platte, NE 69101, USA",(308) 534-5640,https://lincolncountymuseum.org/,North Platte +Alpha Omega Labyrinth,41.1284605,-100.7841144,"651 S Sherman Ave, North Platte, NE 69101, USA",(308) 532-1478,Unknown,North Platte +N. Platte-S. Platte River Confluence,41.1150752,-100.6825356,"Unnamed Road, North Platte, NE 69101, USA",Unknown,Unknown,North Platte +Cody Go Karts,41.11133949999999,-100.7550201,"805 Halligan Dr, North Platte, NE 69101, USA",(308) 534-8277,http://www.codygokarts.com/,North Platte +Fort Cody Trading Post,41.113552,-100.7626629,"221 Halligan Dr, North Platte, NE 69101, USA",(308) 532-8081,http://www.fortcody.com/,North Platte +Iron Horse Park,41.1076042,-100.7624213,"2901 S Jeffers St, North Platte, NE 69101, USA",Unknown,Unknown,North Platte +Crystal Cave and Falls Adventure Mini Golf,41.111802,-100.7549181,"805 Halligan Dr, North Platte, NE 69101, USA",Unknown,Unknown,North Platte +Feather River Vineyards,41.0732456,-100.6901086,"5700 SE State Farm Rd, North Platte, NE 69101, USA",(308) 696-0078,http://www.feather-river.com/,North Platte +Memorial Park Splash Pad,41.13427839999999,-100.7508355,"1200 E 4th St, North Platte, NE 69101, USA",(308) 532-4729,Unknown,North Platte +North Platte Visitor Center,41.1164147,-100.7627636,"101 Halligan Dr, North Platte, NE 69101, USA",(308) 532-4729,http://www.visitnorthplatte.com/,North Platte +Children's Museum of La Crosse,43.81075709999999,-91.2500046,"207 5th Ave S, La Crosse, WI 54601, USA",(608) 784-2652,http://www.funmuseum.org/,La Crosse +Riverside Park,43.81694439999999,-91.2558333,"100 State St, La Crosse, WI 54601, USA",(608) 789-7533,https://www.riversideparklacrosse.com/,La Crosse +Historic Hixon House Museum,43.8158517,-91.2471242,"429 7th St N, La Crosse, WI 54601, USA",(608) 782-1980,http://www.lchshistory.org/hixon-house,La Crosse +La Crosse Segway Tours,43.81201179999999,-91.2510815,"Next To Duluth Trading, 400 Main St STE 102, La Crosse, WI 54601, USA",(608) 790-5419,http://www.lacrossesegwaytours.com/,La Crosse +Riverside International Friendship Gardens,43.8183551,-91.2551039,"345-, 405 E Veterans Memorial Dr, La Crosse, WI 54601, USA",(608) 789-7533,http://www.riversidegardens.org/,La Crosse +Myrick Park,43.8210554,-91.2256521,"2000 La Crosse St, La Crosse, WI 54601, USA",(608) 789-7533,https://www.cityoflacrosse.org/Home/Components/FacilityDirectory/FacilityDirectory/90/,La Crosse +Pettibone Park,43.819739,-91.265017,"700 N Pettibone Dr, La Crosse, WI 54601, USA",(608) 789-7533,Unknown,La Crosse +Copeland Park,43.84048809999999,-91.2498898,"1130 Copeland Park Dr, La Crosse, WI 54603, USA",(608) 789-7533,https://www.cityoflacrosse.org/Home/Components/FacilityDirectory/FacilityDirectory/55/34,La Crosse +Grandad Bluff Park,43.8124379,-91.210978,"3020 Grandad Bluff Rd, La Crosse, WI 54601, USA",(608) 789-7533,https://explorelacrosse.com/project/grandad-bluff-la-crosse/,La Crosse +La Crosse Area Heritage Center,43.8116373,-91.24959,"506 Main St, La Crosse, WI 54601, USA",(608) 782-1980,http://www.lchshistory.org/,La Crosse +Dahl Auto Museum,43.80600400000001,-91.253273,"711 3rd St S, La Crosse, WI 54601, USA",(608) 791-6494,https://www.dahlautomuseum.com/,La Crosse +World's Largest Six-Pack,43.8028449,-91.2532675,"3rd St S, La Crosse, WI 54601, USA",(608) 785-4200,Unknown,La Crosse +Shrine of Our Lady of Guadalupe,43.7543354,-91.1799979,"5250 Justin Rd, La Crosse, WI 54601, USA",(877) 799-4059,https://guadalupeshrine.org/,La Crosse +Upper Hixon Forest,43.8258653,-91.1912582,"800 Milson Ct, La Crosse, WI 54601, USA",(608) 789-7533,https://www.cityoflacrosse.org/,La Crosse +Pump House Regional Arts Center,43.8101902,-91.2560841,"119 King St, La Crosse, WI 54601, USA",(608) 785-1434,http://thepumphouse.org/,La Crosse +Chad Erickson Memorial Park,43.781265,-91.201319,"3601 Park Ln Dr, La Crosse, WI 54601, USA",(608) 789-7533,https://www.cityoflacrosse.org/Home/Components/FacilityDirectory/FacilityDirectory/51/34,La Crosse +The Nature Place,43.8223227,-91.2258433,"789 Myrick Park Dr, La Crosse, WI 54601, USA",(608) 782-2494,https://natureplacelacrosse.org/,La Crosse +Paul E. Stry Nature Preserve,43.7900492,-91.1963928,"W5845 WI-33, La Crosse, WI 54601, USA",Unknown,Unknown,La Crosse +Red Cloud Park,43.8335236,-91.229549,"520 Powell St, La Crosse, WI 54601, USA",(608) 789-7533,https://www.cityoflacrosse.org/Home/Components/FacilityDirectory/FacilityDirectory/100/,La Crosse +La Crosse Escape Room,43.8126728,-91.2517684,"319 Main St, La Crosse, WI 54601, USA",(608) 518-3891,http://www.lacrosseescaperoom.com/,La Crosse +Plattsburgh City Beach,44.720654,-73.43194799999999,"4 Beach Rd, Plattsburgh, NY 12901, USA",(518) 563-7701,http://www.cityofplattsburgh-ny.gov/plattsburghcitybeach,Plattsburgh +Point Au Roche State Park,44.78551259999999,-73.38050559999999,"19 Camp Red Cloud Rd, Plattsburgh, NY 12901, USA",(518) 563-0369,https://parks.ny.gov/parks/30/details.aspx,Plattsburgh +Cumberland Bay State Park,44.7236377,-73.4266999,"152 Cumberland Head Rd, Plattsburgh, NY 12901, USA",(518) 563-5240,https://parks.ny.gov/parks/34/details.aspx,Plattsburgh +Plattsburgh State Art Museum,44.6937533,-73.4658347,"101 Broad St, Plattsburgh, NY 12901, USA",(518) 564-2474,https://www.plattsburgh.edu/plattslife/arts/art-museum/index.html,Plattsburgh +Kent-Delord House Museum,44.7004852,-73.4480793,"17 Cumberland Ave, Plattsburgh, NY 12901, USA",(518) 561-1035,http://www.kentdelordhouse.org/,Plattsburgh +U.S.S. Lake Champlain Memorial,44.6975612,-73.4423288,"Plattsburgh, NY 12901, USA",Unknown,Unknown,Plattsburgh +War of 1812 Museum,44.6819397,-73.44593920000001,"31 Washington Rd, Plattsburgh, NY 12903, USA",(518) 566-1814,https://battleofplattsburgh.org/,Plattsburgh +Trinity Park,44.6986366,-73.45232829999999,"1 Trinity Pl, Plattsburgh, NY 12901, USA",(518) 324-7709,Unknown,Plattsburgh +Kids' Station Children's Museum,44.6834736,-73.4454855,"13 New York Rd, Plattsburgh, NY 12903, USA",(518) 324-7426,Unknown,Plattsburgh +South Platt St. Park,44.6871022,-73.4553023,"21 South Platt Street, Plattsburgh, NY 12901, USA",(518) 324-7709,http://www.plattsburghrecreation.com/,Plattsburgh +Gazebo,44.6885802,-73.448168,"121 US Oval, Plattsburgh, NY 12903, USA",Unknown,Unknown,Plattsburgh +Samuel Champlain Monument Park,44.7002907,-73.4471817,"30 Cumberland Ave, Plattsburgh, NY 12901, USA",Unknown,http://www.plattsburghrecreation.com/,Plattsburgh +Champy's Fun City,44.695891,-73.488678,"411 State Rte 3, Plattsburgh, NY 12901, USA",(518) 563-2095,http://www.champysfuncity.com/,Plattsburgh +Mountain Lake Mandala mural,44.6978771,-73.4522795,"City Hall Pl, Plattsburgh, NY 12901, USA",Unknown,Unknown,Plattsburgh +Melissa Penfield Park,44.706786,-73.463684,"139 Boynton Ave, Plattsburgh, NY 12901, USA",(518) 324-7709,http://www.plattsburghrecreation.com/,Plattsburgh +MacDonough Monument,44.6990251,-73.4512683,"42 City Hall Pl, Plattsburgh, NY 12901, USA",Unknown,https://paththroughhistory.iloveny.com/listings/Macdonough-Monument/30402/#.WGf_kJ9OnqA,Plattsburgh +Bench along Terry Gordon Rec Trail,44.6829,-73.444,"9 Marine Vlg Rd, Plattsburgh, NY 12901, USA",Unknown,Unknown,Plattsburgh +Terry James Gordon Rec Path,44.69348139999999,-73.4443405,"1-99 Terry Gordon Bike Path, Plattsburgh, NY 12901, USA",Unknown,Unknown,Plattsburgh +Country Dreams Farm,44.7469444,-73.5316667,"260 Pellerin Rd, Plattsburgh, NY 12901, USA",(518) 565-6051,https://country-dreams-farm.business.site/,Plattsburgh +Betty Little Arts Park,44.6966307,-73.4532067,"32 Margaret St, Plattsburgh, NY 12901, USA",Unknown,Unknown,Plattsburgh +MagiQuest,35.361193,-80.711714,"10175 Weddington Rd, Concord, NC 28027, USA",(704) 549-8206,https://www.greatwolf.com/concord/waterpark-attractions/attractions/magiquest,Concord +SEA LIFE Charlotte-Concord,35.3692328,-80.72510779999999,"8111 Concord Mills Boulevard, Concord, NC 28027, USA",(855) 450-0512,https://www.visitsealife.com/charlotte-concord/,Concord +Mustang Owner's Museum,35.3669221,-80.671039,"4001 Dearborn Pl NW, Concord, NC 28027, USA",(980) 439-5653,https://www.mustangownersmuseum.com/,Concord +The Avett Brothers’ Tribute Mural,35.4108418,-80.58186719999999,"25 Union St N, Concord, NC 28025, USA",Unknown,http://www.cicadastudios.net/,Concord +Xtreme Play,35.4402061,-80.6044568,"1480 Concord Pkwy N, Concord, NC 28025, USA",(704) 782-1221,http://xtremeplayconcord.com/,Concord +Vietnam Veterans Park,35.4448958,-80.6356898,"760 Orphanage Rd, Concord, NC 28027, USA",Unknown,http://www.cabarruscounty.us/alp,Concord +Memorial Garden,35.40860939999999,-80.5819222,"36 Spring St SW, Concord, NC 28025, USA",(704) 786-8009,https://firstpresconcord.org/about/memorial-garden/,Concord +Frank Liske Park,35.361684,-80.6182017,"4001 Stough Rd, Concord, NC 28027, USA",(704) 920-2701,https://www.cabarruscounty.us/Parks/Frank-Liske-Park,Concord +"K1 Speed - Indoor Go Karts, Corporate Event Venue, Team Building Activities",35.40373839999999,-80.71535,"800 Derita Rd #K, Concord, NC 28027, USA",(704) 490-4771,https://k1speed.com/concord-location.html?utm_campaign=gbl_concord&utm_source=google&utm_medium=directory,Concord +Bost Grist Mill,35.322079,-80.49656279999999,"4701 NC-200, Concord, NC 28025, USA",(704) 782-1600,http://www.bostgristmill.com/,Concord +W W Flowe Park,35.3572906,-80.5858001,"99 Central Heights Dr, Concord, NC 28025, USA",(704) 262-3444,https://www.concordnc.gov/Departments/Parks-Recreation/Facilities,Concord +Great Wolf Lodge Water Park | Concord,35.3613868,-80.71172729999999,"10175 Weddington Rd, Concord, NC 28027, USA",(866) 925-9653,https://www.greatwolf.com/concord?utm_source=google&utm_medium=organic&utm_campaign=gmb-concord,Concord +Les Myers Park,35.3991201,-80.5594314,"338 Lawndale Ave SE, Concord, NC 28025, USA",(704) 920-5601,http://www.concordnc.gov/departments/parks-recreation/facilities,Concord +Cabo Winery,35.4098995,-80.5803913,"37 Union St S, Concord, NC 28025, USA",(704) 785-9463,http://cabowine.com/,Concord +Morrison Motor Car Museum,35.3590299,-80.6738745,"4545 Concord Pkwy S, Concord, NC 28027, USA",(704) 788-9500,http://www.morrisonmotorcarmuseum.com/,Concord +Hendrick Motorsports Museum and Team Shop,35.354,-80.70501,"4411 Papa Joe Hendrick Blvd, Concord, NC 28027, USA",(877) 467-4890,http://hendrickmotorsports.com/,Concord +"Hector H.Henry, II Greenway",35.37259399999999,-80.70463699999999,"8955 Weddington Rd, Concord, NC 28027, USA",(704) 920-5611,http://www.concordnc.gov/Departments/Parks-Recreation,Concord +The Speedpark at Concord Mills,35.3681047,-80.7246688,"8461 Concord Mills Boulevard, Concord, NC 28027, USA",(704) 527-8464,http://www.thespeedpark.com/,Concord +Home of the 90’s Museum,35.4471062,-80.6202838,"404 Winecoff School Rd, Concord, NC 28027, USA",(980) 316-6277,http://homeofthe90smuseumclt.com/,Concord +iFLY Indoor Skydiving - Charlotte,35.36627600000001,-80.714287,"7840 Lyles Ln NW, Concord, NC 28027, USA",(704) 851-4359,https://www.iflyworld.com/charlotte/?utm_source=G&utm_medium=local&utm_campaign=google-local,Concord +Atlanta Botanical Garden,33.7899568,-84.37259879999999,"1345 Piedmont Ave NE, Atlanta, GA 30309, USA",(404) 876-5859,https://www.atlantabg.org/,Atlanta +World of Coca-Cola,33.7625564,-84.39243599999999,"121 Baker St NW, Atlanta, GA 30313, USA",(404) 676-5151,https://www.worldofcoca-cola.com/,Atlanta +Georgia Aquarium,33.76338199999999,-84.3951098,"225 Baker St NW, Atlanta, GA 30313, USA",(404) 581-4000,https://www.georgiaaquarium.org/,Atlanta +"Martin Luther King, Jr. National Historical Park",33.7566739,-84.3731798,"450 Auburn Ave NE, Atlanta, GA 30312, USA",(404) 331-5190,https://www.nps.gov/malu/index.htm,Atlanta +Piedmont Park,33.7879265,-84.37216819999999,"Atlanta, GA 30309, USA",(404) 875-7275,https://piedmontpark.org/,Atlanta +High Museum of Art,33.7900632,-84.38555199999999,"1280 Peachtree St NE, Atlanta, GA 30309, USA",(404) 733-4400,https://www.high.org/,Atlanta +SkyView Atlanta,33.7589378,-84.3916921,"168 Luckie St NW, Atlanta, GA 30303, USA",(678) 949-9023,http://www.skyviewatlanta.com/,Atlanta +Centennial Olympic Park,33.760463,-84.3930831,"Atlanta, GA 30313, USA",(404) 223-4412,https://www.gwcca.org/centennial-olympic-park,Atlanta +Zoo Atlanta,33.7337594,-84.3716604,"800 Cherokee Ave SE, Atlanta, GA 30315, USA",(404) 624-5600,https://zooatlanta.org/,Atlanta +Atlanta History Center,33.8418797,-84.3862534,"130 W Paces Ferry Rd NW, Atlanta, GA 30305, USA",(404) 814-4000,http://www.atlantahistorycenter.com/,Atlanta +LEGO Discovery Center Atlanta,33.8533433,-84.36304419999999,"3500 Peachtree Rd NE Suite G-1, Atlanta, GA 30326, USA",(404) 848-9252,https://atlanta.legolanddiscoverycenter.com/,Atlanta +Krog Street Tunnel,33.7529948,-84.36364789999999,"1 Krog St NE, Atlanta, GA 30307, USA",(404) 492-0847,https://discoveratlanta.com/things-to-do/krog-street-tunnel/,Atlanta +Fernbank Museum | 3D Theater | Forest,33.7739247,-84.32799849999999,"767 Clifton Rd, Atlanta, GA 30307, USA",(404) 929-6300,https://www.fernbankmuseum.org/,Atlanta +Fox Theatre,33.7725999,-84.3854681,"660 Peachtree St NE, Atlanta, GA 30308, USA",(855) 285-8499,http://www.foxtheatre.org/,Atlanta +Delta Flight Museum,33.65607299999999,-84.4223545,"1060 Delta Blvd, Atlanta, GA 30354, USA",(404) 715-7886,http://deltamuseum.org/,Atlanta +Tiny Doors ATL,33.79272580000001,-84.3978715,"1380 Atlantic Dr NW Suite 14100, Atlanta, GA 30363, USA",(404) 528-8017,http://www.tinydoorsatl.com/,Atlanta +Original Selfie Museum | Atlanta,33.7515291,-84.3994487,"116 Centennial Olympic Park Dr, Atlanta, GA 30313, USA",(404) 566-5778,http://originalselfiemuseum.com/,Atlanta +Folk Art Park,33.764049,-84.38403459999999,"Courtland St NE, Atlanta, GA 30308, USA",Unknown,Unknown,Atlanta +Underground Atlanta,33.7532167,-84.39058059999999,"50 Upper Alabama St, Atlanta, GA 30303, USA",Unknown,http://www.undergroundatl.com/,Atlanta +Children's Museum of Atlanta,33.7625707,-84.39173269999999,"275 Centennial Olympic Park Dr NW, Atlanta, GA 30313, USA",(404) 659-5437,https://childrensmuseumatlanta.org/,Atlanta +Provo Canyon,40.32810239999999,-111.633856,"2487 E Provo Canyon Rd, Provo, UT 84604, USA",Unknown,Unknown,Provo +Seven Peaks Water Park Provo,40.2370735,-111.6361835,"1330 300 N, Provo, UT 84606, USA",Unknown,http://www.sevenpeaks.com/,Provo +Utah Lake State Park,40.2378421,-111.7362163,"4400 W Center St, Provo, UT 84601, USA",Unknown,https://stateparks.utah.gov/parks/utah-lake/,Provo +Bean Life Science Museum,40.2533777,-111.647436,"645 E Phillips Ln, Provo, UT 84604, USA",(801) 422-5050,https://mlbean.byu.edu/,Provo +Brigham Young University Museum of Art (MOA),40.2507587,-111.6479756,"Campus Dr, Provo, UT 84602, USA",(801) 422-8287,http://moa.byu.edu/,Provo +BYU Museum of Paleontology,40.2564305,-111.6567329,"84602-3300, 1683 N Canyon Rd, Provo, UT 84604, USA",(801) 422-3680,http://geology.byu.edu/Museum/,Provo +Museum of Mormon Mexican History,40.2538734,-111.6564138,"1501 N Canyon Rd, Provo, UT 84604, USA",(801) 830-1468,http://www.museumofmormonmexicanhistory.com/,Provo +Provo Daughters of Utah Pioneers Museum,40.2414444,-111.6667472,"550 N 500 W, Provo, UT 84601, USA",(801) 852-6609,https://www.provo.org/departments/parks/pioneer-museum-village,Provo +BYU's Museum of Peoples and Cultures,40.2629932,-111.6578209,"2201 N Canyon Rd, Provo, UT 84604, USA",(801) 422-0020,http://mpc.byu.edu/,Provo +Provo Beach,40.29960559999999,-111.6590822,"4801 N University Ave #210, Provo, UT 84604, USA",(801) 224-5001,http://www.provobeach.com/,Provo +Provo Pioneer Village,40.24201970000001,-111.6667831,"600 N 500 W, Provo, UT 84601, USA",Unknown,http://www.provopioneervillage.org/,Provo +Pioneer Park,40.233059,-111.668294,"500 W Center St, Provo, UT 84601, USA",(801) 852-6000,http://www.provo.org/Home/Components/FacilityDirectory/FacilityDirectory/56/200,Provo +Upper Falls Park,40.346547,-111.5940227,"2542-2756 Provo Canyon Rd, Provo, UT 84604, USA",Unknown,Unknown,Provo +Provo city hall fountain,40.2335235,-111.6671681,"495 W Center St, Provo, UT 84601, USA",Unknown,Unknown,Provo +The Rift,40.2160813,-111.662589,"1200 Towne Centre Blvd suite 1158, Provo, UT 84601, USA",(801) 623-6985,https://therift.paladinarcher.com/,Provo +Memorial Park,40.2341941,-111.644203,"800 E Center St, Provo, UT 84606, USA",(801) 852-6600,https://www.provo.org/departments/parks,Provo +The Hill,40.24941159999999,-111.7163152,"1199 Lakeshore Dr, Provo, UT 84601, USA",Unknown,Unknown,Provo +South Fork Park,40.3485019,-111.5469529,"4988 S Fork Rd, Provo, UT 84604, USA",(801) 852-6606,http://provo.org/Home/Components/FacilityDirectory/FacilityDirectory/45/200?sortn=EDate&sortd=asc,Provo +Bridal Veil Falls View Area,40.3414968,-111.6030504,"1025 Provo River Pkwy, Provo, UT 84604, USA",Unknown,Unknown,Provo +Canyon View Park,40.3239752,-111.644079,"2383 E Provo Canyon Rd, Provo, UT 84604, USA",(801) 851-8600,http://www.utahcounty.gov/parks/ParkDetails.asp?IDNO=4,Provo +Frederic Remington Art Museum,44.6985554,-75.4932603,"303 Washington St, Ogdensburg, NY 13669, USA",(315) 393-2425,http://www.fredericremington.org/,Ogdensburg +Fort de la Presentation site,44.6958606,-75.5028291,"Van Rensselaer Point, 22 Albany Ave, Ogdensburg, NY 13669, USA",(315) 393-3620,http://www.fort1749.org/,Ogdensburg +Boat launch,44.6903293,-75.4949312,"50 E River St, Ogdensburg, NY 13669, USA",Unknown,Unknown,Ogdensburg +Eel Weir State Park,44.6303892,-75.4768366,"424 Co Rd 4, Ogdensburg, NY 13669, USA",(315) 393-1138,https://parks.ny.gov/parks/eelweir/details.aspx,Ogdensburg +Wheathouse Bay,44.7073014,-75.4766164,"504 N Meadow Dr, Ogdensburg, NY 13669, USA",Unknown,Unknown,Ogdensburg +Welcome to New York Sign - Ogdensburg,44.7231275,-75.4549649,"102 Bridge Approach Rd, Ogdensburg, NY 13669, USA",Unknown,Unknown,Ogdensburg +Charles W. Kelly Memorial Park,44.69898699999999,-75.4845758,"Ogdensburg, NY 13669, USA",Unknown,Unknown,Ogdensburg +Groulx Park,44.7071675,-75.4679203,"406 Champlain St, Ogdensburg, NY 13669, USA",Unknown,Unknown,Ogdensburg +Morrisette Park,44.7010736,-75.4944349,"2 Caroline St, Ogdensburg, NY 13669, USA",Unknown,Unknown,Ogdensburg +Crescent Place Park,44.6910355,-75.4919958,"112 Crescent Pl, Ogdensburg, NY 13669, USA",Unknown,Unknown,Ogdensburg +Abbe Picquet Walking Trail,44.69581470000001,-75.5039017,"Ogdensburg, NY 13669, USA",Unknown,Unknown,Ogdensburg +Pop-up,44.6902072,-75.5049006,"207 Adams Ave, Ogdensburg, NY 13669, USA",(518) 774-1352,Unknown,Ogdensburg +Saint Lawrence Park,44.63336890000001,-75.5831077,"4911 NY-37, Ogdensburg, NY 13669, USA",Unknown,Unknown,Ogdensburg +Ogdensburg Recreation Director,44.698004,-75.49725699999999,"100 Riverside Ave, Ogdensburg, NY 13669, USA",(315) 393-1980,Unknown,Ogdensburg +Ogdensburg Lighthouse,44.6978004,-75.5034244,"Ogdensburg, NY 13669, USA",Unknown,Unknown,Ogdensburg +The Broadmoor Seven Falls,38.7814336,-104.879953,"1045 Lower Gold Camp Rd, Colorado Springs, CO 80905, USA",(855) 923-7272,https://www.sevenfalls.com/,Colorado Springs +Cheyenne Mountain Zoo,38.77053559999999,-104.8520371,"4250 Cheyenne Mountain Zoo Rd, Colorado Springs, CO 80906, USA",(719) 633-9925,http://www.cmzoo.org/,Colorado Springs +Cave of the Winds Mountain Park,38.87249189999999,-104.9203241,"100 Cave of the Winds Rd, Manitou Springs, CO 80829, USA",(719) 685-5444,https://caveofthewinds.com/,Colorado Springs +Ghost Town Museum,38.8404749,-104.8607719,"400 S 21st St, Colorado Springs, CO 80904, USA",(719) 634-0696,http://www.ghosttownmuseum.com/,Colorado Springs +Garden of the Gods,38.87179329999999,-104.8861757,"Colorado Springs, CO 80904, USA",(719) 634-6666,https://gardenofgods.com/,Colorado Springs +North Cheyenne Cañon Park,38.7909863,-104.8653081,"2120 S Cheyenne Canyon Rd, Colorado Springs, CO 80906, USA",(719) 385-6086,https://coloradosprings.gov/page/north-cheyenne-canon,Colorado Springs +Manitou Cliff Dwellings,38.8628747,-104.912272,"10 Cliff Rd, Manitou Springs, CO 80829, USA",(719) 685-5242,http://www.cliffdwellingsmuseum.com/,Colorado Springs +Will Rogers Shrine of the Sun,38.7720157,-104.8630502,"4250 Cheyenne Mountain Zoo Rd, Colorado Springs, CO 80906, USA",(719) 578-5367,https://www.elpomar.org/About-Us/museum-and-legacy-properties/will-rogers-shrine-of-the-sun/,Colorado Springs +Penrose Heritage Museum,38.7926733,-104.849918,"11 Lake Cir, Colorado Springs, CO 80906, USA",(719) 577-7065,https://www.elpomar.org/About-Us/museum-and-legacy-properties/penrose-heritage-museum-1/,Colorado Springs +Adventures Out West,38.820308,-104.8414033,"925 S 8th St, Colorado Springs, CO 80905, USA",(719) 578-0935,https://www.advoutwest.com/,Colorado Springs +Balanced Rock,38.86478599999999,-104.897416,"Garden Dr, Colorado Springs, CO 80904, USA",Unknown,Unknown,Colorado Springs +Miramont Castle Museum and The Queen's Parlour Tea Room,38.8592342,-104.9222607,"9 Capitol Hill Ave, Manitou Springs, CO 80829, USA",(719) 685-1011,http://www.miramontcastle.org/,Colorado Springs +Cheyenne Mountain State Park,38.7291548,-104.83288,"410 JL Ranch Heights Rd, Colorado Springs, CO 80926, USA",(719) 576-2016,https://cpw.state.co.us/placestogo/parks/CheyenneMountain,Colorado Springs +Magic Town,38.8469687,-104.8619341,"2418 W Colorado Ave, Colorado Springs, CO 80904, USA",(719) 471-1600,http://www.michaelgarman.com/,Colorado Springs +Kissing Camels,38.87988249999999,-104.8811977,"2336-3818 N 30th St, Colorado Springs, CO 80904, USA",Unknown,http://gardenofgods.com/,Colorado Springs +Western Museum of Mining & Industry,39.0255498,-104.8288667,"225 North Gate Blvd, Colorado Springs, CO 80921, USA",(719) 488-0880,http://www.wmmi.org/,Colorado Springs +Red Rock Canyon Open Space,38.8518656,-104.8784924,"3550 W High St, Colorado Springs, CO 80904, USA",(719) 385-5940,https://redrockcanyonopenspace.org/,Colorado Springs +Starsmore Visitor and Nature Center,38.7909594,-104.8652877,"2120 S Cheyenne Canyon Rd, Colorado Springs, CO 80906, USA",(719) 385-6086,https://coloradosprings.gov/Starsmore,Colorado Springs +America the Beautiful Park,38.8299432,-104.8321176,"Cimino Dr, Colorado Springs, CO 80903, USA",Unknown,Unknown,Colorado Springs +May Natural History Museum,38.70529070000001,-104.8406052,"710 Rock Creek Canyon Rd, Colorado Springs, CO 80926, USA",(719) 576-0450,http://www.coloradospringsbugmuseum.com/,Colorado Springs +Seattle Aquarium,47.60740020000001,-122.3429559,"1483 Alaskan Way Pier 59, Seattle, WA 98101, USA",(206) 386-4300,https://www.seattleaquarium.org/,Washington +Beneath the Streets,47.6028497,-122.3340931,"102 Cherry St, Seattle, WA 98104, USA",(206) 624-1237,http://www.beneath-the-streets.com/,Washington +The Gum Wall,47.6083607,-122.3403382,"1428 Post Alley, Seattle, WA 98101, USA",(206) 587-2414,https://unexpectedproductions.org/gumwall/,Washington +Wings Over Washington,47.6062079,-122.3420642,"1301 Alaskan Wy, Seattle, WA 98101, USA",(206) 602-1808,http://www.wingsoverwa.com/,Washington +Discovery Park,47.6613197,-122.4171413,"Seattle, WA 98199, USA",(206) 386-4236,https://www.seattle.gov/parks/allparks/discovery-park,Washington +Washington Park Arboretum,47.6364162,-122.2958146,"2300 Arboretum Dr E, Seattle, WA 98112, USA",(206) 543-8800,https://botanicgardens.uw.edu/washington-park-arboretum/,Washington +International Fountain,47.6225227,-122.3520323,"305 Harrison St, Seattle, WA 98109, USA",(206) 684-7200,https://www.seattlecenter.com/explore/attractions/international-fountain,Washington +Pier 55,47.604747,-122.339716,"1101 Alaskan Wy, Seattle, WA 98101, USA",(206) 623-1445,https://www.argosycruises.com/parking-directions/,Washington +The Seattle Great Wheel,47.6061342,-122.3425246,"1301 Alaskan Wy, Seattle, WA 98101, USA",(206) 623-8607,http://seattlegreatwheel.com/,Washington +Olympic Sculpture Park,47.6166028,-122.3553167,"2901 Western Ave, Seattle, WA 98121, USA",(206) 654-3100,https://www.seattleartmuseum.org/visit/olympic-sculpture-park/,Washington +Pier 56,47.6054427,-122.3402453,"1201 Alaskan Wy, Seattle, WA 98101, USA",(206) 623-4340,https://www.elliottsoysterhouse.com/,Washington +Kerry Park,47.6294692,-122.3599224,"211 W Highland Dr, Seattle, WA 98119, USA",(206) 684-4075,http://www.seattle.gov/parks/find/parks/kerry-park,Washington +Mount Rainier National Park,46.8799663,-121.7269094,"Washington, USA",(360) 569-2211,https://www.nps.gov/mora/index.htm,Washington +Space Needle,47.6205063,-122.3492774,"400 Broad St, Seattle, WA 98109, USA",(206) 905-2100,https://www.spaceneedle.com/,Washington +Olympic National Park,47.8021067,-123.6043524,"3002 Mt Angeles Rd, Port Angeles, WA 98362, USA",(360) 565-3130,http://www.nps.gov/olym/index.htm,Washington +Sky View Observatory - Columbia Center,47.6043639,-122.3310111,"700 4th Ave, Seattle, WA 98104, USA",(206) 386-5564,http://skyviewobservatory.com/,Washington +Smith Tower,47.6018528,-122.3318583,"506 2nd Ave, Seattle, WA 98104, USA",(206) 624-0414,http://www.smithtower.com/,Washington +Chihuly Garden and Glass,47.6205599,-122.3504476,"305 Harrison St, Seattle, WA 98109, USA",(206) 753-4940,https://www.chihulygardenandglass.com/,Washington +Chief Seattle Fountain,47.6020167,-122.3338667,"100 Yesler Wy, Seattle, WA 98104, USA",(206) 684-0464,http://www.waymarking.com/waymarks/WM34K4_Chief_Seattle_Pioneer_Square_Seattle_WA,Washington +Original Selfie Museum | Seattle,47.6078031,-122.3397721,"92 Union St, Seattle, WA 98101, USA",(206) 487-4500,https://originalselfiemuseum.com/,Washington +The Frontier Museum,48.203693,-103.624705,"6330 1st Ave W, Williston, ND 58801, USA",(701) 580-2415,https://www.thefrontiermuseum.org/,Williston +Spring Lake Park,48.2018042,-103.618575,"5906 2nd Ave W, Williston, ND 58801, USA",(701) 774-9773,http://www.willistonparks.com/,Williston +Moose Park,48.1665403,-103.6118312,"7th Ave. E &, 24th St E, Williston, ND 58801, USA",(701) 774-9773,Unknown,Williston +Railroad Park,48.1432862,-103.6205423,"S Main St, Williston, ND 58801, USA",(701) 774-9773,http://www.willistonparks.com/parks,Williston +Cut Bluff Overlook,48.1249125,-103.5615183,"Williston, ND 58801, USA",Unknown,http://www.visitwilliston.com/thingstodo/Attractions/,Williston +Western Star Complex,48.1594034,-103.6501259,"1600 19th Ave W, Williston, ND 58801, USA",(701) 774-9773,http://www.willistonparks.com/parks,Williston +Pheasant Run Park,48.1702745,-103.6501282,"1800 28th St W, Williston, ND 58801, USA",Unknown,Unknown,Williston +Harmon Park,48.155226,-103.6245524,"1215 Main St, Williston, ND 58801, USA",(701) 774-9773,http://www.willistonparks.com/,Williston +Dakota Park,48.1671024,-103.646609,"Williston, ND 58801, USA",(701) 774-9773,Unknown,Williston +Westlawn Park,48.1507397,-103.6341245,"Williston, ND 58801, USA",(701) 774-9773,Unknown,Williston +Fort Union Trading Post National Historic Site,47.9992646,-104.0405613,"15550 ND-1804, Williston, ND 58801, USA",(701) 572-9083,http://www.nps.gov/fous,Williston +Safari Trampoline Park,48.1695022,-103.6695709,"3206 26th St W, Williston, ND 58801, USA",(701) 572-2222,https://www.safaritrampoline.com/,Williston +Cote Park,48.1793932,-103.6737415,"3700 37th St W, Williston, ND 58801, USA",(701) 572-9272,https://www.willistonparks.com/,Williston +Williston Parks & Recreation,48.1546597,-103.6384258,"1002 11th St W, Williston, ND 58801, USA",(701) 577-5141,https://www.willistonparks.com/,Williston +Williston 3,48.1834871,-103.6334651,"700 42nd St W, Williston, ND 58801, USA",Unknown,Unknown,Williston +Recreation Park,48.1473406,-103.6263289,"209 4th St W, Williston, ND 58801, USA",(515) 802-0948,Unknown,Williston +East Lawn Park,48.14832639999999,-103.6124461,"409 7th Ave E, Williston, ND 58801, USA",Unknown,Unknown,Williston +Williston Park District Shop,48.1490002,-103.6083579,"912 5th St E, Williston, ND 58801, USA",(701) 577-6542,Unknown,Williston +Williston Convention and Visitor Bureau,48.1761926,-103.6270886,"212 34th St W, Williston, ND 58801, USA",(701) 774-9041,http://www.visitwilliston.com/,Williston +Fort Buford State Historic Site,47.987658,-104.000413,"15349 39th Ln NW, Williston, ND 58801, USA",(701) 572-9034,http://www.history.nd.gov/historicsites/buford,Williston +Center of the Universe,36.1568986,-95.9915366,"1 S Boston Ave, Tulsa, OK 74103, USA",Unknown,Unknown,Tulsa +Philbrook Museum of Art,36.12385489999999,-95.9700944,"2727 S Rockford Rd, Tulsa, OK 74114, USA",(918) 748-5300,http://www.philbrook.org/,Tulsa +Gathering Place,36.1251603,-95.9840207,"2650 S John Williams Way, Tulsa, OK 74114, USA",(918) 779-1000,https://www.gatheringplace.org/,Tulsa +Tulsa Air and Space Museum & Planetarium,36.2067509,-95.8957281,"3624 N 74th E Ave, Tulsa, OK 74115, USA",(918) 834-9900,https://www.tulsamuseum.org/,Tulsa +Tulsa Zoo,36.2130153,-95.9064904,"6421 E 36th St N, Tulsa, OK 74115, USA",(918) 669-6600,http://www.tulsazoo.org/,Tulsa +The Cave House - Linda Collier,36.1517261,-96.0112601,"1623 Charles Page Blvd, Tulsa, OK 74127, USA",(918) 378-1952,http://cavehousetulsa.com/,Tulsa +The Tulsa Arts District,36.1589262,-95.9918339,"street name was changed years ago, E Mathew Brady St, Tulsa, OK 74103, USA",Unknown,http://thetulsaartsdistrict.org/,Tulsa +Tulsa Botanic Garden,36.2068298,-96.0621449,"3900 Tulsa Botanic Dr, Tulsa, OK 74127, USA",(918) 289-0330,https://www.tulsabotanic.org/,Tulsa +Tours of Tulsa,36.1003128,-95.9693584,"4318 S Trenton Ave, Tulsa, OK 74105, USA",(918) 625-4909,http://toursoftulsa.com/,Tulsa +Route 66 Historical Village,36.1083018,-96.0161972,"3770 Southwest Blvd, Tulsa, OK 74107, USA",(918) 619-9473,http://route66village.com/,Tulsa +Woodward Park and Gardens,36.13192470000001,-95.9736606,"2435 S Peoria Ave, Tulsa, OK 74114, USA",(918) 576-5155,https://www.tulsagardencenter.org/,Tulsa +Golden Driller Statue,36.1337734,-95.9311081,"Tulsa Expo Center, 4145 E 21st St, Tulsa, OK 74114, USA",(918) 596-2100,http://exposquare.com/,Tulsa +Oxley Nature Center,36.2234573,-95.9030304,"6700 Mohawk Blvd, Tulsa, OK 74115, USA",(918) 596-9054,http://www.oxleynaturecenter.org/,Tulsa +Gilcrease Museum,36.1742658,-96.0210402,"1400 N Gilcrease Museum Rd, Tulsa, OK 74127, USA",(918) 596-2700,http://gilcrease.org/,Tulsa +Guthrie Green,36.1597162,-95.9920028,"111 Reconciliation Way, Tulsa, OK 74103, USA",(918) 574-2421,http://www.guthriegreen.com/,Tulsa +River West Festival Park,36.1341662,-95.99905,"2100 S Jackson Ave, Tulsa, OK 74107, USA",(918) 596-2001,http://www.riverparks.org/,Tulsa +OkieTundra,36.101922,-96.0267763,"U.S. Rt. 66, Tulsa, OK 73059, USA",Unknown,Unknown,Tulsa +The Outsiders House Museum,36.16547749999999,-95.9703084,"731 N St Louis Ave, Tulsa, OK 74106, USA",Unknown,https://www.theoutsidershouse.com/,Tulsa +The Sherwin Miller Museum of Jewish Art,36.0620308,-95.9635391,"2021 E 71st St, Tulsa, OK 74136, USA",(918) 492-1818,http://www.jewishmuseumtulsa.org/,Tulsa +Discovery Lab,36.1180586,-95.9841454,"3123 Riverside Dr, Tulsa, OK 74105, USA",(918) 295-8144,https://discoverylab.org/,Tulsa +Lake Region Heritage Center,48.1115577,-98.8585154,"502 4th St NE, Devils Lake, ND 58301, USA",(701) 662-3701,http://lrhcmuseum.com/,Devils Lake +Ruger Park,48.1208861,-98.8516124,"Devils Lake, ND 58301, USA",(701) 662-8243,Unknown,Devils Lake +Roosevelt Park,48.11312369999999,-98.8710833,"Devils Lake, ND 58301, USA",(701) 662-8243,http://www.dlparkboard.org/,Devils Lake +Sheriff's House Museum,48.1135713,-98.8593807,"416 6th St NE, Devils Lake, ND 58301, USA",(701) 662-7080,Unknown,Devils Lake +Devils Lake State Parks,48.0478062,-99.0599281,"152 S Duncan Rd, Devils Lake, ND 58301, USA",(701) 766-4015,https://www.parkrec.nd.gov/grahams-island-state-park,Devils Lake +Devil's Lake Parks and Recreation,48.12503640000001,-98.8705919,"Devils Lake, ND 58301, USA",(701) 662-8243,http://www.dlparkboard.org/,Devils Lake +Roundhouse Park,48.1191204,-98.8723796,"1009 Roundhouse Park Dr NW, Devils Lake, ND 58301, USA",(701) 662-8243,Unknown,Devils Lake +Ruger Dog Park,48.12180659999999,-98.8568883,"501 14th St NE, Devils Lake, ND 58301, USA",(701) 662-8243,http://dlparkboard.org/facilities.htm,Devils Lake +Pikes Playground,48.085642,-98.8437069,"Devils Lake, ND 58301, USA",Unknown,Unknown,Devils Lake +Ziegler Waterfowl Production Area-Ramsey County,48.16218360000001,-98.8921971,"Devils Lake, ND 58301, USA",Unknown,Unknown,Devils Lake +Railroad Waterfowl Production Area,48.1304578,-98.7056131,"Devils Lake, ND 58301, USA",Unknown,Unknown,Devils Lake +Ice fishing North Dakota devils lake,48.04522069999999,-98.7462199,"4355 87th Ave NE, Devils Lake, ND 58301, USA",Unknown,Unknown,Devils Lake +Greer Heritage Museum,34.93817689999999,-82.22805660000002,"106 S Main St, Greer, SC 29650, USA",(864) 877-3377,https://www.greerheritage.com/,Greer +Greer City Park,34.9382033,-82.2232338,"301 E Poinsett St, Greer, SC 29651, USA",(864) 848-2190,http://www.cityofgreer.org/,Greer +J. Verne Smith Park (Lake Robinson),34.9931264,-82.2958185,"2544 Mays Bridge Rd, Greer, SC 29651, USA",(864) 895-3645,https://www.greercpw.com/lakes-recreation,Greer +Century Park,34.9301694,-82.24024059999999,"3605 Brushy Creek Rd, Greer, SC 29650, USA",(864) 848-2190,Unknown,Greer +GSP- Overlook,34.9030472,-82.21898510000001,"1525 County Rd 136, Greer, SC 29651, USA",Unknown,Unknown,Greer +Gilreath's Mill,34.9730586,-82.2783709,"N Hwy 101, Greer, SC 29651, USA",Unknown,http://www.nationalregister.sc.gov/greenville/S10817723009/index.htm,Greer +Pelham Mill Park,34.8567654,-82.2267488,"2770 E Phillips Rd, Greenville, SC 29615, USA",Unknown,http://greenvillerec.com/parks/3/pelham-mill,Greer +Lindsey's Christmas House,34.9293733,-82.223362,"107 Rotan St, Greer, SC 29651, USA",Unknown,Unknown,Greer +East Riverside Park,34.9059533,-82.2617247,"1155 S Suber Rd, Greer, SC 29650, USA",(864) 288-6470,http://greenvillerec.com/parks/east-riverside/,Greer +Veterans Park,34.9317398,-82.2215423,"50 17th St, Greer, SC 29651, USA",(864) 848-2190,Unknown,Greer +Muskegon State Park,43.2475206,-86.34150050000001,"North Loop, Muskegon, MI, USA",(231) 744-3480,http://www.michigandnr.com/parksandtrails/Details.aspx?type=SPRK&id=475,Muskegon +Muskegon Museum of Art,43.23441219999999,-86.25091689999999,"296 W Webster Ave, Muskegon, MI 49440, USA",(231) 720-2570,http://www.muskegonartmuseum.org/,Muskegon +Muskegon Museum of History & Science of the Lakeshore Museum Center,43.2337948,-86.2542385,"430 W Clay Ave, Muskegon, MI 49440, USA",(231) 722-0278,http://www.lakeshoremuseum.org/,Muskegon +Pere Marquette Park,43.2238321,-86.3363495,"3510 Channel Dr, Muskegon, MI 49441, USA",(231) 724-4100,https://muskegon-mi.gov/waterfront-parks/pere-marquette/,Muskegon +Muskegon Heritage Museum of Business & Industry,43.2329316,-86.2567359,"561 W Western Ave, Muskegon, MI 49440, USA",(231) 722-1363,http://www.muskegonheritage.org/,Muskegon +Hackley & Hume Historic Site,43.2316894,-86.2554863,"484 W Webster Ave, Muskegon, MI 49440, USA",(231) 722-0278,http://www.lakeshoremuseum.org/,Muskegon +Fire Barn Museum,43.2326218,-86.25599439999999,"510 W Clay Ave, Muskegon, MI 49440, USA",(231) 722-7578,http://lakeshoremuseum.org/,Muskegon +USS Silversides Submarine Museum,43.2297288,-86.3323896,"1346 Bluff St, Muskegon, MI 49441, USA",(231) 755-1230,http://www.silversidesmuseum.org/,Muskegon +Kruse Park,43.20719940000001,-86.321613,"3205 W Sherman Blvd, Muskegon, MI 49441, USA",(231) 724-4100,https://muskegon-mi.gov/waterfront-parks/kruse/,Muskegon +Michigan's Adventure,43.3416799,-86.2704809,"4750 Whitehall Rd, Muskegon, MI 49445, USA",(231) 766-9959,http://www.miadventure.com/,Muskegon +Hackley Park,43.2337427,-86.2525624,"350 W Webster Ave, Muskegon, MI 49440, USA",Unknown,http://www.muskegon-mi.gov/departments/parks/hackley-park/,Muskegon +The Monet Garden Of Muskegon,43.2331228,-86.2548375,"Muskegon, MI 49440, USA",(231) 724-6977,https://www.facebook.com/Monet-Garden-of-MuskegonMI-117791008268146,Muskegon +Muskegon South Pierhead Lighthouse,43.2266092,-86.3413329,"1431 Beach St, Muskegon, MI 49441, USA",(844) 654-4487,http://www.muskegonlights.org/,Muskegon +Scolnik House Of The Depression Era,43.23269200000001,-86.2558432,"504 W Clay Ave, Muskegon, MI 49440, USA",(231) 722-7578,https://lakeshoremuseum.org/project/scolnik-house-of-the-depression-era/,Muskegon +P. J. Hoffmaster State Park,43.13289510000001,-86.2654037,"6585 Lake Harbor Rd, Norton Shores, MI 49441, USA",(231) 798-3711,http://www.michigandnr.com/parksandtrails/Details.aspx?type=SPRK&id=457,Muskegon +Heritage Landing,43.2323387,-86.2606345,"No mi meta mmm, 1050 7th St, Muskegon, MI 49440, USA",(231) 724-1105,https://muskegon-mi.gov/waterfront-parks/heritage-landing/,Muskegon +Muskegon Railroad Historical Society,43.24488029999999,-86.1846966,"2371 Marquette Ave, Muskegon, MI 49442, USA",Unknown,http://mrhsonline.org/,Muskegon +S.S. Milwaukee Clipper,43.2216955,-86.29587389999999,"2098 Lakeshore Dr, Muskegon, MI 49441, USA",(231) 299-0784,http://milwaukeeclipper.com/,Muskegon +Muskegon Channel,43.2284434,-86.3383897,"Muskegon, MI 49440, USA",Unknown,Unknown,Muskegon +Muskegon Lake Nature Preserve,43.2648158,-86.2511887,"2529 Lake Ave, North Muskegon, MI 49445, USA",(517) 648-3034,http://www.muskegonlakenaturepreserve.com/,Muskegon +Hibbing Historical Society,47.4236173,-92.9372237,"400 E 23rd St, Hibbing, MN 55746, USA",(218) 263-8522,Unknown,Hibbing +Bennett Park,47.4342108,-92.9367067,"520 E 13th St, Hibbing, MN 55746, USA",(218) 362-5955,Unknown,Hibbing +Greyhound Bus Museum,47.4383722,-92.9395778,"1201 Greyhound Blvd, Hibbing, MN 55746, USA",(218) 263-5814,http://www.greyhoundbusmuseum.org/,Hibbing +Bob Dylan Nobel Prize tribute,47.4248042,-92.9320166,"800 E 21st St, Hibbing, MN 55746, USA",Unknown,Unknown,Hibbing +Maple Hill Park,47.38088339999999,-92.9550555,"3674 Maple Hill Rd, Hibbing, MN 55746, USA",Unknown,Unknown,Hibbing +Ryan’s Memorial Park,47.42241189999999,-92.928821,"2402 11th Ave E, Hibbing, MN 55746, USA",Unknown,Unknown,Hibbing +Minnesota Museum of Mining,47.4893514,-92.8914036,"701 W Lake St, Chisholm, MN 55719, USA",(218) 254-5543,http://www.mnmuseumofmining.org/,Hibbing +Bowers Museum,33.7634055,-117.8681454,"2002 N Main St, Santa Ana, CA 92706, USA",(714) 567-3600,http://www.bowers.org/,Santa Ana +Santa Ana Zoo,33.7435545,-117.8424885,"1801 E Chestnut Ave, Santa Ana, CA 92701, USA",(714) 647-6575,http://www.santaanazoo.org/,Santa Ana +Heritage Museum of Orange County,33.7207429,-117.9106923,"3101 W Harvard St, Santa Ana, CA 92704, USA",(714) 540-0404,http://heritagemuseumoc.org/,Santa Ana +Discovery Science Center,33.7702538,-117.8678641,"2500 N Main St, Santa Ana, CA 92705, USA",(714) 542-2823,https://www.discoverycube.org/,Santa Ana +Downtown Santa Ana Historic District,33.7476661,-117.8667056,"Santa Ana, CA 92701, USA",Unknown,http://www.downtown-santaana.com/,Santa Ana +Santiago Park - City of Santa Ana,33.7733764,-117.8609095,"600 E Memory Ln, Santa Ana, CA 92705, USA",(714) 647-6902,https://www.santa-ana.org/santiago-park/,Santa Ana +The Dr. Willella Howe-Waffle House and Medical Museum,33.7504322,-117.8684323,"120 W Civic Center Dr, Santa Ana, CA 92701, USA",(714) 547-9645,https://www.santaanahistory.com/drhowewafflemuseum,Santa Ana +Old Orange County Courthouse,33.7501714,-117.8692094,"211 W Santa Ana Blvd, Santa Ana, CA 92701, USA",(714) 973-6605,http://www.ocparks.com/oldcourthouse/,Santa Ana +Memorial Park,33.7191465,-117.8783938,"2102 S Flower St, Santa Ana, CA 92707, USA",(714) 571-4242,https://www.santa-ana.org/memorial-park/,Santa Ana +Southern Counties Gas Co.,33.7464902,-117.8690602,"207 W 2nd St, Santa Ana, CA 92701, USA",Unknown,Unknown,Santa Ana +El Salvador Park,33.75269539999999,-117.8945382,"1825 W Civic Center Dr, Santa Ana, CA 92703, USA",(714) 571-4258,https://www.santa-ana.org/parks/parks-location/el-salvador-center,Santa Ana +Lyon Air Museum,33.6735613,-117.8733916,"19300 Ike Jones Rd, Santa Ana, CA 92707, USA",(714) 210-4585,http://www.lyonairmuseum.org/,Santa Ana +Carl Thornton Park,33.7092252,-117.8922022,"1801 W Segerstrom Ave, Santa Ana, CA 92704, USA",(714) 571-4200,https://www.santa-ana.org/thornton-park/,Santa Ana +Marconi Automotive Museum,33.7209722,-117.8311861,"1302 Industrial Dr, Tustin, CA 92780, USA",(714) 258-3001,http://www.marconimuseum.org/,Santa Ana +Bomo Koral Park,33.6984801,-117.8795611,"900 W MacArthur Blvd, Santa Ana, CA 92707, USA",Unknown,Unknown,Santa Ana +Hilbert Museum of California Art,33.78765879999999,-117.8515419,"216 E Chapman Ave, Orange, CA 92866, USA",(714) 516-5880,http://www.hilbertmuseum.org/,Santa Ana +George Upton All Access Park,33.7109,-117.8924847,"S Linda Way, Santa Ana, CA 92704, USA",(714) 547-3361,Unknown,Santa Ana +Cesar Chavez Campesino Park,33.7497247,-117.9129466,"3311 W 5th St, Santa Ana, CA 92703, USA",(714) 571-4200,https://www.santa-ana.org/cesar-chavez-campesino-park/,Santa Ana +Adventure City,33.81526180000001,-117.992279,"1238 S Beach Blvd, Anaheim, CA 90680, USA",(714) 236-9300,http://www.adventurecity.com/,Santa Ana +Noguchi Garden,33.6890595,-117.8822393,"611 Anton Blvd, Costa Mesa, CA 92626, USA",Unknown,Unknown,Santa Ana +Museo Castillo Serrallés,18.0187269,-66.6193047,"Sector El Vigia, P.º De La Cruceta, Ponce, 00730, Puerto Rico",(787) 259-1774,http://www.museocastilloserralles.com/,Ponce +La Guancha,17.9659567,-66.61255229999999,"X98P+9XP, Calle B, Ponce, 00716, Puerto Rico",Unknown,https://www.laguancha.net/,Ponce +Parque de Bombas,18.0119047,-66.6137251,"296P+QG6 Plaza Las Delicias, Ponce, 00731, Puerto Rico",(787) 840-1045,Unknown,Ponce +Hacienda Buena Vista - Para la Naturaleza,18.083394,-66.65403599999999,"Km 17.3, PR-123, Ponce, 00731, Puerto Rico",(787) 722-5882,https://www.paralanaturaleza.org/hacienda-buena-vista/,Ponce +Letras de Ponce,18.0251857,-66.5703936,"2CGH+3RH, Autop. Luis A. Ferré, Ponce, 00715, Puerto Rico",Unknown,http://ponce.com/las-letras-de-ponce/,Ponce +Centro Cultural de Ponce Carmen Solá de Pereira,18.011912,-66.61251770000001,"70 C. Cristina, Ponce, 00730, Puerto Rico",(787) 607-5112,Unknown,Ponce +Plaza Luis Muñoz Rivera,18.012198,-66.61404759999999,"C. Reina Isabel, Ponce, 00730, Puerto Rico",(787) 298-6026,Unknown,Ponce +Museo de Arte de Ponce,18.0042388,-66.6169262,"2325 Las Américas Ave, Ponce, 00717, Puerto Rico",(787) 840-1510,https://museoarteponce.org/,Ponce +Casa Paoli,18.0079853,-66.61332060000001,"2548 Calle Mayor, Ponce, 00717, Puerto Rico",(939) 640-1584,http://www.casapaolipr.com/,Ponce +Parque Urbano Dora Colón Clavell,18.0081636,-66.6141104,"295P+796, Calle Concordia, Calle Jobos Y Calle Marina, Ponce, 00717, Puerto Rico",(787) 284-4142,http://www.travelponce.com/Dora-Colon-Clavell.html,Ponce +La Fuente del León,17.9660039,-66.6135252,"X98P+CH5, Ponce, 00716, Puerto Rico",Unknown,Unknown,Ponce +Jardín Japonés,18.0197433,-66.6203484,"35-43 P.º De La Cruceta, Ponce, 00730, Puerto Rico",(787) 259-1774,Unknown,Ponce +Centro Ceremonial Indígena de Tibes,18.0412482,-66.6207558,"PR-503 km 2.2, Ponce, 00733, Puerto Rico",(787) 840-5685,https://www.facebook.com/centroceremonialindigenadetibes-oficial/,Ponce +Museo de la Historia de Ponce,18.0125593,-66.6118455,"Calle Isabel, Ponce, 00716, Puerto Rico",(787) 844-7071,https://www.facebook.com/Museo-de-la-Historia-de-Ponce-171004846323610/,Ponce +Panteón Nacional Román Baldorioty de Castro,18.0162804,-66.6178316,"15 Calle Frontispicio, Ponce, 00730, Puerto Rico",(787) 284-4141 ext. 456,Unknown,Ponce +Faro de Caja de Muertos / Lighthouse,17.893155,-66.52117439999999,"Unnamed Rd, VFVH+7G8, Ponce, Puerto Rico",Unknown,Unknown,Ponce +Puente hamaca,18.0435042,-66.64516069999999,"29V3+CW4, Ponce, 00728, Puerto Rico",Unknown,Unknown,Ponce +Torre de Observación de la Guancha,17.9639573,-66.61381759999999,"X97P+HFM, Ponce, 00716, Puerto Rico",Unknown,Unknown,Ponce +Monumento a los Héroes de El Polvorín,18.0113161,-66.61373250000001,"296P+GGC, Segundo, Ponce 00730, Puerto Rico",(787) 319-3978,Unknown,Ponce +Tibes Indigenous Ceremonial Park,18.0438485,-66.6228552,"29VG+GVJ, PR-503, Ponce, 00731, Puerto Rico",(787) 840-5685,Unknown,Ponce +Sharlot Hall Museum,34.541729,-112.4731796,"415 W Gurley St, Prescott, AZ 86301, USA",(928) 445-3122,https://www.sharlothallmuseum.org/,Prescott +Heritage Park Zoological Sanctuary,34.6124929,-112.4447931,"1403 Heritage Park Rd, Prescott, AZ 86301, USA",(928) 778-4242,http://www.heritageparkzoo.org/,Prescott +Phippen Museum,34.62337359999999,-112.4255504,"4701 AZ-89, Prescott, AZ 86301, USA",(928) 778-1385,http://www.phippenartmuseum.org/,Prescott +A Haunting Experience Tours,34.5419033,-112.4701258,"201 W Gurley St, Prescott, AZ 86301, USA",(928) 642-5074,http://ahauntingexperiencetours.com/,Prescott +Willow Lake Park,34.61452939999999,-112.4415096,"1497 Heritage Park Rd, Prescott, AZ 86301, USA",(928) 777-1552,http://www.prescott-az.gov/recreation-area/willow-lake-park/,Prescott +Prescott Western Heritage Center,34.5403813,-112.470316,"156 S Montezuma St, Prescott, AZ 86303, USA",(928) 910-2307,https://www.visitwhc.org/,Prescott +Museum of Indigenous People,34.5435313,-112.4589946,"147 N Arizona Ave, Prescott, AZ 86301, USA",(928) 445-1230,https://www.museumofindigenouspeople.org/,Prescott +Heritage Park,34.61373680000001,-112.4408503,"1497 Heritage Park Rd, Prescott, AZ 86301, USA",(928) 708-0795,http://www.heritageparkzoo.org/,Prescott +Dragon Fly Cove,34.5881241,-112.4145364,"Peavine Trail (Prescott Peavine Trail), Prescott, AZ 86301, USA",Unknown,Unknown,Prescott +Prescott Arizona Mural,34.541648,-112.4708799,"150 S Montezuma St, Prescott, AZ 86303, USA",Unknown,Unknown,Prescott +Constellation Trail,34.6232118,-112.4266925,"5761 AZ-89, Prescott, AZ 86301, USA",Unknown,Unknown,Prescott +Puzzle Rides Prescott,34.5412182,-112.4713679,"Historic Downtown, 135 S Granite St, Prescott, AZ 86303, USA",(602) 601-2261,http://www.puzzlerides.com/,Prescott +Horse Statue,34.5401896,-112.4694567,"Prescott, AZ 86303, USA",(908) 481-8871,Unknown,Prescott +Watson Lake Park,34.5915481,-112.421599,"3101 Watson Lake Park Rd, Prescott, AZ 86301, USA",(928) 777-1122,http://www.prescott-az.gov/recreation-area/watson-lake-park/,Prescott +Watson Woods Riparian Preserve,34.5752998,-112.4312372,"1626 Sundog Ranch Rd, Prescott, AZ 86301, USA",(928) 445-5669,https://prescottcreeks.org/programs/watson-woods/,Prescott +A.C. Williams Granite Creek Park,34.548429,-112.468248,"554 6th St, Prescott, AZ 86301, USA",Unknown,Unknown,Prescott +James S. Acker Park,34.5358148,-112.459614,"421 S Virginia St, Prescott, AZ 86303, USA",(928) 777-1100,http://www.prescott-az.gov/recreation-area/acker-park/,Prescott +Highlands Center for Natural History,34.52417399999999,-112.3930991,"1375 S Walker Rd, Prescott, AZ 86303, USA",(928) 776-9550,https://highlandscenter.org/,Prescott +Community Nature Center,34.5748262,-112.495804,"1981 Williamson Valley Rd, Prescott, AZ 86305, USA",(928) 777-1121,http://www.prescott-az.gov/recreation-area/community-nature-center/,Prescott +Fort Whipple Museum,34.5538766,-112.45247,"500 AZ-89, Prescott, AZ 86301, USA",(928) 445-3122,https://www.sharlothallmuseum.org/venue/fort-whipple-museum/,Prescott +The Children's Museum of Indianapolis,39.81061319999999,-86.1578917,"3000 N Meridian St, Indianapolis, IN 46208, USA",(317) 334-4000,https://www.childrensmuseum.org/,Indianapolis +White River State Park,39.7665464,-86.17078579999999,"801 W Washington St, Indianapolis, IN 46204, USA",(317) 233-2434,https://www.whiteriverstatepark.org/,Indianapolis +Indiana State Museum,39.76839189999999,-86.1695013,"650 W Washington St, Indianapolis, IN 46204, USA",(317) 232-1637,http://www.indianamuseum.org/,Indianapolis +Indianapolis Zoo,39.76678709999999,-86.1770481,"1200 W Washington St, Indianapolis, IN 46222, USA",(317) 630-2001,http://www.indianapoliszoo.com/,Indianapolis +Catacombs,39.7687329,-86.1534198,"222 E Market St, Indianapolis, IN 46204, USA",(317) 639-4534,https://www.indianalandmarks.org/tours-events/ongoing-tours-events/city-market-catacombs-tour/,Indianapolis +Eiteljorg Museum,39.76857539999999,-86.16779149999999,"500 W Washington St, Indianapolis, IN 46204, USA",(317) 636-9378,http://www.eiteljorg.org/,Indianapolis +Eagle Creek Park,39.873789,-86.29620299999999,"7840 W 56th St, Indianapolis, IN 46254, USA",(317) 327-7110,https://www.indy.gov/activity/about-eagle-creek-park,Indianapolis +Newfields,39.82596059999999,-86.1856632,"4000 N Michigan Rd, Indianapolis, IN 46208, USA",(317) 923-1331,https://www.discovernewfields.org/,Indianapolis +Indianapolis Motor Speedway Museum,39.79031459999999,-86.23366109999999,"4750 W 16th St, Indianapolis, IN 46222, USA",(317) 492-6784,https://imsmuseum.org/,Indianapolis +Oldfields–Lilly House & Gardens,39.8283758,-86.1854796,"4000 N Michigan Rd, Indianapolis, IN 46208, USA",(317) 923-1331,http://www.imamuseum.org/visit/oldfields-lilly-house-gardens/lilly-house,Indianapolis +Benjamin Harrison Presidential Site,39.78407199999999,-86.154487,"1230 N Delaware St, Indianapolis, IN 46202, USA",(317) 631-1888,http://www.presidentbenjaminharrison.org/,Indianapolis +Indiana War Memorial & Museum,39.7733607,-86.15695079999999,"55 E Michigan St, Indianapolis, IN 46204, USA",(317) 232-7615,https://www.indianawarmemorials.org/,Indianapolis +Central Canal,39.7693459,-86.1662996,"Canal Walk, Indianapolis, IN 46204, USA",Unknown,Unknown,Indianapolis +Holliday Park,39.8708933,-86.1634943,"6363 Spring Mill Rd, Indianapolis, IN 46260, USA",(317) 327-7180,https://www.hollidaypark.org/,Indianapolis +Military Park,39.77059,-86.1687006,"601 W New York St, Indianapolis, IN 46204, USA",(317) 233-2434,https://www.whiteriverstatepark.org/,Indianapolis +Central Canal,39.7674579,-86.1704647,"Indianapolis, IN 46204, USA",Unknown,Unknown,Indianapolis +Indiana Medical History Museum,39.7698864,-86.2133001,"3270 Kirkbride Way, Indianapolis, IN 46222, USA",(317) 635-7329,http://www.imhm.org/,Indianapolis +Veal's Ice Tree,39.67615,-85.96344649999999,"6445 Mimosa Ln, Indianapolis, IN 46259, USA",Unknown,http://vealsicetree.wixsite.com/vealsicetree,Indianapolis +The Escape Room Indianapolis,39.7641465,-86.1583957,"200 S Meridian St STE 220, Indianapolis, IN 46225, USA",(317) 986-6542,https://www.escaperoomusa.com/indy/,Indianapolis +Virginia B. Fairbanks Art & Nature Park,39.825996,-86.1894275,"1850 W 38th St, Indianapolis, IN 46228, USA",(317) 923-1331,https://discovernewfields.org/do-and-see/places-to-go/virginia-b-fairbanks-art-nature-park-100-acres,Indianapolis +Smokey Bear Park,48.6033189,-93.4101827,"214 6th Ave #2336, International Falls, MN 56649, USA",Unknown,Unknown,International Falls +Rainy Lake Visitor Center,48.5847246,-93.1611377,"1797 Ut - 342, International Falls, MN 56649, USA",(218) 286-5258,http://www.nps.gov/voya/planyourvisit/visitorcenters.htm,International Falls +Dinosaur Park,44.07806189999999,-103.2458739,"940 Skyline Dr, Rapid City, SD 57701, USA",(605) 343-8687,http://www.rcgov.org/departments/parks-recreation/parks-recreation-department-78.html,Rapid City +Reptile Gardens,43.9909702,-103.2720165,"8955 US-16, Rapid City, SD 57702, USA",(800) 335-0275,http://www.reptilegardens.com/,Rapid City +The Journey Museum & Learning Center,44.0865361,-103.2186319,"222 New York St, Rapid City, SD 57701, USA",(605) 394-6923,http://www.journeymuseum.org/,Rapid City +Museum of Geology,44.073751,-103.2060334,"O'Harra Building, 561 E St Joseph St, Rapid City, SD 57701, USA",(605) 394-2467,http://museum.sdsmt.edu/,Rapid City +Bear Country USA,43.9753738,-103.2968942,"13820 US-16, Rapid City, SD 57702, USA",(605) 343-2290,http://www.bearcountryusa.com/,Rapid City +Buffalo Hunt Coaster,44.00076299999999,-103.2557831,"2255 Fort Hayes Dr, Rapid City, SD 57702, USA",(605) 791-5374,https://mountrushmoretours.com/mount-rushmore-sightseeing-tours/buffalo-hunt/?utm_source=Google&utm_medium=MapsProfile&utm_campaign=gmaps,Rapid City +WaTiki® Indoor Waterpark Resort,44.09866859999999,-103.1480536,"1314 N Elk Vale Rd, Rapid City, SD 57703, USA",(605) 718-2445,http://www.watikiwaterpark.com/,Rapid City +President William Howard Taft Statue,44.08155259999999,-103.2305723,"727 Main St, Rapid City, SD 57701, USA",Unknown,https://www.visitrapidcity.com/things-to-do/all-things/attractions/city-presidents,Rapid City +Memorial Park,44.084061,-103.2271567,"600-684 Omaha St, Rapid City, SD 57701, USA",(605) 394-9300,Unknown,Rapid City +Dinosaur Museum,43.989073,-103.273093,"8973 US-16, Rapid City, SD 57702, USA",(605) 342-8140,http://blackhillsdinosaurmuseum.com/index.html,Rapid City +Founders Park,44.0846113,-103.242718,"1510 W Omaha St, Rapid City, SD 57701, USA",(605) 394-4175,https://www.visitrapidcity.com/things-to-do/tours-historic-districts/founders-park,Rapid City +Berlin Wall,44.0860165,-103.2277805,"206 N 8th St #100, Rapid City, SD 57701, USA",(800) 487-3223,Unknown,Rapid City +Black Hills Escape Rooms,44.08129909999999,-103.229428,"705 Main St, Rapid City, SD 57701, USA",(605) 731-8050,http://blackhillsescaperooms.com/,Rapid City +Art Alley,44.0806915,-103.2280663,"599 7th St, Rapid City, SD 57701, USA",(806) 893-4592,https://www.artalleyrc.com/,Rapid City +President Barack Obama Statue,44.07933320000001,-103.2237863,"405 St Joseph St, Rapid City, SD 57701, USA",Unknown,https://www.visitrapidcity.com/things-to-do/all-things/attractions/city-presidents,Rapid City +Black Hills Caverns,44.060171,-103.355983,"2600 Cavern Rd, Rapid City, SD 57702, USA",(605) 343-0542,http://www.blackhillscaverns.com/,Rapid City +Old MacDonald's Farm,43.971793,-103.327866,"23691 Busted Five Ct, Rapid City, SD 57702, USA",(605) 737-4815,http://www.oldmacdonaldsfarmrc.com/,Rapid City +Canyon Lake Park,44.059886,-103.2872664,"3P67+329, 4181 Jackson Blvd, Rapid City, SD 57702, USA",(605) 394-4175,http://www.rcgov.org/departments/parks-recreation/parks-division/municipal-parks/municipal-parks-322.html,Rapid City +President Thomas Jefferson Statue,44.0804149,-103.2289911,"524 7th St, Rapid City, SD 57701, USA",Unknown,Unknown,Rapid City +President Franklin Roosevelt Statue,44.08087090000001,-103.2248855,"430 SD-79, Rapid City, SD 57701, USA",Unknown,Unknown,Rapid City +Southeast Alaska Discovery Center,55.340697,-131.644023,"50 Main St, Ketchikan, AK 99901, USA",(907) 228-6220,https://www.fs.usda.gov/recarea/tongass/recarea/?recid=78948,Ketchikan +Totem Heritage Center,55.3425768,-131.6340798,"601 Deermount St, Ketchikan, AK 99901, USA",(907) 225-5900,http://www.ketchikanmuseums.org/,Ketchikan +Tongass Historical Museum,55.3425263,-131.6435809,"629 Dock St, Ketchikan, AK 99901, USA",(907) 225-5600,http://www.ketchikanmuseums.org/,Ketchikan +Great Alaskan Lumberjack Show,55.34004969999999,-131.6434173,"420 Spruce Mill Way, Ketchikan, AK 99901, USA",(907) 225-9050,http://www.alaskanlumberjackshow.com/,Ketchikan +Totem Bight State Historical Park,55.4201157,-131.7725377,"9883 N Tongass Hwy, Ketchikan, AK 99901, USA",(907) 247-8574,https://dnr.alaska.gov/parks/aspunits/southeast/totembigshp.htm,Ketchikan +Eagle Park,55.3425047,-131.6487077,"Front St, Ketchikan, AK 99901, USA",Unknown,Unknown,Ketchikan +Ketchikan Helicopter,55.34693599999999,-131.6624702,"1515 Tongass Ave, Ketchikan, AK 99901, USA",(855) 858-4354,http://www.ketchikanhelicopters.com/contact/,Ketchikan +Whale Park,55.3416514,-131.6439464,"829 Mill St, Ketchikan, AK 99901, USA",Unknown,Unknown,Ketchikan +Fishing. Ketchikan adventure tours,55.3415005,-131.6410792,"Side of building, 24 Creek St, Ketchikan, AK 99901, USA",(907) 220-1188,https://www.alaska.org/detail/dollys-house-museum,Ketchikan +Hovercraft Eco Adventure & Wildlife Viewing,55.3467784,-131.6620485,"1471 Tongass Ave, Ketchikan, AK 99901, USA",(907) 228-2320,Unknown,Ketchikan +Alaska Sourdough Tours,55.34222219999999,-131.6461111,"Ketchikan, AK 99901, USA",Unknown,Unknown,Ketchikan +Creek Street in Ketchikan,55.34215409999999,-131.6413674,"13 Creek St, Ketchikan, AK 99901, USA",(907) 617-0867,https://creekstreetketchikan.com/,Ketchikan +Potlatch Totem Park and Museum,55.420164,-131.770528,"9809 Totem Bight Rd, Ketchikan, AK 99901, USA",(907) 225-4445,http://www.potlatchparkalaska.com/,Ketchikan +Ketchikan Sign,55.3413216,-131.6466192,"Mission St, Ketchikan, AK 99901, USA",Unknown,Unknown,Ketchikan +Sun Raven Totem Pole,55.3390868,-131.6375951,"600 Stedman St, Ketchikan, AK 99901, USA",Unknown,https://www.alaska.org/detail/sun-raven-totem-poles,Ketchikan +East Street pier,55.33914309999999,-131.6390037,"100 East St, Ketchikan, AK 99901, USA",Unknown,Unknown,Ketchikan +Tunnel of Ketchikan,55.3428031,-131.6490202,"Water St, Ketchikan, AK 99901, USA",Unknown,https://www.alaska.org/detail/tunnel-of-ketchikan,Ketchikan +Ketchikan Duck Tour,55.3784542,-131.727533,"5191 Borch St #9036, Ketchikan, AK 99901, USA",(907) 225-9899,https://akduck.com/,Ketchikan +Yelatzie Salmon,55.3425672,-131.6430594,"Married Man's Trl, Ketchikan, AK 99901, USA",Unknown,Unknown,Ketchikan +Tireless Tide,55.3419532,-131.6461172,"Dock St, Ketchikan, AK 99901, USA",Unknown,Unknown,Ketchikan +Saint Louis Zoo,38.6349169,-90.2909775,"1 Government Dr, St. Louis, MO 63110, USA",(314) 781-0900,https://stlzoo.org/,St. Louis +City Museum,38.6336745,-90.2006976,"750 N 16th St, St. Louis, MO 63103, USA",(314) 231-2489,https://www.citymuseum.org/,St. Louis +Forest Park,38.63711729999999,-90.2847662,"5595 Grand Dr, St. Louis, MO 63112, USA",Unknown,https://www.forestparkforever.org/,St. Louis +Missouri Botanical Garden,38.61276719999999,-90.2593798,"4344 Shaw Blvd, St. Louis, MO 63110, USA",(314) 577-5100,http://www.missouribotanicalgarden.org/,St. Louis +Saint Louis Art Museum,38.6393062,-90.2944911,"1 Fine Arts Dr, St. Louis, MO 63110, USA",(314) 721-0072,http://www.slam.org/,St. Louis +Citygarden Sculpture Park,38.6266804,-90.1937073,"801 Market St, St. Louis, MO 63101, USA",(314) 241-3337,http://www.citygardenstl.org/,St. Louis +The Gateway Arch,38.6251269,-90.1867504,"Gateway Arch, St. Louis, MO 63102, USA",(877) 982-1410,https://www.gatewayarch.com/,St. Louis +St. Louis Union Station Mirror Maze,38.62837469999999,-90.2075084,"201 S 18th St, St. Louis, MO 63103, USA",Unknown,https://www.stlouisunionstation.com/mirror-maze,St. Louis +Tower Grove Park,38.6061925,-90.2541675,"4257 Northeast Dr, St. Louis, MO 63110, USA",(314) 771-2679,https://www.towergrovepark.org/,St. Louis +The St. Louis Wheel,38.6277183,-90.209575,"201 S 18th St, St. Louis, MO 63103, USA",(314) 923-3960,http://thestlouiswheel.com/,St. Louis +Saint Louis Science Center,38.6289922,-90.270419,"5050 Oakland Ave, St. Louis, MO 63110, USA",(314) 289-4400,https://www.slsc.org/,St. Louis +St. Louis Riverfront,38.6243421,-90.1839603,"Poplar St, St. Louis, MO 63102, USA",(877) 982-1410,http://www.gatewayarch.com/,St. Louis +Campbell House Museum,38.63133029999999,-90.2018274,"1508 Locust St, St. Louis, MO 63103, USA",(314) 421-0325,http://www.campbellhousemuseum.org/,St. Louis +Gateway Arch National Park,38.6248848,-90.1858982,"St. Louis, MO 63102, USA",(314) 655-1600,https://www.nps.gov/jeff/index.htm,St. Louis +"The Magic House, St. Louis Children’s Museum",38.5737375,-90.4056837,"516 S Kirkwood Rd, St. Louis, MO 63122, USA",(314) 822-8900,http://www.magichouse.org/,St. Louis +Museum of Westward Expansion,38.6256744,-90.1892738,"11 N 4th St, St. Louis, MO 63102, USA",(314) 655-1614,http://www.gatewayarch.com/,St. Louis +Art Hill,38.6403391,-90.2937109,"35-43 Fine Arts Dr, St. Louis, MO 63110, USA",(314) 367-7275,http://www.forestparkforever.org/,St. Louis +Missouri History Museum,38.6452478,-90.2857383,"5700 Lindell Blvd, St. Louis, MO 63112, USA",(314) 746-4599,https://www.mohistory.org/museum,St. Louis +Laclede's Landing Wax Museum,38.6307649,-90.184336,"720 N 2nd St, St. Louis, MO 63102, USA",(314) 241-1155,http://www.stlwaxmuseum.com/,St. Louis +Compton Hill Water Tower,38.6150228,-90.2389402,"1700-1898 S Grand Blvd, St. Louis, MO 63104, USA",(314) 552-9000,http://www.watertowerfoundation.org/,St. Louis +Santa Maria Valley Discovery Museum,34.9454709,-120.4350538,"705 S McClelland St, Santa Maria, CA 93454, USA",(805) 928-8414,http://www.smvdiscoverymuseum.org/,Santa Maria +Santa Maria Museum of Flight,34.90496510000001,-120.4547551,"3015 Airpark Dr, Santa Maria, CA 93455, USA",(805) 922-8758,https://www.smmuseumofflight.com/,Santa Maria +Santa Maria Historical Museum,34.9466315,-120.4356333,"616 S Broadway, Santa Maria, CA 93454, USA",(805) 922-3130,http://santamariahistory.com/,Santa Maria +Natural History Museum,34.948942,-120.434002,"412 S McClelland St, Santa Maria, CA 93454, USA",(805) 614-0806,https://www.smnaturalhistory.org/,Santa Maria +Russell Park,34.9516534,-120.4510654,"1000 W Church St, Santa Maria, CA 93458, USA",(805) 925-0951,https://www.cityofsantamaria.org/city-government/departments/recreation-and-parks/visit-your-parks/view-park-photos-descriptions#Russell%20Park,Santa Maria +Jim May Park,34.9755846,-120.4249603,"809 Stanford Dr, Santa Maria, CA 93454, USA",(805) 925-0951,Unknown,Santa Maria +Los Flores Ranch Park,34.8428892,-120.3357283,"6245 Dominion Rd, Santa Maria, CA 93454, USA",(805) 925-0951,Unknown,Santa Maria +Adventure Safaris Dinosaur Warehouse,34.9153977,-120.4606577,"1360 W McCoy Ln #11, Santa Maria, CA 93455, USA",(805) 588-3353,https://www.centralcoastdinosaurs.com/,Santa Maria +Preisker Park,34.9842672,-120.4376915,"330 Hidden Pines Way, Santa Maria, CA 93458, USA",(805) 925-0951,Unknown,Santa Maria +Pioneer Park,34.8817772,-120.4523634,"1150 W Foster Rd, Santa Maria, CA 93455, USA",(805) 925-0951,Unknown,Santa Maria +Presqu'ile Winery,34.8538029,-120.3710817,"5391 Presquile Dr, Santa Maria, CA 93455, USA",(805) 937-8110,https://www.presquilewine.com/,Santa Maria +Boomers Santa Maria,34.98185369999999,-120.4333933,"2250 Preisker Ln, Santa Maria, CA 93458, USA",(805) 928-4942,https://boomersparks.com/santamaria?utm_source=gmb&utm_medium=Yext,Santa Maria +Costa de Oro Winery,34.9371918,-120.4173165,"1331 Nicholson Ave, Santa Maria, CA 93454, USA",(805) 922-1468,https://www.costadeorowines.com/,Santa Maria +"Santa Maria, CA",34.9910505,-120.4530716,"Nipomo, CA 93444, USA",Unknown,Unknown,Santa Maria +Santa Maria Valley Historical Society,34.94658500000001,-120.4355286,"616 S Broadway, Santa Maria, CA 93454, USA",(805) 922-3130,https://santamariahistory.com/about.html,Santa Maria +Rice Park,34.9649759,-120.4265808,"700 E Sunset Ave, Santa Maria, CA 93454, USA",(805) 925-0951,Unknown,Santa Maria +Oakley Park,34.9645516,-120.4503909,"119 010-019, Santa Maria, CA 93458, USA",(805) 925-0951,https://www.cityofsantamaria.org/city-government/departments/recreation-and-parks/visit-your-parks/view-park-photos-descriptions#Oakley%20Park,Santa Maria +Old Town Alexandria Waterfront,38.8034266,-77.03943,"1 Prince St, Alexandria, VA 22314, USA",(703) 838-5005,http://www.visitalexandriava.com/,Alexandria +Carlyle House Historic Park,38.8052194,-77.04196449999999,"121 N Fairfax St, Alexandria, VA 22314, USA",(703) 549-2997,https://www.novaparks.com/parks/carlyle-house-historic-park,Alexandria +The George Washington Masonic National Memorial,38.80750889999999,-77.0659397,"101 Callahan Dr, Alexandria, VA 22301, USA",(703) 683-2007,http://gwmemorial.org/,Alexandria +Alexandria Black History Museum,38.8120943,-77.04814859999999,"902 Wythe St, Alexandria, VA 22314, USA",(703) 746-4356,https://www.alexandriava.gov/BlackHistory,Alexandria +Local Halloween display,38.8031765,-77.0412535,"198-112 S Lee St, Alexandria, VA 22314, USA",Unknown,Unknown,Alexandria +Gadsby's Tavern Museum,38.8055556,-77.04361109999999,"134 N Royal St, Alexandria, VA 22314, USA",(703) 746-4242,https://alexandriava.gov/GadsbysTavern,Alexandria +Old Town mural,38.8047852,-77.04152909999999,"106 N Lee St, Alexandria, VA 22314, USA",Unknown,Unknown,Alexandria +Stabler-Leadbeater Apothecary Museum,38.80423090000001,-77.0427898,"105-107 S Fairfax St, Alexandria, VA 22314, USA",(703) 746-3852,http://alexandriava.gov/Apothecary,Alexandria +Alexandria Archaeology Museum,38.8046657,-77.0400525,"105 N Union St UNIT 327, Alexandria, VA 22314, USA",(703) 746-4399,http://alexandriava.gov/Archaeology,Alexandria +Alexandria History Museum at the Lyceum,38.80374440000001,-77.0475806,"201 S Washington St, Alexandria, VA 22314, USA",(703) 746-4994,http://alexandriava.gov/Lyceum,Alexandria +Waterfront Park,38.8033656,-77.0394069,"1A Prince St, Alexandria, VA 22314, USA",(703) 652-5367,https://www.alexandriava.gov/waterfront/project/waterfront-park,Alexandria +Oronoco Bay Park,38.81131070000001,-77.0391516,"100 Madison St, Alexandria, VA 22314, USA",Unknown,https://www.alexandriava.gov/recreation/info/default.aspx?id=12290#Oronoco,Alexandria +Windmill Hill Park,38.79946440000001,-77.0418741,"501 S Union St, Alexandria, VA 22314, USA",(703) 746-4357,https://www.alexandriava.gov/recreation/info/?id=12292#Windmill_Hill,Alexandria +Escape Room Live Alexandria,38.8051687,-77.0487291,"814 King St 2nd floor, Alexandria, VA 22314, USA",(571) 771-2311,https://escaperoomlive.com/,Alexandria +Oronoco Bay,38.8070793,-77.0396868,"N Union St, Alexandria, VA 22314, USA",Unknown,https://www.alexandriava.gov/recreation/info/default.aspx?id=12290#Oronoco,Alexandria +Office of Historic Alexandria,38.8072144,-77.04675069999999,"220 N Washington St, Alexandria, VA 22314, USA",(703) 746-4554,https://www.alexandriava.gov/Historic,Alexandria +James Mulligan Park,38.8380275,-77.107705,"3300 S 28th St, Alexandria, VA 22311, USA",(703) 746-5500,http://alexandriava.gov/recreation/info/default.aspx?id=12294#James_Mulligan,Alexandria +Rivergate City Park,38.812845,-77.037916,"2 Montgomery St, Alexandria, VA 22314, USA",(703) 746-4343,https://www.alexandriava.gov/recreation/info/default.aspx?id=12290#Rivergate,Alexandria +Green Spring Gardens,38.82392779999999,-77.1564272,"4603 Green Spring Rd, Alexandria, VA 22312, USA",(703) 642-5173,https://www.fairfaxcounty.gov/parks/green-spring,Alexandria +Ice well,38.8057042,-77.0435499,"138 N Royal St, Alexandria, VA 22314, USA",Unknown,Unknown,Alexandria +Winchester Mystery House,37.3183318,-121.9510491,"525 S Winchester Blvd, San Jose, CA 95128, USA",(408) 247-2000,https://winchestermysteryhouse.com/?utm_medium=organic&utm_source=google&utm_campaign=gbp-website,San Jose +Happy Hollow Park & Zoo,37.32609619999999,-121.8598463,"748 Story Rd, San Jose, CA 95112, USA",(408) 794-6400,https://happyhollow.org/,San Jose +Rosicrucian Egyptian Museum,37.33348600000001,-121.922884,"1660 Park Ave, San Jose, CA 95191, USA",(408) 947-3635,http://www.egyptianmuseum.org/,San Jose +Plaza de Cesar Chavez,37.3324858,-121.8898421,"1 Paseo de San Antonio, San Jose, CA 95113, USA",(408) 535-3570,http://www.sjparks.org/,San Jose +San Jose Museum of Art,37.3337262,-121.8899245,"110 S Market St, San Jose, CA 95113, USA",(408) 271-6840,http://sjmusart.org/,San Jose +Municipal Rose Garden,37.3318809,-121.9286119,"1649 Naglee Ave, San Jose, CA 95126, USA",(408) 794-7275,https://www.sanjose.org/listings/municipal-rose-garden,San Jose +Alum Rock Park,37.396039,-121.801812,"15350 Penitencia Creek Rd, San Jose, CA 95127, USA",(408) 259-5477,https://www.sanjoseca.gov/Home/Components/FacilityDirectory/FacilityDirectory/2088/2028?utm_campaign=google_maps&utm_medium=organic&utm_source=google,San Jose +Sierra vista,37.40913889999999,-121.8011053,"5345 Sierra Rd, San Jose, CA 95132, USA",Unknown,Unknown,San Jose +Children's Discovery Museum of San Jose,37.3269922,-121.8920824,"180 Woz Way, San Jose, CA 95110, USA",(408) 298-5437,https://www.cdm.org/,San Jose +Viet Museum,37.3202235,-121.859976,"635 Phelan Ave, San Jose, CA 95112, USA",(408) 679-9149,https://www.vietmuseumsanjose.com/,San Jose +The Tech Interactive,37.3314903,-121.8902357,"201 S Market St, San Jose, CA 95113, USA",(408) 294-8324,https://www.thetech.org/,San Jose +St James Park,37.3388897,-121.8911568,"N 2nd St &, E St James St, San Jose, CA 95112, USA",(408) 535-3570,https://www.sanjoseca.gov/Home/Components/FacilityDirectory/FacilityDirectory/2661/,San Jose +San Jose Museum of Quilts & Textiles,37.3281515,-121.8843554,"520 S 1st St, San Jose, CA 95113, USA",(408) 971-0323,http://www.sjquiltmuseum.org/,San Jose +California's Great America,37.3979214,-121.9742877,"4701 Great America Pkwy, Santa Clara, CA 95054, USA",(408) 988-1776,http://www.cagreatamerica.com/,San Jose +History Park,37.3201693,-121.8586549,"635 Phelan Ave, San Jose, CA 95112, USA",(408) 287-2290,http://historysanjose.org/,San Jose +Paulson House,37.3191997,-121.8580623,"1650 Senter Rd, San Jose, CA 95112, USA",Unknown,https://historysanjose.org/plan-your-visit/history-park/paulson-house/,San Jose +Japanese Friendship Garden,37.3218587,-121.8599194,"1300 Senter Rd, San Jose, CA 95112, USA",(408) 794-7275,https://www.sanjoseca.gov/Home/Components/FacilityDirectory/FacilityDirectory/2835/,San Jose +Kelley Park,37.3253954,-121.8587999,"1300 Senter Rd, San Jose, CA 95112, USA",(408) 794-7275,https://www.sanjoseca.gov/Home/Components/FacilityDirectory/FacilityDirectory/2245/2028?npage=8,San Jose +Vieira Park,37.287021,-121.8614271,"2988 Grassina St, San Jose, CA 95136, USA",(408) 793-5510,https://www.sanjoseca.gov/Home/Components/FacilityDirectory/FacilityDirectory/2687/2028,San Jose +Guadalupe River Park,37.3433081,-121.9034378,"438 Coleman Ave, San Jose, CA 95110, USA",(408) 298-7657,http://www.grpg.org/,San Jose +Pima Air & Space Museum,32.1399593,-110.8649696,"6000 E Valencia Rd, Tucson, AZ 85756, USA",(520) 574-0462,https://www.pimaair.org/,Tucson +Reid Park Zoo,32.2098547,-110.9207443,"3400 E Zoo Ct, Tucson, AZ 85716, USA",(520) 791-3204,https://reidparkzoo.org/?utm_source=google&utm_medium=organic&utm_campaign=GMB,Tucson +The Mini Time Machine Museum of Miniatures,32.2654613,-110.8956412,"4455 E Camp Lowell Dr, Tucson, AZ 85712, USA",(520) 881-0606,https://theminitimemachine.org/,Tucson +Tucson Botanical Gardens,32.248523,-110.908785,"2150 N Alvernon Way, Tucson, AZ 85712, USA",(520) 326-9686,http://www.tucsonbotanical.org/,Tucson +Old Tucson,32.2183137,-111.1289275,"201 Kinney Rd, Tucson, AZ 85735, USA",(520) 883-0100,http://oldtucson.com/,Tucson +San Xavier del Bac Mission,32.1069638,-111.00878,"1950 W San Xavier Rd, Tucson, AZ 85746, USA",(520) 294-2624,http://www.sanxaviermission.org/,Tucson +Trail Dust Town,32.2474341,-110.8529292,"6541 E Tanque Verde Rd, Tucson, AZ 85715, USA",(520) 296-4551,http://www.traildusttown.com/,Tucson +Arizona-Sonora Desert Museum,32.244013,-111.168174,"2021 N Kinney Rd, Tucson, AZ 85743, USA",(520) 883-1380,https://www.desertmuseum.org/,Tucson +Children's Museum Tucson,32.219192,-110.969338,"200 S 6th Ave, Tucson, AZ 85701, USA",(520) 792-9985,https://www.childrensmuseumtucson.org/,Tucson +Presidio San Agustín del Tucson Museum,32.224195,-110.9737738,"196 N Court Ave, Tucson, AZ 85701, USA",(520) 622-0594,http://www.tucsonpresidio.com/,Tucson +International Wildlife Museum,32.2346357,-111.0670564,"4800 West Gates Pass, Boulevard, Tucson, AZ 85745, USA",(520) 629-0100,http://www.thewildlifemuseum.org/,Tucson +Fort Lowell Museum,32.2596871,-110.874732,"2900 N Craycroft Rd, Tucson, AZ 85712, USA",(520) 885-3832,Unknown,Tucson +Tumamoc Hill,32.2254619,-111.0016214,"Tumamoc Hill Rd, Tucson, AZ 85745, USA",Unknown,http://tumamoc.arizona.edu/,Tucson +Tucson Museum Of Art,32.2234486,-110.9754411,"140 N Main Ave, Tucson, AZ 85701, USA",(520) 624-2333,http://www.tucsonmuseumofart.org/,Tucson +Rincon Mountain Visitor Center,32.1802194,-110.7362959,"3693 S Old Spanish Trail, Tucson, AZ 85730, USA",(520) 733-5153,http://www.nps.gov/sagu/index.htm,Tucson +Flandrau Science Center and Planetarium,32.2323378,-110.9478701,"1601 E University Blvd, Tucson, AZ 85721, USA",(520) 621-4516,https://flandrau.org/,Tucson +Arizona State Museum,32.2325513,-110.9557445,"1013 E University Blvd, Tucson, AZ 85721, USA",(520) 621-6302,https://statemuseum.arizona.edu/visit,Tucson +Tucson Rodeo Parade Museum,32.164315,-110.967814,"4823 S 6th Ave, Tucson, AZ 85714, USA",(520) 294-3636,https://www.tucsonrodeoparade.com/the-museum/,Tucson +Valley of the Moon,32.275029,-110.933962,"2544 E Allen Rd, Tucson, AZ 85716, USA",(520) 323-1331,http://www.tucsonvalleyofthemoon.com/,Tucson +Sabino Canyon Recreation Area,32.32236449999999,-110.8098631,"5700 N Sabino Canyon Rd, Tucson, AZ 85750, USA",(520) 749-8700,https://www.fs.usda.gov/recarea/coronado/recarea/?recid=75425,Tucson +Castillo San Felipe del Morro,18.4706276,-66.1239202,"501 Calle Norzagaray, San Juan, 00901, Puerto Rico",(787) 729-6960,https://www.nps.gov/saju/index.htm,San Juan +Paseo de La Princesa,18.4634809,-66.11644,"FV7M+9CV, Paseo de la Princesa, San Juan, 00901, Puerto Rico",Unknown,Unknown,San Juan +Parque de las Palomas,18.4639894,-66.11774869999999,"FV7J+HWR, C. Tetuán, San Juan, 00901, Puerto Rico",(787) 480-2910,http://www.conoceapuertorico.com/parque-de-las-palomas/,San Juan +Casa Blanca,18.4664019,-66.1200722,"1 C. de San Sebastián, San Juan, 00901, Puerto Rico",(787) 725-1454,https://www.discoverpuertorico.com/profile/museo-casa-blanca/8488,San Juan +Castillo San Cristóbal,18.4673652,-66.1110077,"501 Calle Norzagaray, San Juan, 00901, Puerto Rico",(787) 449-4049,https://www.nps.gov/saju/learn/historyculture/san-cristobal.htm,San Juan +San Juan National Historic Site,18.4704822,-66.1235165,"FVCG+5HX, San Juan, 00901, Puerto Rico",(787) 729-6960,https://www.nps.gov/saju/index.htm,San Juan +Puerta de San Juan,18.4651336,-66.1195327,"FV8J+354 Caleta de San Juan, San Juan, 00901, Puerto Rico",Unknown,Unknown,San Juan +Museo de las Américas,18.4677245,-66.1201859,"C. Beneficencia, San Juan, 00901, Puerto Rico",(787) 724-5052,http://www.museolasamericas.org/,San Juan +La Fortaleza,18.4641061,-66.1192296,"63 C. de la Fortaleza, San Juan, 00901, Puerto Rico",(787) 721-7000,Unknown,San Juan +Walkway of the Presidents,18.4661967,-66.1058858,"FV8V+FJH, San Juan, 00901, Puerto Rico",Unknown,Unknown,San Juan +Plaza Colón,18.4660267,-66.1120694,"FV8Q+C57, C. de la Fortaleza, San Juan, 00901, Puerto Rico",Unknown,https://www.discoverpuertorico.com/profile/plaza-colon-san-juan/8039,San Juan +Jerrys Adventures llc.,18.455552,-66.08822289999999,"580 Av. Manuel Fernández Juncos, San Juan, 00907, Puerto Rico",(787) 455-1245,http://www.jerrysadventures.com/,San Juan +Paseo del Morro,18.4718182,-66.1248519,"FVCG+P3C Paseo del Morro, San Juan, 00901, Puerto Rico",Unknown,Unknown,San Juan +Museo de Arte de Puerto Rico,18.448276,-66.066284,"299 Avenida José de Diego, San Juan, 00909, Puerto Rico",(787) 977-6277,https://www.mapr.org/,San Juan +Paseo de la Fama de Puerto Rico,18.4578182,-66.0751284,"1053 Ashford Ave, San Juan, 00907, Puerto Rico",Unknown,Unknown,San Juan +Museo del Mar,18.46632809999999,-66.1128195,"360 C. de San Francisco, San Juan, 00901, Puerto Rico",(787) 977-4461,http://www.museodelmarpr.org/,San Juan +Casa Ramón Power y Giralt – Para la Naturaleza,18.464202,-66.116441,"155 C. Tetuán, San Juan, 00901, Puerto Rico",(787) 722-5834 ext. 242,http://www.paralanaturaleza.org/,San Juan +Balneario El Escambrón,18.46685979999999,-66.0899681,"FW86+P2V, San Juan, 00910, Puerto Rico",Unknown,Unknown,San Juan +Plaza de Armas,18.4653047,-66.1166484,"FV8M+48H, San Juan, 00969, Puerto Rico",Unknown,Unknown,San Juan +Casa Rosa,18.4664951,-66.1211536,"Casa Rosa, San Juan, 00901, Puerto Rico",Unknown,Unknown,San Juan +National Mississippi River Museum & Aquarium,42.49689470000001,-90.6614081,"350 E 3rd St, Dubuque, IA 52001, USA",(563) 557-9545,http://www.rivermuseum.org/,Dubuque +EB Lyons Interpretive Center,42.4597846,-90.6640411,"8991 Bellevue Heights Rd, Dubuque, IA 52003, USA",(563) 556-0620,http://www.minesofspain.org/,Dubuque +Dubuque Museum of Art,42.4998178,-90.6680178,"701 Locust St, Dubuque, IA 52001, USA",(563) 557-1851,http://www.dbqart.org/,Dubuque +Dubuque Shot Tower,42.5000745,-90.6539856,"E Commercial St, Dubuque, IA 52001, USA",(563) 589-4100,https://www.cityofdubuque.org/712/Shot-Tower,Dubuque +Crystal Lake Cave,42.43385500000001,-90.6211,"6684 Crystal Lake Cave Rd, Dubuque, IA 52003, USA",(563) 556-6451,https://www.facebook.com/crystallakecavellc/,Dubuque +Eagle Point Park,42.5365654,-90.6526423,"2601 Shiras Ave, Dubuque, IA 52001, USA",(563) 589-4263,https://www.cityofdubuque.org/573/Eagle-Point-Park,Dubuque +Dubuque Arboretum & Botanical Gardens,42.532795,-90.7164486,"3800 Arboretum Dr, Dubuque, IA 52001, USA",(563) 556-2100,http://www.dubuquearboretum.net/,Dubuque +William M. Black,42.49526229999999,-90.6624627,"Ice Harbor Drive, Dubuque, IA 52001, USA",(563) 557-9545,http://www.cityofdubuque.org/713/William-M-Black,Dubuque +Julien Dubuque Monument,42.46885229999999,-90.6465477,"1810 Monument Dr, Dubuque, IA 52003, USA",(563) 556-0620,http://minesofspain.org/,Dubuque +Sky Tours at YMCA Union Park Camp,42.53858090000001,-90.7157956,"11764 John F Kennedy Rd, Dubuque, IA 52001, USA",(563) 484-4248,http://www.skytourszipline.com/,Dubuque +StoryBook Hill Children’s Zoo,42.4675536,-90.7287377,"12201 N Cascade Rd, Dubuque, IA 52003, USA",(563) 590-1019,http://www.storybookhillzoo.com/,Dubuque +Fenelon Place Elevator Company,42.4963478,-90.6694471,"512 Fenelon Pl, Dubuque, IA 52001, USA",(563) 582-6496,http://fenelonplaceelevator.com/,Dubuque +Dubuque Diamond Railroad Crossing,42.501272,-90.6579372,"430 E 7th St, Dubuque, IA 52001, USA",Unknown,Unknown,Dubuque +Mathias Ham Historic Site,42.5313476,-90.6506966,"2241 Lincoln Ave, Dubuque, IA 52001, USA",(563) 557-9545,http://rivermuseum.com/hamsite,Dubuque +Heritage Pond / Heritage Trail,42.55392739999999,-90.7069223,"Rupp Hollow Rd, Dubuque, IA 52001, USA",(563) 556-6745,https://www.iowadnr.gov/Fishing/Where-to-Fish/Lakes-Ponds-Reservoirs/LakeDetails?lakeCode=HEP31,Dubuque +Diamond Jo Casino Dubuque,42.49747079999999,-90.6590957,"301 Bell St, Dubuque, IA 52001, USA",(563) 690-4800,https://diamondjodubuque.boydgaming.com/,Dubuque +Dubuque Town Clock,42.4999392,-90.666647,"680 Main St, Dubuque, IA 52001, USA",Unknown,http://www.cityofdubuque.org/1596/Town-Clock,Dubuque +Stone Cliff Winery,42.4994444,-90.6538889,"600 Star Brewery Drive, Dubuque, IA 52001, USA",(563) 583-6100,http://www.stonecliffwinery.com/,Dubuque +Sister City International Park,42.5128534,-90.6539405,"1600 Kerper Blvd, Dubuque, IA 52001, USA",(563) 589-4263,http://www.cityofdubuque.org/index.aspx?NID=440,Dubuque +Flora Park,42.5015959,-90.7039987,"2605 Pennsylvania Ave, Dubuque, IA 52001, USA",(563) 589-4263,http://www.cityofdubuque.org/440/Parks,Dubuque +Gordon R Howard Museum,34.1725881,-118.3182448,"115 N Lomita St, Burbank, CA 91506, USA",(818) 841-6333,http://www.burbankhistoricalsoc.org/,Burbank +Martial Arts History Museum,34.1726069,-118.3335672,"2319 W Magnolia Blvd, Burbank, CA 91506, USA",(818) 478-1722,http://www.mamuseum.com/,Burbank +Warner Bros. Studio Tour Hollywood,34.151323,-118.3362579,"3400 Warner Blvd, Burbank, CA 91505, USA",(818) 977-8687,https://www.wbstudiotour.com/,Burbank +Burbank Aviation Museum,34.1902508,-118.3538638,"3898 Valhalla Dr, Burbank, CA 91505, USA",(818) 768-7881,https://www.facebook.com/BurbankAviationMuseum/,Burbank +The Mystic Museum,34.1692556,-118.3420778,"3204 W Magnolia Blvd, Burbank, CA 91505, USA",(818) 433-7530,http://www.themysticmuseum.com/,Burbank +Warner Bros. Water Tower,34.1504742,-118.3386024,"3517 Warner Blvd, Burbank, CA 91505, USA",Unknown,Unknown,Burbank +Johnny Carson Park,34.1542843,-118.3299207,"400 Bob Hope Dr, Burbank, CA 91505, USA",(818) 238-5300,https://www.burbankca.gov/web/parks-recreation/johnny-carson-park,Burbank +Stough Canyon Park,34.2053237,-118.3091273,"1335 Lockheed View Dr, Burbank, CA 91504, USA",(818) 238-5300,https://www.burbankca.gov/web/parks-recreation/stough-canyon-park,Burbank +Brace Canyon Park,34.2103539,-118.3306473,"2901 Haven Way, Burbank, CA 91504, USA",Unknown,https://www.burbankca.gov/web/parks-recreation/brace-canyon-park,Burbank +Batman: Hush Statue,34.1815117,-118.3116009,"109 Palm Ave, Burbank, CA 91502, USA",Unknown,https://deadline.com/2020/11/burbank-adds-batman-hush-statue-in-amc-walkway-1234619964/,Burbank +Portal of the Folded Wings Shrine to Aviation,34.19027499999999,-118.3538221,"3898 Valhalla Dr, Burbank, CA 91505, USA",(818) 763-9121,https://www.hmdb.org/m.asp?m=150059,Burbank +Abraham Lincoln Park,34.164122,-118.3303272,"300 N Buena Vista St, Burbank, CA 91505, USA",Unknown,https://www.burbankca.gov/web/parks-recreation/abraham-lincoln-park,Burbank +Visit Burbank,34.1828198,-118.3079294,"150 N 3rd St, Burbank, CA 91502, USA",(747) 477-1462,https://visitburbank.com/,Burbank +Stough Canyon Nature Center,34.21391299999999,-118.3069314,"2300 E Walnut Ave, Burbank, CA 91504, USA",(818) 238-5440,http://www.burbankca.gov/naturecenter,Burbank +"K1 Speed - Indoor Go Karts, Corporate Event Venue, Team Building Activities",34.1814519,-118.3217088,"960 Chestnut St, Burbank, CA 91506, USA",(818) 659-6033,https://www.k1speed.com/burbank-location.html,Burbank +Burbank Christmas Tree,34.2049723,-118.3115566,"6M4Q+39, Burbank, CA 91504, USA",Unknown,Unknown,Burbank +Wildwood Canyon Park,34.20271040000001,-118.2983857,"Wildwood Canyon Rd, Burbank, CA 91501, USA",(818) 238-5300,https://www.burbankca.gov/web/parks-recreation/wildwood-canyon-park,Burbank +Universal Studios Hollywood,34.13811680000001,-118.3533783,"100 Universal City Plaza, Universal City, CA 91608, USA",(800) 864-8377,https://www.universalstudioshollywood.com/?utm_source=google&utm_medium=organic&utm_campaign=GMB,Burbank +Universal Plaza,34.1384598,-118.3551248,"142 Baker St, Toluca Lake, CA 91602, USA",Unknown,http://universalstudioshollywood.com/,Burbank +Vickroy Park,34.1861948,-118.3368804,"2310 W Monterey Pl, Burbank, CA 91506, USA",Unknown,https://www.burbankca.gov/web/parks-recreation/vickroy-park,Burbank +I.O.O.F. Park,38.5456696,-106.9265976,"124 E Virginia Ave, Gunnison, CO 81230, USA",(970) 641-8060,Unknown,Gunnison +Jorgensen Park,38.5424494,-106.9203665,"Gunnison, CO 81230, USA",(970) 641-8061,https://www.gunnisonco.gov/jorgensen_park/index.php,Gunnison +Gunnison Pioneer Museum,38.5439478,-106.9176763,"803 E Tomichi Ave, Gunnison, CO 81230, USA",(970) 641-4530,http://www.gunnisonpioneermuseum.com/,Gunnison +Gunnison Valley Observatory,38.50965559999999,-106.9402298,"2804 Co Rd 38, Gunnison, CO 81230, USA",(970) 642-1111,http://gunnisonvalleyobservatory.com/,Gunnison +Hartman Rocks,38.50053990000001,-106.9501448,"Gunnison, CO 81230, USA",(970) 642-4940,https://www.blm.gov/mountainbike/colorado/hartmanrocks.html,Gunnison +Black Canyon of the Gunnison National Park,38.5753936,-107.7415961,"Colorado, USA",(970) 641-2337,http://www.nps.gov/blca/index.htm,Gunnison +West Tomichi River Park,38.54597649999999,-106.9505876,"113 Emerald Ln, Gunnison, CO 81230, USA",Unknown,Unknown,Gunnison +Gunnison State Wildlife Area,38.504863,-107.0318913,"Co Rd 726, Gunnison, CO 81230, USA",Unknown,https://www.google.com/url?sa=t&source=web&rct=j&url=https://cpw.state.co.us/learn/Maps/GunnisonSWA_geo.pdf&ved=2ahUKEwi4sd7MmrrlAhVDPq0KHSbDDVAQFjAAegQIBhAC&usg=AOvVaw1mc-ZP_ixOLootqVBJzbBK&cshid=1572104029582,Gunnison +Frontier Homestead State Park Museum,37.6886111,-113.0625,"635 N Main St, Cedar City, UT 84721, USA",(435) 586-9290,http://frontierhomestead.org/,Cedar City +Park Discovery,37.6579466,-113.0875758,"2077 W Royal Hunte Dr, Cedar City, UT 84720, USA",(435) 865-9223,http://www.cedarcity.org/index.aspx?NID=270,Cedar City +Main Street Park,37.6816893,-113.0610215,"200 N Main St, Cedar City, UT 84721, USA",Unknown,http://www.cedarcity.org/238/Main-Street-Park,Cedar City +Cedar City Lighthouse,37.6545551,-113.0838539,"Cedar City, UT 84720, USA",Unknown,Unknown,Cedar City +Self guided walking tour of cemetery,37.6888484,-113.062501,"635 N Main St, Cedar City, UT 84721, USA",Unknown,Unknown,Cedar City +Cedar Highlands water tank,37.6494585,-113.0672145,"Cedar City, UT 84720, USA",Unknown,Unknown,Cedar City +Veteran's Park,37.6805675,-113.0580524,"200 N 200 E, Cedar City, UT 84720, USA",(435) 865-9223,http://www.cedarcity.org/250/Veterans-Park,Cedar City +Southern Utah Museum of Art,37.677072,-113.0662961,"Southern Utah Museum of Art, 13 S 300 W, Cedar City, UT 84720, USA",(435) 586-5432,https://www.suu.edu/suma/,Cedar City +Bicentennial Park,37.6949209,-113.0708983,"660 W 1045 N, Cedar City, UT 84721, USA",(435) 865-9223,http://www.cedarcity.org/241/Bicentennial-Park,Cedar City +Horseshoe Park,37.6886718,-113.0593651,"675 N 150 W, Cedar City, UT 84721, USA",(435) 865-9223,http://www.cedarcity.org/251/Horseshoe-Park,Cedar City +Thunderbird Garden Trailhead,37.69015099999999,-113.0436358,"Cedar City, UT 84721, USA",Unknown,https://www.blm.gov/visit/search-details/255101/1,Cedar City +Ann J. Gardner Canyon Park,37.67569,-113.0535221,"151 S 400 E, Cedar City, UT 84720, USA",(435) 865-9223,http://www.cedarcity.org/239/West-Canyon-Park-Ann-J-Gardner,Cedar City +"Canyon Park, East Side",37.6769027,-113.0529816,"500 E Center St, Cedar City, UT 84720, USA",Unknown,http://www.cedarcity.org/index.aspx?NID=240,Cedar City +Mile Marker 3,37.6678886,-113.0113754,"1400-1566 E Center St, Cedar City, UT 84720, USA",Unknown,Unknown,Cedar City +I/G Winery & Tasting Room,37.67721350000001,-113.0627537,"59 W Center St, Cedar City, UT 84720, USA",(435) 867-9463,http://igwinery.com/,Cedar City +Three Peaks Recreation Area,37.7654851,-113.1693982,"Cedar City, UT 84721, USA",(435) 865-3000,https://www.blm.gov/visit/three-peaks-recreation-area,Cedar City +Iron County Outdoor Recreation,37.6872519,-113.0623777,"581 N Main St, Cedar City, UT 84721, USA",(435) 267-1730,https://www.ironcounty.net/department/outdoor-recreation/,Cedar City +Garth & Jerri Frehner Museum of Natural History,37.6745615,-113.0673162,"300 West 162 South, Cedar City, UT 84720, USA",(435) 865-8547,Unknown,Cedar City +Mayor Square,37.6770696,-113.0620438,"23 W Center St, Cedar City, UT 84720, USA",Unknown,http://www.cedarcity.org/249/Mayor-Square,Cedar City +Cedar Breaks National Monument,37.63626989999999,-112.8452345,"Brian Head, UT 84719, USA",(435) 986-7120,https://www.nps.gov/cebr/index.htm,Cedar City +John F. Kennedy Hyannis Museum,41.65231649999999,-70.2841361,"397 Main St, Hyannis, MA 02601, USA",(508) 790-3077,http://jfkhyannismuseum.org/,Hyannis +Cape Cod Maritime Museum,41.651523,-70.27950899999999,"135 South St, Hyannis, MA 02601, USA",(508) 775-1723,http://www.capecodmaritimemuseum.org/,Hyannis +John F. Kennedy Memorial,41.64186189999999,-70.2786505,"480 Ocean St, Hyannis, MA 02601, USA",(508) 790-6345,Unknown,Hyannis +Veterans Memorial Park,41.6402842,-70.2787802,"480 Ocean St, Hyannis, MA 02601, USA",Unknown,Unknown,Hyannis +Cape Codder Water Park,41.6738914,-70.3104944,"1225 Iyannough Rd Suite #4, Hyannis, MA 02601, USA",(508) 568-2940,https://www.capecodderwaterpark.com/,Hyannis +Kalmus Park Beach,41.63450160000001,-70.2785227,"670 Ocean St, Hyannis, MA 02601, USA",Unknown,Unknown,Hyannis +Walkway to the Sea,41.6520958,-70.2827184,"Main St, Hyannis, MA 02601, USA",Unknown,Unknown,Hyannis +Korean War Memorial,41.64137849999999,-70.2789105,"480 Ocean St, Hyannis, MA 02601, USA",Unknown,Unknown,Hyannis +Pleasant Street Park,41.6515361,-70.2787732,"115 Pleasant St, Hyannis, MA 02601, USA",(508) 862-4678,http://www.town.barnstable.ma.us/,Hyannis +Veterans Park Beach,41.64108969999999,-70.2785463,"480 Ocean St, Hyannis, MA 02601, USA",(508) 790-9885,http://www.town.barnstable.ma.us/,Hyannis +Sea Captains Row-Crowell Homestead,41.65378649999999,-70.2792734,"35 Pleasant St, Hyannis, MA 02601, USA",(508) 280-7290,http://www.seacaptainsrow.org/,Hyannis +Whydah Pirate Museum,41.65011639999999,-70.2250032,"674 MA-28, West Yarmouth, MA 02673, USA",(508) 534-9571,http://www.discoverpirates.com/,Hyannis +Cape Cod Beer,41.67814319999999,-70.310088,"1336 Phinneys Ln, Hyannis, MA 02601, USA",(508) 790-4200,http://www.capecodbeer.com/,Hyannis +Toad Hall Classic Car Museum,41.6409802,-70.3036152,"288 Scudder Ave, Hyannis, MA 02601, USA",(508) 778-4934,http://www.toadhallcars.com/default.asp,Hyannis +Massachusetts Air & Space Museum,41.6522464,-70.2854741,"438 Main St, Hyannis, MA 02601, USA",(508) 827-6300,http://massairspace.org/,Hyannis +Bismore Park,41.6489986,-70.27971029999999,"Hyannis, MA 02601, USA",Unknown,Unknown,Hyannis +Zion Union Heritage Museum Inc.,41.6511363,-70.29277750000001,"276 North St, Hyannis, MA 02601, USA",(774) 251-9263,http://www.zionunionheritagemuseum.org/,Hyannis +Cape Cod Museum Of Natural History,41.7537373,-70.1160027,"869 Main St, Brewster, MA 02631, USA",(508) 896-3867,http://www.ccmnh.org/,Hyannis +Saint Francis Xavier Parish,41.6494033,-70.28635419999999,"347 South St, Hyannis, MA 02601, USA",(508) 775-0818,https://www.sfxhyannis.org/,Hyannis +Hyannisport Wharf,41.6348048,-70.2886649,"Harbor Rd, Hyannis, MA 02601, USA",Unknown,Unknown,Hyannis +Norfolk Botanical Garden,36.90158340000001,-76.200199,"6700 Azalea Garden Rd, Norfolk, VA 23518, USA",(757) 441-5830,http://www.norfolkbotanicalgarden.org/,Norfolk +Nauticus,36.8477024,-76.29509139999999,"1 Waterside Dr, Norfolk, VA 23510, USA",(757) 664-1000,http://www.nauticus.org/,Norfolk +MacArthur Memorial,36.8473833,-76.28873589999999,"198 Bank St, Norfolk, VA 23510, USA",(757) 441-2965,http://www.macarthurmemorial.org/,Norfolk +Town Point Park,36.8453265,-76.2940234,"113 Waterside Dr, Norfolk, VA 23510, USA",(757) 441-2345,https://www.sevenvenues.com/venues/detail/open-air,Norfolk +Hermitage Museum and Gardens,36.9103442,-76.3132334,"7637 N Shore Rd, Norfolk, VA 23505, USA",(757) 423-2052,https://thehermitagemuseum.org/,Norfolk +Neon District,36.8544428,-76.2885187,"707 Granby St, Norfolk, VA 23510, USA",Unknown,http://neonnfk.com/,Norfolk +Hampton Roads Naval Museum,36.8476241,-76.2945682,"1 Waterside Dr Suite 248, Norfolk, VA 23510, USA",(757) 322-2987,https://www.history.navy.mil/museums/hrnm/index.html,Norfolk +Myers House,36.85030189999999,-76.2875243,"323 E Freemason St, Norfolk, VA 23510, USA",(757) 664-6200,https://chrysler.org/moses-myers-house/,Norfolk +Ocean View Station Museum,36.9531809,-76.2512998,"111 W Ocean View Ave, Norfolk, VA 23503, USA",(757) 531-0445,https://ocean-view-station-museum.business.site/,Norfolk +Wishing Tree,36.8658013,-76.30532339999999,"Elizabeth River Trail - Ghent Loop, Norfolk, VA 23507, USA",Unknown,Unknown,Norfolk +Fort Norfolk,36.85677099999999,-76.3063044,"801 Front St, Norfolk, VA 23510, USA",(757) 754-2004,https://www.virginia.org/Listings/HistoricSites/FortNorfolk/,Norfolk +Chrysler Museum of Art,36.8563889,-76.2930556,"Chrysler Museum of Art, 1 Memorial Pl, Norfolk, VA 23510, USA",(757) 664-6200,http://www.chrysler.org/,Norfolk +Ocean View Beach Park,36.9546116,-76.25091069999999,"100 W Ocean View Ave, Norfolk, VA 23503, USA",(757) 441-1767,https://www.norfolk.gov/facilities/facility/details/Ocean-View-Beach-Park-177,Norfolk +Community Beach Park,36.9506638,-76.2453774,"700 E Ocean View Ave, Norfolk, VA 23503, USA",(757) 441-1605,https://www.norfolk.gov/Facilities/Facility/Details/-176,Norfolk +Hunter House Victorian Museum,36.8523067,-76.2926129,"240 W Freemason St, Norfolk, VA 23510, USA",(757) 623-9814,http://www.hunterhousemuseum.org/,Norfolk +VisitNorfolk,36.8460116,-76.2908101,"232 E Main St, Norfolk, VA 23510, USA",(800) 368-3097,https://www.visitnorfolk.com/,Norfolk +Tidewater park,36.8507689,-76.28587259999999,"457 St Pauls Blvd, Norfolk, VA 23510, USA",(757) 664-6510,Unknown,Norfolk +MacArthur Memorial Museum Jean MacArthur Research Center,36.8471616,-76.2881936,"198 Bank St, Norfolk, VA 23510, USA",(757) 441-2968,http://www.macarthurmemorial.org/,Norfolk +East Beach - Public Beach Access Dolphin Run,36.92905899999999,-76.1794872,"9711 Bay Point Dr, Norfolk, VA 23518, USA",Unknown,Unknown,Norfolk +Sarah Constant Beach Park,36.95893019999999,-76.258231,"300 W Ocean View Ave, Norfolk, VA 23510, USA",(757) 664-6510,https://www.norfolk.gov/Facilities/Facility/Details/Sarah-Constant-Beach-Park-178,Norfolk +New Orleans City Park,30.00339929999999,-90.0924294,"New Orleans, LA, USA",(504) 482-4888,https://neworleanscitypark.org/,New Orleans +Audubon Aquarium,29.9504543,-90.06292119999999,"1 Canal St, New Orleans, LA 70130, USA",(504) 565-3033,https://audubonnatureinstitute.org/aquarium,New Orleans +Mardi Gras World,29.9350317,-90.0614772,"1380 Port of New Orleans Pl, New Orleans, LA 70130, USA",(504) 361-7821,http://www.mardigrasworld.com/,New Orleans +New Orleans Museum of Art,29.9864722,-90.09345,"1 Collins Diboll Cir, New Orleans, LA 70124, USA",(504) 658-4100,https://noma.org/,New Orleans +Jackson Square,29.9574024,-90.0629495,"New Orleans, LA 70116, USA",(504) 658-3200,https://nola.gov/parks-and-parkways/parks-squares/jackson-square/,New Orleans +The National WWII Museum,29.9430711,-90.07053169999999,"945 Magazine St, New Orleans, LA 70130, USA",(504) 528-1944,https://www.nationalww2museum.org/,New Orleans +Audubon Zoo,29.9237334,-90.1314068,"6500 Magazine St, New Orleans, LA 70118, USA",(504) 861-2537,https://audubonnatureinstitute.org/,New Orleans +The Cabildo,29.95750430000001,-90.06390379999999,"701 Chartres St, New Orleans, LA 70130, USA",(504) 568-8975,https://louisianastatemuseum.org/museum/cabildo,New Orleans +Visit New Orleans,29.9552704,-90.0627252,"400 Toulouse St, New Orleans, LA 70130, USA",(504) 569-1401,http://www.visitneworleans.com/,New Orleans +St. Louis Cathedral,29.9579735,-90.06372809999999,"615 Pere Antoine Alley, New Orleans, LA 70116, USA",(504) 525-9585,http://www.stlouiscathedral.org/,New Orleans +JAMNOLA,29.9639431,-90.0490762,"2832 Royal St, New Orleans, LA 70117, USA",(504) 233-9152,http://www.jamnola.com/,New Orleans +Vue Orleans,29.9489518,-90.063531,"2 Canal St, New Orleans, LA 70130, USA",(504) 285-3600,https://vueorleans.com/,New Orleans +Storyland,29.9869849,-90.0980445,"5 Victory Ave, New Orleans, LA 70124, USA",(504) 483-9402,http://neworleanscitypark.com/in-the-park/Storyland,New Orleans +The Historic New Orleans Collection,29.9568565,-90.0656754,"520 Royal St, New Orleans, LA 70130, USA",(504) 523-4662,https://www.hnoc.org/,New Orleans +The Singing Oak,29.9858767,-90.0902154,"New Orleans, LA 70124, USA",(707) 689-2985,Unknown,New Orleans +The Presbytère,29.9581273,-90.0633038,"751 Chartres St, New Orleans, LA 70116, USA",(504) 568-6968,https://louisianastatemuseum.org/museum/presbytere,New Orleans +New Orleans Historic Voodoo Museum,29.95990399999999,-90.0638513,"724 Dumaine St, New Orleans, LA 70116, USA",(504) 680-0128,http://voodoomuseum.com/,New Orleans +Longue Vue House & Gardens,29.977113,-90.1227756,"7 Bamboo Rd, New Orleans, LA 70124, USA",(504) 488-5488,http://www.longuevue.com/,New Orleans +Steamboat NATCHEZ - Official Site,29.9552704,-90.0627252,"400 Toulouse St, New Orleans, LA 70130, USA",(504) 569-1401,https://www.steamboatnatchez.com/,New Orleans +The Skeleton House,29.9307905,-90.1184714,"6000 St Charles Ave, New Orleans, LA 70118, USA",Unknown,Unknown,New Orleans +Medford Railroad Park,42.3500314,-122.8809836,"799 Berrydale Ave, Medford, OR 97501, USA",(541) 613-1638,https://www.facebook.com/Medfordrailroadpark/,Medford +The Children's Museum of Southern Oregon,42.3234617,-122.8767569,"413 W Main St, Medford, OR 97501, USA",(541) 772-9922,http://www.tcmso.org/,Medford +Prescott Park,42.354921,-122.7802051,"3030 Roxy Ann Rd, Medford, OR 97504, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Prescott-Park,Medford +Oregon Hills Park,42.3379139,-122.8066255,"6001 E McAndrews Rd, Medford, OR 97504, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Oregon-Hills-Park,Medford +Donahue Frohnmayer Park,42.3391842,-122.8470722,"1687 Spring St, Medford, OR 97504, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Donohue-Frohnmayer-Park,Medford +Fichtner-Mainwaring Park,42.3114537,-122.8697892,"334 Holmes Ave, Medford, OR 97501, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Fichtner-Mainwaring-Park,Medford +Hawthorne Park Playground,42.33088079999999,-122.8679696,"501 E Main St, Medford, OR 97504, USA",(541) 774-2400,Unknown,Medford +Bear Creek Park,42.3206332,-122.8521825,"1520 Siskiyou Blvd, Medford, OR 97504, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Bear-Creek-Park,Medford +Crater Rock Museum,42.38930000000001,-122.9247103,"2002 Scenic Ave, Central Point, OR 97502, USA",(541) 664-6081,http://craterrock.com/,Medford +Crater Lake National Park Trust,42.33866389999999,-122.8806248,"1109 Court St, Medford, OR 97501, USA",(541) 770-1179,http://craterlaketrust.org/,Medford +Ruhl Park,42.3294528,-122.8410756,"235 S Modoc Ave & Hillcrest Road, Medford, OR 97504, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Ruhl-Park,Medford +Lewis Park,42.3217515,-122.8938298,"130 Lewis Ave, Medford, OR 97501, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Lewis-Park,Medford +Alba Park,42.3239634,-122.8759881,"301 W Main St, Medford, OR 97501, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Alba-Park,Medford +Liberty Park,42.332966,-122.876247,"617 N Bartlett St, Medford, OR 97501, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Liberty-Park,Medford +Don Jones Memorial Park,42.3878231,-122.8904057,"223 W Vilas Rd, Central Point, OR 97502, USA",(541) 664-3321,http://www.centralpointoregon.gov/parksrec/page/don-jones-memorial-park,Medford +Holmes Park,42.3257522,-122.840514,"185 S Modoc Ave, Medford, OR 97504, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Holmes-Park,Medford +Vogel Plaza,42.3264441,-122.871859,"12 S Central Ave, Medford, OR 97501, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Vogel-Plaza,Medford +Kennedy Park,42.35882299999999,-122.8496787,"2911 Springbrook Rd, Medford, OR 97504, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Kennedy-Elementary-School-Park,Medford +RoxyAnn Winery,42.33128960000001,-122.820383,"3283 Hillcrest Rd, Medford, OR 97504, USA",(541) 776-2315,http://www.roxyann.com/,Medford +DANCIN Vineyards,42.304285,-122.945455,"4477 S Stage Rd, Medford, OR 97501, USA",(541) 245-1133,https://www.dancin.com/,Medford +J Harvey Turnure Memorial Park,41.0362827,-73.7617601,"26 Lake St, White Plains, NY 10603, USA",(914) 422-1336,http://www.cityofwhiteplains.com/Facilities/Facility/Details/Turnure-Park-36,White Plains +Saxon Woods Park,40.9866807,-73.7451978,"1800 Mamaroneck Ave, White Plains, NY 10605, USA",(914) 995-4480,http://parks.westchestergov.com/saxon-woods-park,White Plains +Battle of White Plains Park,41.0300007,-73.7798287,"76 Battle Ave, White Plains, NY 10606, USA",Unknown,http://www.ci.white-plains.ny.us/index.aspx?nid=103,White Plains +Percy Grainger House,41.02730399999999,-73.7671042,"7 Cromwell Pl, White Plains, NY 10601, USA",(914) 281-1610,http://percygraingeramerica.org/,White Plains +White Plains Park,41.03398620000001,-73.7629097,"White Plains, NY 10604, USA",(914) 494-1632,Unknown,White Plains +Druss Park,41.0205271,-73.76933629999999,"S Lexington Ave & Prospect St, White Plains, NY 10601, USA",(914) 422-1336,http://ny-whiteplains.civicplus.com/facilities/facility/details/druss-park-32,White Plains +Battle Hill Park,41.0320629,-73.7829883,"115 Battle Ave, White Plains, NY 10606, USA",(914) 422-1336,http://www.cityofwhiteplains.com/,White Plains +Liberty Park,41.0427877,-73.752485,"Lake St, White Plains, NY 10604, USA",(914) 422-1336,http://www.cityofwhiteplains.com/facilities/facility/details/Liberty-Park-47,White Plains +Gardella Park,41.041552,-73.7738574,"175 Ferris Ave, White Plains, NY 10601, USA",(914) 422-1336,Unknown,White Plains +Garden of Remembrance Holocaust Memorial,41.03080620000001,-73.76880969999999,"119 Martine Ave, White Plains, NY 10601, USA",(914) 696-0738,https://parks.westchestergov.com/garden-of-remembrance,White Plains +Travis Hill Park,41.0501024,-73.7790416,"White Plains, NY 10603, USA",Unknown,Unknown,White Plains +Greenburgh Nature Center,41.0048811,-73.8086204,"99 Dromore Rd, Scarsdale, NY 10583, USA",(914) 723-3470,http://www.greenburghnaturecenter.org/,White Plains +LEGOLAND Discovery Center Westchester,40.9668551,-73.8571802,"Ridge Hill Mall, LEGOLAND Discovery Center Westchester, 39 Fitzgerald Street, Yonkers, NY 10710, USA",(914) 775-6015,https://westchester.legolanddiscoverycenter.com/,White Plains +Neuberger Museum of Art,41.0483705,-73.7030915,"Park in the W1 Lot, 735 Anderson Hill Rd, Purchase, NY 10577, USA",(914) 251-6100,http://neuberger.org/,White Plains +Westchester Children's Museum,40.964538,-73.6771867,"100 Playland Pkwy, Rye, NY 10580, USA",(914) 421-5050,http://discoverwcm.org/,White Plains +The Puzzle Parlour,41.0290615,-73.7661578,"131 Court St, White Plains, NY 10601, USA",(914) 368-8222,http://www.thepuzzleparlour.com/white-plains/,White Plains +Kensico Dam Plaza,41.0715526,-73.76746910000001,"1 Bronx River Parkway, Valhalla, NY 10595, USA",(914) 231-4033,http://parks.westchestergov.com/kensico-dam-plaza,White Plains +Delfino Park,41.0387695,-73.75537609999999,"110 Lake St, White Plains, NY 10604, USA",(914) 422-1336,http://www.cityofwhiteplains.com/facilities/facility/details/Delfino-Park-37,White Plains +Playland Park,40.96514189999999,-73.6751251,"1 Playland Pkwy, Rye, NY 10580, USA",(914) 820-3070,http://playland.com/,White Plains +Weinberg Nature Center,40.97565499999999,-73.754634,"455 Mamaroneck Rd, Scarsdale, NY 10583, USA",(914) 722-1289,http://www.weinbergnaturecenter.org/,White Plains +National Cowboy & Western Heritage Museum,35.5356997,-97.4831286,"1700 NE 63rd St, Oklahoma City, OK 73111, USA",(405) 478-2250,http://nationalcowboymuseum.org/,Oklahoma City +Oklahoma City National Memorial & Museum,35.4731496,-97.5170593,"620 N Harvey Ave, Oklahoma City, OK 73102, USA",(405) 235-3313,http://memorialmuseum.com/,Oklahoma City +Oklahoma City Zoo,35.5238895,-97.4724932,"2000 Remington Pl, Oklahoma City, OK 73111, USA",(405) 424-3344,https://www.okczoo.org/,Oklahoma City +Oklahoma City Museum of Art,35.4695638,-97.5205029,"415 Couch Dr, Oklahoma City, OK 73102, USA",(405) 236-3100,http://www.okcmoa.com/,Oklahoma City +Frontier City,35.5856674,-97.4394665,"11501 N I- 35 Service Rd, Oklahoma City, OK 73131, USA",(405) 478-2140,https://www.sixflags.com/frontiercity?utm_source=googlebusinessprofile&utm_medium=organic&utm_campaign=Google+Business+Profile,Oklahoma City +Science Museum Oklahoma,35.5237553,-97.4754913,"2020 Remington Pl, Oklahoma City, OK 73111, USA",(405) 602-6664,http://www.sciencemuseumok.org/,Oklahoma City +Myriad Botanical Gardens,35.46533110000001,-97.5179073,"301 W Reno Ave, Oklahoma City, OK 73102, USA",(405) 445-7080,http://www.myriadgardens.org/,Oklahoma City +Museum of Osteology,35.36483489999999,-97.4418414,"10301 S Sunnylane Rd, Oklahoma City, OK 73160, USA",(405) 814-0006,http://www.skeletonmuseum.com/,Oklahoma City +Bricktown Water Taxi,35.4652226,-97.5092937,"111 S Mickey Mantle Dr, Oklahoma City, OK 73104, USA",(405) 234-8294,http://www.bricktownwatertaxi.com/,Oklahoma City +Hurricane Harbor Oklahoma City,35.46222799999999,-97.588412,"3908 W Reno Ave, Oklahoma City, OK 73107, USA",(405) 943-9687,https://www.sixflags.com/hurricaneharborokc?utm_source=googlebusinessprofile&utm_medium=organic&utm_campaign=Google+Business+Profile,Oklahoma City +Centennial Land Run Monument,35.4611333,-97.5051775,"200 Centennial Ave, Oklahoma City, OK 73102, USA",(405) 297-8912,http://www.visitokc.com/listings/oklahoma-land-run-monument/467/,Oklahoma City +Oklahoma City's Adventure District,35.52691389999999,-97.472249,"1 Remington Pl, Oklahoma City, OK 73111, USA",(405) 424-1000,http://www.okcadventure.com/,Oklahoma City +Oklahoma History Center,35.4940917,-97.4997465,"800 Nazih Zuhdi Dr, Oklahoma City, OK 73105, USA",(405) 522-0765,http://www.okhistory.org/historycenter,Oklahoma City +Sanctuary Asia,35.5197346,-97.4724662,"2000 Remington Pl, Oklahoma City, OK 73111, USA",Unknown,https://www.okczoo.org/directions--parking,Oklahoma City +OKC Underground,35.4701517,-97.5141986,"300 N Broadway Ave, Oklahoma City, OK 73102, USA",(405) 235-3500,http://downtownokc.com/underground/,Oklahoma City +Lighthouse,35.565183,-97.578676,"Lake Hefner Pkwy, Oklahoma City, OK 73120, USA",Unknown,Unknown,Oklahoma City +Wheeler Ferris Wheel at Wheeler District,35.45173479999999,-97.5319819,"1701 S Western Ave, Oklahoma City, OK 73109, USA",(405) 655-8455,http://www.wheelerdistrict.com/visit,Oklahoma City +Stockyards City Main Street,35.45323019999999,-97.5566911,"2401 Exchange Ave Suite D, Oklahoma City, OK 73108, USA",(405) 235-7267,http://www.stockyardscity.org/,Oklahoma City +Bricktown River Walk Park,35.4620033,-97.5054353,"400 E Reno Ave, Oklahoma City, OK 73104, USA",Unknown,Unknown,Oklahoma City +Martin Nature Park,35.6090059,-97.6090052,"5000 W Memorial Rd, Oklahoma City, OK 73142, USA",(405) 297-1429,https://www.okc.gov/departments/parks-recreation/martin-park-nature-center,Oklahoma City +Navy Pier,41.8918633,-87.6050944,"600 E Grand Ave, Chicago, IL 60611, USA",(312) 595-7437,https://navypier.org/,Chicago +Skydeck Chicago,41.8788761,-87.635915,"233 S Wacker Dr, Chicago, IL 60606, USA",(312) 875-9447,https://theskydeck.com/?utm_source=google&utm_medium=organic&utm_campaign=googlemybusiness,Chicago +360 CHICAGO,41.8990104,-87.6232416,"875 N Michigan Ave 94th floor, Chicago, IL 60611, USA",(888) 875-8439,https://360chicago.com/?utm_source=GMBlisting&utm_medium=organic,Chicago +Willis Tower,41.8788764,-87.6359149,"233 S Wacker Dr, Chicago, IL 60606, USA",(312) 875-0066,https://www.willistower.com/,Chicago +Millennium Park,41.8825524,-87.62255139999999,"201 E Randolph St, Chicago, IL 60602, USA",(312) 742-1168,https://www.chicago.gov/city/en/depts/dca/supp_info/millennium_park.html,Chicago +Riverwalk,41.8884124,-87.62262679999999,"E Wacker Dr, Chicago, IL 60601, USA",Unknown,https://www.chicago.gov/city/en/sites/chicagoriverwalk/home.html,Chicago +Shedd Aquarium,41.8675726,-87.614038,"1200 S DuSable Lk Shr Dr, Chicago, IL 60605, USA",(312) 939-2438,https://www.sheddaquarium.org/,Chicago +Grant Park,41.8739324,-87.61988079999999,"Chicago, IL, USA",(312) 742-3918,https://www.chicagoparkdistrict.com/parks-facilities/grant-park/,Chicago +Buckingham Fountain,41.87579439999999,-87.6189483,"301 S Columbus Dr, Chicago, IL 60605, USA",(312) 742-7529,http://www.chicagoparkdistrict.com/,Chicago +Lincoln Park Zoo,41.921703,-87.6336403,"Chicago, IL 60614, USA",(312) 742-2000,https://www.lpzoo.org/,Chicago +"Museum of Science and Industry, Chicago",41.7905726,-87.5830659,"5700 S DuSable Lk Shr Dr, Chicago, IL 60637, USA",(773) 684-1414,https://msichicago.org/,Chicago +Field Museum,41.86626100000001,-87.6169805,"1400 S Lake Shore Dr, Chicago, IL 60605, USA",(312) 922-9410,https://www.fieldmuseum.org/,Chicago +Chicago Cultural Center,41.8837536,-87.6249515,"78 E Washington St, Chicago, IL 60602, USA",(312) 744-5000,http://www.chicagoculturalcenter.org/,Chicago +Chicago History Museum,41.9117293,-87.63167120000001,"1601 N Clark St, Chicago, IL 60614, USA",(312) 642-4600,https://home.chicagohistory.org/,Chicago +Cloud Gate,41.8826572,-87.6233039,"201 E Randolph St, Chicago, IL 60602, USA",Unknown,https://www.cityofchicago.org/city/en/depts/dca/supp_info/chicago_s_publicartcloudgateinmillenniumpark.html,Chicago +Wrigley Field,41.9484384,-87.6553327,"1060 W Addison St, Chicago, IL 60613, USA",(773) 404-2827,http://chicago.cubs.mlb.com/chc/ballpark/,Chicago +Chicago Children's Museum,41.891408,-87.60914400000001,"700 E Grand Ave, Chicago, IL 60611, USA",(312) 527-1000,http://www.chicagochildrensmuseum.org/,Chicago +MUSEUM OF ICE CREAM,41.8902605,-87.6231494,"435 N Michigan Ave Suite G, Chicago, IL 60611, USA",Unknown,http://www.museumoficecream.com/,Chicago +The Richard H. Driehaus Museum,41.8942872,-87.626539,"40 E Erie St, Chicago, IL 60611, USA",(312) 482-8933,http://www.driehausmuseum.org/,Chicago +Garfield Park Conservatory,41.8862729,-87.7172554,"300 N Central Park Ave, Chicago, IL 60624, USA",(773) 638-1766,https://garfieldconservatory.org/,Chicago +El Paso Zoo and Botanical Gardens,31.76761190000001,-106.4451502,"4001 E Paisano Dr, El Paso, TX 79905, USA",(915) 212-0966,http://www.elpasozoo.org/,El Paso +El Paso Museum of Art,31.75858760000001,-106.4902692,"1 Arts Festival Plaza, El Paso, TX 79901, USA",(915) 212-0300,https://epma.art/,El Paso +National Border Patrol Museum,31.9030697,-106.4486364,"4315 Woodrow Bean Transmountain Dr, El Paso, TX 79924, USA",(915) 759-6060,http://www.borderpatrolmuseum.com/,El Paso +San Jacinto Plaza,31.7596192,-106.4885225,"114 W Mills Ave, El Paso, TX 79901, USA",(915) 534-0600,https://new.elpasotexas.gov/parks-and-recreation/aquatics/spray-parks/,El Paso +Casa de Azucar,31.83339590000001,-106.4404549,"4301 Leavell Ave, El Paso, TX 79904, USA",Unknown,https://www.atlasobscura.com/places/casa-de-azucar,El Paso +El Paso Holocaust Museum & Study Center,31.762324,-106.491945,"715 N Oregon St, El Paso, TX 79902, USA",(915) 351-0048,http://www.elpasoholocaustmuseum.org/,El Paso +Franklin Mountains State Park,31.91170269999999,-106.5173673,"Tom Mays Park Access Rd, El Paso, TX 79911, USA",(915) 444-9100,http://www.tpwd.state.tx.us/state-parks/parks/find-a-park/franklin-mountains-state-park,El Paso +Old Fort Bliss Replica Cultural Center,31.8000486,-106.4266952,"5054 Pershing Rd, El Paso, TX 79925, USA",(915) 588-8482,https://bliss.armymwr.com/programs/old-fort-bliss-replica-cultural-center,El Paso +El Paso Museum of Archaeology,31.9036702,-106.4490514,"4301 Woodrow Bean Transmountain Dr, El Paso, TX 79924, USA",(915) 755-4332,http://epmarch.org/,El Paso +Wigwam Museum,31.7578173,-106.4883395,"110 E San Antonio Ave, El Paso, TX 79901, USA",(915) 274-9531,http://www.ghosts915.org/,El Paso +Tom Lea Upper Park,31.77492709999999,-106.4913005,"900 Rim Rd, El Paso, TX 79902, USA",(915) 212-0092,https://www.elpasotexas.gov/parks-and-recreation,El Paso +Magoffin Home State Historic Site,31.7624871,-106.4769802,"1120 Magoffin Ave, El Paso, TX 79901, USA",(915) 533-5147,http://www.visitmagoffinhome.com/,El Paso +House Of Sugar,31.83341019999999,-106.4404588,"4301 Leavell Ave, El Paso, TX 79904, USA",Unknown,Unknown,El Paso +Ascarate Park,31.7522854,-106.4023314,"6900 Delta Dr, El Paso, TX 79905, USA",(915) 771-2380,https://www.epcountyparks.com/parks/,El Paso +Downtown El Paso,31.7589538,-106.4886907,"201 N Oregon St, El Paso, TX 79901, USA",(915) 400-2294,https://downtownelpaso.com/,El Paso +Keystone Heritage Park and the El Paso Desert Botanical Garden,31.820571,-106.563529,"4200 Doniphan Dr, El Paso, TX 79922, USA",(915) 490-8571,http://www.keystoneheritagepark.com/,El Paso +Murchison Rogers Park,31.782629,-106.479791,"1600 Scenic Dr, El Paso, TX 79902, USA",(915) 803-8914,https://www.elpasotexas.gov/parks-and-recreation,El Paso +Rio Bosque Park,31.6409649,-106.310328,"10716 Socorro Rd, El Paso, TX 79927, USA",(915) 747-8663,https://www.utep.edu/cerm/rio-bosque/rio-bosque-home.html,El Paso +Centennial Museum and Chihuahuan Desert Gardens,31.7692881,-106.5059544,"500 W University Ave, El Paso, TX 79968, USA",(915) 747-5565,http://museum.utep.edu/,El Paso +Chamizal National Memorial,31.76724089999999,-106.4543374,"800 S San Marcial St, El Paso, TX 79905, USA",(915) 532-7273,https://www.nps.gov/cham/index.htm,El Paso +Burpee Museum of Natural History,42.2773242,-89.08814249999999,"737 N Main St, Rockford, IL 61103, USA",(815) 965-3433,http://www.burpee.org/,Rockford +Midway Village Museum,42.2804989,-88.98463989999999,"6799 Guilford Rd, Rockford, IL 61107, USA",(815) 397-9112,https://www.midwayvillage.com/,Rockford +Discovery Center Museum,42.2771046,-89.0894304,"711 N Main St, Rockford, IL 61103, USA",(815) 963-6769,http://www.discoverycentermuseum.org/,Rockford +Tinker Swiss Cottage Museum and Gardens,42.26411,-89.102796,"411 Kent St, Rockford, IL 61102, USA",(815) 964-2424,http://www.tinkercottage.com/,Rockford +Anderson Japanese Gardens,42.2900539,-89.05779539999999,"318 Spring Creek Rd, Rockford, IL 61107, USA",(815) 229-9390,http://andersongardens.org/,Rockford +Nicholas Conservatory & Gardens,42.28229330000001,-89.0707044,"1354 N 2nd St, Rockford, IL 61107, USA",(815) 987-8858,http://www.nicholasconservatory.com/,Rockford +Erlander Home Museum,42.26409779999999,-89.08869279999999,"404 S 3rd St, Rockford, IL 61104, USA",(815) 963-5559,http://www.swedishhistorical.org/,Rockford +Ethnic Heritage Museum,42.2611002,-89.100915,"1129 S Main St, Rockford, IL 61101, USA",(815) 962-7402,https://www.ethnicheritagemuseum.org/,Rockford +Sinnissippi Park,42.2827292,-89.0641156,"1401 N 2nd St, Rockford, IL 61107, USA",(815) 987-8858,http://rockfordparkdistrict.org/ncg,Rockford +Klehm Arboretum & Botanic Garden,42.2444523,-89.11254020000001,"2715 S Main St, Rockford, IL 61102, USA",(815) 965-8146,http://www.klehm.org/,Rockford +Davis Park at Founders Landing,42.26825019999999,-89.0953792,"320 S Wyman St, Rockford, IL 61101, USA",(815) 968-5600,https://www.gorockford.com/listings/davis-park-at-founders-landing/275/,Rockford +Frank Lloyd Wright's Laurent House,42.2998334,-89.0243617,"4646 Spring Brook Rd, Rockford, IL 61114, USA",(815) 877-2952,http://www.laurenthouse.com/,Rockford +Sinnissippi Gardens,42.2840305,-89.0679007,"1354 N 2nd St, Rockford, IL 61107, USA",(815) 987-8858,https://nicholasconservatory.com/,Rockford +Riverfront Museum Park,42.2768431,-89.0888593,"Ste 3, 711 N Main St, Rockford, IL 61103, USA",(815) 962-0105,Unknown,Rockford +Searls Park,42.3006848,-89.1241445,"4950 Safford Rd, Rockford, IL 61101, USA",(815) 987-8800,http://rockfordparkdistrict.org/,Rockford +La Paloma Gardens,42.2936707,-89.0346172,"3622 Brookview Rd, Rockford, IL 61107, USA",(815) 399-0324,http://www.lapalomagardens.com/,Rockford +Rockford Park District,42.268422,-89.0972335,"401 S Main St, Rockford, IL 61101, USA",(815) 987-8800,https://rockfordparkdistrict.org/,Rockford +Aldeen Park,42.2740598,-89.0227687,"623 N Alpine Rd, Rockford, IL 61107, USA",Unknown,https://www.rockfordparkdistrict.org/,Rockford +Blackhawk Springs Forest Preserve,42.2046939,-88.9916363,"5360 Mulford Road &, 5801 Perryville Rd, Rockford, IL 61109, USA",(815) 877-6100,http://winnebagoforest.org/preserves/blackhawk-springs/,Rockford +Ingersoll Centennial Park,42.2662975,-89.09143920000001,"315 S 1st St, Rockford, IL 61104, USA",(815) 987-8800,http://rockfordparkdistrict.org/,Rockford +Mirador de Aguadilla,18.42155,-67.15245,"# km. 128.4, Cll 2, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +El Parterre,18.4321045,-67.1543509,"CRJW+R7R, C. José de Diego, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +Parqué Colón,18.4145875,-67.1597969,"CR7R+R3P, Aguadilla, Aguada 00602, Puerto Rico",Unknown,Unknown,Aguadilla +Rompeolas Beach,18.4359708,-67.15639999999999,"15 PR-111, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +Museo de Arte de Aguadilla y del Caribe,18.4291984,-67.154822,"55 C. Ramón E. Betances, Aguadilla, 00603, Puerto Rico",(787) 649-0000,http://www.maacaguadilla.com/,Aguadilla +Casas de Colores Aguadilla - Pintalto,18.4323759,-67.15359670000001,"CRJW+XH2, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +Silla Aguadilla,18.424973,-67.1550389,"Tribunal de Primera Instancia Aguadilla, 70 Calle Concepción, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +Letras Aguadilla,18.4296099,-67.15575199999999,"CRHV+VQ7, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +Mirador al oceano,18.4415111,-67.1569813,"CRRV+J6, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +Las Cascadas Waterpark,18.4392501,-67.1452454,"PR-2, Aguadilla, 00603, Puerto Rico",(787) 819-5558,https://www.lascascadaswaterpark.com/,Aguadilla +Fuerte De La Concepción,18.4356527,-67.1557043,"CRPV+7P7, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +Bandera de los Reyes Magos,18.4283023,-67.1534398,"CRHW+8JF, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +La Bandera de Villa Lobos,18.4283134,-67.1534673,"108 Calle Manuel Corchado, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +El Pescador monumento,18.4301055,-67.1556054,"CRJV+2RH, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +Mural Llegada de España,18.4027165,-67.1532726,"CR3W+3MQ, PR-111, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +Plaza Pública de Aguadilla Rafael Hernández Marín,18.4299065,-67.1542407,"CRHW+X86, Aguadilla, 00603, Puerto Rico",Unknown,https://www.facebook.com/ciudaddeencantos,Aguadilla +Faro de Punta Borinquen,18.4971277,-67.1488277,"FVW2+VF3, Borinquen Ave, Borinquen, Aguadilla 00603, Puerto Rico",(954) 832-6493,http://borinquenbeacon.com/,Aguadilla +Monumento en Homenaje a los Indios Taínos - Aguadilla,18.4058209,-67.1548131,"CR4W+83F, PR-115, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +Bridges Surf Beach,18.4269466,-67.1555709,"CRGV+QQF, P.º Real Marina, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +The Nest by Crash Boat Experiences,18.4595981,-67.1643853,"Crash Boat, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,Aguadilla +Omaha's Henry Doorly Zoo and Aquarium,41.2258648,-95.9271093,"3701 S 10th St, Omaha, NE 68107, USA",(402) 733-8400,https://www.omahazoo.com/,Omaha +The Durham Museum,41.251469,-95.9289649,"801 S 10th St, Omaha, NE 68108, USA",(402) 444-5071,https://durhammuseum.org/,Omaha +Omaha Children's Museum,41.2551251,-95.9429158,"500 S 20th St, Omaha, NE 68102, USA",(402) 342-6164,https://www.ocm.org/,Omaha +Lauritzen Gardens/Kenefick Park,41.23416870000001,-95.9165125,"100 Bancroft St, Omaha, NE 68108, USA",(402) 346-4002,https://www.lauritzengardens.org/,Omaha +Desert Dome,41.2256687,-95.9277329,"3701 S 10th St, Omaha, NE 68108, USA",(402) 733-8401,http://omahazoo.com/exhibits/desert-dome,Omaha +Heartland of America Park at The RiverFront,41.25668099999999,-95.924842,"800 Douglas St, Omaha, NE 68102, USA",(402) 599-6565,http://www.theriverfrontomaha.com/,Omaha +Bob Kerrey Pedestrian Bridge.,41.26563309999999,-95.9223128,"705 Riverfront Dr, Omaha, NE 68102, USA",(402) 444-5900,http://omaha.net/places/bob-kerrey-pedestrian-bridge,Omaha +Stingray Beach,41.2266122,-95.9239832,"3701 S 10th St, Omaha, NE 68107, USA",(402) 733-8401,https://www.omahazoo.com/stingray-beach,Omaha +Fun-Plex Waterpark & Rides,41.203969,-96.019854,"7003 Q St, Omaha, NE 68117, USA",(402) 331-8436,http://fun-plex.com/,Omaha +OPPD Arboretum,41.2786497,-96.0783359,"Omaha, NE 68164, USA",(402) 536-4131,http://www.oppd.com/residential/trees-power-lines/arboretum/,Omaha +Joslyn Castle & Gardens,41.2616075,-95.9718884,"3902 Davenport St, Omaha, NE 68131, USA",(402) 595-2199,http://joslyncastle.com/tours,Omaha +Lewis & Clark Landing at The RiverFront,41.2617743,-95.9244421,"345 Riverfront Dr, Omaha, NE 68102, USA",(402) 599-6565,http://www.theriverfrontomaha.com/,Omaha +Gene Leahy Mall at The RiverFront,41.2580197,-95.931216,"1001 Douglas St, Omaha, NE 68102, USA",(402) 599-6565,https://www.theriverfrontomaha.com/,Omaha +Turner Park,41.2587427,-95.9590851,"3110 Farnam St, Omaha, NE 68131, USA",(402) 444-5930,http://parks.cityofomaha.org/park-details?pid=189,Omaha +General Crook House Museum,41.3102164,-95.9604175,"5730 N 30th St, Omaha, NE 68111, USA",(402) 455-9990,http://www.douglascohistory.org/,Omaha +Joslyn Art Museum,41.260395,-95.9460525,"2200 Dodge St, Omaha, NE 68102, USA",(402) 342-3300,http://www.joslyn.org/,Omaha +Pioneer Courage Park,41.261041,-95.9355887,"1450 Capitol Ave, Omaha, NE 68179, USA",(402) 602-3930,Unknown,Omaha +Chef Boyardee Statue,41.25416080000001,-95.9249921,"707 Conagra Dr, Omaha, NE 68102, USA",Unknown,Unknown,Omaha +The West Maple Rock: World famous.,41.2905893,-96.1590077,"15600 W Maple Rd, Omaha, NE 68116, USA",Unknown,https://m.facebook.com/groups/2486192221476339,Omaha +Stinson Park,41.237924,-96.0155969,"2285 S 67th St, Omaha, NE 68106, USA",(402) 496-1616,http://www.aksarbenvillage.com/,Omaha +Riverside Discovery Center,41.85541449999999,-103.6817675,"1600 S Beltline Hwy W, Scottsbluff, NE 69361, USA",(308) 630-6236,http://www.riversidediscoverycenter.org/,Scottsbluff +Scotts Bluff National Monument,41.8343571,-103.7072063,"190276 Old Oregon Trail, Gering, NE 69341, USA",(308) 436-9700,http://www.nps.gov/scbl,Scottsbluff +Riverside Park,41.8534624,-103.6840336,"Scottsbluff, NE 69361, USA",(308) 632-0058,http://www.scottsbluff.org/,Scottsbluff +Centennial Park,41.8660739,-103.6566984,"Central Park, 400 E 20th St, Scottsbluff, NE 69361, USA",Unknown,Unknown,Scottsbluff +Legacy of the Plains Museum,41.82238119999999,-103.6871574,"2930 Old Oregon Trail, Gering, NE 69341, USA",(308) 436-1989,http://www.legacyoftheplains.org/,Scottsbluff +Square D,41.8597225,-103.6611094,"1311 1st Ave, Scottsbluff, NE 69361, USA",Unknown,Unknown,Scottsbluff +Frank Park,41.87489910000001,-103.6605122,"Scottsbluff, NE 69361, USA",Unknown,Unknown,Scottsbluff +Burlington Park,41.85693020000001,-103.6670944,"1000 Ave C, Scottsbluff, NE 69361, USA",Unknown,Unknown,Scottsbluff +Planet Bounce Family Fun Center,41.8694648,-103.6492767,"2302 Frontage Rd #63, Scottsbluff, NE 69361, USA",(308) 436-5941,Unknown,Scottsbluff +Fish Yakutat,59.56255279999999,-139.7414723,"Yakutat, AK 99689, USA",(907) 410-7300,Unknown,Yakutat +Cannon Beach,59.4922001,-139.7280193,"NF-99681, Yakutat, AK 99689, USA",Unknown,Unknown,Yakutat +Riverfront Park,47.660491,-117.4210382,"507 N Howard St, Spokane, WA 99201, USA",(509) 625-6600,http://riverfrontspokane.org/,Spokane +Manito Park,47.63942,-117.4093973,"1702 S Grand Blvd, Spokane, WA 99203, USA",(509) 625-6200,http://www.manitopark.org/,Spokane +Numerica SkyRide at Riverfront Spokane,47.6603492,-117.4224572,"720 W Spokane Falls Blvd, Spokane, WA 99201, USA",(509) 625-6600,https://my.spokanecity.org/riverfrontpark/attractions/skyride/,Spokane +Northwest Museum of Arts & Culture,47.6569592,-117.445495,"2316 W 1st Ave, Spokane, WA 99201, USA",(509) 456-3931,http://www.northwestmuseum.org/,Spokane +Spokane Falls (Upper Falls),47.663066,-117.4231896,"W North River Dr, Spokane, WA 99201, USA",Unknown,Unknown,Spokane +Looff Carrousel and Gift Shop,47.6606759,-117.4202831,"W Spokane Falls Blvd, Spokane, WA 99201, USA",(509) 625-6600,https://my.spokanecity.org/riverfrontpark/attractions/looff-carrousel/,Spokane +Rotary Fountain,47.6605845,-117.4211272,"507 N Howard St, Spokane, WA 99201, USA",Unknown,Unknown,Spokane +Huntington Park,47.6608714,-117.4252427,"350 N Post St, Spokane, WA 99201, USA",(509) 625-6200,Unknown,Spokane +Spokane Falls (Lower Falls),47.6616466,-117.4253254,"W North River Dr, Spokane, WA 99201, USA",Unknown,Unknown,Spokane +Edwidge Woldson Park,47.64799949999999,-117.4200789,"525 W 7th Ave, Spokane, WA 99204, USA",(509) 625-6624,Unknown,Spokane +The Great Northern Clocktower,47.661494,-117.41904,"47°39'41. 117°25'08., 4 E 5th Ave, Spokane, WA 99202, USA",(509) 625-6600,Unknown,Spokane +Cliff Park,47.6445176,-117.4187412,"426 W 12th Ave, Spokane, WA 99201, USA",(509) 625-6200,http://spokaneparks.org/Parks/park/cliff_park/,Spokane +John A. Finch Arboretum,47.6414911,-117.4667133,"3404 W Woodland Blvd, Spokane, WA 99224, USA",(509) 363-5466,https://my.spokanecity.org/urbanforestry/programs/finch-arboretum/,Spokane +Wonderland Family Fun Center Pizza - & Local brews,47.75355559999999,-117.4103804,"10515 N Division St, Spokane, WA 99218, USA",(509) 468-4386,http://wonderlandspokane.com/,Spokane +snxw meneɂ,47.6634676,-117.421747,"825-899 N Howard St, Spokane, WA 99201, USA",Unknown,Unknown,Spokane +Drumheller Springs Historical Park,47.6870671,-117.4396426,"1915 W Dalton Ave, Spokane, WA 99205, USA",Unknown,http://my.spokanecity.org/parks/,Spokane +Spokane Party Trolley,47.6563704,-117.3986172,"109 S Scott St, Spokane, WA 99202, USA",(509) 879-6309,http://spokanepartytrolley.com/,Spokane +Splash Down,47.67325779999999,-117.2548371,"11127 E Mission Ave, Spokane Valley, WA 99206, USA",Unknown,https://splashdownfamilywaterpark.com/,Spokane +Gaiser Conservatory,47.63554999999999,-117.411742,"4 W 21st Ave, Spokane, WA 99203, USA",(509) 363-5455,https://my.spokanecity.org/parks/gardens/gaiser-conservatory/,Spokane +Duncan Garden,47.6345011,-117.4117468,"Spokane, WA 99203, USA",(509) 625-6624,https://my.spokanecity.org/parks/gardens/duncan/,Spokane +Resaca De La Palma State Park,25.9968,-97.571626,"1000 New Carmen Ave, Brownsville, TX 78521, USA",(956) 350-2920,http://tpwd.texas.gov/state-parks/resaca-de-la-palma,Brownsville +Gladys Porter Zoo,25.9133667,-97.4953825,"500 E Ringgold St, Brownsville, TX 78520, USA",(956) 546-7187,http://gladysporterzoo.org/,Brownsville +Historic Brownsville Museum,25.9075,-97.4991667,"641 E Madison St, Brownsville, TX 78520, USA",(956) 548-1313,http://www.mitteculturaldistrict.org/,Brownsville +Palo Alto Battlefield National Historical Park,26.0167821,-97.4790262,"7200 Paredes Line Rd, Brownsville, TX 78526, USA",(956) 541-2785,http://www.nps.gov/paal/index.htm,Brownsville +Stillman House Museum,25.9008354,-97.4963038,"1325 E Washington St, Brownsville, TX 78520, USA",(956) 541-5560,http://www.brownsvillehistory.org/,Brownsville +Boca Chica Wildlife Refuge,26.0042398,-97.1944361,"Boca Chica Blvd, Brownsville, TX 78521, USA",Unknown,http://tpwd.texas.gov/huntwild/wildlife/wildlife-trails/coastal/lower/boca-chica-loop,Brownsville +Children's Museum of Brownsville,25.9163297,-97.4961083,"501 E Ringgold St #5, Brownsville, TX 78520, USA",(956) 548-9300,http://www.cmofbrownsville.org/,Brownsville +Brownsville Museum of Fine Art,25.9116478,-97.4938899,"660 E Ringgold St, Brownsville, TX 78520, USA",(956) 542-0941,http://www.bmfa.us/,Brownsville +Brownsville Historic Battlefield Trail,25.9625709,-97.4889676,"1 Event Center, Brownsville, TX 78526, USA",Unknown,https://brownsville.org/members/historic-battlefield-trail/,Brownsville +Ernesto Gamez Cascade Park,25.9575527,-97.4572736,"3510 Old Port Isabel Rd, Brownsville, TX 78526, USA",(956) 838-0162,Unknown,Brownsville +Alice Wilson Hope Park,25.8992325,-97.4996924,"1300 E Levee St, Brownsville, TX 78520, USA",(956) 542-2064,http://parks.cob.us/,Brownsville +Sabal Palm Sanctuary,25.8523259,-97.4177959,"8435 Sabal Palm Grove Rd, Brownsville, TX 78521, USA",(956) 541-8034,http://www.sabalpalmsanctuary.org/,Brownsville +"Historic ""Old Morgue"" at Fort Brown",25.8984584,-97.4916265,"Old Morgue, Brownsville, TX 78520, USA",(512) 472-0102,https://explorebtx.com/the-future-of-two-nations-decided-here/,Brownsville +Costumes of the Americas Museum,25.9081707,-97.4987729,"1004 E 6th St, Brownsville, TX 78520, USA",(956) 525-7252,http://www.brownsvillehistory.org/,Brownsville +Joe & Tony Oliveira Park,25.938466,-97.5213399,"104 El Paso Rd, Brownsville, TX 78520, USA",(956) 547-6861,Unknown,Brownsville +Boca Chica To Mars Mural,25.9034183,-97.4978565,"1025 E Adams St, Brownsville, TX 78520, USA",Unknown,Unknown,Brownsville +Resaca de la Palma National Battlefield,25.9379678,-97.486538,"1024 Paredes Line Rd, Brownsville, TX 78521, USA",(956) 541-2785,http://www.nps.gov/paal/historyculture/resacadelapalma.htm,Brownsville +Southern Pacific Linear Park,25.9106026,-97.4954546,"Brownsville, TX 78520, USA",(956) 542-2064,http://parks.cob.us/,Brownsville +Monte Bella Trails Park,25.9533733,-97.541087,"2485 W Alton Gloor Blvd, Brownsville, TX 78520, USA",(956) 542-2064,http://www.cob.us/341/Monte-Bella-Park,Brownsville +Centro Cultural Cameron Park,25.9701652,-97.483784,"2100 Avenida Gregory, Brownsville, TX 78526, USA",(956) 547-7002,https://www.cameroncountytx.gov/parks-community-parks/parks-la-esperanza/,Brownsville +Jonathan Hager House Museum,39.639811,-77.73025059999999,"110 Key St, Hagerstown, MD 21740, USA",(301) 739-8393,http://www.hagerstownmd.org/index.aspx?NID=309,Hagerstown +Hagerstown Roundhouse Museum,39.6427978,-77.7341185,"296 S Burhans Blvd, Hagerstown, MD 21740, USA",(301) 739-4665,http://www.roundhouse.org/,Hagerstown +Miller House Museum,39.6434413,-77.7234661,"135 W Washington St, Hagerstown, MD 21740, USA",(301) 797-8782,https://washcohistory.org/,Hagerstown +Washington County Museum of Fine Arts,39.6370417,-77.7314889,"401 Museum Dr, Hagerstown, MD 21740, USA",(301) 739-5727,http://www.wcmfa.org/,Hagerstown +Discovery Station At Hagerstown Inc,39.6431407,-77.7230347,"101 W Washington St, Hagerstown, MD 21740, USA",(301) 790-0076,http://www.discoverystation.org/,Hagerstown +The Hagerstown Cultural Trail,39.637632,-77.725664,"160 Hood St, Hagerstown, MD 21740, USA",(301) 739-8577,http://hagerstownculturaltrail.com/,Hagerstown +Hagerstown City Park,39.63615250000001,-77.7310032,"501 Virginia Ave, Hagerstown, MD 21740, USA",(301) 739-8577,http://www.hagerstownmd.org/145/Parks-Recreation,Hagerstown +Fairgrounds Park,39.6456049,-77.7065754,"351 N Cleveland Ave, Hagerstown, MD 21740, USA",(301) 739-8577 ext. 169,https://www.hagerstownmd.org/314/Fairgrounds-Park,Hagerstown +Pangborn Park,39.6489793,-77.7000463,"591 Pangborn Blvd, Hagerstown, MD 21740, USA",(301) 739-8577,http://www.hagerstownmd.org/,Hagerstown +"Doleman Black Heritage Museum, Inc.",39.642321,-77.7213421,"33 W Washington St Rm. 210, Hagerstown, MD 21740, USA",(301) 797-5019,https://www.dolemanblackheritagemuseum.org/,Hagerstown +Historic City Park,39.636211,-77.7318241,"501 Virginia Ave, Hagerstown, MD 21740, USA",(301) 739-8577 ext. 134,http://www.historiccitypark.com/contact-us/,Hagerstown +Hagerstown Aviation Museum,39.7065859,-77.72621319999999,"18450 Showalter Rd Bldg 8, Hagerstown, MD 21742, USA",(301) 733-8717,http://www.hagerstownaviationmuseum.org/,Hagerstown +Kiwanis Park,39.6387715,-77.6907983,"371 Dynasty Dr, Hagerstown, MD 21742, USA",Unknown,https://www.hagerstownmd.org/kiwanispark,Hagerstown +City Park Train Hub,39.6349168,-77.7346118,"770 City Park Dr, Hagerstown, MD 21740, USA",(301) 739-8577 ext. 170,Unknown,Hagerstown +Mansion House Art Center (Home of the Valley Art Association),39.6351911,-77.7333539,"480 Highland Ave, Hagerstown, MD 21740, USA",(301) 797-2867,http://valleyartassoc.com/,Hagerstown +Martin “Marty” L. Snook Memorial Park,39.6077555,-77.7565319,"17901 Halfway Blvd, Hagerstown, MD 21740, USA",(240) 313-2700,https://www.washco-md.net/parks-facilities/county-park/parks-marty-snook/,Hagerstown +National Road Park,39.64711330000001,-77.7347662,"806 W Washington St, Hagerstown, MD 21740, USA",(301) 739-8577 ext. 169,https://www.hagerstownmd.org/1292/National-Road-Park,Hagerstown +Washington County Historical Society,39.6433307,-77.7236309,"135 W Washington St, Hagerstown, MD 21740, USA",(301) 797-8782,https://washcohistory.org/,Hagerstown +Historic Jonathan Street,39.6482379,-77.7187047,"326-398 Jonathan St, Hagerstown, MD 21740, USA",Unknown,Unknown,Hagerstown +Terrapin Park,39.66985939999999,-77.74156719999999,"18257 Hurricane Ct, Hagerstown, MD 21740, USA",(301) 739-8577 ext. 169,http://www.hagerstownmd.org/951/Terrapin-Park,Hagerstown +Peoria Riverfront Museum,40.68929139999999,-89.5898773,"222 SW Washington St, Peoria, IL 61602, USA",(309) 686-7000,http://www.peoriariverfrontmuseum.org/,Peoria +Peoria Zoo,40.71699009999999,-89.57393979999999,"2320 N Prospect Rd, Peoria, IL 61603, USA",(309) 686-3365,http://www.peoriazoo.org/,Peoria +Caterpillar Visitors Center,40.6900787,-89.58883999999999,"110 SW Washington St, Peoria, IL 61602, USA",(309) 675-0606,https://www.caterpillar.com/en/company/visitors-center.html,Peoria +The Peoria PlayHouse,40.7149796,-89.5734068,"2218 N Prospect Rd, Peoria, IL 61603, USA",(309) 323-6900,http://www.peoriaplayhouse.org/,Peoria +Pettengill-Morron House Museum,40.693957,-89.6117518,"1212 W Moss Ave, Peoria, IL 61606, USA",(309) 674-1921,http://www.peoriahistoricalsociety.org/House-Museums/Pettengill-Morron_House_Museum,Peoria +Giant Oak Park,40.69852799999999,-89.59970299999999,"426 W High St, Peoria, IL 61605, USA",(309) 682-1200,http://www.peoriaparks.org/giant-oak-park,Peoria +Peoria Holocaust Memorial,40.6892243,-89.5906105,"123 SW Washington St, Peoria, IL 61602, USA",(309) 677-3900,http://www.peoriaholocaustmemorial.org/,Peoria +Luthy Botanical Garden,40.71865499999999,-89.5756658,"2520 N Prospect Rd, Peoria, IL 61603, USA",(309) 681-3506,https://peoriaparks.org/places/luthy/,Peoria +Grand View Drive,40.7262759,-89.55442409999999,"3210 N Grandview Dr, Peoria, IL 61614, USA",(309) 686-3375,https://www.peoriaparks.org/grand-view-drive/,Peoria +Forest Park Nature Center,40.7573443,-89.5749329,"5809 N Forest Park Dr, Peoria Heights, IL 61616, USA",(309) 686-3360,https://www.peoriaparks.org/fpnc/,Peoria +Donovan Park,40.7573178,-89.598373,"5805 Knoxville Ave, Peoria, IL 61614, USA",(309) 682-6684,http://www.peoriaparks.org/,Peoria +Glen Oak Park,40.7154807,-89.57506939999999,"2218 N Prospect Rd, Peoria, IL 61603, USA",(309) 686-3359,http://peoriaparks.org/,Peoria +Peoria Historical Society,40.6866086,-89.5955017,"611 SW Washington St # A, Peoria, IL 61602, USA",(309) 674-1921,http://www.peoriahistoricalsociety.org/,Peoria +Tower Park,40.7470075,-89.57458849999999,"1222 E Kingman Ave, Peoria Heights, IL 61616, USA",(309) 682-8732,https://www.peoriaheights.org/tower-park/,Peoria +Wheels O' Time Museum,40.83357959999999,-89.6192028,"1710 W Woodside Dr, Dunlap, IL 61525, USA",(309) 243-9020,http://wheelsotime.org/,Peoria +St. Louis Arch Replica,40.7034703,-89.6466485,"3406 W Farmington Rd, Peoria, IL 61604, USA",Unknown,https://www.roadsideamerica.com/tip/14960,Peoria +Lakeview Park,40.74234919999999,-89.60860869999999,"1917 W Lake Ave, Peoria, IL 61614, USA",(309) 682-1200,https://www.peoriaparks.org/lakeview-park/,Peoria +Poplet Hollow River Bluff Trail Head,40.80052920000001,-89.5872124,"Peoria, IL 61615, USA",Unknown,Unknown,Peoria +Community Solar System,40.6893405,-89.5894618,"222 SW Washington St, Peoria, IL 61602, USA",(309) 686-7000,https://www.peoriariverfrontmuseum.org/dome-planetarium/community-solar-system,Peoria +Peoria Riverfront Park,40.6913539,-89.58393799999999,"Peoria, IL 61603, USA",Unknown,Unknown,Peoria +The History Museum at the Castle,44.2621443,-88.4014413,"330 E College Ave, Appleton, WI 54911, USA",(920) 735-9370,http://www.myhistorymuseum.org/,Appleton +Hearthstone Historic House Museum,44.254306,-88.4150093,"625 W Prospect Ave, Appleton, WI 54911, USA",(920) 730-8204,https://www.hearthstonemuseum.org/,Appleton +Atlas Science Center Center,44.25499120000001,-88.4114171,"425 W Water St, Appleton, WI 54911, USA",(920) 380-7491,http://www.atlassciencecenter.org/,Appleton +Trout Museum of Art,44.26165779999999,-88.4065409,"111 W College Ave, Appleton, WI 54911, USA",(920) 733-4089,http://troutmuseum.org/,Appleton +Plamann Park,44.3266378,-88.3850825,"1375 E Broadway Dr, Appleton, WI 54913, USA",(920) 832-4791,https://www.outagamie.org/visitors/parks-trails-fishing-nature/plamann-park,Appleton +Appleton Memorial Park,44.2909096,-88.3797726,"1620 E Witzke Blvd, Appleton, WI 54911, USA",(920) 832-5905,http://www.appletonparkandrec.org/,Appleton +Appleton Historical Society Museum and Resource Center,44.2627799,-88.40249659999999,"128 N Durkee St, Appleton, WI 54911, USA",(920) 540-3699,http://appletonhistory.com/,Appleton +Building For Kids,44.262013,-88.407004,"100 W College Ave, Appleton, WI 54911, USA",(920) 734-3226,http://www.buildingforkids.org/,Appleton +Erb Park,44.2782157,-88.4028166,"1800 N Morrison St, Appleton, WI 54911, USA",(920) 832-5905,"http://appletonparkandrec.org/parks,-pavilions-and-trails/community-parks/erb-park",Appleton +Pierce Park,44.252469,-88.42220429999999,"1035 W Prospect Ave, Appleton, WI 54914, USA",(920) 832-5905,"http://www.appletonparkandrec.org/parks,-pavilions-and-trails/community-parks/pierce-park",Appleton +Butterfly Garden of Wisconsin,44.33136259999999,-88.4139196,"N2550 WI-47, Appleton, WI 54913, USA",(920) 733-2929,http://www.butterflygardensofwisconsin.com/,Appleton +Gordon Bubolz Nature Preserve,44.311604,-88.449619,"4815 N Lynndale Dr, Appleton, WI 54913, USA",(920) 731-6041,http://www.bubolzpreserve.org/,Appleton +City Park,44.2648213,-88.3995891,"500 E Franklin St, Appleton, WI 54911, USA",(920) 832-5905,"http://www.appletonparkandrec.org/parks,-pavilions-and-trails/neighborhood-parks/city-park",Appleton +Telulah Park,44.2638186,-88.380847,"1300 E Newberry St, Appleton, WI 54915, USA",(920) 832-5905,"http://www.appletonparkandrec.org/parks,-pavilions-and-trails/community-parks/telulah-park",Appleton +"Segway the Fox Tours-Appleton, Neenah, & Green Bay",44.2651834,-88.39802309999999,"500 E Franklin St, Appleton, WI 54911, USA",(920) 376-0256,https://glidenew.com/segway-the-lake/appleton-fun-historic-tour/,Appleton +Lutz Park,44.2496201,-88.4217581,"1320 S Lutz Dr, Appleton, WI 54914, USA",(920) 832-5905,"http://www.appletonparkandrec.org/parks,-pavilions-and-trails/neighborhood-parks/lutz-park",Appleton +Peabody Park,44.26864399999999,-88.3882905,"601 N Green Bay Rd, Appleton, WI 54911, USA",(920) 832-5905,"http://www.appletonparkandrec.org/parks,-pavilions-and-trails/neighborhood-parks/peabody-park",Appleton +Appleton Memorial Park Gardens,44.294011,-88.38359299999999,"1313 E Witzke Blvd, Appleton, WI 54911, USA",(920) 832-5905,https://appletonparkandrec.org/parks-pavilions-trails/scheig-center-gardens/,Appleton +Highview Park,44.3057551,-88.4049385,"110 E Wayfarer Ln, Appleton, WI 54913, USA",(920) 832-5905,"http://www.appletonparkandrec.org/parks,-pavilions-and-trails/neighborhood-parks/highview-park-",Appleton +Patriot Park,44.27710980000001,-88.4495943,"2950 W Darling St, Appleton, WI 54914, USA",(920) 832-1581,https://www.grandchute.net/departments/parks-recreation/parks/patriot-park/,Appleton +"Virginia Museum of Transportation, Inc.",37.27293360000001,-79.9459078,"303 Norfolk Ave SW, Roanoke, VA 24016, USA",(540) 342-5670,http://vmt.org/,Roanoke +Mill Mountain Star,37.2508252,-79.9323727,"2000 Jb Fishburn Pkwy SE, Roanoke, VA 24014, USA",(540) 853-2000,https://www.playroanoke.com/parks-facilities/mill-mountain-park/,Roanoke +Science Museum of Western Virginia,37.2715264,-79.9394691,"1 Market Square SE, Roanoke, VA 24011, USA",(540) 342-5710,http://www.smwv.org/,Roanoke +O. Winston Link & Roanoke History Museum,37.27354129999999,-79.9381495,"101 Shenandoah Ave NE, Roanoke, VA 24016, USA",(540) 982-5465,http://www.roanokehistory.org/,Roanoke +Taubman Museum of Art,37.27274,-79.93833,"110 Salem Ave SE, Roanoke, VA 24011, USA",(540) 342-5760,https://www.taubmanmuseum.org/,Roanoke +Mill Mountain Zoo,37.2478918,-79.9364856,"Mill Mountain Spur, Roanoke, VA 24014, USA",(540) 343-3241,http://www.mmzoo.org/,Roanoke +Center In The Square,37.2714347,-79.93964489999999,"1 Market Square SE, Roanoke, VA 24011, USA",(540) 342-5700,http://www.centerinthesquare.org/,Roanoke +Mill Mountain Park,37.24939320000001,-79.9332613,"2198 Mill Mountain Spur, Roanoke, VA 24014, USA",(540) 853-2236,https://www.playroanoke.com/parks-facilities/mill-mountain-park/,Roanoke +The Harrison Museum of African American Culture,37.2714707,-79.9394628,"1 Market Square SE #2, Roanoke, VA 24011, USA",(540) 857-4395,http://harrisonmuseum.com/,Roanoke +Roanoke Pinball Museum,37.27147069999999,-79.93947690000002,"1 Market Square SE, Roanoke, VA 24011, USA",(540) 342-5746,https://roanokepinball.org/,Roanoke +Explore Park,37.2382897,-79.8519747,"56 Roanoke River Parkway Rd, Roanoke, VA 24014, USA",(540) 427-1800,http://explorepark.org/,Roanoke +Optimus Prime Sculpture,37.2510331,-79.95487039999999,"2239 Franklin Rd SW, Roanoke, VA 24014, USA",Unknown,Unknown,Roanoke +Virginian Station,37.259665,-79.94094369999999,"1402 S Jefferson St, Roanoke, VA 24016, USA",Unknown,http://www.roanokepreservation.org/,Roanoke +The Scenic Route,37.2710163,-79.9394198,"303 Market St SE, Roanoke, VA 24011, USA",Unknown,Unknown,Roanoke +Read Mountain Preserve,37.33481489999999,-79.8904967,"6101 Crumpacker Dr, Roanoke, VA 24012, USA",(540) 387-6078,https://www.roanokecountyparks.com/facilities/facility/details/readmountainpreserve-19,Roanoke +Catholic Historical Museum of the Roanoke Valley,37.269094,-79.95039450000002,"501A Marshall Ave SW, Roanoke, VA 24016, USA",(540) 556-7240,Unknown,Roanoke +Eleanor D Wilson Museum,37.3537415,-79.9422398,"8009 Fishburn Dr, Roanoke, VA 24020, USA",(540) 362-6532,https://www.hollins.edu/offices-and-services/eleanor-d-wilson-museum/,Roanoke +"Roanoke, Virginia, USA | Virtual Railfan LIVE",37.27319499999999,-79.9463864,"303 Norfolk Ave SW, Roanoke, VA 24016, USA",Unknown,Unknown,Roanoke +Visit Virginia's Blue Ridge,37.273598,-79.93844399999999,"101 Shenandoah Ave NE, Roanoke, VA 24016, USA",(800) 635-5535,https://www.visitroanokeva.com/,Roanoke +Splash Valley,37.3379021,-79.9936523,"7415 Wood Haven Rd, Roanoke, VA 24019, USA",(540) 777-6300,http://www.splashvalleywaterpark.com/,Roanoke +Eugene Science Center,44.05647279999999,-123.0727371,"2300 Leo Harris Pkwy, Eugene, OR 97401, USA",(541) 682-7888,http://www.eugenesciencecenter.org/,Eugene +Museum of Natural and Cultural History,44.0430077,-123.0680746,"1680 E 15th Ave, Eugene, OR 97401, USA",(541) 346-3024,http://mnch.uoregon.edu/,Eugene +Cascades Raptor Center,43.986978,-123.078793,"32275 Fox Hollow Rd, Eugene, OR 97405, USA",(541) 485-1320,http://cascadesraptorcenter.org/,Eugene +Jordan Schnitzer Museum of Art,44.0443107,-123.077137,"1430 Johnson Lane, Eugene, OR 97403, USA",(541) 346-3027,http://jsma.uoregon.edu/,Eugene +Shelton McMurphey Johnson House,44.0564145,-123.0921528,"303 Willamette St, Eugene, OR 97401, USA",(541) 484-0808,https://www.smjhouse.org/,Eugene +Hendricks Park,44.0353374,-123.0587689,"Summit Ave &, Skyline Blvd, Eugene, OR 97403, USA",(541) 682-4800,https://www.eugene-or.gov/facilities/facility/details/80,Eugene +Alton Baker Park,44.05497799999999,-123.0795561,"200 Day Island Rd, Eugene, OR 97401, USA",(541) 682-4800,https://www.eugene-or.gov/facilities/facility/details/Alton-Baker-Park-29,Eugene +Lane County History Museum,44.04510800000001,-123.103759,"740 W 13th Ave, Eugene, OR 97402, USA",(541) 682-4242,https://www.lchm.org/,Eugene +Adventure! Children's Museum,44.06739990000001,-123.1062537,"490 Valley River Center, Eugene, OR 97401, USA",(541) 653-9629,http://www.adventurechildrensmuseum.org/,Eugene +Owen Rose Garden,44.06277790000001,-123.1024347,"300 N Jefferson St, Eugene, OR 97402, USA",(541) 682-4800,http://www.eugene-or.gov/Facilities/Facility/Details/124,Eugene +Oregon Air and Space Museum,44.115156,-123.2125091,"90377 Boeing Dr, Eugene, OR 97402, USA",(541) 461-1101,http://www.oasmuseum.com/,Eugene +Eugene Solar System Trail: the Sun,44.0567009,-123.0827232,"100 Day Island Rd, Eugene, OR 97401, USA",(541) 682-7888,https://eugenesciencecenter.org/exhibits/eugene-solar-system-trail/,Eugene +Maurie Jacobs Park,44.0657388,-123.1122134,"169 Fir Ln, Eugene, OR 97404, USA",(541) 682-4800,http://www.eugene-or.gov/Facilities/Facility/Details/Maurie-Jacobs-Park-114,Eugene +Mount Pisgah Arboretum,44.00687859999999,-122.9803488,"34901 Frank Parrish Rd, Eugene, OR 97405, USA",(541) 747-3817,http://www.mountpisgaharboretum.org/,Eugene +Frank Kinney Park,43.99884659999999,-123.0766934,"875 Martin St, Eugene, OR 97405, USA",(541) 682-4800,https://www.eugene-or.gov/Facilities/Facility/Details/106,Eugene +Willakenzie Park,44.083805,-123.0628212,"1725 Best Ln, Eugene, OR 97401, USA",(541) 682-4800,https://www.eugene-or.gov/Facilities/Facility/Details/115,Eugene +Skinner Butte Park,44.05917230000001,-123.0926201,"248 Cheshire Ave, Eugene, OR 97401, USA",(541) 682-4800,https://www.eugene-or.gov/Facilities/Facility/Details/Skinner-Butte-Park-55,Eugene +Amazon Park,44.0291623,-123.0846417,"22 Amazon Pkwy, Eugene, OR 97405, USA",(541) 682-4800,http://www.eugene-or.gov/Facilities.aspx?Page=detail&RID=30,Eugene +Delta Ponds,44.0789886,-123.1073867,"640 Goodpasture Island Rd, Eugene, OR 97401, USA",(541) 682-5010,http://eugene-or.gov/Facilities/Facility/Details/Delta-Ponds-133,Eugene +Skyview City Park,44.0246466,-123.1416036,"Eugene, OR 97405, USA",(541) 682-4800,https://www.eugene-or.gov/Facilities/Facility/Details/65,Eugene +Rock Springs Historical Museum,41.5853348,-109.2206645,"201 B St, Rock Springs, WY 82901, USA",(307) 362-3138,https://www.rswy.net/museum/,Rock Springs +Flaming Gorge Tour,41.61203,-109.2310002,"1641 Elk St, Rock Springs, WY 82901, USA",(307) 382-2538,http://explorewy.com/Flaming-Gorge-Tour,Rock Springs +Bunning Park,41.5894846,-109.221995,"J St &, Evans St, Rock Springs, WY 82901, USA",Unknown,https://www.rswy.net/eGov/apps/locations/facilities.egov?view=detail&id=28,Rock Springs +Centennial Park,41.60111680000001,-109.2378785,"1722 Emigrant Dr, Rock Springs, WY 82901, USA",(307) 352-1500,https://www.rswy.net/egov/apps/locations/facilities.egov?view=detail&id=29,Rock Springs +Blairtown Park,41.5737825,-109.2249811,"731 McCurtain Dr, Rock Springs, WY 82901, USA",Unknown,https://www.rswy.net/egov/apps/locations/facilities.egov?view=detail&id=26,Rock Springs +Foothill Wetlands Park,41.5829908,-109.2587258,"2551 Foothill Blvd, Rock Springs, WY 82901, USA",(307) 352-1400,http://www.rswy.net/department/division.php?structureid=107ttp://,Rock Springs +Explore Rock Springs & Green River Visitor Center,41.61203,-109.2310002,"1641 Elk St, Rock Springs, WY 82901, USA",(307) 382-2538,http://explorewy.com/,Rock Springs +Mesa Park,41.6391125,-109.2688836,"432 Quadrant Dr, Rock Springs, WY 82901, USA",(307) 922-5450,Unknown,Rock Springs +"Wataha Park Pavilion, North Rock Springs,",41.6437938,-109.2470185,"Rock Springs, WY 82901, USA",(307) 352-1440,Unknown,Rock Springs +Wild Horse Viewing Area,41.6290597,-109.2200604,"Lion Kol Rd, Rock Springs, WY 82901, USA",Unknown,Unknown,Rock Springs +Arthur Park,41.6009169,-109.2477876,"3808 College Dr, Rock Springs, WY 82901, USA",Unknown,https://www.rswy.net/egov/apps/locations/facilities.egov?view=detail&id=1,Rock Springs +Veteran's Park,41.59996479999999,-109.2053165,"Rock Springs, WY 82901, USA",(307) 352-1400,http://www.rswy.net/egov/apps/locations/facilities.egov?view=detail&id=42,Rock Springs +Rock Springs Family Recreation Center,41.59591999999999,-109.262907,"3900 Sweetwater Dr, Rock Springs, WY 82901, USA",(307) 352-1440,http://www.rswy.net/,Rock Springs +Rock Springs Arch,41.5861993,-109.2210657,"200 S Main St, Rock Springs, WY 82901, USA",Unknown,Unknown,Rock Springs +Pilot Butte Wild Horse Scenic Loop,41.5398389,-109.4715175,"Wild Horse Canyon Rd, Green River, WY 82935, USA",Unknown,https://www.blm.gov/visit/pilot-butte-wild-horse-scenic-tour,Rock Springs +Bittercreek Bark Park,41.5743961,-109.236628,"850 Center St, Rock Springs, WY 82901, USA",(307) 352-1455,http://www.rswy.net/,Rock Springs +Boot Hill Museum,37.7538033,-100.0217447,"500 W Wyatt Earp Blvd, Dodge City, KS 67801, USA",(620) 227-8188,https://www.boothill.org/,Dodge City +Home of Stone,37.7555437,-100.0155437,"112 E Vine St, Dodge City, KS 67801, USA",(620) 227-6791,Unknown,Dodge City +Kansas Teachers Hall of Fame,37.7540867,-100.022878,"603 5th Ave, Dodge City, KS 67801, USA",(620) 225-7311,http://www.teachershallfamedodgecityks.org/,Dodge City +Wright Park,37.7485372,-100.0210088,"71 N 2nd Ave, Dodge City, KS 67801, USA",(620) 225-8100,http://www.dodgecity.org/index.aspx?nid=106#&ui-state=dialog,Dodge City +Coronado Cross,37.725763,-99.9125981,"11666 US-400, Dodge City, KS 67801, USA",Unknown,Unknown,Dodge City +Dodge City Historic Trolley Tours,37.7528215,-100.0208003,"400 W Wyatt Earp Blvd, Dodge City, KS 67801, USA",(620) 225-8186,https://www.visitdodgecity.org/91/Historic-Trolley-Tours,Dodge City +Historic Santa Fe Depot,37.7526408,-100.0160383,"201 E Wyatt Earp Blvd, Dodge City, KS 67801, USA",(620) 225-1001,Unknown,Dodge City +Long Branch Lagoon,37.750409,-100.0225021,"111 4th Ave, Dodge City, KS 67801, USA",(620) 225-8156,http://www.lblagoon.com/,Dodge City +Wright Park Zoo,37.7490458,-100.0217198,"71 N 2nd Ave, Dodge City, KS 67801, USA",(620) 225-8160,http://www.dodgecity.org/index.aspx?nid=106#&ui-state=dialog,Dodge City +Dodge City Convention & Visitors Bureau,37.7530407,-100.0206931,"400 W Wyatt Earp Blvd, Dodge City, KS 67801, USA",(620) 225-8186,http://www.visitdodgecity.org/,Dodge City +Dodge City City Limit sign,37.77998799999999,-99.9959324,"10540 Avenue P, Dodge City, KS 67801, USA",Unknown,Unknown,Dodge City +Dodge City Trail of Fame Office,37.753797,-100.0202514,"509 S 2nd Ave, Dodge City, KS 67801, USA",(620) 561-1925,https://visitdodgecity.org/314/Dodge-City-Trail-of-Fame,Dodge City +Feed Yard Scenic Overlook,37.7523461,-99.9605778,"US-56, Dodge City, KS 67801, USA",(785) 296-2009,http://www.travelks.com/s/index.cfm?LID=6531,Dodge City +KANSAS CATTLE TOWNS COALITION,37.7530333,-100.0206836,"400 W Wyatt Earp Blvd, Dodge City, KS 67801, USA",(800) 653-9378,Unknown,Dodge City +Dodge City Cowboy Welcome Sign,37.7518436,-99.9677183,"Dodge City, KS 67801, USA",Unknown,Unknown,Dodge City +Texas Capitol,30.2746652,-97.7403505,"1100 Congress Ave., Austin, TX 78701, USA",(512) 463-4630,https://tspb.texas.gov/prop/tc/tc/capitol.html,Austin +Zilker Metropolitan Park,30.2669764,-97.7729703,"Austin, TX 78746, USA",(512) 974-6700,https://www.austintexas.gov/department/zilker-metropolitan-park,Austin +Museum of the Weird,30.2671674,-97.73867,"412 E 6th St, Austin, TX 78701, USA",(512) 476-5493,http://www.museumoftheweird.com/,Austin +Cathedral of Junk,30.2186473,-97.7715708,"4422 Lareina Dr, Austin, TX 78745, USA",(512) 299-7413,https://www.roadsideamerica.com/story/7816,Austin +Bullock Texas State History Museum,30.280337,-97.7390687,"1800 Congress Ave., Austin, TX 78701, USA",(512) 936-8746,http://www.thestoryoftexas.com/,Austin +McKinney Falls State Park,30.1836487,-97.7221944,"5808 McKinney Falls Pkwy, Austin, TX 78744, USA",(512) 243-1643,https://tpwd.texas.gov/state-parks/mckinney-falls,Austin +Austin Aquarium,30.4499019,-97.792278,"13530 US-183 Hwy #101, Austin, TX 78750, USA",(512) 222-5586,http://www.austinaquarium.com/,Austin +Umlauf Sculpture Garden & Museum,30.2632583,-97.7661556,"605 Azie Morton Rd, Austin, TX 78704, USA",(512) 445-5582,http://umlaufsculpture.org/,Austin +Haunted ATX,30.2649689,-97.7341319,"501 N Interstate Hwy 35, Austin, TX 78702, USA",(737) 210-1869,https://hauntedatx.com/,Austin +Blanton Museum of Art,30.2808109,-97.7376838,"200 E Martin Luther King Jr Blvd, Austin, TX 78712, USA",(512) 471-5482,https://blantonmuseum.org/,Austin +Mexic-Arte Museum,30.2668433,-97.7427924,"419 Congress Ave., Austin, TX 78701, USA",(512) 480-9373,http://mexic-artemuseum.org/,Austin +Austin Zoo,30.2608711,-97.9377719,"10808 Rawhide Trail, Austin, TX 78736, USA",(512) 288-1490,http://www.austinzoo.org/,Austin +"The only locally owned, Original Austin Ghost Tours and Investigations",30.26406339999999,-97.7379309,"303 Red River St, Austin, TX 78701, USA",(512) 203-5561,http://www.austinghosttours.com/,Austin +Elisabet Ney Museum,30.3066213,-97.7262544,"304 E 44th St, Austin, TX 78751, USA",(512) 974-1625,http://www.austintexas.gov/department/elisabet-ney-museum,Austin +Statesman Bat Observation Center,30.2599308,-97.7456007,"305 S Congress Ave, Austin, TX 78704, USA",(512) 327-9721,http://www.batcon.org/,Austin +Austin Nature & Science Center,30.2721724,-97.7733195,"2389 Stratford Dr, Austin, TX 78746, USA",(512) 974-3888,http://www.austintexas.gov/department/austin-nature-and-science-center,Austin +Mayfield Park and Nature Preserve,30.31246269999999,-97.7706038,"3505 W 35th St, Austin, TX 78703, USA",(512) 974-6700,https://www.austintexas.gov/department/mayfield-park,Austin +Texas Selfie Museum,30.2660105,-97.738305,"503 Neches St, Austin, TX 78701, USA",(512) 651-8383,http://originalselfiemuseum.com/,Austin +Austin Visitor Center,30.264628,-97.7374106,"602 E 4th St, Austin, TX 78701, USA",(512) 478-0098,https://www.austintexas.org/plan-a-trip/visitor-center/,Austin +Pease Park Treehouse,30.2822555,-97.7527523,"1100 Kingsbury St, Austin, TX 78703, USA",Unknown,https://peasepark.org/treehouse,Austin +Jungle Island,25.7849814,-80.17422239999999,"1111 Parrot Jungle Trail, Miami, FL 33132, USA",(305) 400-7000,http://www.jungleisland.com/,Miami +Pérez Art Museum Miami,25.7859307,-80.1861912,"1103 Biscayne Blvd, Miami, FL 33132, USA",(305) 375-3000,https://www.pamm.org/en/,Miami +Bayfront Park,25.7752589,-80.18618889999999,"301 Biscayne Blvd, Miami, FL 33132, USA",(305) 358-7550,http://www.bayfrontparkmiami.com/,Miami +Wynwood Walls,25.8010178,-80.1993841,"2516 NW 2nd Ave, Miami, FL 33127, USA",(305) 576-3334,Unknown,Miami +Maurice A. Ferré Park,25.78435829999999,-80.1871918,"1075 Biscayne Blvd, Miami, FL 33132, USA",(305) 358-7550,http://www.bayfrontparkmiami.com/,Miami +Miami Seaquarium,25.7342904,-80.1648572,"4400 Rickenbacker Cswy, Key Biscayne, FL 33149, USA",(305) 361-5705,https://miamiseaquarium.com/,Miami +Bayside Marketplace,25.7784025,-80.18679379999999,"401 Biscayne Blvd, Miami, FL 33132, USA",(305) 577-3344,https://www.baysidemarketplace.com/visit/360-virtual-map,Miami +Skyviews Miami Observation Wheel,25.77701979999999,-80.184519,"401 Biscayne Blvd, Miami, FL 33132, USA",Unknown,https://www.skyviewsobservationwheels.com/?utm_source=google&utm_medium=organic&utm_campaign=gbp,Miami +Phillip & Patricia Frost Museum of Science,25.7852621,-80.1878898,"1101 Biscayne Blvd, Miami, FL 33132, USA",(305) 434-9600,https://www.frostscience.org/,Miami +Miami Children's Museum,25.78469939999999,-80.1765206,"980 MacArthur Cswy, Miami, FL 33132, USA",(305) 373-5437,http://www.miamichildrensmuseum.org/,Miami +Vizcaya Museum & Gardens,25.7443866,-80.21047469999999,"3251 S Miami Ave, Miami, FL 33129, USA",(305) 250-9133,https://vizcaya.org/,Miami +Miami Walk of Fame,25.7781959,-80.1874465,"401 Biscayne Blvd, Miami, FL 33132, USA",(786) 763-0831,http://www.miamiwalkoffame.com/,Miami +Lummus Park,25.7809553,-80.12994789999999,"1130 Ocean Dr, Miami Beach, FL 33139, USA",Unknown,https://www.miamibeachfl.gov/city-hall/parks-and-recreation/parks-facilities-directory/lummus-park/,Miami +Torch of Friendship,25.7776071,-80.1877094,"301 Biscayne Blvd, Miami, FL 33132, USA",(888) 311-3233,http://www.miamigov.com/home/,Miami +Official Art Deco Walking Tour,25.7802959,-80.1303405,"1001 Ocean Dr, Miami Beach, FL 33139, USA",(305) 672-2014,https://mdpl.org/tours/,Miami +Port of Miami,25.7739808,-80.1666351,"1922 N Cruise Blvd, Miami, FL 33132, USA",Unknown,Unknown,Miami +HistoryMiami Museum,25.7746635,-80.196383,"101 W Flagler St, Miami, FL 33130, USA",(305) 375-1492,http://www.historymiami.org/,Miami +Domino Park,25.7655757,-80.21933969999999,"1444 SW 8th St, Miami, FL 33135, USA",(305) 859-2717,http://www.miamigov.com/,Miami +Little Havana Visitor Center,25.7655517,-80.2206779,"1600 SW 8th St, Miami, FL 33135, USA",Unknown,Unknown,Miami +Miami G,25.7909106,-80.140205,"1111 Lincoln Rd, Miami Beach, FL 33139, USA",(305) 896-9850,http://miami-g.com/,Miami +The Dallas World Aquarium,32.7834737,-96.805358,"1801 N Griffin St, Dallas, TX 75202, USA",(214) 720-2224,https://www.dwazoo.com/,Dallas +The Sixth Floor Museum at Dealey Plaza,32.7798188,-96.8084842,"411 Elm St, Dallas, TX 75202, USA",(214) 747-6660,https://www.jfk.org/,Dallas +Reunion Tower,32.7755056,-96.8088567,"300 Reunion Blvd E, Dallas, TX 75207, USA",(214) 296-9950,http://www.reuniontower.com/,Dallas +Dallas Museum of Art,32.7876959,-96.8010444,"1717 N Harwood St, Dallas, TX 75201, USA",(214) 922-1200,https://www.dma.org/,Dallas +The Dallas Arboretum and Botanical Garden,32.8236184,-96.7166236,"8525 Garland Rd, Dallas, TX 75218, USA",(214) 515-6615,https://www.dallasarboretum.org/,Dallas +Dallas Zoo,32.7409696,-96.81532,"650 S R.L. Thornton Fwy, Dallas, TX 75203, USA",(469) 554-7501,https://www.dallaszoo.com/,Dallas +Klyde Warren Park,32.7893644,-96.8016184,"2012 Woodall Rodgers Fwy, Dallas, TX 75201, USA",(214) 716-4500,http://klydewarrenpark.org/,Dallas +Old City Park,32.77275279999999,-96.786544,"1515 S Harwood St, Dallas, TX 75215, USA",(214) 421-5141,http://www.oldcityparkdallas.org/,Dallas +Perot Museum of Nature and Science,32.7869429,-96.8065844,"2201 N Field St, Dallas, TX 75201, USA",(214) 428-5555,https://www.perotmuseum.org/,Dallas +Pioneer Plaza,32.7766323,-96.8011986,"1428 Young St, Dallas, TX 75202, USA",Unknown,http://www.dallasparks.org/Facilities/Facility/Details/Pioneer-Plaza-624,Dallas +Nasher Sculpture Center,32.7881824,-96.8001567,"2001 Flora St, Dallas, TX 75201, USA",(214) 242-5100,http://www.nashersculpturecenter.org/,Dallas +Giant Eyeball,32.781406,-96.7983119,"1601 Main St, Dallas, TX 75201, USA",Unknown,https://artandseek.org/2021/03/18/why-is-there-a-giant-eyeball-in-downtown-dallas-we-take-a-look/,Dallas +John F. Kennedy Memorial Plaza,32.7787249,-96.8064507,"646 Main St, Dallas, TX 75202, USA",(214) 747-6660,https://www.jfk.org/john-f-kennedy-memorial-plaza/,Dallas +Dealey Plaza,32.7788184,-96.8082993,"Dallas, TX 75202, USA",(214) 670-4100,http://www.dallasparks.org/Facilities/Facility/Details/Dealey-Plaza-462,Dallas +African American Museum of Dallas,32.7790574,-96.7644136,"3536 Grand Ave, Dallas, TX 75210, USA",(214) 565-9026,http://www.aamdallas.org/,Dallas +Frontiers of Flight Museum,32.84260200000001,-96.835202,"6911 Lemmon Ave, Dallas, TX 75209, USA",(214) 350-3600,http://www.flightmuseum.com/,Dallas +White Rock Lake Park,32.8365139,-96.7216119,"8300 E Lawther Dr, Dallas, TX 75218, USA",(214) 660-1100,http://www.whiterocklake.org/,Dallas +Leonhardt Lagoon Nature Walk,32.7778302,-96.761946,"1121 1st Ave, Dallas, TX 75210, USA",(214) 426-3400,https://eventseeker.com/venue/1132302-leonhardt-lagoon-dallas-tx,Dallas +George W. Bush Presidential Center,32.84118300000001,-96.778198,"2943 SMU Boulevard, Dallas, TX 75205, USA",(214) 200-4300,http://www.bushcenter.org/,Dallas +Trinity Forest Adventure Park,32.6898099,-96.6757659,"1800 Dowdy Ferry Rd, Dallas, TX 75217, USA",(214) 391-1000,http://trinitytreetops.com/,Dallas +Walter Zych Park,44.7963376,-89.72399170000001,"1801 Jackson St, Mosinee, WI 54455, USA",Unknown,http://www.mosinee.wi.us/parks/walter_zych_park.html,Mosinee +River Park,44.7967952,-89.707264,"1098-1070 Armory Rd, Mosinee, WI 54455, USA",Unknown,http://www.mosinee.wi.us/parks/river_park.html,Mosinee +Edgewood Park,44.7832636,-89.720092,"1100-1132 Edgewood Dr, Mosinee, WI 54455, USA",Unknown,http://www.mosinee.wi.us/parks/edgewood_park.html,Mosinee +Big Eau Pleine County Park,44.7714346,-89.8682683,"135695 Eau Pleine Park Rd, Mosinee, WI 54455, USA",(715) 261-1550,https://www.co.marathon.wi.us/Departments/ParksRecreationForestry/Parks/ListofParks.aspx#Big_Eau_Pleine,Mosinee +The Sand Cliffs,44.7594922,-89.71346849999999,"Mosinee, WI 54455, USA",Unknown,Unknown,Mosinee +City Square Park,44.7925967,-89.7029766,"322 Main St, Mosinee, WI 54455, USA",Unknown,Unknown,Mosinee +Big Eau Pleine Woods State Natural Area,44.73670629999999,-89.8428177,"135695 Eau Pleine Park Rd, Mosinee, WI 54455, USA",(888) 936-7463,Unknown,Mosinee +Creske Park,44.7899604,-89.7262437,"Mosinee, WI 54455, USA",Unknown,Unknown,Mosinee +Maguire Field Dessert Park,44.7885421,-89.7083059,"Mosinee, WI 54455, USA",Unknown,Unknown,Mosinee +Hunter M Park,44.7963886,-89.71767559999999,"607 13th St, Mosinee, WI 54455, USA",(715) 693-2125,Unknown,Mosinee +MAAC Pavilion,44.7962496,-89.7075711,"Armory Rd, Mosinee, WI 54455, USA",Unknown,Unknown,Mosinee +Annie's Sandbar,44.7627487,-89.7198477,"Mosinee, WI 54455, USA",Unknown,Unknown,Mosinee +Lake Du Bay Boat Landing,44.70246710000001,-89.6873181,"202235 Dubay Dr, Mosinee, WI 54455, USA",Unknown,Unknown,Mosinee +Skeeter's Bucket Sandbar,44.7501214,-89.7137812,"Mosinee, WI 54455, USA",Unknown,Unknown,Mosinee +Rib Mountain State Park,44.921581,-89.688221,"149801 State Park Rd, Wausau, WI 54401, USA",(715) 842-2522,https://dnr.wisconsin.gov/topic/parks/ribmt,Mosinee +Mosinee Athletic Complex – MAC,44.7855028,-89.72784159999999,"401 Rangeline Rd, Mosinee, WI 54455, USA",Unknown,Unknown,Mosinee +Granite Peak Ski Area,44.92923599999999,-89.68316200000001,"227200 Snowbird Ave, Wausau, WI 54401, USA",(715) 845-2846,http://www.skigranitepeak.com/,Mosinee +Lake DuBay Lions Club,44.7160539,-89.6798362,"203701 County Hwy DB, Mosinee, WI 54455, USA",(715) 693-1121,http://www.dubaylions.org/,Mosinee +Leigh Yawkey Woodson Art Museum,44.96279639999999,-89.6134294,"700 N 12th St, Wausau, WI 54403, USA",(715) 845-7010,https://www.lywam.org/,Mosinee +Dewey Marsh State Natural Area,44.65977419999999,-89.5379687,"N Haymeadow Dr, Mosinee, WI 54455, USA",(888) 936-7463,Unknown,Mosinee +Great Escape of Central Texas,31.0788118,-97.7001343,"4400-1 E Central Texas Expy suite c, Killeen, TX 76543, USA",(254) 680-2686,http://www.greatescapectx.com/,Killeen +Lions Club Park,31.06978329999999,-97.7348518,"1700 E Stan Schlueter Loop, Killeen, TX 76542, USA",(254) 501-6390,https://www.killeentexas.gov/Facilities/Facility/Details/Lions-Club-Park-4,Killeen +Urban Air Trampoline and Adventure Park,31.1043815,-97.7462463,"2102 Jennifer Dr, Killeen, TX 76542, USA",(254) 334-1435,https://www.urbanair.com/texas-killeen?utm_source=gmb&utm_medium=website,Killeen +Public fountain,31.1249874,-97.7285422,"E Green Ave, Killeen, TX 76541, USA",Unknown,Unknown,Killeen +Conder Park,31.10894910000001,-97.7202848,"810 Conder St, Killeen, TX 76541, USA",(254) 501-6390,https://www.killeentexas.gov/Facilities/Facility/Details/Conder-Community-Park-22,Killeen +Roberson Family Christmas Lightshow,31.04978929999999,-97.7224273,"3302 Shawlands Rd, Killeen, TX 76542, USA",Unknown,Unknown,Killeen +Geocache,31.0876848,-97.7058725,"3213 E Central Texas Expy, Killeen, TX 76543, USA",Unknown,https://coord.info/GCR8PP,Killeen +Long Branch Park,31.1177625,-97.688877,"1101 Branch Dr, Killeen, TX 76543, USA",(254) 501-6390,http://www.killeentexas.gov/,Killeen +Carl Levin Park,31.0689758,-97.6626094,"400 Millers Crossing, Harker Heights, TX 76548, USA",(254) 953-5657,http://www.ci.harker-heights.tx.us/index.php/parks-a-facilities/carl-levin-park,Killeen +Mayborn Science Theater,31.1190225,-97.8049724,"Bldg No. 267, Bell Tower Drive, On the Campus of Central Texas College, 6200 W Central Texas Expy, Killeen, TX 76549, USA",(254) 526-1768,http://www.starsatnight.org/,Killeen +killeentech,31.1080775,-97.7802609,"3606 Rainforest Ln, Killeen, TX 76549, USA",(469) 722-1756,https://www.killeentech.com/contact/,Killeen +Turtle Point,31.06792209999999,-97.7225656,"2705 E Stan Schlueter Loop, Killeen, TX 76542, USA",Unknown,Unknown,Killeen +Hunt Park,31.1262507,-97.6775344,"2301 Hunt Dr, Killeen, TX 76543, USA",Unknown,Unknown,Killeen +Luv 2 Play Killeen,31.07102100000001,-97.737861,"1310 E Stan Schlueter Loop, Killeen, TX 76542, USA",(254) 213-1191,https://luv2play.com/killeen/,Killeen +Andy K. Wells Hike And Bike Trail,31.1100238,-97.7123182,"2201 E Veterans Memorial Blvd, Killeen, TX 76543, USA",Unknown,https://www.killeentexas.gov/Facilities/Facility/Details/Andy-K-Wells-Hike-Bike-Trail-5,Killeen +Killeen Arts and Activities Center,31.1253515,-97.7279726,"801 N 4th St B, Killeen, TX 76541, USA",(254) 501-6519,https://downtownkilleenevents.com/,Killeen +Fort Cavazos November 5 Memorial,31.07869049999999,-97.7250355,"3701S S W S Young Dr, Killeen, TX 76542, USA",Unknown,Unknown,Killeen +Killeen Community Center Park,31.11220149999999,-97.7131575,"436-284 W S Young Dr, Killeen, TX 76541, USA",Unknown,Unknown,Killeen +Santa Rosa Neighborhood Park,31.11081059999999,-97.7442616,"1069 Santa Rosa Dr, Killeen, TX 76541, USA",Unknown,Unknown,Killeen +Kauaʻi Museum,21.975035,-159.368253,"4428 Rice St, Lihue, HI 96766, USA",(808) 245-6931,http://www.kauaimuseum.org/,Lihue +Ninini Point Lighthouse,21.9550423,-159.3357786,"Lihue, HI 96766, USA",Unknown,https://www.history.uscg.mil/Browse-by-Topic/Assets/Land/All/Article/1968821/nawiliwili-lighthouse/,Lihue +Kauai Backcountry Adventures,21.9950123,-159.3551132,"3-4131 Kuhio Hwy, Lihue, HI 96766, USA",(808) 245-2506,http://www.kauaibackcountry.com/,Lihue +Nāwiliwili Harbor,21.9546501,-159.3571378,"Waapa Rd, Lihue, HI 96766, USA",(808) 241-3115,http://nawiliwiliharbor.com/,Lihue +Niumalu Beach Park,21.9511723,-159.3623952,"2403-2435 Niumalu Rd, Lihue, HI 96766, USA",(808) 241-4460,Unknown,Lihue +Ahukini Recreational Pier State Park,21.9928693,-159.3317538,"3651 Ahukini Rd, Lihue, HI 96766, USA",(808) 274-3444,http://dlnr.hawaii.gov/dsp/parks/kauai/ahukini-state-recreational-pier/,Lihue +Lihue Civic Center Historic District,21.97508759999999,-159.3672808,"Lihue, HI 96766, USA",(808) 241-6349,http://www.kauai.gov/,Lihue +Kilohana,21.9714003,-159.3914129,"3-2087 Kaumualii Hwy, Lihue, HI 96766, USA",(808) 245-5608,http://kilohanakauai.com/,Lihue +Kauai Safaris,21.9707614,-159.391989,"3-2087 Kaumualii Hwy, Lihue, HI 96766, USA",(808) 652-4707,http://kauaisafaris.com/,Lihue +Kapaia Swinging Bridge,21.9907952,-159.3644832,"4438 Laukini Rd, Lihue, HI 96766, USA",Unknown,https://historichawaii.org/2014/03/03/kapaia-swinging-bridge-2011/,Lihue +Grove Farm,21.9654673,-159.369151,"4050 Nawiliwili Rd, Lihue, HI 96766, USA",(808) 245-3202,http://www.grovefarm.org/,Lihue +Kauai Plantation Railway,21.9711103,-159.3923377,"Depot, 3-2087 Kaumualii Hwy, Lihue, HI 96766, USA",(808) 245-7245,http://www.kilohanakauai.com/,Lihue +Fern Grotto,22.0395109,-159.3592349,"Kapaʻa, HI 96746, USA",Unknown,http://dlnr.hawaii.gov/dsp/parks/kauai/wailua-river-state-park/,Lihue +Lydgate Beach Park,22.0372331,-159.336448,"Leho Dr, Lihue, HI 96766, USA",(808) 241-4463,http://www.kauai.gov/Government/Departments-Agencies/Parks-Recreation/Park-Facilities,Lihue +Hawaiian Collection Room,21.9718545,-159.3913163,"3-2087 Kaumualii Hwy, Lihue, HI 96766, USA",(808) 245-9452,Unknown,Lihue +Lu’au Kalamaku,21.9712528,-159.3921194,"3-2087 Kaumualii Hwy, Lihue, HI 96766, USA",(877) 622-1780,http://luaukalamaku.com/,Lihue +Nukoli'i Beach Park,22.0075048,-159.3395877,"Kauai Beach Rd, Lihue, HI 96766, USA",Unknown,http://www.aloha-hawaii.com/kauai/beaches/nukolii/,Lihue +Hawaii Adventure Center,21.969756,-159.3786872,"Lihue, HI 96766, USA",(808) 353-3922,http://hawaiiadventurecenter.com/,Lihue +Hanamāʻulu Beach Park,21.9934194,-159.3419595,"Kapule Hwy, Lihue, HI 96766, USA",(808) 241-4460,http://www.kauai.gov/,Lihue +Kalena Park,21.9715494,-159.3642875,"4210 Malama St, Lihue, HI 96766, USA",Unknown,Unknown,Lihue +Pittsburgh Zoo & Aquarium,40.4842648,-79.922206,"7370 Baker St, Pittsburgh, PA 15206, USA",(412) 665-3640,http://www.pittsburghzoo.org/,Pittsburgh +Phipps Conservatory and Botanical Gardens,40.43901549999999,-79.947951,"1 Schenley Drive, Pittsburgh, PA 15213, USA",(412) 622-6914,https://www.phipps.conservatory.org/,Pittsburgh +The Andy Warhol Museum,40.4483755,-80.0024907,"117 Sandusky St, Pittsburgh, PA 15212, USA",(412) 237-8300,http://www.warhol.org/,Pittsburgh +Point State Park,40.4415719,-80.00785379999999,"601 Commonwealth Pl, Pittsburgh, PA 15222, USA",(412) 565-2850,http://www.dcnr.state.pa.us/stateparks/findapark/point/,Pittsburgh +Carnegie Museum of Art,40.4437052,-79.9489727,"4400 Forbes Ave, Pittsburgh, PA 15213, USA",(412) 622-3131,https://carnegieart.org/,Pittsburgh +The Frick Pittsburgh,40.44748109999999,-79.9017563,"7227 Reynolds St, Pittsburgh, PA 15208, USA",(412) 371-0600,https://www.thefrickpittsburgh.org/,Pittsburgh +Carnegie Science Center,40.44568279999999,-80.01818519999999,"1 Allegheny Ave, Pittsburgh, PA 15212, USA",(412) 237-3400,http://www.carnegiesciencecenter.org/,Pittsburgh +Randyland,40.4579311,-80.0097399,"1501 Arch St, Pittsburgh, PA 15212, USA",(412) 342-8152,Unknown,Pittsburgh +National Aviary,40.4533299,-80.00960529999999,"700 Arch St, Pittsburgh, PA 15212, USA",(412) 323-7235,https://www.aviary.org/,Pittsburgh +Trundle Manor,40.42272149999999,-79.8804881,"7724 Juniata St, Pittsburgh, PA 15218, USA",(412) 916-5544,http://trundlemanor.com/,Pittsburgh +Senator John Heinz History Center,40.4468415,-79.9920696,"1212 Smallman St, Pittsburgh, PA 15222, USA",(412) 454-6000,http://www.heinzhistorycenter.org/,Pittsburgh +Haunted Pittsburgh LLC,40.4382415,-79.99668489999999,"414 Grant St, Pittsburgh, PA 15219, USA",(412) 385-2015,http://www.hauntedpittsburghtours.com/,Pittsburgh +Point of View,40.4392746,-80.0213101,"1435 Grandview Ave, Pittsburgh, PA 15211, USA",Unknown,Unknown,Pittsburgh +Fort Pitt Museum,40.4406403,-80.00968639999999,"Point State Park, 601 Commonwealth Pl, Pittsburgh, PA 15222, USA",(412) 281-9284,http://www.fortpittmuseum.org/,Pittsburgh +Cathedral of Learning,40.4443625,-79.95315509999999,"4200 Fifth Ave, Pittsburgh, PA 15260, USA",(412) 624-4141,http://www.tour.pitt.edu/tour/cathedral-learning,Pittsburgh +Schenley Park,40.4350634,-79.9417467,"Pittsburgh, PA 15213, USA",(412) 682-7275,https://pittsburghpa.gov/citiparks,Pittsburgh +Carnegie Museum of Natural History,40.4433215,-79.949974,"4400 Forbes Ave, Pittsburgh, PA 15213, USA",(412) 622-3131,https://carnegiemnh.org/,Pittsburgh +Mattress Factory,40.4572005,-80.0124101,"509 Jacksonia St, Pittsburgh, PA 15212, USA",(412) 231-3169,http://mattress.org/,Pittsburgh +Kennywood,40.386622,-79.86188279999999,"4800 Kennywood Blvd, West Mifflin, PA 15122, USA",(412) 461-0500,https://www.kennywood.com/?utm_source=google&utm_medium=OrganicGMB&utm_id=GMBtraffic,Pittsburgh +West End Overlook Park,40.445656,-80.03375489999999,"Marlow St, Pittsburgh, PA 15205, USA",(412) 255-2539,https://registerparks.pittsburghpa.gov/ViewFacilityDetails.aspx?Fid=43&Rid=89,Pittsburgh +Tallahassee Museum,30.4104779,-84.34403950000001,"3945 Museum Rd, Tallahassee, FL 32310, USA",(850) 575-8684,http://tallahasseemuseum.org/,Tallahassee +Alfred B. Maclay Gardens State Park,30.5135456,-84.24748740000001,"3540 Thomasville Rd, Tallahassee, FL 32309, USA",(850) 487-4556,https://www.floridastateparks.org/park/Maclay-Gardens,Tallahassee +Railroad Square Art District,30.433016,-84.291037,"661 Railroad Sq, Tallahassee, FL 32310, USA",(850) 224-1308,http://www.railroadsquare.com/,Tallahassee +Florida Historic Capitol Museum,30.4381359,-84.2813118,"400 S Monroe St, Tallahassee, FL 32399, USA",(850) 487-1902,http://flhistoriccapitol.gov/,Tallahassee +Cascades Park,30.4337109,-84.2779171,"1001 S Gadsden St, Tallahassee, FL 32301, USA",(850) 891-3866,http://discovercascades.com/,Tallahassee +Mission San Luis,30.4486503,-84.3200536,"2100 W Tennessee St, Tallahassee, FL 32304, USA",(850) 245-6406,http://www.missionsanluis.org/,Tallahassee +Goodwood Museum & Gardens,30.45656,-84.25681759999999,"1600 Miccosukee Rd, Tallahassee, FL 32308, USA",(850) 877-4202,http://www.goodwoodmuseum.org/,Tallahassee +Lake Jackson Mounds State Park,30.500009,-84.31840369999999,"3600 Indian Mound Rd, Tallahassee, FL 32303, USA",(850) 922-6007,https://www.floridastateparks.org/park/Lake-Jackson,Tallahassee +Tallahassee Automobile Museum,30.4864983,-84.1625536,"6800 Mahan Dr, Tallahassee, FL 32308, USA",(850) 942-0137,http://tacm.com/,Tallahassee +Fun Station,30.4804626,-84.29473229999999,"2821 Sharer Rd, Tallahassee, FL 32312, USA",(850) 383-0788,http://thefunstation.net/,Tallahassee +Museum of Florida History,30.43805870000001,-84.2849586,"500 S Bronough St, Tallahassee, FL 32399, USA",(850) 245-6400,https://museumoffloridahistory.com/,Tallahassee +The Grove Museum,30.45084219999999,-84.2820306,"902 N Monroe St, Tallahassee, FL 32303, USA",(850) 245-6100,https://thegrovemuseum.com/,Tallahassee +Velda Mound Park,30.5016003,-84.22251370000001,"Baldwin Dr S, Tallahassee, FL 32309, USA",Unknown,Unknown,Tallahassee +Knott House Museum,30.4417261,-84.2793998,"301 E Park Ave, Tallahassee, FL 32301, USA",(850) 922-2459,https://www.museumoffloridahistory.com/visit/knott-house-museum/,Tallahassee +Tallahassee-St. Marks Historic Railroad State Trail,30.37029209999999,-84.2680306,"4778 Woodville Hwy, Tallahassee, FL 32305, USA",(850) 245-2081,http://www.dep.state.fl.us/gwt/state/marks/,Tallahassee +Lake Ella Park,30.461047,-84.2794009,"S Lake Ella Dr, Tallahassee, FL 32303, USA",(850) 891-6860,https://www.talgov.com/,Tallahassee +Heritage Walk,30.43964019999999,-84.2804098,"120 E Jefferson St, Tallahassee, FL 32301, USA",Unknown,Unknown,Tallahassee +DeSoto Site Historic State Park,30.4352758,-84.2688661,"1001 Desoto Park Dr, Tallahassee, FL 32301, USA",(850) 245-6444,http://www.exploresouthernhistory.com/fldesoto1.html,Tallahassee +Natural Bridge Battlefield Historic State Park,30.3004867,-84.1395561,"7502 Natural Bridge Rd, Tallahassee, FL 32305, USA",(850) 922-6007,https://www.floridastateparks.org/parks-and-trails/natural-bridge-battlefield-historic-state-park,Tallahassee +Sunny State Waterfall,30.434296,-84.2774444,"414 E Bloxham St, Tallahassee, FL 32301, USA",Unknown,Unknown,Tallahassee +World Museum of Mining,46.0093633,-112.5648062,"155 Museum Way, Butte, MT 59701, USA",(406) 723-7211,http://www.miningmuseum.org/?utm_source=google-gmb-maps&utm_medium=gmb-website-button&utm_campaign=locl.io&utm_content=2bf5731c-b070-4b4d-9db0-d460ae94a77e,Butte +McGruff Park,46.0072248,-112.5169694,"Shields Ave, Butte, MT 59701, USA",(406) 497-6200,http://co.silverbow.mt.us/192/Parks-Recreation,Butte +Old Butte Historical Tours,46.0140775,-112.5361469,"117 N Main St #9331, Butte, MT 59701, USA",(406) 498-3424,http://buttetour.info/,Butte +Mai Wah Society Inc,46.0113517,-112.5362293,"17 W Mercury St, Butte, MT 59701, USA",(406) 723-3231,https://www.maiwah.org/,Butte +Big Butte Open Space Recreation Area,46.0170143,-112.5651201,"Butte, MT 59701, USA",(406) 497-6200,http://co.silverbow.mt.us/712/Big-Butte-Open-Space,Butte +Mineral Museum,46.0107631,-112.5569098,"1300 W Park St, Butte, MT 59701, USA",(406) 496-4414,http://www.mbmg.mtech.edu/MineralMuseum/main.asp,Butte +BUTTE MULE HISTORIC TOURS,46.01246080000001,-112.5382562,"116 W Park St, Butte, MT 59701, USA",(406) 560-4989,http://www.buttemuletours.com/,Butte +Koprivica Park,46.0047148,-112.5256406,"900-1002 E 2nd St, Butte, MT 59701, USA",Unknown,https://www.facebook.com/pages/Koprivica-Park/730136157026207,Butte +Our Lady of the Rockies,46.0003643,-112.4462327,"Butte Plaza Mall, 3100 Harrison Ave, Butte, MT 59701, USA",(406) 782-1221,https://www.ourladyoftherockies.com/,Butte +Old Lexington Gardens,46.0146424,-112.531588,"300-304 E Granite St, Butte, MT 59701, USA",(406) 723-6656,https://www.visitmt.com/listings/general/garden/old-lexington-stamp-mill-and-gardens,Butte +Copper King Mansion,46.0145012,-112.540285,"219 W Granite St, Butte, MT 59701, USA",(406) 782-7580,https://copperkingmansion.com/,Butte +Chester Steele Park,46.00905950000001,-112.546871,"Butte, MT 59701, USA",(406) 497-6571,http://co.silverbow.mt.us/192/Parks-Recreation,Butte +Butte Urban Safari Tours (B.U.S.T),46.01126199999999,-112.548776,"842 W Galena St, Butte, MT 59701, USA",(406) 723-3959,Unknown,Butte +Science Mine,46.0144822,-112.5346106,"36 E Granite St, Butte, MT 59701, USA",(406) 992-4208,http://www.sciencemine.com/,Butte +Thompson Park,45.8888805,-112.464387,"MT-2, Butte, MT 59701, USA",(406) 494-2147,http://www.co.silverbow.mt.us/453/Thompson-Park,Butte +Columbia Gardens Arch,45.95407699999999,-112.6002722,"Downhill Ln, Butte, MT 59701, USA",Unknown,Unknown,Butte +Dumas Brothel,46.01154599999999,-112.533944,"45 E Mercury St, Butte, MT 59701, USA",(406) 351-9922,http://dumas-brothel.com/,Butte +Butte Visitors Information Bureau,45.9943174,-112.5336178,"1000 George St, Butte, MT 59701, USA",Unknown,Unknown,Butte +Anselmo Mine,46.0167587,-112.5492393,"521 N Excelsior Ave, Butte, MT 59701, USA",Unknown,Unknown,Butte +"Butte, MT Welcome Sign",45.9830464,-112.5078512,"2801 I-90BL, Butte, MT 59701, USA",Unknown,Unknown,Butte +Iolani Palace,21.3067572,-157.8587697,"364 S King St, Honolulu, HI 96813, USA",(808) 522-0822,https://www.iolanipalace.org/,Honolulu +Bishop Museum,21.3329195,-157.8706127,"1525 Bernice St, Honolulu, HI 96817, USA",(808) 847-3511,https://www.bishopmuseum.org/,Honolulu +Aloha Tower,21.3071238,-157.8660266,"Aloha Tower, 155 Ala Moana Blvd, Honolulu, HI 96813, USA",(808) 544-1453,https://alohatower.com/,Honolulu +Honolulu Zoo,21.2710896,-157.8214785,"151 Kapahulu Ave, Honolulu, HI 96815, USA",(808) 926-3191,https://www.honolulu.gov/zoo.html,Honolulu +Waikiki Aquarium,21.2657981,-157.8216482,"2777 Kalākaua Ave, Honolulu, HI 96815, USA",(808) 923-9741,https://www.waikikiaquarium.org/,Honolulu +Waikīkī Beach,21.276235,-157.8273177,"Waikiki, Honolulu, HI 96815, USA",Unknown,https://noahlangphotography.com/blog/best-waikiki-beach-hotels-and-food-oahu-hawaii,Honolulu +Honolulu festival,21.2813184,-157.8305062,"2131-2141 Kalākaua Ave, Honolulu, HI 96815, USA",Unknown,Unknown,Honolulu +Honolulu Museum of Art (HoMA),21.3037991,-157.8487014,"900 S Beretania St., Honolulu, HI 96814, USA",(808) 532-8700,https://honolulumuseum.org/,Honolulu +Duke Paoa Kahanamoku Statue,21.2755195,-157.8253238,"Kalākaua Ave, Honolulu, HI 96815, USA",Unknown,https://www.publicartinpublicplaces.info/duke-paoa-kahanamoku-1990-by-jan-gordon-fisher,Honolulu +Lānaʻi Lookout,21.2764765,-157.6856114,"8102 Kalanianaʻole Hwy, Honolulu, HI 96825, USA",Unknown,Unknown,Honolulu +"Shangri La Museum of Islamic Art, Culture & Design",21.2570987,-157.7949963,"4055 Pāpū Cir, Honolulu, HI 96816, USA",(808) 734-1941,http://www.shangrilahawaii.org/,Honolulu +Spitting Cave,21.2595075,-157.7076774,"7 Lumahai St, Honolulu, HI 96825, USA",Unknown,Unknown,Honolulu +Pearl Harbor National Memorial,21.3675985,-157.938858,"1 Arizona Memorial Pl, Honolulu, HI 96818, USA",(808) 422-3399,https://www.nps.gov/perl/index.htm,Honolulu +Tantalus Lookout - Puu Ualakaa State Park,21.3134333,-157.8228472,"Nutridge St, Honolulu, HI 96822, USA",(808) 587-0300,http://dlnr.hawaii.gov/dsp/parks/oahu/puu-ualakaa-state-wayside/,Honolulu +Don Ho Statue,21.2777474,-157.8268775,"2324 Kalākaua Ave, Honolulu, HI 96815, USA",Unknown,Unknown,Honolulu +Foster Botanical Garden,21.3168139,-157.8590314,"50 N Vineyard Blvd, Honolulu, HI 96817, USA",(808) 768-7135,http://www.honolulu.gov/cms-dpr-menu/site-dpr-sitearticles/568-foster-botanical-garden.html,Honolulu +Ala Moana Regional Park,21.28996859999999,-157.847657,"1201 Ala Moana Blvd, Honolulu, HI 96814, USA",(808) 768-4611,http://www.honolulu.gov/parks,Honolulu +Kūhiō Beach,21.27277239999999,-157.8238124,"2453 Kalākaua Ave, Honolulu, HI 96815, USA",(808) 768-3003,http://www.honolulu.gov/parks/default/about-us.html,Honolulu +King David Kalākaua Statue,21.2839332,-157.831693,"2050 Kalākaua Ave, Honolulu, HI 96815, USA",Unknown,Unknown,Honolulu +Fort DeRussy Beach Park,21.2796438,-157.8342508,"2055 Kālia Rd, Honolulu, HI 96815, USA",Unknown,Unknown,Honolulu +The Children’s Museum of the Upstate,34.8558685,-82.4004377,"300 College St, Greenville, SC 29601, USA",(864) 233-7755,https://tcmupstate.org/greenville/,Greenville +Falls Park on the Reedy,34.8449748,-82.4015955,"601 S Main St, Greenville, SC 29601, USA",(864) 467-4350,https://www.greenvillesc.gov/167/Falls-Park,Greenville +Greenville Zoo,34.8474429,-82.3859678,"150 Cleveland Park Dr, Greenville, SC 29601, USA",(864) 467-4300,http://www.greenvillezoo.com/,Greenville +Upcountry History Museum,34.8571405,-82.4029296,"540 Buncombe St, Greenville, SC 29601, USA",(864) 467-3100,https://www.upcountryhistory.org/,Greenville +Roper Mountain Science Center,34.83904499999999,-82.3092369,"402 Roper Mountain Rd, Greenville, SC 29615, USA",(864) 355-8900,http://www.ropermountain.org/,Greenville +Greenville County Museum of Art,34.85632940000001,-82.4007379,"420 College St, Greenville, SC 29601, USA",(864) 271-7570,http://www.gcma.org/,Greenville +Runway Park at GMU,34.84456900000001,-82.35085869999999,"21 Airport Rd Ext, Greenville, SC 29607, USA",(864) 242-4777,https://www.greenvilledowntownairport.com/runway-park,Greenville +Museum & Library of Confederate History,34.8500115,-82.3873703,"15 Boyce Ave, Greenville, SC 29601, USA",(864) 421-9039,http://www.confederatemuseum.org/,Greenville +Frankie's Fun Park,34.8211652,-82.29605649999999,"45 Park Woodruff Dr, Greenville, SC 29607, USA",(864) 627-9888,http://www.frankies.com/,Greenville +Linky Stone Park: The Children's Garden,34.84904229999999,-82.4035291,"24 Reedy View Dr, Greenville, SC 29601, USA",(864) 232-2273,Unknown,Greenville +Sigal Music Museum,34.8565111,-82.4027926,"516 Buncombe St, Greenville, SC 29601, USA",(864) 520-8807,https://sigalmusicmuseum.org/?utm_source=google&utm_medium=organic&utm_campaign=gbp,Greenville +Escape Artist Greenville - Downtown,34.8608835,-82.3910607,"209 E Stone Ave, Greenville, SC 29609, USA",(864) 509-9305,https://www.escapeartistgreenville.com/,Greenville +Cancer Survivors Park,34.8414497,-82.3979741,"52 Cleveland St, Greenville, SC 29601, USA",(864) 255-5010,http://www.cancersurvivorspark.org/,Greenville +Downtown Greenville,34.8484905,-82.4000174,"S Main St, Greenville, SC 29605, USA",(864) 271-5333,https://www.greenvillesc.gov/424/Explore-Downtown,Greenville +River Lodge,34.84336809999999,-82.4001351,"S Main St, Greenville, SC 29601, USA",(864) 467-4350,Unknown,Greenville +Unity Park,34.85065599999999,-82.41013,"320 S Hudson St, Greenville, SC 29601, USA",(864) 467-8000,https://www.greenvillesc.gov/1843/Unity-Park,Greenville +Cleveland Park,34.8493214,-82.38468519999999,"Cleveland Park Dr & East Washington, Greenville, SC 29601, USA",(864) 467-4355,https://www.greenvillesc.gov/1581/Cleveland-Park,Greenville +Military History Center of the Carolinas,34.8442484,-82.3515889,"14 Airport Rd Ext, Greenville, SC 29607, USA",Unknown,https://milhcc.org/,Greenville +Conestee Nature Preserve,34.7751711,-82.3546277,"840 Mauldin Rd, Greenville, SC 29607, USA",(864) 277-2004,https://conesteepreserve.org/,Greenville +Legacy Park,34.8293197,-82.3324931,"336 Rocky Slope Rd, Greenville, SC 29607, USA",(864) 467-4355,https://www.greenvillesc.gov/1580/Legacy-Park,Greenville +Glacier Gardens Rainforest Adventure,58.360371,-134.548916,"7600 Glacier Hwy, Juneau, AK 99801, USA",(907) 790-3377,http://www.glaciergardens.com/,Juneau +Alaska State Museum,58.29992410000001,-134.4156397,"395 Whittier St, Juneau, AK 99801, USA",(907) 465-2901,https://museums.alaska.gov/asm/,Juneau +Juneau-Douglas City Museum,58.3018345,-134.4112893,"114 W 4th St, Juneau, AK 99801, USA",(907) 586-3572,http://www.juneau.org/museum/,Juneau +Mendenhall Glacier Visitor Center,58.41722369999999,-134.5457934,"6000 Glacier Spur Rd, Juneau, AK 99801, USA",(907) 789-0097,https://www.fs.usda.gov/detail/tongass/about-forest/offices/?cid=stelprdb5400800,Juneau +AJ Mine Gastineau Mill Tours,58.26591740000001,-134.3334914,"500 Sheep Creek Mine Rd, Juneau, AK 99801, USA",(907) 500-5186,http://www.ajgastineauminetour.com/,Juneau +Joe Juneau Memorial,58.300618,-134.4200607,"86 Glacier Ave, Juneau, AK 99801, USA",Unknown,Unknown,Juneau +Last Chance Mining Museum,58.3054727,-134.3844031,"1001 Basin Rd, Juneau, AK 99801, USA",(907) 586-5338,https://www.facebook.com/lastchanceminingmuseum,Juneau +-,58.30211140000001,-134.4104716,"120 4th St, Juneau, AK 99801, USA",Unknown,Unknown,Juneau +Eagle Beach,58.52917029999999,-134.8286179,"Juneau, AK 99801, USA",Unknown,Unknown,Juneau +Juneau Channel Island State Marine Park,58.47844980000001,-134.9286281,"Favorite Channel, Juneau, AK, USA",(907) 269-8400,Unknown,Juneau +Juneau's Best Tours,58.29955870000001,-134.4045438,"230 S Franklin St #906, Juneau, AK 99801, USA",Unknown,Unknown,Juneau +Downtown Clock,58.3005582,-134.4057633,"251 Front St, Juneau, AK 99801, USA",Unknown,Unknown,Juneau +Mendenhall Glacier (Áakʼw Tʼáak Sítʼ),58.44138749999999,-134.5457969,"CFR3+HM4, Juneau, AK 99801, USA",Unknown,Unknown,Juneau +Wickersham State Historic Site,58.3034885,-134.4113387,"213 7th St, Juneau, AK 99801, USA",(907) 586-9001,Unknown,Juneau +Steep Creek,58.4163382,-134.5490442,"Glacier Spur Rd, Juneau, AK 99801, USA",Unknown,Unknown,Juneau +The Whale Project,58.299121,-134.4264335,"Harris Harbor Way, Juneau, AK 99801, USA",(907) 723-9999,https://www.alaskawhalesculpture.com/,Juneau +Alaska State Capitol,58.3019506,-134.4103538,"120 4th St, Juneau, AK 99801, USA",(907) 465-4648,http://alaska.gov/,Juneau +SEGWAY ALASKA TOURS AND EXCURDIONS,58.2962579,-134.4008798,"490 S Franklin St, Juneau, AK 99801, USA",(907) 586-8996,Unknown,Juneau +Fort Durham,58.07510199999999,-134.0125287,"Juneau, AK 99801, USA",Unknown,Unknown,Juneau +Eaglecrest Ski Area,58.2745312,-134.5128166,"3000 Fish Creek Rd, Juneau, AK 99801, USA",(907) 790-2000,https://skieaglecrest.com/,Juneau +SkyWheel Myrtle Beach,33.6940259,-78.87737179999999,"1110 N Ocean Blvd, Myrtle Beach, SC 29577, USA",(843) 839-9200,http://skywheelmb.com/,Myrtle Beach +WonderWorks Myrtle Beach,33.71682030000001,-78.8843065,"1313 Celebrity Cir, Myrtle Beach, SC 29577, USA",(843) 626-9962,http://www.wonderworksonline.com/myrtle-beach,Myrtle Beach +Family Kingdom Amusement Park,33.682392,-78.89193159999999,"300 S Ocean Blvd, Myrtle Beach, SC 29577, USA",(843) 626-3447,http://www.familykingdomfun.com/,Myrtle Beach +Hollywood Wax Museum,33.7171419,-78.89125729999999,"1808 21st Ave N unit a, Myrtle Beach, SC 29577, USA",(843) 444-0091,https://www.hollywoodwaxentertainment.com/myrtle-beach-sc-attractions/,Myrtle Beach +Ripley's Aquarium of Myrtle Beach,33.7157371,-78.8779414,"1110 Celebrity Cir, Myrtle Beach, SC 29577, USA",(843) 916-0888,https://www.ripleyaquariums.com/myrtlebeach/,Myrtle Beach +Broadway at the Beach,33.71561730000001,-78.8819491,"1325 Celebrity Cir, Myrtle Beach, SC 29577, USA",(843) 444-3200,https://www.broadwayatthebeach.com/,Myrtle Beach +Ripley's Believe It or Not!,33.69245410000001,-78.8797541,"901 N Ocean Blvd, Myrtle Beach, SC 29577, USA",(843) 916-0888,http://www.ripleys.com/myrtlebeach,Myrtle Beach +Ripley's Haunted Adventure,33.6932294,-78.8789223,"915 N Ocean Blvd, Myrtle Beach, SC 29577, USA",(843) 916-0888,https://www.ripleys.com/myrtlebeach/haunted-adventure/,Myrtle Beach +Myrtle Beach Boardwalk and Promenade,33.6932866,-78.87757959999999,"Myrtle Beach, Myrtle Beach Boardwalk and Promenade, Myrtle Beach, SC 29577, USA",(843) 918-1000,http://www.myrtlebeachdowntown.com/,Myrtle Beach +Soar + Explore,33.7166601,-78.8840046,"1313 Celebrity Cir, Myrtle Beach, SC 29577, USA",(843) 626-9962,http://www.wonderworksonline.com/myrtle-beach/the-experience/soar-explore/,Myrtle Beach +Free Fall Thrill Park,33.6946055,-78.877455,"1201 N Ocean Blvd, Myrtle Beach, SC 29577, USA",(843) 444-8255,http://freefallpark.com/,Myrtle Beach +Ripley's Mirror Maze,33.6932293,-78.8789223,"913 N Ocean Blvd, Myrtle Beach, SC 29577, USA",(843) 916-0888,https://www.ripleys.com/myrtlebeach/ripleys-mirror-maze/,Myrtle Beach +Myrtle Beach State Park,33.6511978,-78.93062499999999,"4401 S Kings Hwy, Myrtle Beach, SC 29575, USA",(843) 238-5325,https://southcarolinaparks.com/myrtle-beach,Myrtle Beach +Hannah's Maze of Mirrors,33.71727529999999,-78.8913015,"1808 21st Ave N Unit C, Myrtle Beach, SC 29577, USA",(843) 444-0091,https://www.hollywoodwaxentertainment.com/myrtle-beach-sc-attractions/,Myrtle Beach +Myrtle Beach Safari (by reservation only),33.695161,-78.96923199999999,"851 Folly Ranch Ln, Myrtle Beach, SC 29588, USA",(843) 361-4552,https://docantlesdaysafari.com/,Myrtle Beach +Dinopark,33.7154995,-78.8775139,"1112 Celebrity Cir, Myrtle Beach, SC 29577, USA",(843) 808-9619,http://www.dinoparkmb.com/,Myrtle Beach +Backstage Mirror Maze,33.7178823,-78.88289569999999,"1314 Celebrity Cir #165, Myrtle Beach, SC 29577, USA",(843) 712-1794,http://www.backstagemirrormaze.com/,Myrtle Beach +The Pavilion Parks,33.71561730000001,-78.8819491,"1325 Celebrity Cir, Myrtle Beach, SC 29577, USA",(843) 839-0303,https://pavilionparks.com/,Myrtle Beach +Gardens By The Sea,33.7257741,-78.8380281,"5506 N Ocean Blvd #5504, Myrtle Beach, SC 29577, USA",Unknown,Unknown,Myrtle Beach +Pavilion Park,33.6924413,-78.8816867,"205 9th Ave N, Myrtle Beach, SC 29577, USA",(843) 839-0303,https://pavilionparks.com/,Myrtle Beach +Public Garden,42.35406389999999,-71.0700921,"Boston, MA 02116, USA",(617) 635-4505,https://www.boston.gov/parks/public-garden,Boston +Museum of Science,42.367714,-71.0709771,"Museum Of Science Driveway, Boston, MA 02114, USA",(617) 723-2500,https://www.mos.org/,Boston +New England Aquarium,42.3592478,-71.0491475,"1 Central Wharf, Boston, MA 02110, USA",(617) 973-5200,https://www.neaq.org/,Boston +"Museum of Fine Arts, Boston",42.339381,-71.094048,"465 Huntington Ave, Boston, MA 02115, USA",(617) 267-9300,https://www.mfa.org/,Boston +Boston Tea Party Ships & Museum,42.35218209999999,-71.0512911,"306 Congress St, Boston, MA 02210, USA",(617) 338-1773,https://www.bostonteapartyship.com/,Boston +Boston Common,42.3550897,-71.0657256,"139 Tremont St, Boston, MA 02111, USA",(617) 635-4505,https://www.boston.gov/departments/parks-and-recreation,Boston +Faneuil Hall Marketplace,42.360189,-71.0551145,"Boston, MA 02109, USA",(617) 523-1300,https://faneuilhallmarketplace.com/,Boston +Bunker Hill Monument,42.37635409999999,-71.0607764,"Monument Sq, Charlestown, MA 02129, USA",(617) 242-5641,http://www.nps.gov/bost/historyculture/bhm.htm,Boston +Fenway Park,42.3466764,-71.0972178,"4 Jersey St, Boston, MA 02215, USA",(877) 733-7699,https://www.mlb.com/redsox/ballpark,Boston +View Boston,42.3471679,-71.0825119,"800 Boylston St Floor 52, Boston, MA 02199, USA",(617) 544-3535,https://www.viewboston.com/,Boston +Old State House,42.3587352,-71.05745399999999,"206 Washington St, Boston, MA 02109, USA",(617) 720-1713,https://www.revolutionaryspaces.org/,Boston +Charles River Esplanade,42.3556187,-71.0788876,"Charles River, Esplanade, Boston, MA 02116, USA",(617) 227-0365,http://esplanade.org/,Boston +Castle Island,42.33786989999999,-71.0125206,"2010 William J Day Blvd, Boston, MA 02127, USA",(617) 727-5290,https://www.mass.gov/locations/castle-island-pleasure-bay-m-street-beach-and-carson-beach,Boston +Black Heritage Trail,42.3599907,-71.065214,"46 Joy St, Boston, MA 02114, USA",(508) 228-9833,https://www.nps.gov/boaf/planyourvisit/index.htm,Boston +Boston Children's Museum,42.3519736,-71.04968389999999,"308 Congress St, Boston, MA 02210, USA",(617) 426-6500,https://bostonchildrensmuseum.org/,Boston +Boston Waterfront,42.354529,-71.043897,"1 Marina Park Drive, Boston, MA 02210, USA",Unknown,Unknown,Boston +John F. Kennedy Presidential Library and Museum,42.316274,-71.0342146,"Columbia Point, Boston, MA 02125, USA",(617) 514-1600,https://www.jfklibrary.org/,Boston +The Paul Revere House,42.363739,-71.05369999999999,"19 N Square, Boston, MA 02113, USA",(617) 523-2338,http://www.paulreverehouse.org/,Boston +The Boston Stone,42.3617145,-71.0568536,"Marshall St, Boston, MA 02108, USA",Unknown,Unknown,Boston +Observation Deck at Independence Wharf,42.3541519,-71.05141069999999,"470 Atlantic Ave, Boston, MA 02210, USA",Unknown,Unknown,Boston +Winnie Palmer Nature Reserve,40.288553,-79.394888,"744 Walzer Way, Latrobe, PA 15650, USA",(724) 537-5284,https://www.wpnr.org/,Latrobe +Legion Keener Park,40.30967279999999,-79.38865489999999,"1658 Catherine St, Latrobe, PA 15650, USA",(724) 537-4331,http://www.latroberecreation.org/legionkeenerpark.html,Latrobe +Twin Lakes Park,40.32230870000001,-79.47196319999999,"219 Twin Lakes Rd, Latrobe, PA 15650, USA",(724) 830-3950,http://www.co.westmoreland.pa.us/index.aspx?NID=737,Latrobe +Lincoln Highway Experience,40.2914433,-79.34184139999999,"3435 Route 30 East, Latrobe, PA 15650, USA",(724) 879-4241,http://lhhc.org/,Latrobe +Latrobe Area Historical Society,40.3175393,-79.3814622,"416 Weldon St, Latrobe, PA 15650, USA",(724) 539-8889,https://www.latrobehistory.org/,Latrobe +Cardinal Park,40.3221696,-79.38313629999999,"301-399 E 1st Ave, Latrobe, PA 15650, USA",Unknown,Unknown,Latrobe +Latrobe Skating Center,40.29796,-79.3656584,"2914 Ligonier St, Latrobe, PA 15650, USA",(724) 537-8541,http://www.latrobeskatingcenter.com/,Latrobe +James H Rogers Park,40.31613409999999,-79.3852912,"212 Main St, Latrobe, PA 15650, USA",Unknown,Unknown,Latrobe +Latrobe Parklet,40.3162616,-79.3845778,"903 Ligonier St, Latrobe, PA 15650, USA",Unknown,Unknown,Latrobe +Latrobe Park,40.3151935,-79.3872872,"98 Depot St, Latrobe, PA 15650, USA",Unknown,Unknown,Latrobe +Latrobe Rotary community park,40.279591,-79.37053999999999,"192 Mania Ave, Latrobe, PA 15650, USA",Unknown,Unknown,Latrobe +Idlewild & SoakZone,40.2615155,-79.2770723,"2574 Lincoln Hwy, Ligonier, PA 15658, USA",(724) 238-3666,https://www.idlewild.com/?utm_source=google&utm_medium=OrganicGMB&utm_id=GMBtraffic,Latrobe +Keystone State Park,40.3725903,-79.3850148,"1150 Keystone Park Rd, Derry, PA 15627, USA",(724) 668-2939,http://www.dcnr.state.pa.us/stateparks/findapark/keystone/,Latrobe +Historic Hanna's Town,40.34391660000001,-79.5070545,"809 Forbes Trail Rd, Greensburg, PA 15601, USA",(724) 836-1800,https://www.westmorelandhistory.org/,Latrobe +Lincoln Highway Heritage Corridor,40.29141549999999,-79.3418516,"3435 Route 30 East, Latrobe, PA 15650, USA",(724) 879-4241,http://lhhc.org/,Latrobe +Polymath Park - Frank Lloyd Wright Overnight,40.16486880000001,-79.4162966,"187 Evergreen Ln, Acme, PA 15610, USA",(877) 833-7829,https://www.polymathpark.com/,Latrobe +Compass Inn Museum,40.2118584,-79.1988269,"1386 US-30 East, Laughlintown, PA 15655, USA",(724) 238-4983,http://www.compassinn.org/,Latrobe +Latrobe Park & Recreation Board,40.3150862,-79.3855165,"901 Jefferson St, Latrobe, PA 15650, USA",(724) 537-4331,http://www.latroberecreation.org/,Latrobe +"Historic Fairview Park, Assoc.",40.4061625,-79.55148439999999,"CC4X+FC6, Delmont, PA 15601, USA",(412) 553-6450,https://historicfairviewpark.com/,Latrobe +Bushy Run Battlefield,40.3566847,-79.62354069999999,"1253 Bushy Run Rd, Jeannette, PA 15623, USA",(724) 527-5584,http://bushyrunbattlefield.com/,Latrobe +World's Fair Park,35.9625774,-83.9241924,"525 Henley St, Knoxville, TN 37902, USA",(865) 215-1158,http://worldsfairpark.org/,Knoxville +Knoxville Museum of Art,35.9624258,-83.9252288,"1050 Worlds Fair Park Dr, Knoxville, TN 37916, USA",(865) 525-6101,http://www.knoxart.org/,Knoxville +Sunsphere,35.961707,-83.92335349999999,"810 Clinch Ave, Knoxville, TN 37902, USA",(865) 314-0660,http://www.sunspheretickets.com/,Knoxville +Ijams Nature Center,35.9564535,-83.8667753,"2915 Island Home Ave, Knoxville, TN 37920, USA",(865) 577-4717,http://www.ijams.org/,Knoxville +Knoxville Walking Tours,35.9664481,-83.91916739999999,"301 S Gay St, Knoxville, TN 37902, USA",(865) 309-4522,http://knoxvillewalkingtours.com/,Knoxville +Muse Knoxville,35.9976168,-83.88546749999999,"516 N Beaman St, Knoxville, TN 37914, USA",(865) 594-1494,http://www.themuseknoxville.org/,Knoxville +Knoxville Botanical Garden and Arboretum,35.9821601,-83.88107699999999,"2743 Wimpole Ave, Knoxville, TN 37914, USA",(865) 862-8717,http://www.knoxgarden.org/,Knoxville +Haunted Knoxville Ghost Tours,35.96596299999999,-83.9195529,"36 Market Square #1404, Knoxville, TN 37902, USA",(865) 377-9677,http://www.hauntedknoxville.net/,Knoxville +Three Rivers Rambler,35.9528101,-83.9403756,"2560 University Commons Way, Knoxville, TN 37919, USA",(865) 524-9411,http://www.threeriversrambler.com/,Knoxville +Charles Krutch Park,35.9644142,-83.9186952,"504 Market St, Knoxville, TN 37902, USA",(865) 215-4248,https://www.knoxvilletn.gov/government/city_departments_offices/parks_and_recreation/parks/krutch_park,Knoxville +McClung Museum of Natural History & Culture,35.952005,-83.9272094,"1327 Cir Park Dr, Knoxville, TN 37996, USA",(865) 974-2144,http://mcclungmuseum.utk.edu/,Knoxville +Knoxville Sightseeing,35.9927898,-83.90412769999999,"2519 Mitchell St, Knoxville, TN 37917, USA",(865) 566-0634,Unknown,Knoxville +Chilhowee Park & Exposition Center,35.9962958,-83.8840324,"3301 E Magnolia Ave, Knoxville, TN 37914, USA",(865) 215-1450,https://chilhoweepark.com/,Knoxville +Augusta Quarry,35.94477150000001,-83.9118858,"3000 Fort Dickerson Rd SW, Knoxville, TN 37920, USA",Unknown,Unknown,Knoxville +Zoo Knoxville,35.9998122,-83.8882497,"3500 Knoxville Zoo Dr, Knoxville, TN 37914, USA",(865) 637-5331,https://www.zooknoxville.org/,Knoxville +Outdoor Knoxville Adventure Center,35.9619021,-83.9126632,"900 Volunteer Landing Ln, Knoxville, TN 37915, USA",(865) 228-8424,http://www.outdoorknoxville.com,Knoxville +James White Fort Association,35.9629616,-83.9121693,"205 E Hill Ave, Knoxville, TN 37915, USA",(865) 525-6514,http://jameswhitesfort.org/,Knoxville +"Rowing Man Statue in Knoxville, TN",35.9636109,-83.9175188,"W. Church Avenue &, S Gay St, Knoxville, TN 37902, USA",Unknown,Unknown,Knoxville +UT Gardens Knoxville,35.9439999,-83.9382601,"2518 Jacob Dr, Knoxville, TN 37996, USA",(865) 974-7324,http://utgardens.tennessee.edu/locations/knoxville,Knoxville +East Tennessee Historical Society and Museum,35.9641166,-83.9177945,"601 S Gay St, Knoxville, TN 37902, USA",(865) 215-8830,http://www.easttnhistory.org/,Knoxville +Denver Zoo,39.74959609999999,-104.9508519,"2300 Steele St, Denver, CO 80205, USA",(720) 337-1400,https://denverzoo.org/,Denver +Denver Botanic Gardens,39.7320964,-104.9612839,"1007 York St, Denver, CO 80206, USA",(720) 865-3500,https://www.botanicgardens.org/,Denver +Denver Art Museum,39.73718780000001,-104.9893451,"100 W 14th Ave Pkwy, Denver, CO 80204, USA",(720) 865-5000,https://denverartmuseum.org/,Denver +Denver Museum of Nature & Science,39.74752609999999,-104.9428078,"2001 Colorado Blvd, Denver, CO 80205, USA",(303) 370-6000,https://www.dmns.org/,Denver +Molly Brown House Museum,39.7374933,-104.9807338,"1340 Pennsylvania St, Denver, CO 80203, USA",(303) 832-4092,https://mollybrown.org/,Denver +Big Blue Bear,39.7436238,-104.9952912,"750-776 14th St, Denver, CO 80202, USA",Unknown,http://bluebearstudios.com/,Denver +Elitch Gardens,39.750183,-105.0101417,"2000 Elitch Cir, Denver, CO 80204, USA",(303) 595-4386,https://www.elitchgardens.com/,Denver +Clyfford Still Museum,39.7363194,-104.9897917,"1250 Bannock St, Denver, CO 80204, USA",(720) 354-4880,https://clyffordstillmuseum.org/,Denver +History Colorado Center,39.73583740000001,-104.9871305,"1200 Broadway, Denver, CO 80203, USA",(303) 447-8679,https://www.historycolorado.org/history-colorado-center?utm_source=GoogleBusinessListing,Denver +Historic Elitch Carousel Dome,39.76859109999999,-105.0446649,"3775 Tennyson St, Denver, CO 80212, USA",Unknown,Unknown,Denver +Beyond Light Show,39.7091597,-104.9822776,"400 S Logan St, Denver, CO 80209, USA",Unknown,http://www.beyondlightshow.com/,Denver +Colorado State Capitol,39.73932509999999,-104.9848069,"200 E Colfax Ave, Denver, CO 80203, USA",(303) 866-2604,https://www.colorado.gov/pacific/capitol,Denver +Meow Wolf Denver | Convergence Station,39.7408201,-105.0156629,"1338 1st St, Denver, CO 80204, USA",(866) 636-9969,https://tickets.meowwolf.com/denver/#gbp,Denver +Kirkland Museum of Fine & Decorative Art,39.7355683,-104.9905479,"1201 Bannock St, Denver, CO 80204, USA",(303) 832-8576,http://www.kirklandmuseum.org/,Denver +City Park,39.7476212,-104.9498084,"2001 Colorado Blvd, Denver, CO 80205, USA",(720) 913-1311,http://www.denver.org/listings/City-Park/6822/,Denver +Forney Museum of Transportation,39.7779854,-104.9706957,"4303 Brighton Blvd, Denver, CO 80216, USA",(303) 297-1113,http://www.forneymuseum.org/,Denver +Four Mile Historic Park,39.7035422,-104.9292325,"715 S Forest St, Denver, CO 80246, USA",(720) 865-0800,http://fourmilepark.org/,Denver +Confluence Park,39.754654,-105.0073456,"2250 15th St, Denver, CO 80202, USA",(720) 913-1311,http://www.denver.org/things-to-do/sports-recreation/denver-parks/,Denver +Denver Selfie Museum,39.7453576,-104.9938072,"1531 Stout St Suite 102, Denver, CO 80202, USA",(303) 328-0104,https://denverselfiemuseum.com/,Denver +Wings Over the Rockies Air & Space Museum,39.72089070000001,-104.8955075,"7711 E Academy Blvd, Denver, CO 80230, USA",(303) 360-5360,http://wingsmuseum.org/,Denver +Maine Discovery Museum,44.8000986,-68.7717374,"74 Main St, Bangor, ME 04401, USA",(207) 262-7200,http://www.mainediscoverymuseum.org/,Bangor +Cole Land Transportation Museum,44.7855519,-68.8049006,"405 Perry Rd, Bangor, ME 04401, USA",(207) 990-3600,http://www.colemuseum.org/,Bangor +Cascade Park,44.8113134,-68.7458284,"600 State St, Bangor, ME 04401, USA",(207) 992-4490,Unknown,Bangor +Bangor City Forest,44.8632801,-68.74036509999999,"54 Tripp Dr, Bangor, ME 04401, USA",(207) 992-4490,http://cityforest.bangorinfo.com/,Bangor +Zillman Art Museum,44.80316939999999,-68.7704815,"40 Harlow St, Bangor, ME 04401, USA",(207) 581-3300,http://www.zam.umaine.edu/,Bangor +Bangor Historical Society,44.799951,-68.77431059999999,"159 Union St, Bangor, ME 04401, USA",(207) 942-1900,http://www.bangorhistoricalsociety.org/,Bangor +Broadway Park,44.8110238,-68.7697526,"Bangor, ME 04401, USA",(207) 947-1018,http://www.bangorparksandrec.com/info/facilities,Bangor +The Stephen & Tabitha King Foundation,44.8023001,-68.78499889999999,"47 W Broadway, Bangor, ME 04401, USA",(207) 990-2910,http://www.stkfoundation.org/,Bangor +Paul Bunyan Statue,44.78868310000001,-68.7783728,"519 Main St, Bangor, ME 04401, USA",(207) 947-0307,http://www.bangormaine.gov/,Bangor +Bass Park,44.79054370000001,-68.78296449999999,"Bangor, ME 04401, USA",(207) 947-5555,http://m.facebook.com/pages/Bass-Park/152605074749579,Bangor +Hayford Park,44.80384649999999,-68.7874569,"13th St, Bangor, ME 04401, USA",(207) 947-1018,http://www.bangorparksandrec.com/info/facilities/details.aspx?FacilityID=8711,Bangor +Gomez Park,44.7988879,-68.77017620000001,"40-200 Broad St, Bangor, ME 04401, USA",(207) 992-4490,http://www.bangorparksandrec.com/,Bangor +Stillwater Park Playground,44.8196009,-68.75769249999999,"338 Howard St, Bangor, ME 04401, USA",(207) 992-4490,http://www.bangormaine.gov/content/318/352/default.aspx,Bangor +Walden-Parke Preserve,44.86643709999999,-68.76203079999999,"Bangor, ME 04402, USA",(207) 942-1010,https://www.bangorlandtrust.org/walden-parke.html,Bangor +Saxl Park,44.8163045,-68.7454187,"Mt Hope Ave, Bangor, ME 04401, USA",(207) 941-4023,Unknown,Bangor +Penobscot River Walkway,44.7950177,-68.7705451,"Bangor, ME 04401, USA",Unknown,Unknown,Bangor +Chapin Park,44.80817299999999,-68.7632394,"Bangor, ME 04401, USA",Unknown,http://bangorparksandrec.com/,Bangor +Essex Woods,44.82816820000001,-68.7658699,"12 Watchmaker St, Bangor, ME 04401, USA",(207) 992-4200,http://www.bangormaine.gov/trails,Bangor +Bangor amphitheater,44.7884255,-68.8130067,"357 Odlin Rd, Bangor, ME 04401, USA",Unknown,Unknown,Bangor +Orono Bog Boardwalk,44.8680056,-68.7261071,"Tripp Dr, Bangor, ME 04401, USA",(207) 866-2578,http://www.oronobogwalk.org/,Bangor +Albany Institute of History & Art,42.655725,-73.760233,"125 Washington Ave, Albany, NY 12210, USA",(518) 463-4478,http://www.albanyinstitute.org/,Albany +New York State Museum,42.6485806,-73.7611611,"222 Madison Ave, Albany, NY 12230, USA",(518) 474-5877,http://www.nysm.nysed.gov/,Albany +Schuyler Mansion State Historic Site,42.641474,-73.759383,"32 Catherine St, Albany, NY 12202, USA",(518) 434-0834,https://parks.ny.gov/historic-sites/33/details.aspx,Albany +Albany Pine Bush Preserve,42.7193564,-73.8644145,"195 New Karner Rd Suite 1, Albany, NY 12205, USA",(518) 456-0655,https://www.albanypinebush.org/,Albany +Hear about Here,42.7048002,-73.8645994,"5 Columbia Cir Suite 1, Albany, NY 12203, USA",(518) 250-9488,http://www.hearabouthere.com/,Albany +Discover Albany Visitors Center,42.654109,-73.7482442,"25 Quackenbush Square, Albany, NY 12207, USA",(518) 434-1217,http://www.albany.org/,Albany +Washington Park Lake House,42.656183,-73.7719618,"Washington Park Rd, Albany, NY 12203, USA",(518) 434-5699,https://www.albanyny.gov/,Albany +New York State Capitol,42.65277199999999,-73.7572388,"State St. and, Washington Ave, Albany, NY 12224, USA",(518) 474-2418,http://empirestateplaza.ny.gov/,Albany +USS SLATER,42.6424886,-73.7497636,"141 Broadway, Albany, NY 12202, USA",(518) 431-1943,http://www.ussslater.org/,Albany +Historic Cherry Hill,42.6348514,-73.7634157,"523 1/2, 523 S Pearl St, Albany, NY 12202, USA",(518) 434-4791,https://www.historiccherryhill.org/,Albany +Buckingham Lake Park,42.6641696,-73.8090533,"39 Berkshire Blvd, Albany, NY 12203, USA",(518) 434-5699,Unknown,Albany +Irish American Heritage Museum,42.6542839,-73.74825,"21 Quackenbush Square, Albany, NY 12207, USA",(518) 427-1916,https://www.irish-us.org/,Albany +Ten Broeck Mansion,42.6587337,-73.75117089999999,"9 Ten Broeck Pl, Albany, NY 12210, USA",(518) 436-9826,http://www.tenbroeckmansion.org/,Albany +Parks Recreation & Historic,42.65,-73.75999999999999,"Albany, NY 12238, USA",(518) 474-0456,Unknown,Albany +The McPherson Legacy to the City of Albany - Robert Burns Statue,42.6550745,-73.7679168,"Washington Park Rd &, Hudson Ave, Albany, NY 12210, USA",Unknown,Unknown,Albany +Jim DiNapoli Park,42.6503225,-73.7508196,"Albany, NY 12207, USA",Unknown,Unknown,Albany +Lincoln Park,42.64597000000001,-73.76596339999999,"228 Eagle St, Albany, NY 12202, USA",(518) 434-3201,https://www.albanyny.gov/797/Lincoln-Park-Master-Plan,Albany +East Capitol Park,42.6517889,-73.7560389,"Eagle St, Albany, NY 12210, USA",(518) 474-5733,https://www.ogs.ny.gov/,Albany +American Italian Heritage Museum,42.6964652,-73.80772309999999,"1227 Central Ave, Albany, NY 12205, USA",(518) 435-1979,http://www.americanitalianmuseum.org/,Albany +Triangles and Arches by Alexander Calder,42.6494143,-73.7606768,"134 Eagle St, Albany, NY 12202, USA",(518) 473-7521,https://empirestateplaza.ny.gov/art/alexander-calder,Albany +Laishley Park,26.9387774,-82.0490536,"Punta Gorda, FL 33950, USA",Unknown,http://www.ci.punta-gorda.fl.us/visitors/laishley-park,Punta Gorda +Ponce De Leon Park,26.9098801,-82.09552029999999,"3400 Ponce de Leon Pkwy, Punta Gorda, FL 33950, USA",(941) 575-5041,http://www.ci.punta-gorda.fl.us/visitors/ponce-de-leon-park,Punta Gorda +Charlotte Harbor Preserve State Park,26.8504337,-82.0238705,"12301 Burnt Store Rd, Punta Gorda, FL 33955, USA",(941) 575-5816,https://www.floridastateparks.org/parks-and-trails/charlotte-harbor-preserve-state-park,Punta Gorda +Peace River Wildlife Center,26.910993,-82.09534359999999,"3400 Ponce de Leon Pkwy, Punta Gorda, FL 33950, USA",(941) 637-3830,https://www.prwildlife.org/,Punta Gorda +Punta Gorda Nature Park,26.9094442,-82.06932479999999,"1555 Aqui Esta Dr, Punta Gorda, FL 33950, USA",Unknown,http://www.ci.punta-gorda.fl.us/Home/Components/FacilityDirectory/FacilityDirectory/50/630,Punta Gorda +Gilchrist Park,26.9335081,-82.0561872,"400 W Retta Esplanade, Punta Gorda, FL 33950, USA",(941) 575-3324,http://www.ci.punta-gorda.fl.us/visitors/gilchrist-park,Punta Gorda +Charlotte Harbor Environmental Center,26.874246,-82.027254,"10941 Burnt Store Rd, Punta Gorda, FL 33955, USA",(941) 575-5435,http://checflorida.org/,Punta Gorda +Peace River Botanical & Sculpture Gardens,26.9643263,-81.98863010000001,"5827 Riverside Dr, Punta Gorda, FL 33982, USA",(941) 621-8299,http://www.peacerivergardens.org/,Punta Gorda +Military Heritage Museum,26.929012,-82.05981539999999,"900 W Marion Ave, Punta Gorda, FL 33950, USA",(941) 575-9002,https://militaryheritagemuseum.org/,Punta Gorda +Blanchard House Museum,26.9361476,-82.0438735,"406 Dr Martin Luther King Jr Blvd, Punta Gorda, FL 33950, USA",(941) 575-7518,http://www.blanchardhousemuseum.org/,Punta Gorda +Punta Gorda Boat Center,26.891385,-82.054407,"5258 River Bay Dr, Punta Gorda, FL 33950, USA",(239) 273-1272,Unknown,Punta Gorda +Escape Rooms Unlocked - Punta Gorda,26.937278,-82.044708,"401 E Olympia Ave #2, Punta Gorda, FL 33950, USA",(941) 295-6880,http://escaperoomsunlocked.com/,Punta Gorda +Alligator Bay Distillers,26.9431209,-82.0233473,"25522 Marion Ave, Punta Gorda, FL 33950, USA",(941) 347-8419,http://www.alligatorbaydistillers.com/,Punta Gorda +Hector House Plaza,26.9344632,-82.0505711,"227 Taylor St, Punta Gorda, FL 33950, USA",Unknown,Unknown,Punta Gorda +Sea Grape Artists Gallery,26.9357713,-82.05019639999999,"113 W Marion Ave, Punta Gorda, FL 33950, USA",(941) 575-1718,http://seagrapegallery.com/,Punta Gorda +Peace River,27.0172349,-81.9762545,"631 Woodstork Ln, Punta Gorda, FL 33982, USA",Unknown,Unknown,Punta Gorda +Gasparilla Sound - Charlotte Harbor Aquatic Preserve,26.8355076,-82.10606829999999,"12301 Burnt Store Rd, Punta Gorda, FL 33955, USA",(941) 575-5861,http://www.dep.state.fl.us/coastal/sites/gasparilla/,Punta Gorda +Punta Gorda History Center,26.9254734,-82.04070829999999,"512 E Grace St, Punta Gorda, FL 33950, USA",(941) 916-8800,https://puntagordahistorycenter.blogspot.com/,Punta Gorda +King Fisher Fleet,26.9282576,-82.0639672,"1200 W Retta Esplanade #16a, Punta Gorda, FL 33950, USA",(941) 639-0969,http://www.kingfisherfleet.com/,Punta Gorda +Charlotte Harbor Preserve Nature Walk,26.8735149,-82.0239328,"Co Rd 765, Punta Gorda, FL 33955, USA",(941) 575-5816,https://www.floridastateparks.org/parks-and-trails/charlotte-harbor-preserve-state-park,Punta Gorda +Bonnet House Museum & Gardens,26.1363719,-80.1069179,"900 N Birch Rd, Fort Lauderdale, FL 33304, USA",(954) 563-5393,http://www.bonnethouse.org/,Fort Lauderdale +Jungle Queen Riverboat,26.1126572,-80.1076874,"801 Seabreeze Blvd, Fort Lauderdale, FL 33316, USA",(954) 462-5596,http://www.junglequeen.com/,Fort Lauderdale +Riverwalk Fort Lauderdale,26.1189446,-80.1342954,"888 E Las Olas Blvd #210, Fort Lauderdale, FL 33301, USA",(954) 468-1541,http://www.goriverwalk.com/,Fort Lauderdale +Museum of Discovery and Science,26.1206046,-80.1479671,"401 SW 2nd St, Fort Lauderdale, FL 33312, USA",(954) 467-6637,http://www.mods.org/,Fort Lauderdale +Historic Stranahan House Museum,26.1184624,-80.13748989999999,"335 SE 6th Ave, Fort Lauderdale, FL 33301, USA",(954) 524-4736,http://www.stranahanhouse.org/,Fort Lauderdale +History Fort Lauderdale,26.1191543,-80.1459453,"231 SW 2nd Ave, Fort Lauderdale, FL 33301, USA",(954) 463-4431,http://www.historyfortlauderdale.org/,Fort Lauderdale +Earl Lifshey Ocean Park,26.167472,-80.0989553,"3054 N Ocean Blvd, Fort Lauderdale, FL 33308, USA",(954) 828-7275,https://www.parks.fortlauderdale.gov/beach/beaches/earl-lifshey-park,Fort Lauderdale +Colee Hammock Park,26.1173142,-80.1287546,"1500 Brickell Dr, Fort Lauderdale, FL 33301, USA",(954) 828-7275,https://www.parks.fortlauderdale.gov/Home/Components/FacilityDirectory/FacilityDirectory/141/1091,Fort Lauderdale +Beach Pavilion at Lauderdale-By-The-Sea,26.1896272,-80.0951458,"0 Commercial Blvd, Lauderdale-By-The-Sea, FL 33308, USA",(954) 640-4200,http://www.discoverlbts.com/,Fort Lauderdale +Hugh Taylor Birch State Park,26.1453543,-80.1049979,"3109 E Sunrise Blvd, Fort Lauderdale, FL 33304, USA",(954) 564-4521,https://www.floridastateparks.org/park/Hugh-Taylor-Birch,Fort Lauderdale +broward center perfoming arts,26.122631,-80.104097,"1 N Fort Lauderdale Beach Blvd, Fort Lauderdale, FL 33304, USA",Unknown,Unknown,Fort Lauderdale +DC Alexander Park,26.116333,-80.1051955,"501 S Fort Lauderdale Beach Blvd, Fort Lauderdale, FL 33316, USA",(954) 828-7275,https://www.parks.fortlauderdale.gov/Home/Components/FacilityDirectory/FacilityDirectory/22/1091,Fort Lauderdale +Escapology,26.1219735,-80.1043497,"17 S Fort Lauderdale Beach Blvd #300, Fort Lauderdale, FL 33316, USA",(954) 900-5463,https://www.escapology.com/en/fort-lauderdale-fl/,Fort Lauderdale +Esplanade Park,26.1199683,-80.1479426,"400 SW 2nd St, Fort Lauderdale, FL 33312, USA",(954) 828-7275,http://www.fortlauderdale.gov/,Fort Lauderdale +Riverfront Arch,26.12045969999999,-80.1445036,"200 SW 1st Ave, Fort Lauderdale, FL 33301, USA",Unknown,Unknown,Fort Lauderdale +Dr. Von D. Mizell-Eula Johnson State Park,26.0746754,-80.1114437,"6503 N Ocean Dr, Dania Beach, FL 33004, USA",(954) 923-2833,https://www.floridastateparks.org/parks-and-trails/dr-von-d-mizell-eula-johnson-state-park,Fort Lauderdale +NSU Art Museum Fort Lauderdale,26.1196496,-80.14276869999999,"1 E Las Olas Blvd, Fort Lauderdale, FL 33301, USA",(954) 525-5500,http://nsuartmuseum.org/,Fort Lauderdale +Pioneer House Museum,26.1194231,-80.1458304,"229 SW 2nd Ave, Fort Lauderdale, FL 33301, USA",Unknown,http://www.historyfortlauderdale.org/,Fort Lauderdale +Fort Lauderdale Historical Society,26.1198756,-80.14577539999999,"219 SW 2nd Ave, Fort Lauderdale, FL 33301, USA",(954) 463-4431,http://historyfortlauderdale.org/,Fort Lauderdale +Fort Lauderdale Beach Cam - Live Streaming,26.1296352,-80.1035553,"505 N Fort Lauderdale Beach Blvd, Fort Lauderdale, FL 33304, USA",Unknown,Unknown,Fort Lauderdale +The Franklin Institute,39.9582109,-75.17313469999999,"222 N 20th St, Philadelphia, PA 19103, USA",(215) 448-1200,https://www.fi.edu/?utm_source=google&utm_medium=googlemybusiness&utm_campaign=2021,Philadelphia +Independence National Historical Park,39.9495312,-75.14973189999999,"Philadelphia, PA 19106, USA",(215) 965-2305,https://www.nps.gov/inde/index.htm,Philadelphia +Philadelphia's Magic Gardens,39.94271519999999,-75.1593153,"1020 South St, Philadelphia, PA 19147, USA",(215) 733-0390,http://www.phillymagicgardens.org/,Philadelphia +Philadelphia Museum of Art,39.9655697,-75.18096609999999,"2600 Benjamin Franklin Pkwy, Philadelphia, PA 19130, USA",(215) 763-8100,https://www.philamuseum.org/,Philadelphia +Liberty Bell,39.9496103,-75.1502821,"526 Market St, Philadelphia, PA 19106, USA",(215) 965-2305,https://www.nps.gov/inde/learn/historyculture/stories-libertybell.htm,Philadelphia +Eastern State Penitentiary,39.9683364,-75.17266479999999,"2027 Fairmount Ave, Philadelphia, PA 19130, USA",(215) 236-3300,http://www.easternstate.org/,Philadelphia +JFK Plaza (Love Park),39.9541322,-75.16563959999999,"Arch St, Philadelphia, PA 19102, USA",(215) 686-1776,http://www.phila.gov/Pages/default.aspx,Philadelphia +Philadelphia Zoo,39.97149589999999,-75.1955383,"3400 W Girard Ave, Philadelphia, PA 19104, USA",(215) 243-1100,https://www.philadelphiazoo.org/,Philadelphia +Franklin Square,39.95566339999999,-75.1504502,"200 N 6th St, Philadelphia, PA 19106, USA",(215) 629-4026,http://www.historicphiladelphia.org/franklin-square/what-to-see/,Philadelphia +Rodin Museum,39.9619232,-75.17395789999999,"2151 Benjamin Franklin Pkwy, Philadelphia, PA 19130, USA",(215) 763-8100,https://www.rodinmuseum.org/,Philadelphia +Rocky Statue,39.96513309999999,-75.1792878,"2600 Benjamin Franklin Pkwy, Philadelphia, PA 19130, USA",Unknown,http://www.associationforpublicart.org/artwork/rocky/,Philadelphia +Please Touch Museum,39.9794964,-75.209147,"4231 Avenue of the Republic, Philadelphia, PA 19131, USA",(215) 581-3181,http://www.pleasetouchmuseum.org/,Philadelphia +Elfreth's Alley Museum,39.95271779999999,-75.14248189999999,"126 Elfreth's Alley, Philadelphia, PA 19106, USA",Unknown,http://elfrethsalley.org/,Philadelphia +African American Museum in Philadelphia,39.95326139999999,-75.1517562,"701 Arch St, Philadelphia, PA 19106, USA",(215) 574-0380,http://aampmuseum.org/,Philadelphia +The Mütter Museum at The College of Physicians of Philadelphia,39.9532308,-75.1763698,"19 S 22nd St, Philadelphia, PA 19103, USA",(215) 563-3737,https://muttermuseum.org/,Philadelphia +Museum of the American Revolution,39.94832030000001,-75.1457547,"101 S 3rd St, Philadelphia, PA 19106, USA",(215) 253-6731,https://www.amrevmuseum.org/,Philadelphia +Penn Museum,39.9492392,-75.191367,"3260 South St, Philadelphia, PA 19104, USA",(215) 898-4000,http://www.penn.museum/,Philadelphia +Benjamin Franklin Museum,39.9494619,-75.1468994,"317 Chestnut St, Philadelphia, PA 19106, USA",(267) 514-1522,http://www.nps.gov/inde/planyourvisit/benjaminfranklinmuseum.htm,Philadelphia +Barnes Foundation,39.9606433,-75.17280749999999,"2025 Benjamin Franklin Pkwy, Philadelphia, PA 19130, USA",(215) 278-7000,https://www.barnesfoundation.org/,Philadelphia +Betsy Ross House,39.9522267,-75.1446521,"239 Arch St, Philadelphia, PA 19106, USA",(215) 629-4026,http://historicphiladelphia.org/what-to-see/,Philadelphia +Phelps Mansion Museum,42.10064390000001,-75.9055669,"191 Court St, Binghamton, NY 13901, USA",(607) 722-4873,http://www.phelpsmansion.org/,Binghamton +Roberson Museum and Science Center,42.0938996,-75.91858119999999,"30 Front St, Binghamton, NY 13905, USA",(607) 772-0660,http://www.roberson.org/,Binghamton +Ross Park Zoo,42.07569539999999,-75.90648759999999,"60 Morgan Rd, Binghamton, NY 13903, USA",(607) 724-5461,http://www.rossparkzoo.org/,Binghamton +Bundy Museum of History and Art,42.1019264,-75.9282463,"133 Main St, Binghamton, NY 13905, USA",(607) 772-9179,http://www.bundymuseum.org/,Binghamton +The Discovery Center of the Southern Tier,42.0738133,-75.9037491,"60 Morgan Rd, Binghamton, NY 13903, USA",(607) 773-8661,http://www.thediscoverycenter.org/,Binghamton +Otsiningo Park,42.1235412,-75.90285240000001,"1 Otsiningo Park, Binghamton, NY 13905, USA",(607) 778-6541,http://www.gobroomecounty.com/parks/otsiningo,Binghamton +Recreation Park,42.09971599999999,-75.93329659999999,"Beethoven St & Seminary Ave, Binghamton, NY 13905, USA",(607) 722-9166,Unknown,Binghamton +Cutler Botanic Garden,42.1283107,-75.9058877,"840 Front St, Binghamton, NY 13905, USA",(607) 772-8953,http://ccebroomecounty.com/gardening/cutler-botanic-gardens,Binghamton +Confluence Park,42.0928571,-75.9163927,"N Shore Dr, Binghamton, NY 13901, USA",Unknown,http://www.visitbinghamton.org/listings/the-confluence-park/,Binghamton +Binghamton University Art Museum,42.0886991,-75.968107,"4400 Vestal Pkwy E, Binghamton, NY 13901, USA",(607) 777-2968,http://www.binghamton.edu/art-museum/,Binghamton +Cheri A Lindsey Memorial Park,42.1131591,-75.90546359999999,"1 Truesdell St, Binghamton, NY 13901, USA",(607) 772-7017,Unknown,Binghamton +Ross Park Carousel,42.0754655,-75.90788239999999,"Ross Park Carousel, 44 Morgan Rd, Binghamton, NY 13903, USA",(607) 772-7017,https://www.binghamton-ny.gov/government/departments/parks-recreation/city-carousels,Binghamton +Recreation Park Carousel,42.09928569999999,-75.93372450000001,"Carousel, Jefferson Ave, Binghamton, NY 13905, USA",(607) 772-7017,https://www.binghamton-ny.gov/government/departments/parks-recreation/city-carousels,Binghamton +Binghamton Clothing Factory Fire Monument,42.1091145,-75.9238787,"51 Mygatt St, Binghamton, NY 13905, USA",Unknown,http://www.atlasobscura.com/places/binghamton-clothing-factory-fire-monument,Binghamton +Dunk House,42.1003355,-75.9077873,"4 Pine St, Binghamton, NY 13901, USA",Unknown,Unknown,Binghamton +C. M. Russell Museum,47.5101885,-111.2862464,"400 13th St N, Great Falls, MT 59401, USA",(406) 727-8787,https://cmrussell.org/,Great Falls +The Lewis and Clark Interpretive Center,47.52944249999999,-111.2355985,"4201 Giant Springs Rd, Great Falls, MT 59405, USA",(406) 453-6248,https://www.fs.usda.gov/recarea/hlcnf/recarea/?recid=61458,Great Falls +Children's Museum of Montana,47.5062509,-111.3075411,"22 Railroad Square, Great Falls, MT 59401, USA",(406) 452-6661,http://childrensmuseumofmontana.org/?utm_source=google&utm_medium=wix_google_business_profile&utm_campaign=11119304774603334464,Great Falls +Electric City Water Park,47.5039718,-111.309761,"100 River Dr S, Great Falls, MT 59405, USA",(406) 454-9008,http://www.greatfallsmt.net/recreation/electric-city-water-park,Great Falls +Paris Gibson Square Museum of Art,47.5056014,-111.2825348,"1400 1st Ave N, Great Falls, MT 59401, USA",(406) 727-8255,http://www.the-square.org/,Great Falls +The History Museum,47.4998175,-111.3048796,"422 2nd St S, Great Falls, MT 59405, USA",(406) 452-3462,http://greatfallshistorymuseum.org/,Great Falls +Giant Springs State Park,47.534446,-111.228842,"4803 Giant Springs Rd, Great Falls, MT 59405, USA",(406) 727-1212,http://stateparks.mt.gov/giant-springs/,Great Falls +West Bank Park,47.5129257,-111.3124064,"1600 4th St NE, Great Falls, MT 59404, USA",(406) 771-1265,https://greatfallsmt.net/recreation/west-bank-park,Great Falls +Gibson Park,47.51029,-111.3045441,"River, s Edge Trail, Great Falls, MT 59401, USA",(406) 771-1265,https://greatfallsmt.net/recreation/gibson-park-0,Great Falls +Malmstrom Museum and Air Park,47.50625729999999,-111.2003773,"90 Whitehall Dr, Malmstrom AFB, MT 59402, USA",(406) 731-2705,https://www.malmstrom.af.mil/About-Us/Malmstrom-Museum,Great Falls +Lewis & Clark Trail Heritage Foundation,47.5294186,-111.2356118,"4201 Giant Springs Rd, Great Falls, MT 59405, USA",(406) 454-1234,https://www.lewisandclark.org/,Great Falls +Great Falls Dam View,47.51961259999999,-111.2576008,"5435 River Dr N, Great Falls, MT 59405, USA",Unknown,Unknown,Great Falls +Wooden Turtle Carving,47.5125232,-111.3022693,"420 Park Dr N, Great Falls, MT 59401, USA",Unknown,Unknown,Great Falls +Statue of Liberty Replica,47.50749009999999,-111.3062585,"Gibson Park Trail, Great Falls, MT 59401, USA",(406) 771-1265,https://greatfallsmt.net/,Great Falls +Wadsworth Park,47.5138079,-111.3867217,"4620 Wilkinson Ln, Great Falls, MT 59404, USA",(406) 771-1265,https://greatfallsmt.net/recreation/wadsworth-park,Great Falls +Tool Tree,47.50772419999999,-111.3139627,"119 1st Ave N, Great Falls, MT 59401, USA",Unknown,Unknown,Great Falls +Rainbow Dam,47.5346304,-111.2048997,"River's Edge Trail, Great Falls, MT 59404, USA",Unknown,Unknown,Great Falls +St. Ann's Cathedral,47.5088049,-111.2949997,"715 3rd Ave N, Great Falls, MT 59401, USA",(406) 761-5456,http://www.stannscathedral.org/,Great Falls +Black Eagle Memorial Island,47.52089830000001,-111.2587144,"River's Edge Trail, Great Falls, MT 59405, USA",Unknown,Unknown,Great Falls +Great Falls Parks Recreation,47.5184907,-111.277655,"1700 River Dr N #1327, Great Falls, MT 59401, USA",(406) 771-1265,https://greatfallsmt.net/recreation,Great Falls +Sci-Port Discovery Center,32.5134279,-93.7418988,"820 Clyde Fant Pkwy, Shreveport, LA 71101, USA",(318) 424-3466,https://sci-port.org/?utm_source=googl&utm_medium=organic&utm_campaign=gbp,Shreveport +Shreveport Aquarium,32.5159309,-93.7433341,"601 Clyde Fant Pkwy, Shreveport, LA 71101, USA",(318) 383-0601,http://www.shreveportaquarium.com/,Shreveport +Louisiana State Exhibit Museum,32.4802536,-93.7853096,"3015 Greenwood Rd, Shreveport, LA 71109, USA",(318) 632-2020,http://www.sos.la.gov/HistoricalResources/VisitMuseums/LouisianaStateExhibitMuseum/Pages/default.aspx,Shreveport +Shreveport Water Works Museum,32.5175477,-93.7574913,"142 N Common St, Shreveport, LA 71101, USA",(318) 221-3388,http://shreveportwaterworks.org/,Shreveport +Red River District,32.51599220000001,-93.744905,"500 Clyde Fant Pkwy, Shreveport, LA 71101, USA",(318) 673-5100,http://downtownshreveport.com/business-blank/red-river-district/,Shreveport +R.W. Norton Art Gallery,32.45882100000001,-93.74098,"4747 Creswell Ave, Shreveport, LA 71106, USA",(318) 865-4201,http://www.rwnaf.org/,Shreveport +Spring Street Historical Museum,32.514522,-93.7460224,"525 N Spring St, Shreveport, LA 71101, USA",(318) 562-3128,https://springstreetmuseum.org/,Shreveport +Southern University Museum-Art,32.5122489,-93.7515011,"610 Texas St, Shreveport, LA 71101, USA",(318) 670-6631,https://www.susla.edu/page/university-museum,Shreveport +Betty Virginia Park,32.4686444,-93.748561,"3901 Fairfield Ave, Shreveport, LA 71106, USA",(318) 673-7727,http://www.myspar.org/329/Betty-Virginia,Shreveport +The Logan Mansion,32.5066833,-93.75387870000002,"725 Austen Pl, Shreveport, LA 71101, USA",(318) 210-1007,Unknown,Shreveport +Shreveport Riverview Park,32.5159377,-93.74339,"601 Clyde Fant Pkwy, Shreveport, LA 71101, USA",(318) 673-7727,https://www.myspar.org/340/Riverview-Park,Shreveport +Elvis Presley Statue,32.507923,-93.752967,"705 Grand Ave, Shreveport, LA 71101, USA",(318) 841-4000,http://www.shreveportmunicipalauditorium.com/,Shreveport +Marlene Yu Museum,32.5122432,-93.752795,"710 Travis St, Shreveport, LA 71101, USA",(318) 717-9111,http://marleneyumuseum.org/,Shreveport +Meadows Museum Of Art,32.483384,-93.7335008,"2911 Centenary Blvd, Shreveport, LA 71104, USA",(318) 869-5169,http://www.centenary.edu/meadows,Shreveport +A C Steere Park,32.46516339999999,-93.7209798,"4009 Youree Dr, Shreveport, LA 71105, USA",(318) 673-7727,http://www.myspar.org/328/AC-Steere-Purple-Park,Shreveport +J. Bennett Johnston Waterway Regional Visitor Center,32.5143581,-93.7430726,"700 Clyde Fant Memorial Pkwy, Shreveport, LA 71101, USA",(318) 677-2673,http://www.mvk.usace.army.mil/Missions/Recreation/J-Bennett-Johnston-Visitor-Center/,Shreveport +Stage-Stars Museum,32.507923,-93.752967,"705 Grand Ave, Shreveport, LA 71101, USA",Unknown,Unknown,Shreveport +American Rose Center,32.4598426,-93.9494064,"8877 Jefferson Paige Rd, Shreveport, LA 71119, USA",(318) 938-5402,https://www.rose.org/,Shreveport +Walter B Jacobs Memorial Nature Park,32.5666964,-93.9328618,"8012 Par Rd 4, Shreveport, LA 71107, USA",(318) 929-2806,http://www.caddoparks.org/,Shreveport +Splash Kingdom Oasis,32.443445,-93.920591,"7670 W 70th St, Shreveport, LA 71129, USA",(318) 938-5475,https://www.splashkingdomwaterpark.com/shreveport-oasis/,Shreveport +Asheville Pinball Museum,35.5964044,-82.55665839999999,"1 Battle Square Ste 1b, Asheville, NC 28801, USA",(828) 776-5671,http://ashevillepinball.com/,Asheville +Botanical Gardens at Asheville,35.6124838,-82.5660193,"151 WT Weaver Blvd, Asheville, NC 28804, USA",(828) 252-5190,https://www.ashevillebotanicalgardens.org/,Asheville +Western North Carolina Nature Center,35.5794378,-82.4942607,"75 Gashes Creek Rd, Asheville, NC 28805, USA",(828) 259-8080,http://www.wildwnc.org/,Asheville +The North Carolina Arboretum,35.49585039999999,-82.6052229,"100 Frederick Law Olmsted Way, Asheville, NC 28806, USA",(828) 665-2492,http://www.ncarboretum.org/,Asheville +Thomas Wolfe Memorial,35.59750289999999,-82.5513414,"52 N Market St, Asheville, NC 28801, USA",(828) 253-8304,http://www.wolfememorial.com/,Asheville +The Adventure Center of Asheville,35.592959,-82.58326699999999,"85 Expo Dr, Asheville, NC 28806, USA",(877) 247-5539,https://ashevilletreetopsadventurepark.com/,Asheville +Asheville Museum of Science,35.5947901,-82.5533963,"43 Patton Ave, Asheville, NC 28801, USA",(828) 254-7162,https://ashevillescience.org/,Asheville +Asheville Ghost Tours: Oldest & Original,35.5982597,-82.5520193,"80 Broadway St, Asheville, NC 28801, USA",(828) 318-8579,http://www.hauntedasheville.com/,Asheville +Biltmore,35.5527514,-82.56369049999999,"1 Lodge St, Asheville, NC 28803, USA",(800) 411-3812,https://www.biltmore.com/,Asheville +Grovewood Village,35.62136299999999,-82.544686,"111 Grovewood Rd, Asheville, NC 28804, USA",(828) 214-7768,http://www.grovewood.com/,Asheville +LaZoom Tours,35.59222759999999,-82.55057169999999,"76 Biltmore Ave, Asheville, NC 28801, USA",(828) 225-6932,http://www.lazoomtours.com/?utm_source=GMBlisting&utm_medium=organic,Asheville +Pack Square Park,35.5955651,-82.549388,"80 Court Plaza, Asheville, NC 28801, USA",(828) 259-5800,https://www.nps.gov/nr/travel/asheville/pac.htm,Asheville +Blue Ridge National Heritage Area,35.565868,-82.48646699999999,"195 Hemphill Knob Rd, Asheville, NC 28803, USA",(828) 298-5330,http://www.blueridgeheritage.com/,Asheville +Asheville Art Museum,35.5946714,-82.5512827,"2 S Pack Square, Asheville, NC 28801, USA",(828) 253-3227,http://www.ashevilleart.org/,Asheville +Pritchard Park,35.5947264,-82.5544579,"67 Patton Ave, Asheville, NC 28801, USA",(828) 251-1122,http://www.ashevillenc.gov/,Asheville +Asheville Treetops Adventure Park,35.5929483,-82.58328279999999,"85 Expo Dr, Asheville, NC 28806, USA",(877) 247-5539,http://www.ashevilletreetopsadventurepark.com/asheville-treetops-adventure-park,Asheville +Biltmore Waterfall,35.5314172,-82.5546233,"Fourmile Branch,, Asheville, NC 28806, USA",(800) 441-3812,http://www.biltmore.com/,Asheville +River Arts District,35.5828141,-82.5646953,"3 River Arts Pl, Asheville, NC 28801, USA",(828) 388-3526,http://www.riverartsdistrict.com/,Asheville +Statue: Childhood,35.5952587,-82.5506124,"121 US-74 ALT, Asheville, NC 28801, USA",Unknown,Unknown,Asheville +Urban Trail,35.594841,-82.5515138,"11 Biltmore Ave, Asheville, NC 28801, USA",Unknown,http://www.ashevilleurbantrail.com/,Asheville +Cheyenne Frontier Days Old West Museum,41.15794520000001,-104.8340615,"4610 Carey Ave, Cheyenne, WY 82001, USA",(307) 778-7290,http://www.oldwestmuseum.org/?utm_source=google&utm_medium=wix_google_business_profile&utm_campaign=868959285552699281,Cheyenne +Cheyenne Depot Museum,41.1317202,-104.8146395,"121 W 15th St, Cheyenne, WY 82001, USA",(307) 638-6338,http://www.cheyennedepotmuseum.org/,Cheyenne +Wyoming State Museum,41.1394554,-104.8179522,"2301 Central Ave, Cheyenne, WY 82001, USA",(307) 777-7022,http://wyomuseum.state.wy.us/,Cheyenne +Cheyenne Depot Plaza,41.1326948,-104.8144224,"1 Depot Square Capitol &, W 15th St, Cheyenne, WY 82007, USA",(800) 426-5009,https://www.cheyenne.org/listing/cheyenne-depot/83/,Cheyenne +Cheyenne Botanic Gardens,41.15570799999999,-104.8305412,"710 S Lions Park Dr, Cheyenne, WY 82001, USA",(307) 637-6458,http://www.botanic.org/,Cheyenne +Nelson Museum of the West,41.1336343,-104.8177085,"1714 Carey Ave, Cheyenne, WY 82001, USA",(307) 635-7670,http://www.nelsonmuseum.com/,Cheyenne +Messenger's Old West Museum,41.131721,-104.789608,"616 Crook Ave, Cheyenne, WY 82001, USA",(307) 635-8959,Unknown,Cheyenne +Paul Smith Children's Village at the Cheyenne Botanic Gardens,41.15541340000001,-104.8293565,"616 S Lions Park Dr, Cheyenne, WY 82001, USA",(307) 637-6349,http://www.botanic.org/discover/childrens-village/,Cheyenne +Cheyenne Street Railway Trolley,41.1317202,-104.8146395,"121 W 15th St #202, Cheyenne, WY 82001, USA",(800) 426-5009,http://www.cheyennetrolley.com/,Cheyenne +Big Boy Steam Engine 4004,41.13675869999999,-104.7998805,"1705 Morrie Ave, Cheyenne, WY 82001, USA",(307) 638-4357,http://www.cheyennecity.org/,Cheyenne +Cowgirls of the West Museum,41.1333609,-104.8160615,"205 W 17th St, Cheyenne, WY 82001, USA",(307) 638-4994,http://www.cowgirlsofthewestmuseum.com/,Cheyenne +Mylar Park,41.1666514,-104.8184431,"5117 Seminoe Rd, Cheyenne, WY 82009, USA",(307) 637-6429,https://www.cheyenne.org/listing/mylar-park/62/,Cheyenne +Holliday Park,41.1387955,-104.8029116,"19th Morrie Ave, Cheyenne, WY 82001, USA",(307) 637-6429,Unknown,Cheyenne +Wyoming State Capitol,41.140267,-104.8202125,"200 W 24th St, Cheyenne, WY 82001, USA",(307) 777-7767,http://www.wyomingcapitolsquare.com/,Cheyenne +Wyoming Historic Governors' Mansion State Historic Site,41.1387883,-104.8146447,"300 E 21st St, Cheyenne, WY 82001, USA",(307) 777-7878,https://wyoparks.wyo.gov/index.php/places-to-go/historic-governors-mansion,Cheyenne +BSA Replica of Statue of Liberty,41.1605646,-104.8319574,"Cheyenne, WY 82009, USA",Unknown,Unknown,Cheyenne +Lions Park,41.1543249,-104.8298793,"789-829 S Lions Park Dr, Cheyenne, WY 82001, USA",(307) 637-6433,http://cheyennecity.org/,Cheyenne +Curt Gowdy State Park,41.1694715,-105.2279971,"1264 Granite Springs Rd, Cheyenne, WY 82009, USA",(307) 632-7946,https://wyoparks.wyo.gov/index.php/places-to-go/curt-gowdy,Cheyenne +North Cheyenne Community Park,41.18080369999999,-104.77236,"3200 Mynear St, Cheyenne, WY 82009, USA",Unknown,Unknown,Cheyenne +Southeast Wyoming Welcome Center,41.0584272,-104.8796397,"5611 High Plains Road, Cheyenne, WY 82007, USA",(800) 225-5996,https://www.dot.state.wy.us/restareas,Cheyenne +Milwaukee Art Museum,43.04007259999999,-87.897058,"700 N Art Museum Dr, Milwaukee, WI 53202, USA",(414) 224-3200,http://mam.org/,Milwaukee +Milwaukee Public Museum,43.0405367,-87.9208579,"800 W Wells St, Milwaukee, WI 53233, USA",(414) 278-2728,https://www.mpm.edu/,Milwaukee +North Point Lighthouse,43.06567219999999,-87.8714222,"2650 N Wahl Ave, Milwaukee, WI 53211, USA",(414) 332-6754,http://northpointlighthouse.org/,Milwaukee +Milwaukee County Zoo,43.0327156,-88.03740789999999,"10001 W Bluemound Rd, Milwaukee, WI 53226, USA",(414) 771-3040,https://milwaukeezoo.org/,Milwaukee +Discovery World,43.03686889999999,-87.89573519999999,"500 N Harbor Dr, Milwaukee, WI 53202, USA",(414) 765-9966,https://www.discoveryworld.org/,Milwaukee +Milwaukee Riverwalk District,43.0512611,-87.9117979,"101 W Pleasant St, Milwaukee, WI 53212, USA",Unknown,http://www.milwaukeeriverwalkdistrict.com/,Milwaukee +Mitchell Park Domes,43.0264365,-87.94594819999999,"524 S Layton Blvd, Milwaukee, WI 53215, USA",(414) 257-5600,https://www.mitchellparkdomes.com/,Milwaukee +Pabst Mansion,43.0392649,-87.93799410000001,"2000 W Wisconsin Ave, Milwaukee, WI 53233, USA",(414) 931-0808,http://www.pabstmansion.com/,Milwaukee +Harley-Davidson Museum,43.0316706,-87.9165244,"400 W Canal St, Milwaukee, WI 53201, USA",(414) 287-2789,http://www.h-dmuseum.com/,Milwaukee +Museum Center Park,43.03903640000001,-87.8991425,"910 E Michigan St, Milwaukee, WI 53202, USA",(414) 224-3200,http://mam.org/,Milwaukee +Milwaukee Pierhead Lighthouse,43.0259591,-87.8953511,"Milwaukee, WI 53202, USA",Unknown,Unknown,Milwaukee +Lakeshore State Park,43.03363269999999,-87.8955177,"500 N Harbor Dr, Milwaukee, WI 53202, USA",(414) 274-4281,https://dnr.wisconsin.gov/topic/parks/lakeshore,Milwaukee +Streets of Old Milwaukee,43.0406576,-87.9218831,"800 W Wells St, Milwaukee, WI 53233, USA",(414) 278-2702,http://www.mpm.edu/exhibitions/permanent-exhibits/first-floor-exhibits/streets-old-milwaukee,Milwaukee +Oceans of Fun with Ocean Connections,43.0342961,-88.0403788,"10001 W Bluemound Rd, Milwaukee, WI 53226, USA",(414) 453-5527,https://www.oceansoffun.org/,Milwaukee +Milwaukee RiverWalk | East,43.0429268,-87.9125315,"N Riverwalk Way, Milwaukee, WI 53202, USA",Unknown,https://milwaukeeriverwalkdistrict.com/,Milwaukee +Swing Park,43.05367109999999,-87.90350169999999,"1737 N Water St, Milwaukee, WI 53202, USA",(414) 286-2489,Unknown,Milwaukee +South Shore Beach,42.9939338,-87.8810213,"2900 S Shore Dr, Milwaukee, WI 53207, USA",Unknown,Unknown,Milwaukee +Veterans Park,43.0451097,-87.8907809,"1010 N Lincoln Memorial Dr, Milwaukee, WI 53202, USA",(414) 257-7275,https://county.milwaukee.gov/files/county/parks-department/Park-Maps/Veterans1.pdf,Milwaukee +Jewish Museum Milwaukee,43.0479913,-87.8948862,"1360 N Prospect Ave, Milwaukee, WI 53202, USA",(414) 390-5730,http://jewishmuseummilwaukee.org/,Milwaukee +North Point Water Tower,43.0597042,-87.8798559,"2288 N Lake Dr, Milwaukee, WI 53202, USA",(414) 286-2830,http://city.milwaukee.gov/water/about/North-Point-Tower-.htm,Milwaukee +Carrie M. McLain Memorial Museum,64.5027538,-165.3984216,"100 W 7th Ave, Nome, AK 99762, USA",(907) 443-6630,https://www.nomealaska.org/memorial-museum,Nome +World’s Largest Gold Pan,64.5004309,-165.4082981,"405 Warren Pl, Nome, AK 99762, USA",Unknown,https://www.nomealaska.org/,Nome +Anvil Rock,64.5609588,-165.3877932,"Anvil Rock Rd, Nome, AK 99762, USA",Unknown,http://www.alaska.org/detail/anvil-mountain-white-alice-antennas-viewpoint,Nome +Anvil City Square,64.5000809,-165.408603,"308 Bering St, Nome, AK 99762, USA",Unknown,http://www.nomealaska.org/,Nome +Swanberg Rocker Gulch Park,64.4921087,-165.3662891,"Nome, AK 99762, USA",Unknown,Unknown,Nome +Bering Land Bridge National Preserve Visitor Center,64.4979543,-165.4084829,"214 Front St, Nome, AK 99762, USA",Unknown,http://nps.gov/bela,Nome +Nome Visitor Center,64.497818,-165.4101257,"301 Front St, Nome, AK 99762, USA",(907) 443-6555,http://www.visitnomealaska.com/,Nome +Cape Nome Mining District Discovery Sites,64.54954459999999,-165.4128226,"Foot Trail, Nome, AK 99762, USA",Unknown,Unknown,Nome +Katirvik Cultural Center,64.5026594,-165.3981072,"100 W 7th Ave, Nome, AK 99762, USA",Unknown,https://kawerak.org/cultural-development/katirvik-cultural-center/,Nome +Lake Casa Blanca International State Park,27.5391656,-99.451308,"5102 Bob Bullock Loop, Laredo, TX 78041, USA",(956) 725-3826,https://tpwd.texas.gov/state-parks/lake-casa-blanca,Laredo +Republic of the Rio Grande Museum,27.50210749999999,-99.505975,"1005 Zaragoza St, Laredo, TX 78040, USA",(956) 727-3480,https://www.nps.gov/places/republic-of-the-rio-grande-museum.htm,Laredo +Slaughter Park,27.4971659,-99.4850796,"202 N Stone Ave, Laredo, TX 78040, USA",(956) 795-2350,https://laredoparksandrec.com/laredo-fields/slaughter-sports-complex/,Laredo +Laredo Water Museum,27.5239159,-99.5218212,"2702 Anna Ave, Laredo, TX 78040, USA",(956) 721-2020,https://laredoutilities.com/laredo-water-museum/,Laredo +Imaginarium of South Texas,27.5535006,-99.49826000000002,"5300 San Dario Ave Suite 510, Laredo, TX 78041, USA",(956) 728-0404,http://www.istx.org/,Laredo +Border Heritage Museum,27.5023307,-99.5041666,"810 Zaragoza St, Laredo, TX 78040, USA",(956) 718-2727,https://m.facebook.com/BorderHeritage,Laredo +North Central Park,27.5999127,-99.4711959,"10202 International Blvd, Laredo, TX 78045, USA",(956) 791-7300,https://laredoparksandrec.com/laredo-parks/north-central-park/,Laredo +Jarvis Plaza,27.50606969999999,-99.5089378,"1004 Matamoros St, Laredo, TX 78040, USA",(956) 729-4610,https://laredoparksandrec.com/laredo-parks/jarvis-plaza/,Laredo +San Augustin Plaza,27.5025981,-99.50614,"1012 Grant St, Laredo, TX 78040, USA",Unknown,https://laredoparksandrec.com/laredo-parks/san-augustin-plaza/,Laredo +Reyes Meza Museum,27.425398,-99.506361,"88276 Nuevo Laredo, Tamaulipas, Mexico",867 717 5960,Unknown,Laredo +Las Alas de Laredo Mural,27.5878399,-99.5292944,"Deerfield, Laredo, TX 78045, USA",Unknown,https://www.kgns.tv/2023/06/02/city-laredo-unveils-new-mural-father-mcnaboe-park/,Laredo +San Agustin Catholic Cathedral,27.5025236,-99.5054698,"201 San Agustin Ave, Laredo, TX 78040, USA",(956) 722-1382,http://sanagustincathedrallaredo.org/,Laredo +Benavides Park,27.520024,-99.4571799,"2607 Derby Ave, Laredo, TX 78043, USA",(956) 795-2350,https://laredoparksandrec.com/laredo-parks/arturo-benavides-sr-memorial-park/,Laredo +Laredo Safari & Adventure Park,27.2998238,-99.3337267,"Ranch road 7918f, Laredo, TX 78046, USA",(956) 606-7823,Unknown,Laredo +Estacionamiento Laredo,27.5035375,-99.5075187,"319 Convent Ave, Laredo, TX 78040, USA",Unknown,Unknown,Laredo +Pappajohn Sculpture Park,41.5851577,-93.6352944,"1330 Grand Ave, Des Moines, IA 50309, USA",(515) 237-1386,http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park,Des Moines +Greater Des Moines Botanical Garden,41.596709,-93.614188,"909 Robert D. Ray Dr, Des Moines, IA 50309, USA",(515) 323-6290,http://www.dmbotanicalgarden.com/,Des Moines +Blank Park Zoo,41.5209593,-93.6244982,"7401 SW 9th St, Des Moines, IA 50315, USA",(515) 285-4722,http://www.blankparkzoo.com/,Des Moines +Robert D. Ray Asian Garden,41.5932713,-93.6172794,"Robert D. Ray Dr, Des Moines, IA 50309, USA",(515) 323-6290,https://www.dmbotanicalgarden.com/,Des Moines +Des Moines Water Works Park,41.5687383,-93.6701128,"2201 George Flagg Pkwy, Des Moines, IA 50321, USA",Unknown,http://www.dmww.com/,Des Moines +Science Center of Iowa,41.58296430000001,-93.6208988,"401 W Martin Luther King Jr Pkwy, Des Moines, IA 50309, USA",(515) 274-6868,http://www.sciowa.org/,Des Moines +Des Moines Art Center,41.5839333,-93.6811807,"4700 Grand Ave, Des Moines, IA 50312, USA",(515) 277-4405,http://www.desmoinesartcenter.org/,Des Moines +Heritage Carousel of Des Moines,41.61345010000001,-93.6107417,"1801 Pennsylvania Ave, Des Moines, IA 50316, USA",(515) 721-2590,http://www.heritagecarousel.org,Des Moines +Gray's Lake Park,41.5722537,-93.6437862,"2101 Fleur Dr, Des Moines, IA 50315, USA",(515) 242-2855,https://www.dsm.city/business_detail_T6_R58.php,Des Moines +Cowles Commons,41.5870551,-93.621697,"221 Walnut St, Des Moines, IA 50309, USA",(515) 246-2300,http://www.desmoinesperformingarts.org/,Des Moines +Rotary Riverwalk Park,41.5920965,-93.6196537,"821 W River Dr, Des Moines, IA 50309, USA",(515) 996-9241,http://rotaryclubofdmam.com/Stories/rotary-riverwalk-park-1,Des Moines +Jordan House,41.5601119,-93.7338778,"2001 Fuller Rd, West Des Moines, IA 50265, USA",(515) 225-1286,http://www.wdmhs.org/,Des Moines +Adventureland Resort,41.657646,-93.4969463,"305 34th Ave NW, Altoona, IA 50009, USA",(515) 266-2121,https://www.adventurelandresort.com/?utm_source=google&utm_medium=OrganicGMB&utm_id=GMBtraffic,Des Moines +Iowa State Capitol,41.5912022,-93.6036389,"1007 E Grand Ave, Des Moines, IA 50319, USA",(515) 281-5591,https://www.legis.iowa.gov/resources/tourCapitol,Des Moines +Des Moines Children's Museum,41.59700799999999,-93.7498801,"1551 Valley W Dr Suite 108, West Des Moines, IA 50266, USA",(515) 218-8344,http://www.dsmchildrensmuseum.com/,Des Moines +Des Moines' Downtown Farmers’ Market,41.5850647,-93.6204347,"300 Court Ave, Des Moines, IA 50309, USA",(515) 286-4928,http://desmoinesfarmersmarket.com/,Des Moines +South Des Moines Sculpture Park,41.54090799999999,-93.6241693,"768-798 McKinley Ave, Des Moines, IA 50315, USA",Unknown,Unknown,Des Moines +Salisbury House & Gardens,41.57941599999999,-93.67176,"4025 Tonawanda Dr, Des Moines, IA 50312, USA",(515) 274-1777,http://www.salisburyhouse.org/,Des Moines +Terrace Hill Historic Site,41.5832606,-93.64913,"2300 Grand Ave, Des Moines, IA 50312, USA",(515) 281-7205,http://terracehill.iowa.gov/,Des Moines +Riverview Park,41.62180350000001,-93.6277423,"Riverview Park, 710 Corning Ave, Des Moines, IA 50313, USA",(515) 237-1386,https://www.dsm.city/business_detail_T6_R81.php,Des Moines +The Fayetteville Area Transportation and Local History Museum,35.0520812,-78.8821703,"325 Franklin St, Fayetteville, NC 28301, USA",(910) 433-1457,https://www.fcpr.us/facilities/museums/fayetteville-area-transportation-and-local-history-museum,Fayetteville +Museum of the Cape Fear,35.0545079,-78.8926565,"801 Arsenal Ave, Fayetteville, NC 28305, USA",(910) 500-4240,https://museumofthecapefear.ncdcr.gov/,Fayetteville +Lake Rim Park,35.02950209999999,-79.0448299,"2214 Tar Kiln Dr, Fayetteville, NC 28304, USA",(910) 433-1018,Unknown,Fayetteville +Airborne & Special Operations Museum Foundation,35.05584119999999,-78.8850004,"100 Bragg Blvd, Fayetteville, NC 28301, USA",(910) 643-2778,http://www.asomf.org/,Fayetteville +Fascinate-U Children's Museum,35.053149,-78.877847,"116 Green St, Fayetteville, NC 28301, USA",(910) 829-9171,http://www.fascinate-u.com/,Fayetteville +Cape Fear Botanical Garden,35.0558546,-78.85918699999999,"536 N Eastern Blvd, Fayetteville, NC 28301, USA",(910) 486-0221,http://www.capefearbg.org/,Fayetteville +Festival Park,35.0585031,-78.88230829999999,"335 Ray Ave, Fayetteville, NC 28301, USA",(910) 433-1547,Unknown,Fayetteville +North Carolina Veterans Park,35.05783669999999,-78.8851689,"300 Bragg Blvd, Fayetteville, NC 28301, USA",(910) 433-1457,Unknown,Fayetteville +Clark Park Nature Center,35.0877738,-78.870772,"631 Sherman Dr, Fayetteville, NC 28301, USA",(910) 433-1579,https://fcpr.us/parks-trails/parks/clark-park,Fayetteville +Fayetteville Rose Garden,35.0664033,-78.92480979999999,"2201 Hull Rd, Fayetteville, NC 28303, USA",(910) 678-8228,http://www.visitnc.com/listing/fayetteville-rose-garden,Fayetteville +Mazarick Park,35.0716799,-78.9011416,"1400 Belvedere Ave, Fayetteville, NC 28305, USA",(910) 433-1547,https://fcpr.us/parks-trails/parks/mazarick-park,Fayetteville +ZipQuest - Waterfall & Treetop Adventure,35.1492359,-78.8550324,"533 Carvers Falls Rd, Fayetteville, NC 28311, USA",(910) 488-8787,http://www.zipquest.com/,Fayetteville +1897 Poe House,35.0541803,-78.8926895,"206 Bradford Ave, Fayetteville, NC 28305, USA",(910) 500-4240,https://museumofthecapefear.ncdcr.gov/1897-poe-house,Fayetteville +Arsenal Park,35.05385989999999,-78.8947712,"215 Myrover St, Fayetteville, NC 28305, USA",(910) 500-4240,https://museumofthecapefear.ncdcr.gov/arsenal-park,Fayetteville +Sandford House,35.0488891,-78.8779802,"Fayetteville, NC 28301, USA",Unknown,Unknown,Fayetteville +Art Park,35.05431250000001,-78.8790625,"Fayetteville, NC 28301, USA",Unknown,Unknown,Fayetteville +Fayetteville Veterans Park,35.0583308,-78.8734802,"220 Lamon St, Fayetteville, NC 28301, USA",(910) 433-1004,Unknown,Fayetteville +Downtown Fayetteville Tours,35.0496821,-78.8787517,"215 Gillespie St, Fayetteville, NC 28301, USA",(910) 444-0034,http://www.downtownfaytours.com/,Fayetteville +Freedom Memorial Park,35.0561041,-78.8869153,"111 Bragg Blvd, Fayetteville, NC 28301, USA",(980) 314-1002,http://www.freedommemorialpark.org/,Fayetteville +Arnette Park,35.00547290000001,-78.8568377,"2165 Wilmington Hwy, Fayetteville, NC 28306, USA",(910) 433-1547,http://fcpr.us/Home/Components/FacilityDirectory/FacilityDirectory/86/2974,Fayetteville +Lewisburg Children's Museum,40.96013569999999,-76.8917627,"815 Market St #14, Lewisburg, PA 17837, USA",(570) 768-4914,https://www.lewisburgchildrensmuseum.org/,Lewisburg +Samek Art Museum,40.9564209,-76.8840955,"701 Moore Ave, Lewisburg, PA 17837, USA",(570) 577-3792,http://museum.bucknell.edu/,Lewisburg +Modern Art Alley,40.9643214,-76.8858551,"324 Cherry Alley Between North 3rd &, N 4th St, Lewisburg, PA 17837, USA",Unknown,https://www.facebook.com/ModernArtAlley/,Lewisburg +Lewisburg Area Recreation Park,40.963838,-76.898978,"218 N 15th St, Lewisburg, PA 17837, USA",(570) 524-4774,https://www.lewisburgborough.org/community/parks-recreation/,Lewisburg +Fairground Road Park,40.962716,-76.90669609999999,"Lewisburg, PA 17837, USA",Unknown,Unknown,Lewisburg +Piers Art Park,40.96367019999999,-76.8888078,"539 Cherry Alley, Lewisburg, PA 17837, USA",Unknown,Unknown,Lewisburg +Soldier's Park,40.9670164,-76.8817485,"20 N Water St, Lewisburg, PA 17837, USA",Unknown,Unknown,Lewisburg +Hufnagle Park,40.96165389999999,-76.88661239999999,"520 St Louis St, Lewisburg, PA 17837, USA",Unknown,Unknown,Lewisburg +Lewisburg Area Recreation Park West,40.9640065,-76.9010303,"Lewisburg, PA 17837, USA",Unknown,Unknown,Lewisburg +Susquehanna Greenway Partnership,40.96404099999999,-76.88475199999999,"301 Market St Unit #649, Lewisburg, PA 17837, USA",(570) 478-0178,http://www.susquehannagreenway.org/,Lewisburg +Mariah’s Garden,40.9644342,-76.8799136,"19 St Louis St, Lewisburg, PA 17837, USA",Unknown,Unknown,Lewisburg +Wolfe Field,40.9699603,-76.88616429999999,"304 Hufnagle Blvd, Lewisburg, PA 17837, USA",Unknown,http://www.lewisburgll.org/Default.aspx?tabid=623558,Lewisburg +Dale's Ridge Trail,40.985276,-76.93204159999999,"T450, Lewisburg, PA 17837, USA",(570) 524-8666,http://linnconservancy.org/trails/dales-ridge-trail/,Lewisburg +Green Space Center,40.9597471,-76.89165779999999,"Lewisburg, PA 17837, USA",Unknown,Unknown,Lewisburg +Turtle Creek park,40.9258458,-76.8872973,"1248 Supplee Mill Rd, Lewisburg, PA 17837, USA",Unknown,Unknown,Lewisburg +Bucknell Farm Firepit,40.9489584,-76.88193799999999,"W4X9+P2, Lewisburg, PA 17837, USA",Unknown,Unknown,Lewisburg +Buffalo Valley Rail Trail Restrooms,40.9604629,-76.8966209,"Lewisburg, PA 17837, USA",Unknown,Unknown,Lewisburg +Fantasy Escape Room,40.9643379,-76.88527909999999,"Lower Level, 310 Market St Unit 2, Lewisburg, PA 17837, USA",(570) 939-9996,http://fantasyescaperoom.godaddysites.com/,Lewisburg +Tom Szulanczyk Memorial Butterfly Garden,40.9633851,-76.8982316,"218 N 15th St, Lewisburg, PA 17837, USA",Unknown,https://www.facebook.com/TomSzulanczykMemorialButterflyGarden/,Lewisburg +Mifflinburg Buggy Museum,40.915024,-77.0492448,"598 Green St, Mifflinburg, PA 17844, USA",(570) 966-1355,https://www.mifflinburgbuggymuseum.org/,Lewisburg +The Fort Museum and Frontier Village,42.4880174,-94.199365,"1 Museum Rd, Fort Dodge, IA 50501, USA",(515) 573-4231,http://www.fortmuseumfv.com/,Fort Dodge +Blanden Memorial Art Museum,42.5027486,-94.1846168,"920 3rd Ave S, Fort Dodge, IA 50501, USA",(515) 573-2316,http://www.blanden.org/,Fort Dodge +Soldier Creek Winery,42.5596234,-94.147485,"1584 Paragon Ave, Fort Dodge, IA 50501, USA",(515) 216-0987,http://soldiercreekwinery.com/,Fort Dodge +Kennedy Park,42.5853739,-94.1867422,"1415 Nelson Ave, Fort Dodge, IA 50501, USA",(515) 576-4258,https://www.mycountyparks.com/county/webster/Park/Kennedy-Memorial-Park.aspx,Fort Dodge +Oleson Park Music Pavilion,42.4889979,-94.1724332,"1400 Oleson Park Ave, Fort Dodge, IA 50501, USA",(515) 576-7237,http://www.fortdodgeiowa.org/department/division.php?structureid=134,Fort Dodge +Loomis Park,42.5188154,-94.1970618,"N 7th St &, Loomis Park Dr, Fort Dodge, IA 50501, USA",(515) 576-7237,http://www.fortdodgeiowa.org/department/board.php?fDD=12-58,Fort Dodge +"Webster County Fort Dodge, Iowa Freedom Rock",42.5004881,-94.2078951,"Fort Dodge, IA 50501, USA",Unknown,Unknown,Fort Dodge +Snell-Crawford Park,42.5169415,-94.1863418,"Williams Drive &, 12th Ave N, Fort Dodge, IA 50501, USA",(515) 573-7144,Unknown,Fort Dodge +Oleson Park Splashpad,42.4906816,-94.1735559,"1232 Oleson Park Ave, Fort Dodge, IA 50501, USA",(515) 576-7237,http://www.fortdodgeiowa.org/department/division.php?structureid=134,Fort Dodge +Gypsum City OHV Park,42.4711351,-94.1328254,"2390 Mill Rd, Fort Dodge, IA 50501, USA",(515) 576-4258,https://www.mycountyparks.com/County/Webster/Content/Gypsum-City-OHV-Park.aspx,Fort Dodge +Fort Dodge Parks & Recreation,42.504583,-94.1891786,"617 Central Ave, Fort Dodge, IA 50501, USA",(515) 576-7237,https://www.fortdodgeiowa.org/parks/,Fort Dodge +Fort Frenzy,42.5056523,-94.1477866,"3232 1st Ave S, Fort Dodge, IA 50501, USA",(515) 576-2226,https://www.fortfrenzy.com/,Fort Dodge +Schmoker Family Park,42.5178148,-94.1484444,"1111 N 32nd St, Fort Dodge, IA 50501, USA",Unknown,Unknown,Fort Dodge +Phinney Park,42.5077462,-94.203218,"368 Country Club Dr, Fort Dodge, IA 50501, USA",Unknown,Unknown,Fort Dodge +Hawley Lions Park,42.512186,-94.1981651,"223 8th Ave N, Fort Dodge, IA 50501, USA",Unknown,Unknown,Fort Dodge +Mason Park,42.49846110000001,-94.181776,"631 S 12th St, Fort Dodge, IA 50501, USA",Unknown,Unknown,Fort Dodge +Buffalo Bill Center of the West,44.5249986,-109.0731945,"720 Sheridan Ave, Cody, WY 82414, USA",(307) 587-4771,https://centerofthewest.org/,Cody +Cody Firearms Museum,44.52539669999999,-109.0732925,"720 Sheridan Ave, Cody, WY 82414, USA",(307) 587-4771,https://centerofthewest.org/our-museums/firearms/,Cody +Cody Dug Up Gun Museum,44.5265075,-109.0637237,"1020 12th St, Cody, WY 82414, USA",(307) 587-3344,http://www.codydugupgunmuseum.com/,Cody +Cody Heritage Museum,44.52585049999999,-109.0661351,"1092 Sheridan Ave, Cody, WY 82414, USA",(307) 586-4272,http://codyheritagemuseum.org/,Cody +Cody City Park,44.5254181,-109.0686929,"908 Sheridan Ave, Cody, WY 82414, USA",(307) 586-4112,https://www.codywy.gov/facilities/facility/details/City-Park-5,Cody +Buffalo Bill Dam & Visitor Center,44.5013668,-109.1839211,"4808 N Fork Hwy, Cody, WY 82414, USA",(307) 527-6076,http://www.bbdvc.com/,Cody +Old Trail Town,44.515364,-109.104363,"1831 Demaris Dr, Cody, WY 82414, USA",(307) 587-5302,http://www.oldtrailtown.org/,Cody +HIP District Cody,44.5274659,-109.059393,"1413 Rumsey Ave, Cody, WY 82414, USA",(307) 587-2777,Unknown,Cody +Buffalo Bill Boyhood Home,44.5241993,-109.0736787,"720 Sheridan Ave, Cody, WY 82414, USA",(307) 587-4771,https://centerofthewest.org/our-museums/buffalo-bill/,Cody +State of Wyoming Veterans Memorial Park,44.51237049999999,-109.0404925,"2513 Greybull Hwy, Cody, WY 82414, USA",Unknown,Unknown,Cody +Cody Trolley Tours,44.5256011,-109.064256,"1192 Sheridan Ave, Cody, WY 82414, USA",(307) 527-7043,https://codytrolleytours.com/,Cody +CoveredGround Yellowstone Tours,44.5127508,-109.0659996,"2313 11th St, Cody, WY 82414, USA",(307) 250-3594,https://coveredgroundtours.com/,Cody +Cody Yellowstone,44.5259145,-109.0617325,"1306 Sheridan Ave, Cody, WY 82414, USA",(307) 586-2669,https://www.codyyellowstone.org/?utm_source=google-gbp&utm_medium=organic&utm_campaign=gbp,Cody +Shoshone River,44.5324529,-109.0707637,"925 River View Dr, Cody, WY 82414, USA",Unknown,Unknown,Cody +Buffalo Bill State Park,44.5029669,-109.2443246,"4192 N Fork Hwy, Cody, WY 82414, USA",(307) 587-9227,https://wyoparks.wyo.gov/index.php/places-to-go/buffalo-bill,Cody +Wild West Spectacular,44.526298,-109.064501,"1171 Sheridan Ave, Cody, WY 82414, USA",(307) 527-9973,http://www.codywildwestshow.com/,Cody +Cody Wyoming Adventures,44.5259243,-109.0645252,"1119 12th St, Cody, WY 82414, USA",(307) 587-6988,http://www.codywyomingadventures.com/,Cody +Cody Night Rodeo,44.5135653,-109.1105061,"519 W Yellowstone Ave, Cody, WY 82414, USA",(307) 587-5155,https://www.codystampederodeo.com/,Cody +Shoshone Recreation District,44.522121,-109.05997,"1402 Heart Mountain St, Cody, WY 82414, USA",(307) 587-2550,https://www.codywy.gov/175/Shoshone-Recreation-District,Cody +Paul Stock Nature Trail,44.531158,-109.0719962,"1113 River View Dr, Cody, WY 82414, USA",(307) 272-2892,https://www.codywy.gov/143/Parks-and-Pathways,Cody +The Chattanooga Zoo at Warner Park,35.0426324,-85.2820989,"301 N Holtzclaw Ave, Chattanooga, TN 37404, USA",(423) 697-1322,http://www.chattzoo.org/,Chattanooga +Rock City Gardens,34.9733918,-85.35017719999999,"1400 Patten Rd, Lookout Mountain, GA 30750, USA",(706) 820-2531,http://seerockcity.com/?utm_source=gmb&utm_medium=organic,Chattanooga +Tennessee Aquarium,35.0558229,-85.3110646,"1 Broad St, Chattanooga, TN 37402, USA",(423) 265-0695,http://www.tnaqua.org/,Chattanooga +Lookout Mountain Incline Railway,35.0095465,-85.3285638,"3917 St Elmo Ave, Chattanooga, TN 37409, USA",(423) 821-4224,http://www.ridetheincline.com/,Chattanooga +Coolidge Park,35.0605058,-85.3068569,"150 River St, Chattanooga, TN 37405, USA",(423) 643-6311,http://www.chattanooga.gov/public-works/parks/directory-of-park-facilities,Chattanooga +Creative Discovery Museum,35.0527,-85.31228,"321 Chestnut St, Chattanooga, TN 37402, USA",(423) 756-2738,http://www.cdmfun.org/,Chattanooga +Chattanooga Ghost Tours Inc,35.0512312,-85.3090572,"57 E 5th St, Chattanooga, TN 37402, USA",(423) 800-5998,https://chattanoogaghosttours.com/,Chattanooga +Ross's Landing,35.0567414,-85.310302,"201 Riverfront Pkwy, Chattanooga, TN 37402, USA",(423) 643-6311,http://www.chattanooga.gov/public-works/parks/directory-of-park-facilities,Chattanooga +Hunter Museum of American Art,35.0558936,-85.306405,"10 Bluff View Ave, Chattanooga, TN 37403, USA",(423) 267-0968,http://www.huntermuseum.org/,Chattanooga +Walnut Street Bridge,35.0583304,-85.30729559999999,"1 Walnut St, Chattanooga, TN 37403, USA",(423) 643-6096,http://www.chattanooga.gov/public-works/parks/directory-of-park-facilities,Chattanooga +Tennessee Riverpark,35.095938,-85.2453108,"4301 Amnicola Hwy, Chattanooga, TN 37402, USA",(423) 209-5370,http://parks.hamiltontn.gov/,Chattanooga +Moccasin Bend National Archeological District,35.0530239,-85.32865629999999,"301 Manufacturers Rd, Chattanooga, TN 37405, USA",(423) 648-5623,https://www.nps.gov/chch/learn/historyculture/moccasin-bend-national-archeological-district.htm,Chattanooga +Ruby Falls,35.0190839,-85.3393555,"1720 Scenic Hwy, Chattanooga, TN 37409, USA",(423) 821-2544,http://www.rubyfalls.com/,Chattanooga +Cravens House,35.01378179999999,-85.34149459999999,"Point Park Visitor Ctr, Lookout Mountain, TN 37350, USA",(423) 821-7786,https://www.nps.gov/places/cravenshouselom.htm,Chattanooga +Williams Echo Dome,35.0542155,-85.3048365,"430 E 2nd St, Chattanooga, TN 37403, USA",Unknown,Unknown,Chattanooga +Reflection Riding Arboretum & Nature Center,35.01013030000001,-85.3645849,"400 Garden Rd, Chattanooga, TN 37419, USA",(423) 821-1160,https://www.reflectionriding.org/,Chattanooga +Audubon Acres,34.99935,-85.18034,"900 N Sanctuary Rd, Chattanooga, TN 37421, USA",(423) 892-1499,http://www.chattanoogaaudubon.org/,Chattanooga +Sculpture Fields at Montague Park,35.02617480000001,-85.29362359999999,"1800 Polk St, Chattanooga, TN 37408, USA",(423) 266-7288,http://www.sculpturefields.org/,Chattanooga +Bessie Smith Cultural Center and Chattanooga African American Museum,35.0446336,-85.3064668,"200 E M L King Blvd, Chattanooga, TN 37403, USA",(423) 266-8658,http://www.bessiesmithcc.org/?utm_source=google&utm_medium=wix_google_business_profile&utm_campaign=3948799342172393035,Chattanooga +Wooden Horse,35.0558357,-85.3067129,"10 Bluff View Ave, Chattanooga, TN 37403, USA",Unknown,Unknown,Chattanooga +Deadhorse Camp,70.1884689,-148.4367828,"Mile 412.8 Dalton Highway, Prudhoe Bay, AK 99734, USA",(877) 474-3565,http://www.deadhorsecamp.com/,Deadhorse +"Deadhorse, Alaska",70.19932539999999,-148.4593678,"Deadhorse Dr, Prudhoe Bay, AK 99734, USA",Unknown,https://www.travelalaska.com/Destinations/Communities/Prudhoe-BayDeadhorse.aspx,Deadhorse +Northernmost Drivable Point in North America,70.5083932,-149.861184,"Unnamed Road, Prudhoe Bay, AK 99734, USA",Unknown,Unknown,Deadhorse +Natural Resources Department,70.41049579999999,-148.9721164,"Prudhoe Bay, AK 99734, USA",(907) 659-2830,Unknown,Deadhorse +Deadhorse,70.20019959999999,-148.4597191,"Deadhorse, Prudhoe Bay, AK 99734, USA",Unknown,Unknown,Deadhorse +Northern Alaska Tour Company,70.1884278,-148.4367309,"Dalton Hwy, Prudhoe Bay, AK, USA",(877) 474-3565,Unknown,Deadhorse +Deadhorse Airport,70.1949601,-148.4629549,"1 Airport Way, Prudhoe Bay, AK 99734, USA",(907) 659-2553,Unknown,Deadhorse +Aurora Coffee Shop,70.2119365,-148.4377169,"123 E Lake Colleen Dr, Prudhoe Bay, AK 99734, USA",(907) 670-0600,https://theaurorahotel.net/,Deadhorse +Eagle Lodge,70.2108688,-148.4253692,"DS12 Access Rd, Prudhoe Bay, AK 99734, USA",(907) 371-0340,http://afognakleasing.com/,Deadhorse +Arctic Oilfield Hotel,70.2259073,-148.3971713,"Prudhoe Bay, AK 99734, USA",(907) 685-0500,Unknown,Deadhorse +Brooks Camp,70.2095485,-148.4078586,"75 Sag River Rd, Prudhoe Bay, AK 99734, USA",(907) 659-6233,http://brookscampak.com/,Deadhorse +Dead Horse Point State Park,38.50542669999999,-109.7294241,"UT-313, Moab, UT 84532, USA",(800) 322-3770,https://stateparks.utah.gov/parks/dead-horse/,Deadhorse +Gates of the Arctic National Park and Preserve,67.6854972,-153.3241121,"Alaska, USA",(907) 459-3730,https://www.nps.gov/GAAR/planyourvisit/index.htm,Deadhorse +The Aurora Hotel,70.21131129999999,-148.4379882,"123 E Lake Colleen Dr, Prudhoe Bay, AK 99734, USA",(907) 670-0600,http://theaurorahotel.net/,Deadhorse +Prudhoe Bay's Best Java,70.2533244,-148.3495937,"100 Main Street, Prudhoe Bay, AK 99734, USA",(907) 659-2449,Unknown,Deadhorse +Prudhoe Bay General Store,70.20881709999999,-148.4059334,"#1 Old, Spine Rd, Prudhoe Bay, AK 99734, USA",(907) 670-5160,https://m.facebook.com/pages/category/Hardware-Store/Prudhoe-Bay-General-Store-Brooks-Range-Supply-207773092756123/,Deadhorse +"Punkt widokowy ""Cztery Brzozy""",65.3038253,-148.2121026,"Elliott Hwy, Fairbanks, AK 99790, USA",Unknown,Unknown,Deadhorse +Northwest Arctic Heritage Center,66.8925946,-162.6052557,"171 Third Ave, Kotzebue, AK 99752, USA",(907) 442-3890,https://www.nps.gov/kova/planyourvisit/northwest-arctic-heritage-center.htm,Kotzebue +Ashley Johnson-Barr Memorial Park,66.8947457,-162.5976059,"208-222 Lagoon St, Kotzebue, AK 99752, USA",Unknown,https://www.cityofkotzebue.com/index.asp?Type=B_BASIC&SEC={2B1E554D-BA3D-4E98-AA3E-2861AD732FD0},Kotzebue +Ambler Airport-Afm,66.89833329999999,-162.5966666,"Waring St, Kotzebue, AK 99752, USA",(907) 442-3147,Unknown,Kotzebue +Sitka National Historical Park,57.0483239,-135.3159987,"Sitka National Historical Park, 103 Monastery St, Sitka, AK 99835, USA",(907) 747-0110,http://www.nps.gov/sitk/,Sitka +Sheldon Jackson Museum,57.05054320000001,-135.3222287,"104 College Dr, Sitka, AK 99835, USA",(907) 747-8981,https://museums.alaska.gov/sheldon_jackson/,Sitka +Russian Bishop's House,57.0513521,-135.3313722,"Sitka National Historical Park, 501 Lincoln St, Sitka, AK 99835, USA",(907) 747-0110,https://www.nps.gov/sitk/learn/historyculture/russian-bishops-house.htm,Sitka +Old Sitka State Historic Park,57.1308324,-135.3725135,"Old Sitka Historic Site, Sitka, AK 99835, USA",Unknown,https://dnr.alaska.gov/parks/aspunits/southeast/oldsitkaahp.htm,Sitka +Sitka Sound Science Center,57.0497528,-135.3235435,"Sage Memorial Building, 834 Lincoln St, Sitka, AK 99835, USA",(907) 747-8878,http://www.sitkascience.org/,Sitka +Whale Park,57.0332625,-135.2528009,"2500 Sawmill Creek Rd, Sitka, AK 99835, USA",Unknown,https://www.adfg.alaska.gov/index.cfm?adfg=southeastviewing.sitkawhalepark,Sitka +Sitka Historical Society & Museum,57.0494511,-135.3321783,"330 Harbor Dr, Sitka, AK 99835, USA",(907) 738-3766,http://www.sitkahistory.com/,Sitka +Herring Cove Trail,57.0451077,-135.2016892,"NF-Fh11, Sitka, AK 99835, USA",Unknown,https://sitkatrailworks.org/beaver-lakeherring-cove-trail-loop/,Sitka +Baranof Castle State Historic Site,57.0486854,-135.3380656,"Sitka, AK 99835, USA",Unknown,Unknown,Sitka +Fortress of the Bear,57.05042659999999,-135.2329939,"4639 Sawmill Creek Rd, Sitka, AK 99835, USA",(907) 747-3550,http://www.fortressofthebear.org/,Sitka +Sitka Whale Statue,57.0511346,-135.3285969,"610 Lincoln St, Sitka, AK 99835, USA",Unknown,Unknown,Sitka +Sitka breakwater,57.0491696,-135.3245271,"Sitka, AK 99835, USA",Unknown,Unknown,Sitka +Alaska Native Brotherhood Hall,57.05072639999999,-135.3409908,"223 Katlian St, Sitka, AK 99835, USA",Unknown,https://www.nps.gov/subjects/nhlalaska/index.htm,Sitka +Southeast Alaska Indian Cultural Center,57.0485652,-135.3190026,"106 Metlakatla St, Sitka, AK 99835, USA",(907) 747-0110,https://www.nps.gov/sitk/index.htm,Sitka +St. Michael the Archangel Orthodox Cathedral,57.05,-135.3352778,"240 Lincoln St, Sitka, AK 99835, USA",(907) 747-8120,http://stmichaelcathedral.org/,Sitka +Saint Lazaria National Wildlife Refuge,56.98582479999999,-135.7121174,"Sitka, AK, USA",Unknown,Unknown,Sitka +Harbor Mountain view point,57.0969017,-135.3667486,"NF-7576, Sitka, AK 99835, USA",Unknown,Unknown,Sitka +Indian River Water Falls,57.08828799999999,-135.237172,"3QQ7+84, Sitka, AK 99835, USA",Unknown,Unknown,Sitka +St Gregory Flower Garden,57.0513697,-135.3291826,"Lincoln St, Sitka, AK 99835, USA",Unknown,Unknown,Sitka +Halibut Point Recreation Site,57.1020984,-135.4000245,"Halibut Point Rd, Sitka, AK 99835, USA",(907) 269-8400,Unknown,Sitka +Museum of the Rockies,45.65862389999999,-111.0451215,"600 W Kagy Blvd, Bozeman, MT 59717, USA",(406) 994-2251,http://www.museumoftherockies.org/,Bozeman +Gallatin History Museum,45.679657,-111.042195,"317 W Main St, Bozeman, MT 59715, USA",(406) 522-8122,http://gallatinhistorymuseum.org/,Bozeman +American Computer & Robotics Museum,45.6592806,-111.0549639,"2023 Stadium Dr #1a, Bozeman, MT 59715, USA",(406) 582-1288,http://www.acrmuseum.org/,Bozeman +Bozeman Sculpture Park,45.67675879999999,-111.0274301,"626 E Main St, Bozeman, MT 59715, USA",Unknown,http://www.gallatinartcrossing.org/,Bozeman +The Story Mansion and Story Park,45.67074090000001,-111.0395117,"811 S Willson Ave, Bozeman, MT 59715, USA",(406) 582-2290,http://www.friendsofthestory.org,Bozeman +Montana Science Center,45.6721805,-111.0744063,"2744 W Main St, Bozeman, MT 59718, USA",(406) 522-9087,https://montanasciencecenter.org/,Bozeman +Peets Hill/Burke Park,45.67389979999999,-111.0293315,"429 E Story St, Bozeman, MT 59715, USA",(406) 587-8404,https://gvlt.org/featured-trails/peets-hill-burke-park/,Bozeman +Glen Lake Rotary Park,45.7045046,-111.0388199,"Bozeman, MT 59715, USA",Unknown,https://www.bozemansunriserotary.org/sitepage/glen-lake-rotary-park/glen-lake-rotary-park,Bozeman +Dinosaur Park,45.6954881,-111.0847807,"1707 Vaquero Pkwy, Bozeman, MT 59718, USA",(406) 582-3178,Unknown,Bozeman +College 'M',45.7146921,-110.9734986,"Trail to 'M', Bozeman, MT 59715, USA",Unknown,Unknown,Bozeman +Lindley Park Center,45.67772040000001,-111.0247153,"Bozeman, MT 59715, USA",(406) 582-2290,https://www.bozeman.net/Home/Components/FacilityDirectory/FacilityDirectory/232/,Bozeman +Bozeman Pond,45.6738513,-111.0817414,"700 S Fowler Ave, Bozeman, MT 59718, USA",(406) 444-2535,http://www.bozeman.net/,Bozeman +Gallatin County Regional Park,45.6950748,-111.088943,"5000 Tschache Ln, Bozeman, MT 59718, USA",(406) 582-3178,https://gvlt.org/featured-trails/gallatin-regional-park/,Bozeman +Montana Grizzly Encounter,45.66393119999999,-110.8340425,"80 W Bozeman Hill Rd, Bozeman, MT 59715, USA",(406) 586-8893,http://www.grizzlyencounter.org/,Bozeman +Yellowstone Glacier Adventures,45.729051,-111.0979132,"65 Hidden Valley Rd, Bozeman, MT 59718, USA",(406) 585-9041,http://www.yellowstoneyearround.com/,Bozeman +Bozeman Welcome Sign,45.67762760000001,-111.0156917,"Bozeman, MT 59715, USA",Unknown,Unknown,Bozeman +Bogert Park,45.6757927,-111.0312273,"325 S Church Ave, Bozeman, MT 59715, USA",(406) 582-2290,https://www.bozeman.net/Home/Components/FacilityDirectory/FacilityDirectory/190/1863?selamenityid=11,Bozeman +Cooper Park,45.67476779999999,-111.0466182,"Cooper Park Trail, Bozeman, MT 59715, USA",(406) 582-2290,https://www.bozeman.net/Home/Components/FacilityDirectory/FacilityDirectory/219/1863,Bozeman +Snowfill Recreation Area,45.72141310000001,-111.0366618,"Bozeman, MT 59715, USA",(406) 587-8404,http://gvlt.org/featured-trails/snowfill-recreation-area/,Bozeman +The Extreme History Project,45.6802117,-111.0333019,"234 E Mendenhall St, Bozeman, MT 59715, USA",(406) 220-2678,http://www.extremehistoryproject.org/,Bozeman +Palm Springs Art Museum,33.8242137,-116.5499366,"101 N Museum Dr, Palm Springs, CA 92262, USA",(760) 322-4800,https://www.psmuseum.org/,Palm Springs +Walk of the Stars Palm Springs,33.8231607,-116.546711,"10 N Palm Canyon Dr, Palm Springs, CA 92262, USA",Unknown,https://www.facebook.com/Palm-Springs-Walk-of-Stars-171425349581866/,Palm Springs +Moorten Botanical Garden,33.800232,-116.5461732,"1701 S Palm Canyon Dr, Palm Springs, CA 92264, USA",(760) 327-6555,http://www.moortenbotanicalgarden.com/,Palm Springs +Palm Springs Aerial Tramway,33.8370537,-116.6141062,"1 Tramway Rd, Palm Springs, CA 92262, USA",(760) 325-1391,https://pstramway.com/,Palm Springs +Indian Canyons,33.7497215,-116.5409498,"38520 S Palm Canyon Dr, Palm Springs, CA 92264, USA",(760) 323-6018,http://www.indian-canyons.com/,Palm Springs +Palm Springs Air Museum,33.8325472,-116.5049806,"Parking, lot 745 N Gene Autry Trail, Palm Springs, CA 92262, USA",(760) 778-6262,http://palmspringsairmuseum.org/,Palm Springs +Palm Springs Historical Society,33.8207524,-116.5470074,"221 S Palm Canyon Dr, Palm Springs, CA 92262, USA",(760) 323-8297,https://pshistoricalsociety.org/,Palm Springs +Greater Palm Springs,33.76199630000001,-116.4413063,"70100 CA-111, Rancho Mirage, CA 92270, USA",(760) 770-9000,http://www.visitgreaterpalmsprings.com/,Palm Springs +Frances Stevens Park,33.8305183,-116.5460725,"500 N Palm Canyon Dr, Palm Springs, CA 92262, USA",Unknown,Unknown,Palm Springs +Palm Springs Welcome Sign,33.8593509,-116.5587192,"Palm Springs, CA 92262, USA",Unknown,Unknown,Palm Springs +Robolights,33.8319337,-116.5353368,"1077 E Granvia Valmonte, Palm Springs, CA 92262, USA",(760) 774-0318,http://www.robochristmas.com/,Palm Springs +The Living Desert Zoo and Gardens,33.6999789,-116.3744166,"47900 Portola Ave, Palm Desert, CA 92260, USA",(760) 346-5694,https://www.livingdesert.org/,Palm Springs +Wings,33.8235525,-116.547564,"111 N Palm Canyon Dr #180, Palm Springs, CA 92262, USA",Unknown,Unknown,Palm Springs +Agua Caliente Tahquitz Visitor Center,33.8100011,-116.5527753,"500 W Mesquite Ave, Palm Springs, CA 92264, USA",(760) 416-7044,http://www.tahquitzcanyon.com/canyon,Palm Springs +Shiprock,33.8692458,-116.5771091,"Palm Springs, CA 92262, USA",Unknown,Unknown,Palm Springs +Sonny Bono Statue,33.8220109,-116.5471643,"155 S Palm Canyon Dr, Palm Springs, CA 92262, USA",Unknown,Unknown,Palm Springs +El Mirador Tower,33.838641,-116.5449904,"N Indian Canyon Dr, Palm Springs, CA 92262, USA",(760) 323-6511,https://www.palmspringslife.com/a-healthy-outcome-at-el-mirador/,Palm Springs +Santa Rosa and San Jacinto Mountains National Monument Visitor Center,33.6716537,-116.4087363,"51-500 CA-74, Palm Desert, CA 92260, USA",(760) 862-9984,https://www.blm.gov/programs/national-conservation-lands/california/santa-rosa-and-san-jacinto-mountains-national-monument,Palm Springs +Palm Springs Art Museum Architecture and Design Center,33.81919260000001,-116.5465368,"300 S Palm Canyon Dr, Palm Springs, CA 92262, USA",(760) 423-5260,http://www.psmuseum.org/architecture-design-center/,Palm Springs +Agua Caliente Cultural Museum,33.8242954,-116.5450063,"140 N Indian Canyon Dr, Palm Springs, CA 92262, USA",(760) 778-1079,http://www.accmuseum.org/,Palm Springs +National Civil Rights Museum,35.1344326,-90.05755599999999,"450 Mulberry St, Memphis, TN 38103, USA",(901) 521-9699,https://www.civilrightsmuseum.org/,Memphis +Graceland,35.0476912,-90.02604930000001,"Elvis Presley Blvd, Memphis, TN 38116, USA",(901) 332-3322,https://www.graceland.com/,Memphis +Memphis Rock 'n' Soul Museum,35.1384943,-90.0521758,"Just South of Beale at FedExForum, 191 Beale St, Memphis, TN 38103, USA",(901) 205-2533,http://memphisrocknsoul.org/,Memphis +Children's Museum of Memphis,35.125208,-89.976525,"2525 Central Ave, Memphis, TN 38104, USA",(901) 458-2678,https://cmom.com/,Memphis +Memphis Botanic Garden,35.110813,-89.91772569999999,"750 Cherry Rd, Memphis, TN 38117, USA",(901) 636-4100,http://membg.org/,Memphis +Elvis Presley's Memphis,35.04813010000001,-90.02588589999999,"3717 Elvis Presley Blvd, Memphis, TN 38116, USA",(901) 332-3322,http://graceland.com/,Memphis +Shelby Farms Park,35.1386993,-89.83226169999999,"6903 Great View Dr N, Memphis, TN 38134, USA",(901) 222-7275,http://www.shelbyfarmspark.org/,Memphis +Stax Museum of American Soul Music,35.11564329999999,-90.0312615,"926 E McLemore Ave, Memphis, TN 38126, USA",(901) 261-6338,http://www.staxmuseum.com/,Memphis +Memphis Zoo,35.1482196,-89.9950187,"2000 Prentiss Pl, Memphis, TN 38112, USA",(901) 333-6500,https://memphiszoo.org/,Memphis +Slave Haven Underground Railroad Museum,35.16464739999999,-90.04313909999999,"826 N 2nd St, Memphis, TN 38107, USA",(901) 527-7711,http://slavehavenmemphis.com/,Memphis +Tom Lee Park,35.1360674,-90.0636756,"Riverside Dr, Memphis, TN 38103, USA",Unknown,http://www.tomleepark.org/,Memphis +Beale Street Entertainment District,35.13990200000001,-90.0534601,"Beale St, Memphis, TN 38103, USA",Unknown,http://www.bealestreet.com/,Memphis +The Cotton Museum at the Memphis Cotton Exchange,35.1434083,-90.0547667,"65 Union Ave, Memphis, TN 38103, USA",(901) 531-7826,http://www.memphiscottonmuseum.org/,Memphis +Memphis Museum of Science & History,35.1253603,-89.9591949,"3050 Central Ave, Memphis, TN 38111, USA",(901) 636-2362,https://moshmemphis.com/,Memphis +Fire Museum of Memphis,35.14815419999999,-90.05102579999999,"118 Adams Ave, Memphis, TN 38103, USA",(901) 636-5650,http://www.firemuseum.com/,Memphis +Memphis Music Hall of Fame,35.140345,-90.0535072,"126 S 2nd St, Memphis, TN 38103, USA",(901) 205-2532,http://memphismusichalloffame.com/,Memphis +Elvis Statue,35.1399782,-90.0542789,"115 Beale St, Memphis, TN 38103, USA",Unknown,http://elvis-statue.keeq.io/,Memphis +Memphis Sign,35.1453955,-90.058893,"Mud Island Park, River Park, Mud Island, Memphis, TN 38103, USA",Unknown,https://www.memphisart.org/artwork/memphis-bicentennial-sign/,Memphis +Dixon Gallery & Gardens,35.1064644,-89.9172667,"4339 Park Ave, Memphis, TN 38117, USA",(901) 761-5250,http://www.dixon.org/,Memphis +The Mississippi Riverwalk,35.1480668,-90.0593919,"Riverwalk, Memphis, TN 38103, USA",Unknown,Unknown,Memphis +Whaling Museum,41.28549,-70.0987762,"13 Broad St, Nantucket, MA 02554, USA",(508) 228-1894,http://www.nha.org/,Nantucket +Great Point Lighthouse,41.3900672,-70.0482662,"Nantucket, MA 02554, USA",(508) 325-5395,Unknown,Nantucket +Nantucket Shipwreck and Life Saving Museum,41.29120400000001,-70.044854,"158 Polpis Rd, Nantucket, MA 02554, USA",(508) 228-1885,http://eganmaritime.org/shipwreck-lifesaving-museum,Nantucket +Hadwen House,41.28145910000001,-70.1022751,"96 Main St, Nantucket, MA 02554, USA",(508) 228-1894,https://nha.org/visit/museums-and-tours/hadwen-house/,Nantucket +Great Point Beach,41.3663518,-70.0205993,"Great Point Rd, Nantucket, MA 02554, USA",(508) 228-1700,http://www.thetrustees.org/,Nantucket +Museum of African American History,41.2775251,-70.09811189999999,"27 & 29, 27 York St, Nantucket, MA 02554, USA",(508) 228-9833,http://www.maah.org/,Nantucket +Coskata-Coatue Wildlife Refuge Gatehouse,41.3279998,-69.9966333,"107 Wauwinet Rd, Nantucket, MA 02554, USA",(508) 228-0006,http://www.thetrustees.org/,Nantucket +Greater Light,41.281997,-70.10410170000002,"8 Howard St, Nantucket, MA 02554, USA",(508) 228-1894,http://www.nha.org/sites/greaterlight.html,Nantucket +Nantucket House,41.2627253,-70.09091699999999,"2 Seikinnow Pl, Nantucket, MA 02554, USA",Unknown,Unknown,Nantucket +Old Gaol,41.2809953,-70.1062743,"15R Vestal St, Nantucket, MA 02554, USA",Unknown,http://www.nha.org/sites/oldgaol.html,Nantucket +Nantucket National Wildlife Refuge,41.3900871,-70.04956969999999,"147 Wauwinet Rd, Nantucket, MA 02554, USA",Unknown,https://www.fws.gov/refuge/nantucket,Nantucket +Salt Marsh Way Beach,41.279443,-70.09267489999999,"92 Washington St, Nantucket, MA 02554, USA",Unknown,Unknown,Nantucket +Nantucket Downtown Historic District,41.2837637,-70.0988397,"2 Fairgrounds Rd, Nantucket, MA 02554, USA",Unknown,https://www.nantucket-ma.gov/283/Historic-District-Commission,Nantucket +'Sconset Bluff Walk,41.2638874,-69.9629084,"27 Bank St, Siasconset, MA 02564, USA",Unknown,http://www.nha.org/history/hn/HN-april73-stackpole-bluff.htm,Nantucket +Smith's Point,41.27639749999999,-70.2168035,"Nantucket, MA 02554, USA",Unknown,Unknown,Nantucket +Masquetuck Reservation,41.296447,-70.024749,"15 Quaise Pasture Rd, Nantucket, MA 02554, USA",(508) 228-2884,Unknown,Nantucket +Jethro Coffin House,41.287972,-70.1064406,"16 Sunset Hill Ln, Nantucket, MA 02554, USA",(508) 228-1894,http://www.nha.org/sites/oldesthouse.html,Nantucket +Tupancy Links,41.290005,-70.127687,"157 Cliff Rd, Nantucket, MA 02554, USA",(508) 228-2884,Unknown,Nantucket +Brant Point Lighthouse,41.2899249,-70.09028030000002,"Easton St, Nantucket, MA 02554, USA",Unknown,https://www.nps.gov/nr/travel/maritime/brn.htm,Nantucket +Nobadeer Beach,41.24458659999999,-70.0773883,"Nobadeer Ave, Nantucket, MA 02554, USA",Unknown,Unknown,Nantucket +Museum of Regional History,33.4222979,-94.0433271,"219 N State Line Ave, Texarkana, TX 75501, USA",(903) 793-4831,http://www.texarkanamuseums.org/,Texarkana +Spring Lake Park,33.4623093,-94.058364,"4303 N Park Rd, Texarkana, TX 75501, USA",(903) 798-3978,Unknown,Texarkana +Texarkana Museums System,33.4223029,-94.0432992,"219 N State Line Ave, Texarkana, TX 75501, USA",(903) 793-4831,http://texarkanamuseum.org/,Texarkana +Four States Auto Museum,33.4243398,-94.0381797,"217 Laurel St, Texarkana, AR 71854, USA",(870) 772-2886,http://www.fourstatesautomuseum.org/,Texarkana +Bringle Lake Park East,33.4953732,-94.0967095,"3650 Shilling Rd, Texarkana, TX 75503, USA",Unknown,Unknown,Texarkana +ArtSparK,33.4226651,-94.0452426,"317 Main St, Texarkana, TX 75501, USA",(903) 792-8681,https://trahc.org/venue/artspark/,Texarkana +Ace of Clubs House,33.4241131,-94.0441637,"420 Pine St, Texarkana, TX 75501, USA",(903) 793-4831,http://www.texarkanamuseums.org/,Texarkana +Texarkana Water Tower,33.4192759,-94.055729,"1307 W 4th St, Texarkana, TX 75501, USA",Unknown,https://txktoday.com/news/work-painti,Texarkana +Fun Country Park,33.5138031,-94.0449294,"8225 N State Line Ave, Texarkana, TX 75503, USA",(903) 791-0001,Unknown,Texarkana +Discovery Place Interactive Museum,33.421873,-94.0433505,"215 Pine St, Texarkana, TX 75501, USA",(903) 793-4831,http://www.texarkanamuseums.org/,Texarkana +Texarkana Wall Murals #FABKMURAL,33.4213397,-94.0438673,"116 W Broad St, Texarkana, TX 75501, USA",Unknown,https://www.visittexarkanadistrict.com/copy-of-attractions,Texarkana +Texas State Line,33.4703375,-94.043161,"N State Line Ave, Texarkana, TX 75503, USA",Unknown,Unknown,Texarkana +Bringle Lake Park West,33.4955863,-94.103758,"7602 University Ave, Texarkana, TX 75503, USA",(903) 798-3900,http://www.ci.texarkana.tx.us/facilities/facility/details/Bringle-Lake-3,Texarkana +Holiday Springs Water Park,33.47538540000001,-94.0355709,"5501 Crossroads Pkwy, Texarkana, AR 71854, USA",(870) 772-2200,http://www.holidayspringswaterpark.com/,Texarkana +Welcome to Arkansas Sign,33.405887,-94.0431146,"State Line Ave, Texarkana, AR 71854, USA",Unknown,Unknown,Texarkana +Welcome to Texas Sign,33.4704587,-94.047943,"570 Interstate 30 Frontage Road, Texarkana, TX 75503, USA",Unknown,Unknown,Texarkana +Texas State Line Monument,33.5466662,-94.0441782,"N State Line Ave, Texarkana, TX 75503, USA",Unknown,Unknown,Texarkana +Lindsey Railroad Museum in Downtown Texarkana,33.42187599999999,-94.0415911,"202 E Broad St, Texarkana, AR 71854, USA",(903) 748-1235,Unknown,Texarkana +Welcome to Texas Sign,33.3860344,-94.0439525,"TX-151 Loop, Texarkana, TX 75501, USA",Unknown,Unknown,Texarkana +Welcome to Arkansas Sign,33.38565779999999,-94.0414777,"AR-151, Texarkana, AR 71854, USA",Unknown,Unknown,Texarkana +Hells Gate State Park,46.36800849999999,-117.0571623,"5100 Hells Gate Rd, Lewiston, ID 83501, USA",(208) 799-5015,http://parksandrecreation.idaho.gov/parks/hells-gate,Lewiston +Nez Perce County Historical Society,46.42284839999999,-117.0289833,"0306 3rd St, Lewiston, ID 83501, USA",(208) 743-2535,http://www.nezpercecountymuseum.com/,Lewiston +Jack O'Connor Center,46.362665,-117.0574109,"5600 Hells Gate Rd, Lewiston, ID 83501, USA",(208) 743-5043,https://jack-oconnor.org/,Lewiston +Lewis & Clark Discovery Center,46.368332,-117.0576884,"5100 Hells Gate Rd, Lewiston, ID 83501, USA",(208) 799-5015,https://parksandrecreation.idaho.gov/parks/hells-gate/,Lewiston +Modie Park Conservancy,46.3987317,-117.0172594,"1035 21st Ave, Lewiston, ID 83501, USA",(208) 743-9182,https://modiepark.org/,Lewiston +Locomotive Park,46.4160408,-117.0010558,"2101 Main St, Lewiston, ID 83501, USA",Unknown,Unknown,Lewiston +Lewis and Clark Center,46.4243835,-117.0336923,"Lewiston, ID 83501, USA",Unknown,Unknown,Lewiston +Kiwanis Park,46.4131867,-117.033411,"718-856 Snake River Ave, Lewiston, ID 83501, USA",(208) 746-2313,Unknown,Lewiston +Hereth Park,46.36806139999999,-116.9499199,"1534 Powers Ave, Lewiston, ID 83501, USA",(208) 446-2313,Unknown,Lewiston +Sunset Park,46.406965,-116.994525,"2725 Willow Dr, Lewiston, ID 83501, USA",(208) 746-2313,https://www.cityoflewiston.org/parksandrec,Lewiston +Clearwater Canyon Cellars,46.38775769999999,-116.9796132,"3143 10th St, Lewiston, ID 83501, USA",(208) 816-4679,http://www.clearwatercanyoncellars.com/,Lewiston +Lewis-Clark State College Center for Arts & History,46.4216626,-117.0275249,"415 Main St, Lewiston, ID 83501, USA",(208) 792-2447,https://www.lcsc.edu/cah,Lewiston +Airport Park,46.3742847,-117.003986,"528 Cedar Ave, Lewiston, ID 83501, USA",(208) 746-2313,https://www.cityoflewiston.org/parksandrec,Lewiston +Rose Garden,46.42568660000001,-117.0009745,"Down River Rd, Lewiston, ID 83501, USA",Unknown,Unknown,Lewiston +Lewiston Community Park,46.3841259,-116.9661378,"Lewiston, ID 83501, USA",Unknown,Unknown,Lewiston +Lewiston Levee Parkway,46.4229614,-117.0328679,"Lewiston, ID 83501, USA",Unknown,https://www.nww.usace.army.mil/Missions/Recreation/Lower-Granite-Dam-and-Lake/Lewiston-Levee-Parkway/,Lewiston +Clearwater landing,46.4202374,-117.0159109,"1209 Main St, Lewiston, ID 83501, USA",Unknown,Unknown,Lewiston +Eagle Scout Dog Park,46.3672186,-116.998148,"6th St, Lewiston, ID 83501, USA",Unknown,Unknown,Lewiston +Lewiston Parks & Recreation,46.41762910000001,-117.0123603,"1424 Main St, Lewiston, ID 83501, USA",(208) 746-2313,https://www.cityoflewiston.org/parksandrec,Lewiston +Lewiston Wildlife Habitat Area - Idaho Fish and Game,46.3835582,-116.950385,"1570 Warner Ave, Lewiston, ID 83501, USA",Unknown,Unknown,Lewiston +Wild Adventures,30.71932659999999,-83.32245470000001,"3766 Old Clyattville Rd, Valdosta, GA 31601, USA",(229) 219-7080,https://www.wildadventures.com/,Valdosta +Lowndes County Historical Museum,30.8305161,-83.2827561,"305 W Central Ave, Valdosta, GA 31601, USA",(229) 247-4780,http://www.valdostamuseum.com/,Valdosta +John W. Saunders Memorial Park,30.82955309999999,-83.3004672,"RMHX+GJQ, 1151 River St, Valdosta, GA 31601, USA",(229) 259-3507,https://vlpra.com/200/John-W-Saunders-Memorial-Park,Valdosta +Grand Bay Wildlife Management Area,30.9204237,-83.1927747,"4649 Knight Academy Rd #4641, Valdosta, GA 31605, USA",(229) 426-5267,https://georgiawildlife.com/grand-bay-wma,Valdosta +East Valdosta Diamond Railroad Crossing,30.8334331,-83.2673835,"729 E Savannah Ave, Valdosta, GA 31601, USA",Unknown,Unknown,Valdosta +Wood Valley Park,30.8497665,-83.322874,"2130-, 2140 Gornto Rd, Valdosta, GA 31602, USA",Unknown,Unknown,Valdosta +McKey Park,30.8647871,-83.291755,"N Oak St, Valdosta, GA 31602, USA",(229) 259-3507,http://vlpra.com/,Valdosta +Drexel Park,30.847192,-83.28384489999999,"1401 N Patterson St, Valdosta, GA 31601, USA",(229) 259-3507,http://www.exploregeorgia.org/listing/1490-drexel-park,Valdosta +Taylor-Cowart Memorial Park,30.8696121,-83.27830370000001,"Habersham Rd, Valdosta, GA 31602, USA",Unknown,Unknown,Valdosta +Vallotton Park,30.8487592,-83.2763557,"804 Woodlawn Dr, Valdosta, GA 31602, USA",(229) 259-3507,http://www.vlpra.com/,Valdosta +Wild Adventures,30.83270220000001,-83.2784851,"Valdosta, GA 31601, USA",Unknown,Unknown,Valdosta +Valdosta Recreation & Parks,30.84,-83.279,"308 E Adair St, Valdosta, GA 31601, USA",Unknown,Unknown,Valdosta +Freedom Park Disc Golf Course,30.9093739,-83.24467229999999,"3795 Guest Rd, Valdosta, GA 31605, USA",(229) 333-1810,https://m.facebook.com/pages/Freedom-Park/153754801324781,Valdosta +Fine Arts Gallery,30.8450797,-83.2890259,"1500 N Patterson St, Valdosta, GA 31698, USA",(229) 333-5835,https://www.valdosta.edu/colleges/arts/art/vsu-fine-arts-gallery.php,Valdosta +Unity Park,30.83291209999999,-83.2767244,"301 E Central Ave, Valdosta, GA 31601, USA",Unknown,Unknown,Valdosta +Fun Factory - Valdosta Mall,30.8435754,-83.31987749999999,"1700 Norman Dr #1076, Valdosta, GA 31601, USA",(229) 247-8322,https://www.funfactorygames.com/,Valdosta +Birmingham Botanical Gardens,33.4917153,-86.7744869,"2612 Lane Park Rd, Birmingham, AL 35223, USA",(205) 414-3950,https://www.bbgardens.org/,Birmingham +Birmingham Zoo,33.4895754,-86.77753419999999,"2630 Cahaba Rd, Birmingham, AL 35223, USA",(205) 879-0409,http://www.birminghamzoo.com/,Birmingham +Birmingham Museum of Art,33.5222317,-86.8100742,"2000 Reverend Abraham Woods Jr Boulevard, Birmingham, AL 35203, USA",(205) 254-2565,http://artsbma.org/,Birmingham +McWane Science Center,33.51494640000001,-86.80827010000002,"200 19th St N, Birmingham, AL 35203, USA",(205) 714-8300,http://www.mcwane.org/?utm_source=GMBlisting&utm_medium=organic,Birmingham +Vulcan Park and Museum,33.4917,-86.795537,"1701 Valley View Dr, Birmingham, AL 35209, USA",(205) 933-1409,http://www.visitvulcan.com/,Birmingham +Railroad Park Foundation,33.5088158,-86.810923,"1600 1st Ave S, Birmingham, AL 35233, USA",(205) 521-9933,http://www.railroadpark.org/index.php,Birmingham +Birmingham Civil Rights Institute,33.5160933,-86.814515,"520 16th St N, Birmingham, AL 35203, USA",(205) 328-9696,http://www.bcri.org/,Birmingham +Southern Museum of Flight,33.5637466,-86.738069,"4343 73rd St N, Birmingham, AL 35206, USA",(205) 833-8226,https://www.southernmuseumofflight.org/?utm_source=gmb&utm_medium=organic,Birmingham +Rainbow LED Tunnel,33.5091669,-86.8130623,"1 14th St S, Birmingham, AL 35203, USA",Unknown,Unknown,Birmingham +Kelly Ingram Park,33.5163326,-86.8134777,"500 17th St N, Birmingham, AL 35203, USA",(205) 458-8000,https://www.nps.gov/places/kelly-ingram-park.htm,Birmingham +Sloss Furnaces National Historic Landmark,33.5207556,-86.79052779999999,"20 32nd St N, Birmingham, AL 35222, USA",(205) 254-2025,http://www.slossfurnaces.com/,Birmingham +Birmingham Civil Rights National Monument,33.516071,-86.81453100000002,"1510 5th Ave N, Birmingham, AL 35203, USA",(205) 328-9696,http://www.nps.gov/bicr/,Birmingham +Lover's Leap,33.4119515,-86.8575213,"586 Shades Crest Rd, Birmingham, AL 35226, USA",Unknown,http://www.bluffparkal.org/heathers_corner_lovers_leap.htm,Birmingham +Ruffner Mountain,33.5587789,-86.7069511,"1214 81st St S, Birmingham, AL 35206, USA",(205) 833-8264,http://ruffnermountain.org/,Birmingham +Locked In: The Birmingham Escape Game,33.5115917,-86.7883279,"2808 7th Ave S, Birmingham, AL 35233, USA",Unknown,http://lockedin.com/birmingham,Birmingham +Avondale Park,33.5217307,-86.7723681,"4101 5th Ave S, Birmingham, AL 35222, USA",(205) 254-2556,http://www.birminghamal.gov/parks-and-recreation/parks/,Birmingham +Arlington Antebellum Home & Gardens,33.500085,-86.838662,"331 Cotton Ave SW, Birmingham, AL 35211, USA",(205) 780-5656,http://www.arlingtonantebellumhomeandgardens.com/,Birmingham +Negro Southern League Museum,33.5085692,-86.8092898,"120 16th St S, Birmingham, AL 35233, USA",(205) 581-3040,http://www.birminghamnslm.org/,Birmingham +Freezing Time mural,33.4999607,-86.7969111,"1919 11th Ave S, Birmingham, AL 35205, USA",Unknown,Unknown,Birmingham +Grace's Gap at Red Mountain Park,33.46431699999999,-86.845689,"2011 Frankfurt Dr, Birmingham, AL 35211, USA",(205) 202-6043,http://redmountainpark.org/,Birmingham +Historic Pensacola Village,30.40874519999999,-87.2130784,"205 E Zaragoza St, Pensacola, FL 32502, USA",(850) 595-5993,http://www.historicpensacola.org/,Pensacola +Pensacola Museum of Art,30.4079585,-87.213443,"407 S Jefferson St, Pensacola, FL 32502, USA",(850) 432-6247,http://www.pensacolamuseum.org/,Pensacola +Palafox Street Downtown Pensacola,30.4156547,-87.2158627,"200 N Palafox St, Pensacola, FL 32502, USA",Unknown,http://visitpensacola.com/,Pensacola +Plaza De Luna Memorial Monument,30.402506,-87.2130128,"900 S Palafox St, Pensacola, FL 32502, USA",(850) 436-5670,https://www.cityofpensacola.com/facilities/facility/details/plazadeluna-75,Pensacola +The Graffiti Bridge,30.420402,-87.193888,"N 17th Ave, Pensacola, FL 32502, USA",(850) 361-9306,http://thegraffitibridge.com/,Pensacola +Pensacola Children's Museum,30.408296,-87.2127429,"115 Zaragoza St, Pensacola, FL 32502, USA",(850) 595-1559,http://www.historicpensacola.org/plan-your-visit/museums-properties/pensacola-childrens-museum/,Pensacola +Go Retro,30.4196742,-87.21960759999999,"610 N Spring St, Pensacola, FL 32501, USA",(850) 466-5220,http://www.goretro.us/,Pensacola +Museum of Commerce,30.4085519,-87.21147859999999,"201 Zaragoza St, Pensacola, FL 32502, USA",(850) 595-5985,https://historicpensacola.org/plan-your-visit/museums-properties/museum-of-commerce/,Pensacola +The Quina House Museum,30.41104139999999,-87.2093412,"204 S Alcaniz St, Pensacola, FL 32502, USA",(850) 432-3050,https://pensacolahistoricpreservationsociety.com/quinahouse,Pensacola +Bay Bluffs Park,30.45511870000001,-87.1684993,"3400 Scenic Hwy, Pensacola, FL 32503, USA",(850) 435-1603,http://cityofpensacola.com/Facilities/Facility/Details/Bay-Bluffs-Preserve-18,Pensacola +Pensacola MESS Hall,30.418049,-87.210194,"418 E Wright St, Pensacola, FL 32502, USA",(877) 937-6377,http://www.pensacolamesshall.org/,Pensacola +Pensacola Bay City Ferry,30.405077,-87.2121877,"750 Commendencia St, Pensacola, FL 32502, USA",(850) 466-3379,https://www.pensacolabaycityferry.com/,Pensacola +Museum of Industry,30.4089578,-87.2115541,"200 Zaragoza St, Pensacola, FL 32502, USA",(850) 595-5985,http://historicpensacola.org/plan-your-visit/museums-properties/museum-of-industry/,Pensacola +Pensacola,30.42130899999999,-87.2169149,"Pensacola, FL 32501, USA",Unknown,https://www.visitpensacola.com/,Pensacola +Pensacola Lighthouse & Maritime Museum,30.3460366,-87.3080825,"2081 Radford Blvd, Pensacola, FL 32508, USA",(850) 393-1561,http://www.pensacolalighthouse.org/,Pensacola +Splash City Adventures,30.4880556,-87.2616667,"6709 Pensacola Blvd, Pensacola, FL 32505, USA",(850) 505-0800,http://splashcityadventure.com/,Pensacola +Pensacola Aviation Discovery Park,30.4715774,-87.18137349999999,"4200 Jerry L Maygarden Rd, Pensacola, FL 32504, USA",Unknown,Unknown,Pensacola +Seville Square,30.4094849,-87.2097321,"311 E Government St, Pensacola, FL 32502, USA",(850) 436-5670,http://www.ci.pensacola.fl.us/,Pensacola +The Twin Bluffs,30.4597979,-87.164964,"3700 Scenic Hwy, Pensacola, FL 32504, USA",Unknown,Unknown,Pensacola +Fort Pickens,30.327303,-87.290514,"1400 Fort Pickens Rd, Pensacola Beach, FL 32561, USA",Unknown,https://www.nps.gov/guis/planyourvisit/fort-pickens-area.htm,Pensacola +Santa Monica Pier,34.0082821,-118.4987585,"200 Santa Monica Pier, Santa Monica, CA 90401, USA",(310) 458-8900,https://santamonicapier.org/,Los Angeles +Hollywood Walk of Fame,34.10163449999999,-118.3267051,"Hollywood Boulevard, Vine St, Los Angeles, CA 90028, USA",(323) 469-8311,https://walkoffame.com/,Los Angeles +Hollywood Sign,34.1341151,-118.3215482,"Los Angeles, CA 90068, USA",(323) 258-4338,http://www.hollywoodsign.org/,Los Angeles +The Getty,34.0780358,-118.4740954,"1200 Getty Center Dr, Los Angeles, CA 90049, USA",(310) 440-7300,https://www.getty.edu/visit/center/,Los Angeles +Universal Studios Hollywood,34.13811680000001,-118.3533783,"100 Universal City Plaza, Universal City, CA 91608, USA",(800) 864-8377,https://www.universalstudioshollywood.com/?utm_source=google&utm_medium=organic&utm_campaign=GMB,Los Angeles +Griffith Park,34.1365544,-118.2942,"4730 Crystal Springs Dr, Los Angeles, CA 90027, USA",(323) 913-4688,https://www.laparks.org/griffithpark/griffith-park-home-page,Los Angeles +Guinness World Records Museum,34.1014015,-118.3380435,"6764 Hollywood Blvd, Los Angeles, CA 90028, USA",(323) 463-6433,https://www.hollywoodwaxentertainment.com/hollywood-ca-attractions/guinness-worlds-records-museum/,Los Angeles +Griffith Observatory,34.1184341,-118.3003935,"2800 E Observatory Rd, Los Angeles, CA 90027, USA",(213) 473-0800,https://griffithobservatory.org/,Los Angeles +Natural History Museum of Los Angeles County,34.0171448,-118.2886635,"900 Exposition Blvd, Los Angeles, CA 90007, USA",(213) 763-3466,https://nhm.org/,Los Angeles +The Broad,34.0545021,-118.2501802,"221 S Grand Ave, Los Angeles, CA 90012, USA",(213) 232-6200,https://www.thebroad.org/,Los Angeles +Crossroads of the World,34.0981907,-118.3356595,"6671 Sunset Blvd, Los Angeles, CA 90028, USA",(323) 463-5611,https://www.crossroadsoftheworldla.com/,Los Angeles +La Brea Tar Pits and Museum,34.06388,-118.356445,"5801 Wilshire Blvd, Los Angeles, CA 90036, USA",(213) 763-3499,https://tarpits.org/,Los Angeles +Paramount Pictures Studio Tour,34.0837936,-118.3208986,"5515 Melrose Ave, Los Angeles, CA 90038, USA",(323) 956-1777,http://www.paramountstudiotour.com/,Los Angeles +Hollywood Wax Museum,34.1017446,-118.3381545,"6767 Hollywood Blvd, Los Angeles, CA 90028, USA",(323) 462-5991,https://www.hollywoodwaxentertainment.com/hollywood-ca-attractions/hollywood-wax-museum/,Los Angeles +Hollywood Walk of Fame,34.1017052,-118.340257,"6901 Hollywood Blvd, Los Angeles, CA 90028, USA",Unknown,https://walkoffame.com/william-shatner/,Los Angeles +Los Angeles County Museum of Art,34.0639323,-118.3592293,"5905 Wilshire Blvd, Los Angeles, CA 90036, USA",(323) 857-6000,http://www.lacma.org/,Los Angeles +You Are The Star,34.1012752,-118.3309212,"1665 Wilcox Ave, Los Angeles, CA 90028, USA",Unknown,Unknown,Los Angeles +Old Los Angeles Zoo,34.1339393,-118.2890378,"4801 Griffith Park Dr, Los Angeles, CA 90027, USA",(323) 913-4688,https://laparks.org/parks,Los Angeles +Bronson Caves,34.1213309,-118.3143371,"3200 Canyon Dr, Los Angeles, CA 90068, USA",(818) 243-1145,http://www.laparks.org/park/bronson-canyon,Los Angeles +View,34.1288408,-118.3651137,"7695-7699 Mulholland Dr, Los Angeles, CA 90046, USA",Unknown,Unknown,Los Angeles +Charles H. MacNider Art Museum,43.149489,-93.196023,"303 2nd St SE, Mason City, IA 50401, USA",(641) 421-3666,http://www.macniderart.org/,Mason City +Music Man Square,43.14925069999999,-93.1988604,"308 S Pennsylvania Ave, Mason City, IA 50401, USA",(641) 424-2852,https://themusicmansquare.org/,Mason City +Lime Creek Nature Center,43.1838114,-93.1927745,"3501 Lime Creek Rd, Mason City, IA 50401, USA",(641) 423-5309,http://www.cgcounty.org/,Mason City +Stockman House Rcshp,43.1523486,-93.1921787,"530 1st St NE, Mason City, IA 50401, USA",(641) 423-1923,http://www.stockmanhouse.org/,Mason City +River City Sculptures on Parade,43.1521554,-93.2006787,"9 N Federal Ave, Mason City, IA 50401, USA",(641) 423-5724,http://www.sculpturesonparade.com/contact-us.php,Mason City +East Park,43.1541302,-93.1848698,"802 3rd St NE, Mason City, IA 50401, USA",(641) 421-3673,http://www.masoncity.net/pview.aspx?id=17965&catid=481,Mason City +Rancho Deluxe,43.1537507,-93.1929035,"500 2nd St NE, Mason City, IA 50401, USA",Unknown,https://www.facebook.com/Rancho-Deluxe-The-Original-Bicycle-Garden-279437285588064/,Mason City +Kinney Pioneer Museum,43.14996590000001,-93.3376099,"Suite G, 9184 265th St, Clear Lake, IA 50428, USA",(641) 423-1258,http://kinneypioneermuseum.org/,Mason City +Lester Milligan Park,43.1389514,-93.220236,"Mason City, IA 50401, USA",Unknown,https://visitmasoncityiowa.com/places/united-states/iowa/mason-city/parks-camping/lester-milligan-park/,Mason City +Central Park,43.1522401,-93.2019015,"W State St, Mason City, IA 50401, USA",Unknown,Unknown,Mason City +Meredith Willson Boyhood Home,43.1490705,-93.1983257,"314 S Pennsylvania Ave, Mason City, IA 50401, USA",Unknown,https://themusicmansquare.org/,Mason City +Visit Mason City Iowa,43.1477711,-93.232465,"2021 4th St SW, Mason City, IA 50401, USA",(641) 422-1663,http://www.visitmasoncityiowa.com/,Mason City +MacNiders Woods,43.1567578,-93.2175406,"6th St NW, Mason City, IA 50401, USA",Unknown,Unknown,Mason City +Blair Meadows Preserve,43.1644269,-93.2629862,"275th St, Mason City, IA 50401, USA",Unknown,Unknown,Mason City +Norsk Utvandrermuseum,43.1475343,-93.2394753,"2601 4th St SW, Mason City, IA 50401, USA",62 57 48 50,http://www.emigrantmuseum.no/Englishcontactpage.html,Mason City +Dustin Colby Park,43.1389764,-93.2458082,"2952 15th St SW, Mason City, IA 50401, USA",Unknown,Unknown,Mason City +Forsyth Park,32.0675356,-81.09623839999999,"Savannah, GA 31401, USA",(912) 351-3841,https://www.savannahga.gov/351/Parks-Playgrounds,Savannah +Wormsloe State Historic Site,31.9801931,-81.069243,"7601 Skidaway Rd, Savannah, GA 31406, USA",(912) 353-3023,https://gastateparks.org/Wormsloe,Savannah +Mercer-Williams House Museum,32.071362,-81.0954668,"429 Bull St, Savannah, GA 31401, USA",(912) 238-0208,http://www.mercerhouse.com/,Savannah +Savannah Historic District,32.07612410000001,-81.0990759,"301 Martin Luther King Jr Blvd, Savannah, GA 31401, USA",(912) 944-0455,http://www.nps.gov/nr/travel/geo-flor/1.htm,Savannah +Savannah's Waterfront,32.0818497,-81.09184929999999,"1 W River St, Savannah, GA 31401, USA",(912) 234-0295,https://savannahswaterfront.com/,Savannah +Old Fort Jackson,32.0818985,-81.0358067,"1 Fort Jackson Rd, Savannah, GA 31404, USA",(912) 232-3945,http://www.chsgeorgia.org/OFJ,Savannah +Davenport House Museum Entrance and Shop,32.0777164,-81.0878187,"323 E Broughton St, Savannah, GA 31401, USA",(912) 236-8097,http://www.davenporthousemuseum.org/,Savannah +Owens-Thomas House & Slave Quarters,32.0773837,-81.0892894,"124 Abercorn St, Savannah, GA 31401, USA",(912) 790-8800,http://www.telfair.org/visit/owens-thomas/,Savannah +American Prohibition Museum,32.08055900000001,-81.0946235,"209 W Saint Julian Street, Savannah, GA 31401, USA",(912) 220-1249,https://www.americanprohibitionmuseum.com/,Savannah +Jepson Center & Telfair Children's Art Museum (CAM),32.07828549999999,-81.0951522,"207 W York St, Savannah, GA 31401, USA",(912) 790-8800,http://www.telfair.org/visit/jepson/,Savannah +Savannah Children's Museum,32.0760234,-81.10093359999999,"655 Louisville Rd, Savannah, GA 31401, USA",(912) 651-6823 ext. 203,http://www.chsgeorgia.org/SCM,Savannah +Hearse Ghost Tours,32.0601846,-81.0908072,"1410 E Broad St, Savannah, GA 31401, USA",(912) 695-1578,https://www.hearseghosttours.com/,Savannah +Ralph Mark Gilbert Civil Rights Museum,32.07214039999999,-81.0998784,"460 Martin Luther King Jr Blvd, Savannah, GA 31401, USA",(912) 777-6099,https://rmgcivilrightsmuseum.com/,Savannah +#1 Ghost Tour,32.0634629,-81.09390739999999,"309 E Park Ln, Savannah, GA 31401, USA",(912) 398-8632,https://1ghosttour.com/,Savannah +Blue Orb Tours,32.0758198,-81.0931476,"Chippewa Square, Savannah, GA 31401, USA",(912) 665-4258,https://blueorbtours.com/,Savannah +Andrew Low House,32.0730147,-81.0924551,"329 Abercorn St, Savannah, GA 31401, USA",(912) 233-6854,http://www.andrewlowhouse.com/,Savannah +Savannah History Museum,32.0761781,-81.0990726,"303 Martin Luther King Jr Blvd, Savannah, GA 31401, USA",(912) 651-6840,http://www.chsgeorgia.org/,Savannah +Tricentennial Park,32.0756282,-81.0999451,"MLK Jr Blvd @, Louisville Rd, Savannah, GA 31401, USA",(912) 238-1453,http://www.savannah.com/tricentennial-park/,Savannah +The Savannah Underground,32.0733865,-81.105728,"415 W Boundary St, Savannah, GA 31401, USA",(912) 214-5310,http://www.thesavannahunderground.com/,Savannah +Pin Point Heritage Museum,31.95215889999999,-81.0902873,"9924 Pin Point Ave, Savannah, GA 31406, USA",(912) 355-0064,Unknown,Savannah +Grizzly & Wolf Discovery Center,44.6561185,-111.0986333,"201 S Canyon St, West Yellowstone, MT 59758, USA",(800) 257-2570,http://www.grizzlydiscoveryctr.org/,West Yellowstone +Museum of the Yellowstone,44.658223,-111.100586,"104 Yellowstone Ave, West Yellowstone, MT 59758, USA",(406) 646-1100,http://museumoftheyellowstone.org/,West Yellowstone +West Yellowstone Visitor Information Center,44.6583236,-111.0992662,"30 Yellowstone Ave, West Yellowstone, MT 59758, USA",(406) 646-7701,https://www.destinationyellowstone.com/,West Yellowstone +Yellowstone Aerial Adventures- Zipline Adventure Park,44.6573998,-111.1059203,"105 S Faithful St, West Yellowstone, MT 59758, USA",(406) 646-5171,http://www.yellowstoneparkzipline.com/,West Yellowstone +West Yellowstone Destination Adventure Sign,44.65864,-111.0982803,"West Yellowstone, MT 59758, USA",Unknown,Unknown,West Yellowstone +Yellowstone Giant Screen Theatre,44.6575218,-111.0986804,"101 S Canyon St, West Yellowstone, MT 59758, USA",(406) 646-4100,https://www.yellowstonegiantscreen.com/,West Yellowstone +West Yellowstone Heritage Park,44.66275139999999,-111.1011501,"179-199 Firehole Ave, West Yellowstone, MT 59758, USA",(406) 646-7715,http://www.townofwestyellowstone.com/residents/recreation/,West Yellowstone +Old Faithful,44.46047879999999,-110.8281376,"Yellowstone National Park, WY 82190, USA",(307) 344-7381,http://www.nps.gov/yell/index.htm,West Yellowstone +Yellowstone Big Gun Fun,44.6606972,-111.0983278,"15 Madison Ave, West Yellowstone, MT 59758, USA",(406) 646-1093,http://biggunfunwys.com/,West Yellowstone +"madison junction, yellowstone national park",44.6866718,-111.1145878,"721 Airport Rd, West Yellowstone, MT 59758, USA",Unknown,Unknown,West Yellowstone +Sled Hill,44.6636092,-111.1010652,"135 Gibbon Ave, West Yellowstone, MT 59758, USA",Unknown,https://www.townofwestyellowstone.com/residents/recreation/,West Yellowstone +Morning Glory Pool,44.47505829999999,-110.8435139,"Yellowstone National Park, WY 82190, USA",(307) 344-7381,http://www.nps.gov/features/yell/tours/oldfaithful/mrngglry.htm,West Yellowstone +SeeYellowstone.com,44.6589019,-111.1028635,"211 Yellowstone Ave, West Yellowstone, MT 59758, USA",(800) 221-1151,http://www.seeyellowstone.com/,West Yellowstone +Yellowstone Half Marathon,44.6629645,-111.1140322,"213 Iris St, West Yellowstone, MT 59758, USA",Unknown,http://vacationraces.com/,West Yellowstone +Back Country Adventures,44.663336,-111.1044976,"224 N Electric St, West Yellowstone, MT 59758, USA",(800) 924-7669,http://backcountry-adventures.com/,West Yellowstone +Yellowstone Vacation Tours,44.6590189,-111.1069109,"415 Yellowstone Ave, West Yellowstone, MT 59758, USA",(406) 646-9564,https://www.yellowstonevacations.com/guided-tours?utm_source=google&utm_medium=yext,West Yellowstone +Gibbon Falls,44.7375041,-110.6984357,"Grand Loop Rd, Yellowstone National Park, WY 82190, USA",(307) 344-7381,https://www.nps.gov/yell/index.htm,West Yellowstone +Grand Canyon Of The Yellowstone,44.7197996,-110.4853072,"N Rim Dr, Yellowstone National Park, WY 82190, USA",Unknown,Unknown,West Yellowstone +Yellowstone Helicopters Montana,44.6867384,-111.1145714,"721 Airport Rd, West Yellowstone, MT 59758, USA",Unknown,http://www.yellowstoneheli.com/,West Yellowstone +Gneiss Creek,44.7960283,-111.1029365,"15 Aspen Loop, West Yellowstone, MT 59758, USA",Unknown,Unknown,West Yellowstone +Aquarium of the Pacific,33.7619735,-118.1969738,"100 Aquarium Way, Long Beach, CA 90802, USA",(562) 590-3100,https://www.aquariumofpacific.org/,Long Beach +El Dorado Nature Center,33.8098225,-118.0857107,"7550 E Spring St, Long Beach, CA 90815, USA",(562) 570-1745,http://www.longbeach.gov/park/park-and-facilities/parks-centers-pier/el-dorado-nature-center/,Long Beach +The Lion Lighthouse,33.7602507,-118.1941058,"200 Aquarium Way, Long Beach, CA 90802, USA",(562) 570-4950,Unknown,Long Beach +Earl Burns Miller Japanese Garden,33.7852766,-118.119816,"Earl Warren Dr, Long Beach, CA 90840, USA",(562) 985-8420,https://www.csulb.edu/japanese-garden,Long Beach +Long Beach Museum of Art,33.7634611,-118.1648139,"2300 E Ocean Blvd, Long Beach, CA 90803, USA",(562) 439-2119,http://www.lbma.org/,Long Beach +ShoreLine Aquatic Park,33.7601417,-118.1951111,"200 Aquarium Way, Long Beach, CA 90802, USA",(562) 570-3100,http://www.longbeach.gov/Park/Park-and-Facilities/Directory/ShoreLine-Aquatic-Park/,Long Beach +El Dorado East Regional Park,33.8109092,-118.0854391,"7550 E Spring St, Long Beach, CA 90815, USA",(562) 570-1771,http://www.longbeach.gov/park/park-and-facilities/directory/el-dorado-east-regional-park/,Long Beach +The Queen Mary,33.7526356,-118.1903235,"1126 Queens Hwy, Long Beach, CA 90802, USA",(562) 435-3510,https://www.queenmary.com/,Long Beach +Rainbow Lagoon Park,33.7628892,-118.1876346,"400 E Shoreline Dr, Long Beach, CA 90802, USA",(562) 570-3100,http://www.longbeach.gov/park/park-and-facilities/directory/rainbow-lagoon/,Long Beach +Seashell Park,33.7625017,-118.1962911,"100 Aquarium Way, Long Beach, CA 90802, USA",Unknown,Unknown,Long Beach +Long Beach Sign,33.7709553,-118.2038706,"W Shoreline Dr, Long Beach, CA 90802, USA",Unknown,Unknown,Long Beach +Skinniest House In America,33.7756288,-118.1577494,"708 Gladys Ave, Long Beach, CA 90804, USA",Unknown,Unknown,Long Beach +Jenni Rivera Memorial Park,33.7955443,-118.1741434,"2001 Walnut Ave, Long Beach, CA 90806, USA",(562) 570-3111,http://www.longbeach.gov/,Long Beach +Giant Globe,33.8276909,-118.1462255,"Long Beach, CA 90846, USA",Unknown,Unknown,Long Beach +Bixby Park,33.765966,-118.167132,"130 Cherry Ave, Long Beach, CA 90802, USA",(562) 570-1601,http://www.longbeach.gov/park/park-and-facilities/directory/bixby-park/,Long Beach +Long Beach Lifeguard Museum,33.7647615,-118.1275776,"5291 E Paoli Way, Long Beach, CA 90803, USA",Unknown,Unknown,Long Beach +Pride Lifeguard Tower,33.7636297,-118.1717606,"1799 Bluff Pl #1693, Long Beach, CA 90802, USA",Unknown,Unknown,Long Beach +Museum of Latin American Art (MOLAA),33.7744763,-118.1798478,"628 Alamitos Ave, Long Beach, CA 90802, USA",(562) 437-1689,http://www.molaa.org/,Long Beach +Hilltop Park,33.79934969999999,-118.1656039,"2351 Dawson Ave, Signal Hill, CA 90755, USA",(562) 989-7330,http://www.cityofsignalhill.org/Facilities.aspx?Page=detail&RID=3,Long Beach +Cesar E. Chavez Park,33.7717552,-118.2023621,"401 Golden Ave, Long Beach, CA 90802, USA",(562) 570-8890,http://www.longbeach.gov/park/park-and-facilities/directory/cesar-e--chavez-park/,Long Beach +Nevada Museum of Art,39.5207823,-119.8134183,"160 W Liberty St, Reno, NV 89501, USA",(775) 329-3333,https://www.nevadaart.org/,Reno +The Discovery,39.52176830000001,-119.8094121,"490 S Center St, Reno, NV 89501, USA",(775) 786-1000,https://nvdm.org/?utm_source=gmb&utm_medium=organic&utm_campaign=the_discovery,Reno +National Automobile Museum,39.526224,-119.8083969,"1 Museum Dr, Reno, NV 89501, USA",(775) 333-9300,http://www.automuseum.org/,Reno +Fleischmann Planetarium,39.5459068,-119.8194696,"1664 N Virginia St, Reno, NV 89557, USA",(775) 784-4812,http://unr.edu/planetarium,Reno +Rancho San Rafael Regional Park,39.5456988,-119.8239912,"1595 N Sierra St, Reno, NV 89503, USA",(775) 785-4512,Unknown,Reno +Wilbur D. May Center,39.5460619,-119.8254368,"1595 N Sierra St, Reno, NV 89503, USA",(775) 785-5961,http://www.maycenter.com/,Reno +Reno Arch,39.5281622,-119.813681,"345 N Virginia St, Reno, NV 89501, USA",(775) 334-4636,https://www.reno.gov/,Reno +Idlewild Park,39.5218409,-119.8329796,"2055 Idlewild Dr, Reno, NV 89509, USA",(775) 334-2270,Unknown,Reno +Grand Adventure Land,39.5264417,-119.78059,"2500 E 2nd St, Reno, NV 89595, USA",(775) 789-1127,http://www.grandsierraresort.com/GrandAdventureLand,Reno +Animal Ark,39.78392409999999,-119.869049,"1265 Deerlodge Rd, Reno, NV 89508, USA",(775) 475-9626,http://www.animalark.org/,Reno +Nevada Historical Society,39.5473222,-119.8204292,"1650 N Virginia St, Reno, NV 89503, USA",(775) 688-1190,http://www.nvhistoricalsociety.org/,Reno +The Sensory Garden At Idlewild Park,39.5217021,-119.8331676,"74 Cowan Dr, Reno, NV 89509, USA",Unknown,http://ktmb.org/sensory-garden/,Reno +Indian Head,39.52136890000001,-119.8333492,"Reno, NV 89509, USA",Unknown,Unknown,Reno +Dorostkar Park,39.5056928,-119.88642,"6331 Mayberry Dr, Reno, NV 89519, USA",(775) 828-6612,Unknown,Reno +Dragon Lights Reno,39.5457842,-119.8240397,"1595 N Sierra St, Reno, NV 89503, USA",(888) 484-2698,https://dragonlightsreno.org/,Reno +Believe sculpture,39.5256138,-119.8120102,"10 N Virginia St, Reno, NV 89501, USA",Unknown,https://artrail.washoecounty.us/sites/believe.php,Reno +W. M Keck Earth Science And Mineral Engineering Museum,39.5392212,-119.8144189,"1664 North Virginia Street, Mackay Mines, 057 Mail Stop 0168, Reno, NV 89557, USA",(775) 784-4528,http://unr.edu/keck,Reno +Bartley Ranch Regional Park,39.46978099999999,-119.8073539,"6000 Bartley Ranch Rd, Reno, NV 89511, USA",(775) 828-6612,https://www.washoecounty.gov/parks/parks/park_directory_pages/south_region/bartley_ranch_regional_park.php,Reno +Raymond L Smith Truckee River Walk,39.5245387,-119.8126362,"17 S Virginia St, Reno, NV 89501, USA",(775) 825-9255,http://renoriver.org/about-us/our-history,Reno +Rancho San Rafael Nature Trail,39.5522739,-119.8322783,"1595 N Sierra St, Reno, NV 89503, USA",Unknown,Unknown,Reno +Akron Art Museum,41.0843583,-81.5154611,"1 S High St, Akron, OH 44308, USA",(330) 376-9186,http://akronartmuseum.org/,Akron +Stan Hywet Hall & Gardens,41.1192497,-81.5503172,"714 N Portage Path, Akron, OH 44303, USA",(330) 836-5533,Unknown,Akron +F.A. Seiberling Nature Realm,41.1399175,-81.5757635,"1828 Smith Rd, Akron, OH 44313, USA",(330) 865-8065,http://www.summitmetroparks.org/fa-seiberling-nature-realm.aspx,Akron +Akron Zoo,41.078555,-81.5414397,"500 Edgewood Ave, Akron, OH 44307, USA",(330) 375-2550,https://www.akronzoo.org/,Akron +Lock 3 Park,41.079966,-81.52067339999999,"200 S Main St, Akron, OH 44308, USA",(330) 375-2877,http://lock3live.com/,Akron +Cascade Valley Metro Park-Chuckery Area,41.1120179,-81.52497249999999,"837 Cuyahoga St, Akron, OH 44313, USA",(330) 867-5511,http://www.summitmetroparks.org/,Akron +Hower House,41.0796335,-81.50768470000001,"60 Fir Hill, Akron, OH 44304, USA",(330) 972-6909,https://www.uakron.edu/howerhousemuseum/,Akron +Akron Children's Museum,41.0797658,-81.5217534,"51. W. State Street, Mailing Address:, 216 S Main St, Akron, OH 44308, USA",(330) 396-6103,http://akronkids.org/,Akron +Simon Perkins Stone Mansion,41.0851189,-81.54158,"550 Copley Rd, Akron, OH 44320, USA",(330) 535-1120,http://summithistory.org/,Akron +Indian Signal Tree,41.1203374,-81.5180236,"Peck Rd, Akron, OH 44310, USA",(330) 867-5511,http://www.summitmetroparks.org,Akron +Cascade Locks Park Association - Mustill Store Museum,41.0919469,-81.5182389,"57 W North St, Akron, OH 44304, USA",(330) 374-5625,http://www.cascadelocks.org/,Akron +Cascade Valley Metro Park - Overlook Area,41.1286817,-81.5212664,"354 Sackett Ave, Akron, OH 44313, USA",Unknown,https://www.summitmetroparks.org/cascade-valley-metro-park.aspx,Akron +Bethlehem Cave and Nativity Museum,40.9974995,-81.4353405,"2425 Myersville Rd, Akron, OH 44312, USA",(330) 699-5086,http://www.nativityofthelord.org/,Akron +Summit Metro Parks,41.1285457,-81.5425554,"975 Treaty Line Rd, Akron, OH 44313, USA",(330) 867-5511,http://www.summitmetroparks.org/,Akron +"Cuyahoga Valley Scenic Railroad, Akron",41.0894679,-81.5148576,"27 Ridge St, Akron, OH 44308, USA",(800) 468-4070,http://www.cvsr.com/,Akron +Cummings Center for the History of Psychology,41.0805957,-81.5107372,"73 S College St, Akron, OH 44325, USA",(330) 972-7285,https://uakron.edu/chp,Akron +Lock 4,41.0810748,-81.51995579999999,"200 S Main St, Akron, OH 44308, USA",Unknown,http://www.downtownakron.com/go/lock-4,Akron +Springfield Bog Metro Park,41.01253579999999,-81.39387599999999,"1400 Portage Line Rd, Akron, OH 44312, USA",(330) 867-5511,http://www.summitmetroparks.org/,Akron +Sand Run Metro Park,41.1350009,-81.567869,"1300 Sand Run Rd, Akron, OH 44313, USA",(330) 867-5511,https://www.summitmetroparks.org/sand-run-metro-park.aspx,Akron +Akron Fossils & Science Center,41.0814432,-81.6433972,"2080 S Cleveland Massillon Rd, Copley, OH 44321, USA",(330) 665-3466,http://www.akronfossils.org/,Akron +Louisville Mega Cavern,38.2012259,-85.703929,"1841 Taylor Ave, Louisville, KY 40213, USA",(877) 614-6342,https://louisvillemegacavern.com/,Louisville +Louisville Slugger Museum & Factory,38.25713559999999,-85.7639796,"800 W Main St, Louisville, KY 40202, USA",(877) 775-8443,http://www.sluggermuseum.com/,Louisville +Kentucky Science Center,38.2576145,-85.76265699999999,"727 W Main St, Louisville, KY 40202, USA",(502) 561-6100,http://www.kysciencecenter.org/,Louisville +Louisville Zoo,38.2057299,-85.7071264,"1100 Trevilian Way, Louisville, KY 40213, USA",(502) 459-2181,https://louisvillezoo.org/,Louisville +Frazier History Museum,38.2577529,-85.7644972,"829 W Main St, Louisville, KY 40202, USA",(502) 753-5663,http://www.fraziermuseum.org/,Louisville +The Waverly Hills Sanatorium,38.1301221,-85.8416929,"4400 Paralee Dr, Louisville, KY 40272, USA",(502) 690-7880,http://www.therealwaverlyhills.com/,Louisville +Kentucky Derby Museum,38.2054621,-85.7710699,"704 Central Ave, Louisville, KY 40208, USA",(502) 637-1111,http://www.derbymuseum.org/,Louisville +Cherokee Park,38.2399656,-85.6993663,"745 Cochran Hill Rd, Louisville, KY 40206, USA",(502) 574-7275,https://louisvilleky.gov/government/parks/park-list/cherokee-park,Louisville +Trolley de 'Ville,38.2580913,-85.75648559999999,"140 N Fourth St, Louisville, KY 40202, USA",(502) 939-3415,https://trolleydeville.com/,Louisville +Churchill Downs,38.2037252,-85.77239879999999,"700 Central Ave, Louisville, KY 40208, USA",(502) 636-4400,http://www.churchilldowns.com/,Louisville +Speed Art Museum,38.2183706,-85.7609428,"2035 S 3rd St, Louisville, KY 40208, USA",(502) 634-2700,http://www.speedmuseum.org/,Louisville +Waterfront Park,38.26073890000001,-85.74260129999999,"129 River Rd, Louisville, KY 40202, USA",(502) 574-3768,https://ourwaterfront.org/,Louisville +Lights Under Louisville,38.2015141,-85.7040882,"1841 Taylor Ave, Louisville, KY 40213, USA",(877) 614-6342,http://lightsunderlouisville.com/,Louisville +Conrad-Caldwell House Museum,38.2291479,-85.76342230000002,"1402 St James Ct, Louisville, KY 40208, USA",(502) 636-5023,http://conrad-caldwell.org/,Louisville +Louisville Nature Center,38.2096492,-85.7111025,"3745 Illinois Ave, Louisville, KY 40213, USA",(502) 458-1328,http://louisvillenaturecenter.org/,Louisville +Locust Grove,38.28645400000001,-85.66138699999999,"561 Blankenbaker Ln, Louisville, KY 40207, USA",(502) 897-9845,http://www.locustgrove.org/,Louisville +Muhammad Ali Center,38.25847619999999,-85.75980480000001,"144 N 6th St, Louisville, KY 40202, USA",(502) 584-9254,https://alicenter.org/,Louisville +Iroquois Park,38.1608222,-85.7803059,"2120 Rundill Rd, Louisville, KY 40214, USA",(502) 363-7766,https://louisvilleky.gov/government/parks/park-list/iroquois-park,Louisville +Louisville Knot,38.257531,-85.7656208,"8 W Main St, Louisville, KY 40202, USA",Unknown,Unknown,Louisville +KMAC Contemporary Art Museum,38.257524,-85.762142,"715 W Main St, Louisville, KY 40202, USA",(502) 589-0102,http://www.kmacmuseum.org/,Louisville +Wadsworth Atheneum Museum of Art,41.7637113,-72.6730855,"600 Main St, Hartford, CT 06103, USA",(860) 278-2670,https://www.thewadsworth.org/,Hartford +The Mark Twain House & Museum,41.7670235,-72.7014493,"351 Farmington Ave, Hartford, CT 06105, USA",(860) 247-0998,https://marktwainhouse.org/,Hartford +Connecticut Science Center,41.7646881,-72.6694469,"250 Columbus Blvd, Hartford, CT 06103, USA",(860) 724-3623,https://www.ctsciencecenter.org/,Hartford +Connecticut's Old State House,41.76602599999999,-72.6727365,"800 Main St, Hartford, CT 06103, USA",(860) 522-6766,http://www.ctoldstatehouse.org/,Hartford +Bushnell Park Carousel,41.76513409999999,-72.6792356,"1 Jewell St, Hartford, CT 06103, USA",(860) 232-6710,http://www.bushnellpark.org/attractions/the-carousel,Hartford +Harriet Beecher Stowe Center,41.7668083,-72.7003833,"77 Forest St, Hartford, CT 06105, USA",(860) 522-9258,http://harrietbeecherstowecenter.org/,Hartford +Museum of Connecticut History,41.7626535,-72.68303639999999,"231 Capitol Ave, Hartford, CT 06106, USA",(860) 757-6535,https://museumofcthistory.org/,Hartford +Connecticut Museum of Culture and History,41.772934,-72.705277,"1 Elizabeth St, Hartford, CT 06105, USA",(860) 236-5621,https://chs.org/,Hartford +Bushnell Park Conservancy,41.7652688,-72.68012,"99 Trinity St, Hartford, CT 06123, USA",(860) 232-6710,http://www.bushnellpark.org/,Hartford +Elizabeth Park Rose Garden,41.7739972,-72.718775,"1561 Asylum Ave, Hartford, CT 06105, USA",(860) 231-9443,http://elizabethparkct.org/garden/rose-garden,Hartford +Butler-McCook House & Garden,41.76066700000001,-72.6746677,"396 Main St, Hartford, CT 06103, USA",(860) 522-1806,https://www.ctlandmarks.org/butler-mccook,Hartford +Great River Park,41.7591858,-72.65917209999999,"301 E River Dr, East Hartford, CT 06108, USA",(860) 713-3131,https://riverfront.org/great-river-park/,Hartford +Noah Webster House & West Hartford Historical Society,41.746931,-72.745921,"227 S Main St, West Hartford, CT 06107, USA",(860) 521-5362,https://www.noahwebsterhouse.org/,Hartford +Katharine Day House at Harriet Beecher Stowe Center,41.7671821,-72.70050080000001,"77 Forest St, Hartford, CT 06105, USA",(860) 522-9258,http://www.harrietbeecherstowe.org/,Hartford +Colt Park,41.75162770000001,-72.6690723,"106 Wethersfield Ave, Hartford, CT 06114, USA",(860) 757-9311,https://www.hartfordct.gov/Government/Departments/Public-Works/Parks-Directory/Colt-Park,Hartford +Soldiers & Sailors Memorial Arch,41.7656791,-72.6799794,"15 Trinity St, Hartford, CT 06106, USA",(860) 585-5411,http://www.bushnellpark.org/attractions/soldiers-sailors-memorial-arch,Hartford +The Children's Museum,41.7975114,-72.7349861,"180 Mohegan Dr, West Hartford, CT 06117, USA",(860) 231-2824,http://www.thechildrensmuseumct.org/,Hartford +Corning Fountain,41.76661349999999,-72.68103669999999,"Horace Bushnell Promenade, Hartford, CT 06103, USA",(860) 585-5411,http://www.bushnellpark.org/attractions/the-carousel,Hartford +Riverside Park,41.77630459999999,-72.664638,"20 Leibert Rd, Hartford, CT 06120, USA",(860) 713-3131,https://riverfront.org/riverside-park/,Hartford +Bushnell Park,41.7642113,-72.6773479,"Downtown, Hartford, CT 06103, USA",(860) 585-5411,http://www.bushnellpark.org/,Hartford +Cincinnati Zoo & Botanical Garden,39.14267759999999,-84.5092902,"3400 Vine St, Cincinnati, OH 45220, USA",(513) 281-4700,https://cincinnatizoo.org/,Cincinnati +Cincinnati Art Museum,39.1144588,-84.4967972,"953 Eden Park Dr, Cincinnati, OH 45202, USA",(513) 721-2787,https://www.cincinnatiartmuseum.org/,Cincinnati +American Sign Museum,39.14347779999999,-84.5400688,"1330 Monmouth Ave, Cincinnati, OH 45225, USA",(513) 541-6366,http://www.americansignmuseum.org/,Cincinnati +Eden Park,39.1164516,-84.4960394,"950 Eden Park Dr, Cincinnati, OH 45202, USA",(513) 357-2604,http://www.cincinnatiparks.com/central/eden-park/,Cincinnati +Cincinnati Museum Center,39.1099317,-84.5372751,"1301 Western Ave, Cincinnati, OH 45203, USA",(513) 287-7000,http://www.cincymuseum.org/,Cincinnati +Krohn Conservatory,39.1149567,-84.49013819999999,"1501 Eden Park Dr, Cincinnati, OH 45202, USA",(513) 421-4086,https://www.cincinnatiparks.com/krohn/,Cincinnati +Taft Museum of Art,39.10208799999999,-84.5026948,"316 Pike St, Cincinnati, OH 45202, USA",(513) 241-0343,https://www.taftmuseum.org/,Cincinnati +National Underground Railroad Freedom Center,39.0973901,-84.5112357,"50 E Freedom Way, Cincinnati, OH 45202, USA",(513) 333-7500,http://www.freedomcenter.org/,Cincinnati +Washington Park,39.108929,-84.5172249,"1230 Elm St, Cincinnati, OH 45202, USA",(513) 621-4400,http://washingtonpark.org/features-of-the-park/park-rules/,Cincinnati +Contemporary Arts Center,39.1027951,-84.5120127,"44 E 6th St, Cincinnati, OH 45202, USA",(513) 345-8400,http://contemporaryartscenter.org/,Cincinnati +William Howard Taft National Historic Site,39.119501,-84.5083058,"2038 Auburn Ave, Cincinnati, OH 45219, USA",(513) 684-3262,http://www.nps.gov/wiho/index.htm,Cincinnati +Cincinnati Observatory,39.1391451,-84.4225924,"3489 Observatory Pl, Cincinnati, OH 45208, USA",(513) 321-5186,http://www.cincinnatiobservatory.org/,Cincinnati +American Legacy Tours,39.11061040000001,-84.51523999999999,"1332 Vine St, Cincinnati, OH 45202, USA",(859) 951-8560,https://www.americanlegacytours.com/,Cincinnati +Ault Park,39.1320088,-84.41025560000001,"5090 Observatory Cir, Cincinnati, OH 45208, USA",(513) 357-2604,http://www.aultparkac.org/,Cincinnati +Hippo Cove,39.1451726,-84.5061929,"3489 Dury Ave, Cincinnati, OH 45229, USA",(513) 281-4700,https://cincinnatizoo.org/exhibits/hippo-cove/,Cincinnati +Roo Valley,39.14400399999999,-84.50977300000001,"3438 Vine St, Cincinnati, OH 45220, USA",(513) 281-4700,https://cincinnatizoo.org/,Cincinnati +Cheetah Encounter,39.1438202,-84.5060286,"Dury Ave, Cincinnati, OH 45220, USA",(513) 475-6198,https://cincinnatizoo.org/,Cincinnati +Cincinnati Fire Museum,39.1053621,-84.51963909999999,"315 W Court St, Cincinnati, OH 45202, USA",(513) 621-5553,https://www.cincyfiremuseum.com/,Cincinnati +Coney Island Park,39.05463400000001,-84.4186598,"6201 Kellogg Ave, Cincinnati, OH 45230, USA",(513) 232-8230,https://coneyislandpark.com/,Cincinnati +Newport Aquarium,39.09466400000001,-84.4974482,"1 Levee Wy, Newport, KY 41071, USA",(800) 406-3474,https://www.newportaquarium.com/,Cincinnati +The Strong National Museum of Play,43.1525482,-77.601629,"1 Manhattan Square Dr, Rochester, NY 14607, USA",(585) 263-2700,http://www.museumofplay.org/,Rochester +George Eastman Museum,43.1528123,-77.5802521,"900 East Ave, Rochester, NY 14607, USA",(585) 327-4800,http://eastman.org/,Rochester +RMSC (Rochester Museum & Science Center),43.1524693,-77.5874498,"657 East Ave, Rochester, NY 14607, USA",(585) 271-4320,http://www.rmsc.org/,Rochester +Susan B. Anthony Museum & House,43.1531919,-77.62796349999999,"17 Madison St, Rochester, NY 14608, USA",(585) 235-6124,http://www.susanb.org/,Rochester +Memorial Art Gallery,43.15761089999999,-77.5881793,"500 University Ave, Rochester, NY 14607, USA",(585) 276-8900,http://mag.rochester.edu/,Rochester +High Falls,43.1613269,-77.6135695,"4 Commercial St, Rochester, NY 14614, USA",Unknown,http://www.cityofrochester.gov/,Rochester +Seneca Park Zoo,43.2048845,-77.6238437,"2222 St Paul St, Rochester, NY 14621, USA",(585) 336-7200,https://senecaparkzoo.org/?utm_source=gmb&utm_medium=organic&utm_campaign=GMB_listing,Rochester +Highland Park,43.1302755,-77.6046441,"180 Reservoir Ave, Rochester, NY 14620, USA",(585) 753-7270,https://www.monroecounty.gov/parks-highland,Rochester +RMSC Strasenburgh Planetarium,43.1523189,-77.58685559999999,"663 East Ave, Rochester, NY 14607, USA",(585) 697-1945,http://www.rmsc.org/StrasenburghPlanetarium/,Rochester +Charlotte Genesee Lighthouse,43.25277270000001,-77.61075369999999,"70 Lighthouse St, Rochester, NY 14612, USA",(585) 621-6179,http://www.geneseelighthouse.org/,Rochester +Warner Castle,43.1323337,-77.61180019999999,"5 Castle Park, Rochester, NY 14620, USA",(585) 473-5130,https://www.highlandparkconservancy.org/warner-estate,Rochester +Ontario Beach Park,43.2594928,-77.60694710000001,"50 Beach Ave, Rochester, NY 14612, USA",(585) 753-7275,https://www.cityofrochester.gov/ontariobeachpark/,Rochester +Sunken Garden,43.1324586,-77.6110575,"5 Castle Park, Rochester, NY 14620, USA",(585) 753-7275,Unknown,Rochester +Seabreeze Amusement Park,43.2319762,-77.5423996,"4600 Culver Rd, Rochester, NY 14622, USA",(585) 323-1900,http://www.seabreeze.com/,Rochester +Charlotte Pier,43.2587371,-77.6036805,"1 Beach Ave, Rochester, NY 14612, USA",Unknown,https://www.cityofrochester.gov/ontariobeachpark/,Rochester +Lamberton Conservatory,43.13226390000001,-77.6079111,"180 Reservoir Ave, Rochester, NY 14620, USA",(585) 753-7270,https://www.highlandparkconservancy.org/lamberton-conservatory-botanicals,Rochester +Cobb's Hill Park,43.1423348,-77.5726388,"80 Culver Rd, Rochester, NY 14610, USA",(585) 428-6770,http://www.cityofrochester.gov/article.aspx?id=8589935129,Rochester +Washington Grove,43.1396567,-77.563893,"Rochester, NY 14610, USA",(585) 428-7581,http://www.cityofrochester.gov/cobbshill/,Rochester +Lower Falls Park,43.1786628,-77.6285094,"50 Hastings St, Rochester, NY 14613, USA",(585) 428-6690,https://www.cityofrochester.gov/article.aspx?id=8589954483,Rochester +Durand Eastman Park,43.2393272,-77.5690005,"1200 Kings Hwy N, Rochester, NY 14617, USA",(585) 753-7275,http://www2.monroecounty.gov/parks,Rochester +Golden Gate Bridge,37.8199286,-122.4782551,"Golden Gate Brg, San Francisco, CA, USA",(415) 921-5858,https://www.goldengate.org/,San Francisco +Golden Gate Park,37.7694208,-122.4862138,"San Francisco, CA, USA",(415) 831-2700,https://sfrecpark.org/770/Golden-Gate-Park/,San Francisco +PIER 39,37.808673,-122.409821,"The Embarcadero, San Francisco, CA 94133, USA",(415) 705-5500,https://www.pier39.com/,San Francisco +Coit Tower,37.8023949,-122.4058222,"1 Telegraph Hill Blvd, San Francisco, CA 94133, USA",(415) 249-0995,http://sfrecpark.org/destination/telegraph-hill-pioneer-park/coit-tower/,San Francisco +Union Square,37.7879358,-122.4075139,"San Francisco, CA 94108, USA",(415) 781-7880,https://visitunionsquaresf.com/,San Francisco +Exploratorium,37.8016649,-122.397348,"Pier 15 Embarcadero at, Green St, San Francisco, CA 94111, USA",(415) 528-4444,https://www.exploratorium.edu/,San Francisco +San Francisco Botanical Garden,37.7677096,-122.4693109,"1199 9th Ave, San Francisco, CA 94122, USA",(415) 661-1316,https://www.sfbg.org/,San Francisco +San Francisco Museum of Modern Art,37.7857182,-122.4010508,"151 3rd St, San Francisco, CA 94103, USA",(415) 357-4000,https://www.sfmoma.org/,San Francisco +Fort Point National Historic Site,37.81061169999999,-122.47709,"201 Marine Dr, San Francisco, CA 94129, USA",(415) 504-2334,http://www.nps.gov/fopo/planyourvisit/hours.htm,San Francisco +de Young Museum,37.771469,-122.4686755,"50 Hagiwara Tea Garden Dr, San Francisco, CA 94118, USA",(415) 750-3600,http://deyoung.famsf.org/,San Francisco +Aquarium of the Bay,37.80864869999999,-122.4093299,"PIER 39 The Embarcadero &, Beach St, San Francisco, CA 94133, USA",(415) 623-5300,http://www.aquariumofthebay.org/,San Francisco +California Academy of Sciences,37.76986459999999,-122.4660947,"55 Music Concourse Dr, San Francisco, CA 94118, USA",(415) 379-8000,https://www.calacademy.org/,San Francisco +The Walt Disney Family Museum,37.8013783,-122.4586431,"104 Montgomery St, San Francisco, CA 94129, USA",(415) 345-6800,https://www.waltdisney.org/,San Francisco +Alcatraz Island,37.8269775,-122.4229555,"San Francisco, CA 94133, USA",(415) 561-4900,http://www.nps.gov/alca/index.htm,San Francisco +Twin Peaks,37.7529149,-122.4474131,"501 Twin Peaks Blvd, San Francisco, CA 94114, USA",(415) 831-2700,https://sfrecpark.org/Facilities/Facility/Details/Twin-Peaks-384,San Francisco +Lands End Lookout,37.77972299999999,-122.5115887,"680 Point Lobos Ave, San Francisco, CA 94121, USA",(415) 426-5240,https://store.parksconservancy.org/collections/lands-end,San Francisco +Legion of Honor,37.7844661,-122.5008419,"100 34th Ave, San Francisco, CA 94121, USA",(415) 750-3600,https://legionofhonor.famsf.org/,San Francisco +San Francisco Cable Car Museum,37.7946366,-122.4115074,"1201 Mason St, San Francisco, CA 94108, USA",(415) 474-1887,http://www.cablecarmuseum.org/,San Francisco +San Francisco Maritime National Historical Park,37.806437,-122.4239199,"San Francisco, CA 94109, USA",(415) 447-5000,http://www.nps.gov/safr,San Francisco +Japanese Tea Garden,37.7700913,-122.4704359,"75 Hagiwara Tea Garden Dr, San Francisco, CA 94118, USA",(415) 752-1171,http://japaneseteagardensf.com/,San Francisco +Detroit Institute of Arts,42.3593793,-83.06450099999999,"5200 Woodward Ave, Detroit, MI 48202, USA",(313) 833-7900,https://dia.org/,Detroit +Detroit Historical Museum,42.3597909,-83.0671394,"5401 Woodward Ave, Detroit, MI 48202, USA",(313) 833-1805,http://detroithistorical.org/detroit-historical-museum/plan-your-visit/general-information,Detroit +Campus Martius Park,42.3319145,-83.0465866,"800 Woodward Ave, Detroit, MI 48226, USA",(313) 566-8250,https://downtowndetroitparks.com/parks/campus-martius/,Detroit +Motown Museum,42.3641081,-83.0884008,"2648 Berry Gordy Jr. Boulevard, 2648 W Grand Blvd, Detroit, MI 48208, USA",(313) 875-2264,http://www.motownmuseum.org/,Detroit +Detroit Zoo,42.4768358,-83.14904419999999,"8450 W 10 Mile Rd, Royal Oak, MI 48067, USA",(248) 541-5717,http://detroitzoo.org/,Detroit +Michigan Science Center,42.358451,-83.06239660000001,"5020 John R St, Detroit, MI 48202, USA",(313) 577-8400,http://www.mi-sci.org/,Detroit +Charles H. Wright Museum of African American History,42.358777,-83.0609516,"315 E Warren Ave, Detroit, MI 48201, USA",(313) 494-5800,http://thewright.org/,Detroit +Belle Isle Aquarium,42.3365928,-82.98527539999999,"3 Inselruhe Ave, Detroit, MI 48207, USA",(313) 331-7760,http://www.belleisleconservancy.org/,Detroit +Comerica Park,42.33899840000001,-83.0485197,"2100 Woodward Ave, Detroit, MI 48201, USA",(313) 962-4000,http://detroit.tigers.mlb.com/det/ballpark/index.jsp,Detroit +Museum of Contemporary Art Detroit,42.35358669999999,-83.06184979999999,"4454 Woodward Ave, Detroit, MI 48201, USA",(313) 832-6622,http://mocadetroit.org/,Detroit +Detroit Segway Tours & Rides,42.3491815,-83.0419692,"in the Shipping Container!, 2934 Russell St, Detroit, MI 48207, USA",(855) 873-4929,http://detroitsegway.com/,Detroit +GMRenCen,42.3293284,-83.0397632,"400 Renaissance Center, Detroit, MI 48243, USA",(313) 567-3126,https://gmrencen.com/,Detroit +Detroit Riverfront Conservancy,42.3303575,-83.0378624,"600 Renaissance Center #1720, Detroit, MI 48243, USA",(313) 566-8200,http://www.detroitriverfront.org/,Detroit +Detroit Riverwalk,42.3303761,-83.0318545,"1340 Atwater St, Detroit, MI 48207, USA",(313) 566-8200,http://www.detroitmi.gov/recreation,Detroit +Spirit of Detroit Plaza,42.3291341,-83.04493509999999,"2 Woodward Ave, Detroit, MI 48226, USA",Unknown,https://detroitmi.gov/news/spirit-plaza-official-season-opening-weekend-downtown-detroit,Detroit +Historic Fort Wayne,42.30020189999999,-83.0979698,"6325 W Jefferson Ave, Detroit, MI 48209, USA",(313) 628-0796,http://www.historicfortwaynecoalition.com/,Detroit +Ford Piquette Avenue Plant Museum,42.3686329,-83.0651383,"461 Piquette Ave, Detroit, MI 48202, USA",(313) 872-8759,http://www.fordpiquetteplant.org/,Detroit +Grand Circus Park,42.3364771,-83.0508383,"101-157 Witherell St, Detroit, MI 48226, USA",(313) 566-8250,http://downtowndetroitparks.com/,Detroit +Beacon Park,42.3345254,-83.05530689999999,"1901 Grand River Ave, Detroit, MI 48226, USA",(313) 566-8250,https://empoweringmichigan.com/beacon-park/,Detroit +Henry Ford Museum of American Innovation,42.3034513,-83.23420589999999,"20900 Oakwood Blvd, Dearborn, MI 48124, USA",(313) 982-6001,https://www.thehenryford.org/visit/henry-ford-museum/?utm_source=google&utm_medium=organic&utm_campaign=gmb&utm_content=museum,Detroit +Monterey Bay Aquarium,36.6182017,-121.9019479,"886 Cannery Row, Monterey, CA 93940, USA",(831) 648-4800,https://www.montereybayaquarium.org/,Monterey +Old Fisherman's Wharf,36.60379629999999,-121.8933703,"1 Old Fisherman’s Wharf, Monterey, CA 93940, USA",(831) 238-0777,http://www.montereywharf.com/,Monterey +Dennis The Menace Playground,36.5983372,-121.8861164,"777 Pearl St, Monterey, CA 93940, USA",Unknown,"https://monterey.org/city_hall/parks___recreation/beaches,_parks___playgrounds/specialty_parks/el_estero_park_complex.php",Monterey +Monterey Museum of Art,36.59749959999999,-121.8966213,"559 Pacific St, Monterey, CA 93940, USA",(831) 372-5477,http://www.montereyart.org/,Monterey +McAbee Beach,36.615658,-121.8995004,"1 Hoffman Ave, Monterey, CA 93940, USA",Unknown,Unknown,Monterey +Lovers Point Park,36.6261619,-121.9163682,"631 Ocean View Blvd, Pacific Grove, CA 93950, USA",(831) 375-2345,https://www.cityofpacificgrove.org/living/recreation/parks/lovers-point-park,Monterey +Monterey State Historic Park,36.60257309999999,-121.8941195,"20 Custom House Plaza, Monterey, CA 93940, USA",(831) 649-2907,https://www.parks.ca.gov/?page_id=575,Monterey +Coast Guard Pier,36.6094063,-121.893152,"100 Lighthouse Ave, Monterey, CA 93940, USA",(831) 647-7300,Unknown,Monterey +The Original Monterey Walking Tours - guided tours of historic Monterey and Cannery Row,36.6015038,-121.8940666,"3 Portola Plaza, Monterey, CA 93940, USA",(831) 521-4884,http://www.walkmonterey.com/,Monterey +El Estero Park,36.5977083,-121.8856079,"725 Pearl St, Monterey, CA 93940, USA",(831) 646-3866,http://monterey.org/rec,Monterey +Presidio of Monterey Museum,36.6066848,-121.8970691,"Corporal Ewing Rd, Monterey, CA 93944, USA",(831) 646-3456,https://www.monterey.org/city_facilities/museums/discover_museums/presidio_of_monterey_museum.php,Monterey +Monterey Moon Tree,36.5978337,-121.8969736,"536-570 Pacific St, Monterey, CA 93940, USA",Unknown,Unknown,Monterey +Monterey Mirror Maze,36.61674259999999,-121.9011293,"751 Cannery Row, Monterey, CA 93940, USA",(831) 649-6293,https://montereyfamilyfunadventure.com/,Monterey +Old Monterey Jail,36.597596,-121.8977079,"580 Pacific St, Monterey, CA 93940, USA",(831) 646-5641,https://monterey.org/city_facilities/museums/discover_museums/old_monterey_jail.php,Monterey +Cannery Row,36.6162117,-121.9004171,"700 Cannery Row, Monterey, CA 93940, USA",(831) 649-6690,http://canneryrow.com/,Monterey +The Stevenson House,36.5973186,-121.8934592,"530 Houston St, Monterey, CA 93940, USA",Unknown,Unknown,Monterey +San Carlos Beach Park,36.6105695,-121.8967636,"100 Reeside Ave, Monterey, CA 93940, USA",(831) 646-3866,http://monterey.org/rec,Monterey +Monterey County Youth Museum,36.5991473,-121.8923441,"425 Washington St, Monterey, CA 93940, USA",(831) 649-6444,http://www.mymuseum.org/,Monterey +Monterey Bay Aquarium,36.6177149,-121.9012821,"886 Cannery Row, Monterey, CA 93940, USA",Unknown,Unknown,Monterey +Monterey Sea Lions,36.6032907,-121.8930702,"1 Custom House Plaza, Monterey, CA 93940, USA",Unknown,Unknown,Monterey +Ludington Park,45.7400155,-87.0531961,"Lake Shore Dr, Escanaba, MI 49829, USA",(906) 789-7862,Unknown,Escanaba +Walk of Planets,45.7458391,-87.0531785,"400-498 Ludington St, Escanaba, MI 49829, USA",Unknown,Unknown,Escanaba +Delta County Historical Society,45.7446296,-87.04348879999999,"16 Water Plant Rd, Escanaba, MI 49829, USA",(906) 789-6790,http://deltahistorical.org/,Escanaba +UPutt Family Fun Center,45.7817502,-87.08400689999999,"2805 N Lincoln Rd, Escanaba, MI 49829, USA",(906) 233-7733,https://uputtfamilyfuncenter.com/,Escanaba +Antique Village,45.7573705,-87.0791703,"2401 9th Ave N, Escanaba, MI 49829, USA",Unknown,https://www.upsteamandgasengine.org/heritage-village/,Escanaba +William Bonifas Fine Arts Center,45.744953,-87.057107,"700 1st Ave S, Escanaba, MI 49829, USA",(906) 786-3833,https://www.bonifasarts.org/,Escanaba +John D. Besse Park,45.7357185,-87.0894162,"PWP6+788, 1110 30th St S, Escanaba, MI 49829, USA",(906) 786-9402,http://www.escanaba.org/,Escanaba +Leigh’s Garden Winery,45.7458869,-87.0600903,"904 Ludington St, Escanaba, MI 49829, USA",(906) 553-7799,https://www.leighsgarden.com/,Escanaba +Escanaba Parks & Recreation,45.7476339,-87.0778577,"225 N 21st St, Escanaba, MI 49829, USA",(906) 786-4141,https://www.escanaba.org/parksrec,Escanaba +Upper Peninsula Pocket Park,45.7612384,-87.08064329999999,"2401 12th Ave N, Escanaba, MI 49829, USA",(906) 786-2351,https://goexploremichigan.com/explore/dnr-pocket-park/,Escanaba +Escanaba Municipal Beach,45.7389496,-87.0468976,"Bath House Rd, Escanaba, MI 49829, USA",(906) 786-8709,https://visitescanaba.com/things-to-see-and-do/experience-nature/beaches,Escanaba +Webster Marble Inventing the Outdoors Museum,45.75796889999999,-87.0774765,"1001 N Lincoln Rd, Escanaba, MI 49829, USA",Unknown,http://deltami.org/,Escanaba +Aronson Island,45.7405863,-87.0449086,"Bath House Rd, Escanaba, MI 49829, USA",Unknown,Unknown,Escanaba +Escanaba Welcome Sign,45.7731958,-87.082883,"Escanaba, MI 49829, USA",Unknown,Unknown,Escanaba +Chippewa Valley Museum,44.81147240000001,-91.5176097,"1204 E Half Moon Dr, Eau Claire, WI 54703, USA",(715) 834-7871,http://www.cvmuseum.com/,Eau Claire +Children’s Museum of Eau Claire,44.81422179999999,-91.5021358,"126 N Barstow St, Eau Claire, WI 54703, USA",(715) 832-5437,http://www.childrensmuseumec.com/,Eau Claire +Carson Park,44.8080316,-91.5222647,"100 Carson Park Dr, Eau Claire, WI 54703, USA",(715) 839-5039,Unknown,Eau Claire +Chaos Water Park,44.7646367,-91.4650513,"5152 Fairview Dr, Eau Claire, WI 54701, USA",(844) 855-2724,https://www.metropolisresort.com/resort/chaos-water-park,Eau Claire +Phoenix Park,44.8130493,-91.5041659,"330 Riverfront Terrace, Eau Claire, WI 54703, USA",(715) 839-5032,https://www.visiteauclaire.com/listing/phoenix-park/1898/,Eau Claire +Action City,44.76413770000001,-91.4664782,"2402 Lorch Ave, Eau Claire, WI 54701, USA",(715) 710-2259,https://www.metropolisresort.com/resort/action-city,Eau Claire +Mount Simon Park,44.8303583,-91.5024841,"1100 Addison Ave, Eau Claire, WI 54703, USA",(715) 839-5032,Unknown,Eau Claire +Lowes Creek County Park,44.7553048,-91.468953,"5238 S Lowes Creek Rd, Eau Claire, WI 54701, USA",(715) 839-4783,https://www.co.eau-claire.wi.us/our-government/departments-and-facilities/department-directory/parks-forest/parks/lowes-creek-county-park,Eau Claire +Boyd Park,44.8129248,-91.4857721,"1202 Fairway St, Eau Claire, WI 54701, USA",(715) 839-5039,http://www.visiteauclaire.com/listings/boyd-park/1845/,Eau Claire +Ager House,44.8158429,-91.5142853,"514 W Madison St, Eau Claire, WI 54703, USA",(715) 834-5204,https://agerhouse.org/visit-the-ager-house,Eau Claire +“INGRAIN” in Sculpture Tour,44.812358,-91.5034707,"200 Riverfront Terrace, Eau Claire, WI 54703, USA",Unknown,Unknown,Eau Claire +Chippewa River Trailhead,44.8133881,-91.5041251,"Phoenix Park, 330 Riverfront Terrace, Eau Claire, WI 54703, USA",Unknown,Unknown,Eau Claire +Putnam Park,44.7967835,-91.482683,"Putnam Dr, Eau Claire, WI 54701, USA",(888) 936-7463,Unknown,Eau Claire +Wisconsin Logging Museum,44.810422,-91.517901,"1110 E Half Moon Dr, Eau Claire, WI 54703, USA",(715) 835-6200,http://www.wisconsinlogging.org/,Eau Claire +Big Falls County Park,44.8209711,-91.293384,"600 Big Falls Forest Rd, Eau Claire, WI 54703, USA",(715) 839-4783,https://www.eauclairecounty.gov/our-government/departments-and-facilities/department-directory/parks-forest/parks/big-falls-county-park,Eau Claire +Domer Park,44.8360065,-91.5096934,"3537 Old Wells Rd, Eau Claire, WI 54703, USA",(715) 839-5039,Unknown,Eau Claire +Eau Claire Tours,44.81046689999999,-91.5006656,"110 E Grand Ave, Eau Claire, WI 54701, USA",(715) 492-5138,http://eauclairetours.com/,Eau Claire diff --git a/database/background/attractions.csv b/database/background/attractions.csv new file mode 100644 index 0000000000000000000000000000000000000000..cab2f5038c614425986bdda576706940f0d1f8a9 --- /dev/null +++ b/database/background/attractions.csv @@ -0,0 +1,5532 @@ +Name,Address,Phone,Website,Latitude,Longitude,City +Cabrillo National Monument,"1800 Cabrillo Memorial Dr, San Diego, CA 92106, USA",(619) 523-4285,https://www.nps.gov/cabr/index.htm,32.6722558,-117.2416094,San Diego +SeaWorld San Diego,"500 Sea World Dr., San Diego, CA 92109, USA",(619) 222-4732,https://seaworld.com/san-diego?utm_source=google&utm_medium=organic&utm_campaign=gbp_listing,32.7642958,-117.2264396,San Diego +California Tower,"California Tower, 1350 El Prado, San Diego, CA 92101, USA",(619) 239-2001,https://museumofus.org/exhibits/california-tower/,32.7316093,-117.1521668,San Diego +Old Town San Diego,"2829 Juan St, San Diego, CA 92110, USA",Unknown,https://www.oldtownsandiego.org/,32.7558268,-117.1972614,San Diego +Balboa Park,"San Diego, CA, USA",(619) 239-0512,http://www.balboapark.org/,32.7341479,-117.144553,San Diego +Seaport Village,"849 W Harbor Dr, San Diego, CA 92101, USA",(619) 530-0704,https://seaportvillage.com/,32.7090645,-117.1709366,San Diego +The San Diego Museum of Art,"1450 El Prado, San Diego, CA 92102, USA",(619) 232-7931,https://www.sdmart.org/,32.732158,-117.15043,San Diego +USS Midway Museum,"910 N Harbor Dr, San Diego, CA 92101, USA",(619) 544-9600,https://www.midway.org/,32.71373979999999,-117.1751265,San Diego +Skytower,"500 Sea World Dr., San Diego, CA 92109, USA",Unknown,Unknown,32.7654226,-117.2266623,San Diego +San Diego Zoo,"2920 Zoo Dr, San Diego, CA 92101, USA",(619) 231-1515,https://zoo.sandiegozoo.org/,32.7360353,-117.1509849,San Diego +Dolphin Point,"500 Sea World Dr., San Diego, CA 92109, USA",(915) 525-4772,Unknown,32.76538969999999,-117.2274121,San Diego +La Jolla Shores Park,"8300 Camino Del Oro, La Jolla, CA 92037, USA",(619) 221-8899,https://www.sandiego.gov/lifeguards/beaches/shores,32.8581537,-117.2561029,San Diego +Mission Bay Park,"San Diego, CA 92109, USA",(619) 525-8213,https://www.sandiego.gov/locations/seaworld-san-diego,32.7641067,-117.2262649,San Diego +Sunset Cliffs Natural Park,"Ladera St, San Diego, CA 92107, USA",(619) 525-8213,https://www.sandiego.gov/park-and-recreation/parks/regional/shoreline/sunset,32.715915,-117.2551679,San Diego +Whaley House Museum,"2476 San Diego Ave, San Diego, CA 92110, USA",(619) 786-1143,https://www.whaleyhousesandiego.com/,32.7529044,-117.1945102,San Diego +Old Town San Diego State Park,"4002 Wallace St, San Diego, CA 92110, USA",(619) 220-5422,http://www.parks.ca.gov/?page_id=663,32.7549063,-117.1976407,San Diego +Martin Luther King Jr Promenade,"326 W Harbor Dr, San Diego, CA 92101, USA",(619) 525-8213,https://www.sandiego.gov/park-and-recreation/parks,32.7083575,-117.1619929,San Diego +Balboa Park Carousel,"1889 Zoo Pl, San Diego, CA 92101, USA",(619) 232-2282,http://balboaparkcarousel.org/,32.7345758,-117.1467066,San Diego +San Diego Free Tour,"200 Fifth Ave, San Diego, CA 92101, USA",(415) 503-7199,https://freesftour.com/,32.70758560000001,-117.1602869,San Diego +Mission Beach Boardwalk | Ocean Front Walk,"W Mission Bay Dr, San Diego, CA 92109, USA",(619) 232-3101,https://www.sandiego.gov/,32.7714323,-117.2528308,San Diego +Philip J. Braun Nature Preserve,"Mill St, Pellston, MI 49769, USA",(231) 347-0991,https://landtrust.org/explore/philip-j-braun-nature-preserve-north/,45.55068199999999,-84.79797429999999,Pellston +Pellston Historical Society Museum,"Petoskey to Mackinaw Trail, Pellston, MI 49769, USA",Unknown,https://www.facebook.com/pellstondepot/,45.5527329,-84.7847187,Pellston +Pellston Pioneer Park,"H627+88X, 100 Bud Carter Tr, Pellston, MI 49769, USA",(231) 539-2616,http://www.pellstonmi.com/,45.5494035,-84.78808509999999,Pellston +Headlands International Dark Sky Park,"15675 Headlands Rd, Mackinaw City, MI 49701, USA",(231) 427-1001,http://www.midarkskypark.org/,45.7754705,-84.7811722,Pellston +Oden Island Nature Preserve,"3160 Leeward Dr, Petoskey, MI 49770, USA",(231) 347-0991,http://landtrust.org/,45.414935,-84.81604999999999,Pellston +Douglas Lake trail,"8100-8998 County Rd 64, Pellston, MI 49769, USA",Unknown,Unknown,45.55574959999999,-84.6870143,Pellston +Artesian Well,"7164 US-31, Alanson, MI 49706, USA",Unknown,Unknown,45.44739999999999,-84.7853756,Pellston +"Mystery Town, USA","200 S Nicolet St, Mackinaw City, MI 49701, USA",(231) 427-7030,http://www.mysterytownusa.com/,45.7794809,-84.73282689999999,Pellston +Chaboiganing Nature Preserve,"10240 Brutus Rd, Brutus, MI 49716, USA",(231) 347-0991,https://landtrust.org/,45.4882443,-84.691878,Pellston +Sanctuary Park,"6265 East St, Alanson, MI 49706, USA",Unknown,Unknown,45.4419478,-84.7864106,Pellston +Jack Pine Lumberjack Shows,"10510 US-23, Mackinaw City, MI 49701, USA",(231) 436-5225,Unknown,45.7580002,-84.70217749999999,Pellston +Pioneer Picnic Park,"Latocha Dr, Pellston, MI 49769, USA",Unknown,Unknown,45.6108844,-84.930399,Pellston +Lossing-Harrington Nature Preserve,"Lake St, Alanson, MI 49706, USA",(231) 347-0991,https://landtrust.org/,45.4370491,-84.79148289999999,Pellston +Waldron Fen Nature Preserve,"Miller Rd, Alanson, MI 49706, USA",(231) 347-0991,http://landtrust.org/,45.4158419,-84.7494602,Pellston +Cheboygan Crib Light,"Cheboygan, MI 49721, USA",Unknown,Unknown,45.6562158,-84.4655648,Pellston +Wilderness State Park,"903 Wilderness Park Dr, Carp Lake, MI 49718, USA",(231) 436-5381,https://www2.dnr.state.mi.us/parksandtrails/Details.aspx?id=509&type=SPRK,45.7390953,-84.9220769,Pellston +Conkling Heritage Park,"335 S Huron Ave, Mackinaw City, MI 49701, USA",(888) 455-8100,http://www.mackinawcity.com/,45.77852499999999,-84.72532319999999,Pellston +Black Hole Nature Preserve,"Channel Rd, Alanson, MI 49706, USA",(231) 347-0991,http://landtrust.org/,45.4177278,-84.78335589999999,Pellston +O'Neal Lake,"Carp Lake, MI 49718, USA",Unknown,Unknown,45.71228379999999,-84.9033841,Pellston +Kreag Nature Preserve,"8011 US-31, Alanson, MI 49706, USA",(231) 347-0991,https://landtrust.org/,45.4341543,-84.79267980000002,Pellston +The Buffalo Zoo,"300 Parkside Ave, Buffalo, NY 14214, USA",(716) 837-3900,http://www.buffalozoo.org/,42.9371231,-78.85160909999999,Buffalo +Buffalo and Erie County Botanical Gardens,"2655 South Park Ave, Buffalo, NY 14218, USA",(716) 827-1584,https://www.buffalogardens.com/,42.827864,-78.823995,Buffalo +Buffalo AKG Art Museum,"1285 Elmwood Ave, Buffalo, NY 14222, USA",(716) 882-8700,https://buffaloakg.org/,42.93245,-78.875618,Buffalo +Canalside,"44 Prime St, Buffalo, NY 14202, USA",Unknown,http://www.buffalowaterfront.com/,42.8769278,-78.8793944,Buffalo +Theodore Roosevelt Inaugural National Historic Site,"641 Delaware Ave, Buffalo, NY 14202, USA",(716) 884-0095,http://trsite.org/,42.9014678,-78.8724841,Buffalo +Buffalo Naval Park,"1 Naval, Marina Park S, Buffalo, NY 14202, USA",(716) 847-1773,http://buffalonavalpark.org/,42.8774855,-78.8795859,Buffalo +Buffalo Museum of Science,"1020 Humboldt Pkwy, Buffalo, NY 14211, USA",(716) 896-5200,https://www.sciencebuff.org/,42.9061321,-78.8436047,Buffalo +Delaware Park,"84 Parkside Ave, Buffalo, NY 14214, USA",(716) 838-1249,http://www.bfloparks.org/index.php/parks/delaware,42.9326617,-78.8527295,Buffalo +Lafayette Square,"415 Main St, Buffalo, NY 14203, USA",(716) 851-5553,Unknown,42.8856691,-78.87384829999999,Buffalo +Buffalo Harbor State Park,"1111 Fuhrmann Boulevard, Buffalo, NY 14203, USA",(716) 822-1207,https://parks.ny.gov/parks/buffaloharbor/details.aspx,42.8510464,-78.8645251,Buffalo +Frank Lloyd Wright's Martin House,"125 Jewett Pkwy, Buffalo, NY 14214, USA",(716) 856-3858,https://martinhouse.org/,42.9362328,-78.84799,Buffalo +Buffalo Heritage Carousel,"44 Prime St, Buffalo, NY 14202, USA",(716) 493-2110,https://www.buffaloheritagecarousel.org/,42.87554550000001,-78.87837309999999,Buffalo +Buffalo Bricks,"Main St, Buffalo, NY 14204, USA",(716) 854-2314,http://www.workingfordowntown.org/,42.87419309999999,-78.8776256,Buffalo +Michigan Street African American,"Michigan Ave, Buffalo, NY 14203, USA",(716) 322-1002,http://www.michiganstreetbuffalo.org/,42.8868801,-78.86809679999999,Buffalo +Tifft Nature Preserve,"1200 Fuhrmann Boulevard, Buffalo, NY 14203, USA",(716) 825-6397,https://www.tifft.org/,42.8461684,-78.85945939999999,Buffalo +Iron Island Museum,"998 E Lovejoy St, Buffalo, NY 14206, USA",(716) 892-3084,http://www.ironislandmuseum.com/,42.8900415,-78.8114399,Buffalo +Buffalo Main Light,"1 Fuhrmann Boulevard, Buffalo, NY 14203, USA",(716) 264-1707,https://www.facebook.com/Buffalo-Lighthouse-245535252134529/,42.8778401,-78.8894968,Buffalo +The Electric Tower,"535 Washington St, Buffalo, NY 14203, USA",(716) 633-2096,http://www.electrictower.com/,42.88868,-78.8721146,Buffalo +The Buffalo History Museum,"1 Museum Ct, Buffalo, NY 14216, USA",(716) 873-9644,http://www.buffalohistory.org/,42.9354287,-78.8762911,Buffalo +Buffalo City Hall,"65 Niagara Square, Buffalo, NY 14202, USA",(716) 851-4890,http://www.buffalony.gov/,42.8866194,-78.879325,Buffalo +Fort Christian,"St. Thomas, Forts Straede, Charlotte Amalie, St Thomas 00802, USVI",(340) 714-3678,http://www.nps.gov/nr/travel/prvi/pr29.htm,18.3405796,-64.9297139,Charlotte Amalie +Skyride to Paradise Point,"9617 Estate Thomas Charlotte Amalie, Estate Thomas, St Thomas 00802, USVI",(340) 774-9809,https://www.paradisepointvi.com/,18.3338809,-64.9186206,Charlotte Amalie +Charlotte Amalie Overlook,"932G+48F, Hospital Ground, St Thomas 00802, USVI",Unknown,Unknown,18.3503167,-64.92421430000002,Charlotte Amalie +99 Steps,"St Thomas, Charlotte Amalie, St Thomas 00801, USVI",Unknown,Unknown,18.3424668,-64.9301286,Charlotte Amalie +Three Queens Statue,"83VC+945 St Thomas, Dronningens Gade East, Charlotte Amalie, St Thomas 00802, USVI",(340) 775-1444,https://www.visitusvi.com/,18.3433907,-64.9296461,Charlotte Amalie +Emancipation Garden,"83R9+FV7, ST THOMAS, St Thomas 00803, USVI",Unknown,Unknown,18.3411557,-64.93034349999999,Charlotte Amalie +Drake's Seat,"933F+44Q, Rte 37, St. Thomas, St Thomas 00802, USVI",Unknown,http://www.vinow.com/stt/stt-a/general/drakes-seat/,18.35283,-64.9271286,Charlotte Amalie +Statue of President Franklin D. Roosevelt,"43-46 Norre Gade, Charlotte Amalie, St Thomas 00802, USVI",Unknown,Unknown,18.3418023,-64.9280383,Charlotte Amalie +St Thomas,"83XC+96H, Charlotte Amalie, St Thomas 00802, USVI",Unknown,Unknown,18.3484369,-64.9294034,Charlotte Amalie +Charlotte Amalie Historic District,"St. Thomas, Tolbod Pldn, Charlotte Amalie, St Thomas 00802, USVI",Unknown,Unknown,18.3421059,-64.9307583,Charlotte Amalie +Pirates Treasure Museum,"17-1 Estate Thomas St. Thomas Virgin Islands VI, Estate Thomas, St Thomas 00802, USVI",(340) 775-9575,https://piratemuseumstthomas.com/,18.3335829,-64.918717,Charlotte Amalie +French Heritage Museum,"83Q5+298, St Thomas, 00802, USVI",(340) 714-2583,https://www.frenchheritagemuseumvi.org/,18.3375442,-64.9415468,Charlotte Amalie +Paradise Point Lookout,"83JP+88P, Estate Thomas, St Thomas 00802, USVI",Unknown,Unknown,18.3308453,-64.9141867,Charlotte Amalie +The Little Mermaid Statue,"83JH+WFJ, Estate Thomas, St Thomas 00802, USVI",Unknown,https://mermaidsofearth.com/mermaid-statues-mermaid-sculptures/public/the-little-mermaid-statue-in-charlotte-amalie,18.3323283,-64.9213695,Charlotte Amalie +Coral World Ocean Park,"6450 Coki Point, St Thomas, Virgin Islands 00802, USVI",(340) 775-1555,http://www.coralworldvi.com/,18.349389,-64.86359999999999,Charlotte Amalie +The Virgin Islands Children's Museum,"Buccaneer Mall, Rte 30, St. Thomas, St Thomas 00802, USVI",(340) 643-0366,http://www.vichildrensmuseum.org/,18.3334418,-64.9189184,Charlotte Amalie +St Thomas USVI,"84Q4+69J, Anna's Retreat, St Thomas 00802, USVI",Unknown,Unknown,18.3380965,-64.8940946,Charlotte Amalie +Cruise Ship Excursions,"Suite 315 Building 3 Havensight Mall U.S., Charlotte Amalie, St Thomas 00802, USVI",(340) 775-5055,https://stthomascruiseexcursions.com/excursions/kayak-snorkeling-eco-tour/,18.3315209,-64.9210614,Charlotte Amalie +Tree of Lost Soles,"St Thomas, Charlotte Amalie West, St Thomas 00802, USVI",Unknown,Unknown,18.31788,-64.9516711,Charlotte Amalie +St Thomas Historical Trust Museum,"St. Thomas, 5332 Raadets Gade, Charlotte Amalie, St Thomas 00804, USVI",(340) 774-5541,http://stthomashistoricaltrust.org/,18.3407882,-64.932093,Charlotte Amalie +Riordan Mansion State Historic Park,"409 W Riordan Rd, Flagstaff, AZ 86001, USA",(928) 779-4395,https://azstateparks.com/riordan-mansion/,35.1877188,-111.6582426,Flagstaff +Lowell Observatory,"1400 W Mars Hill Rd, Flagstaff, AZ 86001, USA",(928) 774-3358,https://lowell.edu/welcomeback,35.2028951,-111.6646428,Flagstaff +Museum of Northern Arizona,"3101 N Fort Valley Rd, Flagstaff, AZ 86001, USA",(928) 774-5213,https://musnaz.org/,35.234499,-111.66562,Flagstaff +Downtown Flagstaff,"6 E Aspen Ave # 200, Flagstaff, AZ 86001, USA",(928) 275-2655,https://downtownflagstaff.org/,35.1987337,-111.6483259,Flagstaff +Buffalo Park,"2400 N Gemini Rd, Flagstaff, AZ 86004, USA",(928) 213-2300,https://www.flagstaff.az.gov/1923/City-Parks-Ramadas,35.2185163,-111.6329976,Flagstaff +Flagstaff Area National Monuments,"6400 US-89, Flagstaff, AZ 86004, USA",(928) 526-1157,https://www.nps.gov/waca/learn/management/flag_parks.htm,35.239009,-111.570669,Flagstaff +Picture Canyon Natural and Cultural Preserve,"3920 N El Paso Flagstaff Rd, Flagstaff, AZ 86004, USA",(928) 213-2154,https://www.flagstaff.az.gov/2881/Picture-Canyon-Natural-Cultural-Preserve,35.2306208,-111.5499975,Flagstaff +The Arboretum at Flagstaff,"4001 S Woody Mountain Rd, Flagstaff, AZ 86005, USA",(928) 774-1442,http://www.thearb.org/,35.1599444,-111.7318828,Flagstaff +Wheeler Park,"212 W Aspen Ave, Flagstaff, AZ 86001, USA",(928) 213-2300,http://www.flagstaff.az.gov/index.aspx?NID=1923,35.1999797,-111.6511748,Flagstaff +Walnut Canyon National Monument,"Arizona, USA",(928) 526-3367,https://www.nps.gov/waca/index.htm,35.1690189,-111.5043369,Flagstaff +Mountain lion sculpture,"1520 S Riordan Ranch St, Flagstaff, AZ 86001, USA",Unknown,Unknown,35.1858928,-111.6593893,Flagstaff +Flagstaff Visitor Center,"1 E Rte 66, Flagstaff, AZ 86001, USA",(928) 213-2951,http://www.flagstaffarizona.org/,35.1973546,-111.649203,Flagstaff +Bushmaster Park,"3150 N Alta Vista Dr, Flagstaff, AZ 86004, USA",(928) 779-7960,http://flagstaff.az.gov/,35.2170284,-111.602725,Flagstaff +Flagstaff Community Labyrinth,"136 E Paseo del Rio, Flagstaff, AZ 86001, USA",Unknown,http://flagstafflabyrinth.com/,35.187569,-111.6452524,Flagstaff +Fort Tuthill Military History Museum,"2446 Ft Tuthill Lp, Flagstaff, AZ 86001, USA",(928) 226-0965,http://www.forttuthill.org/,35.14125010000001,-111.6927984,Flagstaff +Fatman's Loop Trail,"5098 US-89, Flagstaff, AZ 86004, USA",Unknown,https://www.fs.usda.gov/recarea/coconino/recarea/?recid=55094,35.23007639999999,-111.5792996,Flagstaff +Flagstaff Extreme Adventure Course,"Fort Tuthill County Park, 2446 Ft Tuthill Lp, Flagstaff, AZ 86005, USA",(888) 259-0125,http://www.flagstaffextreme.com/,35.1427566,-111.6930081,Flagstaff +Arizona Snowbowl,"9300 N Snow Bowl Rd, Flagstaff, AZ 86001, USA",(928) 447-9928,http://www.snowbowl.ski/,35.33071089999999,-111.7058368,Flagstaff +Pioneer Museum--Arizona Historical Society,"2340 N Fort Valley Rd, Flagstaff, AZ 86001, USA",(928) 774-6272,https://arizonahistoricalsociety.org/museum/pioneer-museum/,35.223814,-111.655126,Flagstaff +Original Flagstaff Replica,"1642-1778 N Thorpe Rd, Flagstaff, AZ 86001, USA",Unknown,Unknown,35.2078454,-111.6542807,Flagstaff +Mesker Park Zoo,"1545 Mesker Park Dr, Evansville, IN 47720, USA",(812) 435-6143,http://www.meskerparkzoo.com/,37.99685230000001,-87.6059008,Evansville +Children's Museum of Evansville,"22 SE 5th St, Evansville, IN 47708, USA",(812) 643-2663,http://www.cmoekids.org/,37.97161699999999,-87.56926399999999,Evansville +Garvin Park,"Evansville, IN 47710, USA",(812) 435-6141,https://www.visitevansville.com/attractions/garvin-park,37.9943957,-87.56379129999999,Evansville +Burdette Park,"5301 Nurrenbern Rd, Evansville, IN 47712, USA",(812) 435-5602,http://www.burdettepark.org/,37.942692,-87.64021029999999,Evansville +Angel Mounds State Historic Site,"8215 Pollack Ave, Evansville, IN 47715, USA",(812) 853-3956,https://www.indianamuseum.org/angel-mounds-state-historic-site,37.94518589999999,-87.4518865,Evansville +Evansville African American Museum,"579 S Garvin St, Evansville, IN 47713, USA",(812) 423-5188,https://www.evvaam.org/,37.9705531,-87.5567485,Evansville +USS LST-325,"610 NW Riverside Dr, Evansville, IN 47708, USA",(812) 435-8678,http://www.lstmemorial.org/,37.9729601,-87.58019879999999,Evansville +Reitz Home Museum,"112 Chestnut St, Evansville, IN 47713, USA",(812) 426-1871,http://www.reitzhome.com/,37.9678221,-87.5719714,Evansville +Evansville Museum,"411 SE Riverside Dr, Evansville, IN 47713, USA",(812) 425-2406,https://evansvillemuseum.org/,37.9650887,-87.57284109999999,Evansville +Evansville Wartime Museum,"7503 Petersburg Rd, Evansville, IN 47725, USA",(812) 424-7461,http://evansvillewartimemuseum.org/,38.04158400000001,-87.53729,Evansville +Four Freedoms Monument,"201 SE Riverside Dr, Evansville, IN 47713, USA",Unknown,Unknown,37.9670642,-87.5741974,Evansville +Chandelier Tree,"130 Main St, Evansville, IN 47708, USA",(812) 492-4536,http://downtownevansville.com/,37.970539,-87.57361,Evansville +Self.e Alley (Evansville Mural Art),"318 Main St, Evansville, IN 47708, USA",Unknown,https://self-e-alley.business.site/?utm_source=gmb&utm_medium=referral,37.9714073,-87.5716813,Evansville +Howell Wetlands,"1400 S Tekoppel Ave, Evansville, IN 47712, USA",(812) 479-0771,https://wesselmanwoods.org/howellwetlands,37.9616589,-87.6184237,Evansville +Mickey's Kingdom Park,"Downtown, Riverfront, Evansville, IN 47713, USA",(812) 435-6141,Unknown,37.96296460000001,-87.5727648,Evansville +Diamond Valley Park,"1100 Fulton Pkwy, Evansville, IN 47710, USA",(812) 435-6141,http://www.vanderburghgov.org/egov/apps/locations/facilities.egov?view=detail&id=79,38.0040517,-87.5793386,Evansville +Evansville Arch,"2 Main St, Evansville, IN 47708, USA",Unknown,Unknown,37.9705671,-87.57313359999999,Evansville +Howell Park,"1101 S Barker Ave, Evansville, IN 47712, USA",(812) 435-6141,Unknown,37.9648181,-87.6103175,Evansville +Wesselman Woods,"551 N Boeke Rd, Evansville, IN 47711, USA",(812) 479-0771,http://www.wesselmanwoods.org/,37.9828856,-87.516741,Evansville +Wesselman Woods Nature Center,"Evansville, IN 47711, USA",(812) 479-0771,https://wesselmanwoods.org/,37.9845109,-87.5117013,Evansville +Panaewa Rainforest Zoo and Gardens,"800 Stainback Hwy, Hilo, HI 96720, USA",(808) 959-7224,http://hilozoo.org/,19.6542357,-155.0727822,Hilo +Liliʻuokalani Gardens,"189 Lihiwai St #151, Hilo, HI 96720, USA",Unknown,Unknown,19.726372,-155.068079,Hilo +Richardson Ocean Park,"2355 Kalanianaole St, Hilo, HI 96720, USA",(808) 961-8688,https://hawaiibeachsafety.com/big-island/richardson-ocean-park,19.735784,-155.013314,Hilo +Lyman Museum,"276 Haili St, Hilo, HI 96720, USA",(808) 935-5021,http://www.lymanmuseum.org/,19.7221983,-155.0906609,Hilo +Mokupāpapa Discovery Center,"76 Kamehameha Ave, Hilo, HI 96720, USA",(808) 498-4709,http://www.papahanaumokuakea.gov/education/center.html,19.7267489,-155.0870462,Hilo +Rainbow Falls,"Hilo, HI 96720, USA",Unknown,https://dlnr.hawaii.gov/dsp/parks/hawaii/wailuku-river-state-park/,19.7187908,-155.1085958,Hilo +Gilbert Carvalho Park,"850 Waianuenue Ave, Hilo, HI 96720, USA",(808) 961-8737,http://www.hawaiicounty.gov/,19.71847379999999,-155.1043089,Hilo +Reeds Bay Beach Park,"225 Banyan Dr, Hilo, HI 96720, USA",(808) 961-8311,Unknown,19.7264295,-155.0631119,Hilo +Wailoa River State Recreation Area,"799 Piilani St, Hilo, HI 96720, USA",(808) 961-9540,http://dlnr.hawaii.gov/dsp/parks/hawaii/wailoa-river-state-recreation-area/,19.7164465,-155.0730805,Hilo +Wailuku River State Park,"2-198 Rainbow Dr, Hilo, HI 96720, USA",(808) 961-9540,http://dlnr.hawaii.gov/dsp/parks/hawaii/wailuku-river-state-park/,19.7187242,-155.1085773,Hilo +Kuhio Kalanianaole Park,"Kalanianaole St, Hilo, HI 96720, USA",(808) 961-8311,Unknown,19.7249023,-155.0608665,Hilo +Kamehameha The Great,"774 Kamehameha Ave, Hilo, HI 96720, USA",Unknown,https://dlnr.hawaii.gov/dsp/parks/hawaii/wailoa-river-state-recreation-area/,19.7209657,-155.076765,Hilo +Boiling Pots,"1766 Wailuku Dr, Hilo, HI 96720, USA",Unknown,http://dlnr.hawaii.gov/dsp/parks/hawaii/wailuku-river-state-park/,19.71498189999999,-155.1312219,Hilo +Leleiwi Beach Park (Wai’uli),"2246 Kalanianaole St, Hilo, HI 96720, USA",Unknown,Unknown,19.734024,-155.0162401,Hilo +Keaukaha Beach Park,"27 Apapane Rd, Hilo, HI 96720, USA",(808) 961-8311,Unknown,19.7318433,-155.0461397,Hilo +Lehia Beach Park,"2499 Kalanianaole St, Hilo, HI 96720, USA",(808) 961-8311,https://lookintohawaii.com/hawaii/32700/lehia-beach-park-beach-big-island-hilo-hi,19.7347014,-155.0080829,Hilo +Carlsmith Beach Park,"1815 Kalanianaole St, Hilo, HI 96720, USA",(808) 961-8311,http://hawaiibeachsafety.com/big-island/carlsmith-beach-park,19.7336174,-155.0277389,Hilo +Out-Lau Island Tours,"Hilo, HI 96720, USA",Unknown,Unknown,19.7245545,-155.0845267,Hilo +Imiloa Astronomy Center,"600 Imiloa Pl, Hilo, HI 96720, USA",(808) 932-8901,http://www.imiloahawaii.org/,19.7011173,-155.0886773,Hilo +Wai'olena Beach Park,"2151 Kalanianaole St, Hilo, HI 96720, USA",(808) 961-8311,https://lookintohawaii.com/hawaii/32697/waiolena-beach-park-beach-big-island-hilo-hi,19.7326887,-155.0185654,Hilo +Evel Knievel Snake River Canyon Jump Site,"Twin Falls, ID 83301, USA",Unknown,Unknown,42.5970726,-114.4228668,Twin Falls +Twin Falls City Park,"400 Shoshone St E, Twin Falls, ID 83301, USA",(208) 736-2265,https://www.tfid.org/facilities/facility/details/City-Park-10,42.5581708,-114.4659443,Twin Falls +Bridge View Point,"2082 Bridgeview Blvd, Twin Falls, ID 83301, USA",Unknown,Unknown,42.5980236,-114.4525231,Twin Falls +Centennial Waterfront Park,"Canyon Springs Rd, Twin Falls, ID 83301, USA",(208) 734-9491,Unknown,42.5995599,-114.4685312,Twin Falls +Snake River Canyon Rim Trail,"Washington St N, Twin Falls, ID 83301, USA",(208) 736-2265,http://www.visitidaho.org/attraction/outdoor-recreation/snake-river-canyon-rim-trails/,42.59907399999999,-114.4792939,Twin Falls +Faulkner Planetarium,"315 Falls Ave, Twin Falls, ID 83301, USA",(208) 732-6655,http://herrett.csi.edu/astronomy/planetarium/index.asp,42.5841372,-114.4703472,Twin Falls +Dierkes Lake Park,"HJV5+GX3, Twin Falls, ID 83301, USA",(208) 736-2265,http://www.tfid.org/facilities.aspx?search=1&CID=2&RID=13&Page=detail,42.594477,-114.3901839,Twin Falls +Harmon Park,"Twin Falls, ID 83301, USA",(208) 544-1943,http://www.tfid.org/,42.5544243,-114.4526504,Twin Falls +Mary Alice Park,"436 Main Ave W, Twin Falls, ID 83301, USA",(208) 421-1311,http://www.maryalicepark.org/,42.5592706,-114.4742345,Twin Falls +Drury Park,"S Washington St & 4th Ave W, Twin Falls, ID 83301, USA",(208) 736-2265,Unknown,42.5580901,-114.479779,Twin Falls +Pillar Falls Scenic Overlook,"1999 Pole Line Rd E, Twin Falls, ID 83301, USA",Unknown,Unknown,42.596167,-114.445352,Twin Falls +Tandem Base,"2015 Nielsen Point Pl Suite 200, Twin Falls, ID 83301, USA",(208) 546-9873,http://tandembase.com/,42.5986643,-114.4548057,Twin Falls +Rock Creek Park,"Twin Falls, ID 83301, USA",(208) 734-9491,https://www.tfid.org/Facilities/Facility/Details/Rock-Creek-Canyon-Parkway-25,42.56746279999999,-114.503585,Twin Falls +Shoshone Falls Park,"4155 Shoshone Falls Grade, Twin Falls, ID 83301, USA",(208) 736-2265,http://www.tfid.org/index.aspx?NID=309,42.5937,-114.401,Twin Falls +Twin Falls Visitor Center,"2015 Nielsen Point Pl, Twin Falls, ID 83301, USA",(208) 733-3974,https://twinfallschamber.com/visit/twin-falls-visitor-center/,42.5983499,-114.4557011,Twin Falls +Scenic View Perrine Coulee Waterfall,"Twin Falls, ID 83301, USA",Unknown,Unknown,42.5971798,-114.471664,Twin Falls +Evel Knievel Jump Monument,"Twin Falls, ID 83301, USA",(208) 733-3974,http://evelknievel.com/,42.5985385,-114.4546548,Twin Falls +AWOL Adventure Sports At Centennial Park,"Centennial Waterfront Park, Canyon Springs Rd, Twin Falls, ID 83301, USA",(208) 735-5344,http://www.awoladventuresports.com/,42.60216339999999,-114.4709409,Twin Falls +Orton Botanical Garden,"867 Filer Ave W, Twin Falls, ID 83301, USA",(208) 734-7959,https://ortonbotanicalgarden.com/,42.5711628,-114.4984052,Twin Falls +Idaho Haunted Swamp,"728 3800 N, Twin Falls, ID 83301, USA",(208) 736-7669,http://idahohauntedswamp.com/,42.5506459,-114.4950546,Twin Falls +The Newark Museum of Art,"49 Washington St, Newark, NJ 07102, USA",(973) 596-6550,http://www.newarkmuseumart.org/,40.7429427,-74.1714034,Newark +Military Park,"51 Park Pl, Newark, NJ 07102, USA",(973) 900-5800,Unknown,40.7391262,-74.1695195,Newark +Branch Brook Park,"& Park Avenue, Lake St, Newark, NJ 07104, USA",(973) 268-3500,http://www.essexcountyparks.org/parks/branch-brook-park,40.759629,-74.1810895,Newark +"Newark Riverfront Park, Orange Sticks","727 Raymond Blvd, Newark, NJ 07105, USA",Unknown,Unknown,40.7331128,-74.1489969,Newark +Weequahic Park,"Elizabeth Ave &, Meeker Ave, Newark, NJ 07112, USA",(973) 268-3500,http://www.essex-countynj.org/p/index.php?section=parks/sites/we#top,40.70627169999999,-74.19728549999999,Newark +The Jewish Museum of New Jersey,"145 Broadway, Newark, NJ 07104, USA",(973) 485-2609,http://www.jewishmuseumnj.org/,40.7552784,-74.16984049999999,Newark +New Jersey Historical Society,"52 Park Pl, Newark, NJ 07102, USA",(973) 596-8500,http://www.jerseyhistory.org/,40.73893559999999,-74.1687484,Newark +Jesse Allen Park,"Muhammad Ali Ave, Newark, NJ 07108, USA",(973) 733-6454,https://www.newarknj.gov/departments/rcass,40.7257142,-74.1889964,Newark +Newark Riverfront Park - Somme Street Entrance,"709 Raymond Blvd, Newark, NJ 07105, USA",(201) 341-8311,https://newarkcityparksfoundation.com/,40.7327264,-74.15025829999999,Newark +Dreyfuss Planetarium,"49 Washington St Dreyfuss Planetarium, Newark, NJ 07102, USA",(973) 596-6529,https://newarkmuseumart.org/event/planetarium-life,40.7432168,-74.1719212,Newark +Ex-Casa do Paulo Landim II,"311 E Kinney St, Newark, NJ 07105, USA",Unknown,Unknown,40.723809,-74.1623347,Newark +Whitney Houston Mural,"45 William St, Newark, NJ 07102, USA",Unknown,Unknown,40.73413849999999,-74.17605530000002,Newark +Newark Preservation & Landmark,"69 Washington St, Newark, NJ 07102, USA",(973) 622-4910,https://www.newarklandmarks.org/,40.7428188,-74.17171,Newark +Cherry Blossom Welcome Center,"Branch Brook Park Dr, Newark, NJ 07104, USA",(973) 268-3500,http://www.essexcountyparks.org/parks/branch-brook-park,40.7846463,-74.1726869,Newark +The Feigenspan Mansion,"710 Dr Martin Luther King Jr Blvd, Newark, NJ 07102, USA",(973) 274-0995,https://www.nj.gov/dca/njht/funded/sitedetails/feigenspan_mansion.shtml,40.7278825,-74.1826564,Newark +Newark Winter Village,"162 Mulberry St, Newark, NJ 07102, USA",Unknown,https://newarkwintervillage.com/,40.7331617,-74.169628,Newark +Discovery Space of Central Pennsylvania,"1224 N Atherton St, State College, PA 16803, USA",(814) 234-0200,https://discoveryspace.org/,40.8022384,-77.8821932,State College +The Arboretum at Penn State,"E Park Ave &, Bigler Rd, State College, PA 16803, USA",(814) 865-9118,http://arboretum.psu.edu/,40.8132341,-77.8773338,State College +Tom Tudek Memorial Park,"400 Herman Dr, State College, PA 16803, USA",(814) 231-3071,https://www.twp.ferguson.pa.us/ferguson-township-parks/pages/tom-tudek-memorial-park,40.8014645,-77.8924608,State College +Millbrook Marsh Nature Center,"548 Puddintown Rd, State College, PA 16801, USA",(814) 235-7819,http://www.crpr.org/millbrook-marsh-nature-center,40.8134389,-77.83437359999999,State College +Centre County Historical Society,"1001 E College Ave, State College, PA 16801, USA",(814) 234-4779,https://www.centrehistory.org/,40.8065578,-77.8426703,State College +Sidney Friedman Parklet,"241 S Fraser St, State College, PA 16801, USA",(814) 234-7109,https://statecollegehighlands.org/sidney-friedman-park-a-small-park-with-a-big-history/,40.7917101,-77.8598275,State College +Penn's Cave & Wildlife Park,"222 Penns Cave Rd, Centre Hall, PA 16828, USA",(814) 364-1664,http://www.pennscave.com/,40.88254980000001,-77.61165679999999,State College +The Nittany Lion Shrine,"Curtin Road and, Burrowes Rd, State College, PA 16801, USA",(717) 948-6009,https://www.psu.edu/this-is-penn-state/nittany-lion-shrine/,40.79682589999999,-77.8690307,State College +Lederer Park,"1101 University Dr, State College, PA 16801, USA",Unknown,https://www.crpr.org/find-your-park,40.7965415,-77.84030159999999,State College +Joel N. Myers Sundial,"State College, PA 16803, USA",Unknown,Unknown,40.8056735,-77.8688394,State College +Old Main,"Pollock Rd, University Park, PA 16802, USA",(814) 865-4700,Unknown,40.79648100000001,-77.86284119999999,State College +Matson Museum of Anthropology,"208 Carpenter Bldg, Curtin Rd, University Park, PA 16802, USA",(814) 865-3853,https://matson.psu.edu/,40.7971662,-77.8695622,State College +Dalevue Park,"413 Goldfinch Dr, State College, PA 16801, USA",(814) 231-3071,http://www.crpr.org/,40.7977136,-77.82521179999999,State College +Happy Valley Vineyard and Winery,"576 S Foxpointe Dr, State College, PA 16801, USA",(814) 308-8756,http://www.thehappyvalleywinery.com/,40.76825389999999,-77.9013848,State College +Penn State All-Sports Museum,"1 Beaver Stadium, University Park, PA 16802, USA",(814) 865-0044,https://gopsusports.com/sports/2018/8/8/all-sports-museum-psu-all-sports-museum-html.aspx,40.81095229999999,-77.8557361,State College +Holmes-Foster Park,"901 Westerly Pkwy, State College, PA 16801, USA",(814) 231-3071,https://www.crpr.org/,40.78238280000001,-77.86611959999999,State College +Sunset Park,"850 McKee St, State College, PA 16803, USA",Unknown,Unknown,40.8043164,-77.8745665,State College +The Happy Valley Adventure Bureau,"204 W Beaver Ave, State College, PA 16801, USA",(814) 231-1400,https://happyvalley.com/,40.7921612,-77.8617688,State College +Palmer Museum of Art,"Bigler Rd, University Park, PA 16802, USA",(814) 865-7673,https://palmermuseum.psu.edu/,40.8068782,-77.8682025,State College +Johnstown Flood Museum,"304 Washington St, Johnstown, PA 15901, USA",(814) 539-1889,http://www.jaha.org/,40.3279365,-78.92049,Johnstown +Heritage Discovery Center,"Broad St, Johnstown, PA 15906, USA",(814) 539-1889,http://www.jaha.org/,40.3401449,-78.9308235,Johnstown +Greenhouse Park,"Green House Rd, Johnstown, PA 15905, USA",(814) 288-1400,http://thestonycreek.com/greenhouse.shtml,40.2768689,-78.9220654,Johnstown +I Love Johnstown Mural,"123 Coconut Pl, Johnstown, PA 15901, USA",Unknown,Unknown,40.3216656,-78.9229438,Johnstown +Point Park,"100 Washington St, Johnstown, PA 15901, USA",Unknown,Unknown,40.3300696,-78.9246695,Johnstown +Johnstown Area Heritage Association,"201 6th Ave, Johnstown, PA 15906, USA",(814) 539-1889,http://www.jaha.org/,40.3398691,-78.9310835,Johnstown +Hinckston RD Waterfall,"Hinckston Run,, Johnstown, PA 15906, USA",Unknown,Unknown,40.3710152,-78.8908508,Johnstown +Conemaugh Gap Scenic Overlook,"Haws Pike, Johnstown, PA 15906, USA",Unknown,Unknown,40.3663641,-78.9590836,Johnstown +Stackhouse Park,"998 Luzerne St, Johnstown, PA 15905, USA",(814) 536-1674,http://www.stackhousepark.com/,40.3267389,-78.93736969999999,Johnstown +"Visit Johnstown, PA","416 Main St #100, Johnstown, PA 15901, USA",(814) 536-7993,http://www.visitjohnstownpa.com/,40.32561210000001,-78.91936810000001,Johnstown +Wagner-Ritter House,"418 Broad St, Johnstown, PA 15906, USA",(814) 539-1889 ext. 311,https://www.jaha.org/attractions/wagner-ritter-house/,40.3398049,-78.92875599999999,Johnstown +Chapin Arch,"841 Menoher Blvd, Johnstown, PA 15905, USA",Unknown,Unknown,40.3133738,-78.9165786,Johnstown +Luray Park,"505 Euclid Ave, Johnstown, PA 15904, USA",Unknown,Unknown,40.2836596,-78.85894259999999,Johnstown +The Johnstown Inclined Plane,"711 Edgehill Dr, Johnstown, PA 15905, USA",Unknown,http://www.inclinedplane.org/,40.3255038,-78.928696,Johnstown +Pineapple Fountain,"1 Vendue Range, Charleston, SC 29401, USA",(843) 724-5003,Unknown,32.7780879,-79.9251889,Charleston +South Carolina Aquarium,"100 Aquarium Wharf, Charleston, SC 29401, USA",(843) 577-3474,http://scaquarium.org/,32.7909936,-79.92549919999999,Charleston +Rainbow Row,"83-107 E Bay St, Charleston, SC 29401, USA",(803) 528-8317,http://rainbowrowcharlestonsc.com/,32.7753504,-79.9273372,Charleston +The Charleston Museum,"360 Meeting St, Charleston, SC 29403, USA",(843) 722-2996,https://www.charlestonmuseum.org/,32.7896061,-79.9356663,Charleston +Charleston City Market,"188 Meeting St, Charleston, SC 29401, USA",(843) 937-0920,http://www.thecharlestoncitymarket.com/,32.78084439999999,-79.93055,Charleston +Joe Riley Waterfront Park,"Vendue Range, Concord St, Charleston, SC 29401, USA",Unknown,Unknown,32.778966,-79.9255465,Charleston +Aiken-Rhett House Museum,"48 Elizabeth St, Charleston, SC 29403, USA",(843) 723-1159,https://www.historiccharleston.org/house-museums/aiken-rhett-house/,32.7914295,-79.9348077,Charleston +Charles Towne Landing State Historic Site,"1500 Old Towne Rd, Charleston, SC 29407, USA",(843) 852-4200,http://www.southcarolinaparks.com/ctl,32.8104054,-79.9951397,Charleston +Nathaniel Russell House,"51 Meeting St, Charleston, SC 29401, USA",(843) 724-8481,https://www.historiccharleston.org/house-museums/nathaniel-russell-house/,32.77399719999999,-79.93102990000001,Charleston +White Point Garden,"2 Murray Blvd, Charleston, SC 29401, USA",Unknown,Unknown,32.7699361,-79.9303611,Charleston +Old Exchange and Provost Dungeon,"122 E Bay St, Charleston, SC 29401, USA",(843) 727-2166,http://oldexchange.org/,32.7768533,-79.9269411,Charleston +Drayton Hall,"3380 Ashley River Rd, Charleston, SC 29414, USA",(843) 769-2600,http://www.draytonhall.org/,32.87089949999999,-80.0763195,Charleston +McLeod Plantation Historic Site,"325 Country Club Dr, Charleston, SC 29412, USA",(843) 762-9514,https://www.ccprc.com/1447/McLeod-Plantation-Historic-Site,32.7631484,-79.9730658,Charleston +Children's Museum of the Lowcountry,"25 Ann St, Charleston, SC 29403, USA",(843) 853-8962,http://explorecml.org/,32.789416,-79.9376529,Charleston +Charleston Pirate Tours,"79 Cumberland St, Charleston, SC 29401, USA",(843) 442-7299,https://charlestonpiratetour.com/,32.7794474,-79.9300671,Charleston +Boone Hall Plantation & Gardens,"1235 Long Point Rd, Mt Pleasant, SC 29464, USA",(843) 884-4371,http://boonehallplantation.com/,32.8582446,-79.82311490000001,Charleston +Old Slave Mart Museum,"6 Chalmers St, Charleston, SC 29401, USA",(843) 958-6467,http://oldslavemartmuseum.com/,32.77782429999999,-79.92841109999999,Charleston +Middleton Place,"4300 Ashley River Rd, Charleston, SC 29414, USA",(843) 556-6020,http://www.middletonplace.org/,32.8999341,-80.13776899999999,Charleston +Pirates of Charleston,"95 Ripley Point Dr, Charleston, SC 29407, USA",Unknown,https://piratesofcharleston.com/,32.7772275,-79.96233600000001,Charleston +Magnolia Plantation and Gardens,"Charleston, SC 29414, USA",(843) 571-1266,https://www.magnoliaplantation.com/,32.8786105,-80.0883389,Charleston +Rosa Parks Museum,"252 Montgomery St, Montgomery, AL 36104, USA",(334) 241-8615,http://troy.edu/rosaparks,32.3765926,-86.3114746,Montgomery +Montgomery Zoo & Mann Wildlife Learning Museum,"2301 Coliseum Pkwy, Montgomery, AL 36110, USA",(334) 625-4900,http://www.montgomeryzoo.com/,32.4198404,-86.2751933,Montgomery +The Hank Williams Museum,"118 Commerce St, Montgomery, AL 36104, USA",(334) 262-3600,https://www.thehankwilliamsmuseum.net/,32.379447,-86.310684,Montgomery +Freedom Rides Museum,"210 S Court St, Montgomery, AL 36104, USA",(334) 414-8647,https://ahc.alabama.gov/properties/freedomrides/freedomrides.aspx,32.3746331,-86.3091022,Montgomery +Montgomery Museum of Fine Arts,"1 Museum Dr, Montgomery, AL 36117, USA",(334) 625-4333,http://www.mmfa.org/,32.35104139999999,-86.20641069999999,Montgomery +Riverfront Park,"355 Commerce St, Montgomery, AL 36104, USA",(334) 625-2100,http://www.funinmontgomery.com/,32.3829357,-86.31256330000001,Montgomery +The MOOseum,"201 S Bainbridge St, Montgomery, AL 36104, USA",(334) 265-1867,https://www.bamabeef.org/p/about/the-mooseum,32.3749614,-86.300805,Montgomery +The Scott and Zelda Fitzgerald Museum,"919 Felder Ave, Montgomery, AL 36106, USA",(334) 264-4222,https://www.thefitzgeraldmuseum.org/,32.3586942,-86.29230940000001,Montgomery +Dexter Parsonage Museum,"309 S Jackson St, Montgomery, AL 36104, USA",(334) 261-3270,http://www.dexterkingmemorial.org/,32.3730317,-86.2961102,Montgomery +Riverwalk,"Montgomery, AL 36104, USA",Unknown,Unknown,32.382454,-86.31320950000001,Montgomery +Civil Rights Memorial,"400 Washington Ave, Montgomery, AL 36104, USA",(334) 956-8439,https://www.splcenter.org/civil-rights-memorial,32.3761526,-86.3033604,Montgomery +Museum of Alabama,"142-158 S Union St, Montgomery, AL 36104, USA",Unknown,https://www.museum.alabama.gov/,32.3758403,-86.30038929999999,Montgomery +Old Alabama Town,"301 Columbus St, Montgomery, AL 36104, USA",(334) 240-4500,http://www.oldalabamatown.com/,32.3822966,-86.3049784,Montgomery +Mann Wildlife Learning Museum,"325 E Vandiver Blvd, Montgomery, AL 36110, USA",(334) 240-4900,https://www.montgomeryzoo.com/mann-museum/the-mann-museum,32.4177778,-86.2777778,Montgomery +Blount Cultural Park,"1 Festival Dr, Montgomery, AL 36117, USA",(334) 625-2300,https://mmfa.org/visit/plan-your-visit/blount-cultural-park/,32.3470355,-86.2085372,Montgomery +Worlds Largest Brick,"10200 US-80, Montgomery, AL 36117, USA",Unknown,Unknown,32.3675653,-86.1292022,Montgomery +The Dowe Houses,"334 Washington Ave, Montgomery, AL 36104, USA",Unknown,Unknown,32.376171,-86.3039673,Montgomery +W.A. Gayle Planetarium,"1010 Forest Ave, Montgomery, AL 36106, USA",(334) 625-4799,Unknown,32.36815499999999,-86.287426,Montgomery +The First White House of the Confederacy,"644 Washington Ave, Montgomery, AL 36130, USA",(334) 242-1861,https://www.thefirstwhitehouse.com/,32.3761412,-86.2999377,Montgomery +High Red Bluff,"1906 Riverfront Tunnel, Montgomery, AL 36104, USA",Unknown,Unknown,32.3821309,-86.3133004,Montgomery +Turtle Bay Exploration Park,"844 Sundial Bridge Drive, Redding, CA 96001, USA",(530) 243-8850,http://www.turtlebay.org/,40.59099479999999,-122.3763838,Redding +Sundial Bridge,"Sacramento River Trail, Redding, CA 96001, USA",(530) 243-8850,https://www.turtlebay.org/sundial-bridge/,40.59223060000001,-122.3774861,Redding +Fantasy Fountain,"4000 Victor Ave, Redding, CA 96002, USA",Unknown,Unknown,40.5467681,-122.3398393,Redding +Caldwell Park,"3 Quartz Hill Rd, Redding, CA 96003, USA",(530) 215-5364,http://www.cityofredding.org/,40.5948563,-122.3909522,Redding +Rivercrest Park,"800 Woodacre Dr, Redding, CA 96002, USA",(530) 225-4095,http://www.cityofredding.org/,40.5450164,-122.3545485,Redding +Sculpture Park,"777 Cypress Ave, Redding, CA 96001, USA",(530) 225-4512,Unknown,40.5731625,-122.3816893,Redding +Kids' Kingdom,"4000 Victor Ave, Redding, CA 96002, USA",(530) 225-4095,http://www.reddingrecreation.org/,40.5470288,-122.3401693,Redding +WaterWorks Park,"151 N Boulder Dr, Redding, CA 96003, USA",(530) 246-9550,http://www.waterworkspark.com/,40.612206,-122.368431,Redding +Mc Connell Arboretum & Botanical Gardens,"1125 Arboretum Dr, Redding, CA 96003, USA",(530) 243-8850,https://www.turtlebay.org/gardens,40.5944657,-122.3833208,Redding +Minder Park,"1210 Minder Dr, Redding, CA 96003, USA",(530) 225-4512,Unknown,40.5959217,-122.3367808,Redding +Shasta State Historic Park,"15312 CA-299, Shasta, CA 96087, USA",(530) 243-8194,http://www.parks.ca.gov/?page_id=456,40.5992482,-122.4917724,Redding +Paul Bunyan Forest Camp,"836 Sundial Bridge Drive, Redding, CA 96001, USA",(530) 243-8850,https://www.turtlebay.org/forestcamp,40.58961559999999,-122.3754611,Redding +Largest Grindstone in the World,"Shasta Lake, CA 96019, USA",Unknown,Unknown,40.6805272,-122.3505192,Redding +Redding Visitors Bureau,"1321 Butte St STE 100, Redding, CA 96001, USA",(530) 225-4433,http://www.visitredding.com/,40.5844802,-122.3896737,Redding +Bird Park,"Park Marina Dr, Redding, CA 96001, USA",Unknown,Unknown,40.57808560000001,-122.3709798,Redding +Swasey Recreational Area,"Redding, CA 96001, USA",Unknown,https://www.blm.gov/visit/swasey-recreation-area,40.55402,-122.4757566,Redding +Benton Dog Park - Redding,"Redding, CA 96001, USA",Unknown,Unknown,40.5777217,-122.406345,Redding +Redding Geodesic Sphere,"FMX8+H3, Redding, CA 96002, USA",Unknown,https://www.geometrycode.com/redding-geodesic-sphere/,40.49891119999999,-122.334837,Redding +Fish viewing facility,"Sacramento River Trail, Redding, CA 96003, USA",Unknown,Unknown,40.5935066,-122.3940146,Redding +Point of Honor,"112 Cabell St, Lynchburg, VA 24504, USA",(434) 455-6226,http://www.pointofhonor.org/,37.4206461,-79.1439118,Lynchburg +Amazement Square,"27 9th St, Lynchburg, VA 24504, USA",(434) 845-1888,http://www.amazementsquare.org/,37.4161556,-79.1404816,Lynchburg +The Nature Zone,"301 Grove St, Lynchburg, VA 24501, USA",(434) 455-5828,http://www.lynchburgparksandrec.com/the-nature-zone/,37.4026229,-79.16466299999999,Lynchburg +SeaQuest Lynchburg,"3405 Candlers Mountain Rd, Lynchburg, VA 24502, USA",(434) 237-5888,https://visitseaquest.com/lynchburg,37.3649413,-79.1781669,Lynchburg +Lynchburg Museum,"901 Court St, Lynchburg, VA 24504, USA",(434) 455-6226,http://www.lynchburgmuseum.org/,37.4137038,-79.14435019999999,Lynchburg +The Anne Spencer House & Garden Museum,"1313 Pierce St, Lynchburg, VA 24501, USA",(434) 845-1313,http://www.annespencermuseum.org/,37.4038484,-79.1519678,Lynchburg +Monument Terrace,"313 9th St, Lynchburg, VA 24504, USA",Unknown,Unknown,37.4140749,-79.1437107,Lynchburg +Maier Museum of Art at Randolph College,"1 Quinlan St, Lynchburg, VA 24503, USA",(434) 947-8136,http://www.maiermuseum.org/,37.4391876,-79.16988820000002,Lynchburg +Thomas Jefferson's Poplar Forest,"1776 Poplar Frst Pkwy, Lynchburg, VA 24502, USA",(434) 525-1806,http://www.poplarforest.org/,37.34801179999999,-79.2645168,Lynchburg +Legacy Museum of African American History,"403 Monroe St, Lynchburg, VA 24504, USA",(434) 845-3455,http://legacymuseum.org/,37.41416280000001,-79.15434909999999,Lynchburg +Lynchburg Museum & Visitor Services,"901 Court St, Lynchburg, VA 24504, USA",(434) 485-7290,http://www.lynchburgvirginia.org/,37.4136777,-79.14440499999999,Lynchburg +Riverfront Park,"1100 Jefferson St, Lynchburg, VA 24504, USA",(434) 455-5858,http://www.lynchburgparksandrec.com/our-parks/riverfront-park/,37.41365500000001,-79.13798589999999,Lynchburg +Historic Sandusky-University of Lynchburg,"757 Sandusky Dr, Lynchburg, VA 24502, USA",(434) 832-0162,http://www.historicsandusky.org/,37.38036749999999,-79.1962928,Lynchburg +"One Way Out Lynchburg, VA Escape Room","2264 Lakeside Dr, Lynchburg, VA 24501, USA",(434) 329-7329,https://www.lynchburgescape.com/,37.39940849999999,-79.2140277,Lynchburg +Riverside Park,"2238 Rivermont Ave, Lynchburg, VA 24503, USA",(434) 455-5858,http://www.lynchburgparksandrec.com/our-parks/riverside-park/,37.4386157,-79.16310570000002,Lynchburg +Old City Cemetery,"401 Taylor St, Lynchburg, VA 24501, USA",(434) 847-1465,http://www.gravegarden.org/,37.41473449999999,-79.155979,Lynchburg +Lower Bluff Walk,"2 12th St, Lynchburg, VA 24504, USA",(434) 856-2489,Unknown,37.4131632,-79.1387204,Lynchburg +Jubal Early Monument,"3534-3598 Memorial Ave, Lynchburg, VA 24501, USA",Unknown,Unknown,37.39005580000001,-79.1726643,Lynchburg +Pest House Medical Museum,"401 Taylor St, Lynchburg, VA 24501, USA",(434) 847-1465,http://www.gravegarden.org/the-pest-house/,37.4157281,-79.15794679999999,Lynchburg +James River Overlook,"9 Washington St, Lynchburg, VA 24504, USA",Unknown,https://www.lynchburgparksandrec.com/trails/,37.412034,-79.135395,Lynchburg +Potawatomi Zoo,"500 S Greenlawn Ave, South Bend, IN 46615, USA",(574) 235-9800,https://potawatomizoo.org/,41.6693401,-86.2179554,South Bend +Studebaker National Museum,"201 Chapin St, South Bend, IN 46601, USA",(574) 235-9714,http://www.studebakermuseum.org/,41.6748016,-86.2621037,South Bend +The History Museum,"808 W Washington St, South Bend, IN 46601, USA",(574) 235-9664,https://historymuseumsb.org/,41.6749128,-86.26268139999999,South Bend +River Lights Plaza,"340 E Colfax Ave, South Bend, IN 46617, USA",Unknown,Unknown,41.6764579,-86.24575089999999,South Bend +South Bend Museum of Art,"120 Doctor M.L.K. Jr Blvd, South Bend, IN 46601, USA",(574) 235-9102,http://www.southbendart.org/,41.676201,-86.2483985,South Bend +The Oliver Mansion,"808 W Washington St, South Bend, IN 46601, USA",(574) 235-9664,http://historymuseumsb.org/see-do/historic-house#The%20Oliver%20Mansion,41.6757911,-86.2620778,South Bend +Kennedy Water Park,"756 Eclipse Pl, South Bend, IN 46628, USA",(574) 235-9407,https://sbvpa.org/places/kennedy-park/,41.6840662,-86.28962519999999,South Bend +Potawatomi Park,"2105 E Mishawaka Ave, South Bend, IN 46615, USA",(574) 299-4765,http://sbvpa.org/places/potawatomi-park/,41.6684078,-86.219471,South Bend +Kidsfirst Children's Museum,"808 W Washington St, South Bend, IN 46601, USA",(574) 235-9664,http://historymuseumsb.org/see-do/kidsfirst-childrens-museum/,41.6748412,-86.2625677,South Bend +Seitz Park,"S Niles Ave, South Bend, IN 46617, USA",(574) 299-4765,http://sbvpa.org/parks/seitz-park/,41.6760102,-86.2452347,South Bend +St. Patrick's County Park,"50651 Laurel Rd, South Bend, IN 46637, USA",(574) 277-4828,http://www.sjcparks.org/592/St-Patricks,41.7551906,-86.26556920000002,South Bend +Island Park at Century Center,"120 S St Joseph St, South Bend, IN 46601, USA",(574) 235-9711,Unknown,41.6766274,-86.24752409999999,South Bend +Kid's Kingdom at Potawatomi Park,"2000 Wall St, South Bend, IN 46615, USA",Unknown,Unknown,41.6667944,-86.2168773,South Bend +Park & Party - ND Tailgate Lot,"54746 Twyckenham Dr, South Bend, IN 46637, USA",Unknown,Unknown,41.69776170000001,-86.2251493,South Bend +Children's Museum of South Bend,"2632 S Michigan St, South Bend, IN 46614, USA",(574) 222-2044,http://childrensmuseumofsouthbend.org/,41.64678649999999,-86.2493145,South Bend +Shetterly Park,"1000-1150 Riverside Dr, South Bend, IN 46616, USA",(574) 299-4765,Unknown,41.6892975,-86.25956599999999,South Bend +Mishawaka Riverwalk,"N Spring St, Mishawaka, IN 46544, USA",(574) 258-1664,https://mishawaka.in.gov/things-to-do/parks-and-recreation/,41.6650539,-86.18299329999999,South Bend +Snite Research Center in the Visual Arts,"100 Moose Krause Cir, Notre Dame, IN 46556, USA",(574) 631-5466,http://sniteartmuseum.nd.edu/,41.6995878,-86.23569909999999,South Bend +Wheelock Park,"1002 Darden Rd, South Bend, IN 46628, USA",(574) 299-4765,http://www.izaaksb.com/,41.7274694,-86.26416239999999,South Bend +Birthday Chair,"821 Portage Ave, South Bend, IN 46616, USA",Unknown,Unknown,41.6866216,-86.2610753,South Bend +Marie Selby Botanical Gardens Downtown Sarasota campus,"1534 Mound St, Sarasota, FL 34236, USA",(941) 366-5731,https://www.selby.org/,27.3266777,-82.539722,Sarasota +Sarasota Jungle Gardens,"3701 Bay Shore Rd, Sarasota, FL 34234, USA",(941) 355-5305,https://sarasotajunglegardens.com/,27.3678751,-82.5563064,Sarasota +Mote Marine Laboratory & Aquarium,"1600 Ken Thompson Pkwy, Sarasota, FL 34236, USA",(941) 388-4441,https://mote.org/,27.3333329,-82.57784699999999,Sarasota +The John and Mable Ringling Museum of Art,"5401 Bay Shore Rd, Sarasota, FL 34243, USA",(941) 359-5700,https://www.ringling.org/museum-art,27.3815477,-82.56057160000002,Sarasota +Bayfront Park,"5 Bayfront Dr, Sarasota, FL 34236, USA",(941) 263-6386,https://www.letsplaysarasota.com/Home/Components/FacilityDirectory/FacilityDirectory/70/4753,27.3310489,-82.54497529999999,Sarasota +Sarasota Art Museum,"1001 S Tamiami Trail, Sarasota, FL 34236, USA",(941) 309-4300,https://www.sarasotaartmuseum.org/,27.3257079,-82.5293076,Sarasota +Sarasota Classic Car Museum,"5500 N Tamiami Trail, Sarasota, FL 34243, USA",(941) 355-6228,http://www.sarasotacarmuseum.org/,27.3825062,-82.55639289999999,Sarasota +Ca' d'Zan,"5401 Bay Shore Rd, Sarasota, FL 34243, USA",(941) 359-5700,https://www.ringling.org/ca-dzan,27.3829253,-82.5645354,Sarasota +South Lido County Park,"2201 Benjamin Franklin Dr, Sarasota, FL 34236, USA",(941) 861-7275,https://www.scgov.net/Home/Components/FacilityDirectory/FacilityDirectory/853/4283?npage=6,27.304669,-82.5675268,Sarasota +North Lido Beach,"1001 Westway Dr, Sarasota, FL 34236, USA",Unknown,Unknown,27.3219207,-82.5878329,Sarasota +Lido key,"4800 N Tamiami Trail, Sarasota, FL 34234, USA",Unknown,Unknown,27.3761528,-82.55396270000001,Sarasota +Ringling Bridge Causeway Park,"John Ringling Causeway, Sarasota, FL 34236, USA",(941) 365-2200,Unknown,27.3268695,-82.5624368,Sarasota +Marietta Museum of Art & Whimsy,"2121 N Tamiami Trail, Sarasota, FL 34234, USA",(941) 364-3399,http://www.whimsymuseum.org/,27.3556546,-82.5479294,Sarasota +Sailor Circus,"2075 Bahia Vista St, Sarasota, FL 34239, USA",(941) 355-9335,http://circusarts.org/community-outreach/sailor-circus/,27.3232769,-82.5280768,Sarasota +The Bay,"Sarasota, FL 34236, USA",Unknown,https://www.thebaysarasota.org/,27.3430005,-82.547674,Sarasota +Eloise Werlin Park,"Sarasota, FL 34236, USA",Unknown,Unknown,27.33393929999999,-82.5541221,Sarasota +Circus Spectacular,"4411 Bee Ridge Rd, Sarasota, FL 34233, USA",(941) 539-3540,Unknown,27.2991758,-82.4804904,Sarasota +City Island,"1799 Ken Thompson Pkwy, Sarasota, FL 34236, USA",Unknown,Unknown,27.3357937,-82.5730253,Sarasota +"Unconditional Surrender - Sarasota, FL","Unconditional Surrender,, Sarasota, FL 34236, USA",Unknown,Unknown,27.3331855,-82.54415900000001,Sarasota +Lido Beach Pavilion,"400 Benjamin Franklin Dr, Sarasota, FL 34236, USA",(941) 388-2161,https://www.sarasotafl.gov/our-city/lido-beach-pool-pavilion,27.3113607,-82.5763928,Sarasota +Falls Park,"131 E Falls Park Dr, Sioux Falls, SD 57104, USA",(605) 367-8222,http://www.siouxfalls.org/parks/parks/locations/falls-park,43.55696669999999,-96.7219767,Sioux Falls +Great Plains Zoo,"805 S Kiwanis Ave, Sioux Falls, SD 57104, USA",(605) 367-7003,http://www.greatzoo.org/,43.5392292,-96.76269889999999,Sioux Falls +Butterfly House & Aquarium,"4320 S Oxbow Ave, Sioux Falls, SD 57106, USA",(605) 334-9466,https://butterflyhouseaquarium.org//,43.50651679999999,-96.7624867,Sioux Falls +Pettigrew Home & Museum,"131 N Duluth Ave, Sioux Falls, SD 57104, USA",(605) 367-7097,http://www.siouxlandmuseums.com/,43.5483882,-96.73463679999999,Sioux Falls +The Outdoor Campus,"4500 S Oxbow Ave, Sioux Falls, SD 57106, USA",(605) 362-2777,http://gfp.sd.gov/outdoor-learning/outdoor-campus/,43.505875,-96.7612482,Sioux Falls +Good Earth State Park Visitor Center,"26924 480th Ave, Sioux Falls, SD 57108, USA",(605) 213-1036,https://gfp.sd.gov/parks/detail/good-earth-state-park/,43.4770412,-96.5944224,Sioux Falls +Wild Water West Waterpark and Flamingo Falls Campground,"26767 466th Ave, Sioux Falls, SD 57106, USA",(605) 361-9313,http://www.wildwaterwest.com/,43.50599340000001,-96.8918243,Sioux Falls +Sioux Empire Medical Museum,"1305 18th St, Sioux Falls, SD 57105, USA",(605) 333-6397,https://news.sanfordhealth.org/news-release/sioux-empire-medical-museum-reopens/,43.5356179,-96.7431672,Sioux Falls +Fawick Park,"Sioux Falls, SD 57104, USA",(605) 367-8222,http://www.siouxfalls.org/parks/parks/locations/fawick,43.54539879999999,-96.72280819999999,Sioux Falls +Catfish Bay Greatest Show On H2O!,"5500 Show Pl, Sioux Falls, SD 57104, USA",(605) 339-0911,http://www.catfishbay.com/,43.6085529,-96.7238608,Sioux Falls +Sertoma Park,"4300 S Oxbow Ave, Sioux Falls, SD 57106, USA",Unknown,https://www.siouxfalls.org/parks/parks/locations/sertoma,43.5069214,-96.760135,Sioux Falls +Downtown Sioux Falls,"315 N Phillips Ave, Sioux Falls, SD 57104, USA",(605) 338-4009,http://www.dtsf.com/,43.5503475,-96.72711249999999,Sioux Falls +Arrowhead Park,"1600 River Bluff Rd, Sioux Falls, SD 57110, USA",(605) 367-8222,https://www.siouxfalls.org/parks/parks/locations/arrowhead-park,43.52544959999999,-96.6123832,Sioux Falls +Sky Zone Trampoline Park,"5129 S Solberg Ave, Sioux Falls, SD 57108, USA",(605) 553-9910,https://www.skyzone.com/siouxfalls,43.4983449,-96.782293,Sioux Falls +Statue of David,"200 S 2nd Ave, Sioux Falls, SD 57104, USA",Unknown,http://www.siouxfalls.org/parks/parks/locations/fawick,43.54524079999999,-96.7232112,Sioux Falls +Old Courthouse Museum,"200 W 6th St, Sioux Falls, SD 57104, USA",(605) 367-4210,http://www.siouxlandmuseums.com/,43.55157029999999,-96.7286659,Sioux Falls +Sherman Park,"Sherman Park Rd, Sioux Falls, SD 57104, USA",(605) 367-8222,http://www.siouxfalls.org/,43.5419124,-96.764121,Sioux Falls +Japanese Gardens,"707 N Grange Ave, Sioux Falls, SD 57104, USA",(605) 367-8222,http://www.siouxfalls.org/parks/parks/weddings/terrace-rules/gallery,43.554862,-96.7421937,Sioux Falls +Terrace Park,"1100 W 4th St, Sioux Falls, SD 57104, USA",(605) 367-8222,http://www.siouxfalls.org/parks/parks/locations/terrace,43.5575189,-96.7403772,Sioux Falls +Sioux Falls Murals,"329 N Phillips Ave, Sioux Falls, SD 57104, USA",Unknown,Unknown,43.55040220000001,-96.7265223,Sioux Falls +River Discovery Center is now the Inland Waterways Museum,"117 S Water St, Paducah, KY 42001, USA",(270) 575-9958,http://inlandwaterways.org/,37.0877355,-88.5941031,Paducah +Paducah Railroad Museum,"200 Washington St Downtown, Paducah, KY 42002, USA",(270) 908-6451,http://www.paducahrr.org/,37.08542999999999,-88.5944339,Paducah +Lloyd Tilghman House & Civil War Museum,"631 Kentucky Ave, Paducah, KY 42001, USA",(270) 575-5477,Unknown,37.0844622,-88.60111909999999,Paducah +William Clark Market House Museum,"121 Market House Square, Paducah, KY 42001, USA",(270) 443-7759,https://markethousemuseum.com/,37.0872111,-88.59536399999999,Paducah +The National Quilt Museum,"215 Jefferson St, Paducah, KY 42001, USA",(270) 442-8856,http://www.quiltmuseum.org/,37.0893311,-88.59713839999999,Paducah +Whitehaven Welcome Center,"1845 Lone Oak Rd, Paducah, KY 42003, USA",(270) 554-2077,https://www.kentuckytourism.com/,37.05080099999999,-88.6528785,Paducah +Bob Noble Park,"2801 Park Ave, Paducah, KY 42001, USA",(270) 444-8508,http://www.paducahky.gov/noble-park,37.08631990000001,-88.6383567,Paducah +Historic Riverfront,"27 The Foot of Broadway, Paducah, KY 42001, USA",Unknown,http://www.paducahky.gov/,37.0879133,-88.59359309999999,Paducah +Paducah Wall to Wall,"200-298 S Water St, Paducah, KY 42003, USA",Unknown,http://paducahwalltowall.com/,37.08839260000001,-88.59417239999999,Paducah +Atomic City Family Fun Center,"3801 Hinkleville Rd, Paducah, KY 42001, USA",(270) 558-4868,https://atomicpaducah.com/,37.0828283,-88.6700069,Paducah +Kolb Park,"1650 S 6th St, Paducah, KY 42003, USA",(270) 444-8508,https://paducahky.gov/kolb-park,37.068064,-88.5889883,Paducah +Carson Park,"300 N 30th St, Paducah, KY 42001, USA",(270) 444-4744,Unknown,37.07537699999999,-88.63529199999999,Paducah +Port of Paducah Kentucky,"300 S 3rd St, Paducah, KY 42003, USA",Unknown,Unknown,37.0851283,-88.595174,Paducah +Welcome To Kentucky Sign,"I-24, Paducah, KY 42001, USA",Unknown,Unknown,37.1234671,-88.690924,Paducah +Chief Paduke statue,"Paducah, KY 42001, USA",Unknown,Unknown,37.0788646,-88.6206246,Paducah +Williams Park,"Paducah, KY 42001, USA",Unknown,Unknown,37.0771154,-88.6751262,Paducah +Maui Nui Botanical Gardens,"150 Kanaloa Ave, Kahului, HI 96732, USA",(808) 249-2798,http://www.mnbg.org/,20.89260699999999,-156.486317,Kahului +Ho'aloha Park,"1 E Kaahumanu Ave, Kahului, HI 96732, USA",(808) 270-7232,http://www.mauicounty.gov/facilities.aspx?search=1&CID=8&RID=3&Page=detail,20.8920946,-156.4689119,Kahului +Keopuolani Regional Park,"Kahului, HI 96732, USA",(808) 270-7389,Unknown,20.8941142,-156.4833713,Kahului +Kanaha Pond State Wildlife Sanctuary,"Amala Pl, Kahului, HI 96732, USA",Unknown,https://dlnr.hawaii.gov/wildlife/sanctuaries/kanaha/,20.8882092,-156.4550603,Kahului +Kanaha Beach Park,"Amala Pl, Kahului, HI 96732, USA",(808) 270-7389,http://www.co.maui.hi.us/Facilities.aspx?Page=detail&RID=101,20.89969869999999,-156.4405938,Kahului +Maui Lani Regional Park,"Kahului, HI 96732, USA",(808) 270-6139,https://www.mauicounty.gov/Facilities/Facility/Details/Maui-Lani-Regional-Park-413,20.8668616,-156.4877588,Kahului +Kahului Community Center Park,"275 Uhu St, Kahului, HI 96732, USA",(808) 270-7232,http://www.co.maui.hi.us/Facilities.aspx?Page=detail&RID=97,20.8821697,-156.4781165,Kahului +Ali'i Greeting Service,"250 Alamaha St unit n-14a, Kahului, HI 96732, USA",(808) 877-7088,https://www.aliigreetingservice.com/,20.8868557,-156.4595346,Kahului +Maui Historical Society,"2375A Main St, Wailuku, HI 96793, USA",(808) 244-3326,http://www.mauimuseum.org/,20.8857761,-156.5071602,Kahului +Kahului Park,"410 Hina Ave, Kahului, HI 96732, USA",(808) 270-7232,http://www.mauicounty.gov/Facilities/Facility/Details/Kahului-Park-99,20.878614,-156.4720149,Kahului +Maui Tropical Plantation,"1670 HI-30, Wailuku, HI 96793, USA",Unknown,http://www.mauitropicalplantation.com/,20.8491053,-156.5067995,Kahului +Alexander & Baldwin Sugar Museum,"3957 Hansen Rd, Puunene, HI 96784, USA",(808) 871-8058,http://www.sugarmuseum.com/,20.86930389999999,-156.4550957,Kahului +Nisei Veterans Memorial Center,"665 Kahului Beach Rd, Kahului, HI 96732, USA",(808) 244-6862,http://www.nvmc.org/,20.9013808,-156.482685,Kahului +Maui Zipline Company,"Maui Tropical Plantation, 1670 HI-30, Wailuku, HI 96793, USA",(808) 633-2464,http://www.mauizipline.com/,20.84849,-156.5071043,Kahului +Jym Park,"Amala Pl, Kahului, HI 96732, USA",Unknown,Unknown,20.9007477,-156.4402512,Kahului +Air Maui Helicopter Tours,"108 lelepio place Kahului Heliport, 1 Keolani Pl, Kahului, HI 96732, USA",(808) 877-7005,http://www.airmaui.com/,20.8900192,-156.4326089,Kahului +Baldwin Beach Park,"Baldwin Park, Paia, HI 96779, USA",Unknown,https://www.mauicounty.gov/119/Parks-Recreation,20.9130934,-156.3925547,Kahului +Fun Factory - Ka'ahumanu Center,"275 W Kaahumanu Ave, Kahului, HI 96732, USA",(808) 877-5096,https://www.funfactorygames.com/,20.88707,-156.4752578,Kahului +Steel Pier,"1000 Boardwalk, Atlantic City, NJ 08401, USA",(609) 345-4893,http://www.steelpier.com/,39.35766810000001,-74.41917160000001,Atlantic City +Atlantic City Boardwalk,"2301 Boardwalk, Atlantic City, NJ 08401, USA",(609) 449-7100,https://www.atlanticcitynj.com/explore/beaches-boardwalk/,39.3539034,-74.4381586,Atlantic City +Absecon Lighthouse,"31 S Rhode Island Ave, Atlantic City, NJ 08401, USA",(609) 449-1360,http://www.abseconlighthouse.org/,39.3662285,-74.41430729999999,Atlantic City +Atlantic City Boardwalk And Beach,"Boardwalk, Atlantic City, NJ 08401, USA",(856) 688-3007,https://sites.google.com/view/acgambling/home,39.3580919,-74.4216019,Atlantic City +Atlantic City Historical Museum,"600-698 Boardwalk, Atlantic City, NJ 08401, USA",(609) 347-5839,http://atlanticcityexperience.org/,39.3540382,-74.4379577,Atlantic City +Atlantic City Aquarium,"800 N New Hampshire Ave, Atlantic City, NJ 08401, USA",(609) 348-2880,http://www.acaquarium.com/,39.3769065,-74.42005309999999,Atlantic City +Kennedy Plaza,"2300-, 2498 Boardwalk, Atlantic City, NJ 08401, USA",Unknown,Unknown,39.3538153,-74.4379692,Atlantic City +Central Pier Arcade,"1400 Boardwalk, Atlantic City, NJ 08401, USA",(609) 345-5219,https://www.centralpierarcade.com/,39.35684980000001,-74.42490219999999,Atlantic City +Brighton Park,"124 Park Pl, Atlantic City, NJ 08401, USA",Unknown,Unknown,39.3561412,-74.4308626,Atlantic City +Civil Rights Garden,"Pacific Ave & S Dr Martin Luther King Blvd, Atlantic City, NJ 08401, USA",(609) 347-0500,Unknown,39.359618,-74.43085769999999,Atlantic City +Harrah s Casino,"777 Harrah's Blvd, Atlantic City, NJ 08401, USA",Unknown,Unknown,39.3845487,-74.4296631,Atlantic City +New Jersey Korean War Memorial,"124 Park Pl, Atlantic City, NJ 08401, USA",(609) 345-2500,http://www.nj.gov/military/korea/,39.3559353,-74.43105489999999,Atlantic City +Lucy the Elephant,"9200 Atlantic Ave, Margate City, NJ 08402, USA",Unknown,http://www.lucytheelephant.org/,39.32083129999999,-74.5115644,Atlantic City +DO|AC - Spot,"928 Arctic Ave, Atlantic City, NJ 08401, USA",Unknown,Unknown,39.36565129999999,-74.4239296,Atlantic City +Atlantic City Tiki Boat,"800 N New Hampshire Ave, Atlantic City, NJ 08401, USA",(609) 770-1476,https://actikiboat.com/,39.3767042,-74.4199986,Atlantic City +Atlantic City Visitor Information Center (CRDA),"2301 Boardwalk, Atlantic City, NJ 08401, USA",(609) 449-7100,https://www.atlanticcitynj.com/,39.354905,-74.438391,Atlantic City +Atlantic City Shore line,"1636 Boardwalk, Atlantic City, NJ 08401, USA",Unknown,Unknown,39.3553642,-74.4275044,Atlantic City +Oscar E. McClinton Waterfront Park,"201 N New Hampshire Ave, Atlantic City, NJ 08401, USA",(609) 625-8219,http://www.aclink.org/,39.3720527,-74.4141154,Atlantic City +Worker’s Memorial,"2300-, 2498, Boardwalk, Atlantic City, NJ 08401, USA",Unknown,Unknown,39.3538041,-74.43771869999999,Atlantic City +Hard Rock Giant Guitar,"Atlantic City, NJ 08401, USA",Unknown,Unknown,39.36180100000001,-74.4214002,Atlantic City +Paul Bunyan & Babe the Blue Ox Statues,"300 Bemidji Ave N, Bemidji, MN 56601, USA",(800) 458-2223,http://www.bemidji.org/,47.4704,-94.878959,Bemidji +Headwaters Science Center,"413 Beltrami Ave NW, Bemidji, MN 56601, USA",(218) 444-4472,http://www.hscbemidji.org/,47.47224509999999,-94.88167519999999,Bemidji +Paul Bunyan Animal Land,"3857 Animal Land Dr SE, Bemidji, MN 56601, USA",Unknown,Unknown,47.4191702,-94.8165443,Bemidji +Beltrami County History Center,"130 Minnesota Ave SW, Bemidji, MN 56601, USA",(218) 444-3376,http://www.beltramihistory.org/,47.46761159999999,-94.88245069999999,Bemidji +Diamond Point Park,"1710 Birchmont Dr NE, Bemidji, MN 56601, USA",(218) 333-1859,http://www.ci.bemidji.mn.us/,47.4857667,-94.87262240000001,Bemidji +Chief Bemidji Statue,"426 Bemidji Ave N #1st, Bemidji, MN 56601, USA",Unknown,Unknown,47.47196760000001,-94.8793492,Bemidji +Cameron Park,"2609 Birchmont Dr NE, Bemidji, MN 56601, USA",(218) 333-1859,https://findbemidji.com/listings/cameron-park/,47.49385769999999,-94.8745271,Bemidji +Shaynowishkung Statue,"Paul Bunyan State Trail, Bemidji, MN 56601, USA",Unknown,Unknown,47.4719602,-94.87935870000001,Bemidji +Visit Bemidji,"300 Bemidji Ave N, Bemidji, MN 56601, USA",(218) 444-6081,http://www.visitbemidji.com/,47.47074019999999,-94.8788498,Bemidji +Bemidji City Park,"1330 23rd St NW, Bemidji, MN 56601, USA",(218) 333-1859,https://www.ci.bemidji.mn.us/parksandrec,47.4887081,-94.89881059999999,Bemidji +Mississippi Headwaters State Forest,"Bemidji, MN 56601, USA",(651) 296-6157,http://www.dnr.state.mn.us/state_forests/sft00034/index.html,47.4340662,-95.0979547,Bemidji +Buena Vista State Forest,"Bemidji, MN 56601, USA",(651) 296-6157,http://www.dnr.state.mn.us/state_forests/sft00010/index.html,47.5686026,-94.7124609,Bemidji +Freedom Defenders Veterans Memorial,"130 Minnesota Ave SW, Bemidji, MN 56601, USA",Unknown,Unknown,47.46784,-94.88306879999999,Bemidji +Lake Bemidji State Park,"3401 State Park Rd NE, Bemidji, MN 56601, USA",(218) 308-2300,http://www.dnr.state.mn.us/state_parks/lake_bemidji/index.html,47.5351607,-94.8268149,Bemidji +Toledo Zoo,"2 Hippo Way, Toledo, OH 43609, USA",(419) 385-5721,https://www.toledozoo.org/,41.6216435,-83.5825426,Toledo +Toledo Museum of Art,"2445 Monroe St, Toledo, OH 43620, USA",(419) 255-8000,http://www.toledomuseum.org/,41.6583273,-83.55932519999999,Toledo +National Museum of the Great Lakes,"1701 Front St, Toledo, OH 43605, USA",(419) 214-5000,http://www.nmgl.org/,41.65649080000001,-83.51516,Toledo +Imagination Station,"1 Discovery Way, Toledo, OH 43604, USA",(419) 244-2674,http://www.imaginationstationtoledo.org/,41.65193,-83.53161399999999,Toledo +Toledo Botanical Garden,"5403 Elmer Dr, Toledo, OH 43615, USA",(419) 270-7500,https://metroparkstoledo.com/explore-your-parks/toledo-botanical-garden/,41.6663686,-83.6720878,Toledo +International Park,"Rails To Trails Next To Maumee River, Toledo, OH 43605, USA",(419) 936-2875,https://toledo.oh.gov/services/public-service/parks-recreation-forestry/parks/,41.6504008,-83.526607,Toledo +Toledo Firefighters Museum,"918 W Sylvania Ave, Toledo, OH 43612, USA",(419) 478-3473,http://toledofirefightersmuseum.org/,41.6929682,-83.5641222,Toledo +Wildwood Preserve Metropark,"5100 Central Ave, Toledo, OH 43615, USA",(419) 407-9700,http://metroparkstoledo.com/wildwoodpreserve,41.6818066,-83.66531859999999,Toledo +Toledo History Museum,"425 N St Clair St, Toledo, OH 43604, USA",(419) 215-2437,https://www.toledohistorymuseum.org/,41.6533199,-83.53335729999999,Toledo +"Point Place Lighthouse, llc","Toledo, OH 43611, USA",(419) 626-7980,http://coastal.ohiodnr.gov/lucas/bayviewpark,41.6996116,-83.4788221,Toledo +Greetings From Toledo,"120 Main St, Toledo, OH 43605, USA",Unknown,Unknown,41.64781009999999,-83.52289619999999,Toledo +Glass Pavilion,"2444 Monroe St, Toledo, OH 43620, USA",(419) 255-8000,http://www.toledomuseum.org/glass-pavilion/,41.65966299999999,-83.5580825,Toledo +Promenade Park,"400 Water St, Toledo, OH 43604, USA",(419) 936-2875,https://toledo.oh.gov/,41.6495389,-83.53334869999999,Toledo +Delaware Park,"3076-3098, River Rd, Toledo, OH 43614, USA",(419) 936-2875,http://toledo.oh.gov/services/public-service/parks-recreation-forestry/parks/,41.610612,-83.5899603,Toledo +Perspective Arcade Public Art,"740 Jackson St CTR 1920, Toledo, OH 43604, USA",Unknown,Unknown,41.6558802,-83.5361911,Toledo +Frida Kahlo Mural,"402 Broadway St, Toledo, OH 43604, USA",Unknown,Unknown,41.64038379999999,-83.5431558,Toledo +Cullen Park,"4526 N Summit St, Toledo, OH 43611, USA",Unknown,http://cullenpark.org/,41.7046893,-83.47487339999999,Toledo +Toledo Zoo Aquarium,"2700 Broadway St, Toledo, OH 43609, USA",(419) 385-5721,http://www.toledozoo.org/,41.61792109999999,-83.58020259999999,Toledo +Jamie Farr Park,"2140 N Summit St, Toledo, OH 43611, USA",(419) 936-3887,https://toledo.oh.gov/services/public-service/parks-recreation-forestry/,41.67115839999999,-83.5049703,Toledo +Toledo Police Museum Inc,"2201 Kenwood Blvd, Toledo, OH 43606, USA",(419) 720-2485,https://www.toledopolicemuseum.com/,41.66954649999999,-83.59601719999999,Toledo +The Grace Museum,"102 Cypress St, Abilene, TX 79601, USA",(325) 673-4587,http://www.thegracemuseum.org/,32.4496457,-99.7344586,Abilene +Frontier Texas!,"625 N 1st St, Abilene, TX 79601, USA",(325) 437-2800,http://www.frontiertexas.com/,32.4492935,-99.7282884,Abilene +Historic Fort Phantom Hill,"10818 FM600, Abilene, TX 79601, USA",(325) 677-1309,http://fortphantom.org/,32.642376,-99.679019,Abilene +Adamson-Spalding Storybook Garden,"1008-1098 N 6th St, Abilene, TX 79601, USA",Unknown,Unknown,32.45474889999999,-99.73298009999999,Abilene +Abilene Zoo,"2070 Zoo Ln, Abilene, TX 79602, USA",(325) 676-6085,http://www.abilenezoo.org/?utm_source=gmb&utm_medium=organic,32.4391428,-99.6906504,Abilene +Everman Park,"1007-1099 N 1st St, Abilene, TX 79601, USA",(325) 676-6217,http://www.abilenetx.gov/parksandrec,32.44925120000001,-99.7334499,Abilene +12th Armored Division Memorial,"1289 N 2nd St, Abilene, TX 79601, USA",(325) 677-6515,http://www.12tharmoreddivisionmuseum.com/,32.4504051,-99.7364242,Abilene +'Good Night Dinosaur' Statue,"Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,32.4548779,-99.7332775,Abilene +National Center for Children's Illustrated Literature,"102 Cedar St, Abilene, TX 79601, USA",(325) 673-4586,http://nccil.org/,32.4499118,-99.7357407,Abilene +'Dino Bob' Statue,"133 Cedar St, Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,32.4499817,-99.7353442,Abilene +Giant Buffalo Skull,"625 N 1st St, Abilene, TX 79601, USA",(325) 437-2800,http://www.frontiertexas.com/,32.4495551,-99.7276318,Abilene +'Sanderson Mansnoozie' Statue,"174 Cypress St # 101, Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,32.4504517,-99.7343226,Abilene +'Yertle the Turtle' Statue,"Everman Park, 1007, 1099 N 1st St, Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,32.4492543,-99.73357159999999,Abilene +'E. Aster Bunnymund' Statue,"1201 N 1st St, Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,32.4494102,-99.73574110000001,Abilene +'Stuart Little' Statue,"1051 N 6th St, Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,32.4549492,-99.7330277,Abilene +Redbud Park,"3125 S 32nd St, Abilene, TX 79605, USA",(325) 676-6217,http://www.abilenetx.gov/parksandrec,32.40837289999999,-99.76300979999999,Abilene +Jacob's Dream Sculpture,"Abilene, TX 79699, USA",(325) 674-2000,http://www.acu.edu/,32.4684495,-99.7064072,Abilene +'Man in the Moon' Statue,"1201 N 1st St, Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,32.4494266,-99.73539710000001,Abilene +Grover Nelson Park,"2070 Zoo Ln, Abilene, TX 79602, USA",(325) 676-6217,http://www.abilenetx.gov/parksandrec,32.43859,-99.69477789999999,Abilene +'Toothiana' Statue,"Abilene, TX 79601, USA",Unknown,https://storybookcapitalofamerica.com/storybook-sculptures/,32.4506486,-99.7340607,Abilene +California State Railroad Museum,"125 I St, Sacramento, CA 95814, USA",(916) 323-9280,http://www.californiarailroad.museum/,38.5849368,-121.5043016,Sacramento +Sacramento Zoo,"3930 W Land Park Dr, Sacramento, CA 95822, USA",(916) 808-5888,http://saczoo.org/,38.5392791,-121.5040041,Sacramento +Old Sacramento Waterfront,"1014 2nd St Suite 200, Sacramento, CA 95814, USA",(916) 970-5226,http://www.oldsacramento.com/,38.58280679999999,-121.505165,Sacramento +Crocker Art Museum,"216 O St, Sacramento, CA 95814, USA",(916) 808-7000,http://crockerart.org/,38.5769817,-121.5068534,Sacramento +Fairytale Town,"3901 Land Park Dr, Sacramento, CA 95822, USA",Unknown,http://www.fairytaletown.org/,38.5395888,-121.5012772,Sacramento +Stanford Mansion,"800 N St, Sacramento, CA 95814, USA",(916) 324-9266,http://www.parks.ca.gov/?page_id=489,38.5761903,-121.4978549,Sacramento +California State Capitol Museum,"1315 10th St, Sacramento, CA 95814, USA",(916) 324-0333,http://www.capitolmuseum.ca.gov/,38.5765882,-121.4932368,Sacramento +Sutter's Fort State Historic Park,"2701 L St, Sacramento, CA 95816, USA",(916) 445-4422,http://www.parks.ca.gov/?page_id=485,38.57233889999999,-121.4712056,Sacramento +California Museum,"1020 O St, Sacramento, CA 95814, USA",(916) 653-7524,https://www.californiamuseum.org/,38.574563,-121.4956668,Sacramento +Underground Tours,"101 I St, Sacramento, CA 95814, USA",(916) 808-7059,http://www.sachistorymuseum.org/,38.584838,-121.5047818,Sacramento +Scavenger Hunt Walking Tours - Old Sacramento,"131 J St, Sacramento, CA 95814, USA",(916) 587-2923,https://www.scavengerhuntwalkingtours.com/,38.5833746,-121.5042066,Sacramento +California State Capitol Park,"1300 L St, Sacramento, CA 95814, USA",Unknown,https://capitolmuseum.ca.gov/learn/about-the-capitol/capitol-park/,38.57592820000001,-121.4907022,Sacramento +State Indian Museum,"2618 K St, Sacramento, CA 95816, USA",(916) 324-0971,https://www.parks.ca.gov/?page_id=486,38.5730175,-121.4716465,Sacramento +William Land Regional Park,"3800 W Land Park Dr, Sacramento, CA 95822, USA",(916) 808-6060,https://www.cityofsacramento.org/ParksandRec/Parks/Park-Directory/Land-Park/William-Land,38.5416512,-121.5002654,Sacramento +Tower Bridge,"Sacramento, CA 95814, USA",(916) 808-8300,http://www.cityofsacramento.org/,38.5805535,-121.5083621,Sacramento +Discovery Park,"1600 Garden Hwy, Sacramento, CA 95833, USA",(916) 875-6961,https://regionalparks.saccounty.net/Parks/Pages/DiscoveryPark.aspx,38.60576259999999,-121.50348,Sacramento +Scavenger Hunt Walking Tours - Sacramento Capitol Building,"1315 10th St, Sacramento, CA 95814, USA",(916) 587-2923,https://www.scavengerhuntwalkingtours.com/,38.5765882,-121.4932368,Sacramento +about capa,"1127 11th St, Sacramento, CA 95814, USA",(916) 706-2939,https://www.capalink.org/contact.html,38.578009,-121.4927243,Sacramento +Waterfront Wheel,"1150 Front St, Sacramento, CA 95814, USA",Unknown,https://www.oldsacramento.com/event/waterfront-wheel-1,38.5816592,-121.5064629,Sacramento +California Automobile Museum,"2200 Front St, Sacramento, CA 95818, USA",(916) 442-6802,http://www.calautomuseum.org/,38.5702875,-121.5117814,Sacramento +Cadillac Ranch,"13651 I-40 Frontage Rd, Amarillo, TX 79124, USA",(833) 330-2650,https://www.facebook.com/1974cadillacranch/,35.1872366,-101.9870486,Amarillo +Amarillo Botanical Gardens,"1400 Streit Dr, Amarillo, TX 79106, USA",(806) 352-6513,http://www.amarillobotanicalgardens.org/,35.197691,-101.915258,Amarillo +Amarillo Zoo,"700 Comanchero Trail, Amarillo, TX 79107, USA",(806) 381-7911,https://zoo.amarillo.gov/,35.2394971,-101.8352622,Amarillo +Texas Air & Space Museum,"10001 American Dr, Amarillo, TX 79111, USA",(806) 335-9159,http://www.texasairandspacemuseum.org/,35.2134157,-101.7140016,Amarillo +Don Harrington Discovery Center,"1200 Streit Dr, Amarillo, TX 79106, USA",(806) 355-9547,https://discoverycenteramarillo.org/?utm_source=google-gmb-maps&utm_medium=gmb-website-button&utm_campaign=locl.io&utm_content=551b89ca-129c-4559-8dfb-452b2909f411,35.2000385,-101.9132754,Amarillo +2nd Amendment Cowboy,"2601 Hope Rd, Amarillo, TX 79124, USA",(806) 355-7121,https://m.facebook.com/cadillacranchshop/,35.1864958,-101.9741369,Amarillo +American Quarter Horse Hall of Fame & Museum,"2601 E Interstate Dr, Amarillo, TX 79104, USA",(806) 376-5181,http://aqha.com/foundation,35.1942386,-101.8079849,Amarillo +Wildcat Bluff Nature Center,"2301 N Soncy Rd, Amarillo, TX 79124, USA",(806) 352-6007,http://wildcatbluff.org/?utm_source=google-gmb-maps&utm_medium=gmb-website-button&utm_campaign=locl.io&utm_content=ff955b2f-0847-4125-bf3c-98fd107de872,35.2351151,-101.9398872,Amarillo +Helium Time Columns Monument,"1200-1348 Streit Dr, Amarillo, TX 79106, USA",Unknown,http://www.atlasobscura.com/places/helium-time-columns-monument,35.1995489,-101.9133281,Amarillo +Wonderland Amusement Park,"2601 Dumas Dr, Amarillo, TX 79107, USA",(806) 383-3344,http://www.wonderlandpark.com/,35.2425502,-101.8323075,Amarillo +Amarillo Historical Museum,"1612 S Johnson St, Amarillo, TX 79102, USA",(806) 206-3926,http://amarillohistorical.wixsite.com/amarillohistory,35.195302,-101.8320551,Amarillo +"Amarillo Railroad Museum, Inc.","3160 I Ave, Amarillo, TX 79111, USA",(806) 335-3333,http://www.amarillorailmuseum.com/,35.2443939,-101.674078,Amarillo +Madam Queen,"500 SE 2nd Ave, Amarillo, TX 79101, USA",Unknown,https://www.waymarking.com/waymarks/WMA1AN_Madam_Queen_Amarillo_TX,35.2110486,-101.8302279,Amarillo +Kwahadi Museum of the American Indian,"9151 I-40, Amarillo, TX 79118, USA",(806) 335-3175,http://www.kwahadi.com/,35.1937799,-101.7340188,Amarillo +Free Wall,"716 SW 16th Ave, Amarillo, TX 79101, USA",Unknown,Unknown,35.1986363,-101.8477229,Amarillo +Harrington House Historic Home,"1600 S Polk St, Amarillo, TX 79102, USA",(806) 374-5490,https://www.harringtonhousehistorichome.org/,35.1971342,-101.8395419,Amarillo +Amarillo Museum of Art,"2200 S Van Buren St, Amarillo, TX 79109, USA",(806) 371-5050,http://www.amoa.org/?utm_source=google-gmb-maps&utm_medium=gmb-website-button&utm_campaign=locl.io&utm_content=216dd4bc-81fb-4580-9828-ab80d0de8de8,35.1885361,-101.8451167,Amarillo +Yellow Girl Mural,"616 S Harrison St, Amarillo, TX 79101, USA",Unknown,Unknown,35.2075485,-101.839954,Amarillo +Amarillo Route66,"3511 SW 6th Ave, Amarillo, TX 79106, USA",(806) 373-1427,http://www.amarillo66.com,35.2110614,-101.876196,Amarillo +Thompson Memorial Park,"2401 Dumas Dr, Amarillo, TX 79107, USA",(806) 378-3036,https://www.amarilloparks.org/parks-facilities/parks/thompson-memorial-park,35.2377131,-101.8350602,Amarillo +Sylvan Island,"1st Ave & 2nd Street, Moline, IL 61265, USA",(309) 524-2424,https://www.facebook.com/Sylvan-Island-540088789705192/,41.5129153,-90.53651099999999,Moline +Celebration River Cruises,"2501 River Dr, Moline, IL 61265, USA",(309) 764-1952,http://www.celebrationbelle.com/,41.5141131,-90.50007269999999,Moline +Ben Butterworth Parkway,"3000 River Dr, Moline, IL 61265, USA",(309) 524-2424,https://www.moline.il.us/1149/Ben-Butterworth-Memorial-Parkway,41.5142829,-90.4972829,Moline +John Deere Pavilion,"1400 River Dr, Moline, IL 61265, USA",(309) 765-1000,https://www.deere.com/en/connect-with-john-deere/visit-john-deere/pavilion/,41.5076168,-90.5178983,Moline +Prospect Park,"1584 34th Ave, Moline, IL 61265, USA",(309) 524-2424,https://www.facebook.com/prospectparkmoline/,41.47870919999999,-90.5111744,Moline +Sylvan Island Gateway Park,"Moline, IL 61265, USA",Unknown,Unknown,41.5097925,-90.53626109999999,Moline +Visit Quad Cities - Moline Visitor Center,"1601 River Dr #110, Moline, IL 61265, USA",(800) 747-7800,http://www.visitquadcities.com/,41.5094418,-90.51540659999999,Moline +Millennium Park,"79th Street and, 34th Ave, Moline, IL 61265, USA",(309) 524-2424,http://www.moline.il.us/,41.4789006,-90.43343569999999,Moline +Stephens Park,"7th St & 15th Avenue, FFXC+FP4, 941 6th St, Moline, IL 61265, USA",(309) 524-2424,https://www.moline.il.us/1164/Stephens-Park,41.4999079,-90.5298179,Moline +Riverside Park,"3300 5th Ave, Moline, IL 61265, USA",(309) 524-2000,https://www.moline.il.us/1163/Riverside-Park,41.5096875,-90.4961379,Moline +Wiman/Miss Pattie's Park,"3550 8th St, Moline, IL 61265, USA",(309) 524-2424,http://www.moline.il.us/index.aspx?nid=94,41.4747746,-90.5260796,Moline +McCandless Park,"Moline, IL 61265, USA",(309) 524-2424,https://www.moline.il.us/1158/McCandless-Park,41.5023443,-90.5370597,Moline +Campbell's Island State Historic Site,"124 Island Ave, East Moline, IL 61244, USA",(309) 788-0177,https://dnrhistoric.illinois.gov/experience/sites/site.campbells-island.html,41.5383861,-90.4364691,Moline +Riverside Cemetery,"3400 5th Ave, Moline, IL 61265, USA",(309) 524-2435,https://www.moline.il.us/263/Riverside-Cemetery,41.5063794,-90.49319,Moline +Factory of Fear,"5027 4th Ave, Moline, IL 61265, USA",(309) 631-0558,https://www.qcfactoryoffear.com/,41.513535,-90.4676353,Moline +Coastal Discovery Museum,"70 Honey Horn Dr, Hilton Head Island, SC 29926, USA",(843) 689-6767,http://www.coastaldiscovery.org/,32.2114854,-80.74402479999999,Hilton Head +Harbour Town Lighthouse,"149 Lighthouse Rd, Hilton Head Island, SC 29928, USA",(866) 305-9814,http://www.harbourtownlighthouse.com/,32.1386199,-80.81263659999999,Hilton Head +Coligny Beach Park,"1 Coligny Circle, Hilton Head Island, SC 29928, USA",(843) 342-4580,https://www.hiltonhead.com/coligny-beach-park/,32.14156200000001,-80.7510617,Hilton Head +Folly Field Beach Park,"55 Starfish Dr, Hilton Head Island, SC 29928, USA",(843) 341-4600,https://hiltonheadislandsc.gov/parks/FollyFieldBeach/,32.201649,-80.689193,Hilton Head +Driessen Beach Park,"64 Bradley Beach Rd, Hilton Head Island, SC 29928, USA",(843) 842-5698,http://www.hiltonheadislandsc.gov/ourisland/Parks/parksandfacdetails.cfm?FacilityID=29,32.198988,-80.69429699999999,Hilton Head +Historic Mitchelville Freedom Park,"229 Beach City Rd, Hilton Head Island, SC 29926, USA",(843) 255-7301,Unknown,32.2370053,-80.68726269999999,Hilton Head +Sea Pines Forest Preserve,"Hilton Head Island, SC 29928, USA",(843) 842-1979,Unknown,32.1466096,-80.7819829,Hilton Head +Fish Haul Beach Park,"120 Mitchelville Rd, Hilton Head Island, SC 29926, USA",(843) 341-4600,https://www.hiltonheadislandsc.gov/parks/FishHaulBeach/,32.2421535,-80.6865516,Hilton Head +Pirates of Hilton Head,"149 Lighthouse Rd, Hilton Head Island, SC 29928, USA",(843) 363-7000,http://piratesofhiltonhead.com/,32.138871,-80.813662,Hilton Head +Shelter Cove Community Park,"39 Shelter Cove Ln, Hilton Head Island, SC 29928, USA",(843) 341-4600,https://www.hiltonheadislandsc.gov/parks/ShelterCove/,32.18628330000001,-80.7215828,Hilton Head +King Neptune Sundial,"13 Harbourside Ln, Hilton Head Island, SC 29928, USA",Unknown,https://www.sheltercovehiltonhead.com/post/celebrating-palmetto-dunes-resort-s-50th-anniversary-a-history-of-neptune-statue?utm_campaign=GoogleBusiness&utm_medium=local&utm_source=Google&utm_content=KingNeptune,32.1807202,-80.7280152,Hilton Head +"swallowtail, hilton head island","35 Deallyon Ave, Hilton Head Island, SC 29928, USA",Unknown,Unknown,32.1442018,-80.7604424,Hilton Head +The Sandbox Children's Museum,"80 Nassau St, Hilton Head Island, SC 29928, USA",(843) 842-7645,http://www.thesandbox.org/,32.1443948,-80.754851,Hilton Head +Stoney Baynard Ruins,"Plantation Dr, Hilton Head Island, SC 29928, USA",Unknown,https://heritagelib.org/the-stoneys-the-baynards-and-their-mansion?rq=Stoney%20baynard,32.1291366,-80.8132735,Hilton Head +Gullah Museum of Hilton Head Island,"12 Georgianna Dr, Hilton Head Island, SC 29926, USA",(843) 681-3254,http://www.gullahmuseumhhi.org/,32.2263905,-80.7413411,Hilton Head +Pirates HHI,"86 Helmsman Way, Hilton Head Island, SC 29928, USA",(843) 415-8400,http://www.pirateshhi.com/,32.17717289999999,-80.7719202,Hilton Head +Atlantic Ocean beach,"2 Shelter Cove Ln, Hilton Head Island, SC 29928, USA",Unknown,Unknown,32.18145369999999,-80.7335035,Hilton Head +Lowcountry Celebration Park,"94 Pope Ave, Hilton Head Island, SC 29928, USA",(843) 341-4600,https://hiltonheadislandsc.gov/parks/LowcountryCelebration/home.cfm,32.143504,-80.7539268,Hilton Head +Adventure Hilton Head,"33 Broad Creek Marina Way, Hilton Head Island, SC 29926, USA",(843) 682-6000,https://myadventurehiltonhead.com/,32.18658000000001,-80.758864,Hilton Head +Gregg Russell Harbour Town Playground,"140 Lighthouse Rd, Hilton Head Island, SC 29928, USA",(843) 785-3333,https://www.seapines.com/resort_activities/harbour_town/playground.aspx,32.1391694,-80.81053360000001,Hilton Head +Rockefeller Center,"45 Rockefeller Plaza, New York, NY 10111, USA",(212) 588-8601,https://www.rockefellercenter.com/,40.7587402,-73.9786736,Manhattan +Top of The Rock,"30 Rockefeller Plaza, New York, NY 10112, USA",(212) 698-2000,https://www.rockefellercenter.com/attractions/top-of-the-rock-observation-deck/,40.75934950000001,-73.9794087,Manhattan +The High Line,"New York, NY 10011, USA",(212) 500-6035,https://www.thehighline.org/,40.7479925,-74.0047649,Manhattan +SUMMIT One Vanderbilt,"45 E 42nd St, New York, NY 10017, USA",Unknown,http://www.summitov.com/,40.752764,-73.9787461,Manhattan +One World Observatory,"117 West St, New York, NY 10007, USA",(844) 696-1776,https://oneworldobservatory.com/,40.7130062,-74.013173,Manhattan +The Channel Gardens,"New York, NY 10020, USA",Unknown,https://www.rockefellercenter.com/attractions/the-channel-gardens/,40.7585013,-73.97808700000002,Manhattan +Times Square,"Manhattan, NY 10036, USA",Unknown,https://www.timessquarenyc.org/,40.7579747,-73.9855426,Manhattan +American Museum of Natural History,"200 Central Park West, New York, NY 10024, USA",(212) 769-5100,https://www.amnh.org/,40.78132409999999,-73.9739882,Manhattan +Statue of Liberty,"New York, NY 10004, USA",(212) 363-3200,https://www.nps.gov/stli/index.htm,40.6892494,-74.04450039999999,Manhattan +Central Park,"New York, NY, USA",(212) 310-6600,https://www.centralparknyc.org/,40.7825547,-73.9655834,Manhattan +Chrysler Building,"405 Lexington Ave, New York, NY 10174, USA",(212) 682-3070,https://www.tishmanspeyer.com/projects-investments,40.7516208,-73.97550199999999,Manhattan +The Ramble,"79th St Transverse, New York, NY 10024, USA",(212) 310-6600,https://www.centralparknyc.org/attractions/the-ramble,40.77787360000001,-73.9697174,Manhattan +The Ride NYC,"W 42nd St, New York, NY 10036, USA",(212) 221-0853,http://www.experiencetheride.com/,40.75720949999999,-73.98933099999999,Manhattan +Empire State Building,"20 W 34th St., New York, NY 10001, USA",(212) 736-3100,https://www.esbnyc.com/,40.7484405,-73.98566439999999,Manhattan +The Metropolitan Museum of Art,"1000 5th Ave, New York, NY 10028, USA",(212) 535-7710,https://www.metmuseum.org/,40.7794366,-73.963244,Manhattan +Solomon R. Guggenheim Museum,"1071 5th Ave, New York, NY 10128, USA",(212) 423-3500,https://www.guggenheim.org/,40.7829796,-73.9589706,Manhattan +The Battery,"Battery Park City, New York, NY 10004, USA",(212) 344-3491,https://www.thebattery.org/,40.70293119999999,-74.0153603,Manhattan +New-York Historical Society,"170 Central Park West, New York, NY 10024, USA",(212) 873-3400,https://www.nyhistory.org/,40.77934870000001,-73.9739079,Manhattan +Sightseeing Tour,"700 7th Ave, New York, NY 10018, USA",Unknown,Unknown,40.7535344,-73.9891518,Manhattan +Central Park Carousel,"1802 E 65th St, New York, NY 10065, USA",(212) 452-0707,https://carouselatcentralpark.com/,40.76992720000001,-73.9752549,Manhattan +Minneapolis Sculpture Garden,"725 Vineland Pl, Minneapolis, MN 55403, USA",(612) 375-7600,https://www.walkerart.org/garden/,44.96954789999999,-93.28978029999999,Minneapolis +Minneapolis Institute of Art,"2400 3rd Ave S, Minneapolis, MN 55404, USA",(888) 642-2787,https://new.artsmia.org/,44.95850009999999,-93.273218,Minneapolis +Mill City Museum,"704 S 2nd St, Minneapolis, MN 55401, USA",(612) 341-7555,https://www.mnhs.org/millcity,44.9787828,-93.25727099999999,Minneapolis +Weisman Art Museum,"333 E River Pkwy, Minneapolis, MN 55455, USA",(612) 625-9494,https://wam.umn.edu/,44.9731104,-93.2369351,Minneapolis +Mill Ruins Park,"102 Portland Ave S, Minneapolis, MN 55401, USA",(612) 313-7793,https://www.minneapolisparks.org/parks__destinations/parks__lakes/mill_ruins_park/,44.9798041,-93.2563898,Minneapolis +Gold Medal Park,"Second Street and 11th Avenue South, Minneapolis, MN 55415, USA",(612) 904-5607,http://www.goldmedalpark.org/,44.9776218,-93.25325120000001,Minneapolis +Foshay Museum and Observation Deck,"821 S Marquette Ave 30th floor, Minneapolis, MN 55402, USA",(612) 215-3700,http://wminneapolis.com/,44.9747902,-93.2719858,Minneapolis +Minnehaha Falls,"4801 S Minnehaha Dr, Minneapolis, MN 55417, USA",(612) 230-6400,https://www.minneapolisparks.org/parks__destinations/parks__lakes/minnehaha_regional_park/,44.91535599999999,-93.21107810000001,Minneapolis +Prospect Park Water Tower,"55 Malcolm Ave SE, Minneapolis, MN 55414, USA",(612) 767-6531,https://www.prospectparkmpls.org/,44.9686771,-93.2126581,Minneapolis +St. Anthony Falls Visitor Center,"1 Portland Ave, Minneapolis, MN 55401, USA",(651) 293-0200,https://www.nps.gov/miss/planyourvisit/stanfall.htm,44.98111000000001,-93.2582359,Minneapolis +Walker Art Center,"725 Vineland Pl, Minneapolis, MN 55403, USA",(612) 375-7600,https://walkerart.org/,44.9681442,-93.2886494,Minneapolis +Mall of America®,"60 E Broadway, Bloomington, MN 55425, USA",(952) 883-8800,https://mallofamerica.com/,44.8548651,-93.2422148,Minneapolis +Central Mississippi Riverfront Regional Park,"East and West banks of the Mississippi River between & 35W bridges, Ave N, Minneapolis, MN 55401, USA",Unknown,https://www.minneapolisparks.org/parks__destinations/parks__lakes/central_mississippi_riverfront_regional_park/,44.97951700000001,-93.2565925,Minneapolis +Minneapolis Lookout,"3045-3109 Ridgway Pkwy, Minneapolis, MN 55413, USA",Unknown,Unknown,45.0034454,-93.2182984,Minneapolis +American Swedish Institute,"2600 Park Ave, Minneapolis, MN 55407, USA",(612) 871-4907,http://www.asimn.org/,44.9545975,-93.2658596,Minneapolis +Minnehaha Regional Park,"4801 S Minnehaha Dr, Minneapolis, MN 55417, USA",(612) 230-6400,https://www.minneapolisparks.org/parks__destinations/parks__lakes/minnehaha_regional_park/,44.9167388,-93.21010659999999,Minneapolis +Water Power Park,"204 SE Main St, Minneapolis, MN 55414, USA",(612) 230-6400,https://www.nps.gov/miss/planyourvisit/waterpower.htm,44.982972,-93.2565953,Minneapolis +Stepped Tower,"Unnamed Road, Minneapolis, MN 55454, USA",Unknown,Unknown,44.97339270000001,-93.2423939,Minneapolis +Boom Island Lighthouse,"3-29 Plymouth Ave NE, Minneapolis, MN 55413, USA",Unknown,https://www.minneapolisparks.org/parks__destinations/parks__lakes/boom_island_park/,44.9931347,-93.27178939999999,Minneapolis +Boom Island Park,"724 Sibley St NE, Minneapolis, MN 55413, USA",(612) 230-6400,https://www.minneapolisparks.org/,44.9920367,-93.2686552,Minneapolis +Edison & Ford Winter Estates,"2350 McGregor Blvd, Fort Myers, FL 33901, USA",(239) 334-7419,https://www.edisonfordwinterestates.org/,26.6338939,-81.880091,Fort Myers +River District,"2180 First St #510, Fort Myers, FL 33901, USA",Unknown,https://www.myriverdistrict.com/,26.6449682,-81.8687348,Fort Myers +Six Mile Cypress Slough Preserve,"7751 Penzance Blvd, Fort Myers, FL 33966, USA",(239) 533-7550,https://www.sloughpreserve.org/,26.5705414,-81.82656349999999,Fort Myers +IMAG History & Science Center,"2000 Cranford Ave, Fort Myers, FL 33916, USA",(239) 243-0043,http://www.theimag.org/,26.6404314,-81.8594537,Fort Myers +Calusa Nature Center & Planetarium,"3450 Ortiz Ave, Fort Myers, FL 33905, USA",(239) 275-3435,http://www.calusanature.org/,26.6156711,-81.81246949999999,Fort Myers +Manatee Park,"10901 Palm Beach Blvd, Fort Myers, FL 33905, USA",(239) 690-5030,https://www.leegov.com/parks/parks/manateepark,26.69315319999999,-81.7775541,Fort Myers +Centennial Park,"2000 W First St, Fort Myers, FL 33901, USA",(239) 321-7524,Unknown,26.6437185,-81.8740711,Fort Myers +Lakes Park,"7330 Gladiolus Dr, Fort Myers, FL 33908, USA",(239) 533-7575,http://www.leegov.com/parks/parks/lakespark,26.528064,-81.876818,Fort Myers +Shell Factory,"2787 N Tamiami Trail, North Fort Myers, FL 33903, USA",(239) 995-2141,https://www.shellfactory.com/,26.7057308,-81.8980436,Fort Myers +North Shore Park,"13001 N Cleveland Ave, North Fort Myers, FL 33903, USA",(239) 357-5443,https://www.leegov.com/parks/parks/northshore,26.6575736,-81.88283849999999,Fort Myers +Lovers Key State Park,"8700 Estero Blvd, Fort Myers Beach, FL 33931, USA",(239) 463-4588,https://www.floridastateparks.org/park/Lovers-Key,26.3913267,-81.86914139999999,Fort Myers +Riverside Park,"3061 E Riverside Dr, Fort Myers, FL 33916, USA",(239) 321-7000,https://www.cityftmyers.com/facilities/facility/details/Riverside-Park-33,26.6571136,-81.85300040000001,Fort Myers +Escape Room Adventures,"12995 S Cleveland Ave #217, Fort Myers, FL 33907, USA",(239) 689-6979,http://www.escaperoomadventures.com/,26.5525,-81.8705556,Fort Myers +Snell Park,"2920 Valencia Way, Fort Myers, FL 33901, USA",(239) 321-7530,https://www.cityftmyers.com/facilities/facility/details/Snell-Park-37,26.6236615,-81.8870499,Fort Myers +Mound House,"451 Connecticut St, Fort Myers Beach, FL 33931, USA",(239) 765-0865,http://www.moundhouse.org/,26.4461233,-81.9277528,Fort Myers +The Shell Factory and Nature Park,"16554 North Cleveland Avenue, 41 N Tamiami Trail US, North Fort Myers, FL 33903, USA",(239) 995-2141,https://www.shellfactory.com/,26.7059888,-81.8970469,Fort Myers +Clemente Park,"3265 Dr Martin Luther King Jr Blvd, Fort Myers, FL 33916, USA",Unknown,Unknown,26.6419966,-81.8476275,Fort Myers +Sky Zone Trampoline Park,"9370 Dynasty Dr, Fort Myers, FL 33905, USA",(239) 344-8244,https://www.skyzone.com/northfortmyers,26.6143728,-81.80136879999999,Fort Myers +Vivas Palm Park,"2414 Edwards Dr, Fort Myers, FL 33901, USA",(239) 931-7027,https://www.cityftmyers.com/Facilities/Facility/Details/Park-of-Palms-32,26.64675819999999,-81.868619,Fort Myers +Fort Myers Mural Society,"2443 First St, Fort Myers, FL 33901, USA",(239) 461-7245,https://fortmyersmuralsociety.com/,26.6458659,-81.8673645,Fort Myers +International UFO Museum and Research Center and Gift Shop,"114 N Main St, Roswell, NM 88203, USA",(575) 625-9495,http://www.roswellufomuseum.com/,33.3936879,-104.5229602,Roswell +Spaceport Roswell,"121 E 2nd St, Roswell, NM 88201, USA",(575) 495-4123,https://spaceportroswellnm.com/,33.3943676,-104.5216013,Roswell +Spring River Zoo,"1306 E College Blvd, Roswell, NM 88201, USA",(575) 624-6760,http://springriverzoo.com/,33.4071674,-104.503996,Roswell +Roswell Museum,"1011 N Richardson Ave, Roswell, NM 88201, USA",(575) 624-6744,https://roswell-nm.gov/1259/Roswell-Museum,33.404179,-104.5236683,Roswell +The Anderson Museum of Contemporary Art,"409 E College Blvd, Roswell, NM 88201, USA",(575) 623-5600,https://www.rair.org/about-amoca,33.4089852,-104.5168281,Roswell +Roswell Welcome Sign,"Roswell, NM 88203, USA",(575) 623-3442,Unknown,33.3382342,-104.5060945,Roswell +Robert H Goddard Planetarium,"1011 N Richardson Ave, Roswell, NM 88201, USA",(575) 624-6744,http://roswell-nm.gov/328/Goddard-Planetarium,33.4043228,-104.5241924,Roswell +Walker Aviation Museum,"Airport Terminal Building, 1 Jerry Smith Cir Suite 7, Roswell, NM 88203, USA",(575) 347-2464,http://www.wafbmuseum.org/,33.3066523,-104.5193927,Roswell +Alien Zone,"216 N Main St, Roswell, NM 88201, USA",(575) 627-6982,https://alienzoneroswellnm.com/,33.394923,-104.523166,Roswell +BrickTown: Alien Attack,"201 N Main St, Roswell, NM 88201, USA",(575) 208-9372,https://www.bricktownnm.com/,33.3943949,-104.5223344,Roswell +Spring River Park,"1306 E College Blvd, Roswell, NM 88201, USA",(575) 624-6760,http://www.roswell-nm.gov/,33.4083837,-104.5044835,Roswell +"Roswell, NM Welcome Sign","4001 W 2nd St, Roswell, NM 88201, USA",Unknown,Unknown,33.39446350000001,-104.5815214,Roswell +Roswell welcome sign and spaceship,"US Hwy 285, Roswell, NM 88203, USA",Unknown,Unknown,33.3107361,-104.4771983,Roswell +Roswell Historical Marker,"Roswell, NM 88201, USA",Unknown,Unknown,33.4802659,-104.5198342,Roswell +Roswell Visitors Center,"426 N Main St, Roswell, NM 88201, USA",(575) 623-3442,http://seeroswell.com/,33.3974248,-104.5230764,Roswell +Miniatures And Curious Collections Museum,"320 N Richardson Ave, Roswell, NM 88201, USA",(575) 208-0662,http://miniaturesandcuriouscollectionsmuseum.org/,33.39616770000001,-104.5246276,Roswell +Roswell UFO Spacewalk,"116 E 2nd St, Roswell, NM 88201, USA",(575) 910-2113,https://www.facebook.com/roswellufospacewalk/,33.3941164,-104.5218259,Roswell +Bottomless Lakes State Park,"545A Bottomless Lakes Rd, Roswell, NM 88201, USA",(575) 988-3638,http://www.emnrd.state.nm.us/SPD/bottomlesslakesstatepark.html,33.3361819,-104.3327217,Roswell +J Kenneth Smith Bird Sanctuary and Nature Center,"401 N Sycamore Ave, Roswell, NM 88201, USA",Unknown,http://www.roswellbirds.org/,33.397425,-104.5584262,Roswell +McDaniel Light display,"2509 N Cambridge Ave, Roswell, NM 88201, USA",(575) 317-4373,Unknown,33.4242738,-104.5344172,Roswell +Hugh Ramsey Nature Park,"1000 TX-499 Loop, Harlingen, TX 78550, USA",(956) 216-5951,http://www.myharlingen.us/,26.1859224,-97.66404879999999,Harlingen +Harlingen Arts and Heritage Museum,"2425 Boxwood St, Harlingen, TX 78550, USA",(956) 216-4900,https://www.harlingentx.gov/page/museum.home,26.21680640000001,-97.6672516,Harlingen +McKelvey Park,"1325 S 77 Sunshine Strip, Harlingen, TX 78550, USA",(956) 216-5951,Unknown,26.1795176,-97.67816340000002,Harlingen +The Present and Future of Harlingen Texas by Diana Kersey,"701 Harlingen Heights Dr, Harlingen, TX 78552, USA",(210) 573-7418,https://www.dianakersey.com/the-present-and-future-of-harlingen-texas.html,26.1991099,-97.7238134,Harlingen +Urban Air Trampoline and Adventure Park,"2020 S Expressway 83, Harlingen, TX 78552, USA",(956) 290-9379,https://www.urbanair.com/texas-harlingen?utm_source=gmb&utm_medium=website,26.1831801,-97.7194449,Harlingen +Harlingen Thicket World Birding Center,"706 E Taft Ave, Harlingen, TX 78550, USA",Unknown,http://www.worldbirdingcenter.org/,26.178764,-97.68525819999999,Harlingen +Pendleton Park,"1427 Morgan Blvd, Harlingen, TX 78550, USA",(956) 216-5951,https://www.harlingentx.gov/page/parksandrec.aquatics,26.2056076,-97.674628,Harlingen +C B Wood Park,"400 W Harding Ave, Harlingen, TX 78550, USA",(956) 216-5951,Unknown,26.1748572,-97.69628329999999,Harlingen +Bill Haley mural,"202 W Monroe Ave, Harlingen, TX 78550, USA",Unknown,Unknown,26.193942,-97.69707819999999,Harlingen +Seattle Aquarium,"1483 Alaskan Way Pier 59, Seattle, WA 98101, USA",(206) 386-4300,https://www.seattleaquarium.org/,47.60740020000001,-122.3429559,Seattle +Chihuly Garden and Glass,"305 Harrison St, Seattle, WA 98109, USA",(206) 753-4940,https://www.chihulygardenandglass.com/,47.6205599,-122.3504476,Seattle +Space Needle,"400 Broad St, Seattle, WA 98109, USA",(206) 905-2100,https://www.spaceneedle.com/,47.6205063,-122.3492774,Seattle +Olympic Sculpture Park,"2901 Western Ave, Seattle, WA 98121, USA",(206) 654-3100,https://www.seattleartmuseum.org/visit/olympic-sculpture-park/,47.6166028,-122.3553167,Seattle +Seattle Center,"305 Harrison St, Seattle, WA 98109, USA",(206) 684-7200,https://www.seattlecenter.com/,47.6205976,-122.3505055,Seattle +The Seattle Great Wheel,"1301 Alaskan Wy, Seattle, WA 98101, USA",(206) 623-8607,http://seattlegreatwheel.com/,47.6061342,-122.3425246,Seattle +Museum of Pop Culture,"325 5th Ave N, Seattle, WA 98109, USA",(206) 770-2700,https://www.mopop.org/,47.6214824,-122.3481245,Seattle +Kerry Park,"211 W Highland Dr, Seattle, WA 98119, USA",(206) 684-4075,http://www.seattle.gov/parks/find/parks/kerry-park,47.6294692,-122.3599224,Seattle +The Museum of Flight,"Seattle, WA 98108, USA",(206) 764-5700,https://www.museumofflight.org/,47.5185379,-122.2968545,Seattle +Discovery Park,"Seattle, WA 98199, USA",(206) 386-4236,https://www.seattle.gov/parks/allparks/discovery-park,47.6613197,-122.4171413,Seattle +The Gum Wall,"1428 Post Alley, Seattle, WA 98101, USA",(206) 587-2414,https://unexpectedproductions.org/gumwall/,47.6083607,-122.3403382,Seattle +Washington Park Arboretum,"2300 Arboretum Dr E, Seattle, WA 98112, USA",(206) 543-8800,https://botanicgardens.uw.edu/washington-park-arboretum/,47.6364162,-122.2958146,Seattle +Ballard (Hiram M. Chittenden) Locks,"3015 NW 54th St, Seattle, WA 98107, USA",(206) 780-2500,https://ballardlocks.org/,47.66550429999999,-122.3971838,Seattle +Seattle Art Museum,"1300 1st Ave, Seattle, WA 98101, USA",(206) 654-3100,https://www.seattleartmuseum.org/,47.6075253,-122.3379599,Seattle +International Fountain,"305 Harrison St, Seattle, WA 98109, USA",(206) 684-7200,https://www.seattlecenter.com/explore/attractions/international-fountain,47.6225227,-122.3520323,Seattle +Beneath the Streets,"102 Cherry St, Seattle, WA 98104, USA",(206) 624-1237,http://www.beneath-the-streets.com/,47.6028497,-122.3340931,Seattle +Fremont Troll,"North 36th Street, Troll Ave N, Seattle, WA 98103, USA",Unknown,Unknown,47.65106280000001,-122.3474988,Seattle +Pike Place Market,"85 Pike St, Seattle, WA 98101, USA",(206) 682-7453,https://www.pikeplacemarket.org/,47.6089649,-122.3405821,Seattle +Smith Tower,"506 2nd Ave, Seattle, WA 98104, USA",(206) 624-0414,http://www.smithtower.com/,47.6018528,-122.3318583,Seattle +Museum of History & Industry (MOHAI),"860 Terry Ave N, Seattle, WA 98109, USA",(206) 324-1126,https://mohai.org/,47.6275253,-122.3365631,Seattle +Manchester Museum,"University of, Oxford Rd, Manchester M13 9PL, UK",0161 275 2648,http://www.manchester.ac.uk/museum,53.4664686,-2.2342519,Manchester +National Football Museum,"Urbis Building Cathedral Gardens, Todd St, Manchester M4 3BG, UK",0161 605 8200,http://www.nationalfootballmuseum.com/,53.48592980000001,-2.2421548,Manchester +Manchester Art Gallery,"Mosley St, Manchester M2 3JL, UK",0161 235 8888,https://manchesterartgallery.org/,53.47869430000001,-2.2413604,Manchester +Science and Industry Museum,"Liverpool Rd, Manchester M3 4JP, UK",0330 058 0058,https://www.scienceandindustrymuseum.org.uk/,53.47713580000001,-2.2545821,Manchester +Heaton Park,"Middleton Rd, Manchester M25 2SW, UK",0161 773 1085,http://www.manchester.gov.uk/heatonpark,53.5349877,-2.2520726,Manchester +Fletcher Moss Botanical Gardens,"18 Stenner Ln, Didsbury, Manchester M20 2RQ, UK",0161 434 1877,https://fletchermossgardens.org.uk/,53.4097528,-2.2336973,Manchester +Manchester Cathedral,"Victoria St, Manchester M3 1SX, UK",0161 833 2220,http://www.manchestercathedral.org/,53.4851459,-2.2443156,Manchester +The Crystal Maze LIVE Experience,"St Johns, Lower Byrom St, Manchester M3 4FP, UK",Unknown,https://the-crystal-maze.com/manchester/?utm_source=google&utm_medium=organic&utm_campaign=gmb-listing,53.4775001,-2.2539834,Manchester +"Museum of Transport, Greater Manchester","Boyle St, Cheetham Hill, Manchester M8 8UW, UK",0161 205 2122,https://motgm.uk/,53.50302500000002,-2.233625,Manchester +Heaton Hall,"GPPW+CR, Manchester M25 2SW, UK",Unknown,Unknown,53.5361028,-2.2528762,Manchester +People's History Museum,"Left Bank, Manchester M3 3ER, UK",0161 838 9190,http://www.phm.org.uk/,53.4814144,-2.2528607,Manchester +The Manchester City Stadium Tour,"Etihad Stadium, Etihad Campus, Manchester M11 3FF, UK",0161 444 1894,http://www.mancity.com/tours,53.4821942,-2.2001674,Manchester +IWM North,"Trafford Wharf Rd, Trafford Park, Stretford, Manchester M17 1TZ, UK",0161 836 4000,https://www.iwm.org.uk/visits/iwm-north,53.4697358,-2.2987405,Manchester +The Tree of Life,"Sackville Gardens, Sackville St, Canal St, Manchester M1 3EZ, UK",Unknown,Unknown,53.47692929999999,-2.2362958,Manchester +Victoria Baths,"Hathersage Rd, Manchester M13 0FE, UK",0161 224 2020,http://www.victoriabaths.org.uk/,53.4600473,-2.2163707,Manchester +Greater Manchester Police Museum & Archives,"57A Newton St, Manchester M1 1ET, UK",0161 856 4500,http://gmpmuseum.co.uk/,53.48241729999999,-2.2323904,Manchester +Manchester Albert Square,"Manchester M2 5PE, UK",Unknown,https://www.visitmanchester.com/things-to-see-and-do/albert-square-p33691,53.4793597,-2.2451172,Manchester +Manchester Chinatown,"Nicholas St, Manchester M1 4HQ, UK",Unknown,Unknown,53.4783,-2.2398884,Manchester +Abraham Lincoln Statue,"Lincoln Grove, Manchester M2 5LF, UK",Unknown,http://manchesterhistory.net/manchester/statues/lincoln.html,53.47967930000001,-2.2471289,Manchester +LEGOLAND Discovery Centre,"Trafford Palazzo in TraffordCity next to The Trafford Centre, Trafford Park, Stretford, Manchester M17 8AS, UK",0161 749 2870,https://www.legolanddiscoverycentre.com/manchester/,53.46679280000001,-2.342210300000001,Manchester +Gulf Islands Waterpark,"17200 16th St, Gulfport, MS 39503, USA",(228) 328-1266,http://www.gulfislandswaterpark.com/,30.431413,-89.121286,Gulfport +Ship Island Excursions,"1040 23rd Ave, Gulfport, MS 39501, USA",(228) 864-1014,http://www.msshipisland.com/,30.3641305,-89.0901555,Gulfport +Zip'N Fun Adventure Park,"17200 16th St, Gulfport, MS 39503, USA",(228) 206-7056,http://zipnfun.com/,30.4310522,-89.1225913,Gulfport +Fishbone Alley,"2609 14th St, Gulfport, MS 39501, USA",Unknown,https://m.facebook.com/pages/Fishbone-Alley-Downtown-Gulfport/970680052991860,30.36807250000001,-89.0943937,Gulfport +Lynn Meadows Discovery Center,"246 Dolan Ave, Gulfport, MS 39507, USA",(228) 897-6039,http://www.lmdc.org/,30.3824614,-89.0374497,Gulfport +Ocean Adventures Marine Park,"10801 Dolphin Ln, Gulfport, MS 39503, USA",(228) 896-9182,http://oceanadventures.us/,30.4204487,-89.0187972,Gulfport +TrainTastic formerly the Mississippi Coast Model Railroad Museum,"615 Pass Rd, Gulfport, MS 39507, USA",(228) 284-5731,http://www.traintastic.com/,30.3882662,-89.06180909999999,Gulfport +World's Largest Rocking Chair,"11451 Canal Rd, Gulfport, MS 39503, USA",(228) 832-0079,Unknown,30.4541629,-89.1372574,Gulfport +Mississippi Aquarium,"2100 E Beach Blvd, Gulfport, MS 39501, USA",(228) 241-1300,https://www.msaquarium.org/,30.3679921,-89.08856999999999,Gulfport +Bachelor Island,"1400 Mill Rd, Gulfport, MS 39507, USA",Unknown,Unknown,30.40572240000001,-89.03651599999999,Gulfport +Gulfport Pteranodons,"14208 S Swan Rd, Gulfport, MS 39503, USA",Unknown,Unknown,30.4935477,-89.0762381,Gulfport +Jones Park,"US-90, Gulfport, MS 39501, USA",(228) 868-5881,http://gulfport-ms.gov/,30.3661936,-89.08880669999999,Gulfport +Gulfport,"212 E Beach Blvd, Gulfport, MS 39507, USA",Unknown,Unknown,30.3760192,-89.0527133,Gulfport +Institute For Marine Mammal Studies,"10801 Dolphin Ln, Gulfport, MS 39503, USA",(228) 896-9182,http://www.imms.org/,30.4204487,-89.0187972,Gulfport +Mississippi Aviation Heritage Museum,"MS Aviation Museum, 429 Pass Rd, Gulfport, MS 39507, USA",(601) 299-2816,https://msaviationmuseum.org/,30.3897205,-89.05810869999999,Gulfport +The Beach,"Rich Ave, Gulfport, MS 39501, USA",Unknown,Unknown,30.3552173,-89.1238439,Gulfport +Gulfport Mississippi Beaches,"E Beach Blvd, Gulfport, MS 39507, USA",Unknown,Unknown,30.3776452,-89.04719709999999,Gulfport +Captains Warf Marina,"1408 Cowan Rd, Gulfport, MS 39507, USA",(228) 669-8874,Unknown,30.405932,-89.0265919,Gulfport +West Side Park,"3815-3949 8th St, Gulfport, MS 39501, USA",Unknown,Unknown,30.3612569,-89.1088099,Gulfport +Altitude Trampoline Park,"9444 US 49, Gulfport, MS 39503, USA",(228) 314-3316,http://www.altitudegulfport.com/,30.4250952,-89.09004469999999,Gulfport +Florida Museum of Natural History-Exhibits,"3215 Hull Rd, Gainesville, FL 32611, USA",(352) 846-2000,https://www.floridamuseum.ufl.edu/,29.6359326,-82.3698148,Gainesville +Devil's Millhopper Geological State Park,"4732 Millhopper Rd, Gainesville, FL 32653, USA",(352) 955-2008,https://www.floridastateparks.org/park/Devils-Millhopper,29.7069688,-82.3952053,Gainesville +Sweetwater Wetlands Park,"325 SW Williston Rd, Gainesville, FL 32601, USA",(352) 554-5871,https://www.gainesvillefl.gov/Parks/Sweetwater-Wetlands-Park,29.619721,-82.32966739999999,Gainesville +Kanapaha Botanical Gardens,"Summer House, 4700 SW 58th Dr, Gainesville, FL 32608, USA",(352) 372-4981,http://www.kanapaha.org/,29.6123167,-82.4089389,Gainesville +Morningside Nature Center,"3540 E University Ave, Gainesville, FL 32641, USA",(352) 393-8240,Unknown,29.656867,-82.27752199999999,Gainesville +Matheson History Museum,"513 E University Ave, Gainesville, FL 32601, USA",(352) 378-2280,http://www.mathesonmuseum.org/,29.6516524,-82.3202967,Gainesville +Depot Park,"874 SE 4th St, Gainesville, FL 32601, USA",(352) 393-8510,http://www.depotpark.org/,29.6444536,-82.3221981,Gainesville +Butterfly Rainforest at the Florida Museum of Natural History,"3215 Hull Rd, Gainesville, FL 32611, USA",(352) 846-2000,https://www.floridamuseum.ufl.edu/exhibits/butterfly-rainforest/,29.636308,-82.37032959999999,Gainesville +Sweetwater Preserve,"309 SE 16th Ave, Gainesville, FL 32601, USA",(352) 264-6800,Unknown,29.6289767,-82.3214699,Gainesville +Cade Museum for Creativity & Invention,"811 S Main St, Gainesville, FL 32601, USA",(352) 371-8001,http://www.cademuseum.org/,29.6437271,-82.3248136,Gainesville +Alfred A. Ring Park,"1801 NW 23rd Blvd, Gainesville, FL 32605, USA",(352) 334-5067,https://www.gainesvillefl.gov/Parks/Alfred-A.-Ring-Park,29.6739166,-82.3472547,Gainesville +"Visit Gainesville, Alachua County, FL","33 N Main St, Gainesville, FL 32601, USA",(352) 374-5260,http://www.visitgainesville.com/,29.6524262,-82.3248796,Gainesville +Loblolly Woods Nature Park,"3315 NW 5th Ave, Gainesville, FL 32607, USA",(352) 334-5067,http://www.cityofgainesville.org/tabid/182/Default.aspx#LoblollyWoods,29.6548909,-82.3714668,Gainesville +Sweetwater Park,"532 SE 2nd Ave, Gainesville, FL 32601, USA",Unknown,Unknown,29.65067670000001,-82.32021,Gainesville +Boulware Springs Park,"3300 SE 15th St, Gainesville, FL 32641, USA",(352) 334-5067,https://www.gainesvillefl.gov/Parks/Boulware-Springs-Nature-Park,29.6209969,-82.3075446,Gainesville +Historic Haile Homestead,"8500 SW Archer Rd, Gainesville, FL 32608, USA",(352) 336-9096,http://www.hailehomestead.org/,29.5945183,-82.4353511,Gainesville +Fred Cone Park,"2801 E University Ave, Gainesville, FL 32641, USA",(352) 334-0720,https://www.gainesvillesportscommission.com/fred-cone-park/,29.6504357,-82.2887983,Gainesville +UF Bat Houses,"Museum Rd, Gainesville, FL 32611, USA",Unknown,http://www.floridamuseum.ufl.edu/bats,29.64423990000001,-82.3628313,Gainesville +Historic Matheson House,"528 SE 1st Ave, Gainesville, FL 32601, USA",(352) 378-2280,http://www.mathesonmuseum.org/,29.65104629999999,-82.3194974,Gainesville +Palm Point Park,"7401 Lake Shore Dr, Gainesville, FL 32641, USA",(352) 334-5067,https://www.gainesvillefl.gov/Parks/Palm-Point-Nature-Park,29.63674,-82.23773,Gainesville +National Park of American Samoa Visitor Center,"P8G3+66M, Rte 001, Fagatogo, Eastern District 96799, American Samoa",(684) 633-7082,https://www.nps.gov/npsa/index.htm,-14.2744165,-170.696959,Pago Pago +National Park of American Samoa,"P8R7+RJC, Vatia, American Samoa",(684) 633-7082,http://www.nps.gov/npsa/,-14.2579491,-170.6859778,Pago Pago +Jean P Haydon Museum,"P8C6+WVG, Fagatogo, Eastern District 96799, American Samoa",(684) 633-4347,https://haydonmuseumamericansamoa.org/,-14.277686,-170.6877839,Pago Pago +Blunts Point Battery,"P87F+V89, Road 001, Utulei, Eastern District, American Samoa",Unknown,https://www.nps.gov/thingstodo/hike-historical-wwii-blunts-point-trail.htm,-14.2853307,-170.6766523,Pago Pago +Fagatele Marine Sanctuary,"J6RR+GCC, Fagatele Bay Trl, Taputimu, Western District, American Samoa",(684) 633-6500,http://americansamoa.noaa.gov/,-14.3586818,-170.7589766,Pago Pago +American Samoa Visitors Bureau (ASVB),"Airport Road, Tafuna, P8C6+X4M, Pago Pago, AS 96799, American Samoa",(684) 633-9805,http://www.americansamoa.travel,-14.2775423,-170.6897073,Pago Pago +Pago Pago Harbour,"Pago Pago Harbour, Eastern District, American Samoa",Unknown,Unknown,-14.2734873,-170.6840121,Pago Pago +Breakers Point Trail,"P86Q+F72, Lauli'i, Eastern District, American Samoa",Unknown,Unknown,-14.2888576,-170.6618687,Pago Pago +Tauese P. F. Sunia Ocean Center,"P8F9+95J, Utulei, Eastern District 96799, American Samoa",(684) 633-6500,http://americansamoa.noaa.gov/about/ocean-center.html,-14.2765327,-170.6821132,Pago Pago +CCJS Pago Pago,"P7FV+PH3, Pago Pago, Eastern District 96799, American Samoa",Unknown,Unknown,-14.2757466,-170.706071,Pago Pago +Chief Shakes Longhouse,"Shakes St, Wrangell, AK 99929, USA",(907) 874-4304,https://m.facebook.com/wrangellcooperativeassociation/photos/a.899339836820109.1073741827.899330203487739/899339756820117/?type=3&source=44,56.4656675,-132.3805976,Wrangell +Chief Shakes Hot Springs Site,"Wrangell, AK 99929, USA",(907) 225-3101,http://www.fs.usda.gov/recarea/tongass/recarea/?recid=79159,56.7208185,-132.0158209,Wrangell +Nepali snow bikki boss,"Wrangell, AK 99929, USA",Unknown,Unknown,56.1419428,-132.6251471,Wrangell +Mt. Dewey Trail,"Box 531, 3rd St, Wrangell, AK 99929, USA",(907) 874-2444,https://travelwrangell.com/mt-dewey,56.4747757,-132.3854642,Wrangell +Petroglyph Beach State Historic Site,"Grave St, Wrangell, AK 99929, USA",(800) 367-9745,https://travelwrangell.com/petroglyph-beach,56.48291709999999,-132.3937932,Wrangell +Anan Creek Wildlife Viewing Site,"Box 531, Anan Creek, Wrangell, AK 99929, USA",(907) 874-2323,https://travelwrangell.com/anan-bears,56.18698060000001,-131.8865733,Wrangell +"Volunteer Park, Wrangell, Alaska","Box 531, Second Ave, Wrangell, AK 99929, USA",(907) 874-2444,https://travelwrangell.com/hiking-and-camping,56.4728909,-132.3723601,Wrangell +Wrangell City Park,"Wrangell, AK 99929, USA",Unknown,Unknown,56.4535819,-132.3830439,Wrangell +Rainbow Falls Trail,"Box 531 4.5 Mile, Zimovia Hwy, Wrangell, AK 99929, USA",(907) 874-2829,https://travelwrangell.com/rainbow-falls,56.4176732,-132.3462839,Wrangell +Wrangell Museum,"296 Campbell Dr, Wrangell, AK 99929, USA",(907) 874-3770,https://www.wrangell.com/museum,56.4699974,-132.3832244,Wrangell +Totem Park Wrangell,"434 Front St, Wrangell, AK 99929, USA",(800) 367-9745,https://travelwrangell.com/totem-park,56.4697182,-132.3800729,Wrangell +Nature Trail,"Second Ave, Wrangell, AK 99929, USA",Unknown,Unknown,56.4726981,-132.3724105,Wrangell +Anan Wildlife Observatory Site,"Wrangell, AK 99929, USA",(907) 874-2323,http://www.fs.usda.gov/recarea/tongass/recreation/natureviewing/recarea/?recid=79154&actid=62,56.1790457,-131.8836312,Wrangell +Shoemaker Bay Recreational Area,"Wrangell, AK 99929, USA",Unknown,https://www.wrangell.com/recreation/shoemaker-bay-recreational-area,56.415858,-132.3453426,Wrangell +Anita Bay Overlook Campsite,"Zimovia Hwy, Wrangell, AK 99929, USA",(907) 225-3101,http://www.fs.usda.gov/recarea/tongass/recarea/?recid=79155,56.2815545,-132.3497306,Wrangell +North Wrangell Trailhead,"Ishiyama Dr, Wrangell, AK 99929, USA",Unknown,Unknown,56.4583114,-132.2973301,Wrangell +Augusta Riverwalk,"10th St, Augusta, GA 30901, USA",(706) 821-1754,http://www.augustaga.gov/292/Riverwalk,33.4796956,-81.9679085,Augusta +Phinizy Swamp Nature Park,"1858 Lock and Dam Rd, Augusta, GA 30906, USA",(706) 828-2109,http://phinizycenter.org/,33.3846224,-81.96751119999999,Augusta +Augusta Museum of History,"560 Reynolds St, Augusta, GA 30901, USA",(706) 722-8454,http://www.augustamuseum.org/,33.4747658,-81.960556,Augusta +Lucy Craft Laney Museum,"1116 Phillips St, Augusta, GA 30901, USA",(706) 724-3576,http://lucycraftlaneymuseum.com/,33.46711490000001,-81.981248,Augusta +Meadow Garden,"1320 Independence Dr, Augusta, GA 30901, USA",(706) 724-4174,https://historicmeadowgarden.org/,33.473798,-81.979591,Augusta +Morris Museum of Art,"1 10th St 2nd Floor, Augusta, GA 30901, USA",(706) 724-7501,http://www.themorris.org/,33.4794159,-81.9685191,Augusta +Augusta Sculpture Trail,"15th St, Augusta, GA 30901, USA",Unknown,https://augustasculpturetrail.com/,33.4757159,-81.9661118,Augusta +Pendleton King Park,"1600 Troupe St, Augusta, GA 30904, USA",(706) 564-7462,http://www.augustaga.gov/index.aspx?NID=261,33.45887119999999,-82.012639,Augusta +The Boyhood Home of President Woodrow Wilson,"419 7th St, Augusta, GA 30901, USA",(706) 722-9828,http://www.wilsonboyhoodhome.org/,33.47169909999999,-81.9650119,Augusta +Aqueduct Park,"Augusta Levee Rd, Augusta, GA 30904, USA",Unknown,Unknown,33.4965074,-81.99694679999999,Augusta +Heroes' Overlook,"530 Greene St, Augusta, GA 30901, USA",(706) 821-2422,http://augustaga.gov/,33.4712362,-81.961744,Augusta +Augusta Canal National Heritage Area,"1450 Greene St #400, Augusta, GA 30901, USA",(706) 823-0440,http://www.augustacanal.com/,33.4778848,-81.9823876,Augusta +Hunter’s Fountain of Youth,"2500 Walton Way, Augusta, GA 30904, USA",Unknown,Unknown,33.4777297,-82.0227345,Augusta +James Brown Monument,"830 Broad St, Augusta, GA 30901, USA",Unknown,Unknown,33.47562579999999,-81.9664702,Augusta +Augusta Japanese Pocket Garden,"Riverwalk Augusta, Augusta, GA 30901, USA",Unknown,Unknown,33.4792222,-81.9665205,Augusta +Sacred Heart Cultural Center,"1301 Greene St, Augusta, GA 30901, USA",(706) 826-4700,http://www.sacredheartaugusta.org/,33.4773862,-81.9764422,Augusta +Augusta Canal Discovery Center,"Blome Ln, Augusta, GA 30901, USA",(706) 823-0440,https://augustacanal.com/about-discovery-center.php,33.4780991,-81.9825393,Augusta +New Savannah Bluff Lock & Dam Park,"2105 Lock and Dam Rd, Augusta, GA 30906, USA",(706) 793-9403,https://www.augustaga.gov/1079/New-Savannah-Bluff-Lock-Dam-Park,33.3736464,-81.9459801,Augusta +Living History Park,"299 W Spring Grove Ave, North Augusta, SC 29841, USA",(803) 979-9776,http://www.colonialtimes.us/,33.495967,-81.9739573,Augusta +Pexcho's American Dime Museum,"216 6th St, Augusta, GA 30901, USA",(225) 448-1453,http://facebook.com/americandimemuseum,33.4732313,-81.9617067,Augusta +Waterloo Park,"100 Father David Bauer Dr, Waterloo, ON N2L 2Y4, Canada",(519) 725-0511,https://www.waterloo.ca/en/things-to-do/waterloo-park.aspx,43.4655488,-80.5336007,Waterloo +City of Waterloo Museum,"550 King St North, Conestoga Mall, Waterloo, ON N2L 5W6, Canada",(519) 885-8828,http://www.waterloo.ca/museum,43.496841,-80.526899,Waterloo +Brubacher House,"200 University Ave W, Waterloo, ON N2L 3G1, Canada",(519) 886-3855,https://uwaterloo.ca/brubacher-house,43.4755535,-80.5523173,Waterloo +The Most Inspiring Wall In Waterloo,"251 Albert St, Waterloo, ON N2L 3T7, Canada",Unknown,Unknown,43.4749018,-80.5329493,Waterloo +Earth Sciences Museum,"200 University Ave W, Waterloo, ON N2L 3G1, Canada",(519) 888-4567,https://uwaterloo.ca/earth-sciences-museum/,43.47149539999999,-80.54211509999999,Waterloo +Well in the Woods,"514 Wilmot Line, Waterloo, ON N2J 3Z4, Canada",(519) 867-5309,http://wellinthewoods.ca/,43.4683863,-80.6077057,Waterloo +Waterloo Central Railway,"50 Isabella St, St. Jacobs, ON N0B 2N0, Canada",(888) 899-2757,http://waterloocentralrailway.com/,43.53796089999999,-80.5570309,Waterloo +Autumn Willow Park,"Waterloo, ON N2J 3Z4, Canada",Unknown,Unknown,43.46185289999999,-80.6045391,Waterloo +Waterloo Park Central Promenade,"Laurel Trail, Waterloo, ON N2L, Canada",Unknown,Unknown,43.46737940000001,-80.5319574,Waterloo +West-side Trails,"594 Sundew Dr, Waterloo, ON N2V 0C3, Canada",Unknown,http://www.waterloo.ca/en/gettingactive/westsidetrails.asp,43.459458,-80.59670810000001,Waterloo +Platform,"Laurel Creek Look-Out Tower, Beaver Creek Rd, Waterloo, ON N2J 3Z4, Canada",Unknown,Unknown,43.4790247,-80.5837639,Waterloo +Oktoberfest Carillon,"Waterloo, ON N2J, Canada",Unknown,Unknown,43.4614871,-80.5214482,Waterloo +Colorado River State Historic Park,"201 N 4th Ave, Yuma, AZ 85364, USA",(928) 329-0471,https://azstateparks.com/colorado-river/,32.7276534,-114.6230063,Yuma +Yuma Territorial Prison State Historic Park,"220 Prison Hill Rd, Yuma, AZ 85364, USA",(928) 783-4771,https://azstateparks.com/yuma-territorial/,32.7270528,-114.614925,Yuma +Gateway Park,"E 1st St & S Gila St, 250 Prison Hill Rd, Yuma, AZ 85364, USA",(928) 373-5204,https://www.yumaaz.gov/Home/Components/FacilityDirectory/FacilityDirectory/46/236,32.7279848,-114.6183764,Yuma +Yuma Crossing National Heritage Area Business Office,"180 W 1st St ste e, Yuma, AZ 85364, USA",(928) 373-5198,https://www.yumaheritage.com/,32.7257587,-114.6216203,Yuma +West Wetlands Park,"282 N 12th Ave, Yuma, AZ 85364, USA",(928) 373-5200,https://www.yumaaz.gov/Home/Components/FacilityDirectory/FacilityDirectory/72/236?npage=3,32.72961619999999,-114.6376607,Yuma +Roxaboxen Park,"835 S 2nd Ave, Yuma, AZ 85364, USA",(928) 373-5200,Unknown,32.7127635,-114.6217168,Yuma +Ray Smucker Park,"2913 S Avenue A, Yuma, AZ 85364, USA",(928) 373-5222,https://www.yumaaz.gov/Home/Components/FacilityDirectory/FacilityDirectory/66/236?npage=3,32.6746115,-114.6336148,Yuma +Z Fun Factory,"4446 E County 10th St, Yuma, AZ 85365, USA",(928) 726-6000,http://zfunfactory.com/,32.685295,-114.556782,Yuma +Riverside Park,"Riverside Park, 50 Prison Hill Rd, Yuma, AZ 85364, USA",Unknown,Unknown,32.725448,-114.6130294,Yuma +Museum,"220 Prison Hill Rd, Yuma, AZ 85364, USA",Unknown,Unknown,32.7270803,-114.615007,Yuma +Yuma Conservation Garden,"2520 E 32nd St, Yuma, AZ 85365, USA",(928) 317-1935,http://www.yumaconservationgarden.org/?fbclid=IwAR3cnUBLGoeZu08Ro3Q9cfffkzqjmxoNpztR9-BROEbIGwojDIq_myT6rps,32.6707913,-114.5947933,Yuma +Waylon's Water World,"4446 E County 10th St, Yuma, AZ 85365, USA",(928) 726-6000,http://www.zfunfactory.com/,32.6852798,-114.5567322,Yuma +East Wetlands Park,"Yuma Crossing Bike Path (Colorado River Levee Multi-Use Path), Yuma, AZ 85364, USA",Unknown,Unknown,32.7271643,-114.6136608,Yuma +Arizona Historical Society Sanguinetti House Museum and Gardens,"240 S Madison Ave, Yuma, AZ 85364, USA",(928) 782-1841,http://www.arizonahistoricalsociety.org/museums/yuma/,32.7234253,-114.6198289,Yuma +Welcome to Yuma Sign,"3198 S Avenue B, Yuma, AZ 85364, USA",Unknown,Unknown,32.6697069,-114.6503883,Yuma +Yuma History Museum,"233 S 4th Ave, Yuma, AZ 85364, USA",(928) 783-4453,http://yumahistorymuseum.com/,32.722717,-114.624325,Yuma +Downtown Yuma Sign,"102 S Main St, Yuma, AZ 85364, USA",Unknown,Unknown,32.7250606,-114.6178905,Yuma +Robert J Moody Demonstration Garden,"2200 W 28th St, Yuma, AZ 85364, USA",Unknown,https://extension.arizona.edu/interactive-demonstration-garden,32.6775867,-114.647714,Yuma +Big Wes (Roadside Cowboy),"3300 S 8th Ave LOT 1, Yuma, AZ 85365, USA",Unknown,Unknown,32.6675761,-114.6288559,Yuma +Kennedy Memorial Park,"2251 S Kennedy Ln, Yuma, AZ 85365, USA",(928) 373-5243,https://www.yumaaz.gov/Home/Components/FacilityDirectory/FacilityDirectory/54/236?npage=2,32.6866732,-114.6085703,Yuma +The Grotto,"7R6F+5FH, Grotto Dr, Saipan 96950, CNMI",1833-9881,Unknown,15.2604383,145.8237491,Saipan +Bird Island Observatory,"1 Beach Rd, Susupe, Saipan 96950, CNMI",Unknown,Unknown,15.2554582,145.8100613,Saipan +Suicide Cliff,"7RG5+XV3, Rte 322, Capitol Hill, Saipan 96950, CNMI",Unknown,Unknown,15.2773945,145.8096818,Saipan +American Memorial Park,"6P89+CRQ, Micro Beach Rd, Garapan, Saipan 96950, CNMI",(670) 234-7207 ext. 2020,http://www.nps.gov/amme,15.2160824,145.7195969,Saipan +Sugar King Park,"6P2C+Q7H, Garapan, Saipan 96950, CNMI",Unknown,Unknown,15.2019391,145.7207226,Saipan +Japanese Lighthouse,"6P6J+MMM, Garapan, Saipan 96950, CNMI",Unknown,http://www.atlasobscura.com/places/old-japanese-lighthouse,15.2117219,145.731679,Saipan +Kalabera Cave,"6QWX+222, Kalabera Cave Trail, Saipan 96950, CNMI",Unknown,Unknown,15.245,145.7975,Saipan +Bird Island Beach,"7R67+5F3, Bird Island Trail, Saipan 96950, CNMI",Unknown,Unknown,15.2603867,145.8136718,Saipan +Santa Lourdes Shrine,"5QV6+6V5, Saipan 96950, CNMI",Unknown,Unknown,15.1930134,145.7622457,Saipan +Marianas Trekking Saipan,"Marpi, Pale Arnold Rd, Saipan 96950, CNMI",(670) 323-8735,http://www.marianastrekking.com/,15.264996,145.78852,Saipan +Abandoned Pacific Barrier Radar III,"6QXW+MF9, Saipan 96950, CNMI",Unknown,http://www.atlasobscura.com/places/abandoned-pacific-barrier-radar-iii,15.2491521,145.7962245,Saipan +Banzai Cliff Monument,"7RP8+J78, Capitol Hill, Saipan 96950, CNMI",Unknown,Unknown,15.2865293,145.8157023,Saipan +별빛투어,"7RP7+FW6, Banzai Cliff Road, Capitol Hill, Saipan 96950, CNMI",Unknown,Unknown,15.2861502,145.8147626,Saipan +Lao Lao Dive Site,"Unnamed Road, 5Q76+CV8, Laulau Bay, Saipan 96950, CNMI",Unknown,Unknown,15.1635375,145.762193,Saipan +Saipan Katori Shrine,"6P2C+PQ3, Garapan, Saipan 96950, CNMI",Unknown,Unknown,15.2017519,145.7219131,Saipan +Naftan cliff,"Naftan Rd, Naftan, Saipan 96950, CNMI",Unknown,https://youtube.com/channel/UCYp5O7jnrZ5uzvid1rTT5qQ,15.1095708,145.7550714,Saipan +Agingan Point,"4MCR+28J, Agingan, Saipan 96950, CNMI",Unknown,Unknown,15.1200995,145.6907597,Saipan +NMI Museum of History and Culture,"Kopa Di Oru Street &, Chichirica Avenue, Garapan, Saipan 96950, CNMI",(670) 664-2160,http://www.nmimuseum.org/,15.2014014,145.719211,Saipan +Okinawa Peace Memorial,"7RJ4+88M, Saipan 96950, CNMI",Unknown,Unknown,15.2808422,145.80579,Saipan +Concrete Jesus @ Mt. Tapochao,"5PPV+P88, Saipan 96950, CNMI",Unknown,http://www.mymarianas.com/,15.1867918,145.7433266,Saipan +Christiansted National Historic Site,"1 Company St, Christiansted, St Croix 00820, USVI",Unknown,https://www.nps.gov/chri/index.htm,17.7467366,-64.7023078,Christiansted +Old Danish Customs House,"P7WW+PX5, Christiansted, St Croix 00820, USVI",Unknown,Unknown,17.7467647,-64.7025147,Christiansted +The Scale House,"P7WW+QQX, Christiansted, St Croix 00820, USVI",(340) 773-1460,https://www.nps.gov/chri/index.htm,17.7469796,-64.70302520000001,Christiansted +Steeple Building,"1 Company St, Christiansted, St Croix 00820, USVI",(340) 773-1460,https://www.nps.gov/chri/index.htm,17.74617929999999,-64.7025556,Christiansted +Christiansted Boardwalk,"81 Queen Cross St, Christiansted, St Croix 00820, USVI",Unknown,https://my-stcroix.com/restaurant-guide/christiansted-downtown-boardwalk/,17.7472506,-64.7051504,Christiansted +Fort Christiansvaern,"P7WX+Q7G, Hospital St, Christiansted, St Croix 00820, USVI",(340) 773-1460,https://www.nps.gov/chri/index.htm,17.7469456,-64.70178539999999,Christiansted +Christiansted Historic District,"P7WX+W3G, Christiansted, St Croix 00820, USVI",Unknown,Unknown,17.7473007,-64.70230339999999,Christiansted +Salt River Bay National Historical Park and Ecological Preserve,"2100 Church St, Christiansted, St Croix 00820, USVI",(340) 773-1460,http://www.nps.gov/sari/index.htm,17.7750581,-64.75592619999999,Christiansted +Caribbean Sea Adventures,"1102 King St Suite 12, Christiansted, St Croix 00820, USVI",(340) 773-2628,http://www.caribbeanseaadventures.com/,17.7474256,-64.7038567,Christiansted +Ancient Warf,"P7WW+WW3, Christiansted, St Croix 00820, USVI",Unknown,Unknown,17.7472504,-64.70271780000002,Christiansted +Tropical Tiki Tours,"1 Strand Street Christiansted US, Christiansted, St Croix 00820, USVI",(340) 642-2801,http://tropicaltikitours.com/,17.7467066,-64.7043631,Christiansted +Estate Little Princess Plantation,"Q74F+VP9, St Croix 00820, USVI",Unknown,https://www.nature.org/en-us/get-involved/how-to-help/places-we-protect/us-virgin-islands-estate-little-princess/,17.7571522,-64.72563029999999,Christiansted +Snoqualmie Valley Museum,"320 Bendigo Blvd S, North Bend, WA 98045, USA",(425) 888-3200,http://www.snoqualmievalleymuseum.org/,47.4934141,-121.7886467,North Bend +Si View Park,"400 SE Orchard Dr, North Bend, WA 98045, USA",(425) 831-1900,http://www.siviewpark.org/,47.491035,-121.783688,North Bend +Olallie State Park,"51350 SE Homestead Valley Rd, North Bend, WA 98045, USA",(425) 455-7010,http://parks.state.wa.us/555/Olallie,47.4358233,-121.6560829,North Bend +Tollgate Farm Park,"1300 W North Bend Way, North Bend, WA 98045, USA",(425) 831-1900,http://www.siviewpark.org/,47.5023524,-121.8002722,North Bend +Rattlesnake Lake Recreation Area,"17905 Cedar Falls Rd SE, North Bend, WA 98045, USA",Unknown,http://www.seattle.gov/util/EnvironmentConservation/Education/CedarRiverWatershed/RattlesnakeLake/index.htm,47.4272972,-121.7740382,North Bend +Railroad Community Park,"7971 Railroad Ave, Snoqualmie, WA 98065, USA",(425) 831-5784,Unknown,47.5295028,-121.8264194,North Bend +"Northwest Railway Museum, Snoqualmie Depot","38625 SE King St, Snoqualmie, WA 98065, USA",(425) 888-3030,https://www.trainmuseum.org/,47.528513,-121.825668,North Bend +Snoqualmie Point Park,"37580 Winery Rd, Snoqualmie, WA 98065, USA",(425) 888-1555,https://www.snoqualmiewa.gov/Facilities/Facility/Details/Snoqualmie-Point-Park-61,47.510119,-121.8411316,North Bend +Centennial Fields Park,"39903 SE Park St, Snoqualmie, WA 98065, USA",(425) 831-5784,https://www.ci.snoqualmie.wa.us/Facilities/Facility/Details/Centennial-Fields-6,47.5219549,-121.8076407,North Bend +Cedar River Watershed Education Center,"17905 Cedar Falls Rd SE, North Bend, WA 98045, USA",(206) 733-9421,http://www.seattle.gov/util/crwec,47.4271776,-121.7739395,North Bend +Twin Falls Trailhead,"SE 159th St, North Bend, WA 98045, USA",(425) 455-7010,http://parks.state.wa.us/555/Olallie,47.4529662,-121.7054379,North Bend +Teneriffe Beach,"F8HQ+Q2, North Bend, WA 98045, USA",Unknown,Unknown,47.4794633,-121.6624521,North Bend +North Bend,"North Bend, WA 98045, USA",Unknown,Unknown,47.4956579,-121.7867775,North Bend +North Fork Snoqualmie,"North Bend, WA 98045, USA",Unknown,Unknown,47.6618511,-121.6216117,North Bend +Snoqualmie Falls,"6501 Railroad Ave, Snoqualmie, WA 98065, USA",(425) 326-2563,http://www.snoqualmiefalls.com/,47.54186300000001,-121.8372937,North Bend +Nellie Falls,"North Bend, WA 98045, USA",Unknown,Unknown,47.50803370000001,-121.3516319,North Bend +Snoqualmie Falls Hydroelectric Museum,"37820 SE 69th Pl, Snoqualmie, WA 98065, USA",(425) 831-4445,https://www.pse.com/pages/tours-and-recreation/snoqualmie-tours,47.53951469999999,-121.8347426,North Bend +Riverview Park,"39000 SE Park St, Snoqualmie, WA 98065, USA",(425) 831-5784,https://www.snoqualmiewa.gov/Facilities/Facility/Details/Riverview-Park-43,47.5261928,-121.8203598,North Bend +Compass Outdoor Adventures,"14303 436th Ave SE, North Bend, WA 98045, USA",(425) 318-8876,http://www.compassoutdooradventures.com/,47.4710317,-121.7588587,North Bend +Snoqualmie Centennial Log,"Snoqualmie, WA 98065, USA",(425) 831-4919,Unknown,47.5299694,-121.8266917,North Bend +Virginia Museum of Fine Arts,"200 N Arthur Ashe Blvd, Richmond, VA 23220, USA",(804) 340-1400,https://vmfa.museum/,37.5560356,-77.4747907,Richmond +Canal Walk,"1512 Canal Walk, Richmond, VA 23219, USA",Unknown,https://venturerichmond.com/explore-downtown/riverfront-canal-walk/,37.5327238,-77.432238,Richmond +Haunts of Richmond - Shadows of Shockoe Tour,"5 S 20th St, Richmond, VA 23223, USA",(804) 543-3189,https://hauntsofrichmond.com/,37.5314833,-77.42607939999999,Richmond +The Poe Museum,"1914 E Main St, Richmond, VA 23223, USA",(804) 648-5523,http://www.poemuseum.org/,37.5320942,-77.4260343,Richmond +The Grand Kugel,"2500 W Broad St, Richmond, VA 23220, USA",(804) 864-1400,https://www.atlasobscura.com/places/the-grand-kugel-richmond-virginia,37.5607646,-77.466158,Richmond +Maymont,"1700 Hampton St, Richmond, VA 23220, USA",(804) 525-9000,https://maymont.org/,37.5341784,-77.474571,Richmond +Black History Museum and Cultural Center of Virginia,"122 W Leigh St, Richmond, VA 23220, USA",(804) 780-9093,http://blackhistorymuseum.org/,37.5500504,-77.4413774,Richmond +Libby Hill Park,"2801 E Franklin St, Richmond, VA 23223, USA",(804) 646-0036,Unknown,37.526515,-77.41746800000001,Richmond +Memorial Clock,"1003 E Cary St, Richmond, VA 23219, USA",Unknown,Unknown,37.5365208,-77.4360582,Richmond +American Civil War Museum- Historic Tredegar,"480 Tredegar St, Richmond, VA 23219, USA",(804) 649-1861,http://www.acwm.org/,37.5355813,-77.4454743,Richmond +Children's Museum of Richmond,"2626 W Broad St, Richmond, VA 23220, USA",(804) 474-7000,http://www.cmorva.org/,37.5621261,-77.46727779999999,Richmond +Virginia State Capitol,"1000 Bank St, Richmond, VA 23218, USA",(804) 698-1788,http://www.virginiacapitol.gov/,37.5388415,-77.433596,Richmond +The Valentine,"1015 E Clay St, Richmond, VA 23219, USA",(804) 649-0711,http://www.thevalentine.org/,37.5414596,-77.4308077,Richmond +Riverfront Canal Cruises,"139 Virginia St, Richmond, VA 23219, USA",(804) 649-2800,https://venturerichmond.com/our-services/riverfront-canal-cruises,37.53344589999999,-77.4332704,Richmond +Maggie L Walker National Historic Site,"600 N 2nd St, Richmond, VA 23219, USA",(804) 771-2017,http://www.nps.gov/mawa,37.5478107,-77.4374764,Richmond +Virginia Holocaust Museum,"2000 E Cary St, Richmond, VA 23223, USA",(804) 257-5400,http://www.vaholocaust.org/,37.53091060000001,-77.42597839999999,Richmond +Agecroft Hall & Gardens,"4305 Sulgrave Rd, Richmond, VA 23221, USA",(804) 353-4241,http://www.agecrofthall.com/,37.5530231,-77.5051983,Richmond +Richmond National Battlefield Park's Civil War Visitor Center,"470 Tredegar St, Richmond, VA 23219, USA",(804) 771-2145,https://www.nps.gov/rich/planyourvisit/directions.htm,37.5355064,-77.4457972,Richmond +The John Marshall House,"818 E Marshall St, Richmond, VA 23219, USA",(804) 648-7998,https://preservationvirginia.org/historic-sites/john-marshall-house/,37.5419377,-77.4330751,Richmond +Wilton House Museum,"215 S Wilton Rd, Richmond, VA 23226, USA",(804) 282-5936,http://www.wiltonhousemuseum.org/,37.5625311,-77.5196595,Richmond +New Mexico Museum of Natural History and Science,"1801 Mountain Rd NW, Albuquerque, NM 87104, USA",(505) 841-2800,http://www.nmnaturalhistory.org/,35.0981832,-106.665379,Albuquerque +Albuquerque Museum,"2000 Mountain Rd NW, Albuquerque, NM 87104, USA",(505) 243-7255,http://albuquerquemuseum.org/,35.097595,-106.668247,Albuquerque +Explora Science Center and Children's Museum of Albuquerque,"1701 Mountain Rd NW, Albuquerque, NM 87104, USA",(505) 600-6072,http://www.explora.us/,35.097316,-106.664167,Albuquerque +Petroglyph National Monument,"Western Trail NW, Albuquerque, NM 87120, USA",(505) 899-0205,https://www.nps.gov/petr/index.htm,35.124381,-106.7525097,Albuquerque +Turquoise Museum,"400 2nd St SW, Albuquerque, NM 87102, USA",(505) 433-3684,http://www.turquoisemuseum.com/,35.0807475,-106.6497666,Albuquerque +ABQ BioPark - Botanic Garden,"2601 Central Ave NW, Albuquerque, NM 87104, USA",(505) 764-6200,http://www.cabq.gov/biopark,35.0932029,-106.6809347,Albuquerque +Rio Grande Nature Center State Park,"2901 Candelaria Rd NW, Albuquerque, NM 87107, USA",(505) 344-7240,http://www.emnrd.state.nm.us/spd/riograndenaturecenterstatepark.html,35.1304753,-106.6828452,Albuquerque +#AbqTours - History & GHOST Tours of Old Town,"303, Plaza don Luis, 120 Romero St NW, Albuquerque, NM 87104, USA",Unknown,https://www.abqtours.fun/,35.09662429999999,-106.670977,Albuquerque +National Museum of Nuclear Science & History,"601 Eubank Blvd SE, Albuquerque, NM 87123, USA",(505) 245-2137,http://www.nuclearmuseum.org/,35.0659855,-106.5338919,Albuquerque +Rattlesnake Museum & Gift Shop,"202 San Felipe St NW, Albuquerque, NM 87104, USA",(505) 242-6569,http://www.rattlesnakes.com/,35.0954181,-106.6692678,Albuquerque +ABQ BioPark Aquarium,"2601 Central Ave NW, Albuquerque, NM 87104, USA",(505) 764-6200,http://www.abqbiopark.com/,35.0931563,-106.6792669,Albuquerque +Sandia Peak Tramway,"30 Tramway Rd NE, Albuquerque, NM 87122, USA",(505) 856-1532,http://www.sandiapeak.com/,35.1907104,-106.479402,Albuquerque +Madonna Of The Trail,"323 Marble Ave NW, Albuquerque, NM 87102, USA",Unknown,Unknown,35.09288639999999,-106.6498095,Albuquerque +Cliff's Amusement Park,"4800 Osuna Rd NE, Albuquerque, NM 87109, USA",(505) 881-9373,http://cliffsamusementpark.com/,35.1435262,-106.5890249,Albuquerque +Winter Wonderland NM,"Inside EXPO, 300 San Pedro Dr NE, Albuquerque, NM 87108, USA",(505) 273-1871,https://winterwonderlandnm.com/,35.08221169999999,-106.5753271,Albuquerque +Elena Gallegos Open Space,"7100 Tramway Blvd NE, Albuquerque, NM 87122, USA",(505) 768-5353,https://www.cabq.gov/parksandrecreation/open-space/lands/elena-gallegos-open-space,35.1617554,-106.473671,Albuquerque +Glass Gardens,"2345 2nd St SW, Albuquerque, NM 87102, USA",Unknown,Unknown,35.0586889,-106.6571289,Albuquerque +Bugarium,"2601 Central Ave NW, Albuquerque, NM 87104, USA",(505) 768-2000,https://www.cabq.gov/culturalservices/biopark/garden/exhibits/bugarium,35.09239770000001,-106.680389,Albuquerque +Albucreepy Ghost Walk,"Box Office located inside Old Town Emporium, 204 San Felipe St NW, Albuquerque, NM 87104, USA",(505) 200-2642,http://www.tourabq.com/albucreepy,35.0956753,-106.6692217,Albuquerque +Laberinto del Bosque,"Albuquerque, NM, Paseo del Bosque Trail, Albuquerque, NM 87104, USA",Unknown,Unknown,35.1169322,-106.689827,Albuquerque +Nashville Zoo at Grassmere,"3777 Nolensville Pk, Nashville, TN 37211, USA",(615) 833-1534,http://www.nashvillezoo.org/,36.089705,-86.74209599999999,Nashville +Country Music Hall of Fame and Museum,"222 Rep. John Lewis Way S, Nashville, TN 37203, USA",(615) 416-2001,https://countrymusichalloffame.org/,36.1582632,-86.7761258,Nashville +Belle Meade Historic Site & Winery,"5025 Harding Pike, Nashville, TN 37205, USA",(615) 356-0501,https://visitbellemeade.com/,36.10491620000001,-86.8646954,Nashville +Johnny Cash Museum,"119 3rd Ave S, Nashville, TN 37201, USA",(615) 256-1777,http://www.johnnycashmuseum.com/,36.1609385,-86.77575709999999,Nashville +Centennial Park,"2500 West End Ave, Nashville, TN 37203, USA",(615) 862-8400,https://www.nashville.gov/Parks-and-Recreation/Parks/Centennial-Park.aspx,36.1489459,-86.81274979999999,Nashville +Grand Ole Opry,"600 Opry Mills Dr, Nashville, TN 37214, USA",(615) 871-6779,https://www.opry.com/?utm_campaign=opry&utm_medium=organicsearch&utm_source=googlemybusiness&utm_audience=tofu_googlemybusiness&utm_content=brandstory_google_my_business_website_link,36.2068571,-86.69210849999999,Nashville +Frist Art Museum,"919 Broadway, Nashville, TN 37203, USA",(615) 244-3340,https://fristartmuseum.org/,36.1578972,-86.78385279999999,Nashville +Nashville Shores,"4001 Bell Rd, Hermitage, TN 37076, USA",(615) 889-7050,http://www.nashvilleshores.com/lodging,36.1582095,-86.6049146,Nashville +The Parthenon,"2500 West End Ave, Nashville, TN 37203, USA",(615) 862-8431,https://www.nashvilleparthenon.com/,36.14967369999999,-86.81334670000001,Nashville +Bicentennial Capitol Mall State Park,"600 James Robertson Pkwy, Nashville, TN 37243, USA",(888) 867-2757,https://tnstateparks.com/parks/bicentennial-mall,36.1708875,-86.78758900000001,Nashville +Musicians Hall of Fame and Museum,"401 Gay St, Nashville, TN 37219, USA",(615) 244-3263,https://www.musicianshalloffame.com/,36.1676681,-86.7823988,Nashville +Lane Motor Museum,"702 Murfreesboro Pike, Nashville, TN 37210, USA",(615) 742-7445,http://www.lanemotormuseum.org/,36.1401967,-86.73457979999999,Nashville +Adventure Science Center,"800 Fort Negley Blvd, Nashville, TN 37203, USA",(615) 862-5160,http://www.adventuresci.org/,36.1466142,-86.775481,Nashville +Honky Tonk Highway,"501 Broadway, Nashville, TN 37203, USA",(800) 657-6910,https://www.visitmusiccity.com/visitors/honkytonkhighway,36.1603925,-86.7784322,Nashville +Patsy Cline Museum,"119 3rd Ave S, Nashville, TN 37201, USA",(615) 454-4722,https://www.patsymuseum.com/,36.1609042,-86.77603049999999,Nashville +Andrew Jackson’s Hermitage,"4580 Rachels Ln, Hermitage, TN 37076, USA",(615) 889-2941,http://www.thehermitage.com/,36.21375729999999,-86.61530970000001,Nashville +Fort Nashborough,"170 1st Ave N, Nashville, TN 37201, USA",(615) 862-8400,https://www.nashville.gov/Parks-and-Recreation/Historic-Sites/Fort-Nashborough.aspx,36.1642682,-86.7754305,Nashville +NashTrash Tours,"900 Rosa L Parks Blvd, Nashville, TN 37208, USA",(615) 226-7300,http://www.nashtrash.com/,36.1694743,-86.78825429999999,Nashville +Ryman Auditorium,"116 5th Ave N, Nashville, TN 37219, USA",(615) 889-3060,https://www.ryman.com/?utm_campaign=ryman&utm_medium=organicsearch&utm_source=googlemybusiness&utm_audience=tofu_googlemybusiness&utm_content=brandstory_google_my_business_website_link,36.1612481,-86.7784714,Nashville +Nashville Public Square Park,"Union St & 3rd Ave N, Nashville, TN 37201, USA",(615) 743-3090,https://www.nashvilledowntown.com/go/public-square-park,36.16661129999999,-86.7781258,Nashville +Aberdeen Maritime Museum,"Shiprow, Aberdeen AB11 5BY, UK",0300 020 0293,https://www.aberdeencity.gov.uk/AAGM/plan-your-visit/aberdeen-maritime-museum,57.1464556,-2.0948806,Aberdeen +Duthie Park,"Polmuir Road, Aberdeen AB11 7TH, UK",01224 585310,https://www.aberdeencity.gov.uk/services/leisure-culture-and-parks/parks/duthie-park,57.130851,-2.103484,Aberdeen +Seaton Park,"Don St, Old Aberdeen, Aberdeen AB24 1XS, UK",0300 020 0292,https://aberdeencity.gov.uk/services/environment/parks/seaton-park,57.1723982,-2.0997173,Aberdeen +Provost Skene's House,"Guestrow, Marischal Square, Aberdeen AB10 1AS, UK",0300 020 0293,http://www.aagm.co.uk/Visit/ProvostSkenesHouse/psh-overview.aspx,57.1482926,-2.0974759,Aberdeen +Aberdeen Science Centre,"179 Constitution St, Aberdeen AB24 5TU, UK",01224 640340,http://aberdeensciencecentre.org/,57.15313829999999,-2.0846426,Aberdeen +Johnston Gardens,"Johnston Gardens, Viewfield Rd, Aberdeen AB15 7XE, UK",01224 346421,https://www.aberdeencity.gov.uk/services/leisure-culture-and-parks/parks-and-gardens/johnston-gardens,57.1362291,-2.1489215,Aberdeen +The Gordon Highlanders Museum,"St. Luke’s, Viewfield Rd, Aberdeen AB15 7XH, UK",01224 311200,http://www.gordonhighlanders.com/,57.1374765,-2.1462081,Aberdeen +Cruickshank Botanic Garden,"St Machar Dr, Aberdeen AB24 3UU, UK",01224 272704,http://www.abdn.ac.uk/botanic-garden/,57.1679378,-2.1044022,Aberdeen +Hazlehead Park,"Hazlehead Ave, Aberdeen AB15 8BE, UK",01224 346421,https://www.aberdeencity.gov.uk/services/environment/parks/hazlehead-park,57.1391857,-2.1780864,Aberdeen +David Welch Winter Gardens,"Polmuir Road, Aberdeen AB11 7TH, UK",01224 346421,https://www.aberdeencity.gov.uk/services/environment/parks/duthie-park,57.1317309,-2.1042887,Aberdeen +Torry Battery,"Torry Battery, Greyhope Rd, Aberdeen AB11 8QX, UK",01224 624824,https://www.undiscoveredscotland.co.uk/aberdeen/torrybattery/index.html,57.1415966,-2.0591332,Aberdeen +The Tolbooth Museum,"Castle St, Aberdeen AB11 5BB, UK",0300 020 0293,https://www.aberdeencity.gov.uk/AAGM/plan-your-visit/tolbooth-museum,57.148021,-2.0940328,Aberdeen +Den of Maidencraig,"Skene Rd, Aberdeen AB15 8BW, UK",Unknown,Unknown,57.145601,-2.1807644,Aberdeen +Footdee beach,"Esplanade, Aberdeen AB24 5EN, UK",Unknown,Unknown,57.1494029,-2.0765588,Aberdeen +Aberdeen beach,"Aberdeen AB23 8DR, UK",Unknown,Unknown,57.1671887,-2.078588599999999,Aberdeen +Aberdeen South Harbour,"St Fitticks Rd, Aberdeen AB11 8TN, UK",Unknown,Unknown,57.1341884,-2.060187200000001,Aberdeen +Aberdeen beach,"Beach Blvd, Aberdeen AB11 5EG, UK",Unknown,Unknown,57.15126699999999,-2.084709999999999,Aberdeen +Windows to the Sea,"Beach Blvd, Aberdeen AB24 5EJ, UK",Unknown,https://emuseum.aberdeencity.gov.uk/objects/113540/windows-to-the-sea,57.1720597,-2.0783966,Aberdeen +Huntfun Aberdeen,"Union St, Aberdeen AB10 1QX, UK",01904 410975,http://www.huntfun.co.uk/,57.1454168,-2.1028951,Aberdeen +The Den & The Glen,"S Deeside Rd, Maryculter, Aberdeen AB12 5FT, UK",01224 732941,http://www.denandtheglen.co.uk/,57.08570109999999,-2.232955,Aberdeen +The National Civil War Museum,"1 Lincoln Cir, Harrisburg, PA 17103, USA",(717) 260-1861,http://www.nationalcivilwarmuseum.org/,40.2719945,-76.8553563,Harrisburg +Fort Hunter Mansion and Park,"5300 N Front St, Harrisburg, PA 17110, USA",(717) 599-5751,http://forthunter.org/,40.3416627,-76.90769879999999,Harrisburg +Wildwood Park,"100 Wildwood Way, Harrisburg, PA 17110, USA",(717) 221-0292,https://www.explorewildwoodpark.org/,40.3076643,-76.8865931,Harrisburg +Susquehanna Art Museum,"1401 N 3rd St, Harrisburg, PA 17102, USA",(717) 233-8668,http://www.susquehannaartmuseum.org/,40.270908,-76.8895529,Harrisburg +The State Museum of Pennsylvania,"300 North St, Harrisburg, PA 17120, USA",(717) 787-4980,http://www.statemuseumpa.org/,40.2657133,-76.8857592,Harrisburg +City Island Park Railroad,"25 Station Rd, Harrisburg, PA 17101, USA",(717) 232-2332,Unknown,40.2552246,-76.8889932,Harrisburg +Riverfront Park,"200 S Front St, Harrisburg, PA 17104, USA",Unknown,https://www.facebook.com/pages/Riverfront-Park-Harrisburg/134918523207797,40.2568902,-76.8800787,Harrisburg +Pennsylvania National Fire Museum,"1820 N 4th St, Harrisburg, PA 17102, USA",(717) 232-8915,http://www.pnfm.org/,40.2764069,-76.89230239999999,Harrisburg +"Friends of Wildwood Lake Nature Center, Inc.","100 Wildwood Way, Harrisburg, PA 17110, USA",(717) 221-0292,http://www.wildwoodlake.org/,40.3075865,-76.8867497,Harrisburg +John Harris-Simon Cameron,"219 S Front St, Harrisburg, PA 17104, USA",(717) 233-3462,http://dauphincountyhistory.org/museum/,40.2567774,-76.8786906,Harrisburg +Market Square,"201-205 Market St, Harrisburg, PA 17101, USA",Unknown,Unknown,40.2590172,-76.8807534,Harrisburg +Harrisburg Artsfest,"614 N Front St, Harrisburg, PA 17101, USA",Unknown,https://harrisburgpa.gov/wp-content/uploads/2023/05/Event-Program-DIGITAL-Artsfest-2023.pdf,40.263578,-76.88979599999999,Harrisburg +Midtown Butterfly Mural,"1224 N 3rd St, Harrisburg, PA 17102, USA",Unknown,Unknown,40.2687119,-76.8884095,Harrisburg +Five Senses Gardens,"Capital Area Greenbelt, Harrisburg, PA 17111, USA",Unknown,http://caga.org/the-trail/garden/,40.2519997,-76.83726109999999,Harrisburg +Doll House Museum,"2004 State St, Harrisburg, PA 17103, USA",(717) 233-1476,Unknown,40.2737991,-76.86126960000001,Harrisburg +Benjamin Olewine III Nature Center,"100 Wildwood Way, Harrisburg, PA 17110, USA",(717) 221-0292,https://explorewildwoodpark.org/about/olewine-nature-center/,40.30716959999999,-76.88268029999999,Harrisburg +Soldier's Grove,"531-559 Commonwealth Ave, Harrisburg, PA 17120, USA",Unknown,Unknown,40.265273,-76.88211419999999,Harrisburg +Capitol Park,"Department of General Services Annex Complex, 4 Cherry Rd, Harrisburg, PA 17120, USA",(800) 868-7672,http://www.pacapitol.com/main.html,40.263689,-76.88290599999999,Harrisburg +Reservoir Park,"100 Concert Dr, Harrisburg, PA 17103, USA",(717) 232-3017,https://harrisburgpa.gov/parks-and-recreation/,40.272172,-76.858403,Harrisburg +Harrisburg Sunken Garden,"1210 N Front St, Harrisburg, PA 17102, USA",(717) 255-3020,http://harrisburgpa.gov/,40.2674405,-76.8926346,Harrisburg +Historic Old Fort,"1201 Spy Run Ave, Fort Wayne, IN 46805, USA",(260) 427-6000,http://www.fortwayneparks.org/index.php?option=com_content&view=article&id=26&Itemid=43,41.08522699999999,-85.136248,Fort Wayne +Science Central,"1950 N Clinton St, Fort Wayne, IN 46805, USA",(260) 424-2400,http://www.sciencecentral.org/,41.0918442,-85.1394141,Fort Wayne +Fort Wayne Museum of Art,"311 E Main St, Fort Wayne, IN 46802, USA",(260) 422-6467,http://www.fwmoa.org/,41.08126499999999,-85.1360545,Fort Wayne +Foellinger-Freimann Botanical Conservatory,"1100 Calhoun St, Fort Wayne, IN 46802, USA",(260) 427-6440,http://botanicalconservatory.org/,41.0758189,-85.1391042,Fort Wayne +Headwaters Park,"333 S Clinton St, Fort Wayne, IN 46802, USA",(260) 422-7625,http://www.fortwayneparks.org/index.php?option=com_content&id=33&Itemid=49,41.08495959999999,-85.1393222,Fort Wayne +Promenade Park,"202 W Superior St, Fort Wayne, IN 46802, USA",(260) 427-6000,http://www.fortwayneparks.org/parks/park-page-links/36-parks/legacy-parks/856-promenade-park,41.08241779999999,-85.1426023,Fort Wayne +Fort Wayne Firefighters Museum,"226 W Washington Blvd, Fort Wayne, IN 46802, USA",(260) 426-0051,http://www.fortwaynefiremuseum.com/,41.0769542,-85.14193999999999,Fort Wayne +Kreager Park,"7225 N River Rd, Fort Wayne, IN 46815, USA",(260) 427-6000,http://www.fortwayneparks.org/,41.090221,-85.040234,Fort Wayne +Fort Wayne Children's Zoo,"3411 Sherman Blvd, Fort Wayne, IN 46808, USA",(260) 427-6800,http://kidszoo.org/,41.10594649999999,-85.1534411,Fort Wayne +Eagle Marsh Nature Preserve,"6801 Engle Rd, Fort Wayne, IN 46804, USA",(260) 478-2515,http://www.lrwp.org/,41.037965,-85.2266188,Fort Wayne +Lakeside Park,"1401 Lake Ave, Fort Wayne, IN 46805, USA",(260) 427-6000,https://www.fortwayneparks.org/parks/38-parks/park-page-links/176-lakeside-park-a-rose-garden.html,41.0895284,-85.1197334,Fort Wayne +Franke Park,"3411 Sherman Blvd, Fort Wayne, IN 46808, USA",(260) 427-6000,http://www.fortwayneparks.org/,41.1074897,-85.1586233,Fort Wayne +Lincoln Log Cabin Replica,"3902 Old Mill Rd, Fort Wayne, IN 46807, USA",Unknown,http://www.fortwayneparks.org/38-parks/park-page-links/169-foster-park.html,41.0492172,-85.1585242,Fort Wayne +Buckner Park,"6114 Bass Rd, Fort Wayne, IN 46818, USA",(260) 427-6000,http://www.fortwayneparks.org/index.php?option=com_content&view=article&id=293%3Abuckner-park&catid=38&Itemid=33,41.091028,-85.222044,Fort Wayne +Hanson Quarry Observation Deck,"4529 Sand Point Rd, Fort Wayne, IN 46809, USA",(260) 478-9992,Unknown,41.0285224,-85.1970338,Fort Wayne +Old Fort Park,"Clay St, E Main St, Fort Wayne, IN 46802, USA",(260) 427-6000,https://oldfortwayne.org/,41.0816188,-85.1340953,Fort Wayne +Buffalo Mural,"126 W Columbia St, Fort Wayne, IN 46802, USA",Unknown,Unknown,41.0814094,-85.14144759999999,Fort Wayne +African / African American Historical Society Museum,"436 E Douglas Ave, Fort Wayne, IN 46802, USA",(260) 420-0765,Unknown,41.0739851,-85.1323596,Fort Wayne +Hugo Diamond Railroad Crossing,"3020 Ojibway Trail, Fort Wayne, IN 46809, USA",Unknown,Unknown,41.0498336,-85.1796262,Fort Wayne +Fox Island County Park,"7324 Yohne Rd, Fort Wayne, IN 46809, USA",(260) 449-3180,http://allencountyparks.org/parks/fox-island/,41.0192152,-85.2372675,Fort Wayne +Green Bay Botanical Garden,"2600 Larsen Rd, Green Bay, WI 54303, USA",(920) 490-9457,http://www.gbbg.org/,44.5311737,-88.0983591,Green Bay +Green Bay Packers Hall of Fame & Museum,"1265 Lombardi Ave, Green Bay, WI 54304, USA",(920) 569-7512,https://www.packershofandtours.com/explore/hall-of-fame,44.5015622,-88.0601798,Green Bay +Heritage Hill State Historical Park,"2640 S Webster Ave, Green Bay, WI 54301, USA",(920) 448-5150,http://www.heritagehillgb.org/,44.47346140000001,-88.0312908,Green Bay +Neville Public Museum,"210 Museum Pl, Green Bay, WI 54303, USA",(920) 448-4460,http://www.nevillepublicmuseum.org/,44.518054,-88.0185365,Green Bay +The Children's Museum of Green Bay,"1230 Bay Beach Rd, Green Bay, WI 54302, USA",(920) 432-4397,http://www.gbchildrensmuseum.org/,44.5311985,-87.9834705,Green Bay +Oneida Nation Walk of Legends,"Lombardi Ave &, S Oneida St, Green Bay, WI 54304, USA",(920) 497-5944,https://www.greenbay.com/directory/oneida-nation-walk-of-legends/,44.5011961,-88.0562216,Green Bay +Bay Beach Wildlife Sanctuary,"1660 E Shore Dr, Green Bay, WI 54302, USA",(920) 391-3671,http://baybeachwildlife.com/,44.5294969,-87.97683420000001,Green Bay +The CityDeck,"301 N Washington St, Green Bay, WI 54301, USA",(920) 448-3365,https://greenbaywi.gov/,44.5168939,-88.0154409,Green Bay +Wequiock Falls,"3426 Bay Settlement Rd, Green Bay, WI 54311, USA",(920) 448-6242,http://www.co.brown.wi.us/departments/page_87b205fddb72/?department=260ed145263d&subdepartment=dadc284c6c54,44.5685106,-87.8792162,Green Bay +"Grassy Island Lighthouse, llc","Green Bay, WI 54302, USA",Unknown,Unknown,44.53614870000001,-88.00525460000001,Green Bay +Leicht Memorial Park,"128 Dousman St, Green Bay, WI 54303, USA",(812) 269-2442,https://greenbaywi.gov/Facilities/Facility/Details/Leicht-Memorial-106,44.5197705,-88.0158232,Green Bay +Bay Beach Amusement Park,"1313 Bay Beach Rd, Green Bay, WI 54302, USA",(920) 448-3365,http://www.baybeach.org/,44.5315546,-87.9797893,Green Bay +The Green Bay Mural,"620 Main St, Green Bay, WI 54301, USA",Unknown,Unknown,44.5156092,-88.00714450000001,Green Bay +Welcome to Green Bay sign,"Ashland & Liberty Outbound, Green Bay, WI 54304, USA",Unknown,Unknown,44.4999917,-88.0385816,Green Bay +Segway the Fox Tours,"200 N Broadway, Green Bay, WI 54303, USA",(920) 376-0256,https://glidenew.com/green-bay/,44.5182454,-88.0198352,Green Bay +Pamperin Park,"2801 County Road RK, Green Bay, WI 54303, USA",(920) 448-6242,http://www.co.brown.wi.us/departments/page_c5caa1e1b96c/?department=260ed145263d&subdepartment=dadc284c6c54,44.54515600000001,-88.101182,Green Bay +Ashwaubomay Lake,"2881 S Broadway, Green Bay, WI 54304, USA",(920) 492-2331,https://ashwaubenon.com/visitors/ashwaubomay-lake/,44.46539720000001,-88.0593383,Green Bay +Bay Beach Wildlife Sanctuary Nature Center,"Green Bay, WI 54302, USA",(920) 391-3671,http://www.baybeachwildlife.com/,44.5279404,-87.9729623,Green Bay +King of The North Mural,"305 S Broadway, Green Bay, WI 54303, USA",Unknown,Unknown,44.5137699,-88.02310500000002,Green Bay +Brown County WI Fonferek's Glen,"2825 Dutchman Rd, Green Bay, WI 54311, USA",(920) 448-6242,http://www.co.brown.wi.us/departments/page_01e36501ddc8/?department=260ed145263d&subdepartment=dadc284c6c54,44.425378,-87.9397493,Green Bay +Wenatchee Valley Museum & Cultural Center,"127 S Mission St, Wenatchee, WA 98801, USA",(509) 888-6240,http://www.wenatcheevalleymuseum.org/,47.4224411,-120.3108731,Wenatchee +Wenatchee Confluence State Park,"333 Olds Station Rd, Wenatchee, WA 98801, USA",(509) 664-6373,http://parks.state.wa.us/286/Wenatchee-Confluence,47.4604582,-120.3270233,Wenatchee +The Wells House,"801-817 Nelson Ave, Wenatchee, WA 98801, USA",(509) 888-6240,https://www.wenatcheevalleymuseum.org/wells-house/,47.4313447,-120.3334994,Wenatchee +Pybus Public Market,"3 N Worthen St, Wenatchee, WA 98801, USA",(509) 888-3900,http://www.pybuspublicmarket.org/,47.4252672,-120.30733,Wenatchee +Wenatchee Riverfront Park,"Apple Capitol Recreational Loop Trail, Wenatchee, WA 98801, USA",(509) 661-4551,http://www.chelanpud.org/parks-and-recreation/our-parks/day-use-parks/wenatchee-riverfront-park,47.4305338,-120.3105042,Wenatchee +Sweet Roll,"102 S Wenatchee Ave, Wenatchee, WA 98801, USA",Unknown,https://www.wenatcheewa.gov/services/parks-recreation-and-cultural-services/public-art-collection?locale=en,47.42321039999999,-120.3104606,Wenatchee +Porters Pond,"East Wenatchee, WA 98802, USA",Unknown,Unknown,47.4335622,-120.3039248,Wenatchee +Wenatchee Mural,"15 N Wenatchee Ave, Wenatchee, WA 98801, USA",Unknown,https://www.wenatcheewa.gov/services/parks-recreation-and-cultural-services/public-art-collection?locale=en,47.42518679999999,-120.3117178,Wenatchee +Horan Natural Area,"Apple Capitol Recreational Loop Trail, Wenatchee, WA 98801, USA",Unknown,https://www.wta.org/go-hiking/hikes/horan-natural-area-wenatchee-confluence,47.45371,-120.3272988,Wenatchee +Memorial Park,"2 S Chelan Ave, Wenatchee, WA 98801, USA",(509) 888-3284,http://www.wenatcheewa.gov/Home/Components/FacilityDirectory/FacilityDirectory/26/1312,47.4228044,-120.3138326,Wenatchee +Rotary Park,"Wenatchee, WA 98801, USA",(509) 888-3284,https://www.wenatcheewa.gov/Home/Components/FacilityDirectory/FacilityDirectory/10/1312,47.44321009999999,-120.3464695,Wenatchee +Bridge of Friendship,"East Wenatchee, WA 98802, USA",Unknown,Unknown,47.41856019999999,-120.2811403,Wenatchee +Blue Rock Vista Point,"4002 40th Cir NE, East Wenatchee, WA 98802, USA",Unknown,Unknown,47.4789523,-120.300994,Wenatchee +Walla Walla Point Park,"1351 Walla Walla Ave, Wenatchee, WA 98801, USA",(509) 661-8006,http://www.chelanpud.org/walla-walla-point-park.html,47.4435602,-120.3191952,Wenatchee +Centennial Park,"Centennial Park, 130 S Wenatchee Ave, Wenatchee, WA 98801, USA",(509) 888-3284,http://centennial-park-wenatchee.jany.io/,47.4223313,-120.3099117,Wenatchee +Apple Capital Recreation Loop Trail,"Horan Natural Area, Apple Capitol Recreational Loop Trail, Wenatchee, WA 98801, USA",Unknown,Unknown,47.453433,-120.3254826,Wenatchee +Saddle Rock Trailhead,"1130 Circle St, Wenatchee, WA 98801, USA",(509) 667-9708,http://alltrails.com/trail/us/washington/saddle-rock-nb-310-2013,47.3970339,-120.3298378,Wenatchee +Washington Park,"110 S Miller St, Wenatchee, WA 98801, USA",(509) 888-3284,http://www.wenatcheewa.gov/Home/Components/FacilityDirectory/FacilityDirectory/8/1312,47.42202899999999,-120.326082,Wenatchee +Linden Tree Park,"Wenatchee, WA 98801, USA",Unknown,Unknown,47.438588,-120.3149814,Wenatchee +Henry Godzilla Mural,"222 N Wenatchee Ave, Wenatchee, WA 98801, USA",Unknown,Unknown,47.4277559,-120.3145177,Wenatchee +Meow Wolf Santa Fe,"1352 Rufina Cir, Santa Fe, NM 87507, USA",(866) 636-9969,https://tickets.meowwolf.com/santa-fe/#gbp,35.6546084,-105.9968534,Santa Fe +Santa Fe Plaza,"63 Lincoln Ave, Santa Fe, NM 87501, USA",(505) 955-6200,http://www.santafenm.gov/,35.6874277,-105.9385121,Santa Fe +Georgia O'Keeffe Museum,"217 Johnson St, Santa Fe, NM 87501, USA",(505) 946-1000,http://okeeffemuseum.org/,35.6891517,-105.9412918,Santa Fe +Museum of International Folk Art,"On Museum Hill, 706 Camino Lejo, Santa Fe, NM 87505, USA",(505) 476-1204,http://www.moifa.org/,35.664126,-105.926582,Santa Fe +Palace of the Governors,"105 W Palace Ave, Santa Fe, NM 87501, USA",(505) 476-5100,http://www.nmhistorymuseum.org/,35.68782849999999,-105.938226,Santa Fe +Museum of Indian Arts & Culture,"710 Camino Lejo, Santa Fe, NM 87505, USA",(505) 476-1269,http://www.indianartsandculture.org/,35.6649182,-105.9249207,Santa Fe +New Mexico Museum of Art,"107 W Palace Ave, Santa Fe, NM 87501, USA",(505) 476-5063,http://www.nmartmuseum.org/,35.688143,-105.939017,Santa Fe +New Mexico History Museum,"113 Lincoln Ave, Santa Fe, NM 87501, USA",(505) 476-5200,http://www.nmhistorymuseum.org/,35.6882739,-105.9384354,Santa Fe +Cross of the Martyrs,"617 Paseo De Peralta, Santa Fe, NM 87501, USA",(505) 955-6949,http://www.santafenm.gov/district_1_parks,35.6895016,-105.9329236,Santa Fe +Cathedral Park,"131 Cathedral Pl, Santa Fe, NM 87501, USA",(505) 955-2143,http://www.santafenm.gov/,35.6869083,-105.9361917,Santa Fe +Oldest House Museum,"215 E De Vargas St, Santa Fe, NM 87501, USA",(505) 988-2488,http://www.oldesthousesantafe.com/,35.68360879999999,-105.9373314,Santa Fe +Fort Marcy Park,"490 Bishops Lodge Rd, Santa Fe, NM 87501, USA",(505) 955-2105,http://www.santafenm.gov/district_1_parks#leave-site-alert,35.69559479999999,-105.9347458,Santa Fe +Santa Fe Railyard Park,"740 Cerrillos Rd, Santa Fe, NM 87505, USA",(505) 982-3373,http://www.railyardpark.org/,35.68028770000001,-105.9503428,Santa Fe +Santa Fe Botanical Garden,"715 Camino Lejo, Santa Fe, NM 87505, USA",(505) 471-9103,http://www.santafebotanicalgarden.org/,35.6656347,-105.9270284,Santa Fe +The Cathedral Basilica of St. Francis of Assisi,"131 Cathedral Pl, Santa Fe, NM 87501, USA",(505) 982-5619,http://cbsfa.org/,35.68660309999999,-105.9364754,Santa Fe +San Miguel Chapel,"401 Old Santa Fe Trail, Santa Fe, NM 87501, USA",(505) 983-3974,http://sanmiguelchapelsantafe.org/,35.6834569,-105.9375553,Santa Fe +Museum of Spanish Colonial Art,"750 Camino Lejo, Santa Fe, NM 87505, USA",(505) 982-2226,https://www.spanishcolonial.org/,35.66602039999999,-105.9241452,Santa Fe +New Mexico State Capitol,"411 S Capitol St, Santa Fe, NM 87501, USA",(505) 986-4589,http://www.nmlegis.gov/lcs/,35.68239459999999,-105.9396949,Santa Fe +Santa Fe Children's Museum,"1050 Old Pecos Trail, Santa Fe, NM 87505, USA",(505) 989-8359,http://www.santafechildrensmuseum.org/,35.672994,-105.93693,Santa Fe +Wheelwright Museum of the American Indian,"704 Camino Lejo, Santa Fe, NM 87505, USA",(505) 982-4636,http://www.wheelwright.org/,35.662755,-105.927002,Santa Fe +Sunken Gardens,"1825 4th St N, St. Petersburg, FL 33704, USA",(727) 551-3102,http://www.stpete.org/sunken/,27.7897718,-82.6378269,St. Petersburg +St. Pete Pier,"600 2nd Ave NE, St. Petersburg, FL 33701, USA",(727) 822-7437,https://stpetepier.org/,27.7735842,-82.63142069999999,St. Petersburg +The Dalí (Salvador Dalí Museum),"1 Dali Blvd, St. Petersburg, FL 33701, USA",(727) 823-3767,https://thedali.org/,27.76590860000001,-82.6315789,St. Petersburg +Vinoy Park,"701 Bayshore Dr NE, St. Petersburg, FL 33701, USA",(727) 893-7441,http://www.stpeteparksrec.org/vinoypark/,27.7791003,-82.62572399999999,St. Petersburg +Museum of Fine Arts,"255 Beach Dr NE, St. Petersburg, FL 33701, USA",(727) 896-2667,https://mfastpete.org/,27.774421,-82.63188400000001,St. Petersburg +The monument of Tadeusz Kosciuszko,"128-198 3rd St N, St. Petersburg, FL 33701, USA",Unknown,Unknown,27.7732637,-82.6373377,St. Petersburg +The Florida Holocaust Museum,"55 5th St S, St. Petersburg, FL 33701, USA",(727) 820-0100,http://www.thefhm.org/,27.7705345,-82.6406366,St. Petersburg +North Straub Park,"400 Bayshore Dr NE, St. Petersburg, FL 33701, USA",(727) 893-7441,http://www.stpeteparksrec.org/northstraubpark/,27.7759766,-82.6312918,St. Petersburg +Imagine Museum,"1901 Central Ave, St. Petersburg, FL 33713, USA",(727) 300-1700,https://www.imaginemuseum.com/,27.7712671,-82.6593797,St. Petersburg +Boyd Hill Nature Preserve,"1101 Country Club Way S, St. Petersburg, FL 33705, USA",(727) 893-7326,http://www.stpeteparksrec.org/boydhillpreserve/,27.7255753,-82.64969649999999,St. Petersburg +St. Petersburg Museum of History,"335 2nd Ave NE, St. Petersburg, FL 33701, USA",(727) 894-1052,http://www.spmoh.org/,27.77412099999999,-82.6305801,St. Petersburg +St. Petersburg Sundial World’s Largest,"101 2nd Ave N, St. Petersburg, FL 33701, USA",Unknown,Unknown,27.77370359999999,-82.63478649999999,St. Petersburg +Albert Whitted Park,"480 Bayshore Dr SE, St. Petersburg, FL 33701, USA",(727) 893-7441,http://www.stpeteparksrec.org/albertwhittedpark/,27.76685239999999,-82.6282864,St. Petersburg +The James Museum of Western & Wildlife Art,"150 Central Ave, St. Petersburg, FL 33701, USA",(727) 892-4200,http://thejamesmuseum.org/,27.7710579,-82.63478769999999,St. Petersburg +Great Explorations Children's Museum,"1925 4th St N, St. Petersburg, FL 33704, USA",(727) 821-8992,http://greatex.org/,27.7903628,-82.6379247,St. Petersburg +Weedon Island Preserve,"1800 Weedon Dr NE, St. Petersburg, FL 33702, USA",(727) 453-6500,http://www.weedonislandpreserve.org/,27.8475889,-82.60866299999999,St. Petersburg +Sawgrass Lake Park,"7400 25th St N, St. Petersburg, FL 33702, USA",(727) 582-2100,http://www.pinellascounty.org/park/16_Sawgrass.htm,27.8379308,-82.6674635,St. Petersburg +St. Petersburg Saturday Morning Market,"Al Lang Stadium, 230 1st St SE, St. Petersburg, FL 33701, USA",(727) 855-1937,http://www.saturdaymorningmarket.com/,27.7681055,-82.6330698,St. Petersburg +Historic Round Lake Park,"6th Ave N, St. Petersburg, FL 33713, USA",(727) 893-7441,http://www.stpeteparksrec.org/historicroundlakepark/,27.7791289,-82.63990369999999,St. Petersburg +Sacred Lands,"1700 Park St N #4348, St. Petersburg, FL 33710, USA",(727) 347-0354,http://www.sacredlandspreservationandeducation.org/,27.7875426,-82.75356839999999,St. Petersburg +East Zwick's Centennial Park,"11 Bay Bridge Rd, Belleville, ON K8P 3P6, Canada",(347) 245-5302,https://www.belleville.ca/recreation/page/parks,44.1536828,-77.3862724,Belleville +Glanmore National Historic Site,"257 Bridge St E, Belleville, ON K8N 1P4, Canada",(613) 962-2329,http://glanmore.ca/,44.16699750000001,-77.36756000000001,Belleville +Riverside Park,"373 Moira St E, Belleville, ON K8P 4P3, Canada",(613) 968-6481,https://www.belleville.ca/recreation/page/parks,44.1892187,-77.3905778,Belleville +Pirate Ship Park,"373 Moira St E, Belleville, ON K8P 4P3, Canada",Unknown,https://m.facebook.com/pages/The-Pirate-Ship-Park/168575856540491,44.18794580000001,-77.3881349,Belleville +West Zwick's Island Park,"10 Bay Bridge Rd, Belleville, ON K8P 3P6, Canada",Unknown,https://www.belleville.ca/recreation/page/parks,44.15310909999999,-77.38888879999999,Belleville +Potter's Creek Conservation Area,"2061 Old Highway 2, Belleville, ON K8N 4Z2, Canada",(613) 968-3434,https://www.quinteconservation.ca/en/outdoor-spaces/potter_s-creek-conservation-area.aspx,44.13891129999999,-77.4296607,Belleville +Shorelines Casino Belleville,"380 Bell Blvd, Belleville, ON K8P 5H9, Canada",(613) 689-9100,http://www.shorelinescasinos.com/belleville,44.1829241,-77.42035659999999,Belleville +HR Frink Conservation Area and Outdoor Education Centre,"381 Thrasher Rd, Plainfield, ON K0K 2V0, Canada",(613) 968-3434,http://www.quinteconservation.ca,44.27877239999999,-77.3410569,Belleville +Corby Park,"Belleville, ON K8N 3K1, Canada",(613) 966-4632,https://www.belleville.ca/recreation/page/parks,44.1662056,-77.37676429999999,Belleville +Bird Park,"36 Hampton Ridge Drive, Belleville, ON K8N 4Z5, Canada",Unknown,https://www.belleville.ca/recreation/page/parks,44.1998143,-77.4112504,Belleville +Belleville Zwick Tom Gavey Pavilion,"50 Bay Bridge Rd, Belleville, ON K8P 1A7, Canada",Unknown,Unknown,44.151285,-77.38924730000001,Belleville +Promise Land Family Fun Farm,"640 Hamilton Rd, Belleville, ON K8N 4Z5, Canada",(613) 243-9533,Unknown,44.1633564,-77.47935199999999,Belleville +Tyendinaga Caves,"2623 Harmony Rd, Tyendinaga, ON K8N 4Z6, Canada",(613) 919-5686,http://www.tyendinagacaves.ca/,44.2808599,-77.27817999999999,Belleville +International Civil Rights Center & Museum,"134 S Elm St, Greensboro, NC 27401, USA",(336) 274-9199,http://www.sitinmovement.org/,36.07166670000001,-79.79055559999999,Greensboro +Greensboro Science Center,"4301 Lawndale Dr, Greensboro, NC 27455, USA",(336) 288-3769,http://www.greensboroscience.org/,36.12964950000001,-79.8334197,Greensboro +Wet 'n Wild Emerald Pointe Water Park,"3910 S Holden Rd, Greensboro, NC 27406, USA",(336) 852-9721,https://www.emeraldpointe.com/?utm_source=google&utm_medium=OrganicGMB&utm_id=GMBtraffic,36.00698300000001,-79.83812069999999,Greensboro +Greensboro History Museum,"130 Summit Ave, Greensboro, NC 27401, USA",(336) 373-2043,http://www.greensborohistory.org/,36.075657,-79.788027,Greensboro +Blandwood Museum,"447 W Washington St, Greensboro, NC 27401, USA",(336) 272-5003,https://preservationgreensboro.org/blandwood-museum/,36.0697988,-79.7955601,Greensboro +Miriam P. Brenner Children's Museum,"220 N Church St, Greensboro, NC 27401, USA",(336) 574-2898,http://www.mbcmuseum.com/,36.075226,-79.786074,Greensboro +Greensboro Arboretum,"3299 Starmount Dr, Greensboro, NC 27403, USA",(336) 373-4334,http://greensborobeautiful.org/gardens/greensboro_arboretum.php,36.0731652,-79.8375635,Greensboro +Greensboro Botanical Gardens,"1101 Hobbs Rd, Greensboro, NC 27410, USA",(336) 373-7690,http://greensborobeautiful.org/gardens/bog_garden.php,36.08975879999999,-79.8381977,Greensboro +Guilford Courthouse National Military Park,"2332 New Garden Rd, Greensboro, NC 27410, USA",(336) 288-1776,http://www.nps.gov/guco/index.htm,36.1331363,-79.84149029999999,Greensboro +Gateway Gardens,"2800 E Gate City Blvd, Greensboro, NC 27401, USA",(336) 373-2199,http://greensborobeautiful.org/gardens/gateway_gardens.php,36.0565909,-79.7494626,Greensboro +Tanger Family Bicentennial Garden,"1105 Hobbs Rd, Greensboro, NC 27410, USA",(336) 373-2199,http://www.greensborobeautiful.org/,36.0927904,-79.84133279999999,Greensboro +Tannenbaum Historic Park,"2200 New Garden Rd, Greensboro, NC 27410, USA",(336) 288-1776,https://www.nps.gov/guco/planyourvisit/basicinfo.htm,36.1297518,-79.85230810000002,Greensboro +City of Greensboro - Country Park,"3905 Nathanael Green Dr, Greensboro, NC 27455, USA",(336) 373-3648,https://www.greensboro-nc.gov/departments/parks-recreation/parks-gardens/country-park,36.1237468,-79.832478,Greensboro +"LeBauer Park @ Greensboro Downtown Parks, Inc.","208 N Davie St, Greensboro, NC 27401, USA",(336) 373-7533,http://www.greensborodowntownparks.org/,36.07470620000001,-79.7880926,Greensboro +O’Henry Book Statue,"301 N Elm St, Greensboro, NC 27401, USA",Unknown,Unknown,36.0751553,-79.7902824,Greensboro +Weatherspoon Art Museum,"1005 Spring Garden St, Greensboro, NC 27412, USA",(336) 334-5770,https://weatherspoonart.org/,36.06610879999999,-79.8060036,Greensboro +9/11 Sculpture,"501 S Elm St, Greensboro, NC 27406, USA",Unknown,Unknown,36.0672289,-79.7904895,Greensboro +Greensboro Water Tower,"801 N Regional Rd, Greensboro, NC 27409, USA",Unknown,Unknown,36.1223413,-79.959882,Greensboro +"Center City Park @ Greensboro Downtown Parks, Inc.","200 N Elm St, Greensboro, NC 27401, USA",(336) 373-7533,http://www.greensborodowntownparks.org/,36.0740079,-79.7895705,Greensboro +Carolina Model Railroaders,"234b E Washington St, Greensboro, NC 27401, USA",Unknown,http://www.carolinamodelrr.org/,36.0693611,-79.7881443,Greensboro +Prien Lake Park,"3700 W Prien Lake Rd, Lake Charles, LA 70605, USA",(337) 721-3540,Unknown,30.1878041,-93.26825799999999,Lake Charles +Imperial Calcasieu Museum,"204 W Sallier St, Lake Charles, LA 70601, USA",(337) 439-3797,http://www.imperialcalcasieumuseum.org/,30.21334850000001,-93.2221294,Lake Charles +Millennium Park,"900 Lakeshore Dr, Lake Charles, LA 70601, USA",(337) 491-1280,http://www.cityoflakecharles.com/,30.22508040000001,-93.22157849999999,Lake Charles +Jurassic Empire,"496 W Prien Lake Rd, Lake Charles, LA 70601, USA",Unknown,https://jurassicempire.com/,30.2005895,-93.2253714,Lake Charles +Lake Charles Visitor Center,"1205 N Lakeshore Dr, Lake Charles, LA 70601, USA",(337) 436-9588,https://www.visitlakecharles.org/,30.2364563,-93.2291523,Lake Charles +Mardi Gras Museum of Imperial Calcasieu,"Parking and entrance in back if building, Lake Charles, LA 70601, USA",Unknown,https://mardi-gras-museum-of-imperial-calcasieu.business.site/,30.2324306,-93.2038104,Lake Charles +Hillcrest Park Lake Charles,"Hillcrest Dr, Lake Charles, LA 70615, USA",Unknown,Unknown,30.211546,-93.1774037,Lake Charles +Bord Du Lac Park,"Bord du Lac Dr, Lake Charles, LA 70601, USA",Unknown,Unknown,30.230379,-93.2223989,Lake Charles +Isreal LeFleur Park,"3100 Kiwanis Ln, Lake Charles, LA 70601, USA",(337) 721-3540,http://www.cppj.net/index.aspx?page=447,30.1964125,-93.2713415,Lake Charles +Tuten Park,"3801 Nelson Rd, Lake Charles, LA 70601, USA",(337) 491-1280,http://www.cityoflakecharles.com/egov/apps/locations/facilities.egov?view=detail;id=28,30.18706079999999,-93.2479915,Lake Charles +Cypress Pond,"507 N Lakeshore Dr, Lake Charles, LA 70601, USA",Unknown,Unknown,30.2363868,-93.22793159999999,Lake Charles +Lock Park,"1535 Ryan St, Lake Charles, LA 70601, USA",(337) 491-1280,https://www.cityoflakecharles.com/eGov/apps/locations/facilities.egov?view=detail&id=14,30.2196429,-93.21843729999999,Lake Charles +Golden Nugget Lake Charles Hotel & Casino,"2550 Golden Nugget Blvd, Lake Charles, LA 70601, USA",(337) 508-7777,https://www.goldennugget.com/lake-charles/,30.20488619999999,-93.2634412,Lake Charles +Drew Park,"416 Dr Michael Debakey Dr, Lake Charles, LA 70601, USA",(337) 491-1280,http://www.cityoflakecharles.com/,30.2170598,-93.22566739999999,Lake Charles +Clinch Park,"111 E Grandview Pkwy, Traverse City, MI 49684, USA",(231) 922-4904,http://www.michigan.org/property/clinch-park/,44.76578139999999,-85.621521,Traverse City +Great Lakes Children's Museum,"13240 S W Bay Shore Dr, Traverse City, MI 49684, USA",(231) 932-4526,http://www.greatlakeskids.org/,44.786155,-85.638223,Traverse City +World's Largest Cherry Pie Pan,"3424 Cass Rd, Traverse City, MI 49684, USA",(231) 947-0692,Unknown,44.7362233,-85.6251954,Traverse City +Hippie Tree,"Traverse City, MI 49684, USA",Unknown,Unknown,44.7525757,-85.65038969999999,Traverse City +Pirate's Cove Adventure Park,"1710 US-31 North, Traverse City, MI 49686, USA",(231) 938-9599,Unknown,44.7451249,-85.5420085,Traverse City +Sunset Park,"635 E Front St, Traverse City, MI 49686, USA",Unknown,http://www.traversecitymi.gov/tcparksmaplist.asp,44.7646113,-85.6081044,Traverse City +East Bay Park,"220 E Bay Blvd S, Traverse City, MI 49686, USA",Unknown,Unknown,44.76286509999999,-85.57624100000001,Traverse City +Mission Point Lighthouse,"20500 Center Rd, Traverse City, MI 49686, USA",(231) 645-0759,http://www.missionpointlighthouse.com/,44.9912806,-85.4795028,Traverse City +Great Wolf Lodge Water Park | Traverse City,"3575 US-31, Traverse City, MI 49684, USA",(866) 478-9653,https://www.greatwolf.com/traverse-city?utm_source=google&utm_medium=organic&utm_campaign=gmb-traversecity,44.7388194,-85.6475857,Traverse City +Discovery Pier,"13271 S W Bay Shore Dr, Traverse City, MI 49684, USA",(231) 715-5200,https://discoverygreatlakes.org/,44.786198,-85.636034,Traverse City +Greilickville Harbor Park,"13133 S W Bay Shore Dr, Traverse City, MI 49684, USA",(231) 946-0921,Unknown,44.7881829,-85.6368358,Traverse City +Traverse City Veterans Memorial Park,"902-998 W Eleventh St, Traverse City, MI 49684, USA",Unknown,Unknown,44.7563042,-85.6385786,Traverse City +Keith J. Charters Traverse City State Park,"1132 US-31, Traverse City, MI 49686, USA",(231) 922-5270,https://www2.dnr.state.mi.us/parksandtrails/details.aspx?id=501&type=SPRK,44.7473278,-85.5529112,Traverse City +Lay Park,"301 S Union St, Traverse City, MI 49684, USA",Unknown,http://www.traversecitymi.gov/tcparksmaplist.asp,44.7610813,-85.6233657,Traverse City +Historic Barns Park,"1500 Red Dr, Traverse City, MI 49684, USA",(231) 409-8382,https://www.historicbarnspark.com/,44.7476828,-85.6479301,Traverse City +City Opera House,"106 E Front St, Traverse City, MI 49684, USA",(231) 941-8082,http://www.cityoperahouse.org/,44.76394729999999,-85.6234446,Traverse City +Grand Traverse County Civic Center,"1213 W Civic Center Dr, Traverse City, MI 49686, USA",(231) 922-4818,http://www.co.grand-traverse.mi.us/916/Civic-Center,44.7621467,-85.5912401,Traverse City +Family friendly beach,"191 E Grandview Pkwy, Traverse City, MI 49684, USA",Unknown,Unknown,44.7655175,-85.6196382,Traverse City +Gens Park,"2263 Munson Ave, Traverse City, MI 49686, USA",(231) 947-8647,Unknown,44.74667849999999,-85.53089949999999,Traverse City +Pelizzari Natural Area,"6852 Center Rd, Traverse City, MI 49686, USA",(231) 223-7322,http://www.gtrlc.org/protected-land/pelizzari-natural-area/,44.78620249999999,-85.5741516,Traverse City +Presque Isle State Park,"301 Peninsula Dr, Erie, PA 16505, USA",(814) 833-7424,http://www.dcnr.pa.gov/StateParks/FindAPark/PresqueIsleStatePark/Pages/default.aspx,42.1585823,-80.1149411,Erie +Erie Maritime Museum,"150 E Front St, Erie, PA 16507, USA",(814) 452-2744,http://eriemaritimemuseum.org/,42.1366367,-80.0867536,Erie +Tom Ridge Environmental Center at Presque Isle State Park,"301 Peninsula Dr, Erie, PA 16505, USA",(814) 833-7424,https://www.dcnr.pa.gov/StateParks/FindAPark/PresqueIsleStatePark/TRECPI/Pages/TRECPI.aspx,42.1099864,-80.1540494,Erie +expERIEnce Children's Museum,"420 French St, Erie, PA 16507, USA",(814) 453-3743,http://www.eriechildrensmuseum.org/,42.131262,-80.085,Erie +Erie Land Lighthouse,"2 Lighthouse St, Erie, PA 16507, USA",(814) 722-4610,http://www.presqueislelighthouse.org/,42.1442128,-80.0617784,Erie +Bicentennial Tower,"1 State St, Erie, PA 16507, USA",(814) 455-6055,http://www.porterie.org/bicentennial/,42.1388277,-80.09143139999999,Erie +Erie Zoo,"423 W 38th St, Erie, PA 16508, USA",(814) 864-4091,http://www.eriezoo.org/,42.0977099,-80.0765026,Erie +9/11 Memorial,"160 E Front St, Erie, PA 16507, USA",Unknown,Unknown,42.1366289,-80.0858457,Erie +Lake Erie Arboretum at Frontier,"1501 W 6th St, Erie, PA 16505, USA",(814) 453-5323,http://www.leaferie.org/,42.1187271,-80.1173713,Erie +Splash Lagoon,"8091 Peach St, Erie, PA 16509, USA",(866) 377-5274,http://www.splashlagoon.com/,42.04829499999999,-80.07792200000002,Erie +Presque Isle Lighthouse,"Presque Isle State Park, 301 Peninsula Dr, Erie, PA 16505, USA",(814) 833-3604,https://www.presqueislelighthouse.org/,42.1657745,-80.1152675,Erie +Firefighters Historical Museum,"428 Chestnut St, Erie, PA 16507, USA",(814) 456-5969,http://firefightershistoricalmuseum.org/,42.1274109,-80.0948028,Erie +Erie Art Museum,"20 E 5th St, Erie, PA 16507, USA",(814) 459-5477,https://erieartmuseum.org/,42.13104440000001,-80.08544599999999,Erie +Graffiti Wall,"1401 Peach St, Erie, PA 16501, USA",Unknown,Unknown,42.1207484,-80.0811579,Erie +Rainbow Gardens,"220 Waldameer Park Rd, Erie, PA 16505, USA",(814) 838-3591,https://www.90sdancepartyerie.com/,42.10861359999999,-80.1584199,Erie +Asbury Woods,"4105 Asbury Rd, Erie, PA 16506, USA",(814) 835-5356,http://www.asburywoods.org/,42.06123789999999,-80.1726319,Erie +ERIE Sign,"598 W 2nd St, Erie, PA 16507, USA",Unknown,https://ourwestbayfront.org/,42.12946290000001,-80.10146859999999,Erie +Perry Monument,"Perry Monument, Erie, PA 16507, USA",Unknown,Unknown,42.1550619,-80.0893966,Erie +Rocket Blast,"410420 Peninsula Dr, Erie, PA 16505, USA",Unknown,https://waldameer.com/park-attractions/rocket-blast/,42.1075597,-80.15486600000001,Erie +Fort Presque Isle (Blockhouse),"Erie, PA 16507, USA",Unknown,Unknown,42.140088,-80.07432299999999,Erie +Journey Behind the Falls,"6650 Niagara River Pkwy, Niagara Falls, ON L2E 6T2, Canada",(877) 642-7275,https://www.niagaraparks.com/visit/attractions/journey-behind-the-falls/,43.0791958,-79.07849619999999,Niagara Falls +Niagara SkyWheel,"4960 Clifton Hill, Niagara Falls, ON L2G 3N4, Canada",(905) 358-4793,http://www.cliftonhill.com/attractions/niagara-skywheel,43.090929,-79.0755099,Niagara Falls +Cave of the Winds,"Goat Island Rd, Niagara Falls, NY 14303, USA",(716) 285-0705,https://www.niagarafallsstatepark.com/attractions-and-tours/cave-of-the-winds,43.0822943,-79.0713474,Niagara Falls +White Water Walk,"4330 River Rd, Niagara Falls, ON L2G 6T2, Canada",(877) 642-7275,https://www.niagaraparks.com/visit/attractions/white-water-walk/,43.1109554,-79.0604553,Niagara Falls +Bird Kingdom,"5651 River Rd, Niagara Falls, ON L2E 7M7, Canada",(905) 356-8888,http://www.birdkingdom.ca/,43.09262809999999,-79.0687007,Niagara Falls +Queen Victoria Park,"6345 Niagara River Pkwy, Niagara Falls, ON L2E 6X8, Canada",(905) 358-1814,https://www.niagaraparks.com/visit/nature-garden/queen-victoria-park/,43.08662599999999,-79.077083,Niagara Falls +Skylon Tower,"5200 Robinson St, Niagara Falls, ON L2G 2A2, Canada",(905) 356-2651,https://www.skylon.com/?utm_source=GMB&utm_medium=Organic&utm_campaign=Yrly,43.08509309999999,-79.07956200000001,Niagara Falls +Horseshoe Falls of Canada,"6650 Niagara River Pkwy, Niagara Falls, ON L2E 6T2, Canada",(905) 356-2241,https://www.niagaraparks.com/,43.0771624,-79.0757318,Niagara Falls +Niagara Glen Nature Centre,"3050 Niagara River Pkwy, Niagara Falls, ON L2E, Canada",(905) 354-6678,https://www.niagaraparks.com/visit/attractions/niagara-glen-nature-centre,43.1291667,-79.06,Niagara Falls +Niagara Falls Observation Tower,"332 Prospect St, Niagara Falls, NY 14303, USA",(716) 278-1794,https://www.niagarafallsstatepark.com/attractions-and-tours/observation-tower,43.086908,-79.06879169999999,Niagara Falls +Butterfly Conservatory,"2565 Niagara River Pkwy, Niagara-on-the-Lake, ON L0S 1J0, Canada",(905) 358-0025,https://www.niagaraparks.com/visit/attractions/butterfly-conservatory/,43.1370218,-79.0555897,Niagara Falls +Fallsview Tourist Area,"5305 Murray St, Niagara Falls, ON L2G 3W6, Canada",(514) 446-6789,Unknown,43.0826352,-79.0832261,Niagara Falls +Great Canadian Midway,"4848 Clifton Hill, Niagara Falls, ON L2G 3N4, Canada",(905) 358-3676,https://www.cliftonhill.com/attractions/great-canadian-midway,43.09110469999999,-79.0746084,Niagara Falls +Niagara Falls Canada,"5704 Falls Ave, Niagara Falls, ON L2G 3K7, Canada",(289) 800-2800,http://www.canadianshuttle.com/,43.09142919999999,-79.0709396,Niagara Falls +Fallsview Indoor Waterpark,"5685 Falls Ave, Niagara Falls, ON L2E 6W7, Canada",(905) 374-4444,https://www.fallsviewwaterpark.com/,43.092463,-79.07175800000002,Niagara Falls +Table Rock Welcome Centre,"6650 Niagara River Pkwy, Niagara Falls, ON L2E 6T2, Canada",(905) 358-3268,http://www.niagaraparks.com/visit/welcome-centres/table-rock-centre/,43.0791675,-79.0788306,Niagara Falls +Niagara's Fury,"6650 Niagara River Pkwy, Niagara Falls, ON L2G 0L0, Canada",(905) 358-3268,https://www.niagaraparks.com/visit/attractions/niagaras-fury/,43.079258,-79.0788046,Niagara Falls +Niagara Falls Fireworks,"6660 Niagara River Pkwy, Niagara Falls, ON L2G 3N4, Canada",(905) 356-6061,https://www.niagarafallstourism.com/fireworks/,43.0841316,-79.0764402,Niagara Falls +Whirlpool Aero Car,"3850 Niagara River Pkwy, Niagara Falls, ON L2E 3E8, Canada",(877) 642-7275,https://www.niagaraparks.com/visit/attractions/whirlpool-aero-car/,43.1180306,-79.0687889,Niagara Falls +Niagara Parks Power Station,"7005 Niagara River Pkwy, Niagara Falls, ON L0S 1A0, Canada",(877) 642-7275,https://www.niagaraparks.com/visit/attractions/niagara-parks-power-station,43.075022,-79.0792878,Niagara Falls +Fort Hall Replica and Commemorative Trading Post,"3000 Avenue of the Chiefs, Pocatello, ID 83204, USA",(208) 233-0434,http://www.bchm-id.org/,42.8441988,-112.4189232,Pocatello +Museum of Clean,"711 S 2nd Ave, Pocatello, ID 83201, USA",(208) 236-6906,https://museumofclean.com/visit/,42.85960439999999,-112.4417621,Pocatello +Idaho Museum of Natural History,"698 E Dillon St, Pocatello, ID 83201, USA",(208) 282-3168,http://imnh.isu.edu/,42.86022880000001,-112.4337638,Pocatello +Zoo Idaho,"2900 S 2nd Ave, Pocatello, ID 83204, USA",(208) 234-6264,https://zooidaho.org/,42.84240959999999,-112.4218443,Pocatello +Bannock County Historical Museum,"3000 Avenue of the Chiefs, Pocatello, ID 83204, USA",(208) 233-0434,http://www.bchm-id.org/,42.8442022,-112.4189361,Pocatello +Ammon Park,"Pocatello, ID 83201, USA",(208) 234-6232,https://www.pocatello.us/facilities/facility/details/ammonpark-7,42.8832072,-112.4307986,Pocatello +The Standrod House,"648 N Garfield Ave, Pocatello, ID 83204, USA",(208) 479-7659,https://www.visitpocatello.com/stanrod-house/,42.8653144,-112.4573864,Pocatello +Ross Park,"2695 S 2nd Ave, Pocatello, ID 83204, USA",(208) 234-0472,https://www.pocatello.us/facilities/facility/details/lower-ross-park-west-side-29,42.8422061,-112.4235477,Pocatello +O.K. Ward Park / Brooklyn's Playground,"1400 W Quinn Rd & Northern Lights Drive, Pocatello, ID 83202, USA",(208) 234-6232,http://www.pocatello.us/Facilities/Facility/Details/OK-Ward-Park-Brooklyn39s-Playground-22,42.907357,-112.4831269,Pocatello +Christmas Lights at Delphic Ct,"1455 Delphic Ct, Pocatello, ID 83201, USA",Unknown,Unknown,42.9071804,-112.4339377,Pocatello +Outer Limits Fun Zone,"1800 Garrett Way, Pocatello, ID 83201, USA",(208) 232-7529,http://www.outerlimitsfunzone.com/,42.878599,-112.458275,Pocatello +Sacajawea Park,"Aspen Ln, Pocatello, ID 83204, USA",(208) 234-6232,http://www.pocatello.us/Facilities/Facility/Details/Sacajawea-Park-30,42.875759,-112.472026,Pocatello +Westello Park,"70 Westello Blvd, Pocatello, ID 83204, USA",(208) 234-6232,https://www.pocatello.us/278/Parks-Recreation,42.8625677,-112.4769004,Pocatello +Constitution Park,"4020 S 5th Ave, Pocatello, ID 83204, USA",(208) 234-6232,http://www.pocatello.us/Facilities/Facility/Details/Constitution-Park-14,42.8363152,-112.4055274,Pocatello +Historic Downtown Pocatello,"435 W Center St, Pocatello, ID 83204, USA",(208) 232-7545,https://www.historicdowntownpocatello.com/,42.86093389999999,-112.4521033,Pocatello +Sister City Park,"Pocatello Creek Road &, Satterfield Dr, Pocatello, ID 83201, USA",(208) 234-6232,http://www.pocatello.us/Facilities/Facility/Details/Sister-City-Park-32,42.9009256,-112.4203441,Pocatello +The Mini Berkeley Pit,"4279 W Arizona Dr, Pocatello, ID 83202, USA",Unknown,Unknown,42.911204,-112.4974419,Pocatello +Entering Fort Hall Indian Reservation,"Pocatello, ID 83204, USA",Unknown,Unknown,42.9126237,-112.5362792,Pocatello +Ross Park Aquatic Complex,"2901 S 2nd Ave, Pocatello, ID 83204, USA",(208) 234-0472,https://pocatello.gov/rpac/,42.842445,-112.4232137,Pocatello +Cherry Springs Nature Area,"2-702 Mink Crk Rd, Pocatello, ID 83204, USA",(208) 557-5900,https://www.fs.usda.gov/recarea/ctnf/recarea/?recid=53865,42.7511957,-112.3939589,Pocatello +Giant Eagle Waterfall Nest,"1075 S Utah Ave, Idaho Falls, ID 83402, USA",Unknown,Unknown,43.4881074,-112.0492513,Idaho Falls +Idaho Falls Zoo at Tautphaus Park,"2940 Carnival Way, Idaho Falls, ID 83402, USA",(208) 612-8552,https://www.idahofallsidaho.gov/1230/Zoo,43.4720073,-112.0413356,Idaho Falls +Museum of Idaho,"200 N Eastern Ave, Idaho Falls, ID 83402, USA",(208) 522-1400,http://www.museumofidaho.org/,43.49043559999999,-112.0381705,Idaho Falls +Eagle Rock Fountain,"S Utah Ave, Idaho Falls, ID 83402, USA",Unknown,Unknown,43.488604,-112.0497842,Idaho Falls +Ghost Walk Idaho Falls,"510 Park Ave, Idaho Falls, ID 83402, USA",(208) 757-0121,http://www.ghostwalkidahofalls.com/,43.4935792,-112.0398192,Idaho Falls +Collectors Corner Museum,"900 John Adams Pkwy, Idaho Falls, ID 83401, USA",(208) 528-9900,https://www.facebook.com/collectors50/,43.4934538,-112.013692,Idaho Falls +East Idaho Aquarium,"570 E Anderson St, Idaho Falls, ID 83401, USA",(208) 569-2996,http://eastidahoaquarium.com/,43.51092209999999,-112.0216562,Idaho Falls +The Art Museum Of Eastern Idaho,"300 S Capital Ave, Idaho Falls, ID 83402, USA",(208) 524-7777,http://www.theartmuseum.org/,43.4901557,-112.0454372,Idaho Falls +Idaho Falls River Walk - Greenbelt Trail,"525 River Pkwy, Idaho Falls, ID 83402, USA",(208) 529-1200,Unknown,43.4964851,-112.0439624,Idaho Falls +Funland,"365 Sunken Diamond Dr, Idaho Falls, ID 83402, USA",(208) 525-9814,https://funlandatthezoo.com/,43.4731142,-112.0406516,Idaho Falls +Love Lock Pier View- River Walk,"1623 Idaho Falls Greenbelt Trail, Idaho Falls, ID 83402, USA",Unknown,Unknown,43.4835846,-112.0504718,Idaho Falls +Japanese Friendship Garden,"600 W Broadway St, Idaho Falls, ID 83402, USA",(208) 612-8580,https://www.idahofallsidaho.gov/1248/Japanese-Friendship-Garden,43.4925,-112.0447222,Idaho Falls +Tautphaus Park,"Idaho Falls, ID 83402, USA",(208) 525-9814,https://www.idahofallsidaho.gov/,43.473726,-112.0393608,Idaho Falls +Old Butte Park,"Idaho Falls, ID 83402, USA",Unknown,Unknown,43.5004813,-112.0918546,Idaho Falls +Kate Curley Park,"300-398 9th St, Idaho Falls, ID 83404, USA",(208) 612-8480,https://www.idahofallsidaho.gov/facilities/facility/details/Kate-Curley-Park-Shelter-25,43.4893686,-112.0274308,Idaho Falls +Russ Freeman Park,"1290 Science Center Dr, Idaho Falls, ID 83402, USA",(208) 612-8100,https://www.idahofallsidaho.gov/Facilities/Facility/Details/Freeman-Park-15,43.5149128,-112.0482712,Idaho Falls +Reinhart Park,"1055 Washburn Ave, Idaho Falls, ID 83402, USA",(208) 612-8479,https://www.idahofallsidaho.gov/Facilities/Facility/Details/-32,43.5049445,-112.07035,Idaho Falls +Mini Golden Gate Bridge,"395 Lindsay Blvd, Idaho Falls, ID 83402, USA",Unknown,Unknown,43.4945219,-112.0461069,Idaho Falls +Bison Art in the park,"700 Lindsay Blvd, Idaho Falls, ID 83402, USA",Unknown,Unknown,43.49945349999999,-112.04452,Idaho Falls +Pets of Downtown Mural,"343 Park Ave, Idaho Falls, ID 83402, USA",Unknown,Unknown,43.4922698,-112.041238,Idaho Falls +Great Lakes Maritime Heritage Center,"500 W Fletcher St, Alpena, MI 49707, USA",(989) 884-6200,https://thunderbay.noaa.gov/visit/great-lakes-maritime-heritage-center.html,45.0685734,-83.4346415,Alpena +Besser Museum for Northeast Michigan,"491 Johnson St, Alpena, MI 49707, USA",(989) 356-2202,http://www.bessermuseum.org/,45.0806742,-83.4484532,Alpena +Mich-e-ke-wis Park,"1302 S State Ave, Alpena, MI 49707, USA",(989) 354-1720,https://www.alpena.mi.us/residents/city_parks/mich-e-ke-wis_park.php,45.0450136,-83.4475787,Alpena +Alpena Wildlife Sanctuary,"Alpena, MI 49707, USA",Unknown,https://www.alpena.mi.us/,45.0708621,-83.4574414,Alpena +Bay View Park,"208 N 1st Ave, Alpena, MI 49707, USA",(989) 354-1780,https://www.alpena.mi.us/residents/city_parks/bay_view_park.php,45.0582821,-83.4321458,Alpena +Island Park,"River St, Alpena, MI 49707, USA",(989) 354-1700,https://www.alpena.mi.us/residents/city_parks/island_park.php,45.0758699,-83.4526248,Alpena +McRae Park,"1301 N 2nd Ave, Alpena, MI 49707, USA",(989) 354-1720,https://www.alpena.mi.us/residents/city_parks/mcrae_park.php,45.0716212,-83.4195319,Alpena +Alpena Shipwreck Tours,"500 W Fletcher St, Alpena, MI 49707, USA",(888) 469-4696,http://alpenashipwrecktours.com/,45.06866399999999,-83.4345113,Alpena +Arzo Amusement Park,"6051 U.S. 23 N, Alpena, MI 49707, USA",(989) 358-1111,http://www.arzopark.com/,45.1344611,-83.4409319,Alpena +Wilmington Riverwalk,"Wilmington Downtown Riverwalk, Wilmington, NC 28401, USA",Unknown,https://www.wilmingtonnc.gov/visitors/riverwalk,34.2352196,-77.9499727,Wilmington +Bellamy Mansion Museum,"503 Market St, Wilmington, NC 28401, USA",(910) 251-3700,http://www.bellamymansion.org/,34.2361477,-77.9430101,Wilmington +Cape Fear Museum of History and Science,"814 Market St, Wilmington, NC 28401, USA",(910) 798-4370,https://www.nhcgov.com/548/Cape-Fear-Museum,34.2358178,-77.9383561,Wilmington +Museum of the Bizarre,"201 S Water St, Wilmington, NC 28401, USA",(910) 399-2641,http://www.museumbizarre.com/,34.23268509999999,-77.9490153,Wilmington +Airlie Gardens,"300 Airlie Rd, Wilmington, NC 28403, USA",(910) 798-7700,http://airliegardens.org/,34.2182979,-77.8302416,Wilmington +Wilmington Railroad Museum,"505 Nutt St, Wilmington, NC 28401, USA",(910) 763-2634,http://www.wrrm.org/,34.2416797,-77.9508027,Wilmington +Jungle Rapids Family Fun Park,"5320 Oleander Dr, Wilmington, NC 28403, USA",(910) 791-0666,http://www.junglerapids.com/,34.207308,-77.8630797,Wilmington +Burgwin-Wright House and Gardens,"224 Market St, Wilmington, NC 28401, USA",(910) 762-0570,http://www.burgwinwrighthouse.com/,34.2352069,-77.9462863,Wilmington +The Children's Museum of Wilmington,"116 Orange St, Wilmington, NC 28401, USA",(910) 254-3534,http://www.playwilmington.org/,34.23274130000001,-77.9474961,Wilmington +Battleship North Carolina,"1 Battleship Rd NE, Wilmington, NC 28401, USA",(910) 399-9100,http://www.battleshipnc.com/,34.2365524,-77.9543704,Wilmington +Cameron Art Museum,"3201 S 17th St, Wilmington, NC 28412, USA",(910) 395-5999,http://www.cameronartmuseum.org/,34.18409489999999,-77.9154152,Wilmington +One Tree Hill: The Bridge,"694 N 6th St, Wilmington, NC 28401, USA",Unknown,Unknown,34.24381109999999,-77.9429268,Wilmington +Bijou Park,"209 N Front St, Wilmington, NC 28401, USA",Unknown,http://www.wilmingtonnc.gov/departments/parks-recreation/parks,34.2380299,-77.9492872,Wilmington +Wilmington Downtown Incorporated,"226 N Front St Suite 130, Wilmington, NC 28401, USA",(910) 998-7744,http://www.wilmingtondowntown.com/,34.2381179,-77.94856659999999,Wilmington +Battleship Park,"191-199 USS North Carolina Rd, Wilmington, NC 28401, USA",Unknown,https://www.battleshipnc.com/,34.2356666,-77.9523976,Wilmington +Long Leaf Park,"314 Pine Grove Dr, Wilmington, NC 28409, USA",(910) 798-7275,https://parks.nhcgov.com/,34.2081747,-77.8819245,Wilmington +Halyburton Park,"4099 S 17th St, Wilmington, NC 28412, USA",(910) 341-0075,https://www.wilmingtonnc.gov/departments/parks-recreation/halyburton-park,34.17563059999999,-77.90535799999999,Wilmington +1898 Memorial Park,"1018 N 3rd St, Wilmington, NC 28401, USA",(910) 341-7852,http://www.wilmingtonnc.gov/departments/parks-recreation/parks,34.2478338,-77.9471185,Wilmington +Latimer House,"126 S 3rd St, Wilmington, NC 28401, USA",(910) 606-4343,http://www.latimerhouse.org/,34.23321769999999,-77.9461429,Wilmington +Tregembo Animal Park,"5811 Carolina Beach Rd, Wilmington, NC 28412, USA",(910) 392-3604,http://www.tregemboanimalpark.com/,34.1273377,-77.8972646,Wilmington +CN Tower,"290 Bremner Blvd, Toronto, ON M5V 3L9, Canada",(416) 868-6937,https://www.cntower.ca/en-ca/home.html,43.6425662,-79.3870568,Ontario +Journey Behind the Falls,"6650 Niagara River Pkwy, Niagara Falls, ON L2E 6T2, Canada",(877) 642-7275,https://www.niagaraparks.com/visit/attractions/journey-behind-the-falls/,43.0791958,-79.07849619999999,Ontario +Art Gallery of Ontario,"317 Dundas St W, Toronto, ON M5T 1G4, Canada",(416) 979-6648,https://ago.ca/,43.6536066,-79.39251229999999,Ontario +Royal Ontario Museum,"100 Queens Park, Toronto, ON M5S 2C6, Canada",(416) 586-8000,https://www.rom.on.ca/,43.6677097,-79.3947771,Ontario +Parliament Hill,"Wellington St, Ottawa, ON K1A 0A9, Canada",(613) 992-4793,https://www.parl.ca/,45.4235937,-75.700929,Ontario +Canada's Wonderland,"Vaughan, ON L6A 1S6, Canada",(905) 832-8131,https://www.canadaswonderland.com/,43.8423619,-79.54121549999999,Ontario +Fort William Historical Park,"1350 King Rd, Thunder Bay, ON P7K 1L7, Canada",(807) 473-2344,https://fwhp.ca/,48.3469885,-89.3542954,Ontario +Cheltenham Badlands,"1739 Olde Base Line Rd, Caledon, ON L7C 0K6, Canada",(800) 367-0890,https://cvc.ca/discover-our-parks/the-cheltenham-badlands/,43.7759893,-79.9425629,Ontario +Algonquin Provincial Park,"Ontario 60, Ontario K0J 2M0, Canada",(705) 633-5572,http://www.ontarioparks.com/,45.83715909999999,-78.3791239,Ontario +Niagara SkyWheel,"4960 Clifton Hill, Niagara Falls, ON L2G 3N4, Canada",(905) 358-4793,http://www.cliftonhill.com/attractions/niagara-skywheel,43.090929,-79.0755099,Ontario +Skylon Tower,"5200 Robinson St, Niagara Falls, ON L2G 2A2, Canada",(905) 356-2651,https://www.skylon.com/?utm_source=GMB&utm_medium=Organic&utm_campaign=Yrly,43.08509309999999,-79.07956200000001,Ontario +Scenic Caves Nature Adventures,"260 Scenic Caves Rd, The Blue Mountains, ON L9Y 0P2, Canada",(705) 446-0256,http://www.sceniccaves.com/,44.4878276,-80.3163245,Ontario +Ontario Place,"955 Lake Shore Blvd W, Toronto, ON M6K 3B9, Canada",(416) 314-9900,http://www.ontarioplace.com/,43.6282065,-79.41548,Ontario +Pukaskwa National Park,"ON-627, Heron Bay, ON P0T 1R0, Canada",(807) 229-0801,https://www.pc.gc.ca/pukaskwa?utm_source=gmb&utm_medium=pukaskwa,48.5930342,-86.2933777,Ontario +Fort Henry National Historic Site,"1 Fort Henry Dr, Kingston, ON K7K 5G8, Canada",(800) 437-2233,https://www.forthenry.com/,44.2309431,-76.4598731,Ontario +Fallsview Tourist Area,"5305 Murray St, Niagara Falls, ON L2G 3W6, Canada",(514) 446-6789,Unknown,43.0826352,-79.0832261,Ontario +Movieland Wax Museum Niagara Falls,"4848 Clifton Hill, Niagara Falls, ON L2G 3N4, Canada",(905) 358-3061,http://www.cliftonhill.com/attractions/movieland-wax-museum-stars,43.09092189999999,-79.0739507,Ontario +Thunder Bay Tourist Pagoda,"198 Red River Rd, Thunder Bay, ON P7A 4K8, Canada",(807) 684-3670,https://www.visitthunderbay.com/en/about-us/visitor-centres.aspx?_mid_=466,48.43456399999999,-89.2180427,Ontario +Niagara Glen Nature Centre,"3050 Niagara River Pkwy, Niagara Falls, ON L2E, Canada",(905) 354-6678,https://www.niagaraparks.com/visit/attractions/niagara-glen-nature-centre,43.1291667,-79.06,Ontario +Ouimet Canyon Provincial Park,"Greenwich Lake Rd, Pass Lake, ON P0T 2M0, Canada",(807) 977-2526,https://www.ontarioparks.com/park/ouimetcanyon,48.7895139,-88.6712946,Ontario +Iron Mountain City Park,"N Park Rd, Iron Mountain, MI 49801, USA",Unknown,Unknown,45.8187355,-88.0876916,Iron Mountain +Samuel Bassett Viewing Platform,"400 E Hughitt St, Iron Mountain, MI 49801, USA",Unknown,Unknown,45.8212443,-88.0592099,Iron Mountain +World War II Glider and Military Museum,"302 Kent St, Iron Mountain, MI 49801, USA",(906) 774-1086,http://www.menomineemuseum.com/,45.824965,-88.07048050000002,Iron Mountain +Lake Antoine Park,"S Lake Antoine Rd, Iron Mountain, MI 49801, USA",(906) 774-8875,https://www.dickinsoncountymi.gov/government/county_departments/parks/index.php,45.8398867,-88.0163795,Iron Mountain +Millie Hill Bat Viewing,"Iron Mountain, MI 49801, USA",Unknown,Unknown,45.82096660000001,-88.0554784,Iron Mountain +Iron Mountain Welcome Center,"618 S Stephenson Ave, Iron Mountain, MI 49801, USA",(906) 774-4201,Unknown,45.8169662,-88.06544749999999,Iron Mountain +Buddy Holly Center,"1801 Crickets Ave, Lubbock, TX 79401, USA",(806) 775-3560,http://www.buddyhollycenter.org/,33.578509,-101.8426663,Lubbock +National Ranching Heritage Center,"3121 4th St, Lubbock, TX 79409, USA",(806) 742-0498,http://www.ranchingheritage.org/,33.5908318,-101.8840372,Lubbock +American Windmill Museum,"1701 Canyon Lake Dr, Lubbock, TX 79403, USA",(806) 747-8734,http://www.windmill.com/,33.5805711,-101.8235743,Lubbock +Mackenzie Main City Park,"301 I-27, Lubbock, TX, USA",(806) 775-2673,https://www.ci.lubbock.tx.us/,33.595618,-101.8380727,Lubbock +Museum of Texas Tech University,"3301 4th St, Lubbock, TX 79415, USA",(806) 742-2490,http://www.depts.ttu.edu/museumttu/,33.5906441,-101.8858761,Lubbock +Prairie Dog Town,"MacKenzie Park Rd, Lubbock, TX 79401, USA",(806) 775-2673,https://ci.lubbock.tx.us/departments/parks-recreation/parks/prairie-dog-town,33.5985402,-101.8332249,Lubbock +Lubbock Lake National Historic Landmark,"2401 Landmark Dr, Lubbock, TX 79415, USA",(806) 742-1116,http://www.lubbocklake.ttu.edu/,33.6221931,-101.8895461,Lubbock +Buddy Holly Statue,"1824 Crickets Ave, Lubbock, TX 79404, USA",(806) 775-2242,http://civiclubbock.com/,33.5781916,-101.8435121,Lubbock +Silent Wings Museum,"Lubbock, TX 79403, USA",(806) 775-3049,https://ci.lubbock.tx.us/departments/silent-wings-museum,33.6576936,-101.8318144,Lubbock +FiberMax Center for Discovery,"1121 Canyon Lake Dr, Lubbock, TX 79403, USA",(806) 744-3786,http://www.agriculturehistory.org/,33.5859838,-101.8231243,Lubbock +Lubbock Memorial Arboretum,"4111 University Ave, Lubbock, TX 79413, USA",(806) 797-4520,http://www.lubbockarboretum.org/,33.5563278,-101.8700974,Lubbock +George Bush,"3402 58th St, Lubbock, TX 79413, USA",Unknown,https://usa-artmuseum.worldorgs.com/catalog/lubbock/tourist-attraction/george-bush,33.541719,-101.8879512,Lubbock +Science Spectrum & OMNI Theater,"2579 S Loop 289 #250, Lubbock, TX 79423, USA",(806) 745-2525,http://www.sciencespectrum.org/,33.5283386,-101.8765636,Lubbock +O.W. Ribble Park,"62nd St, Lubbock, TX 79401, USA",(806) 775-2687,Unknown,33.5403373,-101.8601783,Lubbock +Leftwich Park,"3101 60th St, Lubbock, TX 79413, USA",Unknown,Unknown,33.5382186,-101.8827563,Lubbock +West Texas Walk of Fame,"19th St, Lubbock, TX 79404, USA",Unknown,Unknown,33.578189,-101.8435138,Lubbock +Water Rampage,"6602 Marsha Sharp Fwy W, Lubbock, TX 79407, USA",(806) 771-5953,https://waterrampage.com/,33.542203,-101.9618206,Lubbock +Aztlan Park,"1019 1st Pl, Lubbock, TX 79401, USA",(806) 775-2687,Unknown,33.5989052,-101.8460948,Lubbock +Mae Simmons Park,"2004 Oak Ave, Lubbock, TX 79404, USA",(806) 767-2700,https://ci.lubbock.tx.us/departments/parks-recreation/parks/lubbock-parks,33.5770591,-101.8217814,Lubbock +Stumpy Hamilton Park,"Lubbock, TX 79411, USA",(806) 775-2687,Unknown,33.5744142,-101.8662596,Lubbock +ExplorationWorks,"995 Carousel Way, Helena, MT 59601, USA",(406) 457-1800,http://www.explorationworks.org/,46.597646,-112.036181,Helena +Great Northern Carousel,"989 Carousel Way, Helena, MT 59601, USA",(406) 457-5353,http://www.gncarousel.com/,46.59757390000001,-112.0367448,Helena +Original Governor's Mansion,"304 N Ewing St, Helena, MT 59601, USA",Unknown,http://mhs.mt.gov/,46.5878352,-112.0350337,Helena +Holter Museum of Art,"12 E Lawrence St, Helena, MT 59601, USA",(406) 442-6400,http://www.holtermuseum.org/,46.59057300000001,-112.0365359,Helena +Reeder's Alley,"101 Reeders Alley, Helena, MT 59601, USA",(406) 843-5247,http://reedersalley.com/,46.584925,-112.043507,Helena +Cathedral of Saint Helena,"530 N Ewing St, Helena, MT 59601, USA",(406) 442-5825,http://sthelenas.org/,46.5901658,-112.0336939,Helena +Centennial Park,"1200 N Last Chance Gulch, Helena, MT 59601, USA",(406) 447-8463,https://www.helenamt.gov/Parks/CentennialBausch-Park,46.5999258,-112.0312028,Helena +Spring Meadow Lake State Park,"2715 Country Club Ave, Helena, MT 59620, USA",(406) 449-5109,http://stateparks.mt.gov/spring-meadow-lake,46.61212949999999,-112.0752399,Helena +Memorial Park,"1203 N Last Chance Gulch, Helena, MT 59601, USA",Unknown,https://www.helenamt.gov/Parks/Memorial-Park,46.5995855,-112.0291943,Helena +Lewis & Clark Interpretive Experience,"40 W 14th St, Helena, MT 59601, USA",(406) 457-5542,Unknown,46.59655319999999,-112.0374054,Helena +Pioneer Park,"120 S Last Chance Gulch St, Helena, MT 59601, USA",Unknown,Unknown,46.5847401,-112.042453,Helena +The H,"Helena, MT 59601, USA",Unknown,Unknown,46.59086099999999,-112.0599867,Helena +Mount Helena,"Dump Out Trail, Helena, MT 59601, USA",Unknown,Unknown,46.5879857,-112.0655177,Helena +Northwest Park,"Parking lot, 100 Valley Dr, Helena, MT 59601, USA",(406) 253-3655,Unknown,46.6130795,-112.0488907,Helena +Flying Giant Adventure Park,"3351 Tricia St, Helena, MT 59601, USA",(406) 458-5867,https://sleepinggiantparks.com/adventurepark/,46.5906137,-111.9708731,Helena +Broken Wheel Petting Farm,"3900 Wylie Dr, Helena, MT 59602, USA",Unknown,Unknown,46.645764,-111.937274,Helena +Gates of the Mountains,"8320 N Montana Ave, Helena, MT 59602, USA",Unknown,https://gatesofthemountains.com/,46.8321182,-111.9526307,Helena +Kalamazoo Valley Museum,"230 N Rose St, Kalamazoo, MI 49007, USA",(800) 772-3370,https://www.kalamazoomuseum.org/,42.2933117,-85.58366939999999,Kalamazoo +Kalamazoo Institute of Arts,"314 S Park St, Kalamazoo, MI 49007, USA",(269) 349-7775,http://www.kiarts.org/,42.2892818,-85.58798000000002,Kalamazoo +Milham Park,"607 E Kilgore Rd, Kalamazoo, MI 49001, USA",(269) 337-8191,https://www.kzooparks.org/milhampark,42.2462212,-85.57235,Kalamazoo +Kalamazoo Nature Center,"7000 N Westnedge Ave, Kalamazoo, MI 49009, USA",(269) 381-1574,http://www.naturecenter.org/,42.36353069999999,-85.59029989999999,Kalamazoo +Bronson Park,"200 S Rose St, Kalamazoo, MI 49007, USA",(269) 337-8191,https://www.kzooparks.org/Parks-Facilities/Bronson-Park,42.2903325,-85.5853277,Kalamazoo +River Villa & Jan Schau Wildflower Walk,"6712 E Michigan Ave, Kalamazoo, MI 49048, USA",(269) 381-2360,Unknown,42.28611859999999,-85.50258629999999,Kalamazoo +Christmas Card Lane,"318 S Lauderdale Dr, Kalamazoo, MI 49006, USA",Unknown,Unknown,42.2897378,-85.6245034,Kalamazoo +Markin Glen Park,"5300 N Westnedge Ave, Kalamazoo, MI 49004, USA",(269) 381-7570,http://www.kalcounty.com/parks/markinglen/,42.3349362,-85.588031,Kalamazoo +Asylum Lake Preserve,"3836 S Drake Rd, Kalamazoo, MI 49008, USA",(269) 387-8557,http://wmich.edu/asylumlake/,42.2633598,-85.64092749999999,Kalamazoo +Air Zoo Aerospace & Science Museum,"6151 Portage Rd, Portage, MI 49002, USA",(269) 382-6555,http://www.airzoo.org/,42.22746799999999,-85.55717980000001,Kalamazoo +Cooper Park,"Oran Ave, Kalamazoo, MI 49048, USA",Unknown,Unknown,42.291474,-85.5099721,Kalamazoo +Al Sabo Land Preserve,"6310 Texas Dr, Kalamazoo, MI 49009, USA",Unknown,https://www.texastownship.org/261/Al-Sabo-Land-Preserve,42.21190299999999,-85.6733064,Kalamazoo +La Crone Park,"535 W Paterson St, Kalamazoo, MI 49007, USA",(269) 337-8191,https://www.kzooparks.org/Parks-Facilities/LaCrone-Park,42.3027553,-85.59311819999999,Kalamazoo +Lillian Anderson Arboretum,"7787 W Main St, Kalamazoo, MI 49009, USA",Unknown,http://arboretum.kzoo.edu/,42.2954764,-85.7015631,Kalamazoo +Lake Park,"Kalamazoo, MI 49008, USA",Unknown,Unknown,42.26092579999999,-85.6196251,Kalamazoo +City of Kalamazoo Park,"Kalamazoo, MI 49006, USA",Unknown,Unknown,42.2979671,-85.60984309999999,Kalamazoo +Kalamazoo Downtown Partnership,"162 E Michigan Ave, Kalamazoo, MI 49007, USA",(269) 344-0795,http://www.downtownkalamazoo.org/,42.2915347,-85.58197,Kalamazoo +Dr Martin Luther King Memorial Park,"507 N Rose St, Kalamazoo, MI 49007, USA",(269) 337-8191,Unknown,42.2960281,-85.5855484,Kalamazoo +Henderson Castle,"100 Monroe St, Kalamazoo, MI 49006, USA",(269) 344-1827,https://www.hendersoncastle.com/,42.2929311,-85.6050121,Kalamazoo +Urban Nature Park - Kalamazoo Nature Center,"426 E Michigan Ave, Kalamazoo, MI 49007, USA",(269) 381-1574,Unknown,42.2933904,-85.5778632,Kalamazoo +Cleveland Metroparks Zoo,"3900 Wildlife Way, Cleveland, OH 44109, USA",(216) 661-6500,https://www.clevelandmetroparks.com/zoo,41.4459468,-81.7126246,Cleveland +The Cleveland Museum of Art,"11150 East Blvd, Cleveland, OH 44106, USA",(216) 421-7350,https://www.clevelandart.org/,41.5079261,-81.61197229999999,Cleveland +Cleveland Botanical Garden,"11030 East Blvd, Cleveland, OH 44106, USA",(216) 721-1600,https://holdenfg.org/,41.5111392,-81.6095981,Cleveland +Greater Cleveland Aquarium,"2000 Sycamore St, Cleveland, OH 44113, USA",(216) 862-8803,http://greaterclevelandaquarium.com/,41.49657439999999,-81.7038345,Cleveland +Cleveland Museum of Natural History,"1 Wade Oval Dr, Cleveland, OH 44106, USA",(216) 231-4600,https://www.cmnh.org/,41.511524,-81.61288359999999,Cleveland +Great Lakes Science Center,"601 Erieside Ave, Cleveland, OH 44114, USA",(216) 694-2000,https://greatscience.com/,41.5074199,-81.6965984,Cleveland +Rock & Roll Hall of Fame,"1100 E 9th St, Cleveland, OH 44114, USA",(216) 781-7625,https://www.rockhall.com/,41.5085414,-81.6953685,Cleveland +Edgewater Park,"Cleveland, OH 44102, USA",(216) 635-3200,https://clevelandmetroparks.com/parks/visit/parks/lakefront-reservation/edgewater-park,41.4902896,-81.73545519999999,Cleveland +Cleveland Harbor West Pierhead Lighthouse,"2800 Whiskey Island Dr, Cleveland, OH 44102, USA",Unknown,Unknown,41.5090078,-81.71769929999999,Cleveland +Mill Creek Falls,"Mill Creek Trail, Cleveland, OH 44105, USA",(216) 635-3200,https://clevelandmetroparks.com/parks/visit/parks/garfield-park-reservation/mill-creek-falls-overlook,41.4450479,-81.6253258,Cleveland +A Christmas Story House,"3159 W 11th St, Cleveland, OH 44109, USA",(216) 298-4919,http://www.achristmasstoryhouse.com/,41.4687384,-81.6873816,Cleveland +The Children's Museum of Cleveland,"3813 Euclid Ave, Cleveland, OH 44115, USA",(216) 791-7114,https://cmcleveland.org/,41.5044657,-81.6599124,Cleveland +Cleveland Script Sign - Edgewater Park,"Cleveland Memorial Shoreway, Cleveland, OH 44102, USA",(800) 321-1001,https://www.thisiscleveland.com/locations/cleveland-script-sign-edgewater-park,41.4875796,-81.74927579999999,Cleveland +Cleveland History Center,"10825 East Blvd, Cleveland, OH 44106, USA",(216) 721-5722,https://www.wrhs.org/plan-your-visit/,41.5130284,-81.61162399999999,Cleveland +Museum of Contemporary Art Cleveland,"11400 Euclid Ave, Cleveland, OH 44106, USA",(216) 421-8671,http://www.mocacleveland.org/,41.5089105,-81.60464499999999,Cleveland +Cleveland Script Sign - Tremont,"1502 Abbey Ave, Cleveland, OH 44113, USA",(800) 321-1001,http://www.thisiscleveland.com/,41.4846717,-81.6928701,Cleveland +West Side Market,"1979 W 25th St, Cleveland, OH 44113, USA",(216) 664-3387,http://www.westsidemarket.org/,41.4847078,-81.7028394,Cleveland +International Women’s Air & Space Museum,"1501 N Marginal Rd, Cleveland, OH 44114, USA",(216) 623-1111,http://www.iwasm.org/,41.5115679,-81.6899785,Cleveland +Washington Reservation,"4408 Pallister Dr, Cleveland, OH 44105, USA",Unknown,https://www.clevelandmetroparks.com/parks/visit/parks/washington-reservation,41.4559597,-81.6603073,Cleveland +Lake View Cemetery,"12316 Euclid Ave, Cleveland, OH 44106, USA",(216) 421-2665,http://www.lakeviewcemetery.com/,41.51395590000001,-81.5983472,Cleveland +Stuhr Museum,"3133 US-34, Grand Island, NE 68801, USA",(308) 385-5316,http://stuhrmuseum.org/,40.8837625,-98.37336479999999,Grand Island +Hear Grand Island,"278 W South Front St, Grand Island, NE 68801, USA",Unknown,http://heargrandisland.com/,40.9259163,-98.3425132,Grand Island +Stolley Park,"2103 W Stolley Park Rd, Grand Island, NE 68801, USA",(308) 385-5444,http://www.grand-island.com/Home/Components/FacilityDirectory/FacilityDirectory/36/2181?sortn=FCPhone&npage=2,40.9011088,-98.3609922,Grand Island +Island Oasis Water Park,"321 E Fonner Park Rd, Grand Island, NE 68801, USA",(308) 385-5381,Unknown,40.9085344,-98.33623569999999,Grand Island +"Railroad Town, Nebr.","College St, Grand Island, NE 68801, USA",Unknown,Unknown,40.8818768,-98.36996409999999,Grand Island +Pier Park,"500 S Oak St, Grand Island, NE 68801, USA",(308) 385-5426,Unknown,40.9173249,-98.33553889999999,Grand Island +Owens Valley Paiute-Shoshone Cultural Center,"2300 W Line St, Bishop, CA 93514, USA",(760) 873-8844,https://www.bishoppaiutetribe.com/owens-valley-paiute-shoshone-cultural-center/,37.3620248,-118.4160002,Bishop +Laws Railroad Museum & Historical Site,"Silver Canyon Rd, Bishop, CA 93514, USA",(760) 873-5950,https://lawsmuseum.org/,37.4005889,-118.3463194,Bishop +Wanaaha Casino,"2742 N Sierra Hwy, Bishop, CA 93514, USA",(760) 873-4150,https://www.wanaaha.com/,37.3753627,-118.4262583,Bishop +Bishop Information Center,"690 N Main St, Bishop, CA 93514, USA",(760) 873-8405,https://bishopvisitor.com/,37.3674571,-118.3948939,Bishop +Union Point Park,"210 E Front St, New Bern, NC 28560, USA",Unknown,http://www.newbern.com/union-point-park.html,35.1040607,-77.0357147,New Bern +Tryon Palace,"529 S Front St, New Bern, NC 28562, USA",(800) 767-1560,http://www.tryonpalace.org/,35.1058011,-77.0443019,New Bern +Ghosts of New Bern,"246 Middle St Ste B, New Bern, NC 28560, USA",(252) 635-1410,https://hauntednewbern.com/,35.1063769,-77.0397601,New Bern +New Bern Civil War Battlefield Park,"300 Battlefield Trail, New Bern, NC 28560, USA",(252) 638-8558,http://www.newbernhistorical.org/,35.0479747,-77.0157621,New Bern +New Bern Firemen's Museum,"420 Broad St, New Bern, NC 28560, USA",(252) 636-4087,http://www.newbernfiremuseum.com/,35.1086404,-77.0407415,New Bern +Creekside Park,"1821 Old Airport Rd, New Bern, NC 28560, USA",(252) 636-6606,http://cravencounty.recdesk.com/recdeskportal/PublicParksFacilities/CreeksidePark/tabid/2167/Default.aspx,35.0616966,-77.0401309,New Bern +Birthplace of Pepsi Cola,"256 Middle St, New Bern, NC 28560, USA",(252) 636-5898,http://www.pepsistore.com/,35.10675,-77.039825,New Bern +John Wright Stanly House,"307 George St, New Bern, NC 28562, USA",(800) 767-1560,https://www.tryonpalace.org/the-palace-historic-homes/historic-homes/stanly-house,35.1074132,-77.04462869999999,New Bern +Latham-Whitehurst Nature Park,"1095 Broad Creek Rd, New Bern, NC 28560, USA",(252) 636-6606,https://cravencounty.recdesk.com/recdeskportal/PublicParksFacilities/LathamWhitehurstNaturePark/tabid/2169/Default.aspx,35.1130404,-76.9603092,New Bern +Kidsville Playground,"1225 Pinetree Dr, New Bern, NC 28562, USA",Unknown,Unknown,35.11121769999999,-77.0844783,New Bern +Lawson Creek Park,"1309 Country Club Rd, New Bern, NC 28560, USA",(252) 639-2901,http://www.newbernnc.gov/,35.1013592,-77.0539278,New Bern +New Bern Academy Museum,"508 New St, New Bern, NC 28560, USA",(252) 639-3500,https://www.tryonpalace.org/new-bern-academy-museum,35.1099213,-77.04136780000002,New Bern +Craven Arts Council & Gallery Bank of the Arts,"317 Middle St, New Bern, NC 28560, USA",(252) 638-2577,http://www.cravenarts.org/,35.1076001,-77.0400394,New Bern +Blades House,"602 Middle St, New Bern, NC 28560, USA",Unknown,http://www.nationalregisterofhistoricplaces.com/NC/Craven/state.html,35.11109979999999,-77.0388004,New Bern +New Bern Historical Society,"511 Broad St, New Bern, NC 28560, USA",(252) 638-8558,http://www.newbernhistorical.org/,35.10826409999999,-77.04202360000001,New Bern +Fort Totten Park,"1402 Trent Blvd, New Bern, NC 28560, USA",Unknown,Unknown,35.10802279999999,-77.05770559999999,New Bern +New Bern Tours,"610 Pollock St, New Bern, NC 28560, USA",(800) 849-7316,https://www.newberntours.com/,35.1072397,-77.04415949999999,New Bern +First Citizens Public Sculpture Park,"Corner of Broad and, Middle St, New Bern, NC 28560, USA",Unknown,Unknown,35.10799120000001,-77.03945980000002,New Bern +Bear Towne Escape Room,"233 Middle St #107b, New Bern, NC 28560, USA",(919) 440-7150,https://bookeo.com/beartowne,35.106098,-77.0406756,New Bern +Seth West Parrott Park,"1225 Pinetree Dr, New Bern, NC 28562, USA",(252) 639-2901,Unknown,35.1113716,-77.0853078,New Bern +SEA LIFE Melbourne Aquarium,"King St, Melbourne VIC 3000, Australia",Unknown,https://www.visitsealife.com/melbourne/?utm_source=gmb&utm_medium=organic&utm_campaign=yext&utm_content=2,-37.820627,144.95822,Melbourne +Melbourne Skydeck,"7 Riverside Quay, Southbank VIC 3006, Australia",(03) 9693 8888,https://www.melbourneskydeck.com.au/,-37.8213341,144.9646982,Melbourne +Royal Botanic Gardens Victoria - Melbourne Gardens,"Melbourne VIC 3004, Australia",(03) 9252 2300,https://www.rbg.vic.gov.au/,-37.8302443,144.9801496,Melbourne +National Gallery of Victoria,"180 St Kilda Rd, Melbourne VIC 3006, Australia",(03) 8620 2222,https://www.ngv.vic.gov.au/,-37.8225942,144.9689278,Melbourne +Fed Square,"Swanston St & Flinders St, Melbourne VIC 3000, Australia",(03) 9655 1900,https://www.fedsquare.com/,-37.8179789,144.9690576,Melbourne +Luna Park Melbourne,"18 Lower Esplanade, St Kilda VIC 3182, Australia",(03) 9525 5033,https://www.lunapark.com.au/,-37.8678147,144.976924,Melbourne +Queen Victoria Market,"Queen St, Melbourne VIC 3000, Australia",(03) 9320 5822,http://www.qvm.com.au/,-37.8075798,144.956785,Melbourne +Melbourne Zoo,"Elliott Ave, Parkville VIC 3052, Australia",1300 966 784,https://www.zoo.org.au/melbourne,-37.7841346,144.9515473,Melbourne +Shrine of Remembrance,"Birdwood Ave, Melbourne VIC 3001, Australia",(03) 9661 8100,http://www.shrine.org.au/,-37.8305164,144.9734319,Melbourne +Melbourne Museum,"11 Nicholson St, Carlton VIC 3053, Australia",13 11 02,https://museumsvictoria.com.au/melbournemuseum,-37.803273,144.9717408,Melbourne +Immigration Museum (Museums Victoria),"400 Flinders St, Melbourne VIC 3000, Australia",13 11 02,https://museumsvictoria.com.au/immigrationmuseum/,-37.81924420000001,144.9604547,Melbourne +Old Melbourne Gaol,"377 Russell St, Melbourne VIC 3000, Australia",(03) 9656 9889,http://www.oldmelbournegaol.com.au/,-37.807832,144.9653171,Melbourne +Under The Clocks,"295 Flinders St, Melbourne VIC 3000, Australia",Unknown,Unknown,-37.81786140000001,144.9673341,Melbourne +Cooks' Cottage,"Fitzroy Gardens, Wellington Parade, East Melbourne VIC 3002, Australia",(03) 9658 9658,https://whatson.melbourne.vic.gov.au/things-to-do/cooks-cottage,-37.8145006,144.9794476,Melbourne +Eight Hour Day Monument,"Cnr Russel St and, 8 Hour Reserve, Victoria St, Melbourne VIC 3000, Australia",Unknown,http://vhd.heritage.vic.gov.au/,-37.8071525,144.9655773,Melbourne +Southbank lookout,"SEA LIFE Melbourne Aquarium Corner of King and, Flinders St, Melbourne VIC 3000, Australia",Unknown,Unknown,-37.8211085,144.9585713,Melbourne +Model Tudor Village in Fitzroy Gardens,"East Melbourne VIC 3002, Australia",Unknown,Unknown,-37.813251,144.981001,Melbourne +Australian Sports Museum,"Melbourne Cricket Ground, Yarra Park, Gate 3 Brunton Ave, East Melbourne VIC 3002, Australia",(03) 9657 8879,http://www.australiansportsmuseum.org.au/,-37.8189776,144.984324,Melbourne +LEGOLAND® Discovery Centre Melbourne,"Level 2/1341 Dandenong Rd, Chadstone VIC 3148, Australia",Unknown,https://www.legolanddiscoverycentre.com/melbourne/?utm_source=gmb&utm_medium=organic&utm_campaign=yext&utm_content=10,-37.8849084,145.0830696,Melbourne +The Melbourne Central Clock,"Melbourne Central, 300 Lonsdale St, Melbourne VIC 3000, Australia",(03) 9922 1122,http://www.melbournecentral.com.au/,-37.81013859999999,144.9630396,Melbourne +Bristol Aquarium,"Anchor Rd, Bristol BS1 5TT, UK",0117 929 8929,http://www.bristolaquarium.co.uk/,51.4507466,-2.5990346,Bristol +Bristol Museum & Art Gallery,"Queens Rd, Clifton, Bristol BS8 1RL, UK",0117 922 3571,http://www.bristolmuseums.org.uk/bristol-museum-and-art-gallery,51.45649539999999,-2.6050953,Bristol +Brunel's SS Great Britain,"Great Western Dockyard, Gas Ferry Rd, Bristol BS1 6TY, UK",0117 926 0680,https://www.ssgreatbritain.org/,51.44917119999999,-2.6084058,Bristol +Clifton Suspension Bridge,"Bristol BS3 2JX, UK",0117 974 4664,https://www.cliftonbridge.org.uk/,51.45490890000001,-2.6278553,Bristol +Cabot Tower,"Brandon Hill Park, Park St, Bristol BS1 5RR, UK",0117 922 2200,http://www.bristol.gov.uk/museums-parks-sports-culture/brandon-hill,51.4540263,-2.6068101,Bristol +Bristol Cathedral,"College Green, Bristol BS1 5TJ, UK",0117 926 4879,http://www.bristol-cathedral.co.uk/,51.45165180000001,-2.6006447,Bristol +The Red Lodge Museum,"Park Row, Bristol BS1 5LJ, UK",0117 921 1360,https://www.bristolmuseums.org.uk/red-lodge-museum/,51.4553629,-2.5997336,Bristol +Bristol Zoo Project,"Zoo Project, Blackhorse Hill, Bristol BS10 7TP, UK",0117 428 5300,https://bristolzoo.org.uk/,51.53061869999999,-2.6122709,Bristol +Aerospace Bristol,"Hayes Way, Patchway, Bristol BS34 5BZ, UK",0117 931 5315,https://www.aerospacebristol.org/,51.5232599,-2.5781513,Bristol +Clifton Observatory,"Litfield Rd, Clifton, Bristol BS8 3LT, UK",0117 974 1242,http://www.cliftonobservatory.com/,51.4566295,-2.626481899999999,Bristol +M Shed,"Princes Wharf, Wapping Rd, Bristol BS1 4RN, UK",0117 352 6600,https://www.bristolmuseums.org.uk/m-shed/,51.4476479,-2.5982375,Bristol +Brandon Hill,"Park St, Bristol BS1 5RR, UK",0117 922 2000,https://www.bristol.gov.uk/museums-parks-sports-culture/brandon-hill,51.4530352,-2.6069989,Bristol +Queen Square,"Queen Square, Bristol BS1 4LH, UK",Unknown,Unknown,51.4504878,-2.5947633,Bristol +Clifton Down,"Stoke Rd, Bristol BS9 1FG, UK",Unknown,Unknown,51.4647955,-2.6254212,Bristol +Wake The Tiger,"Wake The Tiger, 127 Albert Rd, Bristol BS2 0YA, UK",Unknown,http://www.wakethetiger.com/,51.44560099999999,-2.5662171,Bristol +Palestine Museum & Cultural Centre,"27 Broad St, Bristol BS1 2HG, UK",0117 912 3123,http://palmuseumbristol.org/,51.45568859999999,-2.5947703,Bristol +National Trust - Leigh Woods,"Abbots Leigh, Bristol BS8 3QB, UK",0117 973 1645,https://www.nationaltrust.org.uk/leigh-woods,51.4629956,-2.6412904,Bristol +Redcliffe Caves,"Phoenix Wharf, Redcliffe Way, Redcliffe, Bristol BS1 6SR, UK",0117 922 2200,http://redcliffecaves.org.uk/,51.4484039,-2.5922811,Bristol +Blaise Museum,"Henbury Rd, Henbury, Bristol BS10 7QS, UK",0117 903 9818,https://www.bristolmuseums.org.uk/blaise-museum/,51.505778,-2.63246,Bristol +Castle Park,"Broad Weir, Bristol BS1 3XB, UK",Unknown,https://www.bristol.gov.uk/museums-parks-sports-culture/castle-park,51.45582530000001,-2.5880581,Bristol +The Wheel at ICON Park,"Orlando, FL 32819, USA",(407) 601-7907,https://iconparkorlando.com/attractions/the-wheel/,28.4432814,-81.46831619999999,Orlando +SeaWorld Orlando,"7007 Sea World Dr, Orlando, FL 32821, USA",(407) 545-5550,https://seaworld.com/orlando/,28.4110418,-81.46122749999999,Orlando +Fun Spot America Theme Parks,"5700 Fun Spot Way, Orlando, FL 32819, USA",(407) 363-3867,http://www.fun-spot.com/,28.4654176,-81.4555573,Orlando +Madame Tussauds Orlando,"8387 International Dr, Orlando, FL 32819, USA",(855) 450-0581,https://www.madametussauds.com/orlando/,28.4437626,-81.4686057,Orlando +Ripley's Believe It or Not!,"8201 International Dr, Orlando, FL 32819, USA",(407) 345-0501,http://www.ripleys.com/orlando,28.4462109,-81.47039989999999,Orlando +Universal Orlando Resort,"6000 Universal Blvd, Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us,28.47235289999999,-81.4690029,Orlando +Harry P Leu Gardens,"1920 N Forest Ave, Orlando, FL 32803, USA",(407) 246-2620,http://www.leugardens.org/,28.5697602,-81.3563798,Orlando +Seuss Landing,"6000 Universal Blvd, Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us/theme-parks/islands-of-adventure,28.4731214,-81.46956809999999,Orlando +Lake Eola Park,"512 E Washington St, Orlando, FL 32801, USA",(407) 246-4484,https://www.orlando.gov/Parks-the-Environment/Directory/Lake-Eola-Park,28.5427628,-81.37092919999999,Orlando +SEA LIFE Orlando Aquarium,"8449 International Dr, Orlando, FL 32819, USA",(855) 450-0680,https://www.visitsealife.com/orlando/,28.4425885,-81.46856799999999,Orlando +The Wizarding World of Harry Potter - Diagon Alley,"6000 Universal Blvd, Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us/theme-parks/universal-studios-florida/the-wizarding-world-of-harry-potter-diagon-alley,28.4796116,-81.4693747,Orlando +The Wizarding World of Harry Potter - Hogsmeade,"6000 Universal Blvd, Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us/theme-parks/islands-of-adventure/the-wizarding-world-of-harry-potter-hogsmeade,28.4727457,-81.4726258,Orlando +Crayola Experience Orlando,"8001 S Orange Blossom Trl, Orlando, FL 32809, USA",(407) 757-1700,https://www.crayolaexperience.com/orlando/,28.4448741,-81.3917402,Orlando +WonderWorks Orlando,"9067 International Dr, Orlando, FL 32819, USA",(407) 351-8800,http://www.wonderworksorlando.com/,28.433743,-81.4715282,Orlando +Magical Midway Arcade & SlingShot,"7001 International Dr, Orlando, FL 32819, USA",(407) 370-5353,Unknown,28.456953,-81.47011599999999,Orlando +Universal Studios Florida,"6000 Universal Blvd, Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us/theme-parks/universal-studios-florida?utm_source=google&utm_medium=organic&utm_campaign=GMB,28.4793754,-81.4685422,Orlando +Orlando Starflyer,"8265 International Dr, Orlando, FL 32819, USA",(407) 640-7009,Unknown,28.4448715,-81.4699694,Orlando +Orlando Science Center,"777 E Princeton St, Orlando, FL 32803, USA",(407) 514-2000,https://www.osc.org/,28.5722626,-81.3682645,Orlando +The Simpsons Ride,"6000 Universal Blvd, Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us/things-to-do/rides-attractions/the-simpsons-ride,28.4795101,-81.4676162,Orlando +Harry Potter and the Forbidden Journey,"Orlando, FL 32819, USA",(407) 363-8000,https://www.universalorlando.com/web/en/us/things-to-do/rides-attractions/harry-potter-and-the-forbidden-journey,28.4721027,-81.47372390000001,Orlando +Dakota Zoo,"602 Riverside Park Rd, Bismarck, ND 58504, USA",(701) 223-7543,https://www.dakotazoo.org/,46.7994838,-100.8067539,Bismarck +North Dakota Heritage Center & State Museum,"612 E Boulevard Ave, Bismarck, ND 58505, USA",(701) 328-2666,https://statemuseum.nd.gov/,46.819224,-100.7788113,Bismarck +North Dakota's Gateway to Science,"1600 Canary Ave, Bismarck, ND 58501, USA",(701) 258-1975,https://gatewaytoscience.org/,46.8226065,-100.8248813,Bismarck +Former Governors' Mansion State Historic Site,"320 E Avenue B, Bismarck, ND 58501, USA",(701) 328-2666,http://www.history.nd.gov/historicsites/fgm,46.8109579,-100.7864707,Bismarck +Chief Looking's Village,"2023 Burnt Boat Rd, Bismarck, ND 58503, USA",(701) 222-6455,https://www.bisparks.org/chief-lookings-village/,46.8303801,-100.8297726,Bismarck +Keelboat Park,"1605 River Rd, Bismarck, ND 58503, USA",Unknown,http://bisparks.org/keelboat-park/,46.8229656,-100.8280372,Bismarck +Super Slide Amusement Park,"500 Riverside Park Rd, Bismarck, ND 58504, USA",(701) 255-1107,https://www.ndsuperslide.com/,46.8016959,-100.8065605,Bismarck +Buckstop Junction,"3805 E Bismarck Expy, Bismarck, ND 58501, USA",(701) 250-8575,http://www.buckstopjunction.org/,46.8067643,-100.7257861,Bismarck +Custer Park,"320 W Custer Park St, Bismarck, ND 58501, USA",(701) 222-6455,https://www.bisparks.org/custer-park/,46.8068842,-100.7950071,Bismarck +North Dakota State Capitol,"600 E Boulevard Ave, Bismarck, ND 58505, USA",(701) 328-2471,http://www.nd.gov/,46.8207466,-100.7825571,Bismarck +Sertoma Park,"Riverside Park Rd, Bismarck, ND 58504, USA",(701) 222-6455,http://www.bisparks.org/sertoma-park/,46.8043699,-100.8078732,Bismarck +Lewis & Clark and Sakakawea Sculptures,"Bismarck, ND 58501, USA",Unknown,Unknown,46.8232423,-100.8280561,Bismarck +Pioneer Park,"1970 River Rd & Burnt Boat Dr, 1500 River Rd, Bismarck, ND 58503, USA",Unknown,http://bisparks.org/,46.8297791,-100.8328281,Bismarck +T R Roughrider Hall of Fame,"600 E Boulevard Ave, Bismarck, ND 58505, USA",(701) 328-2480,https://www.omb.nd.gov/capitol-complex/virtual-tour/overview-and-rough-rider-hall-fame,46.8206977,-100.7827515,Bismarck +Bismarck Art Alley,"117 N 5th St, Bismarck, ND 58501, USA",Unknown,Unknown,46.8059105,-100.7839089,Bismarck +Jaycee Centennial Park,"321 E Century Ave, Bismarck, ND 58503, USA",(701) 222-6455,https://www.bisparks.org/jaycee-centennial-park/,46.83766379999999,-100.7858959,Bismarck +Public Visitor Lot for ND Capitol,"1131 N 4th St, Bismarck, ND 58501, USA",Unknown,Unknown,46.8199547,-100.7817507,Bismarck +Camp Hancock State Historic Site,"101 E Main Ave, Bismarck, ND 58501, USA",(701) 328-2666,http://www.history.nd.gov/historicsites/hancock/index.html,46.8053394,-100.7906127,Bismarck +Lions Park,"1601 E Boulevard Ave, Bismarck, ND 58501, USA",(701) 222-6455,http://www.bisparks.org/lions-park/,46.81535210000001,-100.7607542,Bismarck +Sakakawea Statue,"608 E Boulevard Ave, Bismarck, ND 58505, USA",(701) 328-2666,https://www.nd.gov/omb/public/state-capitol-information,46.819795,-100.7813006,Bismarck +Fresno Chaffee Zoo,"894 W Belmont Ave, Fresno, CA 93728, USA",(559) 498-5910,http://www.fresnochaffeezoo.org/,36.7521966,-119.8231766,Fresno +Forestiere Underground Gardens,"5021 W Shaw Ave, Fresno, CA 93722, USA",(559) 271-0734,http://www.undergroundgardens.com/,36.807573,-119.88181,Fresno +Fresno County Blossom Trail,"2629 S Clovis Ave, Fresno, CA 93725, USA",(559) 600-4271,http://goblossomtrail.com/,36.706824,-119.6996626,Fresno +Meux Home Museum,"1007 R St, Fresno, CA 93721, USA",(559) 233-8007,http://www.meuxhomemuseum.org/,36.7397314,-119.7824257,Fresno +Fresno Art Museum,"2233 N First St, Fresno, CA 93703, USA",(559) 441-4221,http://www.fresnoartmuseum.org/,36.7708127,-119.7739796,Fresno +Fresno Discovery Center,"1944 N Winery Ave, Fresno, CA 93703, USA",(559) 251-5533,http://www.fresnodiscoverycenter.org/,36.76806089999999,-119.731474,Fresno +Kearney Mansion Museum,"7160 W Kearney Blvd, Fresno, CA 93706, USA",(559) 441-0862,http://www.valleyhistory.org/,36.72375749999999,-119.919426,Fresno +Storyland,"890 W Belmont Ave, Fresno, CA 93728, USA",(559) 486-2124,http://storylandfresno.com/,36.7529162,-119.82524,Fresno +FAC Water Tower,"2444 Fresno St, Fresno, CA 93721, USA",Unknown,https://www.facebook.com/facwatertower/,36.73921,-119.7871877,Fresno +Downing Planetarium,"5320 N Maple Ave, Fresno, CA 93710, USA",(559) 278-4071,http://www.fresnostate.edu/csm/downing-planetarium/,36.81455089999999,-119.7443539,Fresno +Kingdoms Of Asia,"Fresno, CA 93728, USA",Unknown,Unknown,36.7519712,-119.8211274,Fresno +Oso de Oro Park,"5550 N Forkner Ave, Fresno, CA 93711, USA",(559) 456-3292,http://www.fresnofloodcontrol.org/,36.8172875,-119.8296296,Fresno +Inspiration Park,"5770 W Gettysburg Ave, Fresno, CA 93722, USA",(559) 621-2974,https://www.fresno.gov/parks/,36.8017815,-119.8945606,Fresno +Blackbeard's Family Entertainment,"4055 N Chestnut Diagonal, Fresno, CA 93726, USA",(559) 292-9000,http://www.blackbeards.com/,36.7913416,-119.7298009,Fresno +Roeding Park,"890 W Belmont Ave, Fresno, CA 93728, USA",(559) 621-7529,http://www.fresno.gov/parks,36.7538733,-119.8225141,Fresno +Walker Maze,"4333 E Turner Ave, Fresno, CA 93702, USA",Unknown,Unknown,36.7526643,-119.7526,Fresno +Trolley Creek Park,"5100 E Huntington Ave, Fresno, CA 93727, USA",(559) 456-3292,Unknown,36.73922849999999,-119.7217188,Fresno +Alley Mural,"600 Van Ness Ave, Fresno, CA 93721, USA",Unknown,Unknown,36.7318922,-119.7852883,Fresno +Shinzen Friendship Garden Inc.,"114 W Audubon Dr, Fresno, CA 93720, USA",(559) 478-4848,http://www.shinzenjapanesegarden.org/,36.86581849999999,-119.7812127,Fresno +Halo Fountain,"1232 Fulton St, Fresno, CA 93721, USA",Unknown,Unknown,36.7364477,-119.7928378,Fresno +Western Heritage Center,"2822 Montana Ave, Billings, MT 59101, USA",(406) 256-6809,http://www.ywhc.org/,45.78057,-108.5057927,Billings +Pictograph Cave State Park,"3401 Coburn Rd, Billings, MT 59101, USA",(406) 254-7342,http://stateparks.mt.gov/pictograph-cave/,45.737818,-108.43111,Billings +Moss Mansion Museum,"914 Division St, Billings, MT 59101, USA",(406) 256-5100,http://www.mossmansion.com/,45.77965,-108.516024,Billings +ZooMontana,"2100 Shiloh Rd, Billings, MT 59106, USA",(406) 652-8100,http://zoomontana.org/,45.7322656,-108.6206567,Billings +Yellowstone Art Museum,"401 N 27th St A, Billings, MT 59101, USA",(406) 256-6804,http://www.artmuseum.org/,45.78584009999999,-108.5071334,Billings +Yellowstone County Museum,"1950 Terminal Cir, Billings, MT 59105, USA",(406) 670-0888,http://www.ycmhistory.org/,45.80240139999999,-108.5376724,Billings +Riverfront Park,"7277-7337 State Secondary Hwy 416, Billings, MT 59101, USA",(406) 657-8371,http://www.billingsparks.org/park/riverfront/,45.74165439999999,-108.5339917,Billings +Two Moon Park,"850 Two Moon Park Rd, Billings, MT 59105, USA",(406) 248-1400,http://www.yrpa.org/parks/two-moon-park/,45.8091241,-108.4618069,Billings +Wise Wonders Science and Discovery Museum,"3024 2nd Ave N, Billings, MT 59101, USA",(406) 702-1280,http://www.wisewonders.org/,45.781042,-108.5096193,Billings +Lake Elmo State Park,"219 Rolling Hills Dr, Billings, MT 59105, USA",(406) 247-2940,http://stateparks.mt.gov/lake-elmo/,45.8451514,-108.4813303,Billings +Rimrock View Pullout,"1701-2029, MT-3, Billings, MT 59106, USA",Unknown,Unknown,45.804058,-108.564472,Billings +DanWalt Gardens,"720 Washington St, Billings, MT 59101, USA",(406) 248-4003,http://danwaltgardens.com/,45.75589360000001,-108.5098602,Billings +Four Dances Recreation Area,"03092721101010000, Billings, MT 59101, USA",Unknown,Unknown,45.7771909,-108.4729803,Billings +Castle Rock Park,"W Wicks Ln & Nutter Blvd, Billings, MT 59105, USA",(406) 657-8371,http://www.billingsparks.org/park/castlerock/,45.82701579999999,-108.5003892,Billings +Visit Southeast Montana,"815 S 27th St #4513, Billings, MT 59101, USA",(406) 294-5270,http://southeastmontana.com/,45.7740111,-108.4953266,Billings +The Grand Escape Room,"801 14th St W suite a, Billings, MT 59102, USA",(406) 860-8243,http://www.grandescaperoom.com/,45.7786003,-108.5509851,Billings +Yellowstone Family Park,"54th Street West and Bobby Jones Blvd., R83W+66H, Bobby Jones Blvd, Billings, MT 59106, USA",(406) 657-8371,https://www.billingsparks.org/location/yellowstone-family/,45.80307849999999,-108.6541759,Billings +Phipps Park,"6790 Molt Rd, Billings, MT 59106, USA",(406) 657-8371,https://www.billingsparks.org/location/phipps/,45.8159285,-108.6880515,Billings +Zimmerman Park,"3314 MT-3, Billings, MT 59106, USA",(406) 657-8371,http://www.billingsparks.org/park-finder/,45.8051463,-108.6035894,Billings +Trails End Park,"18th St W, Billings, MT 59102, USA",(406) 657-8371,http://www.billingsparks.org/,45.7821136,-108.5611757,Billings +Mississippi Children's Museum,"2145 Museum Blvd, Jackson, MS 39202, USA",(601) 981-5469,https://mschildrensmuseum.org/,32.32870030000001,-90.1571926,Jackson +The Jackson Zoo,"2918 W Capitol St, Jackson, MS 39209, USA",(601) 952-8776,https://jacksonzoo.org/,32.32191429999999,-90.2234991,Jackson +Mississippi Civil Rights Museum,"222 North St #2205, Jackson, MS 39201, USA",(601) 576-6800,http://mscivilrightsmuseum.com/,32.3015024,-90.1776853,Jackson +Old Capitol Museum,"100 State St, Jackson, MS 39201, USA",(601) 576-6920,https://www.mdah.ms.gov/explore-mississippi/old-capitol-museum,32.2991558,-90.17987049999999,Jackson +Mississippi Museum of Natural Science,"2148 Riverside Dr, Jackson, MS 39202, USA",(601) 576-6000,http://www.mdwfp.com/museum.aspx,32.3249191,-90.1572274,Jackson +Mississippi Museum of Art,"380 S Lamar St, Jackson, MS 39201, USA",(601) 960-1515,https://www.msmuseumart.org/,32.2964008,-90.1860543,Jackson +The Oaks House Museum,"823 N Jefferson St, Jackson, MS 39202, USA",(601) 353-9339,http://www.theoakshousemuseum.org/,32.3082561,-90.17632180000001,Jackson +Smith Robertson Museum,"528 Bloom St, Jackson, MS 39202, USA",(601) 960-1457,https://www.jacksonms.gov/smith-robertson-museum/,32.3054578,-90.1869414,Jackson +Museum of Mississippi History,"222 North St #1206, Jackson, MS 39201, USA",(601) 576-6800,http://mmh.mdah.ms.gov/,32.3015309,-90.17760849999999,Jackson +Eudora Welty House & Garden,"1109 Pinehurst St, Jackson, MS 39202, USA",(601) 353-7762,https://welty.mdah.ms.gov/,32.3170903,-90.17053469999999,Jackson +Russell C Davis Planetarium,"201 E Pascagoula St, Jackson, MS 39201, USA",(601) 960-1552,https://www.jacksonms.gov/russell-c-davis-planetarium/,32.2975799,-90.1866122,Jackson +Welcome To Jackson Sign,"509 E Pearl St, Jackson, MS 39201, USA",Unknown,Unknown,32.2980145,-90.18131699999999,Jackson +LeFleur's Bluff State Park Mayes Lake,"3315 Lakeland Terrace, Jackson, MS 39216, USA",(601) 987-3923,https://www.mdwfp.com/parks-destinations/state-parks/lefleurs-bluff,32.3268795,-90.1466159,Jackson +"Greetings from Jackson, Mississippi Mural","1072 High St, Jackson, MS 39202, USA",Unknown,Unknown,32.3038389,-90.1720009,Jackson +LeFleur Museum District,"1152 Lakeland Dr, Jackson, MS 39216, USA",(601) 982-8264,http://lefleurmuseumdistrict.com/,32.3365374,-90.1558716,Jackson +Governor's Mansion,"300 E Capitol St, Jackson, MS 39201, USA",(601) 359-3175,http://www.mdah.ms.gov/new/visit/governors-mansion/,32.3001897,-90.1833924,Jackson +City of Jackson Fire Museum,"355 W Woodrow Wilson Ave, Jackson, MS 39213, USA",(601) 960-2433,http://www.jacksonms.gov/index.aspx?NID=124,32.3266631,-90.196081,Jackson +International Museum of Muslim Cultures,"201 E Pascagoula St, Jackson, MS 39201, USA",(601) 960-0440,http://www.muslimmuseum.org/,32.2975923,-90.1865983,Jackson +Medgar and Myrlie Evers Home National Monument,"2332 Margaret W Alexander Dr, Jackson, MS 39213, USA",(601) 345-7211,https://www.nps.gov/memy/index.htm,32.3409703,-90.2126509,Jackson +Presidential Hills Park,"Jackson, MS 39213, USA",(601) 922-0402,Unknown,32.36467269999999,-90.264645,Jackson +Daytona Boardwalk Amusements,"12 N Ocean Ave., Daytona Beach, FL 32118, USA",(386) 252-8276,http://www.daytonabeachboardwalk.com/,29.2274507,-81.00742509999999,Daytona Beach +Daytona Lagoon,"601 Earl St, Daytona Beach, FL 32118, USA",(386) 254-5020,http://www.daytonalagoon.com/,29.2301097,-81.0116836,Daytona Beach +World's Most Famous Beach,"219 S Atlantic Ave, Daytona Beach, FL 32118, USA",Unknown,Unknown,29.2224956,-81.00409859999999,Daytona Beach +Daytona Beach Main Street Pier,"1200 Main St Bridge, Daytona Beach, FL 32118, USA",(386) 671-8000,http://www.daytonabeach.com/,29.2272144,-81.0064355,Daytona Beach +Drive On Beach,"Daytona Beach, FL 32118, USA",Unknown,Unknown,29.2219658,-81.005736,Daytona Beach +Welcome to Daytona Beach Sign,"Daytona Beach, FL 32114, USA",Unknown,Unknown,29.1911215,-81.07205599999999,Daytona Beach +Daytona Beach Zipline Adventure By TreeTop Trekking,"1000 Orange Ave, Daytona Beach, FL 32114, USA",(386) 882-8016,http://www.daytonazipline.com/,29.201115,-81.040262,Daytona Beach +Sun Splash Park,"611 S Atlantic Ave, Daytona Beach, FL 32118, USA",(386) 248-8072,http://www.volusia.org/services/public-works/coastal-division/coastal-parks/sun-splash-park.stml,29.2184652,-81.0038548,Daytona Beach +Riverfront Park,"60 E Orange Ave, Daytona Beach, FL 32114, USA",Unknown,http://www.riverfrontshopsofdaytona.com/,29.2116717,-81.018586,Daytona Beach +Brownie The Town Dog's Grave and Memorial,"62-94 Orange Ave, Daytona Beach, FL 32114, USA",Unknown,http://browniethetowndog.org/,29.2087806,-81.01707979999999,Daytona Beach +Frank Rendon Park,"2705 S Atlantic Ave, Daytona Beach, FL 32118, USA",(386) 248-8072,http://www.volusia.org/services/public-works/coastal-division/coastal-parks/frank-rendon-park.stml,29.179972,-80.984123,Daytona Beach +Daytona Beach Coquina Clock Tower,"62 N Atlantic Ave, Daytona Beach, FL 32118, USA",Unknown,Unknown,29.2294561,-81.00834499999999,Daytona Beach +Birthplace of Speed Park,"21 Ocean Shore Blvd, Ormond Beach, FL 32176, USA",(386) 676-3250,Unknown,29.292524,-81.0396683,Daytona Beach +Sky Zone Trampoline Park,"1300 W International Speedway Blvd, Daytona Beach, FL 32114, USA",(386) 682-2020,https://www.skyzone.com/daytona,29.19848,-81.05635960000001,Daytona Beach +daytona beach zipline,"721 Ballough Rd, Daytona Beach, FL 32114, USA",Unknown,Unknown,29.2265579,-81.022117,Daytona Beach +Daytona International Speedway,"1801 W International Speedway Blvd, Daytona Beach, FL 32114, USA",(800) 748-7467,http://www.daytonainternationalspeedway.com/,29.185169,-81.070528,Daytona Beach +Tuscawilla Park,"1000 Orange Ave, Daytona Beach, FL 32114, USA",(386) 671-8337,http://www.sportsvolusia.com/facilities/daytona-beach/tuscawilla.stml,29.1998394,-81.04008309999999,Daytona Beach +Pier 11 Aid,"13 S Atlantic Ave, Daytona Beach, FL 32118, USA",Unknown,Unknown,29.2271328,-81.0064601,Daytona Beach +Congo River Golf,"2100 S Atlantic Ave, Daytona Beach, FL 32118, USA",(386) 258-6808,http://www.congoriver.com/,29.19864189999999,-80.9948667,Daytona Beach +Magic Milk Island Art,"1425 Tomoka Farms Rd, Daytona Beach, FL 32124, USA",(386) 405-6836,http://magicmilkislandart.com/,29.1657584,-81.083701,Daytona Beach +George H.W. Bush Presidential Library and Museum,"1000 George Bush Dr W, College Station, TX 77845, USA",(979) 691-4010,https://www.bush41.org/,30.5965117,-96.3532726,College Station +Lick Creek Park,"13600 Rock Prairie Rd, College Station, TX 77845, USA",(979) 764-3486,https://visit.cstx.gov/listing/lick-creek-park/715/,30.567217,-96.2110316,College Station +Wolf Pen Creek Park,"1015 Colgate Dr, College Station, TX 77840, USA",(979) 764-3486,http://www.cstx.gov/,30.6180066,-96.3042474,College Station +Richard Carter Park,"1800 Brazoswood Dr, College Station, TX 77840, USA",(979) 764-3486,https://www.cstx.gov/cms/One.aspx?portalId=12410917&pageId=13486247,30.6352406,-96.3085019,College Station +Santa's Wonderland,"18898 Hwy 6, College Station, TX 77845, USA",(979) 690-7212,http://www.santas-wonderland.com/,30.52216959999999,-96.2195735,College Station +Padlock Escape Games: College Station,"707 Texas Ave #102E, College Station, TX 77840, USA",(979) 704-6494,http://www.padlockescapegames.com/,30.62726,-96.330732,College Station +I Heart Aggieland Sign,"1101 Texas Ave, College Station, TX 77840, USA",Unknown,Unknown,30.6212885,-96.32617839999999,College Station +John Crompton Park,"201 Holleman Dr W, College Station, TX 77840, USA",(979) 764-3486,https://visit.cstx.gov/listing/john-crompton-park/713/,30.5934114,-96.3369877,College Station +Bonfire Memorial,"Texas A&M University, History Walk / Spirit Ring, College Station, TX 77843, USA",(979) 845-8161,http://bonfire.tamu.edu/memorial,30.62231239999999,-96.33541760000001,College Station +Gabbard Park,"1201 Dexter Dr S, College Station, TX 77840, USA",(979) 764-3486,https://visit.cstx.gov/listing/gabbard-park/709/,30.60044719999999,-96.3236242,College Station +Castlerock Park,"4550 Castle Rock Pkwy, College Station, TX 77845, USA",(979) 764-3486,http://www.cstx.gov/,30.5567063,-96.2731343,College Station +Brothers Pond Park,"3100 Rio Grande Blvd, College Station, TX 77845, USA",(979) 764-3486,https://visit.cstx.gov/listing/brothers-pond-park/701/,30.5836547,-96.3004338,College Station +Gary Halter Nature Center,"College Station, TX 77845, USA",(979) 764-6216,http://cstx.gov/lickcreek,30.56703820000001,-96.2124219,College Station +The Children's Museum of the Brazos Valley,"4114 Lake Atlas Dr Suite 110, Bryan, TX 77807, USA",(979) 779-5437,http://www.cmbv.org/,30.60190279999999,-96.3821601,College Station +Aggie Park,"College Station, TX 77840, USA",(979) 862-7529,https://aggiepark.tamu.edu/,30.6100854,-96.3376844,College Station +Texas A&M University Research Park,"Research Pkwy, College Station, TX 77845, USA",(979) 862-6437,Unknown,30.6026235,-96.3601379,College Station +Pebble Creek Park,"401 Parkview Dr, College Station, TX 77845, USA",(979) 764-3500,https://visit.cstx.gov/listing/pebble-creek-park/722/,30.5596973,-96.24801269999999,College Station +Reveille Memorial,"College Station, TX 77840, USA",Unknown,Unknown,30.6109631,-96.3413855,College Station +Stephen C. Beachy Central Park,"1000 Krenek Tap Rd, College Station, TX 77840, USA",(979) 764-3486,https://visit.cstx.gov/listing/stephen-c-beachy-central-park/354/,30.6117291,-96.29433979999999,College Station +Veterans Memorial Park,"3101 Harvey Rd, College Station, TX 77845, USA",(979) 764-3486,http://veterans-park-college-station.edan.io/,30.64154850000001,-96.29337729999999,College Station +Jacksonville Zoo and Gardens,"370 Zoo Pkwy, Jacksonville, FL 32218, USA",(904) 757-4463,http://www.jacksonvillezoo.org/,30.40222359999999,-81.6432579,Jacksonville +Southbank Riverwalk,"1001 Museum Cir, Jacksonville, FL 32207, USA",(904) 630-2489,http://downtownjacksonville.org/locations/l-100-southbank-riverwalk.aspx,30.3201479,-81.6564993,Jacksonville +MOSH (Museum Of Science & History),"1025 Museum Cir, Jacksonville, FL 32207, USA",(904) 396-6674,http://themosh.org/,30.31886519999999,-81.65976669999999,Jacksonville +Kingsley Plantation,"11676 Palmetto Ave, Jacksonville, FL 32226, USA",(904) 251-3537,https://www.nps.gov/timu/learn/historyculture/kp_visiting.htm,30.43989019999999,-81.43780919999999,Jacksonville +Tree Hill Nature Center,"7152 Lone Star Rd, Jacksonville, FL 32211, USA",(904) 724-4646,http://www.treehill.org/,30.3334246,-81.58278620000002,Jacksonville +Kathryn Abbey Hanna Park,"500 Wonderwood Dr, Jacksonville, FL 32233, USA",(904) 255-6767,http://www.coj.net/departments/parks-and-recreation/recreation-and-community-programming/kathryn-abbey-hanna-park.aspx,30.37092519999999,-81.4067718,Jacksonville +Castaway Island Preserve,"2885 San Pablo Rd S, Jacksonville, FL 32225, USA",(904) 630-2489,https://www.timucuanparks.org/castaway-island-preserve/,30.2961292,-81.4376879,Jacksonville +Jacksonville Arboretum & Botanical Gardens,"1445 Millcoe Rd, Jacksonville, FL 32225, USA",(904) 318-4342,http://www.jacksonvillearboretum.org/,30.3461357,-81.5397758,Jacksonville +Fort George Island Cultural State Park,"12241 Fort George Rd, Jacksonville, FL 32226, USA",(904) 251-2320,https://www.floridastateparks.org/parks-and-trails/fort-george-island-cultural-state-park,30.42393759999999,-81.43133209999999,Jacksonville +Cummer Museum of Art & Gardens,"829 Riverside Ave, Jacksonville, FL 32204, USA",(904) 356-6857,http://www.cummermuseum.org/,30.31513780000001,-81.6769552,Jacksonville +The Catty Shack Ranch Wildlife Sanctuary,"1860 Starratt Rd, Jacksonville, FL 32226, USA",(904) 757-3603,https://cattyshack.org/,30.4931781,-81.58749159999999,Jacksonville +James Weldon Johnson Park,"135 W Monroe St, Jacksonville, FL 32202, USA",(904) 515-5098,https://jamesweldonjohnsonpark.org/events/,30.328937,-81.659251,Jacksonville +Shipwreck Island Water Park,"1944 Beach Blvd, Jacksonville Beach, FL 32250, USA",(904) 246-4386,https://jacksonville-beach.adventurelanding.com/attractions/shipwreck-island-waterpark/,30.2874387,-81.4117421,Jacksonville +Beaches Museum,"381 Beach Blvd, Jacksonville Beach, FL 32250, USA",(904) 241-5657,http://beachesmuseum.org/,30.2885577,-81.39276009999999,Jacksonville +"MOCA (Museum Of Contemporary Art), Jacksonville","333 N Laura St, Jacksonville, FL 32202, USA",(904) 366-6911,http://mocajacksonville.unf.edu/,30.3292778,-81.65840829999999,Jacksonville +Huguenot Memorial Park,"10980 Heckscher Dr, Jacksonville, FL 32226, USA",(904) 255-4255,http://www.coj.net/departments/parks-and-recreation/recreation-and-community-programming/huguenot-memorial-park.aspx,30.4110088,-81.4204882,Jacksonville +Timucuan Ecological and Historical Preserve,"12713 Ft Caroline Rd, Jacksonville, FL 32225, USA",(904) 641-7155,https://www.nps.gov/timu/index.htm,30.4544578,-81.4498717,Jacksonville +Museum of Southern History,"4304 Herschel St, Jacksonville, FL 32210, USA",(904) 750-1950,https://www.museumsouthernhistory.com/,30.2829643,-81.71375309999999,Jacksonville +Walter Jones Historic Park,"11964 Mandarin Rd, Jacksonville, FL 32223, USA",(904) 268-0784,http://www.mandarinmuseum.net/visit/walter-jones-historical-park,30.1653631,-81.64645589999999,Jacksonville +Friendship Fountain,"1015 Museum Cir, Jacksonville, FL 32207, USA",(904) 630-2489,http://www.coj.net/departments/parks-and-recreation/recreation-and-community-programming/parks/friendship-fountain,30.32001820000001,-81.65982029999999,Jacksonville +Natural History Museum of Utah,"301 Wakara Way, Salt Lake City, UT 84108, USA",(801) 581-6927,http://nhmu.utah.edu/,40.7641297,-111.8226881,Salt Lake City +Liberty Park,"600 Harvey Milk Blvd, Salt Lake City, UT 84105, USA",(801) 972-7800,https://www.slc.gov/parks/parks-division/liberty-park/,40.74570449999999,-111.8739202,Salt Lake City +Tracy Aviary & Botanical Gardens,"589 E 1300 S, Salt Lake City, UT 84105, USA",(801) 596-8500,http://www.tracyaviary.org/,40.7438995,-111.8751663,Salt Lake City +Utah State Capitol,"350 State St, Salt Lake City, UT 84103, USA",Unknown,https://utahstatecapitol.utah.gov/,40.7774076,-111.8881773,Salt Lake City +Memory Grove Park,"300 N Canyon Rd, Salt Lake City, UT 84103, USA",(801) 972-7800,https://www.slc.gov/parks/parks-division/memory-grove/,40.7775333,-111.8843194,Salt Lake City +Gilgal Sculpture Garden,"749 E 500 S, Salt Lake City, UT 84102, USA",(801) 972-7860,http://gilgalgarden.org/,40.75880859999999,-111.8693781,Salt Lake City +Red Butte Garden,"300 Wakara Way, Salt Lake City, UT 84108, USA",(801) 585-0556,http://www.redbuttegarden.org/,40.7661478,-111.8247707,Salt Lake City +Clark Planetarium,"110 400 W, Salt Lake City, UT 84101, USA",(385) 468-7827,https://slco.org/clark-planetarium/,40.7666699,-111.9033733,Salt Lake City +Pioneer Memorial Museum,"300 N Main St, Salt Lake City, UT 84103, USA",(801) 532-6479,http://www.dupinternational.org/,40.77670559999999,-111.8911293,Salt Lake City +Discovery Gateway Children's Museum,"444 W 100 S, Salt Lake City, UT 84101, USA",(801) 456-5437,http://www.discoverygateway.org/,40.76736449999999,-111.9039348,Salt Lake City +City Creek Park,"350 State St, Salt Lake City, UT 84103, USA",(801) 972-7860,https://www.slc.gov/parks/parks-division/city-creek-park/,40.7721245,-111.8877862,Salt Lake City +This Is The Place Heritage Park,"2601 Sunnyside Ave S, Salt Lake City, UT 84108, USA",(801) 582-1847,http://www.thisistheplace.org/,40.7526353,-111.8158093,Salt Lake City +Sugar House Park,"1330 2100 S, Salt Lake City, UT 84106, USA",(385) 468-7275,http://www.sugarhousepark.org/,40.723877,-111.8493998,Salt Lake City +Temple Square,"50 North Temple, Salt Lake City, UT 84150, USA",(801) 240-8945,https://www.churchofjesuschrist.org/feature/templesquare?lang=eng&y_source=1_MzA1ODU2NjYtNzE1LWxvY2F0aW9uLndlYnNpdGU%3D,40.7707425,-111.8910709,Salt Lake City +The Leonardo,"209 E 500 S, Salt Lake City, UT 84111, USA",(801) 531-9800,http://www.theleonardo.org/,40.7589309,-111.8845602,Salt Lake City +Washington Square Park,"451 S State St, Salt Lake City, UT 84111, USA",(801) 972-7800,http://www.slcgov.com/cityparks/parks-washington-square-park,40.7594963,-111.8875681,Salt Lake City +Hogle Zoo,"2600 Sunnyside Ave S, Salt Lake City, UT 84108, USA",(801) 584-1700,https://www.hoglezoo.org/,40.7503666,-111.8141741,Salt Lake City +Utah Museum of Contemporary Art,"20 S W Temple St, Salt Lake City, UT 84101, USA",(801) 328-4201,http://www.utahmoca.org/,40.76834609999999,-111.8947354,Salt Lake City +Ice Cream Mural,"324 S State St, Salt Lake City, UT 84111, USA",Unknown,Unknown,40.7623383,-111.8884543,Salt Lake City +Pony Express National Historic Trail,"2423-2599 Sunnyside Ave S, Salt Lake City, UT 84108, USA",(505) 988-6098,https://www.nps.gov/poex/index.htm,40.7522625,-111.8200551,Salt Lake City +Texas State Aquarium,"2710 N Shoreline Blvd, Corpus Christi, TX 78402, USA",(361) 881-1200,http://www.texasstateaquarium.org/,27.813759,-97.3919688,Corpus Christi +South Texas Botanical Gardens & Nature Center,"8545 S Staples St, Corpus Christi, TX 78413, USA",(361) 852-2100,https://stxbot.org/,27.6525278,-97.4068597,Corpus Christi +The Art Museum of South Texas,"1902 N Shoreline Blvd, Corpus Christi, TX 78401, USA",(361) 825-3500,http://www.artmuseumofsouthtexas.org/,27.8102129,-97.39291569999999,Corpus Christi +USS Lexington,"2914 N Shoreline Blvd, Corpus Christi, TX 78402, USA",(361) 888-4873,https://www.usslexington.com/,27.8150729,-97.3887026,Corpus Christi +Selena Museum,"5410 Leopard St, Corpus Christi, TX 78408, USA",(361) 289-9013,https://q-productions.com/,27.7981622,-97.4612901,Corpus Christi +Mustang Island State Park,"9394 TX-361, Corpus Christi, TX 78418, USA",(361) 749-5246,http://www.tpwd.state.tx.us/state-parks/parks/find-a-park/mustang-island-state-park,27.67284739999999,-97.1765566,Corpus Christi +Viewpoint of the Flower,"600 N Shoreline Blvd, Corpus Christi, TX 78401, USA",Unknown,https://www.visitcorpuschristitx.org/see-and-do/1373/selena-memorial-mirador-de-la-flor-overlook-of-the-flower,27.796656,-97.3909948,Corpus Christi +Texas Sealife Center,"14220 S Padre Island Dr, Corpus Christi, TX 78418, USA",(361) 589-4023,http://www.texassealifecenter.org/,27.6253434,-97.22143369999999,Corpus Christi +Corpus Christi Museum of Science and History,"1900 N Chaparral St, Corpus Christi, TX 78401, USA",(361) 826-4667,http://www.ccmuseum.com/,27.8100921,-97.3952857,Corpus Christi +Bayfront Park,"1513-1517 N Shoreline Blvd, Corpus Christi, TX 78401, USA",(361) 826-7529,http://www.cctexas.com/,27.8064246,-97.3924947,Corpus Christi +Padre Balli Park,"15820 Park Rd 22, Corpus Christi, TX 78418, USA",(361) 949-8121,https://www.nuecesbeachparks.com/padre-balli-park,27.5851138,-97.21949819999999,Corpus Christi +Packery Channel Park,"Packary Channel Park, 14218 S Padre Island Dr, Corpus Christi, TX 78418, USA",(361) 949-7004,Unknown,27.62617869999999,-97.221344,Corpus Christi +Ropes Park,"3502 Ocean Dr, Corpus Christi, TX 78411, USA",(361) 826-7529,https://naturerockscoastalbend.org/greenspace/ropes-park,27.753858,-97.3766112,Corpus Christi +Watergarden,"1700 N Chaparral St, Corpus Christi, TX 78401, USA",Unknown,Unknown,27.8086704,-97.3957592,Corpus Christi +The pilings,"S Padre Island Dr, Corpus Christi, TX 78418, USA",Unknown,Unknown,27.4916642,-97.2667089,Corpus Christi +Corpus Christi bayfront,"Ocean Dr, Corpus Christi, TX 78412, USA",Unknown,Unknown,27.7176047,-97.3289286,Corpus Christi +Chancla Tree,"221 S Hotel Pl, Corpus Christi, TX 78402, USA",Unknown,Unknown,27.8209622,-97.3876777,Corpus Christi +Selena Memorial Statue,"600 N Shoreline Blvd, Corpus Christi, TX 78401, USA",Unknown,https://www.visitcorpuschristitx.org/see-and-do/1373/selena-memorial-mirador-de-la-flor-overlook-of-the-flower,27.79664759999999,-97.39101459999999,Corpus Christi +Artesian Park,"524 Twigg St, Corpus Christi, TX 78401, USA",Unknown,https://www.nps.gov/places/artesian-park.htm,27.7996007,-97.3944475,Corpus Christi +Oleander Point at Cole Park,"S Shoreline Blvd, Corpus Christi, TX 78401, USA",Unknown,https://topbrunchspots.com/attractions/oleander-point-at-cole-park-corpus-christi-texas/,27.7683645,-97.3853211,Corpus Christi +Palazzo Vecchio,"P.za della Signoria, 50122 Firenze FI, Italy",055 276 8325,https://cultura.comune.fi.it/pagina/musei-civici-fiorentini/museo-di-palazzo-vecchio,43.7693012,11.2561509,Florence +Piazza della Signoria,"P.za della Signoria, 50122 Firenze FI, Italy",Unknown,Unknown,43.7696855,11.2556422,Florence +Cathedral of Santa Maria del Fiore,"Piazza del Duomo, 50122 Firenze FI, Italy",055 230 2885,https://duomo.firenze.it/it/scopri/cattedrale-di-santa-maria-del-fiore,43.77314499999999,11.2559602,Florence +Basilica of Santa Croce in Florence,"Piazza di Santa Croce, 16, 50122 Firenze FI, Italy",055 200 8789,http://www.santacroceopera.it/,43.7685683,11.2622677,Florence +Ponte Vecchio,"Ponte Vecchio, 50125 Firenze FI, Italy",Unknown,Unknown,43.76792500000001,11.2531435,Florence +The Boboli Gardens,"Piazza de' Pitti, 1, 50125 Firenze FI, Italy",055 23885,https://www.uffizi.it/giardino-boboli/,43.76249719999999,11.2483996,Florence +Loggia dei Lanzi,"P.za della Signoria, 50121 Firenze FI, Italy",055 23885,https://www.uffizi.it/video/la-loggia-de-lanzi,43.7691899,11.2555334,Florence +Giotto's Bell Tower,"Cattedrale di Santa Maria del Fiore, Piazza del Duomo, 50122 Firenze FI, Italy",055 230 2885,http://ilgrandemuseodelduomo.it/#campanile,43.7730133,11.2550615,Florence +Basilica of Santa Maria Novella,"P.za di Santa Maria Novella, 18, 50123 Firenze FI, Italy",055 219257,https://www.smn.it/it/,43.77463460000001,11.2493859,Florence +Bargello National Museum,"Via del Proconsolo, 4, 50122 Firenze FI, Italy",055 064 9440,http://www.bargellomusei.beniculturali.it/,43.7703981,11.2580078,Florence +Pitti Palace,"Piazza de' Pitti, 1, 50125 Firenze FI, Italy",055 294883,https://www.uffizi.it/palazzo-pitti,43.7651533,11.2500081,Florence +The Baptistery of St. John,"Piazza San Giovanni, 50122 Firenze FI, Italy",055 230 2885,http://www.operaduomo.firenze.it/,43.77311539999999,11.2550232,Florence +Opera del Duomo Museum,"Piazza del Duomo, 9, 50122 Firenze FI, Italy",055 230 2885,https://duomo.firenze.it/,43.7731722,11.2577573,Florence +Piazza del Duomo,"Piazza del Duomo, 50122 Firenze FI, Italy",Unknown,Unknown,43.7730912,11.2554649,Florence +Basilica di San Miniato,"Via delle Porte Sante, 34, 50125 Firenze FI, Italy",055 234 2731,http://www.sanminiatoalmonte.it/,43.7594184,11.2649796,Florence +Piazzale Michelangelo,"Piazzale Michelangelo, 50125 Firenze FI, Italy",Unknown,Unknown,43.7629314,11.2650561,Florence +Piazza della Repubblica,"Piazza della Repubblica, 50123 Firenze FI, Italy",Unknown,Unknown,43.77142629999999,11.254019,Florence +Uffizi Gallery,"Piazzale degli Uffizi, 6, 50122 Firenze FI, Italy",055 294883,https://www.uffizi.it/gli-uffizi,43.7677856,11.2553108,Florence +David of Michelangelo,"Via Ricasoli, 60, 50122 Firenze FI, Italy",055 294883,https://www.galleriaaccademiafirenze.it/opere/david-michelangelo/,43.7767194,11.2593217,Florence +Brunelleschi's dome,"Piazza del Duomo, 50122 Firenze FI, Italy",055 230 2885,https://www.ilgrandemuseodelduomo.it/monumenti/2-cupola,43.7731978,11.2569527,Florence +Moab Museum,"118 E Center St, Moab, UT 84532, USA",(435) 259-7985,http://www.moabmuseum.org/,38.5730959,-109.5483139,Moab +Moab Jeep Adventure,"Main St, Moab, UT 84532, USA",(844) 836-5337,https://www.moabjeepadventure.com/,38.58941830000001,-109.5616176,Moab +Moab Jett,"50 W 400 N, Moab, UT 84532, USA",(435) 259-5538,http://www.moabjett.com/,38.5794136,-109.5517051,Moab +Little Arch,"Moab, UT 84532, USA",Unknown,http://www.utaharches.com/MA/littlearch.html,38.56358829999999,-109.5858222,Moab +Hole 'N' The Rock,"11037 S Hwy 191, Moab, UT 84532, USA",(435) 686-2250,http://www.theholeintherock.com/,38.39080939999999,-109.4542852,Moab +Double Arch,"The Windows Rd, Moab, UT 84532, USA",Unknown,https://www.nps.gov/arch/index.htm,38.69161700000001,-109.5403916,Moab +Dead Horse Point State Park,"UT-313, Moab, UT 84532, USA",(800) 322-3770,https://stateparks.utah.gov/parks/dead-horse/,38.50542669999999,-109.7294241,Moab +Corona Arch,"Moab, UT 84532, USA",Unknown,https://www.blm.gov/visit/corona-arch-trail,38.5799139,-109.6200579,Moab +Rotary Park,"680 S Mill Creek Dr, Moab, UT 84532, USA",(435) 259-5121,https://moabcity.org/Facilities/Facility/Details/City-ParksRotary-Park-33,38.56493029999999,-109.5372838,Moab +Morning Glory Arch,"HFVR+CF, Moab, UT 84532, USA",Unknown,Unknown,38.5935462,-109.508826,Moab +Slickrock Bike Trail,"Parking lot, Sand Flats Rd, Moab, UT 84532, USA",(435) 259-2444,http://grandcountyutah.net/287/Sand-Flats-Recreation-Area,38.58166669999999,-109.5194444,Moab +Moab Giants,"112 UT-313, Moab, UT 84532, USA",(435) 355-0288,http://moabgiants.com/,38.671717,-109.686672,Moab +Sentinel of Moab - Art Mural,"311 S Main St, Moab, UT 84532, USA",Unknown,https://www.skyewalkerart.com/murals,38.5679261,-109.5503405,Moab +Tombstone Rock,"Kane Spgs Rd, Moab, UT 84532, USA",Unknown,Unknown,38.52999700000001,-109.593917,Moab +Sand Flats Recreation Area,"Sand Flats Rd, Moab, UT 84532, USA",(435) 259-2444,http://www.sandflats.net/,38.5764609,-109.5186506,Moab +Colorado Riverway,"Potash Rd, Moab, UT 84532, USA",Unknown,Unknown,38.5708468,-109.5802582,Moab +Huntress Arch,"Hells Gate, Moab, UT 84532, USA",(435) 259-8825,https://www.discovermoab.com/arches-national-park/,38.6066406,-109.5369355,Moab +Updraft Arch,"Moab, UT 84532, USA",Unknown,Unknown,38.6008151,-109.5592843,Moab +Little Rainbow Bridge,"Moab, UT 84532, USA",Unknown,Unknown,38.5799283,-109.6200585,Moab +Jug Handle Arch,"UT-279, Moab, UT 84532, USA",(435) 259-8825,https://www.discovermoab.com/arches-national-park/,38.54857,-109.64789,Moab +Splashers of the South Seas,"1000 S 42nd St, Grand Forks, ND 58201, USA",(701) 772-8404,https://www.canadinns.com/play/splashers-of-the-south-seas/,47.9123889,-97.09031429999999,Grand Forks +Sertoma Park,"3300 11th Ave S, Grand Forks, ND 58201, USA",(701) 746-2750,http://www.gfparks.org/parks-facilities/parks/sertoma-japanese-garden/,47.9103473,-97.07548720000001,Grand Forks +Grand Forks County Historical Society,"2405 Belmont Rd, Grand Forks, ND 58201, USA",(701) 775-2216,http://grandforkshistory.com/,47.8965054,-97.0276718,Grand Forks +Sherlock Park,"919 5th Ave NW, East Grand Forks, MN 56721, USA",Unknown,http://www.egf.mn/,47.9332066,-97.0271106,Grand Forks +Welcome to Minnesota Sign - East Grand Forks,"1402 Lewis Blvd, Grand Forks, ND 58203, USA",Unknown,Unknown,47.9330996,-97.0384658,Grand Forks +North Dakota Museum of Art,"261 Centennial Dr, Grand Forks, ND 58202, USA",(701) 777-4195,http://www.ndmoa.com/,47.9190627,-97.07376839999999,Grand Forks +Northern Air Action Park,"1600 32nd Ave S, Grand Forks, ND 58201, USA",(701) 757-4386,https://northernairactionpark.com/,47.89048809999999,-97.05008939999999,Grand Forks +Downtown Grand Forks Historic District,"3 N 4th St, Grand Forks, ND 58203, USA",(701) 757-4051,http://downtownforks.com/,47.9244448,-97.03152539999999,Grand Forks +Japanese Gardens,"3300 11th Ave S, Grand Forks, ND 58201, USA",(701) 746-2750,https://www.gfparks.org/parks-facilities/parks/sertoma-japanese-garden/,47.9105742,-97.07485,Grand Forks +Kiwanis Park,"4000 Ruemmele Rd, Grand Forks, ND 58201, USA",(701) 746-2750,http://gfparks.org/,47.883139,-97.076146,Grand Forks +Heritage Village,"219 20th St NE, East Grand Forks, MN 56721, USA",(218) 779-3034,http://www.egfheritage.com/,47.9451489,-97.0156444,Grand Forks +Elks Park,"1002 13th Ave S, Grand Forks, ND 58201, USA",(701) 746-2781,http://www.gfparks.org/parks-facilities/parks/elks/,47.9099946,-97.0408679,Grand Forks +SkyJump,"2000 Las Vegas Blvd S, Las Vegas, NV 89104, USA",(702) 380-7777,https://www.thestrat.com/attractions/skyjump?utm_source=gmb&utm_medium=yext,36.1476134,-115.1563965,Las Vegas +Madame Tussauds Las Vegas,"3377 S Las Vegas Blvd Ste. 2001, Las Vegas, NV 89109, USA",(702) 862-7800,http://www.madametussauds.com/lasvegas/,36.12123,-115.1714421,Las Vegas +Gondola Rides at the Venetian,"3355 S Las Vegas Blvd, Las Vegas, NV 89109, USA",(702) 414-4300,http://www.venetian.com/Las-Vegas-Activities/Gondola-Rides/,36.12251250000001,-115.1705971,Las Vegas +The Mob Museum,"300 Stewart Ave, Las Vegas, NV 89101, USA",(702) 229-2734,https://themobmuseum.org/,36.17281979999999,-115.1412395,Las Vegas +Fremont Street Experience,"E Fremont St, Las Vegas, NV 89101, USA",(702) 678-5600,https://vegasexperience.com/?utm_source=google&utm_medium=organic&utm_campaign=GMB,36.1707275,-115.1438229,Las Vegas +Eiffel Tower Viewing Deck,"3655 Las Vegas Blvd S, Las Vegas, NV 89109, USA",(888) 727-4758,https://www.caesars.com/paris-las-vegas/things-to-do/eiffel-tower?utm_campaign=google&utm_source=google&utm_medium=local&utm_term=PLV15&utm_content=attractions&y_source=1_NDM2Njg4OC03MTUtbG9jYXRpb24ud2Vic2l0ZQ%3D%3D,36.1124833,-115.1725102,Las Vegas +High Roller,"3545 S Las Vegas Blvd, Las Vegas, NV 89109, USA",(855) 234-7469,https://www.caesars.com/linq/things-to-do/attractions/high-roller?utm_campaign=GMB&utm_source=google&utm_medium=local&utm_term=HighRoller&utm_content=attractions&y_source=1_NDM2Njg1NS03MTUtbG9jYXRpb24ud2Vic2l0ZQ==,36.1176324,-115.168294,Las Vegas +Big Shot,"2000 S Las Vegas Blvd, Las Vegas, NV 89104, USA",(702) 383-5210,https://thestrat.com/attractions/thrill-rides/big-shot,36.1478535,-115.1555127,Las Vegas +SlotZilla Zipline Las Vegas,"425 Fremont St #160, Las Vegas, NV 89101, USA",(702) 678-5780,https://vegasexperience.com/slotzilla-zip-line/?utm_campaign=yext,36.16948659999999,-115.1412718,Las Vegas +Springs Preserve,"333 S Valley View Blvd, Las Vegas, NV 89107, USA",(702) 822-7700,http://www.springspreserve.org/,36.1693608,-115.1906908,Las Vegas +Las Vegas Natural History Museum,"900 Las Vegas Blvd N, Las Vegas, NV 89101, USA",(702) 384-3466,http://www.lvnhm.org/,36.17987099999999,-115.133864,Las Vegas +The Neon Museum Las Vegas,"770 Las Vegas Blvd N, Las Vegas, NV 89101, USA",(702) 387-6366,https://www.neonmuseum.org/,36.1769882,-115.1353374,Las Vegas +Observation Deck,"2000 Las Vegas Blvd S, Las Vegas, NV 89104, USA",(702) 380-7777,https://www.thestrat.com/attractions/skypod?utm_source=gmb&utm_medium=yext,36.1476622,-115.1556113,Las Vegas +Bellagio Fountain,"3600 S Las Vegas Blvd, Las Vegas, NV 89109, USA",(702) 693-7111,https://www.bellagio.com/en/entertainment/fountains-of-bellagio.html,36.11271869999999,-115.1739109,Las Vegas +Las Vegas Boulevard Gateway Arches,"1998 S Las Vegas Blvd, Las Vegas, NV 89104, USA",Unknown,https://www.lasvegasnevada.gov/News/Blog/Detail/las-vegas-boulevard-arches,36.1465596,-115.1555113,Las Vegas +Lake of Dreams,"3131 Las Vegas Blvd S, Las Vegas, NV 89109, USA",(702) 770-7000,https://www.wynnlasvegas.com/entertainment/lake-of-dreams,36.12630439999999,-115.1670561,Las Vegas +AREA15,"3215 S Rancho Dr, Las Vegas, NV 89102, USA",Unknown,https://www.area15.com/,36.1317582,-115.1815485,Las Vegas +Welcome to Fabulous Las Vegas Sign,"5100 Las Vegas Blvd S, Las Vegas, NV 89119, USA",(702) 533-9112,Unknown,36.0820727,-115.172779,Las Vegas +Bellagio Conservatory & Botanical Gardens,"3600 S Las Vegas Blvd, Las Vegas, NV 89109, USA",(702) 693-7111,https://www.bellagio.com/en/entertainment/conservatory-botanical-garden.html?ecid=GMB_BE,36.1119912,-115.1765648,Las Vegas +Shark Reef Aquarium at Mandalay Bay,"3950 S Las Vegas Blvd, Las Vegas, NV 89119, USA",(702) 632-4555,https://mandalaybay.mgmresorts.com/en/entertainment/shark-reef-aquarium.html,36.0887734,-115.1764706,Las Vegas +Pioneer Park,"2300 Airport Way, Fairbanks, AK 99701, USA",(907) 459-1087,http://www.pioneerpark.us/,64.83903149999999,-147.7740312,Fairbanks +Fountainhead Antique Auto Museum,"212 Wedgewood Dr, Fairbanks, AK 99701, USA",(907) 450-2100,http://www.fountainheadmuseum.com/,64.8604433,-147.7137352,Fairbanks +Museum of the North,"1962 Yukon Dr, Fairbanks, AK 99775, USA",(907) 474-7505,http://www.uaf.edu/museum/,64.85848469999999,-147.8423214,Fairbanks +Morris Thompson Cultural & Visitors Center,"101 Dunkel St, Fairbanks, AK 99701, USA",(907) 459-3700,http://www.morristhompsoncenter.org/,64.8460029,-147.7127243,Fairbanks +Moose Antler Arch,"Fairbanks, AK 99701, USA",Unknown,https://www.morristhompsoncenter.org/antler-arch-is-gateway-to-downtown-fairbanks/,64.8464242,-147.7139601,Fairbanks +Fairbanks Ice Museum,"500 2nd Ave, Fairbanks, AK 99701, USA",(907) 451-8222,http://icemuseum.com/,64.84378,-147.7181643,Fairbanks +Golden Heart Plaza,"516 1st Ave #500, Fairbanks, AK 99701, USA",Unknown,http://www.alaska.org/detail/golden-heart-plaza,64.8442973,-147.7196799,Fairbanks +Friends of Creamers Field at Creamer's Field Migratory Waterfowl Refuge,"1300 College Rd, Fairbanks, AK 99701, USA",(907) 978-8457,https://friendsofcreamersfield.org/,64.8628622,-147.7384242,Fairbanks +Wedgewood Wildlife Sanctuary,"212 Wedgewood Dr, Fairbanks, AK 99701, USA",(907) 452-1442,https://www.alaska.org/detail/fountainhead-wedgewood-wildlife-sanctuary,64.8615864,-147.7136744,Fairbanks +Pioneer Air Museum,"2300 Airport Way, Fairbanks, AK 99701, USA",(907) 451-0037,https://www.pioneerair.museum/,64.83946929999999,-147.7750963,Fairbanks +Alyeska Pipeline / Viewing Point,"1671 Steese Hwy, Fairbanks, AK 99712, USA",Unknown,Unknown,64.92954139999999,-147.6297414,Fairbanks +Alaska Range Overlook,"Fairbanks, AK 99709, USA",Unknown,Unknown,64.8578082,-147.8356157,Fairbanks +Lend Lease Monument,"360 Wendell Ave, Fairbanks, AK 99701, USA",Unknown,Unknown,64.8453246,-147.7170001,Fairbanks +Fairbanks Community Museum,"535 2nd Ave #215, Fairbanks, AK 99701, USA",(907) 457-3669,http://fairbankshistorymuseum.com/,64.84308159999999,-147.719517,Fairbanks +Fairbanks Children's Museum,"302 Cushman St Suite 101, Fairbanks, AK 99701, USA",(907) 374-6873,http://www.fairbankschildrensmuseum.com/,64.8425,-147.7216667,Fairbanks +Graehl Park,"212 Front St, Fairbanks, AK 99701, USA",Unknown,Unknown,64.845714,-147.7056026,Fairbanks +Denali Mural,"321 Cushman St, Fairbanks, AK 99701, USA",Unknown,Unknown,64.84239769999999,-147.7205137,Fairbanks +World Ice Art Championships - Ice Alaska,"1800 College Rd, Fairbanks, AK 99709, USA",(833) 442-3278,http://www.icealaska.org/,64.8653846,-147.757855,Fairbanks +Fairbanks Fatbikes,"455 Tail Waggin Ln, Fairbanks, AK 99712, USA",(907) 687-0732,https://m.facebook.com/Fairbanks-FatBikes,64.8677372,-147.6817278,Fairbanks +Explore Fairbanks,"101 Dunkel St #111, Fairbanks, AK 99701, USA",(907) 456-5774,http://www.explorefairbanks.com/,64.8458333,-147.7122222,Fairbanks +Petersburg National Battlefield,"Petersburg, VA 23803, USA",(804) 732-3531,http://www.nps.gov/pete/,37.2285701,-77.3662362,Petersburg +Centre Hill Mansion-Museum,"1 Centre Hill Ave, Petersburg, VA 23803, USA",(804) 733-2401,http://www.museumsofpetersburg.com/,37.23067,-77.401235,Petersburg +Pamplin Historical Park,"6125 Boydton Plank Rd, Petersburg, VA 23803, USA",(804) 861-2408,https://www.pamplinpark.org/,37.1876199,-77.4788123,Petersburg +Tavern Park,"Petersburg, VA 23803, USA",Unknown,Unknown,37.2331572,-77.40770859999999,Petersburg +The Exchange Building and Petersburg Visitors Center,"15 W Bank St, Petersburg, VA 23803, USA",(804) 835-9630,Unknown,37.2320535,-77.4054209,Petersburg +"Graffiti Art ""Mechanical Wings""","9 E Bank St, Petersburg, VA 23803, USA",Unknown,Unknown,37.2320632,-77.40432659999999,Petersburg +Battersea Foundation,"1289 Upper Appomattox St, Petersburg, VA 23803, USA",(804) 732-9882,http://www.batterseafound.org/,37.22556589999999,-77.4283433,Petersburg +Legends Park,"1614 Defense Rd, Petersburg, VA 23805, USA",(804) 733-2394,http://www.petersburgva.gov/Facilities/Facility/Details/Lee-Memorial-Park-1,37.1972663,-77.4085149,Petersburg +Peter Jones Trading Station,"600-698 N Market St, Petersburg, VA 23803, USA",(800) 313-1434,http://www.historicpetersburg.org/peter-jones-trading-station/,37.232898,-77.4074393,Petersburg +Poplar Grove National Cemetery,"8005 Vaughan Rd, Petersburg, VA 23805, USA",(804) 861-2488,https://www.nps.gov/pete/learn/historyculture/poplar-grove-national-cemetery.htm,37.16008619999999,-77.42825479999999,Petersburg +Blandford Church and Cemetery Visitor's Center,"111 Rochelle Ln, Petersburg, VA 23803, USA",(804) 733-2396,Unknown,37.2266646,-77.38802930000001,Petersburg +Bird Park,"99-1 Cypress Ct, Petersburg, VA 23803, USA",Unknown,Unknown,37.233575,-77.37410249999999,Petersburg +Poplar Lawn Historic District,"Petersburg, VA 23803, USA",Unknown,Unknown,37.22237229999999,-77.4010933,Petersburg +State of Massachusetts Monument,"Petersburg, VA 23803, USA",Unknown,Unknown,37.2184923,-77.38273219999999,Petersburg +Violet Bank Museum,"303 Virginia Ave, Colonial Heights, VA 23834, USA",(804) 520-9395,https://www.colonialheightsva.gov/499/Violet-Bank,37.241899,-77.40512269999999,Petersburg +Matoax Park Trailhead,"Petersburg, VA 23803, USA",Unknown,Unknown,37.2383386,-77.40160449999999,Petersburg +McKenzie Street Park,"Petersburg, VA 23803, USA",Unknown,Unknown,37.22848429999999,-77.4216072,Petersburg +Southside Depot,"46-98 Pike St, Petersburg, VA 23803, USA",Unknown,Unknown,37.2339141,-77.40512609999999,Petersburg +Petersburg National Battlefield Eastern Front Unit Visitor Center,"5001 Siege Rd, Petersburg, VA 23803, USA",(804) 732-3531,https://www.nps.gov/pete/planyourvisit/basicinfo.htm,37.24383399999999,-77.3569416,Petersburg +Escape Old Towne,"104 N Sycamore St, Petersburg, VA 23803, USA",(804) 203-5434,http://escapeoldtowne.com/,37.2287216,-77.40382009999999,Petersburg +The Keeper of the Plains,"339 Veterans Pkwy, Wichita, KS 67203, USA",(316) 268-4497,https://www.wichita.gov/Arts/Pages/Keeper.aspx,37.6913539,-97.34971619999999,Wichita +Old Cowtown Museum,"1865 Museum Blvd, Wichita, KS 67203, USA",(316) 350-3323,https://www.oldcowtown.org/Pages/default.aspx,37.6934566,-97.359507,Wichita +Exploration Place,"300 N McLean Blvd, Wichita, KS 67203, USA",(316) 660-0600,http://www.exploration.org/,37.6894665,-97.34796089999999,Wichita +Museum of World Treasures,"835 E 1st St N, Wichita, KS 67202, USA",(316) 263-1311,http://www.worldtreasures.org/,37.687089,-97.327885,Wichita +Sedgwick County Zoo,"5555 W Zoo Blvd, Wichita, KS 67212, USA",(316) 660-9453,https://scz.org/,37.717034,-97.40856099999999,Wichita +Wichita Art Museum,"1400 Museum Blvd, Wichita, KS 67203, USA",(316) 268-4921,http://wam.org/,37.69491969999999,-97.35596869999999,Wichita +Kansas Aviation Museum,"3350 George Washington Blvd, Wichita, KS 67210, USA",(316) 683-9242,http://www.kansasaviationmuseum.org/,37.632177,-97.27369879999999,Wichita +"Botanica, The Wichita Gardens","701 Amidon St, Wichita, KS 67203, USA",(316) 264-0448,http://www.botanica.org/,37.69644760000001,-97.3634268,Wichita +Great Plains Nature Center,"6232 East 29th St N #2200, Wichita, KS 67220, USA",(316) 683-5499,http://gpnc.org/,37.7389194,-97.2640385,Wichita +Wichita-Sedgwick County Historical Museum,"204 S Main St, Wichita, KS 67202, USA",(316) 265-9314,http://www.wichitahistory.org/,37.6847302,-97.33786979999999,Wichita +All Star Adventures,"1010 N Webb Rd, Wichita, KS 67206, USA",(316) 682-3700,http://www.allstarwichita.com/adventures/,37.6998372,-97.2238519,Wichita +Frank Lloyd Wright's Allen House,"255 N Roosevelt St, Wichita, KS 67208, USA",(316) 687-1027,http://flwrightwichita.org/,37.68978879999999,-97.2924084,Wichita +Great Plains Transportation Museum,"700 E Douglas Ave, Wichita, KS 67202, USA",(316) 263-0944,http://www.gptm.us/,37.6862176,-97.3297059,Wichita +Mid-America All-Indian Museum,"650 N Seneca St, Wichita, KS 67203, USA",(316) 350-3340,https://www.theindianmuseum.org/,37.6921686,-97.35187030000002,Wichita +Ulrich Museum of Art,"Wichita State University, 1845 Fairmount St, Wichita, KS 67260, USA",(316) 978-3664,https://ulrich.wichita.edu/,37.7170361,-97.2964674,Wichita +Carrie Nation Statue,"Wichita, KS 67202, USA",Unknown,Unknown,37.6859281,-97.3318589,Wichita +Fountains at WaterWalk,"520-598 S Wichita St, Wichita, KS 67202, USA",Unknown,https://www.wichita.gov/Arts/Pages/Fountains.aspx,37.6804285,-97.340668,Wichita +Union Station Plaza,"701 E Douglas Ave, Wichita, KS 67202, USA",(316) 262-3331,https://www.ictunionstation.com/,37.6853773,-97.32956519999999,Wichita +Wichita Toy Train Club & Museum,"130 S Laura Ave, Wichita, KS 67211, USA",(316) 633-1179,http://www.wichitatoytrainmuseum.org/,37.68516779999999,-97.3233791,Wichita +O J Watson Park,"3022 S McLean Blvd, Wichita, KS 67217, USA",(316) 529-9940,https://www.wichita.gov/parkandrec/watsonpark/Pages/default.aspx,37.6394521,-97.3425931,Wichita +Pioneer Park Historical Complex - Open for Season,"Martin Lynch Dr, Rhinelander, WI 54501, USA",(715) 369-5004,http://www.rhinelanderpphc.com/,45.6310325,-89.4066733,Rhinelander +Hodag Park,"509 Hodag Park Dr, Rhinelander, WI 54501, USA",Unknown,http://www.rhinelandercityhall.org/index.php?page=Parks-Buildings-Grounds,45.65266,-89.4109687,Rhinelander +ArtStart,"68 S Stevens St, Rhinelander, WI 54501, USA",(715) 362-4328,http://artstartrhinelander.org/,45.6368549,-89.4115339,Rhinelander +John Heisman's Grave of Heisman Trophy,"Rhinelander, WI 54501, USA",Unknown,Unknown,45.6312782,-89.39961389999999,Rhinelander +Rhinelander Historical Society,"9 S Pelham St, Rhinelander, WI 54501, USA",(715) 369-3833,http://www.rhinelanderhistoricalsociety.org/,45.6374706,-89.4096677,Rhinelander +Kovac Planetarium,"2392 Mud Creek Rd, Rhinelander, WI 54501, USA",(715) 490-6956,https://frankkovacplanetarium.com/,45.5738262,-89.0654582,Rhinelander +The Hodag,"W Kemp St & Sutliff Ave, Rhinelander, WI 54501, USA",(715) 406-4324,http://www.rhinelanderchamber.com/,45.6321841,-89.4230025,Rhinelander +Rhinelander Riverwalk Trailhead,"Rhinelander, WI 54501, USA",Unknown,Unknown,45.6336459,-89.4196632,Rhinelander +House of fun,"624 Keenan St, Rhinelander, WI 54501, USA",Unknown,Unknown,45.63207149999999,-89.41223210000001,Rhinelander +Science City,"Union Station, 30 W Pershing Rd, Kansas City, MO 64108, USA",(816) 460-2000,http://www.unionstation.org/sciencecity,39.085408,-94.5861467,Kansas City +Kansas City Zoo & Aquarium,"6800 Zoo Dr, Kansas City, MO 64132, USA",(816) 595-1234,https://www.kansascityzoo.org/,39.0072568,-94.52934429999999,Kansas City +National WWI Museum and Memorial,"2 Memorial Dr, Kansas City, MO 64108, USA",(816) 888-8100,https://www.theworldwar.org/,39.080663,-94.5860835,Kansas City +Worlds of Fun,"4545 Worlds of Fun Ave, Kansas City, MO 64161, USA",(816) 454-4545,https://www.worldsoffun.com/,39.1763123,-94.4862721,Kansas City +The Nelson-Atkins Museum of Art,"4525 Oak St, Kansas City, MO 64111, USA",(816) 751-1278,https://www.nelson-atkins.org/?utm_source=gmb&utm_medium=organic&utm_campaign=gmb-listing,39.0449506,-94.58092839999999,Kansas City +Arabia Steamboat Museum,"400 Grand Blvd, Kansas City, MO 64106, USA",(816) 471-1856,https://www.1856.com/,39.1094732,-94.5813811,Kansas City +SEA LIFE Kansas City,"2475 Grand Blvd, Kansas City, MO 64108, USA",(816) 471-4386,https://www.visitsealife.com/kansas-city/,39.0819915,-94.58148159999999,Kansas City +The National Museum of Toys and Miniatures,"5235 Oak St, Kansas City, MO 64112, USA",(816) 235-8000,http://www.toyandminiaturemuseum.org/,39.03077409999999,-94.5820813,Kansas City +Money Museum,"1 Memorial Dr, Kansas City, MO 64198, USA",(816) 881-2683,http://www.kansascityfed.org/moneymuseum,39.07593839999999,-94.5864272,Kansas City +Kemper Museum of Contemporary Art,"4420 Warwick Blvd, Kansas City, MO 64111, USA",(816) 753-5784,http://www.kemperart.org/,39.04643,-94.5851292,Kansas City +Kansas City Museum,"3218 Gladstone Blvd, Kansas City, MO 64123, USA",(816) 702-7700,http://kansascitymuseum.org/,39.11601649999999,-94.5423536,Kansas City +American Jazz Museum,"1616 E 18th St, Kansas City, MO 64108, USA",(816) 474-8463,http://americanjazzmuseum.org/,39.0914216,-94.56268440000001,Kansas City +Kansas City Workhouse,"2001 Vine St, Kansas City, MO 64108, USA",Unknown,Unknown,39.0878542,-94.5628947,Kansas City +Union Station Kansas City,"30 W Pershing Rd, Kansas City, MO 64108, USA",(816) 460-2000,http://www.unionstation.org/,39.0846332,-94.5850238,Kansas City +Jacob L. Loose Park,"5200 Wornall Rd, Kansas City, MO 64112, USA",(816) 513-7500,http://kcparks.org/park/loose-park/,39.0320522,-94.5945393,Kansas City +Kaw Point Park,"1403 Fairfax Trafficway, Kansas City, KS 66115, USA",(913) 677-2088,https://kawpointpark.org/,39.1165937,-94.6105429,Kansas City +Carriage rides at plaza,"459 Nichols Rd, Kansas City, MO 64112, USA",Unknown,Unknown,39.0412223,-94.5933917,Kansas City +Negro Leagues Baseball Museum,"1616 E 18th St, Kansas City, MO 64108, USA",(816) 221-1920,https://nlbm.com/,39.0913923,-94.5626542,Kansas City +The Ewing and Muriel Kauffman Memorial Garden,"4800 Rockhill Rd, Kansas City, MO 64110, USA",(816) 932-1200,Unknown,39.039705,-94.579205,Kansas City +Swope Park,"3999 Swope Pkwy &, 3999 E Meyer Blvd, Kansas City, MO 64132, USA",(816) 513-7500,http://kcparks.org/park/swope-park/,39.010724,-94.5322382,Kansas City +Landmark Park,"430 Landmark Dr, Dothan, AL 36303, USA",(334) 794-3452,https://www.landmarkparkdothan.com/,31.28914410000001,-85.3682011,Dothan +World's Smallest City Block,"201-209 N College St, Dothan, AL 36303, USA",(229) 308-4121,Unknown,31.2253738,-85.3892348,Dothan +Water World,"401 Recreation Rd, Dothan, AL 36303, USA",(334) 615-3750,http://www.waterworlddothan.com/,31.2374514,-85.4401895,Dothan +Dothan Area Botanical Gardens,"5130 Headland Ave, Dothan, AL 36303, USA",(334) 793-3224,http://dabg.com/,31.2960983,-85.3710029,Dothan +Wiregrass Museum of Art,"126 Museum Ave, Dothan, AL 36303, USA",(334) 794-3871,http://www.wiregrassmuseum.org/,31.2246191,-85.3887365,Dothan +G W Carver Interpretive Museum,"305 N Foster St, Dothan, AL 36303, USA",(334) 712-0933,http://www.gwcarvermuseum.com/,31.227214,-85.392934,Dothan +Adventureland Theme Park,"3738 W Main St, Dothan, AL 36305, USA",(334) 793-9100,http://www.adventurelandthemepark.com/,31.2336483,-85.44860829999999,Dothan +Escape Dothan,"3759 Ross Clark Cir, Dothan, AL 36303, USA",(334) 446-7135,https://www.escapedothan.com/,31.2535596,-85.4146821,Dothan +Big Hog,"Dothan, AL 36303, USA",Unknown,Unknown,31.22407469999999,-85.35990550000001,Dothan +San Luis Valley Museum | Alamosa,"401 Hunt Ave #2658, Alamosa, CO 81101, USA",(719) 587-0667,https://www.museumtrail.org/san-luis-valley-museum,37.4690897,-105.8639857,Alamosa +Cole Park,"First St, Alamosa, CO 81101, USA",(719) 589-2105,https://www.alamosa.org/,37.4731056,-105.8637924,Alamosa +Rio Grande Farm Park,"6935 CO-17, Alamosa, CO 81101, USA",(719) 937-2319,http://riograndefarmpark.org/,37.4739426,-105.8574731,Alamosa +Los Caminos Antiguos Scenic Byway: Alamosa Entrance,"6978-6800 CO-17, Alamosa, CO 81101, USA",Unknown,https://www.codot.gov/travel/colorado-byways/south-central/los-caminos,37.4742038,-105.8573872,Alamosa +Alamosa Archery Range,"Alamosa, CO 81101, USA",Unknown,Unknown,37.49138779999999,-105.8849057,Alamosa +Carroll Park,"Carroll St, Alamosa, CO 81101, USA",Unknown,https://www.alamosarec.org/Default.aspx?id=11,37.4835384,-105.8928883,Alamosa +Adak National Forest and Pet Cemetery,"Hillside Blvd, Adak, AK 99546, USA",Unknown,Unknown,51.9031542,-176.6221886,Adak Island +Bering Hill Viewpoint,"V8CG+FJ, Adak, AK, USA",Unknown,Unknown,51.87123099999999,-176.67339,Adak Island +Sea Otters Lookout,"WCX8+7F, Adak, AK, USA",Unknown,Unknown,51.9481876,-176.5837767,Adak Island +Aleutian Maritime Wildlife Refuge - Adak Office,"Finger Bay, Adak, AK 99546, USA",Unknown,Unknown,51.86969970000001,-176.6375077,Adak Island +Elfin Forest,"Adak, AK 99546, USA",Unknown,Unknown,51.9076732,-176.6147363,Adak Island +South Shore Nature Center,"130 Bayview Ave, East Islip, NY 11730, USA",(631) 581-6908,https://www.seatuck.org/index.php/nature-centers/south-shore-nature-center,40.717908,-73.192854,Islip +East Islip Marina Park,"333 Bayview Ave, East Islip, NY 11730, USA",Unknown,Unknown,40.7068805,-73.1902741,Islip +Brookwood Hall Park,"50 Irish Ln, Islip, NY 11751, USA",(631) 224-5411,Unknown,40.7334732,-73.20039450000002,Islip +Beaver Dam Park - Islip Owls,"200 Beech St, Islip, NY 11751, USA",Unknown,Unknown,40.75057209999999,-73.20040829999999,Islip +Suffolk County Environmental Center (Scully Estate),"550 S Bay Ave, Islip, NY 11751, USA",Unknown,https://seatuck.org/suffolk-county-environmental-center/,40.71594040000001,-73.2121385,Islip +Seatuck National Wildlife Refuge,"Islip, NY 11751, USA",(631) 286-0485,http://www.fws.gov/refuge/Seatuck/,40.7146467,-73.20834719999999,Islip +Heckscher State Park,"1 Heckscher State Parkway, East Islip, NY 11730, USA",(631) 581-2100,https://parks.ny.gov/parks/heckscher/details.aspx,40.7083126,-73.1654266,Islip +Islip Beach,"Islip, NY 11751, USA",(631) 224-5404,https://islipny.gov/news/press-releases/1252-islip-town-beaches-open-for-the-summer,40.7064753,-73.2137067,Islip +Islip Grange Park,"10 Broadway Ave, Sayville, NY 11782, USA",(631) 472-7016,Unknown,40.7514774,-73.0681604,Islip +Champlin Creek Nature Preserve,"50 Irish Ln, East Islip, NY 11730, USA",(631) 263-2439,Unknown,40.7346542,-73.1983537,Islip +Islip Veterans Memorial Park,"625 Montauk Hwy, West Islip, NY 11795, USA",Unknown,Unknown,40.729907,-73.2116695,Islip +Shipwreck Cove Spray Park,"S Clinton Ave, Bay Shore, NY 11706, USA",(631) 224-5404,https://islipny.gov/departments/parks-recreation-and-cultural-affairs,40.7111458,-73.2441132,Islip +Brookwood Hall,"50 Irish Ln, East Islip, NY 11730, USA",(631) 224-5411,https://www.townofislip-ny.gov/departments/parks-recreation-and-cultural-affairs,40.7333706,-73.1995302,Islip +Connetquot River State Park Preserve,"4090 Sunrise Hwy, Oakdale, NY 11769, USA",(631) 581-1005,https://parks.ny.gov/parks/8,40.7702798,-73.153697,Islip +Bayard Cutting Arboretum,"440 Montauk Hwy, Great River, NY 11739, USA",(631) 581-1002,https://bayardcuttingarboretum.com/,40.7355723,-73.16246269999999,Islip +Gardiner County Park,"Montauk Hwy, Bay Shore, NY 11706, USA",(631) 854-4949,Unknown,40.6978413,-73.27429169999999,Islip +All County Amusements,"201 Freeman Ave, Islip, NY 11751, USA",(631) 277-2481,https://allcountyamusement.com/,40.7536668,-73.21277429999999,Islip +Islip Art Museum,"50 Irish Ln, East Islip, NY 11730, USA",(631) 224-5402,http://www.islipartmuseum.org/,40.7346891,-73.1982829,Islip +The World's Littlest Skyscraper,"World's littlest skyscraper, 701 La Salle, Wichita Falls, TX 76301, USA",(940) 761-9955,http://www.wichitafallstx.gov/DocumentCenter/View/19745,33.9143842,-98.4897543,Wichita Falls +River Bend Nature Center,"2200 3rd St, Wichita Falls, TX 76301, USA",(940) 767-0843,http://www.riverbendnaturecenter.org/,33.9123153,-98.51334519999999,Wichita Falls +Museum of North Texas History,"720 Indiana Ave, Wichita Falls, TX 76301, USA",(940) 322-7628,https://www.museumofnorthtexashistory.org/,33.9128194,-98.4914167,Wichita Falls +Lucy Park,"100 Sunset Dr, Wichita Falls, TX 76302, USA",(940) 761-7490,https://www.wichitafallstx.gov/69/Lucy-Park,33.9173376,-98.5166069,Wichita Falls +Scotland Park,"1500 N 1st St, Wichita Falls, TX 76306, USA",(940) 761-7490,http://www.wichitafallstx.gov/726/Scotland-Park,33.9179766,-98.5097638,Wichita Falls +Kell House Museum,"900 Bluff St, Wichita Falls, TX 76301, USA",(940) 723-2712,https://kellhouseheritagecenter.org/,33.9073532,-98.49700159999999,Wichita Falls +Lake Wichita Park,"5205 Fairway Blvd, Wichita Falls, TX 76310, USA",(940) 761-7490,http://www.wichitafallstx.gov/index.aspx?NID=70,33.8474363,-98.5583676,Wichita Falls +Castaway Cove Waterpark,"1000 Central E Fwy, Wichita Falls, TX 76301, USA",(940) 322-5500,http://www.castawaycovewaterpark.com/,33.8875245,-98.4724078,Wichita Falls +Largest Shovel in Texas,"7001 US-281, Wichita Falls, TX 76310, USA",Unknown,Unknown,33.83877959999999,-98.48947179999999,Wichita Falls +Hamilton Park,"2901 Hamilton Blvd, Wichita Falls, TX 76308, USA",(940) 761-7491,http://www.wichitafallstx.gov/71/Hamilton-Park,33.8799269,-98.50859439999999,Wichita Falls +Wee-Chi-Tah Statue,"501-603 Wichita St, Wichita Falls, TX 76306, USA",Unknown,Unknown,33.9230686,-98.49571329999999,Wichita Falls +Lake Arrowhead State Park,"229 Park Rd 63, Wichita Falls, TX 76310, USA",(940) 528-2211,http://www.tpwd.state.tx.us/state-parks/parks/find-a-park/lake-arrowhead-state-park,33.7573708,-98.39055409999999,Wichita Falls +Ohio Bridge,"9 Bridge St, Wichita Falls, TX 76301, USA",Unknown,Unknown,33.9217403,-98.49593999999999,Wichita Falls +Wichita Falls Museum of Art,"2 Eureka Cir, Wichita Falls, TX 76308, USA",(940) 397-8900,https://wfma.msutexas.edu/,33.8689043,-98.5248723,Wichita Falls +Urban Air Trampoline and Adventure Park,"2505 Kemp Blvd, Wichita Falls, TX 76309, USA",(940) 222-6460,https://www.urbanair.com/texas-wichita-falls/,33.8877531,-98.52730129999999,Wichita Falls +CrashWorks STEAM Studio & Makerspace,"900 Indiana Ave, Wichita Falls, TX 76301, USA",(940) 264-7836,http://www.crashworkswf.com/,33.9112293,-98.49031219999999,Wichita Falls +Harold Jones Park,"1400-1512 9th St, Wichita Falls, TX 76301, USA",Unknown,https://www.wichitafallstx.gov/74/Other-Parks,33.906804,-98.49898429999999,Wichita Falls +Veterans memorial,"5205 Fairway Blvd, Wichita Falls, TX 76308, USA",Unknown,Unknown,33.838686,-98.55811159999999,Wichita Falls +Weeks Park,"2006 Southwest Pkwy, Wichita Falls, TX 76302, USA",(940) 761-7491,http://wichitafallstx.gov/73/Weeks-Park,33.8574809,-98.51853349999999,Wichita Falls +Sheppard AFB Heritage Center,"1133 Heritage Wy, Wichita Falls, TX 76306, USA",Unknown,Unknown,33.9849794,-98.5147344,Wichita Falls +Northern Maine Museum Of Science,"Folsom Hall, 181 Main St, Presque Isle, ME 04769, USA",(207) 768-9482,http://pages.umpi.edu/nmms/,46.67222690000001,-68.0171977,Presque Isle +Aroostook State Park,"87 State Park Rd, Presque Isle, ME 04769, USA",(207) 768-8341,https://www.maine.gov/dacf/parks/trail_activities/aroostook_trail_conditions.shtml,46.6155351,-68.0084378,Presque Isle +Solar System Model: Mercury,"US-1, Presque Isle, ME 04769, USA",Unknown,https://www.mainesolarsystem.com/,46.6676486,-68.011678,Presque Isle +Presque Isle Historical Society,"16 3rd St, Presque Isle, ME 04769, USA",(207) 762-1151,http://www.pihistory.org/,46.68294350000001,-68.01226969999999,Presque Isle +Solar System Model: Mars,"82 Houlton Rd, Presque Isle, ME 04769, USA",Unknown,https://www.mainesolarsystem.com/,46.6529155,-68.0042101,Presque Isle +Solar System Model: Venus,"3 Main St, Presque Isle, ME 04769, USA",Unknown,https://www.mainesolarsystem.com/,46.6637393,-68.0099077,Presque Isle +Nordic Heritage Center,"450 Fort Fairfield Rd, Presque Isle, ME 04769, USA",(207) 762-6972,https://nordicheritageoc.org/,46.7299693,-67.9296158,Presque Isle +Presque Isle air museum,"650 Airport Dr, Presque Isle, ME 04769, USA",Unknown,https://www.facebook.com/presqueisleairmuseum/,46.69220399999999,-68.0451724,Presque Isle +Presque Isle historical museum,"17 Church St, Presque Isle, ME 04769, USA",(207) 762-6500,http://pihistory.org/,46.6827478,-68.0141899,Presque Isle +San Luis Obispo Children's Museum,"1010 Nipomo St, San Luis Obispo, CA 93401, USA",(805) 544-5437,http://www.slocm.org/,35.2789885,-120.6661904,San Luis Obispo +Mission Plaza,"989 Chorro St, San Luis Obispo, CA 93401, USA",(805) 781-7067,https://www.slocity.org/Home/Components/FacilityDirectory/FacilityDirectory/12/2170,35.27983210000001,-120.6647509,San Luis Obispo +San Luis Obispo Railroad Museum,"1940 Santa Barbara Ave, San Luis Obispo, CA 93401, USA",(805) 548-1894,http://www.slorrm.com/,35.2733026,-120.6556732,San Luis Obispo +Fountain,"1023 Chorro St, San Luis Obispo, CA 93401, USA",Unknown,Unknown,35.28062540000001,-120.6636917,San Luis Obispo +The Dorn Pyramid,"2966 S Higuera St, San Luis Obispo, CA 93401, USA",Unknown,https://www.atlasobscura.com/places/the-dorn-pyramid-san-luis-obispo-california,35.2609486,-120.6706118,San Luis Obispo +San Luis Obispo Botanical Garden,"3450 Dairy Creek Rd, San Luis Obispo, CA 93405, USA",(805) 541-1400,http://slobg.org/,35.3302848,-120.7288794,San Luis Obispo +Portola Fountain,"San Luis Obispo, CA 93401, USA",Unknown,Unknown,35.2749512,-120.6692258,San Luis Obispo +The Iron Road Pioneers,"Railroad Avenue and, Osos St, San Luis Obispo, CA 93401, USA",Unknown,Unknown,35.279645,-120.6594568,San Luis Obispo +Cheng Park,"1095 Marsh St, San Luis Obispo, CA 93401, USA",(805) 781-7222,Unknown,35.280977,-120.6587498,San Luis Obispo +San Luis Obispo Museum of Art,"1010 Broad St, San Luis Obispo, CA 93401, USA",(805) 543-8562,https://sloma.org/,35.27959999999999,-120.665,San Luis Obispo +Jack House & Gardens,"536 Marsh St, San Luis Obispo, CA 93401, USA",(805) 781-7222,http://www.slocity.org/government/department-directory/parks-and-recreation/jack-house-and-gardens,35.2769845,-120.6662373,San Luis Obispo +Cuesta Canyon Park,"2400 Loomis St, San Luis Obispo, CA 93405, USA",(805) 781-5930,https://slocountyparks.com/day-use-parks/cuesta-park/,35.2937121,-120.6438838,San Luis Obispo +Santa Rosa Park,"1050 Oak St, San Luis Obispo, CA 93405, USA",(805) 781-7222,https://www.slocity.org/Home/Components/FacilityDirectory/FacilityDirectory/16/2173,35.2900576,-120.6641398,San Luis Obispo +Leaning Pine Arboretum,"San Luis Obispo, CA 93407, USA",(805) 756-2888,https://aeps.calpoly.edu/leaning-pine-arboretum,35.3102041,-120.6622303,San Luis Obispo +Mitchell Park,"1400 Osos St, San Luis Obispo, CA 93401, USA",(805) 781-7222,https://www.slocity.org/Home/Components/FacilityDirectory/FacilityDirectory/14/2173,35.2787418,-120.6579635,San Luis Obispo +Dallidet Adobe & Gardens,"1185 Pacific St, San Luis Obispo, CA 93401, USA",(805) 543-0638,http://www.dallidet.org/,35.2808982,-120.6565994,San Luis Obispo +Puzzle Effect Escape Rooms - San Luis Obispo,"583 Marsh St, San Luis Obispo, CA 93401, USA",(805) 250-4839,https://sanluisobispo.puzzleeffect.com/,35.2770417,-120.6653877,San Luis Obispo +Madonna Inn,"100 Madonna Rd, San Luis Obispo, CA 93405, USA",(805) 543-3000,http://www.madonnainn.com/,35.2674132,-120.6746599,San Luis Obispo +Meadow Park,"2251 Meadow St, San Luis Obispo, CA 93401, USA",(805) 781-7222,http://slocity.net/,35.2679374,-120.6594514,San Luis Obispo +Mission San Luis Obispo de Tolosa 1772,"751 Palm St, San Luis Obispo, CA 93401, USA",(805) 781-8220,https://www.missionsanluisobispo.org/,35.2809641,-120.6647577,San Luis Obispo +Carillon Historical Park,"1000 Carillon Blvd, Dayton, OH 45409, USA",(937) 293-2841,http://www.daytonhistory.org/,39.729197,-84.199902,Dayton +Boonshoft Museum of Discovery,"2600 Deweese Pkwy, Dayton, OH 45414, USA",(937) 275-7431,http://www.boonshoftmuseum.org/,39.7886347,-84.2019907,Dayton +Dayton Aviation Heritage National Historical Park,"16 S Williams St, Dayton, OH 45402, USA",(937) 225-7705,http://www.nps.gov/daav/contacts.htm,39.7557317,-84.21172,Dayton +The Dayton Art Institute,"456 Belmonte Park N, Dayton, OH 45405, USA",(937) 223-4278,http://www.daytonartinstitute.org/,39.7662644,-84.2017588,Dayton +National Museum of the US Air Force,"1100 Spaatz St, Dayton, OH 45433, USA",(937) 255-3286,http://www.nationalmuseum.af.mil/,39.7807961,-84.1093818,Dayton +America's Packard Museum,"420 S Ludlow St, Dayton, OH 45402, USA",(937) 226-1710,https://www.americaspackardmuseum.org/,39.7534718,-84.1917667,Dayton +Wright Cycle Company Shop,"22 S Williams St, Dayton, OH 45402, USA",(937) 225-7705,https://www.nps.gov/daav/planyourvisit/basicinfo.htm,39.7556111,-84.2118694,Dayton +The International Peace Museum,"10 N Ludlow St, Dayton, OH 45402, USA",(937) 227-3223,http://peace.museum/,39.7596547,-84.193297,Dayton +Sunwatch Indian Village,"2301 W River Rd, Dayton, OH 45417, USA",(937) 268-8199,https://boonshoft.org/sunwatch-2/,39.7163614,-84.2316749,Dayton +Wegerzyn Gardens MetroPark,"1301 E Siebenthaler Ave, Dayton, OH 45414, USA",(937) 275-7275,http://www.metroparks.org/places-to-go/wegerzyn-gardens/,39.8044385,-84.2040052,Dayton +St Anne's Hill,"817 McLain St, Dayton, OH 45403, USA",(937) 716-0163,http://www.stanneshill.org/,39.7569555,-84.1721187,Dayton +National Aviation Hall Of Fame,"1100 Spaatz St, Dayton, OH 45433, USA",(937) 256-0944,https://www.nationalaviation.org/,39.78120090000001,-84.1097997,Dayton +Montgomery County Water Tower,"1407 Glenn Abbey Dr, Dayton, OH 45420, USA",Unknown,Unknown,39.7110519,-84.14171979999999,Dayton +Five Rivers MetroParks,"409 E Monument Ave, Dayton, OH 45402, USA",(937) 275-7275,https://www.metroparks.org/,39.7652231,-84.1861555,Dayton +RiverScape MetroPark,"237 E Monument Ave, Dayton, OH 45402, USA",(937) 274-0126,http://www.metroparks.org/places-to-go/riverscape/,39.7648331,-84.18876689999999,Dayton +Huffman Prairie Flying Field Interpretive Center,"2380 Memorial Rd, Wright-Patterson AFB, OH 45433, USA",(937) 425-0008,http://www.nps.gov/daav,39.79390949999999,-84.08845819999999,Dayton +Deeds Point MetroPark,"510 Webster St, Dayton, OH 45402, USA",(937) 275-7275,http://www.metroparks.org/places-to-go/deeds-point/,39.76997249999999,-84.1855862,Dayton +Holbrooke Plaza,"Dayton, OH 45402, USA",Unknown,Unknown,39.7620684,-84.20509299999999,Dayton +Frankenstein's Castle,"Hills and Dales MetroPark, S Patterson Blvd, Kettering, OH 45419, USA",Unknown,https://www.metroparks.org/places-to-go/hills-dales/,39.7096816,-84.18025639999999,Dayton +Eastwood MetroPark,"1385 Harshman Rd, Dayton, OH 45431, USA",(937) 275-7275,http://www.metroparks.org/places-to-go/eastwood/,39.78754,-84.122551,Dayton +Howard Coffin Park,"1402 Sonny Miller Way, Brunswick, GA 31520, USA",(912) 267-5566,https://www.glynncounty.org/153/Recreation-and-Parks,31.1516089,-81.4797315,Brunswick +Pinball Palace,"3303 Hopkins Ave, Brunswick, GA 31520, USA",(912) 265-9275,http://www.thepinballpalace.com/,31.1697287,-81.47570669999999,Brunswick +Mary Ross Waterfront Park,"10 F St, Brunswick, GA 31520, USA",(912) 279-2600,https://discoverbrunswick.com/top-attractions/,31.149389,-81.49813999999999,Brunswick +Lover's Oak,"828 Albany St, Brunswick, GA 31520, USA",Unknown,http://www.goldenisles.com/listing/lovers-oak,31.1423304,-81.4865265,Brunswick +Selden Park,"100 Genoa Martin Dr, Brunswick, GA 31520, USA",(912) 279-2800,http://glynncounty.org/,31.1739137,-81.50546419999999,Brunswick +Paulk Park,"3600 Wylly Ave, Brunswick, GA 31520, USA",(912) 264-4455,Unknown,31.1802462,-81.4963724,Brunswick +Earth Day Nature Trail,"4 Conservation Way, Brunswick, GA 31520, USA",(912) 264-7218,http://www.goldenisles.com/listing/earth-day-nature-trail,31.124866,-81.477774,Brunswick +Richland Rum - Brunswick,"1406 Newcastle St, Brunswick, GA 31520, USA",(229) 887-3537,http://www.richlandrum.com/,31.148038,-81.494765,Brunswick +Blythe Island Regional Park,"6616 Blythe Island Hwy, Brunswick, GA 31523, USA",(912) 279-2812,http://www.glynncounty.org/index.aspx?NID=176,31.155897,-81.542942,Brunswick +Golden Isles Convention & Visitors Bureau,"529 Beachview Dr, St Simons Island, GA 31522, USA",(912) 638-9014,http://www.goldenisles.com/,31.13550499999999,-81.394712,Brunswick +Queen Square,"Brunswick, GA 31520, USA",Unknown,https://www.signaturesquares.org/,31.1465166,-81.4946001,Brunswick +St. Simons Island Lighthouse Museum,"610 Beachview Dr, St Simons Island, GA 31522, USA",(912) 638-4666,https://www.coastalgeorgiahistory.org/visit/st-simons-lighthouse-museum/,31.1340516,-81.3934662,Brunswick +Hofwyl-Broadfield Plantation,"5556 Hwy 17, Brunswick, GA 31525, USA",(912) 264-7333,https://gastateparks.org/HofwylBroadfieldPlantation,31.30503760000001,-81.46002109999999,Brunswick +Massengale Park,"1350 Ocean Blvd, St Simons Island, GA 31522, USA",Unknown,http://www.exploregeorgia.org/listing/11952-massengale-park,31.1410854,-81.37791969999999,Brunswick +The Historic Ritz Theatre,"1530 Newcastle St, Brunswick, GA 31520, USA",(912) 262-6934,http://www.goldenislesarts.org/,31.1502778,-81.4955556,Brunswick +FLIPZONE TRAMPOLINE AND FUN PARK,"4404 Altama Ave, Brunswick, GA 31520, USA",(912) 456-5115,http://www.flipzonega.com/,31.1915507,-81.484707,Brunswick +Dixie Trail,"6616 Blythe Island Hwy, Brunswick, GA 31523, USA",Unknown,Unknown,31.1572671,-81.5432823,Brunswick +Summer Waves Water Park,"210 S Riverview Dr, Jekyll Island, GA 31527, USA",(912) 635-2074,http://summerwaves.com/,31.0376643,-81.42075229999999,Brunswick +Fort Smith National Historic Site,"301 Parker Ave, Fort Smith, AR 72901, USA",(479) 783-3961,http://www.nps.gov/fosm/index.htm,35.388139,-94.4299163,Fort Smith +Parrot Island Waterpark,"7300 S Zero St, Fort Smith, AR 72903, USA",(479) 788-6550,http://www.parrotislandwaterpark.com/,35.3247482,-94.351715,Fort Smith +Fort Smith Museum of History,"320 Rogers Ave, Fort Smith, AR 72901, USA",(479) 783-7841,http://www.fortsmithmuseum.org/,35.387614,-94.42833,Fort Smith +Miss Laura's Visitor Center,"2 N B St, Fort Smith, AR 72901, USA",(800) 637-1477,https://www.misslaurasvc.com/,35.3920583,-94.42915939999999,Fort Smith +Fort Smith Trolley Museum,"100 S 4th St, Fort Smith, AR 72901, USA",(479) 783-0205,http://www.fstm.org/,35.38549680000001,-94.4302072,Fort Smith +Park at West End,"115 Garrison Ave, Fort Smith, AR 72901, USA",(479) 784-2368,Unknown,35.3904845,-94.42885020000001,Fort Smith +Fort Smith Regional Art Museum,"1601 Rogers Ave, Fort Smith, AR 72901, USA",(479) 784-2787,https://fsram.org/,35.3814597,-94.4154387,Fort Smith +Flower Tower,"Wells Lake Rd, Fort Smith, AR 72916, USA",Unknown,Unknown,35.3135171,-94.3323619,Fort Smith +AGFC Janet Huckabee Arkansas River Valley Nature Center,"8300 Wells Lake Rd, Fort Smith, AR 72916, USA",(501) 710-6285,https://www.agfc.com/en/explore-outdoors/nature-centers/jharvnc/,35.3027669,-94.3359083,Fort Smith +Chaffee Crossing Historic District,"7313 Terry St, Fort Smith, AR 72916, USA",(479) 452-4554,http://www.chaffeecrossing.com/,35.3102254,-94.3035878,Fort Smith +Massard Prairie Battlefield Park,"4999 Morgans Way, Fort Smith, AR 72916, USA",(479) 784-2368,https://www.fortsmith.org/massard-prairie-battlefield-park/,35.3121296,-94.3821437,Fort Smith +Cisterna Park,"1001 Garrison Ave, Fort Smith, AR 72901, USA",(479) 274-1013,Unknown,35.3848217,-94.4212745,Fort Smith +Clayton House,"514 N 6th St, Fort Smith, AR 72901, USA",(479) 783-3000,http://claytonhouse.org/,35.3913387,-94.4207866,Fort Smith +Ruth Armstrong Nature Area,"Fort Smith, AR 72901, USA",(479) 784-2368,Unknown,35.373774,-94.3986813,Fort Smith +Belle Grove Historic District,"804 N C St, Fort Smith, AR 72901, USA",(479) 783-3000,http://claytonhouse.org/,35.3914382,-94.4215849,Fort Smith +Creekmore Park,"3301 S M St, Fort Smith, AR 72903, USA",(479) 784-2368,http://fortsmithparks.com/parks/community-parks/creekmore/,35.370936,-94.39825139999999,Fort Smith +Harry E. Kelley River Park,"121 Riverfront Dr, Fort Smith, AR 72901, USA",(479) 784-2368,http://fortsmithparks.com/parks/river-front-parks/riverfront-amphitheater/,35.3939938,-94.4287942,Fort Smith +Chaffee Barbershop Museum,"7313 Terry St Bldg. #803, Fort Smith, AR 72916, USA",(479) 452-4554,http://www.chaffeecrossing.com/amenitiesrecreation/museums,35.3112702,-94.3018645,Fort Smith +Ben Geren Regional Park,"7200 Zero St, Fort Smith, AR 72903, USA",(479) 646-2444,https://sebastiancountyar.gov/,35.3222776,-94.35442669999999,Fort Smith +Fort Smith National Cemetery,"522 Garland Ave, Fort Smith, AR 72901, USA",(479) 783-5345,https://www.cem.va.gov/cems/nchp/ftsmith.asp,35.384086,-94.429307,Fort Smith +East Chop Lighthouse,"229 E Chop Dr, Vineyard Haven, MA 02568, USA",(508) 627-4441,http://www.mvmuseum.org/,41.47026220000001,-70.5674306,Martha's Vineyard +Edgartown Harbor Lighthouse,"121 N Water St, Edgartown, MA 02539, USA",(508) 627-4441,https://mvmuseum.org/visit/edgartown/,41.3908631,-70.5030427,Martha's Vineyard +Martha's Vineyard Museum,"151 Lagoon Pond Rd, Vineyard Haven, MA 02568, USA",(508) 627-4441,http://www.mvmuseum.org/,41.4492993,-70.59976089999999,Martha's Vineyard +Aquinnah Cliffs Overlook,"31 Aquinnah Cir, Aquinnah, MA 02535, USA",Unknown,Unknown,41.3473128,-70.8370166,Martha's Vineyard +Pirate Adventures Martha's Vineyard,"12 Circuit Avenue Extension, Oak Bluffs, MA 02557, USA",(508) 687-2739,http://www.mvpirates.com/,41.45811659999999,-70.55833249999999,Martha's Vineyard +The Carnegie | Vineyard Preservation Trust,"58 N Water St, Edgartown, MA 02539, USA",(774) 549-9107,http://www.vineyardtrust.org/,41.3904192,-70.5112164,Martha's Vineyard +Gay Head Light,"15 Aquinnah Cir, Aquinnah, MA 02535, USA",(508) 693-1039,http://gayheadlight.org/,41.3483447,-70.83453039999999,Martha's Vineyard +Ocean Park,"2 Seaview Ave, Oak Bluffs, MA 02557, USA",Unknown,Unknown,41.45561929999999,-70.555887,Martha's Vineyard +Jaws Bridge,"267-125 Seaview Ave, Edgartown, MA 02539, USA",Unknown,Unknown,41.41609810000001,-70.5487443,Martha's Vineyard +Vincent House Museum,"99 Main St, Edgartown, MA 02539, USA",(508) 627-8017,https://vineyardtrust.org/property/vincent-house-gardens/,41.3911692,-70.5153339,Martha's Vineyard +Wasque Point Wildlife Management Area,"11 Dike Rd, Edgartown, MA 02539, USA",Unknown,Unknown,41.3622238,-70.45034849999999,Martha's Vineyard +Joseph Sylvia State Beach,"267-125 Seaview Ave, Edgartown, MA 02539, USA",(508) 627-6145,Unknown,41.4219361,-70.5515408,Martha's Vineyard +Flying Horses Carousel a Vineyard Preservation Trust Property,"15 Lake Ave, Oak Bluffs, MA 02557, USA",(508) 693-9481,https://vineyardtrust.org/property/flying-horses-carousel/,41.45741069999999,-70.5571307,Martha's Vineyard +Mytoi Japanese Garden,"41 Dike Rd, Edgartown, MA 02539, USA",(508) 627-7689,http://www.thetrustees.org/places-to-visit/cape-cod-islands/mytoi.html,41.375902,-70.458383,Martha's Vineyard +Lighthouse Beach,"230 N Water St, Edgartown, MA 02539, USA",(508) 627-6145,Unknown,41.391331,-70.5035463,Martha's Vineyard +Mass Audubon's Felix Neck Wildlife Sanctuary,"100 Felix Neck Dr, Edgartown, MA 02539, USA",(508) 627-4850,http://massaudubon.org/felixneck,41.413565,-70.563565,Martha's Vineyard +Edgartown Lighthouse,"Edgartown, MA 02539, USA",Unknown,Unknown,41.3909689,-70.5030689,Martha's Vineyard +Long Point Wildlife Refuge,"Scrubby Neck Rd, Vineyard Haven, MA 02568, USA",(508) 693-7392,http://www.thetrustees.org/places-to-visit/cape-cod-islands/long-point.html,41.3676368,-70.624095,Martha's Vineyard +Edgartown Memorial Wharf,"50 Dock St, Edgartown, MA 02539, USA",Unknown,Unknown,41.38916529999999,-70.51004329999999,Martha's Vineyard +The Overton House,"Narragansett Ave, Oak Bluffs, MA 02557, USA",Unknown,Unknown,41.4534251,-70.5543816,Martha's Vineyard +Washington Park,"4033 SW Canyon Rd, Portland, OR 97221, USA",(503) 319-0999,http://explorewashingtonpark.org/,45.51517560000001,-122.7104903,Portland +Pittock Mansion,"3229 NW Pittock Dr, Portland, OR 97210, USA",(503) 823-3623,http://pittockmansion.org/,45.5252061,-122.7162689,Portland +Portland Japanese Garden,"611 SW Kingston Ave, Portland, OR 97205, USA",(503) 223-1321,https://japanesegarden.org/,45.5188634,-122.7080354,Portland +Portland Art Museum,"1219 SW Park Ave, Portland, OR 97205, USA",(503) 226-2811,https://portlandartmuseum.org/,45.51614999999999,-122.683357,Portland +International Rose Test Garden,"400 SW Kingston Ave, Portland, OR 97205, USA",(503) 823-3636,https://www.portlandoregon.gov/parks/finder/index.cfm?action=viewpark&propertyid=1113,45.51895239999999,-122.7052686,Portland +Haunted Underground Shanghai Tunnels Tour,"226 NW Davis St, Portland, OR 97209, USA",(503) 622-4798,http://www.portlandtunnels.com/,45.5243779,-122.6730043,Portland +The Grotto,"8840 NE Skidmore St, Portland, OR 97220, USA",(503) 254-7371,http://www.thegrotto.org/,45.5532151,-122.5735354,Portland +OMSI,"1945 SE Water Ave, Portland, OR 97214, USA",(503) 797-4000,https://omsi.edu/,45.5083931,-122.6660355,Portland +Oregon Zoo,"4001 SW Canyon Rd, Portland, OR 97221, USA",(503) 226-1561,http://www.oregonzoo.org/?utm_source=google-gmb-maps&utm_medium=gmb-website-button&utm_campaign=locl.io&utm_content=093c59cc-81f8-430c-a54b-2f222231412d,45.5093572,-122.714291,Portland +Lan Su Chinese Garden,"239 NW Everett St, Portland, OR 97209, USA",(503) 228-8131,https://lansugarden.org/,45.5256321,-122.6729955,Portland +The Wishing Tree,"2954 NE 7th Ave, Portland, OR 97212, USA",Unknown,https://m.facebook.com/pages/The-Wishing-Tree/290167554473421,45.54452129999999,-122.6584834,Portland +Hoyt Arboretum,"4000 SW Fairview Blvd, Portland, OR 97221, USA",(503) 865-8733,http://www.hoytarboretum.org/,45.5162616,-122.7152124,Portland +The Freakybuttrue Peculiarium and Museum,"2234 NW Thurman St, Portland, OR 97210, USA",(503) 227-3164,http://www.peculiarium.com/,45.53543029999999,-122.6975904,Portland +Forest Park,"Portland, OR 97231, USA",(503) 823-4492,https://www.portlandoregon.gov/parks/finder/index.cfm?action=ViewPark&PropertyID=127,45.5709848,-122.7683495,Portland +Crystal Springs Rhododendron Garden,"5801 SE 28th Ave, Portland, OR 97202, USA",(503) 267-7509,https://www.crystalspringsgardenpdx.org/,45.4799247,-122.6355177,Portland +Witch's Castle,"Lower Macleay Trail, Portland, OR 97210, USA",(503) 823-4000,https://www.portlandoregon.gov/,45.5283626,-122.7250661,Portland +Oaks Amusement Park,"7805 SE Oaks Park Way, Portland, OR 97202, USA",(503) 233-5777,http://oakspark.com/,45.472652,-122.6613775,Portland +Pittock Mansion Park Viewpoint,"3229 NW Pittock Dr, Portland, OR 97210, USA",Unknown,https://www.portland.gov/parks/pittock-mansion,45.525277,-122.7169258,Portland +Mt Tabor Park,"SE 60th Ave &, SE Salmon St, Portland, OR 97215, USA",(503) 823-7529,https://www.portland.gov/parks/mt-tabor-park,45.51125489999999,-122.5958201,Portland +Council Crest Park,"1120 SW Council Crest Dr, Portland, OR 97239, USA",(503) 823-7529,http://www.portlandoregon.gov/parks/finder/index.cfm?&propertyid=24&action=viewpark,45.4986189,-122.7079089,Portland +Dr Pepper Museum,"300 S 5th St, Waco, TX 76701, USA",(254) 757-1024,http://www.drpeppermuseum.com/,31.5551583,-97.1295999,Waco +Cameron Park Zoo,"1701 N 4th St, Waco, TX 76707, USA",(254) 750-8400,http://www.cameronparkzoo.com/,31.5701472,-97.1445667,Waco +Texas Ranger Hall of Fame & Museum,"100 Texas Ranger Trail, Waco, TX 76706, USA",(254) 750-8631,http://www.texasranger.org/,31.5555471,-97.11871819999999,Waco +Mayborn Museum Complex,"1300 S University Parks Dr, Waco, TX 76706, USA",(254) 710-1110,https://www.baylor.edu/mayborn/,31.5518639,-97.11499200000002,Waco +Waco Mammoth National Monument,"6220 Steinbeck Bend Dr, Waco, TX 76708, USA",(254) 750-7946,https://www.nps.gov/waco/index.htm,31.6067336,-97.1758392,Waco +Waco Suspension Bridge,"101 N University Parks Dr, Waco, TX 76701, USA",(254) 750-5980,http://www.waco-texas.com/,31.5612041,-97.1271447,Waco +East Terrace Museum,"100 Mill St, Waco, TX 76704, USA",(254) 753-5166,http://www.historicwaco.org/,31.56748209999999,-97.1342396,Waco +Waco Sculpture Zoo,"407 N University Parks Dr, Waco, TX 76701, USA",Unknown,Unknown,31.562098,-97.1308615,Waco +Jacob's Ladder,"2500 Cameron Park Dr, Waco, TX 76708, USA",(254) 750-8080,Unknown,31.5772222,-97.1488158,Waco +Cameron Park,"2601 N University Parks Dr, Waco, TX 76708, USA",(254) 750-5980,https://www.waco-texas.com/Departments/Parks-Recreation/Cameron-Park,31.5836578,-97.1562575,Waco +Hueco Pedicab Tours,"811 Webster Ave, Waco, TX 76706, USA",(469) 763-2032,Unknown,31.5510142,-97.13107199999999,Waco +Hawaiian Falls Waco,"900 Lake Shore Dr, Waco, TX 76708, USA",(254) 892-0222,https://hfalls.com/waco.php,31.5949646,-97.1648846,Waco +Miss Nellie's Pretty Place,"2602 N University Parks Dr, Waco, TX 76708, USA",(254) 750-5980,https://topbrunchspots.com/attractions/miss-nellies-pretty-place-waco-texas/,31.5767692,-97.15075159999999,Waco +Lee Lockwood Library and Museum,"2801 W Waco Dr, Waco, TX 76707, USA",(254) 754-3942,http://leelockwood.org/,31.5407652,-97.15631979999999,Waco +Martin Museum of Art,"60 Baylor Ave, Waco, TX 76706, USA",(254) 710-6371,http://www.baylor.edu/martinmuseum/,31.55010079999999,-97.1147283,Waco +Darwin The Gorilla,"3429 Austin Ave, Waco, TX 76710, USA",Unknown,Unknown,31.5324729,-97.1596641,Waco +Amazing Brazos River Adventure,"1001 S M.L.K. Jr Blvd, Waco, TX 76704, USA",Unknown,Unknown,31.5581759,-97.1149837,Waco +Lake Waco Wetlands,"1752 Eichelberger Crossing Road., China Spring, TX 76633, USA",(254) 848-9654,https://www.waco-texas.com/Departments/Water-Utility-Services/Lake-Waco-Wetlands,31.6063682,-97.30170969999999,Waco +Texas Sports Hall of Fame,"1108 S University Parks Dr, Waco, TX 76706, USA",(254) 756-1633,http://www.tshof.org/,31.552843,-97.117887,Waco +City of Waco Brazos Park East,"3516 N M.L.K. Jr Blvd, Waco, TX 76702, USA",(254) 750-5980,http://www.waco-texas.com/parks,31.5843496,-97.1517178,Waco +Top of The Rock,"30 Rockefeller Plaza, New York, NY 10112, USA",(212) 698-2000,https://www.rockefellercenter.com/attractions/top-of-the-rock-observation-deck/,40.75934950000001,-73.9794087,New York +Rockefeller Center,"45 Rockefeller Plaza, New York, NY 10111, USA",(212) 588-8601,https://www.rockefellercenter.com/,40.7587402,-73.9786736,New York +Times Square,"Manhattan, NY 10036, USA",Unknown,https://www.timessquarenyc.org/,40.7579747,-73.9855426,New York +One World Observatory,"117 West St, New York, NY 10007, USA",(844) 696-1776,https://oneworldobservatory.com/,40.7130062,-74.013173,New York +Statue of Liberty,"New York, NY 10004, USA",(212) 363-3200,https://www.nps.gov/stli/index.htm,40.6892494,-74.04450039999999,New York +The High Line,"New York, NY 10011, USA",(212) 500-6035,https://www.thehighline.org/,40.7479925,-74.0047649,New York +Brooklyn Bridge,"New York, NY 10038, USA",Unknown,https://www.nyc.gov/html/dot/html/infrastructure/brooklyn-bridge.shtml,40.7060855,-73.9968643,New York +Flatiron Building,"175 5th Ave, New York, NY 10010, USA",Unknown,Unknown,40.7410605,-73.9896986,New York +RiseNY,"160 W 45th St, New York, NY 10036, USA",(718) 701-4998,https://riseny.co/,40.75762069999999,-73.98517609999999,New York +The Channel Gardens,"New York, NY 10020, USA",Unknown,https://www.rockefellercenter.com/attractions/the-channel-gardens/,40.7585013,-73.97808700000002,New York +The Battery,"Battery Park City, New York, NY 10004, USA",(212) 344-3491,https://www.thebattery.org/,40.70293119999999,-74.0153603,New York +Central Park,"New York, NY, USA",(212) 310-6600,https://www.centralparknyc.org/,40.7825547,-73.9655834,New York +The Ride NYC,"W 42nd St, New York, NY 10036, USA",(212) 221-0853,http://www.experiencetheride.com/,40.75720949999999,-73.98933099999999,New York +Tenement Museum,"103 Orchard St, New York, NY 10002, USA",(877) 975-3786,https://www.tenement.org/,40.71881799999999,-73.9900876,New York +Empire State Building,"20 W 34th St., New York, NY 10001, USA",(212) 736-3100,https://www.esbnyc.com/,40.7484405,-73.98566439999999,New York +Radio City Music Hall,"1260 6th Ave, New York, NY 10020, USA",(212) 465-6000,https://www.msg.com/radio-city-music-hall,40.75997599999999,-73.9799772,New York +Pier 46 at Hudson River Park,"Hudson River Greenway, New York, NY 10014, USA",(212) 627-2020,http://hudsonriverpark.org/,40.7341889,-74.011265,New York +Tiffany Street Clock,"200 5th Ave, New York, NY 10010, USA",Unknown,Unknown,40.74198140000001,-73.9893778,New York +South Street Seaport Museum,"12 Fulton St, New York, NY 10038, USA",(212) 748-8600,http://southstreetseaportmuseum.org/,40.70649789999999,-74.0036463,New York +Bryant Park,"New York, NY 10018, USA",(212) 768-4242,https://bryantpark.org/,40.7535965,-73.9832326,New York +Center of Science and Industry (COSI),"333 W Broad St, Columbus, OH 43215, USA",(614) 228-2674,https://cosi.org/,39.9598362,-83.0070197,Columbus +Franklin Park Conservatory and Botanical Gardens,"1777 E Broad St, Columbus, OH 43203, USA",(614) 715-8000,http://fpconservatory.org/,39.9645689,-82.9552693,Columbus +Columbus Museum of Art,"480 E Broad St, Columbus, OH 43215, USA",(614) 221-6801,http://www.columbusmuseum.org/,39.9642074,-82.98789719999999,Columbus +Columbus Zoo and Aquarium,"4850 W Powell Rd, Powell, OH 43065, USA",(614) 645-3400,https://www.columbuszoo.org/,40.1562089,-83.1173498,Columbus +Topiary Park,"480 E Town St, Columbus, OH 43215, USA",(614) 645-0197,https://www.columbus.gov/recreationandparks/parks/Topiary-Garden-(Deaf-School-Park)/,39.96110039999999,-82.9875742,Columbus +LEGOLAND Discovery Center Columbus,"157 Easton Town Ctr, Columbus, OH 43219, USA",(614) 407-7721,http://columbus.legolanddiscoverycenter.com/,40.05128759999999,-82.9158451,Columbus +Ohio Statehouse,"1 Capitol Sq, Columbus, OH 43215, USA",(614) 752-9777,http://www.ohiostatehouse.org/,39.96133,-82.99911469999999,Columbus +Kelton House Museum & Garden,"586 E Town St, Columbus, OH 43215, USA",(614) 464-2022,http://www.keltonhouse.com/,39.96081809999999,-82.9843102,Columbus +Columbus Park of Roses,"3901 N High St, Columbus, OH 43214, USA",(614) 645-3391,http://www.parkofroses.org/,40.04355690000001,-83.0267477,Columbus +ZipZone Outdoor Adventures,"7925 N High St, Columbus, OH 43235, USA",(614) 847-9477,https://zipzonetours.com/,40.1254616,-83.0165336,Columbus +John F. Wolfe Columbus Commons,"160 S High St, Columbus, OH 43215, USA",(614) 545-4701,http://columbuscommons.org/,39.9590967,-82.9988101,Columbus +Zoombezi Bay,"4850 Powell Rd, Powell, OH 43065, USA",(614) 645-3400,http://www.zoombezibay.com/,40.153597,-83.119104,Columbus +Thurber House,"77 Jefferson Ave, Columbus, OH 43215, USA",(614) 464-1032,https://www.thurberhouse.org/,39.9657832,-82.985242,Columbus +Ohio History Center,"800 E 17th Ave, Columbus, OH 43211, USA",(614) 297-2300,https://www.ohiohistory.org/visit/ohio-history-center/,40.0048317,-82.9873667,Columbus +Discovery Park,"275 E Broad St, Columbus, OH 43215, USA",Unknown,Unknown,39.9626791,-82.9940769,Columbus +Columbus Love Mural,"220 E Main St, Columbus, OH 43215, USA",Unknown,https://www.nkdsgn.com/cbuslovemural,39.956996,-82.9937867,Columbus +Bicentennial Park,"233 S Civic Center Dr, Columbus, OH 43215, USA",(614) 645-3800,http://www.sciotomile.com/parks/bicentennial-park/,39.9563318,-83.0040559,Columbus +Goodale Park,"120 W Goodale St, Columbus, OH 43215, USA",(614) 645-3300,http://goodalepark.org/,39.9752105,-83.0067753,Columbus +Gambrinus: King of Beer,"Columbus, OH 43215, USA",Unknown,Unknown,39.94957969999999,-83.00015499999999,Columbus +Scioto Mile Promenade,"233 S Civic Center Dr, Columbus, OH 43215, USA",(614) 645-3335,http://www.sciotomile.com/parks/the-promenade/,39.9600883,-83.0028554,Columbus +Busch Gardens Tampa Bay,"10165 McKinley Dr, Tampa, FL 33612, USA",(813) 884-4386,https://buschgardens.com/tampa?utm_source=google&utm_medium=organic&utm_campaign=gbp_listing,28.037066,-82.4194607,Tampa +Adventure Island,"10001 McKinley Dr, Tampa, FL 33612, USA",(813) 884-4386,https://adventureisland.com/?utm_source=google&utm_medium=organic&utm_campaign=gbp_listing,28.0417018,-82.4130318,Tampa +The Florida Aquarium,"701 Channelside Dr, Tampa, FL 33602, USA",(813) 273-4000,https://www.flaquarium.org/,27.943972,-82.44487470000001,Tampa +Henry B. Plant Museum,"401 W Kennedy Blvd, Tampa, FL 33606, USA",(813) 254-1891,http://www.plantmuseum.com/,27.9463553,-82.4640404,Tampa +Museum of Science & Industry,"4801 E Fowler Ave, Tampa, FL 33617, USA",(813) 987-6000,http://www.mosi.org/,28.0531223,-82.40449749999999,Tampa +Tampa Bay History Center,"801 Water St, Tampa, FL 33602, USA",(813) 228-0097,https://tampabayhistorycenter.org/,27.9423647,-82.4498608,Tampa +Glazer Children's Museum,"110 W Gasparilla Plaza, Tampa, FL 33602, USA",(813) 443-3861,http://www.glazermuseum.org/,27.949577,-82.461494,Tampa +ZooTampa at Lowry Park,"1101 W Sligh Ave, Tampa, FL 33604, USA",(813) 935-8552,https://zootampa.org/,28.0138361,-82.4699672,Tampa +Tampa Museum of Art,"120 W Gasparilla Plaza, Tampa, FL 33602, USA",(813) 274-8130,https://tampamuseum.org/,27.9495237,-82.4629933,Tampa +Sulphur Springs Water Tower,"455-479 E Bird St, Tampa, FL 33604, USA",(813) 458-3605,http://tampagov.net/,28.02138859999999,-82.4589025,Tampa +Congo River Rapids,"10165 McKinley Dr, Tampa, FL 33612, USA",(813) 884-4386,https://buschgardens.com/tampa/rides/congo-river-rapids/,28.0399821,-82.4238733,Tampa +MacDill Park on the Riverwalk,"100 N Ashley Dr, Tampa, FL 33602, USA",(813) 274-8615,https://www.tampa.gov/parks-and-recreation,27.9452783,-82.4587869,Tampa +Falcon's Fury,"3000 E Busch Blvd, Tampa, FL 33612, USA",(813) 884-4386,https://buschgardens.com/tampa/rides/falcons-fury/,28.0376443,-82.42275149999999,Tampa +Tampa History Center Dock #3,"PWT3 - History Center/Amalie, Arena, Tampa, FL 33602, USA",Unknown,Unknown,27.9419228,-82.4497251,Tampa +Tampa Theatre,"711 N Franklin St, Tampa, FL 33602, USA",(813) 274-8981,http://www.tampatheatre.org/,27.9503523,-82.4589293,Tampa +Ybor City Museum State Park,"1818 E 9th Ave, Tampa, FL 33605, USA",(813) 247-6323,https://www.floridastateparks.org/parks-and-trails/ybor-city-museum-state-park,27.96196359999999,-82.43866849999999,Tampa +Ballast Point Park,"5300 Interbay Blvd, Tampa, FL 33611, USA",(813) 274-8615,https://www.tampa.gov/parks-and-recreation/featured-parks/ballast-point,27.8889874,-82.4812381,Tampa +USF Botanical Gardens,"12210 USF Pine Drive, Tampa, FL 33612, USA",(813) 974-2329,http://gardens.usf.edu/,28.0577333,-82.423799,Tampa +Curtis Hixon Waterfront Park,"600 N Ashley Dr, Tampa, FL 33602, USA",(813) 274-8615,http://www.tampagov.net/parks-and-recreation,27.9489169,-82.4616494,Tampa +Riverwalk Tampa Florida,"100 E Madison St, Tampa, FL 33602, USA",Unknown,Unknown,27.94755809999999,-82.4615577,Tampa +The Dallas World Aquarium,"1801 N Griffin St, Dallas, TX 75202, USA",(214) 720-2224,https://www.dwazoo.com/,32.7834737,-96.805358,Dallas +The Sixth Floor Museum at Dealey Plaza,"411 Elm St, Dallas, TX 75202, USA",(214) 747-6660,https://www.jfk.org/,32.7798188,-96.8084842,Dallas +Reunion Tower,"300 Reunion Blvd E, Dallas, TX 75207, USA",(214) 296-9950,http://www.reuniontower.com/,32.7755056,-96.80885669999999,Dallas +Dallas Museum of Art,"1717 N Harwood St, Dallas, TX 75201, USA",(214) 922-1200,https://www.dma.org/,32.7876959,-96.8010444,Dallas +The Dallas Arboretum and Botanical Garden,"8525 Garland Rd, Dallas, TX 75218, USA",(214) 515-6615,https://www.dallasarboretum.org/,32.8236184,-96.71662359999999,Dallas +Dallas Zoo,"650 S R.L. Thornton Fwy, Dallas, TX 75203, USA",(469) 554-7501,https://www.dallaszoo.com/,32.7409696,-96.81532,Dallas +Klyde Warren Park,"2012 Woodall Rodgers Fwy, Dallas, TX 75201, USA",(214) 716-4500,http://klydewarrenpark.org/,32.7893644,-96.8016184,Dallas +Old City Park,"1515 S Harwood St, Dallas, TX 75215, USA",(214) 421-5141,http://www.oldcityparkdallas.org/,32.77275279999999,-96.78654399999999,Dallas +Pioneer Plaza,"1428 Young St, Dallas, TX 75202, USA",Unknown,http://www.dallasparks.org/Facilities/Facility/Details/Pioneer-Plaza-624,32.7766323,-96.80119859999999,Dallas +Perot Museum of Nature and Science,"2201 N Field St, Dallas, TX 75201, USA",(214) 428-5555,https://www.perotmuseum.org/,32.7869429,-96.80658439999999,Dallas +Nasher Sculpture Center,"2001 Flora St, Dallas, TX 75201, USA",(214) 242-5100,http://www.nashersculpturecenter.org/,32.7881824,-96.8001567,Dallas +Giant Eyeball,"1601 Main St, Dallas, TX 75201, USA",Unknown,https://artandseek.org/2021/03/18/why-is-there-a-giant-eyeball-in-downtown-dallas-we-take-a-look/,32.781406,-96.7983119,Dallas +Dealey Plaza,"Dallas, TX 75202, USA",(214) 670-4100,http://www.dallasparks.org/Facilities/Facility/Details/Dealey-Plaza-462,32.7788184,-96.8082993,Dallas +John F. Kennedy Memorial Plaza,"646 Main St, Dallas, TX 75202, USA",(214) 747-6660,https://www.jfk.org/john-f-kennedy-memorial-plaza/,32.7787249,-96.8064507,Dallas +African American Museum of Dallas,"3536 Grand Ave, Dallas, TX 75210, USA",(214) 565-9026,http://www.aamdallas.org/,32.7790574,-96.7644136,Dallas +Frontiers of Flight Museum,"6911 Lemmon Ave, Dallas, TX 75209, USA",(214) 350-3600,http://www.flightmuseum.com/,32.84260200000001,-96.835202,Dallas +White Rock Lake Park,"8300 E Lawther Dr, Dallas, TX 75218, USA",(214) 660-1100,http://www.whiterocklake.org/,32.8365139,-96.7216119,Dallas +Leonhardt Lagoon Nature Walk,"1121 1st Ave, Dallas, TX 75210, USA",(214) 426-3400,https://eventseeker.com/venue/1132302-leonhardt-lagoon-dallas-tx,32.7778302,-96.761946,Dallas +George W. Bush Presidential Center,"2943 SMU Boulevard, Dallas, TX 75205, USA",(214) 200-4300,http://www.bushcenter.org/,32.84118300000001,-96.778198,Dallas +Trinity Forest Adventure Park,"1800 Dowdy Ferry Rd, Dallas, TX 75217, USA",(214) 391-1000,http://trinitytreetops.com/,32.6898099,-96.6757659,Dallas +Museum of Discovery,"500 President Clinton Ave, Little Rock, AR 72201, USA",(501) 396-7050,http://www.museumofdiscovery.org/,34.74752229999999,-92.26463559999999,Little Rock +Little Rock Zoo,"1 Zoo Dr, Little Rock, AR 72205, USA",(501) 661-7200,http://www.littlerockzoo.com/,34.7470271,-92.3301901,Little Rock +Old State House Museum,"300 W Markham St, Little Rock, AR 72201, USA",(501) 324-9685,http://www.oldstatehouse.com/,34.7490498,-92.27259269999999,Little Rock +Little Rock Central High School National Historic Site,"2120 W Daisy L Gatson Bates Dr, Little Rock, AR 72202, USA",(501) 374-1957,http://www.nps.gov/chsc/index.htm,34.7380293,-92.2974572,Little Rock +Arkansas Inland Maritime Museum,"120 Riverfront Park Dr, North Little Rock, AR 72114, USA",(501) 371-8320,https://nlr.ar.gov/departments/parks-and-recreation/arkansas-inland-maritime-museum/,34.75227900000001,-92.267067,Little Rock +Esse Purse Museum & Store,"1510 Main St, Little Rock, AR 72202, USA",(501) 916-9022,http://essepursemuseum.com/,34.73398289999999,-92.2733658,Little Rock +Julius Breckling Riverfront Park,"400 President Clinton Ave, Little Rock, AR 72201, USA",(501) 371-4770,Unknown,34.74840929999999,-92.26691199999999,Little Rock +Historic Arkansas Museum,"200 E 3rd St, Little Rock, AR 72201, USA",(501) 324-9351,http://www.historicarkansas.org/,34.7460543,-92.2690532,Little Rock +AGFC Witt Stephens Jr. Central Arkansas Nature Center,"602 President Clinton Ave, Little Rock, AR 72201, USA",(501) 251-1083,https://www.agfc.com/en/explore-outdoors/nature-centers/wsjcanc/,34.7479751,-92.26411929999999,Little Rock +MacArthur Museum of Arkansas Military History,"503 E 9th St, Little Rock, AR 72202, USA",(501) 376-4602,https://www.littlerock.gov/macarthur,34.7383187,-92.2652979,Little Rock +Mosaic Templars Cultural Center,"501 W 9th St, Little Rock, AR 72201, USA",(501) 683-3593,https://www.arkansasheritage.com/mosaic-templars-cultural-center/mtcc-home,34.7407324,-92.2769908,Little Rock +The Old Mill,"3800 Lakeshore Dr, North Little Rock, AR 72116, USA",(501) 791-8538,Unknown,34.7917,-92.2494,Little Rock +William J. Clinton Library and Museum,"1200 President Clinton Ave, Little Rock, AR 72201, USA",(501) 370-8000,https://www.clintonpresidentialcenter.org/,34.7464097,-92.2583824,Little Rock +Central High Museum,"2120 W Daisy L Gatson Bates Dr, Little Rock, AR 72202, USA",(501) 374-1957,https://www.nps.gov/chsc/index.htm,34.738033,-92.2974622,Little Rock +ARKANSAS CIVIL RIGHTS HERITAGE TRAIL,"300 W Markham St, Little Rock, AR 72201, USA",Unknown,https://civilrightstrail.com/attraction/arkansas-civil-rights-heritage-trail/,34.7490353,-92.2726184,Little Rock +“City Dreamers” Mural,"6th St. and, S Spring St, Little Rock, AR 72201, USA",Unknown,http://joelboydfineart.com/,34.7434161,-92.2748384,Little Rock +Rock Town Distillery,"1201 Main St, Little Rock, AR 72202, USA",(501) 907-5244,http://www.rocktowndistillery.com/,34.73699300000001,-92.27208619999999,Little Rock +H.U. Lee International Gate and Garden,"101 E Markham St, Little Rock, AR 72201, USA",(501) 376-4781,http://www.grandmasterhulee.com/gate-and-garden/,34.74847889999999,-92.2694331,Little Rock +Lorax Tree Carving,"2324 Rock St, Little Rock, AR 72206, USA",Unknown,Unknown,34.7259061,-92.27030479999999,Little Rock +Wildwood Park for the Arts,"20919 Denny Rd, Little Rock, AR 72223, USA",(501) 821-7275,http://www.wildwoodpark.org/,34.7746528,-92.4936182,Little Rock +Kona Cloud Forest Sanctuary,"73-1865 Hao St, Kailua-Kona, HI 96740, USA",(808) 491-2369,http://www.konacloudforest.com/,19.7065195,-155.9481795,Kona +Kaloko-Honokōhau National Historical Park,"Kailua-Kona, HI 96740, USA",(808) 326-9057,http://www.nps.gov/kaho/contacts.htm,19.6778522,-156.0216868,Kona +Kailua Pier,"Kaahumanu Pl, Kailua-Kona, HI 96740, USA",Unknown,http://kailuapier.com/,19.6393742,-155.9969544,Kona +Hulihe‘e Palace,"75-5718 Ali'i Drive, Kailua-Kona, HI 96740, USA",(808) 329-1877,https://daughtersofhawaii.org/hulihee-palace/,19.6393337,-155.9943522,Kona +Botanical World Kona,"75-5744 Ali‘i Dr #118, Kailua-Kona, HI 96740, USA",(808) 963-5427,http://botanicalworld.com/,19.6375706,-155.9932915,Kona +Old Kona Airport State Recreation Area,"75-5560 Kuakini Hwy, Kailua-Kona, HI 96740, USA",(808) 323-4322,Unknown,19.6423449,-156.0077153,Kona +Niumalu Beach / Kailua Bay,"75 Ali‘i Dr, Kailua-Kona, HI 96740, USA",Unknown,Unknown,19.639654,-155.994879,Kona +Pāhoehoe Beach Park,"77-6434 Ali‘i Dr, Kailua-Kona, HI 96740, USA",Unknown,Unknown,19.5960702,-155.9732178,Kona +Kikaua Point Park,"Kailua-Kona, HI 96740, USA",Unknown,Unknown,19.8183043,-155.9995297,Kona +Magic Sands Beach Park,"Ali'i Drive, Kailua-Kona, HI 96740, USA",Unknown,Unknown,19.5943328,-155.9718466,Kona +Hale Halawai Park,"75-5760 Ali‘i Dr, Kailua-Kona, HI 96740, USA",(808) 327-3565,Unknown,19.636737,-155.9926468,Kona +Kahalu’u Beach Park,"Ali‘i Dr, Kailua-Kona, HI 96740, USA",(808) 961-8311,http://www.hawaiicounty.gov/parks-and-recreation/,19.5792662,-155.9666712,Kona +Kona Farmers Market,"75-5767 Ali‘i Dr, Kailua-Kona, HI 96740, USA",Unknown,Unknown,19.6370647,-155.9918398,Kona +Ironman finish line,"755669 Ali‘i Dr, Kailua-Kona, HI 96740, USA",Unknown,Unknown,19.6400749,-155.9965638,Kona +Wawaloli Beach Park,"73-188 Makako Bay Dr, Kailua-Kona, HI 96740, USA",(808) 323-4322,Unknown,19.7164819,-156.0499846,Kona +Kiholo Bay,"71-1890 Queen Ka'ahumanu Hwy, Kailua-Kona, HI 96740, USA",(808) 961-9540,http://dlnr.hawaii.gov/dar/fishing/fishing-regulations/regulated-areas/regulated-fishing-areas-on-hawaii/#kiholo-bay,19.8563675,-155.9217446,Kona +Maka'eo Walking Path,"755560 Kuakini Hwy, Kailua-Kona, HI 96740, USA",Unknown,http://friendsforfitness.org/,19.6455061,-156.0120897,Kona +Kuemanu Heiau,"78-6676 Ali‘i Dr, Kailua-Kona, HI 96740, USA",Unknown,Unknown,19.581412,-155.9669193,Kona +Keauhou-Kahalu'u Heritage Corridor,"Kailua-Kona, HI 96740, USA",Unknown,Unknown,19.5691008,-155.9623942,Kona +Veterans Memorial Park,"WV-98, Clarksburg, WV 26301, USA",(304) 624-1655,http://cityparksofclarksburg.com/,39.2726382,-80.3650759,Clarksburg +Clarksburg History Museum,"445 W Main St #251, Clarksburg, WV 26301, USA",Unknown,http://clarksburghistorymuseum.com/,39.27983220000001,-80.3420214,Clarksburg +Clarksburg City Park,"1 Clarksburg Park Way, Nutter Fort, WV 26301, USA",(304) 624-1655,https://cityparksofclarksburg.com/welcome,39.2570943,-80.3203073,Clarksburg +Clarksburg Splash Zone,"Veteran's Memorial Park, WV-98, Clarksburg, WV 26301, USA",(304) 624-1671,http://www.cityparksofclarksburg.com/,39.2737416,-80.3659665,Clarksburg +Harrison County Community Garden,"518 Monticello Ave, Clarksburg, WV 26301, USA",Unknown,Unknown,39.2727549,-80.33617540000002,Clarksburg +WV Movie Museum,"400 W Pike St, Clarksburg, WV 26301, USA",(304) 627-1157,http://wvmoviemuseum.blogspot.com/,39.2840237,-80.3419177,Clarksburg +Clarksburg Visitors Bureau,"215 S 3rd St #101, Clarksburg, WV 26301, USA",(304) 622-2157,https://comehometoclarksburg.com/,39.2786496,-80.33901709999999,Clarksburg +White Oaks Park,"Bridgeport, WV 26330, USA",Unknown,Unknown,39.3323483,-80.2366006,Clarksburg +Clarksburg Downtown Historic District,"130 N 4th St, Clarksburg, WV 26301, USA",Unknown,Unknown,39.2810973,-80.3402839,Clarksburg +Robinson Grand Performing Arts Center,"444 W Pike St, Clarksburg, WV 26301, USA",(304) 624-1500,https://therobinsongrand.com/,39.2812486,-80.3421224,Clarksburg +San Angelo State Park,"362 FM 2288, San Angelo, TX 76901, USA",(325) 949-4757,http://www.tpwd.state.tx.us/state-parks/parks/find-a-park/san-angelo-state-park,31.4638985,-100.5080343,San Angelo +San Angelo Museum of Fine Arts,"423 S Oakes St, San Angelo, TX 76903, USA",(325) 653-3333,http://www.samfa.org/,31.4574091,-100.4322436,San Angelo +Fort Concho National Historic Landmark,"630 S Oakes St, San Angelo, TX 76903, USA",(325) 481-2646,https://fortconcho.com/,31.4547729,-100.4312343,San Angelo +Concho Riverwalk,"24 W Concho Ave, San Angelo, TX 76903, USA",(325) 655-2345,https://www.downtownsanangelo.com/riverwalk,31.4586909,-100.4348643,San Angelo +International Waterlily Collection,"2 S Park St, San Angelo, TX 76901, USA",(832) 274-3377,http://www.internationalwaterlilycollection.com/,31.459059,-100.4515359,San Angelo +Miss Hattie's Bordello Museum,"18 E Concho Ave, San Angelo, TX 76903, USA",(325) 653-0112,http://misshatties.com/,31.46041919999999,-100.4349051,San Angelo +Railway Museum of San Angelo,"703 S Chadbourne St, San Angelo, TX 76903, USA",(325) 486-2140,http://sanangelorailway.org/,31.453665,-100.4351625,San Angelo +River Walk,"332 S Oakes St, San Angelo, TX 76903, USA",(325) 481-2727,https://www.cosatx.us/departments-services/parks-recreation/the-bosque,31.4591103,-100.4331382,San Angelo +The Bosque along the Concho River,"330 S Irving St, San Angelo, TX 76903, USA",(325) 657-4450,http://www.cosatx.us/bosque,31.4582187,-100.4356585,San Angelo +Concho Riverwalk,"301 W Beauregard Ave, San Angelo, TX 76903, USA",(325) 481-2727,http://www.cosatx.us/Bosque,31.4603787,-100.4425251,San Angelo +San Angelo's first Historical Mural,"643 S Chadbourne St, San Angelo, TX 76903, USA",(325) 653-0112,http://historicmuralsofsanangelo.org/chadbourne.html,31.45450669999999,-100.4346722,San Angelo +"San Angelo State Park, South Entrance","San Angelo, TX 76901, USA",(325) 949-8935,https://tpwd.texas.gov/state-parks/san-angelo,31.4577593,-100.5150591,San Angelo +San Angelo CX,"San Angelo, TX 76901, USA",Unknown,Unknown,31.4715785,-100.5043315,San Angelo +Think In A Box - Escape Room,"Happy to open any day or time, 123 E Concho Ave, San Angelo, TX 76903, USA",(325) 650-1755,https://www.thinkinaboxtx.com/,31.4604492,-100.4330139,San Angelo +Angelo State University Planetarium,"2333 Vanderventer Ave, San Angelo, TX 76904, USA",(325) 942-2136,http://www.angelo.edu/dept/physics/planetarium.php,31.4410511,-100.46135,San Angelo +Producers Park,"67 North Schroeder Avenue, San Angelo, TX 76905, USA",(325) 657-4279,http://www.cosatx.us/Home/Components/FacilityDirectory/FacilityDirectory/56/524?npage=2,31.48023899999999,-100.4088168,San Angelo +Heritage Park of San Angelo,"36 E Twohig Ave, San Angelo, TX 76903, USA",(325) 655-6565,https://www.heritageparksanangelo.com/contact-us,31.4619617,-100.4346952,San Angelo +Historic Murals of San Angelo,"18 E Concho Ave, San Angelo, TX 76903, USA",(325) 653-0112,https://www.historicmuralsofsanangelo.org/,31.4604599,-100.4349806,San Angelo +Mountainview Park,"3031 Freeland Ave, San Angelo, TX 76901, USA",Unknown,Unknown,31.45139560000001,-100.4795231,San Angelo +Middle Concho Park,"Middle Concho Dr, San Angelo, TX 76904, USA",(325) 657-4279,http://www.cosatx.us/Home/Components/FacilityDirectory/FacilityDirectory/30/555,31.3795136,-100.5199553,San Angelo +Saginaw Children's Zoo,"1730 S Washington Ave, Saginaw, MI 48601, USA",(989) 759-1408,http://www.saginawzoo.com/,43.4119852,-83.9519201,Saginaw +Mid-Michigan Children's Museum,"315 W Genesee Ave, Saginaw, MI 48602, USA",(989) 399-6626,https://www.michildrensmuseum.org/,43.43442820000001,-83.9465601,Saginaw +Castle Museum of Saginaw County History,"500 Federal Ave, Saginaw, MI 48607, USA",(989) 752-2861,http://www.castlemuseum.org/,43.4309825,-83.935565,Saginaw +Saginaw Art Museum,"1126 N Michigan Ave, Saginaw, MI 48602, USA",(989) 754-2491,http://www.saginawartmuseum.org/,43.4240348,-83.9536293,Saginaw +Japanese Cultural Center,"527 Ezra Rust Dr, Saginaw, MI 48601, USA",(989) 759-1648,http://www.japaneseculturalcenter.org/,43.4135401,-83.95455009999999,Saginaw +Saginaw Diamond Railroad Crossing,"215 Kiss St, Saginaw, MI 48604, USA",Unknown,Unknown,43.4443831,-83.94429219999999,Saginaw +Saginaw Railway Museum,"900 Maple St, Saginaw, MI 48602, USA",(989) 790-7994,http://www.saginawrailwaymuseum.org/,43.4075762,-83.9849547,Saginaw +Hoyt Park,"S Washington Ave, Saginaw, MI 48601, USA",(989) 399-1311,Unknown,43.4144045,-83.9496179,Saginaw +Zilwaukee Riverfront Park,"100 E Johnson St, Saginaw, MI 48604, USA",(989) 755-0931,http://www.zilwaukeemichigan.gov/community/parks-recreation/,43.4795159,-83.9149205,Saginaw +Shiawassee National Wildlife Refuge,"6975 Mower Rd, Saginaw, MI 48601, USA",(989) 777-5930,http://www.fws.gov/refuge/shiawassee/,43.33766749999999,-84.0273168,Saginaw +Downtown Aquarium,"410 Bagby St, Houston, TX 77002, USA",(713) 223-3474,http://www.aquariumrestaurants.com/downtownaquariumhouston/,29.7642703,-95.36737920000002,Houston +Space Center Houston,"1601 E NASA Pkwy, Houston, TX 77058, USA",(281) 244-2100,https://www.spacecenter.org/,29.551832,-95.0981044,Houston +Water Wall,"2800 Post Oak Blvd, Houston, TX 77056, USA",(713) 850-8841,https://uptown-houston.com/experience/parks/waterwall-park/,29.7357404,-95.46131539999999,Houston +Houston Museum of Natural Science,"5555 Hermann Park Dr, Houston, TX 77030, USA",(713) 639-4629,https://www.hmns.org/,29.7220625,-95.3895625,Houston +Houston Zoo,"6200 Hermann Park Dr, Houston, TX 77030, USA",(713) 533-6500,https://www.houstonzoo.org/,29.71578129999999,-95.39032069999999,Houston +Hermann Park,"6001 Fannin St, Houston, TX 77030, USA",(713) 526-2183,https://www.hermannpark.org/,29.7135284,-95.3899524,Houston +Houston Arboretum & Nature Center,"4501 Woodway Dr, Houston, TX 77024, USA",(713) 681-8433,http://www.houstonarboretum.org/,29.7652236,-95.45207049999999,Houston +"Bayou Bend Collection and Gardens, Museum of Fine Arts, Houston","6003 Memorial Dr, Houston, TX 77007, USA",(713) 639-7750,http://www.mfah.org/visit/bayou-bend-collection-and-gardens/,29.7606593,-95.42169270000001,Houston +Market Square Park,"301 Milam St, Houston, TX 77002, USA",(713) 650-3022,http://marketsquarepark.com/,29.7626451,-95.36236079999999,Houston +Discovery Green,"1500 McKinney St, Houston, TX 77010, USA",(713) 400-7336,http://www.discoverygreen.com/,29.7532402,-95.35991229999999,Houston +Smither Park,"2441 Munger St, Houston, TX 77023, USA",(713) 926-6368,http://orangeshow.org/,29.7167608,-95.3246374,Houston +Sam Houston Park,"1000 Bagby St, Houston, TX 77002, USA",(832) 394-8805,https://www.houstontx.gov/abouthouston/samhoustonpark.html,29.7601375,-95.3716402,Houston +Holocaust Museum Houston,"5401 Caroline St, Houston, TX 77004, USA",(713) 942-8000,https://hmh.org/,29.7252479,-95.38568730000001,Houston +Houston Legendary Graffiti Building,"2011 Leeland St, Houston, TX 77003, USA",(409) 245-3778,https://instagram.com/gofa_dagusto1k?utm_source=qr&igshid=MzNlNGNkZWQ4Mg%3D%3D,29.7473046,-95.35936,Houston +Gerald D. Hines Waterwall Park,"2800 Post Oak Blvd, Houston, TX 77056, USA",(713) 850-8841,http://www.uptown-houston.com/news/page/water-wall-park,29.7359479,-95.4613024,Houston +American Statesmanship Park,"1400 Elder St, Houston, TX 77007, USA",(713) 344-6568,https://www.waymarking.com/waymarks/WMNHPK_Mount_Rush_Hour_Houston_TX,29.7713213,-95.36692579999999,Houston +Children's Museum Houston,"1500 Binz St, Houston, TX 77004, USA",(713) 522-1138,https://www.cmhouston.org/?utm_source=google&utm_medium=organic&utm_campaign=gmbhouston,29.7229313,-95.385289,Houston +Pioneer Memorial Obelisk,"6001 Fannin St, Houston, TX 77030, USA",Unknown,http://www.hermannpark.org/poi/44/,29.7186327,-95.3909288,Houston +"The Museum of Fine Arts, Houston","1001 Bissonnet St, Houston, TX 77005, USA",(713) 639-7300,https://www.mfah.org/,29.7256229,-95.3905328,Houston +Beer Can House,"222 Malone St, Houston, TX 77007, USA",(713) 926-6368,https://www.full.orangeshow.org/beer-can-house,29.763759,-95.41910329999999,Houston +Glensheen Mansion,"3300 London Rd, Duluth, MN 55804, USA",(888) 454-4536,http://glensheen.org/,46.815161,-92.051791,Duluth +Aerial Lift Bridge,"601 S Lake Ave, Duluth, MN 55802, USA",Unknown,https://www.dot.state.mn.us/historicbridges/L6116.html,46.77901139999999,-92.09291999999999,Duluth +Leif Erikson Park,"1301 London Rd, Duluth, MN 55805, USA",(218) 730-4300,http://www.duluthmn.gov/parks/parks-listing/leif-erikson-park/,46.7960171,-92.08296659999999,Duluth +Lake Superior Railroad Museum,"506 W Michigan St, Duluth, MN 55802, USA",(218) 727-8025,http://www.lsrm.org/,46.7810639,-92.1041611,Duluth +William A Irvin Museum,"350 Harbor Dr, Duluth, MN 55802, USA",(218) 722-7876,http://decc.org/william-a-irvin/,46.78277899999999,-92.0972228,Duluth +Lake Superior Maritime Visitor Center,"600 Canal Park Dr, Duluth, MN 55802, USA",(218) 788-6430,https://www.lsmma.com/content.aspx?page_id=22&club_id=605134&module_id=308439,46.779847,-92.09246399999999,Duluth +Enger Park,"1601 Enger Tower Dr, Duluth, MN 55806, USA",(405) 314-5693,http://www.duluthmn.gov/parks/parks-listing/enger-park/,46.77578880000001,-92.1241707,Duluth +The St. Louis County Depot,"506 W Michigan St, Duluth, MN 55802, USA",(218) 733-7571,http://www.experiencethedepot.org/,46.7811,-92.1039528,Duluth +Gichi-ode' Akiing,"N 2nd Ave E & East Michigan Street, Duluth, MN 55802, USA",(218) 730-4300,http://www.duluthmn.gov/parks/parks-listing/lake-place-park/,46.7890125,-92.0937993,Duluth +Hartley Nature Center,"3001 Woodland Ave, Duluth, MN 55803, USA",(218) 724-6735,http://hartleynature.org/,46.8385303,-92.0829445,Duluth +Bayfront Festival Park,"350 Harbor Dr, Duluth, MN 55802, USA",(218) 722-5573,http://bayfrontfestivalpark.com/,46.7773348,-92.10215889999999,Duluth +The CRIBS (Uncle Harvey's Mausoleum),"The Lake Walk, Duluth, MN 55802, USA",Unknown,https://www.atlasobscura.com/places/uncle-harveys-mausoleum,46.7845678,-92.0920592,Duluth +Kitchi Gammi Park,"7030 Congdon Blvd, Duluth, MN 55804, USA",(218) 730-4305,https://duluthmn.gov/parks/parks-listing/brighton-beach-park-kitchi-gammi/,46.842482,-91.9943856,Duluth +Duluth Children's Museum,"2125 W Superior St, Duluth, MN 55806, USA",(218) 733-7543,http://www.playduluth.org/,46.7663731,-92.1255398,Duluth +The Duluth Lakewalk,"The Lakewalk, Duluth, MN 55802, USA",Unknown,https://www.friendsofthelakewalk.org/,46.7802213,-92.0914878,Duluth +Lake Superior Zoo,"7210 Fremont St, Duluth, MN 55807, USA",(218) 730-4500,http://lszooduluth.org/,46.725798,-92.190494,Duluth +Duluth Diamond Railroad Crossing,"Rice's Point, Duluth, MN 55802, USA",Unknown,Unknown,46.7700013,-92.1144142,Duluth +Great Lakes Aquarium,"353 Harbor Dr, Duluth, MN 55802, USA",(218) 740-3474,http://www.glaquarium.org/,46.7789955,-92.1000213,Duluth +Spirit Mountain Recreation Area,"9500 Spirit Mountain Pl, Duluth, MN 55810, USA",(218) 628-2891,http://www.spiritmt.com/,46.71826839999999,-92.2167365,Duluth +Duluth Rose Garden,"15 S 13th Ave E, Duluth, MN 55802, USA",(218) 730-4300,http://www.duluthmn.gov/parks/parks-listing/rose-garden/,46.7982032,-92.0807614,Duluth +Brauer Museum of Art,"1709 Chapel Dr, Valparaiso, IN 46383, USA",(219) 464-5365,http://www.valpo.edu/artmuseum/,41.46395870000001,-87.039985,Valparaiso +Forest Park,"564 Harrison Blvd, Valparaiso, IN 46385, USA",(219) 462-5114,http://valpoparks.org/,41.47938310000001,-87.0696068,Valparaiso +Rogers-Lakewood Park,"5320 N Campbell St, Valparaiso, IN 46383, USA",(219) 462-1959,http://www.ci.valparaiso.in.us/633/Rogers-Lakewood-Park,41.5166258,-87.06591790000002,Valparaiso +Butterfly Meadows & Caterpillar Crossing,"3210 N Campbell St, Valparaiso, IN 46385, USA",(219) 462-5144,https://www.valpoparks.org/facilities/facility/details/Butterfly-Meadows-Caterpillar-Crossing-8,41.498283,-87.06381809999999,Valparaiso +Ogden Gardens Park,"451 Harrison Blvd, Valparaiso, IN 46385, USA",Unknown,http://valpoparks.org/,41.4795418,-87.06646760000001,Valparaiso +Central Park Plaza,"68 Lafayette St, Valparaiso, IN 46383, USA",(219) 548-4888,http://www.centralparkplazavalpo.com/,41.46729999999999,-87.0619,Valparaiso +Lakewood Park - Gertsmeyer Bridge,"5100-5298 N Meridian Rd, Valparaiso, IN 46383, USA",(219) 462-5144,http://www.ci.valparaiso.in.us/,41.51540600000001,-87.06467599999999,Valparaiso +Gabis Arboretum at Purdue Northwest,"450 W 100 N, Valparaiso, IN 46385, USA",(219) 462-0025,https://www.pnw.edu/gabis-arboretum/,41.44776830000001,-87.15275969999999,Valparaiso +contact — World of Ugly,"1150 West Lincolnway Valparaiso Center Township, Valparaiso, IN 46383, USA",(312) 898-0226,Unknown,41.4711132,-87.0739208,Valparaiso +Valpo Parks,"3210 N Campbell St, Valparaiso, IN 46385, USA",(219) 462-5144,http://www.valpoparks.org/,41.497149,-87.063636,Valparaiso +Glenrose Park North - ValPLAYso,"1400 E Glendale Blvd, Valparaiso, IN 46383, USA",(219) 462-5144,http://www.valpoparks.org/,41.48494329999999,-87.04347399999999,Valparaiso +Meadowbrook Nature Preserve,"109 W 700 N, Valparaiso, IN 46385, USA",(219) 242-8558,http://www.heinzetrust.org/meadowbrook,41.5359895,-87.0872842,Valparaiso +Bicentennial Park,"175 Burlington Beach Rd, Valparaiso, IN 46383, USA",Unknown,http://www.ci.valparaiso.in.us/607/Bicentennial-Park,41.5072009,-87.06381189999999,Valparaiso +Chapel of the Resurrection,"Valparaiso, IN 46383, USA",(219) 464-5000,https://www.valpo.edu/chapel/,41.46313610000001,-87.0418139,Valparaiso +Center Township Diamond Railroad Crossing #1,"356 N 250 W, Valparaiso, IN 46385, USA",Unknown,Unknown,41.4882155,-87.1164225,Valparaiso +Zao Island,"1050 Horse Prairie Ave, Valparaiso, IN 46385, USA",(219) 462-1194,http://www.zaoisland.net/,41.4585022,-87.0676757,Valparaiso +Sunset Hill Farm County Park,"775 Meridian Rd #8507, Valparaiso, IN 46383, USA",(219) 465-3586,https://www.portercountyparks.org/sunset-hill,41.5456429,-87.0636321,Valparaiso +Porter County Museum,"20 Indiana Ave, Valparaiso, IN 46383, USA",(219) 510-1836,http://pocomuse.org/,41.46660379999999,-87.0599672,Valparaiso +Urschel field,"Valparaiso st&Vale, Park Road, Valparaiso, IN 46383, USA",Unknown,Unknown,41.4904087,-87.046261,Valparaiso +Valparaiso Amphitheatre,"63 Lafayette St, Valparaiso, IN 46383, USA",Unknown,Unknown,41.466985,-87.0618992,Valparaiso +Phoenix Zoo,"455 N Galvin Pkwy, Phoenix, AZ 85008, USA",(602) 286-3800,https://www.phoenixzoo.org/,33.45003740000001,-111.9470063,Phoenix +Heard Museum,"2301 N Central Ave, Phoenix, AZ 85004, USA",(602) 252-8840,https://heard.org/,33.4725814,-112.0722331,Phoenix +Desert Botanical Garden,"1201 N Galvin Pkwy, Phoenix, AZ 85008, USA",(480) 941-1225,https://www.dbg.org/,33.4616795,-111.944926,Phoenix +Phoenix Art Museum,"1625 N Central Ave, Phoenix, AZ 85004, USA",(602) 257-1880,https://phxart.org/,33.4670863,-112.0727721,Phoenix +Enchanted Island Amusement Park,"1202 W Encanto Blvd, Phoenix, AZ 85007, USA",(602) 254-1200,http://www.enchantedisland.com/,33.474739,-112.088152,Phoenix +Hole in the Rock,"625 N Galvin Pkwy, Phoenix, AZ 85008, USA",(602) 495-5458,https://www.phoenix.gov/parks/trails/locations/papago-park,33.4564869,-111.9452606,Phoenix +The Japanese Friendship Garden of Phoenix,"1125 N 3rd Ave, Phoenix, AZ 85003, USA",(602) 274-8700,http://www.japanesefriendshipgarden.org/?utm_source=google&utm_medium=wix_google_business_profile&utm_campaign=1646036250481864746,33.4609597,-112.0765703,Phoenix +Arizona Capitol Museum,"1700 W Washington St, Phoenix, AZ 85007, USA",(602) 926-3620,https://www.azlibrary.gov/azcm,33.4480967,-112.0970236,Phoenix +Papago Park,"625 N Galvin Pkwy, Phoenix, AZ 85008, USA",(602) 495-5458,https://www.phoenix.gov/parks/trails/locations/papago-park,33.4536315,-111.948693,Phoenix +Musical Instrument Museum,"4725 E Mayo Blvd, Phoenix, AZ 85050, USA",(480) 478-6000,https://mim.org/,33.6679904,-111.9782969,Phoenix +Heritage & Science Park/Historic Heritage Square,"113 N 6th St, Phoenix, AZ 85004, USA",(602) 258-0048,https://heritagesquarephx.org/,33.450207,-112.0659142,Phoenix +Dobbins Lookout,"Phoenix, AZ 85042, USA",Unknown,https://www.phoenix.gov/parks/trails/locations/south-mountain,33.3454505,-112.0585719,Phoenix +Arizona Falls,"5802 E Indian School Rd, Phoenix, AZ 85018, USA",(602) 236-8888,https://www.srpnet.com/water/canals/azfalls.aspx,33.4899045,-111.9587094,Phoenix +Arizona Science Center,"600 E Washington St, Phoenix, AZ 85004, USA",(602) 716-2000,https://azscience.org/,33.4485282,-112.0662095,Phoenix +Children’s Museum of Phoenix,"215 N 7th St, Phoenix, AZ 85034, USA",(602) 253-0501,http://www.childrensmuseumofphoenix.org/,33.4504029,-112.0645824,Phoenix +Phoenix Bat Cave,"3698-3694 E Colter St, Phoenix, AZ 85018, USA",Unknown,Unknown,33.5145059,-112.0012821,Phoenix +South Mountain Park and Preserve,"10919 S Central Ave, Phoenix, AZ 85042, USA",(602) 495-5458,http://phoenix.gov/parks/trails/locations/south/index.html,33.34033679999999,-112.0609473,Phoenix +Hall of Flame Fire Museum,"6101 E Van Buren St, Phoenix, AZ 85008, USA",(602) 275-3473,http://www.hallofflame.org/,33.4476794,-111.953272,Phoenix +S'edav Va'aki Museum (formerly Pueblo Grande Museum),"4619 E Washington St, Phoenix, AZ 85034, USA",(602) 495-0901,https://www.phoenix.gov/sedav-vaaki,33.4457435,-111.9846914,Phoenix +Butterfly Wonderland,"9500 East Vía de Ventura F100, Scottsdale, AZ 85256, USA",(480) 800-3000,http://butterflywonderland.com/,33.5545114,-111.87619,Phoenix +Oakland Zoo,"9777 Golf Links Rd, Oakland, CA 94605, USA",(510) 632-9525,http://www.oaklandzoo.org/,37.7486635,-122.1454166,Oakland +Chabot Space & Science Center,"10000 Skyline Blvd, Oakland, CA 94619, USA",(510) 336-7300,http://www.chabotspace.org/,37.81874739999999,-122.1807217,Oakland +Knowland Park,"9777 Golf Links Rd, Oakland, CA 94605, USA",(510) 615-5566,http://www2.oaklandnet.com/government/o/opr/s/Parks/index.htm,37.7559541,-122.1316042,Oakland +Reinhardt Redwood Regional Park,"7867 Redwood Rd, Oakland, CA 94619, USA",(888) 327-2757,http://www.ebparks.org/parks/redwood,37.8115064,-122.1629595,Oakland +Children's Fairyland,"699 Bellevue Ave, Oakland, CA 94610, USA",(510) 452-2259,http://www.fairyland.org/,37.8081474,-122.2605499,Oakland +Oakland Aviation Museum,"8252 Earhart Rd, Oakland, CA 94621, USA",(510) 638-7100,https://www.oaklandaviationmuseum.org/,37.7331781,-122.2126447,Oakland +The Pergola at Lake Merritt,"599 El Embarcadero, Oakland, CA 94610, USA",Unknown,Unknown,37.8085518,-122.249744,Oakland +Jack London's Cabin,"1-199 Webster Street Tube, Oakland, CA 94607, USA",Unknown,Unknown,37.7938807,-122.2748216,Oakland +Pyramid to Moses,"Joaquin Miller Park, Oakland, CA 94602, USA",Unknown,Unknown,37.8126616,-122.1906871,Oakland +Black Food Tour,"Various Locations, Oakland, CA 94607, USA",(510) 224-3346,http://blackfoodtour.com/,37.80343180000001,-122.2715248,Oakland +Snow Park,"Harrison St & 19th St, Lakeside Dr, Oakland, CA 94612, USA",(510) 238-7275,Unknown,37.8071141,-122.2642898,Oakland +Joaquin Miller Park,"3300 Joaquin Miller Rd, Oakland, CA 94602, USA",(510) 615-5566,https://www.oaklandca.gov/topics/joaquin-miller-park,37.8142056,-122.1845382,Oakland +Pardee Home Museum,"672 11th St, Oakland, CA 94607, USA",(510) 444-2187,http://www.pardeehome.org/,37.80474770000001,-122.2778923,Oakland +Middle Harbor Shoreline Park,"2777 Middle Harbor Rd, Oakland, CA 94607, USA",(510) 627-1634,http://www.portofoakland.com/port/seaport/middle-harbor/,37.8045767,-122.3232961,Oakland +Eastshore Park,"Oakland, CA 94610, USA",Unknown,Unknown,37.809542,-122.2481954,Oakland +Chappell Hayes Observation Tower,"2777 Middle Harbor Rd, Oakland, CA 94607, USA",Unknown,https://www.portofoakland.com/port/seaport/middle-harbor/park-features/,37.79971099999999,-122.3263102,Oakland +Huckleberry Botanic Regional Preserve,"7087 Skyline Blvd, Oakland, CA 94611, USA",(888) 327-2757,http://www.ebparks.org/parks/huckleberry,37.8428628,-122.1949799,Oakland +The Gardens at Lake Merritt,"666 Bellevue Ave, Oakland, CA 94610, USA",(510) 763-8409,http://www.gardensatlakemerritt.org/,37.80621420000001,-122.2584238,Oakland +Oakland Sports Street Art Mural,"5319 Martin Luther King Jr Way, Oakland, CA 94609, USA",Unknown,Unknown,37.8383784,-122.2696819,Oakland +Camron-Stanford House,"1418 Lakeside Dr, Oakland, CA 94612, USA",(510) 874-7802,http://www.cshouse.org/,37.8014603,-122.2622792,Oakland +Sci-Tech Museum,"154 Stone St, Watertown, NY 13601, USA",(315) 788-1340,http://www.scitechcenter.org/,43.9743485,-75.9131192,Watertown +Public Square,"1 Public Square, Watertown, NY 13601, USA",(315) 785-7775,Unknown,43.9746047,-75.9096945,Watertown +Jefferson County Historical Society,"228 Washington St, Watertown, NY 13601, USA",(315) 782-3491,http://www.jeffersoncountyhistory.org/,43.9732439,-75.9118196,Watertown +Historic Thompson Park,"Thompson Park, Watertown, NY 13601, USA",(315) 785-7775,https://historicthompsonpark.org/,43.9635447,-75.88783959999999,Watertown +Roswell P. Flower Monument,"Watertown, NY 13601, USA",(315) 785-7705,https://www.flowermemoriallibrary.org/,43.9738625,-75.91092499999999,Watertown +Zero Latency VR - Watertown,"21182 Salmon Run Mall Loop W Suite B101, Watertown, NY 13601, USA",(315) 767-2286,http://www.zerolatencyvr.com/,43.9784611,-75.95328529999999,Watertown +Marble Street Park,"Watertown, NY 13601, USA",Unknown,Unknown,43.97759629999999,-75.8736852,Watertown +Waterworks Park,"1630 Huntington St, Watertown, NY 13601, USA",(315) 785-7780,https://hmienterprises.com/nnytrails/waterworks-park/,43.9779233,-75.8801332,Watertown +The Escape Works Inc,"140 Stone St, Watertown, NY 13601, USA",(315) 771-0787,https://www.theescapeworks.com/,43.97428439999999,-75.9123201,Watertown +Honor the Mountain Monument,"34 Thompson Park, Watertown, NY 13601, USA",Unknown,http://www.honorthemountain.com/,43.9620834,-75.88932489999999,Watertown +Dry Hill Ski Area,"18160 Alpine Ridge Rd, Watertown, NY 13601, USA",(315) 782-8584,http://skidryhill.com/,43.931234,-75.90181,Watertown +Fun on the Run,"21182 Salmon Run Mall Loop W, Watertown, NY 13601, USA",(315) 777-8003,https://www.shopsalmonrunmall.com/tenants/fun-on-the-run/,43.9771697,-75.9533395,Watertown +Black River Outfitters,"531 W Main St, Watertown, NY 13601, USA",(888) 960-4276,http://www.brorafting.com/,43.9818179,-75.9148314,Watertown +Ogden Nature Center,"966 W 12th St, Ogden, UT 84404, USA",(801) 621-7595,http://www.ogdennaturecenter.org/,41.24476000000001,-112.003537,Ogden +Ogden's George S. Eccles Dinosaur Park,"1544 Park Blvd, Ogden, UT 84401, USA",(801) 393-3466,http://www.dinosaurpark.org/,41.237827,-111.937941,Ogden +Fort Buenaventura Park,"2450 A Ave, Ogden, UT 84401, USA",(801) 399-8099,https://www.wcparksrec.com/fortbuenaventura,41.2204023,-111.9882658,Ogden +Beus Pond Park,"4240 Country Hills Dr, Ogden, UT 84403, USA",Unknown,https://www.ogdencity.com/Facilities/Facility/Details/Beus-Pond-Park-8,41.1846451,-111.9377521,Ogden +Union Station,"Union Station, 2501 Wall Ave, Ogden, UT 84401, USA",(801) 629-8680,https://www.ogdencity.com/1337/Visit,41.2207103,-111.9797967,Ogden +Treehouse Children's Museum,"347 22nd St, Ogden, UT 84401, USA",(801) 394-9663,https://www.treehousemuseum.org/,41.2265046,-111.9718977,Ogden +Ogden Botanical Gardens,"1750 Monroe Blvd, Ogden, UT 84401, USA",(801) 399-8080,http://ogdenbotanicalgardens.org/,41.2351739,-111.9535463,Ogden +Star Noodle Dragon,"225 25th St, Ogden, UT 84401, USA",Unknown,Unknown,41.2205006,-111.9753012,Ogden +Big-Dee Sports Park,"1375 Park Blvd, Ogden, UT 84401, USA",(801) 629-8253,https://www.ogdencity.com/,41.2358297,-111.9431432,Ogden +West Ogden Water Tower,"2455 Pennsylvania Ave, Ogden, UT 84401, USA",Unknown,Unknown,41.2219604,-112.0027305,Ogden +Union Station Water Tower,"2490 Wall Ave, Ogden, UT 84401, USA",Unknown,Unknown,41.2214669,-111.9791472,Ogden +Waterfall Canyon,"Buchanan Ave, Ogden, UT 84403, USA",Unknown,Unknown,41.210875,-111.9319728,Ogden +Browning-Kimball Classic Car Museum,"2501 Wall Ave suite a, Ogden, UT 84401, USA",(801) 629-8672,Unknown,41.2211715,-111.9796649,Ogden +Marquardt Park,"3280 Taylor Ave, Ogden, UT 84403, USA",Unknown,Unknown,41.2044286,-111.9395595,Ogden +Sledding Statue,"2501 S Washington Blvd, Ogden, UT 84401, USA",Unknown,Unknown,41.22055169999999,-111.9730311,Ogden +‘OGDEN' Sign,"Washington Blvd @ 1830 S, Ogden, UT 84404, USA",Unknown,Unknown,41.23404059999999,-111.9702185,Ogden +Barker Natural Spring,"2637 N 400 E St, Ogden, UT 84414, USA",Unknown,Unknown,41.3069171,-111.969674,Ogden +High Adventure Park,"251 18th St, Ogden, UT 84401, USA",(801) 629-8271,http://www.ogdencity.com/461/Parks,41.2350515,-111.974386,Ogden +Buddha Statue,"402 Wall Ave, Ogden, UT 84404, USA",Unknown,Unknown,41.2557841,-111.9773176,Ogden +“New Range” Sculpture,"2501 S Washington Blvd, Ogden, UT 84401, USA",Unknown,Unknown,41.22048970000001,-111.9708246,Ogden +Indian Creek Nature Center,"5300 Otis Rd SE, Cedar Rapids, IA 52403, USA",(319) 362-0664,http://www.indiancreeknaturecenter.org/,41.966607,-91.589038,Cedar Rapids +Brucemore,"2160 Linden Dr SE, Cedar Rapids, IA 52403, USA",(319) 362-7375,http://www.brucemore.org/,41.9902171,-91.63551299999999,Cedar Rapids +Cedar Rapids Museum of Art,"410 3rd Ave SE, Cedar Rapids, IA 52401, USA",(319) 366-7503,http://www.crma.org/,41.9788895,-91.6643388,Cedar Rapids +The District: Czech Village & New Bohemia,"208 12th Ave SE G, Cedar Rapids, IA 52401, USA",Unknown,http://www.the-district.org/,41.9698939,-91.659096,Cedar Rapids +National Czech & Slovak Museum & Library,"1400 Inspiration Pl SW, Cedar Rapids, IA 52404, USA",(319) 362-8500,http://www.ncsml.org/,41.9661655,-91.66178149999999,Cedar Rapids +Ushers Ferry Historic Village,"5925 Seminole Valley Trail NE, Cedar Rapids, IA 52411, USA",(319) 286-5763,http://www.ufhv.com/,42.0069065,-91.7210822,Cedar Rapids +Bever Park,"2700 Bever Ave SE, Cedar Rapids, IA 52403, USA",(319) 286-5760,http://www.cedar-rapids.org/residents/parks_and_recreation/old_macdonald_s_farm.php,41.98424899999999,-91.6278595,Cedar Rapids +The Fun Station Cedar Rapids,"200 Collins Rd NE, Cedar Rapids, IA 52402, USA",(319) 373-1111,http://www.gofunstation.com/,42.0293643,-91.6300084,Cedar Rapids +Seminole Valley Park,"5925 Seminole Valley Trail NE, Cedar Rapids, IA 52411, USA",(319) 286-5690,http://www.cedar-rapids.org/,42.00339919999999,-91.72853719999999,Cedar Rapids +Tree Of Five Seasons,"Cedar Rapids, IA 52401, USA",(319) 286-5566,http://crrec.org/,41.97816419999999,-91.6707165,Cedar Rapids +Sky Zone Trampoline Park,"5515 Council St NE, Cedar Rapids, IA 52402, USA",(319) 382-2222,https://www.skyzone.com/cedarrapids,42.0331878,-91.65902009999999,Cedar Rapids +African American Museum Of Iowa,"55 12th Ave SE, Cedar Rapids, IA 52401, USA",(319) 862-2101,http://www.blackiowa.org/,41.9687324,-91.6597016,Cedar Rapids +Rock Island Botanical State Preserve,"4501 Preserve Ln, Cedar Rapids, IA 52411, USA",Unknown,https://www.mycountyparks.com/County/Linn/Park/Rock-Island-Botanical-Preserve.aspx,42.0262706,-91.7265098,Cedar Rapids +Prairie Park Fishery,"2125 Otis Rd SE, Cedar Rapids, IA 52403, USA",(319) 286-5760,https://ppf.areafish.com/,41.94898379999999,-91.63357429999999,Cedar Rapids +Jacolyn Park,"198 Jacolyn Dr NW, Cedar Rapids, IA 52405, USA",(319) 286-5760,http://crrec.org/,41.9716852,-91.7329185,Cedar Rapids +Hughes Park,"2100 Wilson Ave SW, Cedar Rapids, IA 52404, USA",(319) 286-5566,https://www.cedar-rapids.org/residents/parks_and_recreation/hughes_park.php,41.9577753,-91.7014794,Cedar Rapids +The History Center,"800 2nd Ave SE, Cedar Rapids, IA 52403, USA",(319) 362-1501,http://www.historycenter.org/,41.9820914,-91.6610852,Cedar Rapids +GoFree Escape Rooms,"208 Collins Rd NE STE 206, Cedar Rapids, IA 52402, USA",(319) 435-1447,https://escaperoom.com/venue/go-free-escape-rooms-cedar-rapids-ia-usa,42.0285985,-91.6299526,Cedar Rapids +Mohawk City Park,"100 J Ave NE, Cedar Rapids, IA 52402, USA",(319) 286-5760,https://www.iowadnr.gov/idnr/Fishing/Where-to-Fish/Lakes-Ponds-Reservoirs/LakeDetails?lakeCode=MPL57,42.00474750000001,-91.688923,Cedar Rapids +Cherokee Park,"3855 Midway Dr NW, Cedar Rapids, IA 52405, USA",(319) 286-5566,http://www.cedar-rapids.org/residents/parks_and_recreation/index.php,41.9745238,-91.7218068,Cedar Rapids +Cape Safari Park,"2763 Co Rd 618, Cape Girardeau, MO 63701, USA",(573) 243-7862,http://www.capesafaripark.com/,37.3747165,-89.6053252,Cape Girardeau +Crisp Museum,"518 S Fountain St, Cape Girardeau, MO 63703, USA",(573) 651-2260,https://semo.edu/museum/,37.2962544,-89.5220744,Cape Girardeau +Red House Interpretive Center,"128 Aquamsi St, Cape Girardeau, MO 63703, USA",(573) 335-1631,https://www.cityofcapegirardeau.org/departments/parks/Facilities/red_house_interpretive_center,37.30086860000001,-89.51872449999999,Cape Girardeau +Cape River Heritage Museum,"538 Independence St, Cape Girardeau, MO 63703, USA",(573) 334-0405,Unknown,37.3042614,-89.52527719999999,Cape Girardeau +World's Largest Fountain Cup,"425 S Mt Auburn Rd, Cape Girardeau, MO 63703, USA",Unknown,Unknown,37.2905442,-89.5717366,Cape Girardeau +Cape Rock Park,"E Cape Rock Dr, Cape Girardeau, MO 63701, USA",(573) 339-6340,Unknown,37.32853290000001,-89.49606190000002,Cape Girardeau +Historic Fort D,"920 Fort St, Cape Girardeau, MO 63701, USA",(573) 335-1631,https://fortdhistoricsite.com/,37.2908661,-89.526275,Cape Girardeau +The Glenn House,"325 S Spanish St, Cape Girardeau, MO 63703, USA",Unknown,https://www.glennhouse.org/,37.2981477,-89.52068849999999,Cape Girardeau +Riverfront Bridge Park,"Morgan Oak St, Cape Girardeau, MO 63703, USA",Unknown,Unknown,37.2974162,-89.51976619999999,Cape Girardeau +Cape Girardeau Conservation Nature Center,"2289 County Park Dr, Cape Girardeau, MO 63701, USA",(573) 290-5218,https://mdc.mo.gov/capecnc,37.3435806,-89.59001579999999,Cape Girardeau +Discovery Playhouse,"502 Broadway St, Cape Girardeau, MO 63701, USA",(573) 335-7529,http://www.discoveryplayhouse.org/,37.3066621,-89.5238639,Cape Girardeau +Capaha Park,"1400 Broadway St, Cape Girardeau, MO 63701, USA",(573) 339-6340,Unknown,37.3128567,-89.5372867,Cape Girardeau +Levi's Adventure Trail,"2400 County Park Dr, Cape Girardeau, MO 63701, USA",(573) 243-1052,http://www.levisadventuretrail.com/,37.3417809,-89.59233230000001,Cape Girardeau +Tpats compound,"1051 Co Rd 651, Cape Girardeau, MO 63701, USA",Unknown,Unknown,37.3590832,-89.47416229999999,Cape Girardeau +Groves Park,"2400 Jean Ann Dr, Cape Girardeau, MO 63701, USA",Unknown,Unknown,37.32497239999999,-89.5479884,Cape Girardeau +Cape Girardeau County Park South,"2400 County Park Dr, Cape Girardeau, MO 63701, USA",(573) 335-4146,https://www.capecounty.us/parks-department/,37.3409508,-89.5923421,Cape Girardeau +Cape Splash Family Aquatic Center,"1625 N Kingshighway St, Cape Girardeau, MO 63701, USA",(573) 339-6343,https://www.cityofcape.org/capesplash,37.3288943,-89.5693637,Cape Girardeau +Dennis Scivally Park,"2428 Cape Rock Dr, Cape Girardeau, MO 63701, USA",Unknown,https://cityofcapegirardeau.org/departments/parks,37.328107,-89.54978899999999,Cape Girardeau +Riverfront park,"121 N Water St, Cape Girardeau, MO 63701, USA",Unknown,Unknown,37.3052974,-89.5174431,Cape Girardeau +John Boardman Pavilion,"42 S Main St, Cape Girardeau, MO 63703, USA",Unknown,Unknown,37.30283899999999,-89.5184628,Cape Girardeau +Bonning Cabin,"Sun Valley, ID 83353, USA",(208) 727-5081,Unknown,43.68333789999999,-114.3638107,Sun Valley +Sun Valley Museum of Art,"191 5th St E, Ketchum, ID 83340, USA",(208) 726-9491,http://svmoa.org/,43.68111,-114.366841,Sun Valley +Hemingway Memorial,"Sun Valley, ID 83353, USA",(208) 622-2135,https://www.sunvalley.com/,43.71224309999999,-114.340045,Sun Valley +Ore Wagon Museum,"500 East Ave, Ketchum, ID 83340, USA",(208) 726-7820,Unknown,43.6831109,-114.3640757,Sun Valley +Visit Sun Valley,"491 Sun Valley Rd, Ketchum, ID 83340, USA",(800) 634-3347,https://visitsunvalley.com/,43.6817414,-114.3630333,Sun Valley +Gilman Contemporary,"661 Sun Valley Rd, Ketchum, ID 83340, USA",(208) 726-7585,http://www.gilmancontemporary.com/,43.6833188,-114.3607992,Sun Valley +Sawtooth Botanical Garden,"11 Gimlet Rd, Ketchum, ID 83340, USA",(208) 726-9358,https://www.sbgarden.org/,43.6268273,-114.3543625,Sun Valley +Wood River Museum of History and Culture,"580 4th St E, Ketchum, ID 83340, USA",(208) 726-8118,https://comlib.org/museum/,43.6828027,-114.36246,Sun Valley +EXPLOREwith,"4 Kitzbuhler Strasse, Sun Valley, ID 83353, USA",(208) 806-4180,Unknown,43.6965412,-114.3534021,Sun Valley +Sun Valley Heli Ski,"301 Trail Creek Rd, Sun Valley, ID 83353, USA",(208) 622-3108,http://www.sunvalleyheliski.com/,43.7165293,-114.3378129,Sun Valley +Festival Meadows,"Sun Valley, ID 83353, USA",Unknown,Unknown,43.6856516,-114.3593555,Sun Valley +Sun Valley,"208 Spruce Ave, Ketchum, ID 83340, USA",(208) 725-2104,http://www.visitsunvalley.com/,43.6830211,-114.3596191,Sun Valley +Ketchum Town Square,"480 4th St E, Ketchum, ID 83340, USA",(208) 726-7820,http://ketchumidaho.org/Facilities/Facility/Details/Town-Square-32,43.6819444,-114.3633333,Sun Valley +Sun Valley Stables,"1 Sun Valley Rd, Sun Valley, ID 83353, USA",(208) 622-2887,http://www.sunvalley.com/things-to-do/summer-activities/#/stables/,43.689815,-114.354812,Sun Valley +Sault Ste. Marie Boardwalk,"St Mary's River Dr, Sault Ste. Marie, ON P6A, Canada",(705) 759-2500,http://www.saulttourism.com/what-to-do/attractions/listing.aspx?listing=33,46.51018089999999,-84.339156,Sault Ste. Marie +Canadian Bushplane Heritage Centre,"50 Pim St, Sault Ste. Marie, ON P6A 3G4, Canada",(705) 945-6242,http://bushplane.com/,46.5046915,-84.32377919999999,Sault Ste. Marie +Ermatinger Clergue National Historic Site,"800 Bay St, Sault Ste. Marie, ON P6A 3G4, Canada",(705) 759-5443,https://saultstemarie.ca/City-Hall/City-Departments/Community-Services/Recreation-and-Culture/Historic-Sites-and-Heritage/Ermatinger-Clergue-National-Historic-Site.aspx?ext=.,46.50559999999999,-84.325026,Sault Ste. Marie +Sault Ste. Marie Canal National Historic Site,"1 Canal Dr, Sault Ste. Marie, ON P6A 6W4, Canada",(705) 941-6262,https://pc.gc.ca/sault?utm_source=gmb&utm_medium=sault,46.5132426,-84.3508986,Sault Ste. Marie +Gros Cap Conservation Area,"Marshall Dr, Sault Ste. Marie, ON P6A 6K4, Canada",(705) 946-8530,http://ssmrca.ca/index.cfm?fuseaction=content&menuid=24&pageid=1023,46.5390314,-84.5865354,Sault Ste. Marie +Sault Ste. Marie Museum,"690 Queen St E, Sault Ste. Marie, ON P6A 2A4, Canada",(705) 759-7278,http://www.saultmuseum.ca/,46.5080303,-84.3278488,Sault Ste. Marie +Bellevue Park,"1310 Queen St E, Sault Ste. Marie, ON P6A 4A5, Canada",(705) 759-2500,https://saultstemarie.ca/City-Hall/City-Departments/Public-Works-Engineering-Services/Public-Works/Parks/Bellevue-Park.aspx,46.5018013,-84.2983643,Sault Ste. Marie +Soo Locks Park,"329 W Portage Ave, Sault Ste. Marie, MI 49783, USA",Unknown,http://www.saultstemarie.com/member-detail/soo-locks-park/,46.50186489999999,-84.3469586,Sault Ste. Marie +Rotary Island Park,"Sault Ste. Marie, MI 49783, USA",Unknown,Unknown,46.4838752,-84.3007838,Sault Ste. Marie +Sault Historical Sites,"501 E Water St, Sault Ste. Marie, MI 49783, USA",(906) 632-3658,https://www.saulthistoricsites.com/,46.4989479,-84.3371682,Sault Ste. Marie +Pointe aux Pins Range Front Lighthouse,"300 Pointe Louise Dr, Sault Ste. Marie, ON P6A 5K6, Canada",Unknown,Unknown,46.46775640000001,-84.47238349999999,Sault Ste. Marie +Soo Locks,"Soo Locks, Sault Ste. Marie, MI 49783, USA",(906) 632-3366,http://www.saultstemarie.com/attractions/soo-locks/,46.50328889999999,-84.35169479999999,Sault Ste. Marie +The Roberta Bondar Park and Tent Pavilion,"65 Foster Dr, Sault Ste. Marie, ON P6A 5N1, Canada",(705) 759-5310,http://saultstemarie.ca/BondarPark,46.5086609,-84.336828,Sault Ste. Marie +Clergue Park,"Bay St & East St, Sault Ste. Marie, ON P6A, Canada",(705) 759-2500,https://saultstemarie.ca/City-Hall/City-Departments/Public-Works-Engineering-Services/Public-Works/Parks/Parks-and-Playgrounds.aspx,46.5068432,-84.3302674,Sault Ste. Marie +Kinsmen Park,"Sault Ste. Marie, ON P6A 6J8, Canada",(705) 759-1920,http://www.kinsmenssm.ca/,46.5895021,-84.27513599999999,Sault Ste. Marie +The Old Stone House,"831 Queen St E, Sault Ste. Marie, ON P6A 2A8, Canada",(705) 759-5443,http://www.saultstemarie.ca/City-Hall/City-Departments/Community-Services/Recreation-and-Culture/Historic-Sites-and-Heritage/Ermatinger-Clergue-National-Historic-Site.aspx,46.5060442,-84.3245264,Sault Ste. Marie +Soo Locks Visitor Center,"312 W Portage Ave, Sault Ste. Marie, MI 49783, USA",(906) 202-1333,http://www.lre.usace.army.mil/Missions/Recreation/Soo-Locks-Visitor-Center/,46.5018315,-84.3506858,Sault Ste. Marie +Museum Ship Valley Camp,"501 E Water St, Sault Ste. Marie, MI 49783, USA",(906) 632-3658,http://www.saulthistoricsites.com/,46.499465,-84.33613179999999,Sault Ste. Marie +River of History Museum,"531 Ashmun St, Sault Ste. Marie, MI 49783, USA",(906) 632-1999,http://www.riverofhistory.org/,46.4963989,-84.3478164,Sault Ste. Marie +Fort Creek Conservation Area,"1100 Fifth Line E, Sault Ste. Marie, ON P6A 6J8, Canada",(705) 946-8530,https://ssmrca.ca/conservation-areas/fort-creek-conservation-area/,46.54002620000001,-84.3441824,Sault Ste. Marie +Old Barracks Museum,"101 Barrack St, Trenton, NJ 08608, USA",(609) 396-1776,http://www.barracks.org/,40.2199101,-74.7686849,Trenton +New Jersey State Museum,"205 W State St, Trenton, NJ 08608, USA",(609) 292-6464,http://www.statemuseum.nj.gov/,40.2210647,-74.7730924,Trenton +1719 William Trent House Museum,"15 Market St, Trenton, NJ 08611, USA",(609) 989-3027,http://www.williamtrenthouse.org/,40.2130959,-74.7658056,Trenton +Cadwalader Park,"36 Parkside, Trenton, NJ 08618, USA",(609) 989-3635,Unknown,40.2368726,-74.7907577,Trenton +Trenton City Museum/ Ellarslie Museum,"299 Parkside Ave., Trenton, NJ 08606, USA",(609) 989-1191,http://ellarslie.org/,40.23683479999999,-74.7899485,Trenton +Trenton Battle Monument,"350 N Warren St, Trenton, NJ 08618, USA",(609) 448-1947,http://www.state.nj.us/dep/parksandforests/historic/Trentonbattlemonument/,40.2258431,-74.76477299999999,Trenton +Planetarium At NJ State Museum,"205 W State St, Trenton, NJ 08608, USA",(609) 292-6464,https://www.state.nj.us/state/museum/explore-planetarium.shtml,40.2210006,-74.77316359999999,Trenton +World War II Memorial,"125 W State St, Trenton, NJ 08608, USA",Unknown,Unknown,40.22118629999999,-74.7697151,Trenton +Roebling Park,"Trenton, NJ 08611, USA",(609) 303-0700,https://abbottmarshlands.org/,40.19037790000001,-74.72651880000001,Trenton +Ellarslie Mansion,"299 Parkside Ave., Trenton, NJ 08618, USA",(609) 989-3632,https://ellarslie.org/about/history/,40.23683479999999,-74.7899485,Trenton +George Page Park,"N Clinton Ave & Lawrence St, 27 Firth St, Trenton, NJ 08638, USA",Unknown,Unknown,40.2327885,-74.7413232,Trenton +Trenton Historical Society,"212 1/2 S Broad St, Trenton, NJ 08608, USA",(609) 396-4478,https://trentonhistory.org/,40.2200888,-74.7642278,Trenton +Trenton Museum Society,"Trenton, NJ 08618, USA",(609) 989-3632,https://ellarslie.org/about/trenton-museum-society/,40.2368074,-74.7899807,Trenton +Caras Park,"123 Carousel Dr, Missoula, MT 59802, USA",(406) 543-4238,https://www.missouladowntown.com/caras-park/,46.869377,-113.997101,Missoula +Missoula Art Museum,"335 N Pattee St, Missoula, MT 59802, USA",(406) 728-0447,http://www.missoulaartmuseum.org/,46.872442,-113.992366,Missoula +Montana Natural History Center,"120 Hickory St # A, Missoula, MT 59801, USA",(406) 327-0405,http://www.montananaturalist.org/,46.8706701,-114.0062453,Missoula +The Historical Museum at Fort Missoula,"3400 Capt Rawn Way, Missoula, MT 59804, USA",(406) 728-3476,http://www.fortmissoulamuseum.org/,46.84368269999999,-114.0629836,Missoula +Splash Montana,"3001 Bancroft St, Missoula, MT 59801, USA",(406) 721-7275,http://www.splashmontana.org/,46.8425375,-114.0090346,Missoula +McCormick Park,"600 Cregg Ln, Missoula, MT 59801, USA",(406) 721-7275,http://www.ci.missoula.mt.us/Facilities/Facility/Details/McCormick-27,46.8720367,-114.0036651,Missoula +A Carousel for Missoula,"101 Carousel Dr, Missoula, MT 59802, USA",(406) 549-8382,http://carouselformissoula.com/,46.87029099999999,-113.998088,Missoula +The M,"Missoula, MT 59803, USA",(406) 721-7275,http://www.ci.missoula.mt.us/Facilities/Facility/Details/30,46.85938239999999,-113.975747,Missoula +Crossings,"531n N Higgins Ave, Missoula, MT 59802, USA",Unknown,http://www.ci.missoula.mt.us/facilities/facility/details/Crossings-97,46.8750318,-113.9921072,Missoula +Montana Museum of Art & Culture,"Performing Arts and Radio Center, Missoula, MT 59812, USA",(406) 243-2019,http://www.umt.edu/montanamuseum/,46.863236,-113.9850057,Missoula +Boone and Crockett Club,"250 Station Dr, Missoula, MT 59801, USA",(406) 542-1888,http://www.boone-crockett.org/,46.8676235,-113.9986563,Missoula +Street Art,"127 N Higgins Ave, Missoula, MT 59802, USA",Unknown,Unknown,46.8707229,-113.9951941,Missoula +Museum of Mountain Flying,"5843 Museum Way, Missoula, MT 59808, USA",(406) 721-3644,Unknown,46.9175073,-114.0780545,Missoula +Bonner Park,"1600 Ronald Ave, Missoula, MT 59801, USA",(406) 721-7275,http://www.ci.missoula.mt.us/facilities/facility/details/Bonner-4,46.8550556,-113.9929992,Missoula +Fort Missoula Regional Park- Bella Vista Pavilion,"2725 CCC Rd, Missoula, MT 59804, USA",(406) 552-6684,http://www.atthefort.org/,46.84514249999999,-114.062623,Missoula +Western Cultural,"30 Fort Missoula Rd #3, Missoula, MT 59804, USA",(406) 829-0301,http://www.westerncultural.com/,46.84309289999999,-114.0572867,Missoula +Greenough Park,"1001 Monroe St, Missoula, MT 59802, USA",Unknown,http://www.ci.missoula.mt.us/Facilities/Facility/Details/Greenough-14,46.87699529999999,-113.9768536,Missoula +Glacier Country Tourism,"3021 Palmer St STE A, Missoula, MT 59808, USA",(800) 338-5072,http://www.glaciermt.com/,46.8866059,-114.0349971,Missoula +Snowbowl,"1700 Snow Bowl Rd, Missoula, MT 59808, USA",(406) 549-9777,http://www.montanasnowbowl.com/,47.014436,-113.999568,Missoula +Rattlesnake National Recreation Area,"Missoula, MT 59802, USA",Unknown,Unknown,46.9999263,-113.8759372,Missoula +Sacajawea State Park Interpretive Center,"2503 Sacajawea Park Rd, Pasco, WA 99301, USA",(509) 545-2056,http://parks.state.wa.us/575/Sacajawea,46.1991781,-119.0393967,Pasco +Sacajawea Historical State Park,"2503 Sacajawea Park Rd, Pasco, WA 99301, USA",(509) 545-2361,http://parks.state.wa.us/575/Sacajawea,46.20103899999999,-119.0406712,Pasco +Franklin County Historical Society & Museum,"305 N 4th Ave, Pasco, WA 99301, USA",(509) 547-3714,https://fchsmuseum.com/,46.2327897,-119.093197,Pasco +Chiawana Park,"2020 Rd 88, Pasco, WA 99301, USA",(509) 545-3456,http://www.pasco-wa.gov/facilities.aspx?RID=14&Page=detail,46.247144,-119.206532,Pasco +AXE KPR Axe Throwing,"8425 Chapel Hill Blvd STE C104, Pasco, WA 99301, USA",Unknown,https://axekpr.com/,46.2704977,-119.2006416,Pasco +Pasco Aviation Museum,"4022 N. Stearman Ave, Enter thru Bergstrom Aircraft, Main St, Pasco, WA 99301, USA",(509) 521-7117,http://www.pascoaviationmuseum.org/,46.26396699999999,-119.1046822,Pasco +Clover Island Lighthouse,"99 N Clover Island Dr, Kennewick, WA 99336, USA",Unknown,https://www.portofkennewick.org/projects/clover-island/,46.2177354,-119.1161918,Pasco +Three Bear Waterpark,"15739 Audubon Way, Brainerd, MN 56401, USA",(218) 824-3232,http://brainerdhi.com/brainerd-water-park/,46.37976159999999,-94.2505958,Brainerd +Paul Bunyan Land,"17553 MN-18, Brainerd, MN 56401, USA",(218) 764-2524,http://www.paulbunyanland.com/,46.35129209999999,-94.02921839999999,Brainerd +Lum Park,"1619 NE, Washington St, Brainerd, MN 56401, USA",(218) 828-2320,http://www.ci.brainerd.mn.us/201/Parks-Recreation,46.3684749,-94.1650628,Brainerd +Kiwanis Park,"1101 E River Rd, Brainerd, MN 56401, USA",(218) 828-2320,http://www.ci.brainerd.mn.us/Facilities/Facility/Details/Kiwanis-Park-8,46.34814799999999,-94.20615269999999,Brainerd +Northland Arboretum,"14250 Conservation Dr, Baxter, MN 56425, USA",(218) 829-8770,http://www.northlandarb.org/,46.3594011,-94.2279973,Brainerd +Safari North Wildlife Park,"8493 MN-371, Brainerd, MN 56401, USA",(218) 454-1662,http://www.safarinorth.com/,46.2796108,-94.2956691,Brainerd +Downtown Brainerd,"523 S 5th St, Brainerd, MN 56401, USA",Unknown,Unknown,46.3526733,-94.2020084,Brainerd +Parker Building,"623 Laurel St, Brainerd, MN 56401, USA",Unknown,Unknown,46.3559776,-94.1996161,Brainerd +Gustafson Park,"9th Ave NE & N St NE, Brainerd, MN 56401, USA",(218) 828-2320,https://www.ci.brainerd.mn.us/facilities/facility/details/Gustafson-Park-5,46.37304400000001,-94.1753073,Brainerd +Crow Wing County Historical Society,"320 Laurel St, Brainerd, MN 56401, USA",(218) 829-3268,http://www.crowwinghistory.org/,46.3554397,-94.2042748,Brainerd +Visit Brainerd,"214 S 7th St, Brainerd, MN 56401, USA",(218) 825-0410,http://www.visitbrainerd.com/,46.3562604,-94.19934769999999,Brainerd +Crow Wing State Park,"3124 State Park Rd, Brainerd, MN 56401, USA",(218) 825-3075,http://www.dnr.state.mn.us/state_parks/crow_wing/index.html,46.2728199,-94.332072,Brainerd +Washington's Headquarters State Historic Site,"84 Liberty St, Newburgh, NY 12551, USA",(845) 562-1195,https://parks.ny.gov/historic-sites/17/details.aspx,41.4977159,-74.00992509999999,Newburgh +Chadwick Lake Park,"1702 NY-300, Newburgh, NY 12550, USA",Unknown,https://www.townofnewburgh.org/cn/webpage.cfm?tpid=17094,41.5541068,-74.0663387,Newburgh +Newburgh-Beacon Bridge,"4124 Route 84 E, Beacon, NY 12508, USA",(845) 831-3700,https://nysba.ny.gov/bridge/newburgh-beacon,41.5198372,-74.0004931,Newburgh +Downing Park,"181-141 Carpenter Ave, Newburgh, NY 12550, USA",(845) 565-5559,https://www.downingparknewburgh.org/,41.50594400000001,-74.0177308,Newburgh +Newburgh-Beacon Bridge Pedestrian and Bike Trail,"Newburgh, NY 12550, USA",Unknown,Unknown,41.52046249999999,-74.01079299999999,Newburgh +Algonquin Park,"54 Powder Mill Rd, Newburgh, NY 12550, USA",Unknown,https://www.orangecountygov.com/1463/Algonquin-Park,41.5244594,-74.0564304,Newburgh +Motorcyclepedia Museum,"250 Lake St, Newburgh, NY 12550, USA",(845) 569-9065,http://www.motorcyclepediamuseum.org/,41.4939959,-74.03276629999999,Newburgh +Cronomer Hill Park,"Gardnertown Rd &, Powder Mill Rd, Newburgh, NY 12550, USA",(845) 561-1880,https://www.orangecountygov.com/1470/Cronomer-Hill-Park,41.5282102,-74.05391809999999,Newburgh +Crawford House,"189 Montgomery St, Newburgh, NY 12550, USA",(845) 561-2585,https://www.newburghhistoricalsociety.com/crawfordhouse,41.5088114,-74.0080109,Newburgh +Bannerman Castle,"Beacon, NY 12508, USA",(845) 237-2636,http://bannermancastle.org/,41.4553449,-73.98877759999999,Newburgh +Tyrone Crabb Memorial Park,"94 South St, Newburgh, NY 12550, USA",(845) 569-7300,Unknown,41.5070086,-74.008529,Newburgh +Hudson River Adventures: Pride of the Hudson,"4 Washington St, Newburgh, NY 12550, USA",(845) 220-2120,http://www.prideofthehudson.com/,41.4992897,-74.00644129999999,Newburgh +River Rose Cruises,"70 Front St, Newburgh, NY 12550, USA",(845) 562-1067,http://www.riverrosecruises.com/,41.5052108,-74.0066909,Newburgh +Kowawese Unique Area,"90 Plum Point Ln, New Windsor, NY 12553, USA",(845) 615-3830,https://www.orangecountygov.com/1478/Kowawese-Unique-Area-at-Plum-Point,41.4622751,-74.0153315,Newburgh +Scenic Hudson's Long Dock Park,"23 Long Dock Rd, Beacon, NY 12508, USA",(845) 473-4440,http://www.scenichudson.org/parks/longdockpark,41.50438380000001,-73.98573950000001,Newburgh +Madam Brett Homestead Museum,"50 Van Nydeck Ave, Beacon, NY 12508, USA",(845) 831-6533,https://www.melzingahnsdar.org/madam-brett-homestead,41.50178100000001,-73.967128,Newburgh +Ann Street Gallery,"104 Ann St, Newburgh, NY 12550, USA",(845) 784-1146,http://www.safe-harbors.org/,41.4994807,-74.0118076,Newburgh +Dia Beacon,"3 Beekman St, Beacon, NY 12508, USA",(845) 440-0100,https://www.diaart.org/,41.5000753,-73.9825664,Newburgh +Kristi Babcock Memorial Park,"660 Mt Airy Rd, New Windsor, NY 12553, USA",(845) 565-7750,http://newwindsorcommunityday.com/Directions,41.453878,-74.08172300000001,Newburgh +Madam Brett Park,"South Ave, Beacon, NY 12508, USA",(845) 473-4440,http://www.scenichudson.org/parks/madambrettpark,41.4887912,-73.9741663,Newburgh +Glacier Bay National Park Visitor Center,"179 Barlett Cove Road, Gustavus, AK 99826, USA",(907) 697-2661,http://www.nps.gov/glba/planyourvisit/hours.htm,58.4546522,-135.8824918,Gustavus +Cross Sound Express Whale Watching,"1 State Dock Rd, Gustavus, AK 99826, USA",Unknown,Unknown,58.39297610000001,-135.7289408,Gustavus +Glacier Bay National Park and Preserve Headquarters,"1 Park Rd, Gustavus, AK 99826, USA",(907) 697-2230,http://www.nps.gov/glba/index.htm,58.4556346,-135.8683773,Gustavus +Gustavus Community Garden,"Bills Dr, Gustavus, AK 99826, USA",Unknown,Unknown,58.4093431,-135.7350035,Gustavus +Reid Glacier,"Gustavus, AK 99826, USA",Unknown,Unknown,58.4126017,-135.7389018,Gustavus +TITANIC Museum Attraction,"3235 W 76 Country Blvd, Branson, MO 65616, USA",(800) 381-7670,https://titanicbranson.com/,36.63817239999999,-93.28007919999999,Branson +Silver Dollar City,"399 Silver Dollar City Pkwy, Branson, MO 65616, USA",(417) 336-7100,https://www.silverdollarcity.com/,36.66647159999999,-93.33816000000002,Branson +The Butterfly Palace & Rainforest Adventure,"4106 W 76 Country Blvd, Branson, MO 65616, USA",(417) 332-2231,http://www.thebutterflypalace.com/,36.6535502,-93.2927947,Branson +The Shepherd of the Hills,"5585 W 76 Country Blvd, Branson, MO 65616, USA",(417) 334-4191,http://theshepherdofthehills.com/,36.6674295,-93.30666509999999,Branson +Branson's Promised Land Zoo,"2751 Shepherd of the Hills Expy, Branson, MO 65616, USA",(417) 337-9453,http://www.plzoo.com/,36.65202219999999,-93.2749218,Branson +Fritz's Adventure,"1425 W 76 Country Blvd, Branson, MO 65616, USA",(417) 320-6138,http://www.fritzsadventure.com/,36.64173700000001,-93.2458431,Branson +Branson Scenic Railway,"206 E Main St, Branson, MO 65616, USA",(417) 334-6110,http://www.bransontrain.com/,36.6438029,-93.21501150000002,Branson +Beyond The Lens! Branson,"3115 W 76 Country Blvd, Branson, MO 65616, USA",(417) 337-9333,https://www.beyondthelens.com/,36.63815309999999,-93.2779853,Branson +Branson's Wild World,"2020 W 76 Country Blvd #2100, Branson, MO 65616, USA",(417) 239-0854,http://bransonswildworld.com/,36.6393754,-93.2582238,Branson +Hollywood Wax Museum,"3030 W 76 Country Blvd A, Branson, MO 65616, USA",(417) 337-8700,https://www.hollywoodwaxentertainment.com/branson-mo-attractions/hollywood-wax-museum/,36.637666,-93.277017,Branson +Ripley's Believe It or Not!,"3326 W 76 Country Blvd, Branson, MO 65616, USA",(417) 337-5300,http://www.ripleys.com/branson,36.637866,-93.2833588,Branson +Showboat Branson Belle,"4800 Historic Hwy 165, Branson, MO 65616, USA",(800) 775-2628,https://www.silverdollarcity.com/showboat-branson,36.5869939,-93.3172096,Branson +Bigfoot Fun Park,"3608 W 76 Country Blvd, Branson, MO 65616, USA",(800) 562-2416,https://www.bigfootfunpark.com/,36.6466686,-93.2884325,Branson +World's Largest Toy Museum Complex,"3609 W 76 Country Blvd, Branson, MO 65616, USA",(417) 332-1499,http://worldslargesttoymuseum.com/,36.6463431,-93.2875596,Branson +Branson Ferris Wheel,"3335 W 76 Country Blvd, Branson, MO 65616, USA",(417) 334-1612,https://www.fivestarparks.com/branson-tracks/rides/ferris-wheel?utm_source=Google&utm_medium=Listing&utm_campaign=Branson+Ferris+Wheel,36.6385147,-93.2834869,Branson +Hannah's Maze of Mirrors,"3030 W 76 Country Blvd C, Branson, MO 65616, USA",(417) 337-8700,https://www.hollywoodwaxentertainment.com/branson-mo-attractions/hannahs-maze-of-mirrors/,36.6376287,-93.2765828,Branson +Table Rock State Park,"5272 Historic Hwy 165, Branson, MO 65616, USA",(417) 334-4704,http://www.mostateparks.com/park/table-rock-state-park,36.5834496,-93.30927559999999,Branson +Dinosaur Museum,"3619 W 76 Country Blvd, Branson, MO 65616, USA",(417) 239-0733,http://www.bransondinosaurmuseum.com/,36.6468699,-93.2868221,Branson +Shepherd of the Hills Inspiration Tower,"6021 W 76 Country Blvd, Branson, MO 65616, USA",Unknown,http://theshepherdofthehills.com/inspiration-tower/,36.66847449999999,-93.3102833,Branson +The Branson Coaster,"2115 W 76 Country Blvd, Branson, MO 65616, USA",(417) 544-8068,https://thebransoncoaster.com/,36.6412761,-93.26052349999999,Branson +RISD Museum,"20 N Main St, Providence, RI 02903, USA",(401) 454-6500,https://risdmuseum.org/,41.82618110000001,-71.40805689999999,Providence +Waterplace Park,"Memorial Blvd, Providence, RI 02903, USA",(800) 556-2484,http://www.visitrhodeisland.com/,41.8274486,-71.4139414,Providence +Providence Children's Museum,"100 South St, Providence, RI 02903, USA",(401) 273-5437,http://providencechildrensmuseum.org/,41.816496,-71.4093006,Providence +Roger Williams Park,"Pine Hill Ave, Providence, RI 02907, USA",Unknown,https://rwpconservancy.org/,41.7829832,-71.4117265,Providence +Roger Williams National Memorial,"282 N Main St, Providence, RI 02903, USA",(401) 521-7266,https://www.nps.gov/rowi/index.htm,41.8313318,-71.4107403,Providence +The John Brown House Museum,"52 Power St, Providence, RI 02906, USA",(401) 273-7507,https://www.rihs.org/locations/the-john-brown-house-museum/,41.8230955,-71.4033603,Providence +Roger Williams Park Zoo,"1000 Elmwood Ave, Providence, RI 02907, USA",(401) 785-3510,http://www.rwpzoo.org/,41.7903742,-71.4148082,Providence +Carousel Village,"1000 Elmwood Ave, Providence, RI 02907, USA",(401) 785-3510,http://www.rwpzoo.org/carousel-village,41.7833713,-71.4146207,Providence +Prospect Terrace,"60 Congdon St, Providence, RI 02906, USA",(401) 785-9450,http://providenceri.com/parks-and-rec/neighborhood-parks,41.8298915,-71.4072831,Providence +Museum of Natural History and Planetarium,"1000 Elmwood Ave, Providence, RI 02907, USA",(401) 680-7221,http://www.providenceri.gov/museum,41.786836,-71.413225,Providence +Memorial Park,"S Main St, Providence, RI 02903, USA",Unknown,https://www.goprovidence.com/listing/memorial-park/24225/,41.8247222,-71.4075,Providence +The Stephen Hopkins House,"15 Hopkins St, Providence, RI 02903, USA",Unknown,http://www.stephenhopkins.org/,41.8251654,-71.4064672,Providence +Providence Little Italy,"280 Atwells Ave, Providence, RI 02903, USA",Unknown,Unknown,41.8235985,-71.4270198,Providence +Burnside Park,"40 Kennedy Plaza, Providence, RI 02903, USA",(401) 680-7300,Unknown,41.8254332,-71.41214099999999,Providence +Roger Williams Park Botanical Center,"Floral Ave, Providence, RI 02905, USA",(401) 680-7263,http://www.providenceri.gov/botanical-center/,41.7830028,-71.407553,Providence +DePasquale Square,"57 De Pasquale Ave, Providence, RI 02903, USA",Unknown,Unknown,41.8239823,-71.426919,Providence +Providence Rhode Island,"Providence, RI 02903, USA",Unknown,Unknown,41.8240001,-71.4128376,Providence +The Providence Athenaeum,"251 Benefit St, Providence, RI 02903, USA",(401) 421-6970,http://www.providenceathenaeum.org/,41.825788,-71.406378,Providence +Betsey Williams Cottage,"1000 Elmwood Ave, Providence, RI 02907, USA",(401) 785-9457,https://rwpconservancy.org/,41.78557259999999,-71.4163895,Providence +Lippitt House Museum,"199 Hope St, Providence, RI 02906, USA",(401) 453-0688,http://www.preserveri.org/lippitt-house-museum,41.8282963,-71.39706439999999,Providence +Scandinavian Heritage Association,"1020 S Broadway, Minot, ND 58701, USA",(701) 852-9161,https://scandinavianheritage.org/,48.225706,-101.296425,Minot +Roosevelt Park Zoo,"1219 E Burdick Expy, Minot, ND 58701, USA",(701) 857-4166,http://rpzoo.com/,48.2336684,-101.2763144,Minot +Lucy's Amusement Park,"5119 US-83, Minot, ND 58701, USA",(701) 839-2320,http://visitminot.org/play/lucys-amusement-park/,48.1849619,-101.2930499,Minot +Oak Park,"1300 4th Ave NW, Minot, ND 58703, USA",(701) 857-4136,http://minotparks.com/parks/oak-park/,48.23765119999999,-101.3139626,Minot +Taube Museum of Art,"2 Main St N, Minot, ND 58703, USA",(701) 838-4445,https://www.taubemuseum.org/,48.2365637,-101.2928545,Minot +Splash Down Dakota Water Park,"2400 10th St SW, Minot, ND 58701, USA",(701) 837-3115,https://www.choicehotels.com/north-dakota/minot/sleep-inn-hotels/nd029?source=lb,48.20522949999999,-101.3105047,Minot +Scandinavian Heritage Park,"1020 S Broadway, Minot, ND 58701, USA",(701) 852-9161,https://scandinavianheritage.org/,48.22570109999999,-101.2965857,Minot +Roosevelt Park,"1215 E Burdick Expy, Minot, ND 58701, USA",(701) 857-4114,http://minotparks.com/,48.2329004,-101.275026,Minot +The Putt District,"17 Main St S suite a, Minot, ND 58701, USA",(701) 852-7888,http://www.theputtdistrict.com/,48.23574079999999,-101.2926456,Minot +Dakota Territory Air Museum,"100 34th Ave NE, Minot, ND 58703, USA",(701) 852-8500,http://www.dakotaterritoryairmuseum.com/,48.2720261,-101.2896704,Minot +Riverwalk,"134-140 6th St SE, Minot, ND 58701, USA",Unknown,Unknown,48.2360482,-101.284282,Minot +Magic City Discovery Center,"1545 1st St NW, Minot, ND 58703, USA",(701) 858-7529,https://www.magiccitydiscoverycenter.com/,48.25244239999999,-101.2934773,Minot +Biggest Cottonwood in Minot,"205 15th St SE, Minot, ND 58701, USA",Unknown,Unknown,48.23414469999999,-101.2708917,Minot +Radio City Park,"3417 2nd St SE, Minot, ND 58701, USA",(701) 857-4136,http://minotparks.com/parks/radio-city-park/,48.19796929999999,-101.2892815,Minot +Escape Point,"18 2nd St NE Suite 3, Minot, ND 58703, USA",(701) 500-0501,http://www.escapepointnd.com/,48.2370787,-101.2898233,Minot +U.S. Space & Rocket Center,"1 Tranquility Base, Huntsville, AL 35805, USA",(800) 637-7223,https://www.rocketcenter.com/,34.7111322,-86.6539363,Huntsville +Big Spring International Park,"200 Church St SW, Huntsville, AL 35801, USA",(256) 883-3754,http://www.huntsville.org/listing/big-spring-international-park/862/,34.7287192,-86.5879066,Huntsville +Huntsville Botanical Garden,"4747 Bob Wallace Ave SW, Huntsville, AL 35805, USA",(256) 830-4447,http://hsvbg.org/,34.7074956,-86.63403749999999,Huntsville +Huntsville Museum of Art,"300 Church St SW, Huntsville, AL 35801, USA",(256) 535-4350,http://hsvmuseum.org/,34.7271426,-86.5872323,Huntsville +Burritt on the Mountain,"3101 Burritt Dr SE, Huntsville, AL 35801, USA",(256) 536-2882,http://www.burrittonthemountain.com/,34.715948,-86.539693,Huntsville +EarlyWorks Children's Museum,"404 Madison St SE, Huntsville, AL 35801, USA",(256) 564-8100,http://www.earlyworks.com/,34.7280556,-86.5844444,Huntsville +Alabama Constitution Hall Park,"109 Gates Ave SE, Huntsville, AL 35801, USA",(256) 564-8100,http://www.earlyworks.com/,34.7291338,-86.58414479999999,Huntsville +Purdy Butterfly House,"4747 Bob Wallace Ave SW, Huntsville, AL 35805, USA",(256) 830-4447,http://www.hsvbg.org/,34.710362,-86.63224199999999,Huntsville +Monte Sano State Park,"5105 Nolen Ave SE, Huntsville, AL 35801, USA",(256) 534-3757,https://www.alapark.com/parks/monte-sano-state-park,34.7399425,-86.5118155,Huntsville +U.S. Veterans Memorial Museum,"2060 Airport Rd SW, Huntsville, AL 35801, USA",(256) 883-3737,http://www.memorialmuseum.org/,34.6920508,-86.58619379999999,Huntsville +Madison County Nature Trail,"5000 Nature Trail Rd SE, Huntsville, AL 35803, USA",(256) 883-9501,https://www.madisoncountyal.gov/services/green-mountain-nature-trail-1594,34.598093,-86.517315,Huntsville +North Alabama Railroad Museum,"694 Chase Rd NE, Huntsville, AL 35811, USA",(256) 851-6276,http://www.northalabamarailroadmuseum.com/,34.7835803,-86.54621739999999,Huntsville +Weeden House Museum and Garden,"300 Gates Ave SE, Huntsville, AL 35801, USA",(256) 536-7718,http://weedenhousemuseum.com/,34.7296998,-86.5822768,Huntsville +Natural Well,"Huntsville, AL 35801, USA",Unknown,Unknown,34.7327639,-86.5263378,Huntsville +Garden Railway,"Unnamed Road, 4747 Bob Wallace Ave SW, Huntsville, AL 35805, USA",Unknown,Unknown,34.7093755,-86.6343641,Huntsville +Maple Hill Park,"1351 McClung Ave SE, Huntsville, AL 35801, USA",(256) 883-3291,Unknown,34.7309624,-86.56527109999999,Huntsville +J.D. & Annie S. Hays Nature Preserve,"7161 US-431, Owens Cross Roads, AL 35763, USA",(256) 427-5116,http://www.huntsvilleal.gov/environment/green-team/nature-preserves/hays-nature-preserve/,34.6440983,-86.47291249999999,Huntsville +Huntsville Madison County Veterans Memorial,"200 Monroe St NW, Huntsville, AL 35801, USA",(256) 604-3896,http://hmcvm.org/wp/,34.73493759999999,-86.5884878,Huntsville +Lowe Mill ARTS & Entertainment,"2211 Seminole Dr SW, Huntsville, AL 35805, USA",(256) 533-0399,http://www.lowemill.art/,34.7154142,-86.5974057,Huntsville +Huntsville Depot Museum,"320 Church St NW, Huntsville, AL 35801, USA",(256) 564-8100,http://earlyworks.com/,34.73450380000001,-86.5907715,Huntsville +San Antonio River Walk,"San Antonio, TX 78205, USA",(210) 227-4262,https://www.thesanantonioriverwalk.com/,29.42297370000001,-98.48603399999999,San Antonio +SeaWorld San Antonio,"10500 SeaWorld Dr, San Antonio, TX 78251, USA",(210) 520-4732,https://seaworld.com/san-antonio?utm_source=google&utm_medium=organic&utm_campaign=gbp_listing,29.4562822,-98.69996119999999,San Antonio +San Antonio Missions National Historical Park,"San Antonio, TX 78214, USA",(210) 534-8875,https://www.nps.gov/saan/index.htm,29.3292707,-98.4535781,San Antonio +The Alamo,"300 Alamo Plaza, San Antonio, TX 78205, USA",(210) 225-1391,http://www.thealamo.org/,29.4259671,-98.48614189999999,San Antonio +Six Flags Fiesta Texas,"San Antonio, TX 78257, USA",(210) 697-5050,https://www.sixflags.com/fiestatexas?utm_source=googlebusinessprofile&utm_medium=organic&utm_campaign=Google+Business+Profile,29.5993818,-98.6088838,San Antonio +San Antonio Museum of Art (SAMA),"200 W Jones Ave, San Antonio, TX 78215, USA",(210) 978-8100,http://www.samuseum.org/,29.4372761,-98.4821898,San Antonio +San Antonio Botanical Garden,"555 Funston Pl, San Antonio, TX 78209, USA",(210) 536-1400,https://www.sabot.org/,29.4576699,-98.45743960000001,San Antonio +Morgan's Wonderland,"5223 David Edwards Dr, San Antonio, TX 78233, USA",(210) 495-5888,https://www.morganswonderland.com/,29.5391049,-98.3926044,San Antonio +San Antonio Zoo,"3903 N St Mary's St, San Antonio, TX 78212, USA",(210) 734-7184,https://sazoo.org/,29.4623904,-98.4737232,San Antonio +Aquatica San Antonio,"10500 SeaWorld Dr, San Antonio, TX 78251, USA",(210) 520-4732,https://aquatica.com/san-antonio?utm_source=google&utm_medium=organic&utm_campaign=gbp_listing,29.45935849999999,-98.6981239,San Antonio +LEGOLAND Discovery Center San Antonio,"849 E Commerce St Suite 910, San Antonio, TX 78205, USA",(210) 610-1150,https://sanantonio.legolanddiscoverycenter.com/,29.42398349999999,-98.48462289999999,San Antonio +Sisters Grimm Ghost Tours & Oddities Parlor,"204 Alamo Plaza suite j, San Antonio, TX 78205, USA",(210) 638-1338,http://www.sistersgrimmghosttour.com/,29.4244308,-98.486446,San Antonio +Natural Bridge Caverns,"26495 Natural Bridge Caverns Rd, San Antonio, TX 78266, USA",(210) 651-6101,https://naturalbridgecaverns.com/,29.6924095,-98.3427276,San Antonio +Hemisfair,"434 S Alamo St, San Antonio, TX 78205, USA",(210) 709-4750,http://www.hemisfair.org/,29.4193306,-98.484005,San Antonio +Brackenridge Park,"3700 N St Mary's St, San Antonio, TX 78209, USA",(210) 207-7275,http://brackenridgepark.org/,29.45910009999999,-98.47149119999999,San Antonio +The DoSeum,"2800 Broadway, San Antonio, TX 78209, USA",(210) 212-4453,http://thedoseum.org/,29.4533152,-98.4716971,San Antonio +Briscoe Western Art Museum,"210 W Market St, San Antonio, TX 78205, USA",(210) 299-4499,http://www.briscoemuseum.org/,29.4229603,-98.4891439,San Antonio +Kiddie Park,"3903 N St Mary's St, San Antonio, TX 78212, USA",(210) 734-7184,https://www.kiddiepark.com/,29.4621943,-98.4734067,San Antonio +Ripley's Believe It or Not!,"307 Alamo Plaza, San Antonio, TX 78205, USA",(210) 224-9299,http://www.ripleys.com/sanantonio,29.425463,-98.487424,San Antonio +The Amazing Mirror Maze,"217 Alamo Plaza, San Antonio, TX 78205, USA",(210) 224-2288,http://www.amazingmazes.com/,29.4250871,-98.487239,San Antonio +Presque Isle Park,"Peter White Dr, Marquette, MI 49855, USA",(906) 228-0460,https://www.marquettemi.gov/departments/community-services/parks-and-recreation/presque-isle-rentals/,46.5863853,-87.38251029999999,Marquette +Upper Peninsula Children's Museum,"123 W Baraga Ave, Marquette, MI 49855, USA",(906) 226-3911,http://www.upchildrensmuseum.org/,46.5407959,-87.39477099999999,Marquette +Ellwood A Mattson Lower Harbor Park,"200 N Lakeshore Blvd, Marquette, MI 49855, USA",(906) 228-0460,https://www.marquettemi.gov/departments/community-services/parks-and-recreation/,46.5436263,-87.3874403,Marquette +Marquette Harbor Lighthouse,"300 N Lakeshore Blvd, Marquette, MI 49855, USA",(906) 226-2006,http://www.mqtmaritimemuseum.com/,46.5465629,-87.376294,Marquette +Black Rocks,"2 Peter White Dr, Marquette, MI 49855, USA",Unknown,Unknown,46.59268470000001,-87.3807946,Marquette +Marquette Regional History Center,"145 W Spring St, Marquette, MI 49855, USA",(906) 226-3571,http://www.marquettehistory.org/,46.5413889,-87.39555560000001,Marquette +De Vos Art Museum,"1401 Presque Isle Ave, Marquette, MI 49855, USA",(906) 227-2235,https://nmuartmuseum.com/,46.55821549999999,-87.4026013,Marquette +Marquette Mountain Resort,"4501 M-553, Marquette, MI 49855, USA",(906) 225-1155,http://www.marquettemountain.com/,46.5082074,-87.42080969999999,Marquette +Picnic Rocks Park,"Marquette, MI 49855, USA",(906) 228-0460,Unknown,46.5556856,-87.38430729999999,Marquette +Founders Landing,"Marquette, MI 49855, USA",Unknown,Unknown,46.5351241,-87.3940691,Marquette +Sunset Point,"2 Peter White Dr, Marquette, MI 49855, USA",Unknown,Unknown,46.59294010000001,-87.3829635,Marquette +Lower Harbor Park,"201 E Main St, Marquette, MI 49855, USA",Unknown,Unknown,46.5434973,-87.3889725,Marquette +Marquette Maritime Museum,"300 Lake Shore Blvd, Marquette, MI 49855, USA",(906) 226-2006,http://mqtmaritimemuseum.com/,46.545625,-87.379342,Marquette +Carp River Falls,"Marquette, MI 49855, USA",Unknown,Unknown,46.50367000000001,-87.44668999999999,Marquette +Tourist Park,"2145 Sugar Loaf Ave, Marquette, MI 49855, USA",(906) 228-0465,http://www.marquettemi.gov/departments/community-services/parks-and-recreation/tourist-park/,46.5689429,-87.4066982,Marquette +Upper Dead River Falls,"Marquette, MI 49855, USA",Unknown,Unknown,46.56926,-87.478754,Marquette +Gold Mine Falls,"Marquette, MI 49855, USA",Unknown,Unknown,46.69444000000001,-87.58425,Marquette +Shiras Park,"N Lakeshore Blvd, Marquette, MI 49855, USA",Unknown,Unknown,46.5547003,-87.38250099999999,Marquette +Mt. Marquette Overlook,"Marquette, MI 49855, USA",Unknown,Unknown,46.5138866,-87.4010806,Marquette +Hogback Mountain,"Marquette, MI 49855, USA",Unknown,Unknown,46.6051167,-87.4897543,Marquette +Smothers Park,"199 W Veterans Blvd, Owensboro, KY 42303, USA",(270) 687-8333,https://www.owensboroparks.org/parks/smothers-park/,37.776193,-87.1118795,Owensboro +Owensboro Museum of Science and History,"122 E 2nd St, Owensboro, KY 42303, USA",(270) 687-2732,http://www.owensboromuseum.org/,37.774834,-87.1101781,Owensboro +Joe Ford Nature Park,"3870 W 2nd St, Owensboro, KY 42301, USA",(270) 240-1300,https://owensboroparks.org/parks/joe-ford-nature-park/,37.7737665,-87.16379219999999,Owensboro +Owensboro Museum of Fine Art,"901 Frederica St, Owensboro, KY 42301, USA",(270) 685-3181,http://www.omfa.us/,37.7671693,-87.1122395,Owensboro +Western Kentucky Botanical Garden,"2731 W 2nd St, Owensboro, KY 42301, USA",(270) 993-1234,http://www.wkbg.org/,37.7765522,-87.1448609,Owensboro +Russell Shifley Park,"2731 Bittel Rd, Owensboro, KY 42301, USA",(270) 687-8700,Unknown,37.7519459,-87.14979799999999,Owensboro +Legion Park,"3047 Legion Park Dr, Owensboro, KY 42303, USA",(270) 687-8700,https://owensboroparks.org/parks/legion-park/,37.7409413,-87.1053012,Owensboro +Sassafras Tree,"2100-2166, KY-2831, Owensboro, KY 42301, USA",Unknown,Unknown,37.754887,-87.11169199999999,Owensboro +Panther Creek Park,"5160 Wayne Bridge Rd, Owensboro, KY 42301, USA",Unknown,http://www.daviessky.org/,37.716463,-87.216089,Owensboro +Owensboro Mural,"215 E 2nd St, Owensboro, KY 42303, USA",Unknown,Unknown,37.7751875,-87.1093415,Owensboro +Kentucky Mirror Mosiac,"319 E 2nd St, Owensboro, KY 42303, USA",Unknown,Unknown,37.7752968,-87.10811679999999,Owensboro +English Park,"2 Woodford Ave, Owensboro, KY 42303, USA",(270) 687-8700,https://owensboroparks.org/parks/english-park/,37.7780457,-87.12813919999999,Owensboro +Bluegrass Music Hall of Fame & Museum,"311 W 2nd St, Owensboro, KY 42301, USA",(270) 926-7891,http://www.bluegrasshall.org/,37.77493749999999,-87.11415199999999,Owensboro +Jack C. Fisher Park,"3900 W 5th Street Rd, Owensboro, KY 42301, USA",(270) 687-8725,https://owensboroparks.org/parks/jack-c-fisher-park/,37.7618022,-87.15992349999999,Owensboro +Ben Hawes Park,"400 Booth Field Rd, Owensboro, KY 42301, USA",(270) 687-7134,https://owensboroparks.org/parks/ben-hawes-park/,37.7952399,-87.1834378,Owensboro +Yellow Creek Park,"5710 KY-144, Owensboro, KY 42303, USA",(270) 685-6142,https://www.daviessky.org/yellow-creek-park/,37.799949,-87.026535,Owensboro +Yewells-Heritage Park,"Owensboro, KY 42303, USA",Unknown,https://owensboroparks.org/parks/yewell-heritage-park/,37.7461953,-87.06998809999999,Owensboro +Whitehead Memorial Museum,"1308 S Main St, Del Rio, TX 78840, USA",(830) 774-7568,http://www.whiteheadmuseum.org/,29.3516888,-100.8980148,Del Rio +Moore Park,"100 Swift Street, Del Rio, TX 78840, USA",(830) 774-8541,http://www.cityofdelrio.com/,29.3683043,-100.8827224,Del Rio +The Brinkley Mansion,"512 Qualia Dr, Del Rio, TX 78840, USA",(830) 775-1803,https://www.hmdb.org/m.asp?m=185127,29.33961590000001,-100.9020068,Del Rio +Amistad National Recreation Area,"4121 Veterans Blvd, Del Rio, TX 78840, USA",(830) 775-7491,https://www.nps.gov/amis/index.htm,29.5353461,-101.075648,Del Rio +Park Del Rio,"398-300 Perry St, Del Rio, TX 78840, USA",(830) 774-8541,https://www.cityofdelrio.com/government/departments/parks-recreation,29.3325669,-100.9213113,Del Rio +Devils River State Natural Area,"21715 Dolan Crk Rd, Del Rio, TX 78840, USA",(830) 395-2133,http://www.tpwd.state.tx.us/state-parks/parks/find-a-park/devils-river-state-natural-area,29.9401792,-100.9698151,Del Rio +Laughlin Heritage Foundation Museum,"309 S Main St, Del Rio, TX 78840, USA",(830) 719-9380,http://www.laughlinheritagefoundationmuseum.org/,29.3614283,-100.9002542,Del Rio +Portsmouth Historic Dockyard,"Victory Gate, HM Naval Base, Portsmouth PO1 3LJ, UK",023 9283 9766,https://www.historicdockyard.co.uk/,50.800531,-1.1094659,Portsmouth +Mary Rose Museum,"Main Rd, HM Naval Base, Portsmouth PO1 3PY, UK",023 9281 2931,https://maryrose.org/,50.8022114,-1.1088526,Portsmouth +Spinnaker Tower,"Portsmouth PO1 3TT, UK",023 9285 7520,https://www.spinnakertower.co.uk/,50.79557519999999,-1.1085171,Portsmouth +The D-Day Story,"Clarence Esplanade, Southsea, Portsmouth PO5 3NT, UK",023 9288 2555,https://theddaystory.com/,50.77964100000001,-1.089412,Portsmouth +HMS Victory,"Main Rd, HM Naval Base, Portsmouth PO1 3LJ, UK",023 9283 9766,https://www.nmrn.org.uk/hms-victory/,50.8017096,-1.1095345,Portsmouth +HMS Warrior,"Victory Gate, Portsmouth PO1 3QX, UK",023 9277 8600,https://historicdockyard.co.uk/discover/hms-warrior/,50.7982384,-1.1092475,Portsmouth +Portsmouth Museum and Art Gallery,"Museum Rd, Portsmouth PO1 2LJ, UK",023 9283 4779,https://portsmouthmuseum.co.uk/,50.79156099999999,-1.097727,Portsmouth +Action Stations,"19 College Rd, HM Naval Base, Portsmouth PO1 3LJ, UK",023 9289 3338,Unknown,50.7999392,-1.1069561,Portsmouth +South Parade Pier,"S Parade, Southsea, Portsmouth, Southsea PO4 0SW, UK",023 9421 0888,http://southparadepier.net/,50.77922590000001,-1.0763774,Portsmouth +National Museum of the Royal Navy,"HM Naval Base (PP66), HM Naval Base, Portsmouth PO1 3NH, UK",023 9289 1370,http://www.nmrn.org.uk/,50.8009215,-1.1100098,Portsmouth +Charles Dickens' Birthplace Museum,"393 Old Commercial Rd, Portsmouth PO1 4QL, UK",023 9282 1879,https://charlesdickensbirthplace.co.uk/,50.80706399999999,-1.0871982,Portsmouth +Round Tower,"Broad St, Old Portsmouth, Portsmouth PO1 2JE, UK",023 9282 7261,https://www.visitportsmouth.co.uk/things-to-do/round-tower-p267631,50.7905018,-1.1088269,Portsmouth +The Portsmouth Ghost Walk,"Broad St, Old Portsmouth, Portsmouth PO1 2ND, UK",01962 435020,https://ghost-walks.com/portsmouth-ghost-tours,50.789334,-1.1064023,Portsmouth +Portsmouth Cathedral,"High St, Old Portsmouth, Portsmouth PO1 2HA, UK",023 9282 3300,https://portsmouthcathedral.org.uk/,50.79046879999999,-1.1042969,Portsmouth +Blue Reef Aquarium Portsmouth,"Clarence Esplanade, Southsea, Portsmouth, Southsea PO5 3PB, UK",023 9287 5222,http://www.bluereefaquarium.co.uk/portsmouth,50.7802299,-1.0927269,Portsmouth +Victoria Park,"3 Stanhope Rd, Portsmouth PO1 3HJ, UK",023 9282 2251,https://victoriaparkportsmouth.org.uk/,50.7989677,-1.0941696,Portsmouth +Southsea Model Village,"Lumps Fort, Eastney Esplanade, Southsea, Portsmouth, Southsea PO4 9RU, UK",023 9275 1443,https://www.southseamodelvillage.biz/,50.781011,-1.068746,Portsmouth +Cumberland House Natural History Museum,"Cumberland House Natural History Museum, Eastern Parade, Southsea, Portsmouth PO4 9RF, UK",023 9281 5276,https://portsmouthnaturalhistory.co.uk/,50.78209700000001,-1.070221,Portsmouth +Exploria,"Pyramids Centre, Clarence Esplanade, Southsea, Portsmouth, Southsea PO5 3ST, UK",023 9320 0330,https://www.exploria.org.uk/,50.7791692,-1.0847654,Portsmouth +Southsea Beach,"Southsea, Portsmouth, Southsea PO4 9RG, UK",Unknown,Unknown,50.77978509999999,-1.0718758,Portsmouth +WonderLab Science Museum,"308 W 4th St, Bloomington, IN 47404, USA",(812) 337-1337,http://www.wonderlab.org/,39.1659081,-86.5366466,Bloomington +Wylie House Museum,"307 E 2nd St, Bloomington, IN 47401, USA",(812) 855-6224,https://libraries.indiana.edu/wylie-house-museum,39.1617051,-86.53087579999999,Bloomington +Eskenazi Museum of Art,"Eskenazi Museum of Art, 1133 E 7th St, Bloomington, IN 47405, USA",(812) 855-5445,https://artmuseum.indiana.edu/,39.1691444,-86.5197216,Bloomington +Bloomington Arboretum,"E 10th St, Bloomington, IN 47405, USA",Unknown,http://www.visitbloomington.com/listings/?action=display&listingID=558&menuID=151&hit=1,39.1707328,-86.5189842,Bloomington +Lower Cascades Park,"2851 Old State Rd 37, Bloomington, IN 47404, USA",(812) 349-3700,https://bloomington.in.gov/lower-cascades,39.1978221,-86.5376888,Bloomington +Captain Janeway Statue,"308 W 4th St, Bloomington, IN 47404, USA",Unknown,https://janewaycollective.com/,39.1658859,-86.53616869999999,Bloomington +Tibetan Mongolian Buddhist Cultural Center,"3655 S Snoddy Rd, Bloomington, IN 47401, USA",(812) 336-6807,http://www.tmbcc.org/,39.1228687,-86.486278,Bloomington +Switchyard Park,"1601 S Rogers St, Bloomington, IN 47403, USA",(812) 349-3400,https://bloomington.in.gov/parks/parks/switchyard-park,39.14677219999999,-86.5370726,Bloomington +Sample Gates,"E Kirkwood Ave & S Indiana Ave, Bloomington, IN 47405, USA",(812) 349-3700,https://www.visitbloomington.com/listing/sample-gates/309/,39.1665451,-86.52661309999999,Bloomington +Wapehani Mountain Bike Park,"3401 W Wapehani Rd, Bloomington, IN 47403, USA",(812) 349-3736,https://bloomington.in.gov/parks/parks/wapehani-mountain-bike-park,39.1436246,-86.5689235,Bloomington +Urban Air Trampoline and Adventure Park,"3603 IN-46, Bloomington, IN 47404, USA",(812) 727-8309,https://www.urbanair.com/indiana-bloomington?utm_source=gmb&utm_medium=website,39.2091383,-86.58398,Bloomington +Park Ridge East Park,"4500 E Morningside Dr, Bloomington, IN 47408, USA",(812) 349-3400,https://bloomington.in.gov/parks/parks/park-ridge-east-park,39.1670904,-86.47433079999999,Bloomington +Visit Bloomington,"2855 N Walnut St, Bloomington, IN 47404, USA",(800) 800-0037,http://www.visitbloomington.com/,39.1962495,-86.5345835,Bloomington +Upper Cascades Park,"514 W Club House Dr, Bloomington, IN 47404, USA",(812) 349-3400,https://bloomington.in.gov/locations/upper-cascades-park-playground,39.2033642,-86.53949709999999,Bloomington +Kentucky Horse Park,"4089 Iron Works Pkwy, Lexington, KY 40511, USA",(859) 233-4303,http://www.kyhorsepark.com/,38.1496243,-84.51988539999999,Lexington +Mary Todd Lincoln House,"578 W Main St, Lexington, KY 40507, USA",(859) 233-9999,http://www.mtlhouse.org/,38.051281,-84.502738,Lexington +Raven Run Nature Sanctuary,"3885 Raven Run Wy, Lexington, KY 40515, USA",(859) 272-6105,http://www.lexingtonky.gov/raven-run-nature-sanctuary,37.88938760000001,-84.3945334,Lexington +McConnell Springs Park,"416 Rebmann Ln, Lexington, KY 40504, USA",(859) 225-4073,https://www.lexingtonky.gov/mcconnell-springs-park,38.0549694,-84.52782499999999,Lexington +Waveland State Historic Site,"225 Waveland Museum Ln, Lexington, KY 40514, USA",(859) 272-3611,https://parks.ky.gov/lexington/parks/historic/waveland-state-historic-site,37.97126569999999,-84.5374389,Lexington +Aviation Museum of Kentucky,"4029 Airport Rd, Lexington, KY 40510, USA",(859) 231-1219,https://www.aviationky.org/,38.0334207,-84.59846809999999,Lexington +Ashland - The Henry Clay Estate,"120 Sycamore Rd, Lexington, KY 40502, USA",(859) 266-8581,http://www.henryclay.org/,38.02854329999999,-84.4801454,Lexington +Fright Nights Kentucky,"1209 E New Circle Rd Suite 190, Lexington, KY 40505, USA",(859) 940-8143,https://www.frightnightskentucky.com/,38.0316927,-84.4517899,Lexington +Explorium of Lexington,"440 W Short St, Lexington, KY 40507, USA",(859) 258-3253,http://explorium.com/,38.050004,-84.500023,Lexington +The Loudoun House,"209 Castlewood Dr, Lexington, KY 40505, USA",(859) 254-7024,https://www.nps.gov/nr/travel/lexington/lou.htm,38.05532590000001,-84.4760331,Lexington +The Living Arts & Science Center,"362 N Martin Luther King Blvd, Lexington, KY 40508, USA",(859) 252-5222,http://www.lasclex.org/,38.0487812,-84.488621,Lexington +Thoroughbred Park,"100 Midland Ave, Lexington, KY 40507, USA",(859) 233-7299,Unknown,38.04164299999999,-84.49029759999999,Lexington +Jacobson Park,"Jacobson Park, 4001 Athens Boonesboro Rd, Lexington, KY 40509, USA",(859) 288-2900,https://www.lexingtonky.gov/departments/parks-recreation,37.9842776,-84.42582929999999,Lexington +Southern Lights,"Kentucky Horse Park Campground Entrance, 4089 Iron Works Pike, Lexington, KY 40511, USA",(859) 255-5727,http://www.southernlightsky.com/,38.14507820000001,-84.52255,Lexington +Spencer Reinhard mural,"112 E Vine St, Lexington, KY 40507, USA",Unknown,Unknown,38.0450294,-84.49784249999999,Lexington +The Garden at Ashland Estate,"1305 Fincastle Rd, Lexington, KY 40502, USA",Unknown,https://henryclay.org/mansion-grounds/grounds-gardens/,38.0284629,-84.4805654,Lexington +The Lexington Cemetery,"833 W Main St, Lexington, KY 40508, USA",(859) 255-5522,http://www.lexcem.org/,38.06074,-84.510421,Lexington +Keeneland Association Inc,"4201 Versailles Rd, Lexington, KY 40510, USA",(859) 254-3412,http://www.keeneland.com/,38.0469517,-84.60624039999999,Lexington +Kentucky River Palisades,"Lexington, KY 40515, USA",Unknown,Unknown,37.8927925,-84.3830531,Lexington +The Arboretum State Botanical Garden of Kentucky,"University of Kentucky, 500 Alumni Dr, Lexington, KY 40503, USA",(859) 257-6955,http://arboretum.ca.uky.edu/,38.01431949999999,-84.5041735,Lexington +Santa Barbara Botanic Garden,"1212 Mission Canyon Rd, Santa Barbara, CA 93105, USA",(805) 682-4726,http://sbbotanicgarden.org/,34.4565481,-119.7100254,Santa Barbara +Santa Barbara Zoo,"500 Ninos Dr, Santa Barbara, CA 93103, USA",(805) 962-5339,http://www.sbzoo.org/,34.4204053,-119.6670952,Santa Barbara +Santa Barbara Museum of Natural History Sea Center,"211 Stearns Wharf, Santa Barbara, CA 93101, USA",(805) 962-2526,https://www.sbnature.org/seacenter,34.4104119,-119.6857157,Santa Barbara +"MOXI, The Wolf Museum of Exploration + Innovation","125 State St, Santa Barbara, CA 93101, USA",(805) 770-5000,http://moxi.org/,34.41343699999999,-119.691698,Santa Barbara +Santa Barbara Museum Of Art,"1130 State St, Santa Barbara, CA 93101, USA",(805) 963-4364,http://www.sbma.net/,34.42340499999999,-119.7039316,Santa Barbara +The Funk Zone,"137 Anacapa St, Santa Barbara, CA 93101, USA",Unknown,https://www.funkzone.net/,34.4150309,-119.6904939,Santa Barbara +Pier Santa Barbara,"144-152 Stearns Wharf, Santa Barbara, CA 93101, USA",Unknown,http://stearnswharf.org/,34.41024379999999,-119.6865171,Santa Barbara +Santa Barbara Maritime Museum,"113 Harbor Way STE 190, Santa Barbara, CA 93109, USA",(805) 962-8404,http://www.sbmm.org/,34.4040808,-119.6937357,Santa Barbara +Old Mission Santa Barbara 1786,"2201 Laguna St, Santa Barbara, CA 93105, USA",(805) 682-4713,http://www.santabarbaramission.org/,34.4383262,-119.7140678,Santa Barbara +Visit Santa Barbara,"500 E Montecito St, Santa Barbara, CA 93103, USA",(805) 966-9222,https://santabarbaraca.com/,34.4198176,-119.6890404,Santa Barbara +1000 Steps Beach,"1429 Shoreline Dr, Santa Barbara, CA 93109, USA",Unknown,https://sbparksandrec.santabarbaraca.gov/parks/thousand-steps,34.39595870000001,-119.7133251,Santa Barbara +Santa Barbara Museum of Natural History,"2559 Puesta Del Sol, Santa Barbara, CA 93105, USA",(805) 682-4711,https://sbnature.org/,34.4409134,-119.7144601,Santa Barbara +Shoreline Park,"Shoreline Dr & Santa Rosa Place, Santa Barbara, CA 93109, USA",(805) 564-5418,http://www.santabarbaraca.gov/Parks/parks_community_main.html,34.3964348,-119.7067671,Santa Barbara +Scavenger Hunt Walking Tours - Santa Barbara,"1033 State St, Santa Barbara, CA 93101, USA",(916) 597-2923,https://www.scavengerhuntwalkingtours.com/,34.4220889,-119.7031836,Santa Barbara +Outdoors Santa Barbara Visitor Center,"113 Harbor Way, Santa Barbara, CA 93109, USA",(805) 456-8752,https://sbmm.org/visitor-center/,34.4039769,-119.6938188,Santa Barbara +Stearns Wharf,"217 Stearns Wharf, Santa Barbara, CA 93101, USA",(805) 698-5600,http://www.stearnswharf.org/,34.4100096,-119.6859749,Santa Barbara +Chase Palm Park,"323 E Cabrillo Blvd, Santa Barbara, CA 93101, USA",(805) 897-1983,https://sbparksandrec.santabarbaraca.gov/park/chase-palm-park,34.4154207,-119.6828708,Santa Barbara +El Presidio de Santa Bárbara State Historic Park,"123 E Canon Perdido St, Santa Barbara, CA 93101, USA",(805) 965-0093,https://www.sbthp.org/,34.42259379999999,-119.6988752,Santa Barbara +Santa Barbara Historical Museum,"136 E De La Guerra St, Santa Barbara, CA 93101, USA",(805) 966-1601,https://www.sbhistorical.org/,34.421553,-119.6971856,Santa Barbara +Arroyo Burro Beach County Park,"2981 Cliff Dr, Santa Barbara, CA 93109, USA",(805) 687-3714,http://www.countyofsb.org/parks/parks02.aspx?id=7942,34.4028444,-119.7432062,Santa Barbara +National Aquarium,"501 E Pratt St, Baltimore, MD 21202, USA",(410) 576-3800,https://aqua.org/,39.2853928,-76.6083984,Baltimore +Fort McHenry National Monument and Historic Shrine,"2400 E Fort Ave, Baltimore, MD 21230, USA",(410) 962-4290,https://www.nps.gov/fomc/index.htm,39.26410070000001,-76.58064139999999,Baltimore +The Walters Art Museum,"Baltimore, MD 21201, USA",(410) 547-9000,https://thewalters.org/,39.296425,-76.61649849999999,Baltimore +Baltimore Museum of Industry,"1415 Key Hwy, Baltimore, MD 21230, USA",(410) 727-4808,http://www.thebmi.org/,39.27395689999999,-76.6016162,Baltimore +Historic Ships in Baltimore,"301 E Pratt St, Baltimore, MD 21202, USA",(410) 539-1797,http://historicships.org/,39.28560470000001,-76.6110054,Baltimore +The Maryland Zoo in Baltimore,"1 Safari Pl, Baltimore, MD 21217, USA",(410) 396-7102,https://www.marylandzoo.org/,39.32270679999999,-76.6498096,Baltimore +Top of the World Observation Level,"401 E Pratt St 27th floor, Baltimore, MD 21202, USA",(410) 837-8439,http://www.viewbaltimore.org/,39.28601689999999,-76.6094754,Baltimore +American Visionary Art Museum,"800 Key Hwy, Baltimore, MD 21230, USA",(410) 244-1900,https://www.avam.org/,39.2804205,-76.6068947,Baltimore +B&O Railroad Museum,"901 W Pratt St, Baltimore, MD 21223, USA",(410) 752-2490,http://www.borail.org/,39.28546809999999,-76.6326119,Baltimore +Maryland Science Center,"601 Light St, Baltimore, MD 21230, USA",(410) 685-2370,http://www.mdsci.org/,39.28141490000001,-76.61191699999999,Baltimore +Baltimore Museum of Art,"10 Art Museum Dr, Baltimore, MD 21218, USA",(443) 573-1700,https://artbma.org/,39.3261668,-76.6193437,Baltimore +Inner Harbor,"401 Light St, Baltimore, MD 21202, USA",Unknown,Unknown,39.2830332,-76.6117345,Baltimore +Fell's Point,"1724 Thames St, Baltimore, MD 21231, USA",(410) 675-6751,http://www.fellspoint.us/,39.2822341,-76.5916767,Baltimore +Pierce's Park,"701 E Pratt St, Baltimore, MD 21202, USA",(443) 743-3308,Unknown,39.2853334,-76.605509,Baltimore +Baltimore Harbor,"Harborplace, Baltimore, MD 21230, USA",Unknown,Unknown,39.2857226,-76.61166519999999,Baltimore +Port Discovery Children's Museum,"35 Market Pl, Baltimore, MD 21202, USA",(410) 727-8120,http://www.portdiscovery.org/,39.2890694,-76.60628890000001,Baltimore +Seven Foot Knoll Lighthouse,"Pier 5, Baltimore, MD 21202, USA",(410) 539-1797,https://historicships.org/explore/sevenfootknoll-lighthouse,39.2836124,-76.6053712,Baltimore +Federal Hill Park,"300 Warren Ave, Baltimore, MD 21230, USA",Unknown,http://www.federalhillonline.com/,39.2797209,-76.60846219999999,Baltimore +Patterson Park,"2601 E Baltimore St, Baltimore, MD 21224, USA",(410) 276-3676,https://bcrp.baltimorecity.gov/parks/patterson-park,39.2896838,-76.57987829999999,Baltimore +Oriole Park at Camden Yards,"333 W Camden St, Baltimore, MD 21201, USA",(410) 685-9800,http://www.mlb.com/orioles,39.28381940000001,-76.62167819999999,Baltimore +Sea Dragon Pirate Cruise,"5325 N Lagoon Dr, Panama City, FL 32408, USA",(850) 234-7400,https://www.piratecruise.net/,30.1480105,-85.7446496,Panama City +Coconut Creek Family Fun Park,"9807 Front Beach Rd, Panama City Beach, FL 32407, USA",(850) 234-2625,http://coconutcreekfun.com/,30.1784026,-85.79868870000001,Panama City +ZooWorld Zoological Park,"9008 Front Beach Rd, Panama City Beach, FL 32407, USA",(850) 230-1243,http://www.zooworldpcb.com/,30.182227,-85.787261,Panama City +Ripley's Believe It or Not!,"9907 Front Beach Rd, Panama City Beach, FL 32407, USA",(850) 230-6113,http://www.ripleys.com/panamacitybeach,30.1783208,-85.79935499999999,Panama City +Oaks by the Bay Park,"2715 W 10th St, Panama City, FL 32401, USA",(850) 872-3199,https://www.pcgov.org/190/Leisure-Services,30.16642,-85.7010009,Panama City +Island Tiki Tours,"312 Bay Shore Dr, Panama City Beach, FL 32407, USA",(850) 832-5958,http://islandtikitours.com/,30.1894692,-85.7536775,Panama City +Panama City Small Diamond Railroad Crossing,"400 S East Ave, Panama City, FL 32401, USA",Unknown,Unknown,30.1398729,-85.62543749999999,Panama City +St. Andrews State Park,"4607 State Park Ln, Panama City, FL 32408, USA",(850) 708-6100,https://www.floridastateparks.org/park/St-Andrews,30.13144370000001,-85.7365997,Panama City +Escape Manor,"430 Harrison Ave, Panama City, FL 32401, USA",(850) 319-4343,https://www.panamacityescape.com/bookings,30.155813,-85.659966,Panama City +SkyWheel Panama City Beach,"15700 L C Hilton Jr Dr, Panama City Beach, FL 32413, USA",(850) 888-0020,http://skywheelpcb.com/,30.218174,-85.87276899999999,Panama City +Rick Seltzer Park,"7419 Thomas Dr, Panama City Beach, FL 32408, USA",(850) 233-6503,http://www.visitpanamacitybeach.com/listings/rick-seltzer-park/545/?fromMenu=778&startrow=1,30.159265,-85.777395,Panama City +Cobra Adventure Park,"9323 Front Beach Rd, Panama City, FL 32408, USA",(850) 235-0321,http://www.visitpanamacitybeach.com/listings/cobra-adventure-park/169/,30.18014619999999,-85.7917475,Panama City +Frank Brown Park,"16200 Panama City Beach Pkwy, Panama City Beach, FL 32413, USA",(850) 233-5045,https://www.pcbfl.gov/departments/parks-recreation-department/parks-facilities/frank-brown-park,30.2297876,-85.8771235,Panama City +WonderWorks Panama City Beach,"9910 Front Beach Rd, Panama City Beach, FL 32407, USA",(850) 249-7000,http://www.wonderworksonline.com/panama-city-beach,30.1789395,-85.7996003,Panama City +Sea Screamer,"3605 Thomas Dr, Panama City Beach, FL 32408, USA",(850) 235-3000,http://www.seascreamer.net/,30.14562559999999,-85.74879760000002,Panama City +Race City,"9523 Front Beach Rd, Panama City Beach, FL 32407, USA",(850) 234-1588,http://racecitypcb.com/,30.1788997,-85.79409179999999,Panama City +Man in the Sea Museum,"17314 Panama City Beach Pkwy, Panama City Beach, FL 32413, USA",(850) 235-4101,https://maninthesea.org/,30.2325158,-85.89304899999999,Panama City +Gulf World Marine Park,"15412 Front Beach Rd, Panama City Beach, FL 32413, USA",(850) 234-5271,http://www.gulfworldmarinepark.com/,30.2109791,-85.8675365,Panama City +Panama City Beach,"16201 Front Beach Rd, Panama City Beach, FL 32413, USA",Unknown,Unknown,30.215551,-85.8770009,Panama City +Jetties,"4607 State Park Ln, Panama City, FL 32408, USA",Unknown,Unknown,30.12196569999999,-85.733193,Panama City +Fort Abercrombie State Historic Park,"Miller Point, Kodiak, AK 99615, USA",(907) 486-6339,https://dnr.alaska.gov/parks/aspunits/kodiak/fortabercrombieshp.htm,57.8340488,-152.3572397,Kodiak +Kodiak National Wildlife Refuge Main Office,"1390 Buskin River Rd, Kodiak, AK 99615, USA",(907) 487-2600,https://www.fws.gov/refuge/kodiak/,57.7588871,-152.4984963,Kodiak +Alutiiq Museum,"215 Mission Road, First Floor, Kodiak, AK 99615, USA",(844) 425-8844,http://alutiiqmuseum.org/,57.78903219999999,-152.4020219,Kodiak +Kodiak Maritime Museum,"500 Alimaq Dr., Trident Way, Kodiak, AK 99615, USA",(907) 486-0384,http://www.kodiakmaritimemuseum.org/,57.7818449,-152.4063253,Kodiak +Ambassador Adventures of Kodiak,"2678 Lake View Dr, Kodiak, AK 99615, USA",(907) 942-2904,http://www.ambassadoradventureskodiak.com/,57.81790030000001,-152.3791074,Kodiak +Holy Resurrection Orthodox Cathedral,"385 Kashevaroff Ave, Kodiak, AK 99615, USA",(907) 486-5532,https://www.facebook.com/hrckodiak/,57.7885208,-152.4023958,Kodiak +Buskin River State Park,"Kodiak, AK 99615, USA",Unknown,https://dnr.alaska.gov/parks/aspunits/kodiak/buskinriversrs.htm,57.75611730000001,-152.4887156,Kodiak +Kodiak History Museum,"101 E Marine Way, Kodiak, AK 99615, USA",(907) 486-5920,https://kodiakhistorymuseum.org/,57.78763490000001,-152.4032831,Kodiak +Kodiak National Wildlife Refuge Visitor Center,"402 Center St, Kodiak, AK 99615, USA",(907) 487-2626,http://kodiak.fws.gov/,57.7874946,-152.4041484,Kodiak +Kodiak Scenic Tours,"539 Alimaq Dr, Kodiak, AK 99615, USA",(907) 654-9653,https://www.kodiaktravels.com/boat-adventures.html,57.78332169999999,-152.4045139,Kodiak +Woody Island NDB RWO 394,"Kodiak, AK 99615, USA",Unknown,Unknown,57.7748116,-152.3246014,Kodiak +Dark Lake Park,"Kodiak, AK 99615, USA",Unknown,Unknown,57.8121295,-152.3704491,Kodiak +Northend Park,"100 Alimaq Dr, Kodiak, AK 99615, USA",Unknown,Unknown,57.7861584,-152.3948386,Kodiak +Sea Hawk Air,"506 Trident Way, Kodiak, AK 99615, USA",(907) 486-8282,https://www.seahawkair.com/,57.7784996,-152.3981933,Kodiak +Kodiak Military History Museum at Miller Point Fort Abercrombie,"1100 Abercrombie Dr, Kodiak, AK 99615, USA",(907) 486-7015,http://www.kadiak.org/museum/museum.html,57.8366,-152.3536,Kodiak +Adventures In Kodiak,"208 E Rezanof Dr, Kodiak, AK 99615, USA",(907) 539-8866,https://www.possibilitiesunlimitedalaska.com/,57.79007439999999,-152.404408,Kodiak +Kodiak Visitor Info Center,"100 E Marine Way STE 200, Kodiak, AK 99615, USA",(907) 486-4070,Unknown,57.7871234,-152.4029139,Kodiak +Kayak Kodiak LLC,"1231 Mill Bay Rd, Kodiak, AK 99615, USA",(907) 512-5112,http://www.kayakingkodiak.com/,57.7971704,-152.3908884,Kodiak +Kingfisher Aviation,"1829 Mill Bay Rd, Kodiak, AK 99615, USA",(907) 486-5155,http://www.kingfisheraviation.com/,57.8030438,-152.3782885,Kodiak +Downtown Kodiak,"411 W Marine Way, Kodiak, AK 99615, USA",Unknown,Unknown,57.7885819,-152.408719,Kodiak +Jacksonville Zoo and Gardens,"370 Zoo Pkwy, Jacksonville, FL 32218, USA",(904) 757-4463,http://www.jacksonvillezoo.org/,30.40222359999999,-81.6432579,Jacksonville +Southbank Riverwalk,"1001 Museum Cir, Jacksonville, FL 32207, USA",(904) 630-2489,http://downtownjacksonville.org/locations/l-100-southbank-riverwalk.aspx,30.3201479,-81.6564993,Jacksonville +MOSH (Museum Of Science & History),"1025 Museum Cir, Jacksonville, FL 32207, USA",(904) 396-6674,http://themosh.org/,30.31886519999999,-81.65976669999999,Jacksonville +Kingsley Plantation,"11676 Palmetto Ave, Jacksonville, FL 32226, USA",(904) 251-3537,https://www.nps.gov/timu/learn/historyculture/kp_visiting.htm,30.43989019999999,-81.43780919999999,Jacksonville +Tree Hill Nature Center,"7152 Lone Star Rd, Jacksonville, FL 32211, USA",(904) 724-4646,http://www.treehill.org/,30.3334246,-81.58278620000002,Jacksonville +Kathryn Abbey Hanna Park,"500 Wonderwood Dr, Jacksonville, FL 32233, USA",(904) 255-6767,http://www.coj.net/departments/parks-and-recreation/recreation-and-community-programming/kathryn-abbey-hanna-park.aspx,30.37092519999999,-81.4067718,Jacksonville +Castaway Island Preserve,"2885 San Pablo Rd S, Jacksonville, FL 32225, USA",(904) 630-2489,https://www.timucuanparks.org/castaway-island-preserve/,30.2961292,-81.4376879,Jacksonville +Jacksonville Arboretum & Botanical Gardens,"1445 Millcoe Rd, Jacksonville, FL 32225, USA",(904) 318-4342,http://www.jacksonvillearboretum.org/,30.3461357,-81.5397758,Jacksonville +Fort George Island Cultural State Park,"12241 Fort George Rd, Jacksonville, FL 32226, USA",(904) 251-2320,https://www.floridastateparks.org/parks-and-trails/fort-george-island-cultural-state-park,30.42393759999999,-81.43133209999999,Jacksonville +Cummer Museum of Art & Gardens,"829 Riverside Ave, Jacksonville, FL 32204, USA",(904) 356-6857,http://www.cummermuseum.org/,30.31513780000001,-81.6769552,Jacksonville +The Catty Shack Ranch Wildlife Sanctuary,"1860 Starratt Rd, Jacksonville, FL 32226, USA",(904) 757-3603,https://cattyshack.org/,30.4931781,-81.58749159999999,Jacksonville +James Weldon Johnson Park,"135 W Monroe St, Jacksonville, FL 32202, USA",(904) 515-5098,https://jamesweldonjohnsonpark.org/events/,30.328937,-81.659251,Jacksonville +Shipwreck Island Water Park,"1944 Beach Blvd, Jacksonville Beach, FL 32250, USA",(904) 246-4386,https://jacksonville-beach.adventurelanding.com/attractions/shipwreck-island-waterpark/,30.2874387,-81.4117421,Jacksonville +Beaches Museum,"381 Beach Blvd, Jacksonville Beach, FL 32250, USA",(904) 241-5657,http://beachesmuseum.org/,30.2885577,-81.39276009999999,Jacksonville +"MOCA (Museum Of Contemporary Art), Jacksonville","333 N Laura St, Jacksonville, FL 32202, USA",(904) 366-6911,http://mocajacksonville.unf.edu/,30.3292778,-81.65840829999999,Jacksonville +Huguenot Memorial Park,"10980 Heckscher Dr, Jacksonville, FL 32226, USA",(904) 255-4255,http://www.coj.net/departments/parks-and-recreation/recreation-and-community-programming/huguenot-memorial-park.aspx,30.4110088,-81.4204882,Jacksonville +Timucuan Ecological and Historical Preserve,"12713 Ft Caroline Rd, Jacksonville, FL 32225, USA",(904) 641-7155,https://www.nps.gov/timu/index.htm,30.4544578,-81.4498717,Jacksonville +Museum of Southern History,"4304 Herschel St, Jacksonville, FL 32210, USA",(904) 750-1950,https://www.museumsouthernhistory.com/,30.2829643,-81.71375309999999,Jacksonville +Walter Jones Historic Park,"11964 Mandarin Rd, Jacksonville, FL 32223, USA",(904) 268-0784,http://www.mandarinmuseum.net/visit/walter-jones-historical-park,30.1653631,-81.64645589999999,Jacksonville +Friendship Fountain,"1015 Museum Cir, Jacksonville, FL 32207, USA",(904) 630-2489,http://www.coj.net/departments/parks-and-recreation/recreation-and-community-programming/parks/friendship-fountain,30.32001820000001,-81.65982029999999,Jacksonville +Yakima Valley Museum,"2105 Tieton Dr, Yakima, WA 98902, USA",(509) 248-0747,http://www.yvmuseum.org/,46.5927848,-120.5375071,Yakima +Yakima Area Arboretum,"1401 Arboretum Dr, Yakima, WA 98901, USA",(509) 248-7337,http://www.ahtrees.org/,46.588776,-120.4727671,Yakima +Franklin Park,"2101 Tieton Dr, Yakima, WA 98902, USA",(509) 575-6020,http://www.yakimaparks.com/parks/franklin/,46.5940889,-120.5376116,Yakima +Yakima Sportsman State Park,"904 University Pkwy, Yakima, WA 98907, USA",(509) 575-2774,http://parks.state.wa.us/278/Yakima-Sportsman,46.59190479999999,-120.4629346,Yakima +"Yakima ""Cruise-the-Ave"" June-September","199-101 E Yakima Ave, Yakima, WA 98901, USA",Unknown,Unknown,46.6021857,-120.5061864,Yakima +Yakima Valley Trolleys Powerhouse Museum,"418 S 3rd Ave, Yakima, WA 98902, USA",(509) 249-5962,https://m.yakimavalleytrolleys.org/,46.59458,-120.5099404,Yakima +Sarg Hubbard Park,"111 S 18th St, Yakima, WA 98901, USA",(509) 453-8280,http://www.yakimagreenway.org/#!parks/c4fi,46.6015053,-120.4748382,Yakima +Hub Area of Yakima,"101 E Yakima Ave, Yakima, WA 98901, USA",Unknown,Unknown,46.60228,-120.5057955,Yakima +Kiwanis Park,"1501 E Maple St, Yakima, WA 98901, USA",(509) 575-6020,http://www.yakimaparks.com/parks/kiwanis/,46.5991639,-120.4829514,Yakima +Cowiche Canyon Trail,"J8CH+75, 12015 Summitview Rd, Yakima, WA 98908, USA",(509) 665-2100,https://www.blm.gov/visit/cowiche-canyon-trail-system,46.62059190000001,-120.6717197,Yakima +Arboretum & Botanical Garden,"Yakima, WA 98901, USA",Unknown,https://www.ahtrees.org/,46.5893378,-120.4738952,Yakima +Meadowbrook Family Fun Center,"7200 W Nob Hill Blvd, Yakima, WA 98908, USA",Unknown,Unknown,46.5852984,-120.60472,Yakima +West Valley Community Park,"1323 S 80th Ave, Yakima, WA 98908, USA",(509) 575-6020,http://www.yakimaparks.com/parks/west-valley-park/,46.5808506,-120.6097937,Yakima +Harlan Landing,"Rovetto Rd, Yakima, WA 98901, USA",(509) 453-8280,http://yakimagreenway.org,46.6318191,-120.5208658,Yakima +Utah Field House of Natural History State Park Museum,"496 E Main St, Vernal, UT 84078, USA",(435) 789-3799,https://stateparks.utah.gov/parks/utah-field-house/,40.4552778,-109.5197222,Vernal +Uintah County Heritage Museum,"155 E Main St, Vernal, UT 84078, USA",(435) 789-7399,http://www.uintahmuseum.org/,40.45607449999999,-109.5255867,Vernal +First Lady Dolls,"100-198 E Main St, Vernal, UT 84078, USA",Unknown,Unknown,40.45580119999999,-109.5256862,Vernal +Dinah,"905 E Main St, Vernal, UT 84078, USA",(888) 556-3845,Unknown,40.45598579999999,-109.5115074,Vernal +Ashley Valley Community Park,"500 N 900 W, Vernal, UT 84078, USA",(435) 781-0982,http://www.co.uintah.ut.us/,40.4626565,-109.5453301,Vernal +Steinaker State Park,"4335 N Hwy 191, Vernal, UT 84078, USA",(800) 322-3770,https://stateparks.utah.gov/parks/steinaker/discover/,40.5188219,-109.5424803,Vernal +Regional History Center,"152 E 100 N, Vernal, UT 84078, USA",(435) 789-6276,http://uintahhistory.org/,40.4563236,-109.5259821,Vernal +Vernal Regional Airport General Aviation Ramp,"830 E 500 S, Vernal, UT 84078, USA",Unknown,Unknown,40.4466827,-109.5136395,Vernal +Dinosaur Land In Vernal Utah,"134 E Main St, Vernal, UT 84078, USA",(800) 477-5558,http://www.dinoland.com/contact-us/,40.4556181,-109.5256214,Vernal +Fantasy Canyon,"Vernal, UT 84078, USA",Unknown,https://www.blm.gov/visit/fantasy-canyon,40.057357,-109.3932191,Vernal +Red Fleet State Park,"8750 N Hwy 191, Vernal, UT 84078, USA",(435) 789-6614,http://stateparks.utah.gov/parks/red-fleet,40.58715,-109.4433707,Vernal +Vernal DUP Museum,"186 S 500 W, Vernal, UT 84078, USA",(435) 789-0352,http://isdup.org/,40.4531721,-109.5383698,Vernal +Salisbury Cathedral,"Salisbury SP1 2EJ, UK",01722 555100,https://www.salisburycathedral.org.uk/,51.0649871,-1.797303499999999,Salisbury +The Salisbury Museum,"The Kings House, 65 The Cl, Salisbury SP1 2EN, UK",01722 332151,http://www.salisburymuseum.org.uk/,51.0643934,-1.7997539,Salisbury +Old Sarum,"Castle Rd, Salisbury SP1 3SD, UK",0370 333 1181,https://www.english-heritage.org.uk/visit/places/old-sarum/?utm_source=Google%20Business&utm_campaign=Local%20Listings&utm_medium=Google%20Business%20Profiles&utm_content=old%20sarum&utm_source=Google%20Business&utm_campaign=Local%20Listings&utm_medium=Google%20Business%20Profiles&utm_content=old%20sarum,51.0932288,-1.8048782,Salisbury +Arundells,"59 Cathedral Close, Salisbury SP1 2EN, UK",01722 326546,http://www.arundells.org/,51.0657006,-1.7993074,Salisbury +National Trust - Mompesson House,"The Close, Salisbury SP1 2EL, UK",01722 335659,https://www.nationaltrust.org.uk/mompesson-house/,51.066758,-1.798473,Salisbury +The Rifles Berkshire and Wiltshire Museum,"The Wardrobe, 58 The Cl, Salisbury SP1 2EX, UK",01722 419419,http://www.thewardrobe.org.uk/,51.0662065,-1.7996348,Salisbury +Milford Street Bridge,"88 Milford St, Salisbury SP1 2BS, UK",Unknown,Unknown,51.06836209999999,-1.7898186,Salisbury +Churchill Gardens,"Churchill Way S, Salisbury SP1 2JN, UK",01722 342860,http://www.salisburycitycouncil.gov.uk/responsibilities/parks-open-spaces/churchill-gardens,51.0625489,-1.7892383,Salisbury +History Hunt - Salisbury,"Market Square, Salisbury SP1 1JH, UK",07780 677840,https://www.historyhunt.co.uk/,51.07433179999999,-1.8020908,Salisbury +Salisbury Escape Rooms,"11a Fisherton St, Salisbury SP2 7SU, UK",01722 428980,https://www.salisburyescape.com/,51.06925289999999,-1.7998528,Salisbury +Harnham Water Meadows,"Rose Cottage, Town Path, Salisbury SP2 8EU, UK",Unknown,http://www.salisburywatermeadows.org.uk/,51.0639796,-1.8082164,Salisbury +Boscombe Down Aviation Collection,"Hangar 1 Old Sarum Airfield, Old Sarum, Salisbury SP4 6DZ, UK",01722 323636,http://boscombedownaviationcollection.co.uk/,51.0999835,-1.7854731,Salisbury +Salisbury Bug Cathedral,"The Close, Salisbury SP1 2EN, UK",Unknown,Unknown,51.0637828,-1.7982968,Salisbury +The Salisbury Story Trail,"1 Fisherton St, Salisbury SP2 7SU, UK",Unknown,Unknown,51.0682213,-1.7987115,Salisbury +Hudson's Field,"291 Castle Rd, Salisbury SP1 3SB, UK",01722 342860,Unknown,51.0879632,-1.8024651,Salisbury +Avon Valley Nature Reserve,"Salisbury SP1 3JY, UK",01722 342860,http://www.salisburycitycouncil.gov.uk/parks-and-open-spaces,51.0827372,-1.8074096,Salisbury +Salisbury Watermeadows,"Salisbury SP2 7RZ, UK",Unknown,Unknown,51.0664989,-1.8053982,Salisbury +Salisbury Arts Centre,"Bedwin St, Salisbury SP1 3UT, UK",01722 320333,http://www.wiltshirecreative.co.uk/,51.07223339999999,-1.7918412,Salisbury +Wilton House,"Wilton, Salisbury SP2 0BJ, UK",01722 746714,http://www.wiltonhouse.com/,51.0785664,-1.8592917,Salisbury +Live Escape Rooms Salisbury - Cross Keys Shopping Centre,"1, Cross Keys Chequer, Queen St, Salisbury SP1 1EL, UK",07917 701797,https://live-escape.co.uk/,51.0692327,-1.7940095,Salisbury +Anzalduas Park,"6400 Anzalduas Dam Rd, Mission, TX 78572, USA",(956) 585-5311,https://www.hidalgocounty.us/280/Parks,26.1407848,-98.3282428,Mission +Veterans Memorial Pavilion,"300 S Inspiration Rd, Mission, TX 78572, USA",(956) 585-4509,https://tx-hidalgocounty.civicplus.com/index.aspx?NID=281,26.2075732,-98.35246980000001,Mission +National Butterfly Center,"3333 Butterfly Park, Mission, TX 78572, USA",(956) 583-5400,https://www.nationalbutterflycenter.org/,26.179835,-98.3664926,Mission +Bentsen-Rio Grande Valley State Park,"2800 S Bentsen Palm Dr, Mission, TX 78572, USA",(956) 584-9156,http://www.tpwd.state.tx.us/state-parks/bentsen-rio-grande-valley,26.185498,-98.3794443,Mission +La Lomita Mission,"La Lomita Historical Park, Mission, TX 78572, USA",(956) 580-8650,https://missiontexas.us/life-in-mission/attractions/la-lomita-chapel/,26.1578397,-98.33054469999999,Mission +Mission Historical Museum,"900 Doherty Ave, Mission, TX 78572, USA",(956) 580-8646,http://missionmuseum.org/,26.2148296,-98.3244395,Mission +World Birding Center,"2800 S Bentsen Palm Dr, Mission, TX 78572, USA",(956) 584-9156,http://www.theworldbirdingcenter.com/,26.1855779,-98.380299,Mission +Quinta Las 4 Luna's Waterpark,"3715 N Moorefield Rd, Mission, TX 78573, USA",(956) 533-7526,https://www.quintalas4lunaswaterpark.com/,26.2547438,-98.3509627,Mission +Fraser River Heritage Park,"7494 Mary St, Mission, BC V2V 6Y9, Canada",(604) 826-0277,https://www.mission.ca/municipal-hall/departments/parks-recreation-and-culture/fraser-river-heritage-park/,49.1381924,-122.2871413,Mission +Circle T Park,"W Highway 83, Mission, TX 78572, USA",(956) 585-0173,Unknown,26.2299149,-98.427651,Mission +Mission Gardens Family Park,"930 W Expy 83, Mission, TX 78572, USA",(956) 585-5671,https://haciendamobilehomes.com/,26.2064223,-98.33924929999999,Mission +Steelhead Falls,"Hayward Lake Reservoir Trail, Mission, BC V4S, Canada",Unknown,https://www.vancouvertrails.com/trails/steelhead-falls/,49.2253764,-122.3502748,Mission +Lions Park,"1500 E Kika De La Garza Loop, Mission, TX 78572, USA",(956) 580-8650,http://missiontexas.us/city-departments/parks-and-recreation/city-parks/,26.2210314,-98.31825459999999,Mission +"Granjeno Cemetary, Mission, Tx","Anzaldua Dr, Mission, TX 78572, USA",Unknown,Unknown,26.135062,-98.30556109999999,Mission +The Powerhouse at Stave Falls Visitor Centre and National Historic Site,"31338 Dewdney Trunk Rd, Mission, BC V4S 1C4, Canada",(604) 462-1222,https://www.bchydro.com/stavefalls,49.2284601,-122.355785,Mission +Virginia Living Museum,"524 J Clyde Morris Blvd, Newport News, VA 23601, USA",(757) 595-1900,http://www.thevlm.org/,37.0699771,-76.4796305,Newport News +Virginia War Museum,"9285 Warwick Blvd, Newport News, VA 23607, USA",(757) 247-8523,https://www.virginia.org/listing/virginia-war-museum/5783/,37.0193649,-76.4536466,Newport News +Historic Endview,"362 Yorktown Rd Suite 1017, Newport News, VA 23603, USA",(757) 887-1862,http://www.newportnewshistory.org/,37.2112456,-76.5688938,Newport News +James A. Fields House,"617 27th St, Newport News, VA 23607, USA",Unknown,http://jamesafieldshouse.blogspot.com/,36.98315739999999,-76.4212845,Newport News +Huntington Park,"Newport News, VA 23607, USA",Unknown,Unknown,37.0188889,-76.4541667,Newport News +Newport News Park,"13560 Jefferson Ave, Newport News, VA 23603, USA",(757) 886-7912,https://nnparksandrec.org/,37.1904687,-76.5481427,Newport News +Victory Landing Park,"50 26th St, Newport News, VA 23607, USA",(757) 886-7912,http://www.newport-news.org/visitors/things-to-do/outdoors-and-recreation/22/victory-landing-park/,36.9755369,-76.4343011,Newport News +The Newsome House Museum & Cultural Center,"2803 Oak Ave, Newport News, VA 23607, USA",(757) 247-2360,http://newsomehouse.org/,36.9903529,-76.4052332,Newport News +The Mariners' Museum and Park,"100 Museum Dr, Newport News, VA 23606, USA",(757) 596-2222,http://www.marinersmuseum.org/,37.05519040000001,-76.4880841,Newport News +Lee Hall Mansion,"163 Yorktown Rd, Newport News, VA 23603, USA",(757) 888-3371,http://www.newportnewshistory.org/,37.1997518,-76.5755984,Newport News +Walk of Terror Haunted House,"65 Saunders Rd, Newport News, VA 23601, USA",(757) 599-6617,http://walkofterror.org/,37.09203,-76.44000249999999,Newport News +The Palms of New Port News,"Newport News, VA 23606, USA",Unknown,Unknown,37.0852389,-76.4759571,Newport News +Lee's Mill Historic Park,"280-310 Rivers Ridge Cir, Newport News, VA 23608, USA",(757) 247-8523,Unknown,37.165025,-76.5654112,Newport News +King-Lincoln Park,"600 Jefferson Ave, Newport News, VA 23607, USA",(757) 888-3333,http://www.nnparks.com/,36.96772509999999,-76.41134439999999,Newport News +Newport News Visitor Center,"13560 Jefferson Ave, Newport News, VA 23603, USA",(757) 886-7777,http://www.newport-news.org/,37.17994099999999,-76.55163499999999,Newport News +Newport News Park Discovery Center,"901 Clubhouse Way, Newport News, VA 23608, USA",(757) 886-7916,https://www.newport-news.org/visitors/things-to-do/outdoors-and-recreation/21/newport-news-park-discovery-center/,37.1817045,-76.5371821,Newport News +Stanley Hundred,"256-284 Enterprise Dr, Newport News, VA 23603, USA",Unknown,Unknown,37.17780690000001,-76.5762855,Newport News +Newport News Victory Arch,"West Ave, Newport News, VA 23607, USA",Unknown,Unknown,36.97690609999999,-76.43234129999999,Newport News +Riverview Farm Park,"Riverview Pkwy, Newport News, VA 23602, USA",(757) 886-7912,http://www.nnparks.com/parks_riverview.php,37.09068879999999,-76.5307476,Newport News +Skiffe's Creek Redoubt,"22 Enterprise Dr, Newport News, VA 23603, USA",(757) 247-8523,Unknown,37.1777938,-76.5757337,Newport News +Monticello,"1050 Monticello Loop, Charlottesville, VA 22902, USA",(434) 984-9800,https://www.monticello.org/,38.00860429999999,-78.4531994,Charlottesville +Virginia Discovery Museum,"524 E Main St, Charlottesville, VA 22902, USA",(434) 977-1025,https://vadm.org/,38.0295391,-78.4779059,Charlottesville +Freedom of Speech Wall,"605 E Main St, Charlottesville, VA 22902, USA",Unknown,Unknown,38.0295447,-78.4776545,Charlottesville +The Fralin Museum of Art at the University of Virginia,"155 Rugby Rd, Charlottesville, VA 22904, USA",(434) 924-3592,https://uvafralinartmuseum.virginia.edu/,38.038286,-78.50300200000001,Charlottesville +Ix Art Park,"522 2nd St SE D, Charlottesville, VA 22902, USA",(434) 207-2964,https://www.ixartpark.org/,38.0263106,-78.48223159999999,Charlottesville +Blue Ridge Sanitarium,"Unnamed Road, Charlottesville, VA 22902, USA",Unknown,Unknown,38.00993390000001,-78.4717296,Charlottesville +Saunders-Monticello Trail,"503 Thomas Jefferson Pkwy, Charlottesville, VA 22902, USA",(434) 984-9822,http://www.monticello.org/site/visit/kemper-park,38.00221669999999,-78.4776991,Charlottesville +Forest Hills Park,"1022 Forest Hills Ave, Charlottesville, VA 22903, USA",(434) 970-3260,https://www.charlottesville.gov/Facilities/Facility/Details/Forest-Hills-Park-23,38.02416239999999,-78.4973351,Charlottesville +Greenleaf Park,"1598 Rose Hill Dr, Charlottesville, VA 22903, USA",(434) 970-3021,https://www.charlottesville.gov/facilities/facility/details/Greenleaf-Park-24,38.04942460000001,-78.48206069999999,Charlottesville +The Lawn,"400 Emmet St S, Charlottesville, VA 22903, USA",(434) 924-0311,https://housing.virginia.edu/area/1176,38.0352422,-78.5036059,Charlottesville +Berkeley Art Wall,"2118 Dominion Dr, Charlottesville, VA 22901, USA",Unknown,Unknown,38.0772069,-78.4812993,Charlottesville +Albemarle Charlottesville Historical Society,"200 2nd St NE, Charlottesville, VA 22902, USA",(434) 296-1492,http://www.albemarlehistory.org/,38.0318462,-78.47997210000001,Charlottesville +Immersion Escape Rooms,"2125 Ivy Rd Suite F, Charlottesville, VA 22903, USA",(434) 249-8797,http://immersionescaperooms.com/,38.044002,-78.5124914,Charlottesville +Administrative Offices of the Charlottesville Albemarle Convention & Visitors Bureau,"501 Faulconer Dr, Charlottesville, VA 22903, USA",(434) 293-6789,http://www.visitcharlottesville.org/,38.0498691,-78.5245932,Charlottesville +McIntire Park,"375 US-250 BYP, Charlottesville, VA 22901, USA",(434) 970-3589,https://www.charlottesville.gov/Facilities/Facility/Details/McIntire-Park-25,38.04729750000001,-78.47538469999999,Charlottesville +Downtown Mall,"E Main St, Charlottesville, VA 22902, USA",(434) 295-9073,Unknown,38.0309974,-78.4797116,Charlottesville +Ragged Mountain Nature Area,"1730 Reservoir Rd, Charlottesville, VA 22902, USA",Unknown,https://www.charlottesville.gov/Facilities/Facility/Details/Ragged-Mountain-Natural-Area-40,38.026673,-78.55592899999999,Charlottesville +Cville Escape Room,"414 E Main St, Charlottesville, VA 22902, USA",(434) 424-0520,https://www.cvilleescaperoom.com/,38.02970330000001,-78.4789906,Charlottesville +Darden Towe Park,"1445 Darden Towe Park, Charlottesville, VA 22911, USA",(434) 296-5911,https://www.albemarle.org/Home/Components/FacilityDirectory/FacilityDirectory/53/360,38.0422139,-78.451038,Charlottesville +James Monroe's Highland,"2050 James Monroe Pkwy, Charlottesville, VA 22902, USA",(434) 293-8000,http://www.highland.org/,37.98239269999999,-78.4554197,Charlottesville +Bananas Fun Park,"2469 Riverside Pkwy, Grand Junction, CO 81505, USA",(970) 241-7529,http://www.bananasfunpark.com/,39.08354910000001,-108.5962921,Grand Junction +"Museum of the West, Museums of Western Colorado","462 Ute Ave, Grand Junction, CO 81501, USA",(970) 242-0971,https://museumofwesternco.com/,39.06568799999999,-108.564776,Grand Junction +Eureka! McConnell Science Museum,"1400 N 7th St, Grand Junction, CO 81501, USA",(970) 254-1626,http://www.eurekasciencemuseum.org/,39.0804296,-108.5606897,Grand Junction +Western Colorado Botanical Gardens,"655 Struthers Ave, Grand Junction, CO 81501, USA",(970) 245-9030,https://wcbotanic.org/,39.0552228,-108.5612046,Grand Junction +Eagle Rim Park,"Grand Junction, CO 81503, USA",Unknown,https://www.gjcity.org/Facilities/Facility/Details/Eagle-Rim-Park-12,39.0526189,-108.5452034,Grand Junction +Attractions Grand Junction!!,"US-6, Grand Junction, CO 81505, USA",Unknown,Unknown,39.0921805,-108.6028252,Grand Junction +Canyon View Park,"730 24 Rd, Grand Junction, CO 81505, USA",(970) 254-3866,http://gjparksandrec.org/,39.11066309999999,-108.605773,Grand Junction +"Cross Orchards Historic Site, Museums of Western Colorado","3073 F Rd, Grand Junction, CO 81504, USA",(970) 242-0971,https://museumofwesternco.com/,39.0914955,-108.4830551,Grand Junction +James M. Robb - Colorado River State Park Connected Lakes Section,"Dike Rd, Grand Junction, CO 81507, USA",(970) 858-9188,https://cpw.state.co.us/placestogo/Parks/jamesmrobbcoloradoriver,39.0824732,-108.6128938,Grand Junction +Palisade Tourism,"652 White Ave, Grand Junction, CO 81501, USA",(970) 242-7674,Unknown,39.06946509999999,-108.5615607,Grand Junction +Book Cliffs View,"Grand Junction, CO 81507, USA",Unknown,http://nps.gov/,39.1040177,-108.727515,Grand Junction +Welcome To Grand Junction Mural,"500 Main St, Grand Junction, CO 81501, USA",Unknown,http://gjcreates.org/,39.0675251,-108.5642427,Grand Junction +Colorado National Monument sign,"222 E Fallen Rock Rd, Grand Junction, CO 81507, USA",Unknown,Unknown,39.0356051,-108.6307653,Grand Junction +Red Canyon Overlook,"2198 Rimrock Dr, Grand Junction, CO 81507, USA",(970) 858-3617,http://nps.gov/colm,39.0308468,-108.6863272,Grand Junction +Two rivers convention center,"Grand Junction, CO 81501, USA",Unknown,Unknown,39.0638705,-108.5506486,Grand Junction +Millennium Falcon,"2415 Monument Rd, Grand Junction, CO 81507, USA",Unknown,Unknown,39.0515726,-108.6059006,Grand Junction +James M. Robb - Colorado River State Park,"361 32 Rd, Clifton, CO 81520, USA",(970) 434-3388,https://cpw.state.co.us/placestogo/Parks/jamesmrobbcoloradoriver,39.0574368,-108.4607565,Grand Junction +Devil's Kitchen Picnic Area,"2383-2389 Glade Park Rd, Grand Junction, CO 81507, USA",Unknown,https://www.nps.gov/colm/planyourvisit/devils-kitchen-picnic-area.htm,39.0329071,-108.6333477,Grand Junction +Grand Junction Colorado,"314 Main St, Grand Junction, CO 81501, USA",Unknown,Unknown,39.0676043,-108.5673503,Grand Junction +Visit Grand Junction,"740 Horizon Dr, Grand Junction, CO 81506, USA",(970) 256-4060,https://www.visitgrandjunction.com/,39.1102477,-108.5399957,Grand Junction +Louisiana's Old State Capitol,"100 North Blvd, Baton Rouge, LA 70801, USA",(225) 342-0500,http://www.louisianaoldstatecapitol.org/,30.446593,-91.18904429999999,Baton Rouge +BREC's Baton Rouge Zoo,"3601 Thomas Rd, Baton Rouge, LA 70811, USA",(225) 775-3877,http://www.brzoo.org/,30.5623594,-91.1598293,Baton Rouge +Capitol Park Museum,"660 N 4th St, Baton Rouge, LA 70802, USA",(225) 342-5428,http://www.louisianastatemuseum.org/,30.4540283,-91.1865059,Baton Rouge +USS KIDD Veterans Museum,"305 S River Rd, Baton Rouge, LA 70802, USA",(225) 342-1942,http://www.usskidd.com/,30.44359949999999,-91.19016069999999,Baton Rouge +Louisiana Art & Science Museum,"100 S River Rd, Baton Rouge, LA 70801, USA",(225) 344-5272,http://www.lasm.org/,30.4462269,-91.1903226,Baton Rouge +Louisiana State University Rural Life Museum,"4560 Essen Ln, Baton Rouge, LA 70803, USA",(225) 765-2437,http://www.lsu.edu/rurallife/,30.4116371,-91.1155079,Baton Rouge +Veteran's Memorial Park,"599 State Capitol Dr #523, Baton Rouge, LA 70802, USA",Unknown,Unknown,30.4574126,-91.18480530000001,Baton Rouge +BREC's Bluebonnet Swamp Nature Center,"10503 N Oak Hills Pkwy, Baton Rouge, LA 70810, USA",(225) 757-8905,http://brec.org/swamp,30.3699987,-91.1045565,Baton Rouge +Liberty Lagoon,"111 Lobdell Ave, Baton Rouge, LA 70806, USA",(225) 923-3202,http://libertylagoon.com/,30.44921399999999,-91.11132409999999,Baton Rouge +Riverfront Plaza & City Dock,"300 S River Rd, Baton Rouge, LA 70802, USA",Unknown,Unknown,30.445301,-91.1906815,Baton Rouge +LSU Museum of Art,"100 Lafayette St, Baton Rouge, LA 70801, USA",(225) 389-7200,http://lsumoa.org/,30.4476526,-91.1890612,Baton Rouge +Magnolia Mound Plantation,"2161 Nicholson Dr, Baton Rouge, LA 70802, USA",(225) 343-4955,https://www.brec.org/facility/MagnoliaMound,30.4262376,-91.1872027,Baton Rouge +Burden Museum & Gardens,"4560 Essen Ln, Baton Rouge, LA 70809, USA",(225) 763-3990,https://www.lsuagcenter.com/portals/burden/,30.4088909,-91.1058458,Baton Rouge +Blue Bayou Water Park,"18142 Perkins Rd E, Baton Rouge, LA 70810, USA",(225) 753-3333,http://www.bluebayou.com/,30.34508380000001,-91.02609509999999,Baton Rouge +Mike the Tiger's Habitat,"16 N Stadium Dr, Baton Rouge, LA 70802, USA",(225) 578-4823,http://www.mikethetiger.com/,30.4134061,-91.1850348,Baton Rouge +Sing the River Sculpture,"Florida St &, River Rd, Baton Rouge, LA 70801, USA",Unknown,https://www.visitbatonrouge.com/listing/sing-the-river-sculpture/2839/,30.4492512,-91.1906571,Baton Rouge +Knock Knock Children's Museum,"1900 Dalrymple Dr, Baton Rouge, LA 70808, USA",(225) 388-3090,http://www.knockknockmuseum.org/,30.4301736,-91.17000100000001,Baton Rouge +Hilltop Arboretum,"Enter off of, 11855 Highland Rd, Baton Rouge, LA 70810, USA",(225) 767-6916,http://hilltop.lsu.edu/,30.3561566,-91.0949904,Baton Rouge +Spanish Town Park,"1300 Spanish Town Rd, Baton Rouge, LA 70802, USA",(225) 272-9200,http://www.brec.org/index.cfm/park/SpanishTown,30.4544288,-91.1763417,Baton Rouge +Mississippi River Park,"299 River Rd, Baton Rouge, LA 70801, USA",Unknown,Unknown,30.44922829999999,-91.19054039999999,Baton Rouge +Spindletop Gladys-City Boomtown Museum,"5550 Jimmy Simmons Blvd, Beaumont, TX 77705, USA",(409) 880-1750,http://spindletop.org/,30.0323761,-94.079365,Beaumont +John Jay French Museum,"3025 French Rd, Beaumont, TX 77706, USA",(409) 898-0348,http://beaumontheritage.org/,30.1108132,-94.1432475,Beaumont +Beaumont Botanical Gardens,"6088 Babe Zaharias Dr, Beaumont, TX 77705, USA",(409) 842-3135,https://www.bbgtx.org/,30.0241875,-94.1461741,Beaumont +Art Museum of Southeast Texas,"500 Main St, Beaumont, TX 77701, USA",(409) 832-3432,http://www.amset.org/,30.083135,-94.0974205,Beaumont +The McFaddin-Ward House Historic Museum,"1906 Calder Ave, Beaumont, TX 77701, USA",(409) 832-2134,http://www.mcfaddin-ward.org/,30.0866814,-94.1149169,Beaumont +Texas Energy Museum,"600 Main St, Beaumont, TX 77701, USA",(409) 833-5100,http://www.texasenergymuseum.org/,30.08237770000001,-94.0964486,Beaumont +Beaumont Children's Museum,"701 Main St, Beaumont, TX 77701, USA",(409) 347-7919,http://www.beaumontchildrensmuseum.org/,30.0825952,-94.0956128,Beaumont +Fire Museum of Texas,"400 Walnut St, Beaumont, TX 77701, USA",(409) 880-3927,http://firemuseumoftexas.com/,30.0859308,-94.0985742,Beaumont +Babe Zaharias Museum & Visitor Center,"1750 I-10 Frontage Rd, Beaumont, TX 77703, USA",(409) 833-4622,http://www.babedidriksonzaharias.org/,30.0967315,-94.1140856,Beaumont +Tyrrell Park Nature Center,"3930 Babe Zaharias Dr, Beaumont, TX 77705, USA",(409) 880-3163,https://www.beaumontcvb.com/tpnc/,30.0118494,-94.146716,Beaumont +Clifton Steamboat Museum,"8727 TX-124, Beaumont, TX 77705, USA",(409) 842-3162,http://www.cliftonsteamboatmuseum.com/,29.9934829,-94.19193519999999,Beaumont +Chambers House Museum,"2240 Calder Ave, Beaumont, TX 77701, USA",(409) 832-4010,http://chambershouse.org/,30.08612249999999,-94.119263,Beaumont +Cattail Marsh Scenic Wetlands & Boardwalk,"4233 Babe Zaharias Dr, Beaumont, TX 77705, USA",(409) 554-2447,https://www.beaumontcvb.com/things-to-do/cattail-marsh/,30.00694109999999,-94.1425628,Beaumont +Edison Museum,"Edison Plaza, 350 Pine St #1750, Beaumont, TX 77701, USA",(409) 299-9195,http://www.edisonmuseum.org/,30.0856517,-94.09678389999999,Beaumont +World’s Largest Working Fire Hydrant,"219 Main St, Beaumont, TX 77701, USA",(409) 880-3927,https://www.worldrecordacademy.org/2022/05/worlds-largest-working-fire-hydrant-beaumonts-giant-fire-hydrant-sets-world-record-422202,30.0859308,-94.0990343,Beaumont +Tyrrell Park,"6088 Babe Zaharias Dr, Beaumont, TX 77705, USA",(409) 838-3613,https://www.beaumontcvb.com/listing/tyrrell-park/591/,30.0240744,-94.1459543,Beaumont +Southern Bella Tour De Beaumont,"581 N 9th St, Beaumont, TX 77702, USA",(409) 554-2091,Unknown,30.0865159,-94.1251794,Beaumont +Riverfront Park,"805 Main St, Beaumont, TX 77701, USA",(409) 861-1929,Unknown,30.0823802,-94.09384109999999,Beaumont +Colorado Canyon,"6110 Folsom Dr, Beaumont, TX 77706, USA",(409) 347-4386,http://www.coloradocanyonfun.com/,30.1159511,-94.17143659999999,Beaumont +Liberia Park,"2305 Ollie St, Beaumont, TX 77705, USA",(409) 861-1929,http://www.beaumontcvb.com/listing/liberia-park/1273/,30.0498828,-94.1082074,Beaumont +Frontier Culture Museum,"1290 Richmond Ave, Staunton, VA 24401, USA",(540) 332-7850,https://www.frontiermuseum.org/,38.1249916,-79.05011139999999,Staunton +Montgomery Hall Park,"1000 Montgomery Ave, Staunton, VA 24401, USA",(540) 332-3945,https://www.ci.staunton.va.us/departments/parks-recreation-/parks/montgomery-hall-park,38.1441593,-79.09554140000002,Staunton +Woodrow Wilson Presidential Library & Museum,"20 N Coalter St, Staunton, VA 24401, USA",(540) 885-0897,http://www.woodrowwilson.org/,38.1500659,-79.0687657,Staunton +The Camera Heritage Museum,"1 W Beverley St, Staunton, VA 24401, USA",(540) 886-8535,http://www.cameraheritagemuseum.com/,38.1496653,-79.0727995,Staunton +Staunton Watering Can,"Staunton, VA 24401, USA",Unknown,Unknown,38.1470783,-79.0686474,Staunton +Virginia Scenic Railway,"STA, 12 Middlebrook Ave, Staunton, VA 24401, USA",(434) 391-9772,http://virginiascenicrailway.com/,38.1474809,-79.0724056,Staunton +Gypsy Hill Park,"600 Churchville Ave, Staunton, VA 24401, USA",(540) 332-3990,https://www.ci.staunton.va.us/departments/parks-recreation-/parks/gypsy-hill-park,38.158508,-79.0808345,Staunton +Betsy Bell Wilderness Park,"525 Betsy Bell Rd, Staunton, VA 24401, USA",(540) 332-3945,https://www.ci.staunton.va.us/departments/parks-recreation-/parks-/montgomery-hall-park/betsy-bell-mary-gray-wilderness-park,38.1365148,-79.0584367,Staunton +Staunton Mural,"102 W Beverley St, Staunton, VA 24401, USA",Unknown,Unknown,38.1492818,-79.07373190000001,Staunton +Wharf Area Historic District,"Staunton, VA 24401, USA",(540) 332-3867,Unknown,38.1476165,-79.0733312,Staunton +Gypsy Express,"370 Constitution Dr, Staunton, VA 24401, USA",(540) 885-6618,http://www.staunton.va.us/,38.1598224,-79.0802937,Staunton +Downtown Staunton Visitor Center,"35 S New St suite a, Staunton, VA 24401, USA",(540) 332-3971,http://www.visitstaunton.com/,38.1490404,-79.0713597,Staunton +Conrad Mansion Museum,"330 Woodland Ave, Kalispell, MT 59901, USA",(406) 755-2166,https://www.conradmansion.com/,48.1969781,-114.3031522,Kalispell +Lone Pine State Park,"300 Lone Pine Rd, Kalispell, MT 59901, USA",(406) 755-2706,http://stateparks.mt.gov/lone-pine,48.1740316,-114.3376039,Kalispell +Woodland Water Park,"45 N Woodland Pk Rd, Kalispell, MT 59901, USA",(406) 758-7812,https://www.kalispell.com/248/Woodland-Water-Park,48.2021945,-114.3003131,Kalispell +Herron Park,"2310 Foys Lake Rd, Kalispell, MT 59901, USA",(406) 758-5800,https://flathead.mt.gov/parks_rec/request.php,48.1473796,-114.3567689,Kalispell +Depot Park,"15 Depot Pk, Kalispell, MT 59901, USA",(406) 758-2800,http://www.kalispellchamber.com/,48.19921189999999,-114.3130211,Kalispell +Hockaday Museum of Art,"302 2nd Ave E, Kalispell, MT 59901, USA",(406) 755-5268,http://hockadaymuseum.com/,48.1960766,-114.3101756,Kalispell +Northwest Montana History Museum,"124 2nd Ave E, Kalispell, MT 59901, USA",(406) 756-8381,http://www.nwmthistory.org/,48.1976983,-114.3106696,Kalispell +Thompson Memorial Park,"900-998 7th Ave E, Kalispell, MT 59901, USA",(406) 758-7718,Unknown,48.19127419999999,-114.2994243,Kalispell +Faerie Steps,"Evergreen, MT 59901, USA",Unknown,Unknown,48.2073119,-114.2848806,Kalispell +406 Adventures,"205 Sunset Trail, Kalispell, MT 59901, USA",(406) 270-6035,Unknown,48.2134971,-114.1884464,Kalispell +Olsen Pioneer Park,"3054 Helena Flats Rd, Kalispell, MT 59901, USA",Unknown,Unknown,48.31057149999999,-114.2339313,Kalispell +Southernmost Point of the Continental U.S.A.,"1400 Whitehead St, Key West, FL 33040, USA",(305) 809-3700,https://cityofkeywest-fl.gov/Facilities/Facility/Details/Southernmost-Point-44,24.5465114,-81.7975065,Key West +The Key West Butterfly and Nature Conservatory,"1316 Duval St, Key West, FL 33040, USA",(305) 296-2988,https://www.keywestbutterfly.com/,24.5475638,-81.79682489999999,Key West +Key West Shipwreck Museum,"1 Whitehead St, Key West, FL 33040, USA",(305) 292-8990,https://www.keywestshipwreck.com/,24.5590493,-81.8069426,Key West +Fort Zachary Taylor Historic State Park,"601 Howard England Way, Key West, FL 33040, USA",(305) 292-6713,https://www.floridastateparks.org/park/Fort-Taylor,24.5465476,-81.81056459999999,Key West +Key West Lighthouse,"938 Whitehead St, Key West, FL 33040, USA",(305) 294-0012,https://www.kwahs.org/museums/lighthouse-keepers-quarters/visit,24.5504565,-81.8006803,Key West +Mallory Square Key West,"420 Wall St, Key West, FL 33040, USA",(352) 727-0403,Unknown,24.5598677,-81.8076774,Key West +The Hemingway Home and Museum,"907 Whitehead St, Key West, FL 33040, USA",(305) 294-1136,https://www.hemingwayhome.com/,24.5511923,-81.8006162,Key West +Smathers Beach,"2601 S Roosevelt Blvd, Key West, FL 33040, USA",(305) 809-3700,https://www.cityofkeywest-fl.gov/facilities/facility/details/Smathers-Beach-5,24.5519783,-81.7687296,Key West +Sunset Celebration at Mallory Square,"Mallory Square Pier, 420 Wall St, Key West, FL 33040, USA",(786) 565-7448,https://www.sunsetcelebration.org/index.html,24.5599363,-81.80771519999999,Key West +Fort East Martello Museum,"3501 S Roosevelt Blvd, Key West, FL 33040, USA",(305) 296-3913,https://www.kwahs.org/museums/fort-east-martello/visit,24.5520945,-81.7551964,Key West +Mel Fisher Maritime Museum,"200 Greene St, Key West, FL 33040, USA",(305) 294-2633,http://www.melfisher.org/,24.5580622,-81.8064833,Key West +Truman Little White House,"111 Front St, Naval Air Station Key West, FL 33040, USA",(305) 294-9911,https://www.trumanlittlewhitehouse.org/,24.556274,-81.80686469999999,Key West +West Martello Tower and Key West Garden Club,"1100 Atlantic Blvd, Key West, FL 33040, USA",(305) 294-3210,https://keywestgardenclub.com/,24.5473056,-81.7860352,Key West +Florida Keys Eco-Discovery Center,"35 Quay Rd, Key West, FL 33040, USA",(305) 809-4753,https://floridakeys.noaa.gov/eco_discovery.html,24.5507245,-81.80722659999999,Key West +Key West Cemetery,"701 Passover Ln, Key West, FL 33040, USA",(305) 809-3986,Unknown,24.5568098,-81.79650219999999,Key West +The Kapok Tree,"502 Whitehead St, Key West, FL 33040, USA",Unknown,Unknown,24.5547708,-81.8038234,Key West +Clarence S.Higgs Memorial Beach,"1000 Atlantic Blvd, Key West, FL 33040, USA",Unknown,http://www.monroecounty-fl.gov/235/Higgs-Beach,24.5471717,-81.78724729999999,Key West +The Key West Nature Preserve,"1799-1691 Atlantic Blvd, Key West, FL 33040, USA",Unknown,https://www.attractionskeywest.com/key-west-travel-blog/key-west-nature-preserve/,24.5507276,-81.7792698,Key West +Key West Tropical Forest & Botanical Garden,"5210 College Rd, Key West, FL 33040, USA",(305) 296-1504,https://keywest.garden/,24.573176,-81.748672,Key West +Yankee Freedom- Dry Tortugas National Park Museum,"901 Caroline St, Key West, FL 33040, USA",(800) 634-0939,https://www.drytortugas.com/key-west-museum,24.5612636,-81.7997874,Key West +National Trust - Greyfriars House and Garden,"Friar St., Worcester WR1 2LZ, UK",01905 23571,http://www.nationaltrust.org.uk/greyfriars/,52.1905507,-2.2188139,Worcester +Worcester City Art Gallery and Museum,"Foregate St, Worcester WR1 1DT, UK",01905 25371,https://www.museumsworcestershire.org.uk/,52.1963746,-2.2223626,Worcester +Tudor House Museum,"38 Friar St., Worcester WR1 2NA, UK",01905 612309,https://www.tudorhouse.org.uk/,52.19,-2.2188889,Worcester +Museum of Royal Worcester,"Severn St, Worcester WR1 2ND, UK",01905 21247,http://www.museumofroyalworcester.org/,52.1871047,-2.2191047,Worcester +Worcester Cathedral,"8 College Yard, Worcester WR1 2LA, UK",01905 732900,https://www.worcestercathedral.co.uk/,52.1887259,-2.2207065,Worcester +The Commandery,"Sidbury, Worcester WR1 2HU, UK",01905 361821,https://www.museumsworcestershire.org.uk/,52.1875626,-2.2171453,Worcester +Worcester Woods Country Park,"Wildwood Dr, Worcester WR5 2LG, UK",01905 766493,Unknown,52.1867658,-2.1785135,Worcester +Fort Royal Park,"Wyld's Ln, Worcester WR5 2DJ, UK",01905 722233,https://www.worcester.gov.uk/fort-royal-park,52.1874224,-2.2146486,Worcester +The Infirmary Museum,"University of, City Campus, Castle St, Worcester WR1 3AS, UK",01905 542373,http://www.medicalmuseum.org.uk/,52.19584959999999,-2.2262474,Worcester +Edgar Tower,"District, College Grn, Worcester WR1 2LJ, UK",Unknown,Unknown,52.1880861,-2.2196706,Worcester +George Marshall Medical Museum,"Charles Hastings Education Centre, Worcestershire Royal Hospital, Charles Hastings Way, Worcester WR5 1DD, UK",01905 760738,http://www.medicalmuseum.org.uk/,52.1922,-2.183767,Worcester +South Quay Fountains,"S Parade, Worcester WR1 2JN, UK",Unknown,Unknown,52.19072910000001,-2.2241021,Worcester +Chapter Meadows,"Bromwich Rd, Worcester WR2 4AR, UK",01905 734934,http://www.dwt.org.uk/,52.1829,-2.225665,Worcester +Blockhouse Lock,"Lock Cottage, Lock St, Worcester WR5 1AL, UK",Unknown,Unknown,52.1898925,-2.2151493,Worcester +Sidbury lock,"71 Sidbury, Worcester WR1 2HU, UK",Unknown,Unknown,52.18775429999999,-2.2172808,Worcester +Gheluvelt Park,"69 Waterworks Rd, Worcester WR1 3EY, UK",01905 722233,https://www.worcester.gov.uk/gheluvelt-park,52.2072222,-2.230555599999999,Worcester +The Great Worcester Maize Maze,"Upton Rd, Powick, Worcester WR2 4QZ, UK",07419 815621,http://www.worcestermaze.com/,52.1557384,-2.2448329,Worcester +Ronkswood Hill Meadows Local Nature Reserve,"Worcester WR4 9BW, UK",Unknown,Unknown,52.1964795,-2.1918286,Worcester +St Andrews Spire,"Deansway, Worcester WR1 2JD, UK",Unknown,Unknown,52.19107270000001,-2.22282,Worcester +Hallow Park,"Hallow, Worcester WR2 6PP, UK",Unknown,Unknown,52.221158,-2.2550193,Worcester +Palm Beach Zoo,"1301 Summit Blvd, West Palm Beach, FL 33405, USA",(561) 547-9453,http://www.palmbeachzoo.org/,26.666953,-80.0692442,West Palm Beach +Manatee Lagoon,"6000 N Flagler Dr, West Palm Beach, FL 33407, USA",(561) 626-2833,http://www.visitmanateelagoon.com/,26.7636331,-80.0506059,West Palm Beach +Mounts Botanical Garden,"531 N Military Trl, West Palm Beach, FL 33415, USA",(561) 233-1757,https://www.mounts.org/,26.6855896,-80.1145363,West Palm Beach +Yesteryear Village,"601 7 Sansbury's Way, West Palm Beach, FL 33411, USA",(561) 793-0333,http://www.yesteryearvillage.com/,26.684572,-80.1883684,West Palm Beach +Norton Museum of Art,"1450 S Dixie Hwy, West Palm Beach, FL 33401, USA",(561) 832-5196,http://www.norton.org/,26.7006257,-80.053595,West Palm Beach +South Cove Natural Area,"301 N Olive Ave, West Palm Beach, FL 33401, USA",(561) 233-2400,http://discover.pbcgov.org/erm/NaturalAreas/South-Cove.aspx,26.7079895,-80.047975,West Palm Beach +West Palm Beach Waterfront Visitor Information Center,"141 S Flagler Dr, West Palm Beach, FL 33401, USA",(561) 881-9757,https://www.visitpalmbeach.com/wpb-visitor-information-center,26.7126751,-80.0488589,West Palm Beach +Henry Morrison Flagler Museum,"1 Whitehall Way, Palm Beach, FL 33480, USA",(561) 655-2833,http://www.flaglermuseum.us/,26.7137477,-80.04263689999999,West Palm Beach +Grassy Waters Preserve,"8264 Northlake Blvd, West Palm Beach, FL 33412, USA",(561) 804-4985,http://wpb.org/grassywaters,26.8090279,-80.1700441,West Palm Beach +Cox Science Center and Aquarium,"4801 Dreher Trail N, West Palm Beach, FL 33405, USA",(561) 832-1988,https://www.coxsciencecenter.org/,26.669288,-80.0693869,West Palm Beach +West Palm Beach Escape Rooms,"209 S Olive Ave, West Palm Beach, FL 33401, USA",(561) 660-5120,http://www.westpalmbeachescaperooms.com/,26.7119039,-80.0520188,West Palm Beach +Okeeheelee Park,"7715 Forest Hill Blvd, West Palm Beach, FL 33413, USA",(561) 966-6600,https://discover.pbcgov.org/parks/Locations/Okeeheelee.aspx,26.65767469999999,-80.1636528,West Palm Beach +The Square,"700 S Rosemary Ave Suite 200, West Palm Beach, FL 33401, USA",(561) 366-1000,http://www.thesquarewestpalm.com/,26.7083692,-80.0569849,West Palm Beach +Worth Avenue Clock Tower,"423 S Ocean Blvd, Palm Beach, FL 33480, USA",Unknown,Unknown,26.700763,-80.0331758,West Palm Beach +Richard and Pat Johnson Palm Beach County History Museum,"300 N Dixie Hwy, West Palm Beach, FL 33401, USA",(561) 832-4164,http://pbchistory.org/,26.7156463,-80.053022,West Palm Beach +West Palm Beach,"West Palm Beach, FL 33401, USA",Unknown,Unknown,26.71239659999999,-80.0649597,West Palm Beach +Candy Tour by Bulk Candy Store,"235 N Jog Rd, West Palm Beach, FL 33413, USA",(561) 540-1600,http://www.bulkcandystore.com/tours,26.6807286,-80.14578039999999,West Palm Beach +Ann Norton Sculpture Gardens,"253 Barcelona Rd, West Palm Beach, FL 33401, USA",(561) 832-5328,http://www.ansg.org/,26.695394,-80.050586,West Palm Beach +Nancy M. Graham Centennial Square,"150 N Clematis St, West Palm Beach, FL 33401, USA",(561) 804-4900,https://www.wpb.org/government/parks-and-recreation/fountain,26.7136697,-80.05010519999999,West Palm Beach +Winding Waters Natural Area,"6161 N Haverhill Rd, West Palm Beach, FL 33407, USA",(561) 233-2400,http://discover.pbcgov.org/erm/NaturalAreas/Winding-Waters.aspx,26.7780885,-80.1229742,West Palm Beach +Zoo Boise,"355 Julia Davis Dr, Boise, ID 83702, USA",(208) 608-7760,http://www.zooboise.org/,43.6078294,-116.2027255,Boise +Julia Davis Park,"700 S Capitol Blvd, Boise, ID 83702, USA",(208) 608-7600,https://www.cityofboise.org/departments/parks-and-recreation/parks/julia-davis-park/,43.6071131,-116.2014806,Boise +Old Idaho Penitentiary Site,"2445 Old Penitentiary Rd, Boise, ID 83712, USA",(208) 334-2844,https://history.idaho.gov/location/old-penitentiary/,43.6027935,-116.1619792,Boise +Boise Art Museum,"670 Julia Davis Dr, Boise, ID 83702, USA",(208) 345-8330,http://www.boiseartmuseum.org/,43.60974179999999,-116.2064251,Boise +Discovery Center of Idaho,"131 W Myrtle St, Boise, ID 83702, USA",(208) 343-9895,http://www.dcidaho.org/,43.6085238,-116.1992386,Boise +Camel's Back Park,"1200 Heron St, Boise, ID 83702, USA",Unknown,https://www.cityofboise.org/departments/parks-and-recreation/parks/camels-back-park/,43.63487800000001,-116.2023442,Boise +Idaho Botanical Garden,"2355 N Old Penitentiary Rd, Boise, ID 83712, USA",(208) 343-8649,https://idahobotanicalgarden.org/,43.6017855,-116.1639284,Boise +Basque Museum and Cultural Center,"611 W Grove St, Boise, ID 83702, USA",(208) 343-2671,http://www.basquemuseum.eus/,43.6138201,-116.2026809,Boise +Kathryn Albertson Park,"1001 S Americana Blvd, Boise, ID 83706, USA",(208) 608-7644,https://www.cityofboise.org/departments/parks-and-recreation/parks/kathryn-albertson-park/,43.6145258,-116.227071,Boise +Idaho Anne Frank Human Rights Memorial,"770 S 8th St, Boise, ID 83702, USA",(208) 345-0304,https://annefrankmemorial.org/,43.60993939999999,-116.208771,Boise +Hyde Park,"1413-1620 N 13th St, Boise, ID 83702, USA",Unknown,https://northend.org/historic-hyde-park/,43.6301133,-116.2034709,Boise +JUMP Boise Spiral Slide,"1000 W Myrtle St, Boise, ID 83702, USA",(208) 639-6610,https://jumpboise.org/spiral-slide,43.6145194,-116.2088631,Boise +Idaho State Museum,"610 Julia Davis Dr, Boise, ID 83702, USA",(208) 334-2120,http://history.idaho.gov/museum,43.6105765,-116.2056149,Boise +MK Nature Center - Idaho Fish and Game,"600 S Walnut St, Boise, ID 83712, USA",(208) 334-2225,https://idfg.idaho.gov/education/mknc,43.6012603,-116.1858739,Boise +J.A. and Kathryn Albertson Family Foundation Boise Whitewater Park,"3400 W Pleasanton Ave, Boise, ID 83702, USA",(208) 608-7192,https://www.cityofboise.org/departments/parks-and-recreation/parks/ja-and-kathryn-albertson-family-foundation-boise-whitewater-park/,43.6251756,-116.2346657,Boise +Idaho Black History Museum,"508 Julia Davis Dr, Boise, ID 83702, USA",(208) 789-2164,http://www.ibhm.org/,43.6100176,-116.2038788,Boise +Barber Park,"4049 S Eckert Rd, Boise, ID 83716, USA",(208) 577-4575,https://adacounty.id.gov/Parks-Waterways,43.5670276,-116.1390858,Boise +Table Rock,"3199 E Table Rock Rd, Boise, ID 83712, USA",(208) 334-2844,https://history.idaho.gov/table-rock/,43.5985383,-116.1477831,Boise +Boise Depot,"2603 W Eastover Terrace, Boise, ID 83706, USA",(208) 608-7644,https://www.cityofboise.org/departments/parks-and-recreation/facilities/boise-depot/,43.6020647,-116.2147603,Boise +Boise Sign,"7609 W Overland Rd, Boise, ID 83709, USA",Unknown,Unknown,43.5882326,-116.2774244,Boise +The Gerald R. Ford Presidential Museum,"303 Pearl St NW, Grand Rapids, MI 49504, USA",(616) 254-0400,https://www.fordlibrarymuseum.gov/,42.96841449999999,-85.6773697,Grand Rapids +Grand Rapids Children's Museum,"11 Sheldon Ave NE, Grand Rapids, MI 49503, USA",(616) 235-4726,http://www.grcm.org/,42.96360039999999,-85.667191,Grand Rapids +Grand Rapids Art Museum,"101 Monroe Center St NW, Grand Rapids, MI 49503, USA",(616) 831-1000,http://www.artmuseumgr.org/,42.96501170000001,-85.67103949999999,Grand Rapids +Frederik Meijer Gardens & Sculpture Park,"1000 E Beltline Ave NE, Grand Rapids, MI 49525, USA",(616) 957-1580,http://meijergardens.org/,42.9795078,-85.5901123,Grand Rapids +John Ball Zoo,"1300 Fulton St W, Grand Rapids, MI 49504, USA",(616) 336-4300,http://www.jbzoo.org/,42.9635731,-85.704636,Grand Rapids +Grand Rapids Public Museum,"272 Pearl St NW, Grand Rapids, MI 49504, USA",(616) 929-1700,http://www.grpm.org/,42.965528,-85.676715,Grand Rapids +La Grande Vitesse,"525 Ottawa Ave NW, Grand Rapids, MI 49503, USA",(202) 682-5400,https://wkpd.one/yseZHt,42.96930279999999,-85.67075,Grand Rapids +The Blue Bridge,"Blue Footbridge, Grand Rapids, MI 49504, USA",Unknown,Unknown,42.9646038,-85.67555519999999,Grand Rapids +Meyer May House,"450 Madison Ave SE, Grand Rapids, MI 49503, USA",(616) 246-4821,http://meyermayhouse.steelcase.com/,42.9541937,-85.6587796,Grand Rapids +Ah-Nab-Awen Park,"220 Front Ave NW, Grand Rapids, MI 49504, USA",(616) 456-3696,https://www.grandrapidsmi.gov/directory/places/parks/ah-nab-awen-park,42.96873069999999,-85.67666740000001,Grand Rapids +Fish Ladder Park,"606 Front Ave NW, Grand Rapids, MI 49504, USA",(616) 456-3696,https://www.grandrapidsmi.gov/Directory/Places/Parks/Fish-Ladder-Park,42.97451359999999,-85.67661079999999,Grand Rapids +John Ball Park,"John Ball Park Ballroom, 1300 Fulton St W, Grand Rapids, MI 49504, USA",(616) 336-4300,https://www.grandrapidsmi.gov/Directory/Places/Parks/John-Ball-Park,42.9610918,-85.7008152,Grand Rapids +Millennium Park,"1415 Maynard Ave SW, Walker, MI 49534, USA",(616) 791-2357,http://www.kentcountyparks.org/millennium/index.php,42.93615810000001,-85.7496555,Grand Rapids +The Ruse Escape Rooms,"25 Division Ave S STE 125, Grand Rapids, MI 49503, USA",(616) 214-7799,http://www.the-ruse.com/,42.9623752,-85.6680149,Grand Rapids +Bunker Interpretive Center,"1750 E Beltline Ave SE, Grand Rapids, MI 49546, USA",(616) 526-7600,https://calvin.edu/directory/places/bunker-interpretive-center,42.9319167,-85.5822306,Grand Rapids +Lookout Park,"801 Fairview Ave NE, Grand Rapids, MI 49505, USA",(616) 456-3232,https://www.grandrapidsmi.gov/Directory/Places/Parks/Lookout-Park,42.97688720000001,-85.6682096,Grand Rapids +Sixth Street Park,"647 Monroe Ave NW, Grand Rapids, MI 49503, USA",(616) 456-3696,https://www.grandrapidsmi.gov/Directory/Places/Parks/Sixth-Street-Bridge-Park,42.97533430000001,-85.6731097,Grand Rapids +Richmond Park,"963 Richmond St NW, Grand Rapids, MI 49504, USA",(616) 456-3696,https://www.grandrapidsmi.gov/Directory/Places/Parks/Richmond-Park,42.9959696,-85.6957851,Grand Rapids +John Collins Park,"650 Lakeside Dr SE, East Grand Rapids, MI 49506, USA",(616) 949-1750,http://www.eastgr.org/Facilities/Facility/Details/14,42.951394,-85.611587,Grand Rapids +Martin Luther King Park,"1200 M.L.K. Jr St SE, Grand Rapids, MI 49506, USA",(616) 456-3000,https://www.grandrapidsmi.gov/Directory/Places/Parks/Martin-Luther-King-Park,42.9467199,-85.63830569999999,Grand Rapids +Smoky Hill Museum,"211 W Iron Ave, Salina, KS 67401, USA",(785) 309-5776,http://www.smokyhillmuseum.org/,38.8403568,-97.61099709999999,Salina +Central Kansas Flywheels-Yesteryear Museum,"1100 W Diamond Dr, Salina, KS 67401, USA",(785) 825-8473,http://yesteryearmuseum.org/,38.879013,-97.623279,Salina +"""Hello from Salina"" Mural","141 N Santa Fe Ave, Salina, KS 67401, USA",Unknown,Unknown,38.8421323,-97.6093576,Salina +Indian Rock Park Salina Kansas,"1500 Gypsum Ave, Salina, KS 67401, USA",Unknown,Unknown,38.8354836,-97.5877024,Salina +Rolling Hills Zoo,"625 N Hedville Rd, Salina, KS 67401, USA",(785) 827-9488,http://www.rollinghillszoo.org/,38.85256760000001,-97.76415809999999,Salina +Salina Kanvas Project Mural @ the Mill,"343 N Santa Fe Ave, Salina, KS 67401, USA",Unknown,https://www.kanvasproject.com/,38.8469695,-97.6094682,Salina +"District Eat & Play, Salina","2259 S 9th St #75 in Central Mall (old Sears, Salina, KS 67401, USA",(785) 515-2329,http://www.districtsalina.com/,38.8013898,-97.6098021,Salina +Jumpin' Joe's Family Fun Center,"1634 Sunflower Road, Salina, KS 67401, USA",(785) 827-9090,Unknown,38.8078084,-97.6323705,Salina +Smoky Hill Vineyards & Winery,"2771 Centennial Rd, Salina, KS 67401, USA",(785) 825-8466,https://smokyhillwinery.com/,38.7887688,-97.6319685,Salina +67401 Plaza,"181 N Santa Fe Ave, Salina, KS 67401, USA",Unknown,Unknown,38.84246059999999,-97.6093717,Salina +Sunset Park,"700 Sunset Dr, Salina, KS 67401, USA",(785) 309-5700,http://www.salina-ks.gov/content/18394/18534/20376/22704.aspx,38.8180584,-97.620233,Salina +Salina Downtown Inc.,"134 S Santa Fe Ave #120, Salina, KS 67401, USA",(785) 825-0535,http://www.salinadowntown.com/,38.8392078,-97.6095368,Salina +Gleniffer Hill Park,"1511 Gypsum Ave, Salina, KS 67401, USA",(785) 826-7275,Unknown,38.8381782,-97.5876663,Salina +Jerry Ivey Memorial Park,"2465 Edward St, Salina, KS 67401, USA",(785) 309-5765,http://www.salina-ks.gov/,38.79729,-97.5955223,Salina +Centennial Park,"746 Hemlock Dr, Salina, KS 67401, USA",(785) 826-7275,http://www.salina-ks.gov/content/18394/18534/20376/22670.aspx,38.82435050000001,-97.6325583,Salina +Fossett Plaza,"2035 Beechcraft Rd, Salina, KS 67401, USA",(785) 827-3914,http://www.salinaairport.com/,38.7948396,-97.6420694,Salina +Kenwood Cove Aquatic Park,"701 Kenwood Park Dr, Salina, KS 67401, USA",(785) 826-7430,http://www.kenwoodcove.com/,38.8325165,-97.60088689999999,Salina +Frog Rock,"599-799 U.S. Rt. 66, Waynesville, MO 65583, USA",(573) 336-6355,Unknown,37.8272132,-92.1925919,Fort Leonard Wood +Stone Mill Spring,"Fort Leonard Wood, MO 65473, USA",Unknown,https://www.fs.usda.gov/recarea/mtnf/recreation/recarea/?recid=21798,37.74013489999999,-92.0415902,Fort Leonard Wood +Old Stagecoach Stop,"106 N Lynn St, Waynesville, MO 65583, USA",(573) 336-3561,http://www.oldstagecoachstop.org/,37.82918590000001,-92.20043509999999,Fort Leonard Wood +Gammon Field,"800 Iowa Ave, Fort Leonard Wood, MO 65473, USA",(573) 596-4223,https://leonardwood.armymwr.com/directory/27/outdoor-recreation,37.7523218,-92.1211355,Fort Leonard Wood +Uranus Missouri Towne Center,"14400 State Hwy Z, St Robert, MO 65584, USA",(833) 487-2687,https://www.uranusmissouri.com/,37.8291694,-92.10511059999999,Fort Leonard Wood +John B Mahaffey Museum Complex,"495 S Dakota Ave #1607, Fort Leonard Wood, MO 65473, USA",(573) 596-0604,Unknown,37.7455156,-92.11159289999999,Fort Leonard Wood +Memorial Grove,"Fort Leonard Wood, MO 65473, USA",(573) 329-6772,https://www.mpraonline.org/memorial-grove/,37.7403991,-92.11187509999999,Fort Leonard Wood +Uranus Sideshow Museum,"14400 State Hwy Z, St Robert, MO 65584, USA",(573) 336-4482,https://www.facebook.com/uranussideshowmuseum/,37.82906239999999,-92.1049393,Fort Leonard Wood +Fort Leonard Wood,"QVV8+G6, St Robert, MO 65584, USA",Unknown,Unknown,37.7938475,-92.13445899999999,Fort Leonard Wood +Route 66 1903 Courthouse Museum,"301 U.S. Rt. 66, Waynesville, MO 65583, USA",(573) 855-3644,http://www.route66courthouse.com/,37.8290579,-92.20125809999999,Fort Leonard Wood +Engineer Trail,"Morelli Heights, Fort Leonard Wood, MO 65473, USA",Unknown,Unknown,37.77260630000001,-92.1100812,Fort Leonard Wood +The Freedom Rock w/ military unit rocks,"St Robert, MO 65584, USA",Unknown,https://www.thefreedomrock.com/50statefreedomrocktour/,37.82450019999999,-92.15538579999999,Fort Leonard Wood +George M Reed Roadside Park,"133 Reed PKWY, St Robert, MO 65584, USA",(573) 451-2000,Unknown,37.82106479999999,-92.1483499,Fort Leonard Wood +Uranus Fudge Factory And General Store,"14400 State Hwy Z, St Robert, MO 65584, USA",(833) 487-2687,https://www.uranusgeneralstore.com/,37.8287218,-92.1053864,Fort Leonard Wood +Fort Leonard Wood Visitor Center,"316 Missouri Ave BLDG 100, Fort Leonard Wood, MO 65473, USA",(573) 596-0356,https://home.army.mil/wood/index.php/my-fort/visitors-access,37.7932308,-92.1340027,Fort Leonard Wood +Outdoor Adventure Center,"Building 2290, 1st St, Fort Leonard Wood, MO 65473, USA",(573) 596-4223,http://leonardwood.armymwr.com/,37.7686369,-92.08684439999999,Fort Leonard Wood +Fort Leonard Wood,"Fort Leonard Wood, MO, USA",Unknown,Unknown,37.7252315,-92.1646722,Fort Leonard Wood +St Robert Aqua Park,"105 Jh Williamson Jr Dr, St Robert, MO 65584, USA",(573) 451-2628,Unknown,37.8202354,-92.1476644,Fort Leonard Wood +St Robert Municipal Park,"132 J.H. Williamson Dr, St Robert, MO 65584, USA",(573) 451-2625,https://www.saintrobert.com/Facilities/Facility/Details/St-Robert-Municipal-Park-7,37.8195523,-92.1495149,Fort Leonard Wood +Roy Laughlin Park,"Spring Rd, Waynesville, MO 65583, USA",(573) 774-6171,http://www.waynesvillemo.org/laughlinpark.htm,37.826826,-92.204201,Fort Leonard Wood +Pioneer Park,"940 E Alder St, Walla Walla, WA 99362, USA",(509) 527-4527,https://wallawallawa.gov/government/parks-and-recreation,46.0676481,-118.3196973,Walla Walla +Fort Walla Walla Museum,"755 NE Myra Rd, Walla Walla, WA 99362, USA",(509) 525-7703,http://fwwm.org/,46.0486409,-118.3653618,Walla Walla +Kirkman House Museum,"214 N Colville St, Walla Walla, WA 99362, USA",(509) 529-4373,https://www.kirkmanhousemuseum.org/,46.069805,-118.339926,Walla Walla +The Museum of Un-Natural History,"4 & 1/2 West Main over Tallman’s, Walla Walla, WA 99362, USA",(509) 529-9399,Unknown,46.0666483,-118.3398506,Walla Walla +Children's Museum of Walla Walla,"77 Wainwright Dr, Walla Walla, WA 99362, USA",(509) 526-7529,http://www.cmww.org/,46.05537,-118.358755,Walla Walla +Rooks Park (WA) Bennington Lake,"Mill Creek Trail, Walla Walla, WA 99362, USA",(509) 527-7160,http://www.recreation.gov/camping/rooks-park-wa-bennington-lake/r/campgroundDetails.do?contractCode=NRSO&parkId=72173,46.0808667,-118.2554616,Walla Walla +Heritage Square,"116 E Main St, Walla Walla, WA 99362, USA",(509) 527-4527,https://wallawallawa.gov/government/parks-and-recreation/parks,46.068136,-118.336362,Walla Walla +Seven Hills Winery,"212 N 3rd Ave, Walla Walla, WA 99362, USA",(509) 529-7198,https://www.sevenhillswinery.com/,46.0685635,-118.3423437,Walla Walla +Howard-Tietan Park,"616 E Tietan St, Walla Walla, WA 99362, USA",(509) 527-4527,https://www.wallawallawa.gov/government/parks-and-recreation,46.04877889999999,-118.3233434,Walla Walla +American Legion Memorial Park,"145 Alverson Blvd, Everett, WA 98201, USA",(425) 257-8300,https://everettwa.gov/Facilities/Facility/Details/Legion-Memorial-Park-47,48.016023,-122.2034168,Everett +Evergreen Arboretum & Gardens,"145 Alverson Blvd, Everett, WA 98201, USA",(425) 257-8597,http://www.evergreenarboretum.com/,48.0140796,-122.2038346,Everett +Imagine Children's Museum,"1502 Wall St, Everett, WA 98201, USA",(425) 258-1006,https://www.imaginecm.org/,47.9775273,-122.2098158,Everett +Grand Avenue Park,"1720 Grand Ave, Everett, WA 98201, USA",(425) 257-8300 ext. 2,https://everettwa.gov/Facilities/Facility/Details/Grand-Ave-Park-25,47.9951667,-122.2127589,Everett +Howarth Park,"1127 Olympic Blvd, Everett, WA 98203, USA",(425) 257-8300,https://everettwa.gov/Facilities/Facility/Details/Howarth-Park-46,47.96294409999999,-122.2394556,Everett +Island Adventure Whale Watching,"402 14th St, Everett, WA 98201, USA",Unknown,https://island-adventures.com/,47.9995166,-122.2227945,Everett +Narbeck Wetland Sanctuary,"7007 Seaway Blvd, Everett, WA 98203, USA",(425) 388-6600,https://snohomishcountywa.gov/Facilities/Facility/Details/Narbeck-Wetland-Sanctuary-Park-97,47.9343254,-122.2608254,Everett +Hauge Homestead Park,"1819 121st St SE, Everett, WA 98208, USA",(425) 257-8300 ext. 2,https://everettwa.gov/Facilities/Facility/Details/Hauge-Homestead-Park-45,47.8888672,-122.2072508,Everett +Spencer Island Park,"5033 4th St SE, Everett, WA 98205, USA",(425) 388-6600,http://snohomishcountywa.gov/Facilities/Facility/Details/Spencer-Island-76,47.9929582,-122.1643624,Everett +Jetty Island,"Everett, WA 98201, USA",(425) 257-8304,Unknown,48.0036139,-122.2286998,Everett +Flying Heritage & Combat Armor Museum,"3407 109th St SW, Everett, WA 98204, USA",(877) 342-3404,https://flyingheritage.org/,47.89939,-122.280243,Everett +The Rucker Mansion,"412 Laurel Dr, Everett, WA 98201, USA",Unknown,Unknown,47.97279460000001,-122.2241137,Everett +Palmer House from Twin Peaks,"708 33rd St, Everett, WA 98201, USA",Unknown,Unknown,47.9736833,-122.220677,Everett +Museum of Flight Restoration Center & Reserve Collection,"2909 100th St SW, Everett, WA 98204, USA",(425) 745-5150,http://museumofflight.org/Explore-The-Museum/Aircraft-Restoration,47.9080235,-122.2734598,Everett +Langus Riverfront Park,"400 Smith Island Rd, Everett, WA 98201, USA",(425) 257-8300 ext. 2,https://everettwa.gov/1329/Langus-Riverfront,47.999317,-122.1773609,Everett +Forest Park,"802 E Mukilteo Blvd, Everett, WA 98203, USA",(425) 257-8300,https://everettwa.gov/Facilities/Facility/Details/Forest-Park-23,47.9583232,-122.220349,Everett +Viola Oursler Viewpoint,"721 E Marine View Dr, Everett, WA 98201, USA",Unknown,https://everettwa.gov/Facilities/Facility/Details/Viola-Oursler-Park-41,48.0073026,-122.1885738,Everett +Thornton A. Sullivan Park,"11405 W, 11405 Silver Lake Rd, Everett, WA 98208, USA",Unknown,https://everettwa.gov/Facilities/Facility/Details/Thornton-A-Sullivan-Park-at-Silver-Lake-40,47.8945821,-122.2136723,Everett +Boeing Future of Flight​,"8415 Paine Field Blvd, Mukilteo, WA 98275, USA",(800) 464-1476,https://www.boeingfutureofflight.com/,47.9212293,-122.2901598,Everett +Green Lantern Park,"11398-11438 19th Ave SE, Everett, WA 98208, USA",(425) 257-8300 ext. 2,https://everettwa.gov/149/Parks-Community-Services,47.8941873,-122.2030131,Everett +Nushagak/Mulchatna-Wood,"PO Box 1388, Dillingham, AK 99576, USA",(907) 842-2832,Unknown,59.03972219999999,-158.4575,Dillingham +Alaska Department of Fish and Game Wildlife Division,"546 Kenny Wren Rd, Dillingham, AK 99576, USA",(907) 842-2334,https://www.adfg.alaska.gov/index.cfm?adfg=ByAreaSouthcentralBristolBay.contact,59.04263479999999,-158.4683459,Dillingham +Wood-Tikchik State Park,"Dillingham, AK 99576, USA",(907) 842-2641,Unknown,59.8547807,-158.7198264,Dillingham +Bear Paw Inn,"119 E St W, Dillingham, AK 99576, USA",(907) 843-1806,http://www.dillinghamlodging.com/,59.04264009999999,-158.4626482,Dillingham +Togiak National Wildlife Refuge,"Dillingham, AK 99576, USA",(907) 842-1063,http://togiak.fws.gov/,59.2217121,-159.9801491,Dillingham +Mishka’s Little Bear Korner,"100 Aleknagik Lake Rd, Dillingham, AK 99576, USA",Unknown,Unknown,59.0361534,-158.53,Dillingham +Beaver Creek B&B,"1800 Birch Cir Suite 563, Dillingham, AK 99576, USA",(907) 842-7335,http://www.dillinghamalaska.com/,59.0520608,-158.5645578,Dillingham +Bayside Diner,"104 Main St E, Dillingham, AK 99576, USA",(907) 842-1013,https://baysidedinerak.com/,59.040243,-158.4610695,Dillingham +The Bristol Inn,"104 Main St E, Dillingham, AK 99576, USA",(907) 842-2240,http://bristolinn.com/,59.0402271,-158.4613929,Dillingham +Tide Table Coffee,"237 Harbor Rd, Dillingham, AK 99576, USA",Unknown,https://m.facebook.com/tidetablecoffee/,59.0407717,-158.4775762,Dillingham +Dillingham,"Dillingham, AK 99576, USA",Unknown,http://www.ci.dillingham.ak.us/,59.0395277,-158.4633056,Dillingham +Wren’s Drive Thru,"100 Main St E, Dillingham, AK 99576, USA",Unknown,https://www.facebook.com/profile.php?id=100090690760554&mibextid=LQQJ4d,59.0391456,-158.4652486,Dillingham +Bailey's of Bristol Bay,"805 Kanakanak Rd, Dillingham, AK 99576, USA",(907) 842-2820,http://facebook.com/#baileysofbristolbay,59.04066759999999,-158.4744159,Dillingham +Whatcom Falls Park,"1401 Electric Ave, Bellingham, WA 98229, USA",(360) 778-7000,https://cob.org/services/recreation/parks-trails/parks-guide/whatcom-falls-park,48.75044750000001,-122.4269052,Bellingham +Whatcom Museum,"Lightcatcher, 250 Flora Street Old City Hall, 121 Prospect St, Bellingham, WA 98225, USA",(360) 778-8930,https://www.whatcommuseum.org/,48.75266800000001,-122.481351,Bellingham +Marine Park,"100 Harris Ave, Bellingham, WA 98225, USA",(360) 676-2500,https://www.portofbellingham.com/505/Marine-Park---Fairhaven,48.7192848,-122.5157985,Bellingham +SPARK Museum of Electrical Invention,"1312 Bay St, Bellingham, WA 98225, USA",(360) 738-3886,http://www.sparkmuseum.org/,48.75132779999999,-122.4802389,Bellingham +Marine Life Center,"1801 Roeder Ave STE 100, Bellingham, WA 98225, USA",(360) 671-2431,https://portofbellingham.com/508/Marine-Life-Center---Bellingham,48.7571763,-122.4954355,Bellingham +Big Rock Garden Park,"2900 Sylvan St, Bellingham, WA 98226, USA",(360) 778-7700,https://cob.org/services/recreation/parks-trails/parks-guide/big-rock,48.7684343,-122.4218301,Bellingham +Zuanich Point Park,"2600 N Harbor Loop Dr, Bellingham, WA 98225, USA",(360) 676-2500,https://www.portofbellingham.com/,48.75429669999999,-122.5001556,Bellingham +Mindport Exhibits,"210 W Holly St, Bellingham, WA 98225, USA",(360) 647-5614,http://www.mindport.org/,48.750964,-122.480664,Bellingham +Maritime Heritage Park,"500 W Holly St, Bellingham, WA 98225, USA",(360) 778-7000,http://www.cob.org/,48.7530538,-122.48283,Bellingham +Family Interactive Gallery (FIG) at the Whatcom Museum,"250 Flora St, Bellingham, WA 98225, USA",(360) 778-8970,https://www.whatcommuseum.org/explore/family-interactive-gallery/about-the-fig/,48.7533158,-122.4790785,Bellingham +Bellingham Visitor Information Center,"904 Potter St, Bellingham, WA 98229, USA",(360) 671-3990,http://bellingham.org/,48.7465617,-122.4629056,Bellingham +Acid Ball,"Granary Ave, Bellingham, WA 98225, USA",Unknown,https://cob.org/services/arts/waterfront-artifact,48.75074910000001,-122.4855707,Bellingham +Grace Statue,"Bayview Dr, Bellingham, WA 98225, USA",Unknown,https://cob.org/wp-content/uploads/South-Bay-Trail-Boulevard-Park.pdf,48.72698429999999,-122.5065708,Bellingham +Bellingham Wing Alley,"W Champion St, Bellingham, WA 98225, USA",Unknown,Unknown,48.75177780000001,-122.4812431,Bellingham +Sehome Hill Arboretum,"600 25th St, Bellingham, WA 98225, USA",(360) 778-7000,https://www.cob.org/services/recreation/parks-trails/Pages/sehome-arboretum.aspx,48.7354156,-122.4798767,Bellingham +Waypoint Park,"1145 Granary Ave, Bellingham, WA 98225, USA",(360) 778-7000,https://cob.org/services/recreation/parks-trails/parks-guide/waypoint-park,48.7510941,-122.4849055,Bellingham +Whatcom Creek Fish Ladder,"Bellingham, WA 98225, USA",Unknown,Unknown,48.7548869,-122.4816343,Bellingham +Bellingham Farmers Market,"1100 Railroad Ave, Bellingham, WA 98225, USA",(360) 647-2060,http://www.bellinghamfarmers.org/,48.7469611,-122.480625,Bellingham +Lake Padden Park,"4882 S Samish Way, Bellingham, WA 98229, USA",(360) 778-7000,https://www.cob.org/services/recreation/parks-trails/Pages/lake-padden-park.aspx,48.7059866,-122.4555929,Bellingham +Bellingham Rock Landmark,"I-5, Bellingham, WA 98229, USA",(360) 733-5476,https://www.facebook.com/BellinghamRock,48.69053170000001,-122.4104653,Bellingham +Impression 5 Science Center,"200 Museum Dr, Lansing, MI 48933, USA",(517) 485-8116,http://www.impression5.org/,42.73227329999999,-84.5484943,Lansing +Hawk Island Park,"1601 E Cavanaugh Rd, Lansing, MI 48910, USA",(517) 676-2233,http://pk.ingham.org/parks/hawk_island.php,42.6921808,-84.5296636,Lansing +Michigan History Center,"702 W Kalamazoo St, Lansing, MI 48915, USA",(517) 335-2573,http://www.michigan.gov/mhc,42.7317464,-84.5630202,Lansing +Potter Park Zoo,"1301 S Pennsylvania Ave, Lansing, MI 48912, USA",(517) 483-4222,http://www.potterparkzoo.org/,42.71786960000001,-84.5276713,Lansing +Fenner Nature Center,"2020 E Mt Hope Ave, Lansing, MI 48910, USA",(517) 483-4224,http://www.mynaturecenter.org/,42.7117556,-84.5216221,Lansing +Lansing Diamond Railroad Crossing,"703 Beulah St, Lansing, MI 48910, USA",Unknown,Unknown,42.7192346,-84.5421559,Lansing +Love Your Selfie Factory,"2910 Centre Blvd, Lansing, MI 48912, USA",Unknown,Unknown,42.7631617,-84.5167079,Lansing +Eli and Edythe Broad Art Museum,"547 E Circle Dr, East Lansing, MI 48824, USA",(517) 884-4800,https://broadmuseum.msu.edu/,42.73276,-84.4766762,Lansing +Crego Park (no swimming),"1600 Fidelity Road,, Lansing, MI 48910, USA",(517) 483-4277,http://www.lansing.org/,42.717779,-84.5150649,Lansing +Michigan Princess Riverboat,"Grand River Park, Lansing, MI 48917, USA",(517) 627-2154,http://www.michiganprincess.com/,42.721542,-84.587476,Lansing +Frances Park,"2701 Moores River Dr, Lansing, MI 48911, USA",(517) 483-4277,https://www.lansing.org/listings/frances-park/432/,42.717311,-84.5883729,Lansing +R.E. Olds Transportation Museum,"240 Museum Dr, Lansing, MI 48933, USA",(517) 372-0529,http://reoldsmuseum.org/,42.73115300000001,-84.548052,Lansing +Rotary Steam Clock,"100 N Grand Ave, Lansing, MI 48933, USA",(517) 487-3322,https://www.downtownlansing.org/attraction/rotary-club-steam-clock/,42.7337824,-84.5503973,Lansing +Greetings from East Lansing Mural,"720 E Michigan Ave, East Lansing, MI 48823, USA",Unknown,https://greetingstour.com/,42.7344204,-84.4932008,Lansing +Lansing River Trail Art Path 5 of 20,"1105 Factory St, Lansing, MI 48906, USA",Unknown,Unknown,42.74622919999999,-84.549481,Lansing +Remembrance Memorial,"100 N Grand Ave, Lansing, MI 48933, USA",Unknown,Unknown,42.733994,-84.5502826,Lansing +African World Museum and Resource Center,"1136 Shepard St, Lansing, MI 48912, USA",(517) 214-1031,http://www.africanworldmuseum.com/,42.7212766,-84.5264808,Lansing +Adado Riverfront Park,"201 E Shiawassee St, Lansing, MI 48933, USA",(517) 483-4277,https://www.lansing.org/listings/louis-f-adado-riverfront-park/430/,42.7405231,-84.54988879999999,Lansing +Tollgate Wetlands,"1101 N Fairview Ave, Lansing, MI 48912, USA",(517) 483-4277,https://www.canr.msu.edu/tollgate/gardens/the_constructed_wetland_pond,42.7467318,-84.5218912,Lansing +Lansing River Trail Art Path1 of 20,"100 I-96BL, Lansing, MI 48906, USA",Unknown,Unknown,42.7508436,-84.5520672,Lansing +Madison Children's Museum,"100 N Hamilton St, Madison, WI 53703, USA",(608) 256-6445,http://madisonchildrensmuseum.org/,43.0769396,-89.3843946,Madison +Olbrich Botanical Gardens,"3330 Atwood Ave, Madison, WI 53704, USA",(608) 246-4550,http://www.olbrich.org/,43.09263670000001,-89.3346028,Madison +Chazen Museum of Art,"800 University Ave, Madison, WI 53706, USA",(608) 263-2246,http://www.chazen.wisc.edu/,43.0738323,-89.39931930000002,Madison +Wisconsin State Capitol,"2 E Main St, Madison, WI 53703, USA",(608) 266-0382,https://www.wisconsin.gov/Pages/home.aspx,43.0747008,-89.3841491,Madison +Madison Museum of Contemporary Art,"227 State St, Madison, WI 53703, USA",(608) 257-0158,https://www.mmoca.org/,43.0744554,-89.3892675,Madison +Wisconsin Veterans Museum,"30 W Mifflin St, Madison, WI 53703, USA",(608) 267-1799,http://www.wisvetsmuseum.com/,43.0750335,-89.3864552,Madison +Henry Vilas Zoo,"702 S Randall Ave, Madison, WI 53715, USA",(608) 266-4732,https://www.henryvilaszoo.gov/,43.06061039999999,-89.410035,Madison +Downtown Area,"100 State St, Madison, WI 53703, USA",Unknown,Unknown,43.074913,-89.386999,Madison +University of Wisconsin–Madison Arboretum,"1207 Seminole Hwy, Madison, WI 53711, USA",(608) 263-7888,http://arboretum.wisc.edu/,43.0428709,-89.4243205,Madison +Allen Centennial Garden,"620 Babcock Dr, Madison, WI 53706, USA",(608) 576-2501,http://allencentennialgarden.wisc.edu/,43.0767409,-89.4130709,Madison +Physics Museum,"1150 University Ave, Madison, WI 53706, USA",(608) 262-3898,https://www.physics.wisc.edu/ingersollmuseum/,43.0736801,-89.40521210000001,Madison +Sunset Point Overlook,"91 Owen Pkwy, Madison, WI 53705, USA",Unknown,Unknown,43.0667417,-89.44465559999999,Madison +Geology Museum,"1215 W Dayton St, Madison, WI 53706, USA",(608) 262-1412,https://museum.geoscience.wisc.edu/,43.0705756,-89.40626139999999,Madison +Period Garden Park,"110 E Gorham St, Madison, WI 53703, USA",(608) 283-0517,http://www.periodgardenpark.org/,43.07865750000001,-89.38660209999999,Madison +Vilas (Henry) Park,"702 S Randall Ave, Madison, WI 53715, USA",(608) 266-4711,http://www.cityofmadison.com/parks/find-a-park/park.cfm?id=1365,43.06057989999999,-89.40995749999999,Madison +Warner Park,"2930 N Sherman Ave, Madison, WI 53704, USA",(608) 266-4711,http://www.cityofmadison.com/parks/find-a-park/park.cfm?id=1368,43.1278811,-89.3704102,Madison +James Madison Park,"614 E Gorham St, Madison, WI 53703, USA",(608) 266-4711,http://www.cityofmadison.com/parks/find-a-park/park.cfm?id=1241,43.0813926,-89.3828841,Madison +Willy Street Park,"1002 Williamson St, Madison, WI 53703, USA",(608) 209-2165,https://www.facebook.com/WillyStreetPark,43.0809785,-89.36787679999999,Madison +Mineral Point Park,"Mineral Point Park, 126 S Yellowstone Dr, Madison, WI 53705, USA",(608) 266-4711,http://www.cityofmadison.com/parks/find-a-park/park.cfm?id=1255,43.0649383,-89.49537389999999,Madison +Yahara Place Park,"2025 Yahara Pl, Madison, WI 53704, USA",(608) 266-4711,https://www.cityofmadison.com/parks/find-a-park/park.cfm?id=1397,43.0856434,-89.35380359999999,Madison +MacKenzie Falls,"Northern Grampians Rd, Zumsteins VIC 3401, Australia",13 19 63,https://www.parks.vic.gov.au/places-to-see/parks/grampians-national-park/attractions/central-grampians/things-to-do/mackenzie-falls?utm_source=google&utm_medium=maps&utm_campaign=GMB-2020,-37.1095546,142.4123745,Victoria +Queen Victoria Market,"Queen St, Melbourne VIC 3000, Australia",(03) 9320 5822,http://www.qvm.com.au/,-37.8075798,144.956785,Victoria +Royal Botanic Gardens Victoria - Melbourne Gardens,"Melbourne VIC 3004, Australia",(03) 9252 2300,https://www.rbg.vic.gov.au/,-37.8302443,144.9801496,Victoria +Sovereign Hill,"Bradshaw St, Golden Point VIC 3350, Australia",(03) 5337 1199,https://sovereignhill.com.au/,-37.57500799999999,143.866274,Victoria +Wilsons Promontory National Park,"Gippsland VIC 3960, Australia",13 19 63,https://www.parks.vic.gov.au/places-to-see/parks/wilsons-promontory-national-park?utm_source=google&utm_medium=maps&utm_campaign=GMB-2020,-38.9804,146.3717221,Victoria +Fairy Park,"C141/2388 Geelong-Ballan Rd, Anakie VIC 3213, Australia",(03) 5284 1262,http://www.fairypark.com/,-37.8902526,144.2564055,Victoria +Twelve Apostles,"Great Ocean Rd & Booringa Rd, Princetown VIC 3269, Australia",(03) 8427 2002,https://www.parks.vic.gov.au/places-to-see/parks/port-campbell-national-park/things-to-do/twelve-apostles?utm_source=google&utm_medium=maps&utm_campaign=GMB-2020,-38.6621015,143.1050918,Victoria +Fish Falls,"Zumsteins VIC 3401, Australia",Unknown,Unknown,-37.1082196,142.4014357,Victoria +Melbourne Skydeck,"7 Riverside Quay, Southbank VIC 3006, Australia",(03) 9693 8888,https://www.melbourneskydeck.com.au/,-37.8213341,144.9646982,Victoria +Burrong Falls,"Rose Creek, Zumsteins VIC, Zumsteins VIC 3401, Australia",Unknown,https://www.parks.vic.gov.au/places-to-see/sites/burrong-falls-walk,-37.147184,142.3801658,Victoria +Thunder Cave,"Thunder Cave and, Broken Head, Port Campbell VIC 3269, Australia",Unknown,Unknown,-38.6458286,143.060017,Victoria +Nigretta Falls,"Nigretta Falls Access Rd, Hamilton VIC 3300, Australia",1800 807 056,http://www.visitgreaterhamilton.com.au/,-37.6559506,141.9246765,Victoria +MacKenzie Falls,"Mackenzie River,, Zumsteins VIC 3401, Australia",Unknown,Unknown,-37.1101628,142.4131735,Victoria +Sister rocks,"Western Hwy, Stawell VIC 3380, Australia",(03) 5355 0200,https://www.grampianspoint.com.au/attractions/sister-rocks/,-37.09247200000001,142.791598,Victoria +Gibson Steps,"National Park, Great Ocean Rd, Port Campbell VIC 3269, Australia",13 19 63,Unknown,-38.66869459999999,143.1120189,Victoria +Beehive Falls,"Roses Gap Rd, Roses Gap VIC 3381, Australia",13 19 63,http://parks.vic.gov.au/,-36.974476,142.4518419,Victoria +Queen Victoria Memorial,"Town Hall, 225 Sturt St, Ballarat Central VIC 3350, Australia",Unknown,Unknown,-37.5618712,143.8567725,Victoria +Venus Baths,"Venus Baths, Halls Gap VIC 3381, Australia",13 19 63,https://www.parks.vic.gov.au/places-to-see/sites/venus-baths-loop-walk?utm_source=google&utm_medium=maps&utm_campaign=GMB-2020,-37.13887879999999,142.508826,Victoria +Clematis Falls,"Grampians Rd &, Mt Victory Rd, Halls Gap VIC 3381, Australia",0433 639 225,http://www.grampianspoint.com.au/attractions/clematis-falls/,-37.1353695,142.5193017,Victoria +The Big Tap,"Cowes VIC 3922, Australia",Unknown,Unknown,-38.4875682,145.2621746,Victoria +Lewis & Clark Interpretive Center,"900 Larsen Park Rd, Sioux City, IA 51103, USA",(712) 224-5242,http://www.siouxcitylcic.com/,42.49034289999999,-96.4155633,Sioux City +Sioux City Public Museum,"607 4th St, Sioux City, IA 51101, USA",(712) 279-6174,http://www.siouxcitymuseum.org/,42.494613,-96.4031533,Sioux City +Stone State Park,"5001 Talbot Rd, Sioux City, IA 51103, USA",(712) 255-4698,https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/Stone-State-Park,42.5548916,-96.4690437,Sioux City +Sergeant Floyd River Museum,"1000 Larsen Park Rd, Sioux City, IA 51103, USA",(712) 279-0198,https://www.siouxcitymuseum.org/sergeant-floyd-river-museum,42.4911681,-96.418499,Sioux City +LaunchPAD Children's Museum,"623 Pearl St, Sioux City, IA 51101, USA",(712) 224-2542,http://www.launchpadmuseum.com/,42.4971772,-96.40832739999999,Sioux City +Dorothy Pecaut Nature Center,"4500 Sioux River Rd, Sioux City, IA 51109, USA",(712) 258-0838,http://woodburyparks.org/,42.54333039999999,-96.4733219,Sioux City +Sioux City Railroad Museum,"3400 Sioux River Rd, Sioux City, IA 51109, USA",(712) 233-6996,https://www.siouxcityrailroadmuseum.org/,42.5288267,-96.4766324,Sioux City +Sergeant Floyd Monument,"2601 S Lewis Blvd, Sioux City, IA 51103, USA",(202) 354-2211,https://www.nps.gov/places/sergeant-floyd-monument.htm,42.4621526,-96.3773377,Sioux City +Bacon Creek Park,"5015 Correctionville Rd, Sioux City, IA 51106, USA",(712) 279-6109,Unknown,42.4973301,-96.33539909999999,Sioux City +Mid America Museum of Aviation and Transportation,"2600 Expedition Ct, Sioux City, IA 51102, USA",(712) 252-5300,http://www.midamericaairmuseum.org/,42.4138785,-96.3742051,Sioux City +Sioux City Art Center,"225 Nebraska St, Sioux City, IA 51101, USA",(712) 279-6272,http://www.siouxcityartcenter.org/,42.4927885,-96.4039964,Sioux City +Buffalo Mural,"321 5th St, Sioux City, IA 51101, USA",Unknown,Unknown,42.49539980000001,-96.4068049,Sioux City +Dinosaur Park,"1515 Nebraska St, Sioux City, IA 51105, USA",Unknown,Unknown,42.5065633,-96.4037955,Sioux City +Grandview Park,"Sioux City, IA 51104, USA",(712) 279-6126,https://www.sioux-city.org/Home/Components/FacilityDirectory/FacilityDirectory/14/164,42.5168188,-96.4086463,Sioux City +Siouxland Historical Railroad,"3400 Sioux River Rd, Sioux City, IA 51109, USA",(712) 233-6996,http://siouxcityrailroadmuseum.org/,42.5294783,-96.4750242,Sioux City +Trinity Heights,"2509 33rd St, Sioux City, IA 51108, USA",(712) 239-8670,http://www.trinityheights.com/,42.5279688,-96.37838789999999,Sioux City +Alley Art,"416 Pierce St, Sioux City, IA 51101, USA",Unknown,Unknown,42.49470549999999,-96.4041946,Sioux City +Dale Street Park,"913 15th St, Sioux City, IA 51105, USA",(712) 279-6126,https://www.sioux-city.org/government/departments-g-p/parks-recreation-department/contact-us,42.5064252,-96.39840869999999,Sioux City +The Greatest Escape,"621 Floyd Blvd, Sioux City, IA 51101, USA",(712) 223-5528,http://thegreatestescapesiouxcity.com/,42.4972524,-96.39389829999999,Sioux City +Chris Larsen City Park,"1280 Larsen Park Rd, Sioux City, IA 51103, USA",(712) 279-6126,https://www.sioux-city.org/Home/Components/FacilityDirectory/FacilityDirectory/54/164,42.48593169999999,-96.3957004,Sioux City +Updown Trampoline Park,"101 S 41st Ave, Hattiesburg, MS 39402, USA",(601) 909-9060,http://updowntrampolinepark.com/,31.323658,-89.349277,Hattiesburg +Hattiesburg Pocket Museum,"119 W Front St, Hattiesburg, MS 39401, USA",Unknown,https://hattiesburgconventioncommission.com/hattiesburg-pocket-museum/,31.32632039999999,-89.29034949999999,Hattiesburg +Hattiesburg Zoo,"107 S 17th Ave, Hattiesburg, MS 39401, USA",(601) 545-4576,http://www.hattiesburgzoo.com/,31.32265960000001,-89.3150027,Hattiesburg +Medicine Wheel Garden,"Hattiesburg, MS 39401, USA",Unknown,Unknown,31.3273609,-89.3369338,Hattiesburg +Paul B Johnson State Park,"319 Geiger Lake Rd, Hattiesburg, MS 39401, USA",(601) 582-7721,https://www.mdwfp.com/parks-destinations/state-parks/paul-b-johnson/,31.13939539999999,-89.2427393,Hattiesburg +Mississippi Armed Forces Museum,"Building 850, Forrest Ave, Hattiesburg, MS 39407, USA",(601) 558-2757,https://msarmedforcesmuseum.org/,31.19780739999999,-89.2234763,Hattiesburg +Kamper Park,"107 S 17th Ave, Hattiesburg, MS 39401, USA",(601) 545-4576,Unknown,31.32411859999999,-89.3170614,Hattiesburg +Pinebelt Blueways - Glendale Avenue Boat Ramp,"Glendale Ave, Hattiesburg, MS 39401, USA",Unknown,http://www.pinebeltblueways.com/,31.34957349999999,-89.306198,Hattiesburg +Pep's Point Water Park,"382 Peps Point Rd, Hattiesburg, MS 39401, USA",(601) 582-8461,https://www.facebook.com/pepspoint/,31.40925560000001,-89.3702558,Hattiesburg +Lake Thoreau Environmental Center,"150 Lake Thoreau Rd, Hattiesburg, MS 39402, USA",Unknown,https://www.usm.edu/lake-thoreau-environmental-center,31.3465655,-89.422321,Hattiesburg +African American Military History Museum,"305 E 6th St, Hattiesburg, MS 39401, USA",(601) 450-1942,http://www.hattiesburguso.com/,31.3340801,-89.2926954,Hattiesburg +Pinebelt Blueways - Pep's Point Road Boat Ramp,"Hattiesburg, MS 39401, USA",Unknown,http://www.pinebeltblueways.com/,31.3958901,-89.36561290000002,Hattiesburg +Pinebelt Blueways - Sims Road Boat Ramp,"Hattiesburg, MS 39401, USA",(601) 296-7475,http://www.pinebeltblueways.com/,31.2604361,-89.2269725,Hattiesburg +Pinebelt Blueways - Chain Park Road Boat Ramp,"Hattiesburg, MS 39401, USA",(601) 296-7475,http://www.pinebeltblueways.com/,31.3425109,-89.2808017,Hattiesburg +Town Square Park,"100 Main St, Hattiesburg, MS 39401, USA",Unknown,Unknown,31.3241394,-89.2878412,Hattiesburg +All-American Rose Garden,"All-American Rose Garden, 118 College Dr, Hattiesburg, MS 39406, USA",Unknown,https://www.onlyinyourstate.com/mississippi/walk-through-sea-of-roses-ms/,31.3252244,-89.33199859999999,Hattiesburg +Duncan Lake Hattiesburg Mississippi,"James St, Hattiesburg, MS 39401, USA",Unknown,Unknown,31.3111575,-89.2790617,Hattiesburg +Chain Park,"5619 Hwy 42, Hattiesburg, MS 39401, USA",(601) 516-0872,Unknown,31.3385535,-89.280576,Hattiesburg +High Ropes Adventure Course at Hattiesburg Zoo,"107 S 17th Ave, Hattiesburg, MS 39401, USA",(601) 545-4576,http://www.hattiesburgzoo.com/,31.3225132,-89.3152231,Hattiesburg +Hattiesburg Area Historical Society,"723 Main St, Hattiesburg, MS 39401, USA",(601) 582-5460,http://www.hahsmuseum.org/,31.3284594,-89.29260409999999,Hattiesburg +"Children's Museum, Stockton","402 W Weber Ave, Stockton, CA 95203, USA",(209) 465-4386,https://www.childrensmuseumstockton.org/,37.9519756,-121.2967856,Stockton +Louis Park,"3121 Monte Diablo Ave, Stockton, CA 95203, USA",(209) 937-8206,http://www.stocktongov.com/,37.9558644,-121.3464878,Stockton +Haggin Museum,"1201 N Pershing Ave, Stockton, CA 95203, USA",(209) 940-6300,http://www.hagginmuseum.org/,37.9605722,-121.3138609,Stockton +Miracle Mile,"221 Tuxedo Ct, Stockton, CA 95204, USA",(209) 623-1144,http://www.stocktonmiraclemile.com/,37.9717771,-121.30132,Stockton +Buckley Cove Park,"Buckley Cove Way, Stockton, CA 95219, USA",(209) 937-8539,Unknown,37.9748014,-121.3756927,Stockton +Stockton Water Tower,"811 Buena Vista Ave, Stockton, CA 95203, USA",Unknown,Unknown,37.956838,-121.3185108,Stockton +Joan Darrah Promenade,"W Weber Ave, Stockton, CA 95202, USA",Unknown,Unknown,37.95318710000001,-121.2931709,Stockton +American Legion Park,"Stockton, CA 95204, USA",(209) 937-8206,http://www.stocktongov.com/services/parkRec/default.html,37.9680472,-121.3080513,Stockton +Wat Dhammararam Buddhist Temple,"3732 Carpenter Rd, Stockton, CA 95215, USA",(209) 943-2883,http://www.watdhammararambuddhist.org,37.9243986,-121.2251909,Stockton +Sousa Park,"2829 Yellowstone Ave, Stockton, CA 95205, USA",(209) 937-8206,http://www.stocktongov.com/government/departments/publicWorks/contactUs.html,37.9576352,-121.2487092,Stockton +Shumway Oak Grove Regional Park,"4520 W Eight Mile Rd, Stockton, CA 95209, USA",(209) 953-8800,http://www.sjparks.com/parks/oak-grove-regional-park.aspx,38.0574996,-121.3638536,Stockton +Stockton Diamond Railroad Crossing,"796 S Sacramento St, Stockton, CA 95205, USA",Unknown,Unknown,37.9467542,-121.2758804,Stockton +Upper Stockton Diamond Railroad Crossing,"Stockton, CA 95205, USA",Unknown,Unknown,37.96859329999999,-121.2693805,Stockton +Garrigan Park,"3690 Iron Canyon Cir, Stockton, CA 95209, USA",(209) 937-8411,http://www.stocktongov.com/government/departments/publicworks/contactUs.html,38.04405,-121.36532,Stockton +Visit Stockton,"146 W Weber Ave, Stockton, CA 95202, USA",(209) 938-1555,http://www.visitstockton.org/,37.9528632,-121.2937217,Stockton +Michael Faklis Park,"5250 Cosumnes Dr, Stockton, CA 95219, USA",(209) 937-8206,http://www.stocktongov.com/government/departments/communityServices/contactUs.html#parksrec,38.0474662,-121.3779294,Stockton +Dentoni Park,"1430 Royal Oaks Dr, Stockton, CA 95209, USA",(209) 937-8257,http://www.stocktongov.com/government/council/d1PP.html,38.0348733,-121.3309308,Stockton +Panella Park,"5758 Lorraine Ave, Stockton, CA 95210, USA",(209) 937-8206,Unknown,38.0117037,-121.2826645,Stockton +Barkleyville Dog Park,"5505 Feather River Dr, Stockton, CA 95219, USA",(209) 937-8206,http://www.stocktongov.com/discover/dog.html,37.99469279999999,-121.3488711,Stockton +Stockton Arena,"248 W Fremont St, Stockton, CA 95203, USA",(209) 373-1400,http://stocktonlive.com/,37.9561651,-121.2960735,Stockton +Anchorage Museum,"625 C St, Anchorage, AK 99501, USA",(907) 929-9200,http://www.anchoragemuseum.org/,61.2162281,-149.8855791,Anchorage +Chugach State Park,"18620 Seward Hwy, Anchorage, AK 99516, USA",(907) 345-5014,Unknown,61.1934395,-149.2304786,Anchorage +Alaska Native Heritage Center,"8800 Heritage Center Dr, Anchorage, AK 99504, USA",(907) 330-8000,http://www.alaskanative.net/,61.23281489999999,-149.7170998,Anchorage +Earthquake Park,"5101 Point Woronzof Rd, Anchorage, AK 99502, USA",(907) 343-4355,https://www.anchorage.net/discover/trails-and-local-parks/earthquake-park/,61.1954326,-149.9753402,Anchorage +Resolution Park,"320 L St, Anchorage, AK 99501, USA",(907) 343-4355,Unknown,61.21918559999999,-149.9038468,Anchorage +Beluga Point,"Mile 110, Seward Hwy, Anchorage, AK 99540, USA",Unknown,https://www.adfg.alaska.gov/index.cfm%3Fadfg%3Dviewinglocations.belugapoint,61.00675009999999,-149.6943858,Anchorage +Anchorage Light Speed Planet Walk - Mars,"1201-1253 W 5th Ave, Anchorage, AK 99501, USA",Unknown,http://anchorageplanetwalk.org/,61.2176497,-149.9061661,Anchorage +Alaska Aviation Museum,"4721 Aircraft Dr, Anchorage, AK 99502, USA",(907) 248-5325,http://www.alaskaairmuseum.org/,61.1794747,-149.9718595,Anchorage +Planet Walk,"W 6th Ave & G St, Anchorage, AK 99501, USA",(907) 258-0415,https://anchorageplanetwalk.org/,61.21733620000001,-149.8951787,Anchorage +Alaska Botanical Garden,"4601 Campbell Airstrip Road, Anchorage, AK 99507, USA",(907) 770-3692,http://www.alaskabg.org/,61.17777439999999,-149.7615572,Anchorage +Bird Point,"Seward Hwy, Anchorage, AK 99540, USA",Unknown,https://www.anchorage.net/blog/alaska-bore-tide-viewing/,60.9287953,-149.3466586,Anchorage +Visit Anchorage Log Cabin Visitor Information Center,"546 W 4th Ave, Anchorage, AK 99501, USA",(907) 257-2363,https://www.anchorage.net/listing/visit-anchorage/36982/,61.2183685,-149.8931748,Anchorage +Anchorage Welcomes You,"1175 E 5th Ave, Anchorage, AK 99501, USA",Unknown,Unknown,61.21786669999999,-149.8543696,Anchorage +Valley of the Moon Park,"610 W 17th Ave, Anchorage, AK 99501, USA",(907) 343-4355,https://www.alaska.org/detail/valley-of-the-moon-park,61.2049461,-149.8945141,Anchorage +Kincaid Park,"9401 Raspberry Rd, Anchorage, AK 99502, USA",(907) 343-6397,Unknown,61.1536409,-150.05538,Anchorage +Wyland Whale,"320 W 5th Ave, Anchorage, AK 99501, USA",Unknown,https://www.wyland.com/,61.21692239999999,-149.8907553,Anchorage +Carr-Gottstein Park,"3130 Discovery Bay Dr, Anchorage, AK 99515, USA",(907) 343-4355,Unknown,61.11752300000001,-149.9378554,Anchorage +Potter Marsh Bird Sanctuary,"Seward Hwy, Anchorage, AK 99516, USA",Unknown,Unknown,61.0778009,-149.8271763,Anchorage +Kincaid Sand Dunes Park,"8200 Jodhpur St, Anchorage, AK 99502, USA",Unknown,https://www.alaska.org/detail/kincaid-sand-dunes,61.1439654,-150.0239114,Anchorage +Star the Reindeer,"840 W 10th Ave, Anchorage, AK 99501, USA",Unknown,https://www.tripadvisor.com/Attraction_Review-g60880-d10676361-Reviews-Star_the_Reindeer-Anchorage_Alaska.html,61.21250190000001,-149.8991484,Anchorage +Freedom Park,"1908 East Blvd, Charlotte, NC 28203, USA",(980) 314-1002,Unknown,35.19144879999999,-80.8434408,Charlotte +Levine Museum of the New South,"401 S Tryon St, Charlotte, NC 28202, USA",(704) 333-1887,http://www.museumofthenewsouth.org/,35.224457,-80.8467217,Charlotte +Discovery Place Science,"301 N Tryon St, Charlotte, NC 28202, USA",(704) 327-2189,http://discoveryplace.org/,35.2296941,-80.8415655,Charlotte +NASCAR Hall of Fame,"400 E M.L.K. Jr Blvd, Charlotte, NC 28202, USA",(704) 654-4400,http://www.nascarhall.com/,35.22113660000001,-80.8439538,Charlotte +The Mint Museum,"2730 Randolph Rd, Charlotte, NC 28207, USA",(704) 337-2000,http://www.mintmuseum.org/,35.1974615,-80.8143212,Charlotte +Bechtler Museum of Modern Art,"420 S Tryon St, Charlotte, NC 28202, USA",(704) 353-9209,http://bechtler.org/,35.2244822,-80.8473279,Charlotte +The Charlotte Museum of History,"3500 Shamrock Dr, Charlotte, NC 28215, USA",(704) 568-1774,http://www.charlottemuseum.org/,35.23353499999999,-80.766542,Charlotte +Mint Museum Uptown,"500 S Tryon St, Charlotte, NC 28202, USA",(704) 337-2000,http://mintmuseum.org/,35.2244083,-80.8480847,Charlotte +Ray’s Splash Planet,"215 N Sycamore St, Charlotte, NC 28202, USA",(980) 314-4729,https://www.mecknc.gov/ParkandRec/Aquatics/RaysSplashPlanet/Pages/default.aspx,35.2381165,-80.8513028,Charlotte +Trail of History,"100 N Kings Dr, Charlotte, NC 28204, USA",Unknown,http://charlottetrailofhistory.org/,35.21684229999999,-80.8326733,Charlotte +Marshall Park,"Marshall Park, 800 E 3rd St, Charlotte, NC 28202, USA",(704) 432-4280,https://www.mecknc.gov/ParkandRec/Parks/ParksByRegion/CentralRegion/Pages/marshallpark.aspx,35.21921,-80.838582,Charlotte +UNC Charlotte Botanical Gardens,"9090 Craver Rd, Charlotte, NC 28262, USA",(704) 687-0721,http://gardens.uncc.edu/,35.30781329999999,-80.72973460000001,Charlotte +Romare Bearden Park,"300 S Church St, Charlotte, NC 28202, USA",Unknown,Unknown,35.2269701,-80.8478773,Charlotte +Midtown Park,"510 S Kings Dr, Charlotte, NC 28204, USA",(980) 314-1000,Unknown,35.2110133,-80.8366283,Charlotte +First Ward Park,"301 E 7th St, Charlotte, NC 28202, USA",(704) 336-3854,Unknown,35.2276781,-80.8364588,Charlotte +Reedy Creek Nature Center,"2986 ROCKY RIVER RD, Charlotte, NC 28215, USA",(980) 314-1119,https://parkandrec.mecknc.gov/Places-to-Visit/Nature/reedy-creek-nature-center,35.261767,-80.71938000000002,Charlotte +Billy Graham Library,"4330 Westmont Dr, Charlotte, NC 28217, USA",(704) 401-3200,https://billygrahamlibrary.org/,35.1905516,-80.9093017,Charlotte +U.S. National Whitewater Center,"5000 Whitewater Center Pkwy, Charlotte, NC 28214, USA",(704) 391-3900,http://www.whitewater.org/,35.27119709999999,-81.0056488,Charlotte +Books Monument,"435 S College St, Charlotte, NC 28202, USA",Unknown,Unknown,35.22348,-80.8461289,Charlotte +The Mural House,"1812 E 8th St, Charlotte, NC 28204, USA",Unknown,Unknown,35.21519,-80.81965439999999,Charlotte +Historic Jamestowne,"1368 Colonial Nat'l Historical Pkwy, Jamestown, VA 23081, USA",(757) 856-1250,http://www.historicjamestowne.org/,37.2112795,-76.7772028,Jamestown +Jamestown Settlement,"2110 Jamestown Rd, Williamsburg, VA 23185, USA",(757) 253-4838,https://www.jyfmuseums.org/visit/jamestown-settlement?utm_source=gmb&utm_medium=organic&utm_campaign=gmb-listing,37.224777,-76.7838764,Jamestown +Archaearium Archaeology Museum,"1369 Colonial Nat'l Historical Pkwy, Jamestown, VA 23081, USA",(757) 856-1250,http://historicjamestowne.org/collections/exhibits/archaearium/,37.21000339999999,-76.7800803,Jamestown +Jamestown Beach Event Park,"2205 Jamestown Rd, Williamsburg, VA 23185, USA",(757) 259-5360,http://www.jamescitycountyva.gov/Facilities/Facility/Details/Jamestown-Beach-Event-Park-15,37.2271939,-76.7838435,Jamestown +Jamestown Glasshouse,"1348 Colonial Nat'l Historical Pkwy, Williamsburg, VA 23185, USA",(757) 229-2437,https://www.nps.gov/jame/planyourvisit/glasshouse.htm,37.2207441,-76.7853186,Jamestown +Quadricentennial Park,"4630100016, Williamsburg, VA 23185, USA",Unknown,Unknown,37.22595679999999,-76.7829199,Jamestown +James Fort,"Colonial Nat'l Historical Pkwy, Williamsburg, VA 23185, USA",(757) 253-4838,http://www.historyisfun.org/jamestown-settlement/james-fort/,37.222501,-76.78610259999999,Jamestown +Jamestown Rediscovery,"1365 Colonial Nat'l Historical Pkwy, Williamsburg, VA 23185, USA",(757) 229-4997,http://www.historicjamestowne.org/,37.2101432,-76.7794172,Jamestown +"Archer's Hope Viewing Area on the Colonial Parkway near Jamestown, Virginia","Colonial Nat'l Historical Pkwy, Williamsburg, VA 23185, USA",Unknown,Unknown,37.2153943,-76.7163585,Jamestown +Godspeed,"2110 Jamestown Rd, Williamsburg, VA 23185, USA",(757) 253-4838,Unknown,37.2216581,-76.7878413,Jamestown +Jamestown VA,"Jamestown Rd, Williamsburg, VA 23185, USA",Unknown,Unknown,37.2097416,-76.7782414,Jamestown +Busch Gardens Williamsburg,"1 Busch Gardens Blvd, Williamsburg, VA 23185, USA",(757) 229-4386,https://buschgardens.com/williamsburg?utm_source=google&utm_medium=organic&utm_campaign=gbp_listing,37.2337159,-76.6439896,Jamestown +Yorktown Battlefield,"1000 Colonial Nat'l Historical Pkwy, Yorktown, VA 23690, USA",(757) 898-2410,https://www.nps.gov/york/index.htm,37.2294775,-76.5019458,Jamestown +George Wythe House,"101 Palace Green St, Williamsburg, VA 23185, USA",(888) 965-7254,https://www.colonialwilliamsburg.org/locations/george-wythe-house/?utm_source=google&utm_medium=organic&utm_campaign=map_listing&utm_content=Wythe_house,37.2720718,-76.7024576,Jamestown +Powhatan Indian Village,"2110 Jamestown Rd, Williamsburg, VA 23185, USA",(843) 336-3395,http://www.historyisfun.org/jamestown-settlement/powhatan-village/,37.224777,-76.7838764,Jamestown +Smith’s Fort,"217 Smith Fort Ln, Surry, VA 23883, USA",Unknown,https://preservationvirginia.org/historic-sites/smiths-fort-plantation/,37.1640622,-76.82012859999999,Jamestown +Jamestown Rediscovery,"Island Drive, Williamsburg, VA 23185, USA",(757) 856-1250,http://www.historicjamestowne.org/,37.2084225,-76.77881239999999,Jamestown +The Hunt Shrine,"5420100001, Williamsburg, VA 23185, USA",Unknown,Unknown,37.2089196,-76.7792916,Jamestown +Haunted Williamsburg,"102 W Duke of Gloucester St, Williamsburg, VA 23185, USA",(888) 965-7254,https://www.colonialwilliamsburg.org/events/haunted-williamsburg/?utm_source=google&utm_medium=organic&utm_campaign=map_listing&utm_content=haunted_williamsburg,37.2706955,-76.6999845,Jamestown +Jamestown National Historic Site,"Williamsburg, VA 23185, USA",Unknown,https://historicjamestowne.org/visit/plan-your-visit/,37.2093282,-76.7750466,Jamestown +Geological Museum,"200 N 9th St, Laramie, WY 82072, USA",(307) 766-2646,http://www.uwyo.edu/geomuseum/,41.3141149,-105.5831856,Laramie +Laramie Plains Museum,"603 E Ivinson Ave, Laramie, WY 82070, USA",(307) 742-4448,http://laramiemuseum.org/,41.312149,-105.5890426,Laramie +University of Wyoming Art Museum,"Centennial Complex, 2111 E Willett Dr, Laramie, WY 82071, USA",(307) 766-6622,http://www.uwyo.edu/artmuseum/,41.31492959999999,-105.567725,Laramie +"Iconic Grand Ave, Laramie","101 Grand Ave, Laramie, WY 82070, USA",Unknown,Unknown,41.3111747,-105.5961385,Laramie +Rocky Mountain Herbarium,"1000 E University Ave, Laramie, WY 82071, USA",(307) 766-2236,https://www.rockymountainherbarium.org/,41.3126515,-105.5847833,Laramie +Wyoming Women's History House,"317 S 2nd St, Laramie, WY 82070, USA",(307) 760-7771,https://wyomingwomenshistoryhouse.org/,41.31038159999999,-105.5944461,Laramie +American Heritage Center,"2111 E Willett Dr, Laramie, WY 82072, USA",(307) 766-4114,http://www.uwyo.edu/ahc/,41.3141653,-105.5681222,Laramie +"Laramie, Wyoming, USA - Virtual Railfan LIVE","600 S 1st St, Laramie, WY 82072, USA",Unknown,Unknown,41.3082385,-105.5964692,Laramie +Brush Creek Work Center,"2468 W Jackson St, Laramie, WY 82070, USA",Unknown,Unknown,41.3085657,-105.6296606,Laramie +Abraham Lincoln Memorial Monument,"136 US Frst Service Rd 705 A, Laramie, WY 82070, USA",Unknown,https://www.roadsideamerica.com/story/8450,41.2367911,-105.4366128,Laramie +Wyoming Territorial Prison State Historic Site,"975 Snowy Range Rd, Laramie, WY 82070, USA",(307) 745-6161,https://wyoparks.wyo.gov/index.php/places-to-go/wyoming-territorial-prison,41.3116128,-105.6105124,Laramie +Snowy Range Rotating Sculpture Program,"E Harney St &, Snowy Range Rd, Laramie, WY 82072, USA",Unknown,https://www.cityoflaramie.org/1125/Laramie-Public-Art,41.3195041,-105.5926711,Laramie +O'Dell Park,"1201-1207 E Mill St, Laramie, WY 82072, USA",(307) 721-5200,https://www.cityoflaramie.org/Facilities/Facility/Details/6,41.33066180000001,-105.5805486,Laramie +Harbon Park,"1200-1398 E Harney St, Laramie, WY 82072, USA",(307) 721-5200,https://www.cityoflaramie.org/Facilities/Facility/Details/15,41.3185163,-105.5789498,Laramie +Kiowa Park,"4100-4198 Kiowa Dr, Laramie, WY 82072, USA",(307) 721-5200,https://www.cityoflaramie.org/Facilities/Facility/Details/1,41.32321719999999,-105.5440557,Laramie +All Points West Escape Room and Fun Center,"1575 N 4th St, Laramie, WY 82072, USA",(307) 460-3966,http://www.allpointswestwyo.com/,41.326619,-105.5896664,Laramie +LaBonte Park,"501-599 E Canby St, Laramie, WY 82072, USA",Unknown,https://www.cityoflaramie.org/Facilities/Facility/Details/3,41.3215509,-105.5873425,Laramie +Visit Laramie,"800 S 3rd St, Laramie, WY 82070, USA",(307) 745-4195,https://www.visitlaramie.org/,41.3060675,-105.5946595,Laramie +Toy Park,"133 Nelson Ferry Rd, Decatur, GA 30030, USA",Unknown,http://www.decaturdisciples.org/?page_id=340,33.776129,-84.304726,Decatur +Decatur Arts Festival,"509 N McDonough St, Decatur, GA 30030, USA",Unknown,http://decaturartsfestival.com/,33.7751099,-84.2959851,Decatur +DeKalb History Center Museum,"101 E Court Square, Decatur, GA 30030, USA",(404) 373-1088,http://www.dekalbhistory.org/,33.7751654,-84.2964989,Decatur +Glenlake Park,"1121 Church St, Decatur, GA 30030, USA",(404) 377-7231,https://www.decaturga.com/parksrec/page/glenlake-park,33.7838118,-84.2929793,Decatur +Clyde Shepherd Nature Preserve,"2580 Pine Bluff Dr, Decatur, GA 30033, USA",(678) 466-0572,http://www.cshepherdpreserve.org/,33.806827,-84.28304899999999,Decatur +Animas Museum,"3065 W 2nd Ave, Durango, CO 81301, USA",(970) 259-2402,https://www.animasmuseum.org/,37.2992304,-107.8733226,Durango +Whitewater Park,"107 Camino Del Rio, Durango, CO 81301, USA",Unknown,https://www.durangogov.org/Facilities/Facility/Details/Whitewater-Park-31,37.2641324,-107.881276,Durango +Durango State Fish Hatchery,"151 E 16th St, Durango, CO 81301, USA",Unknown,Unknown,37.2813949,-107.875608,Durango +Durango & Silverton Narrow Gauge Railroad,"479 Main Ave, Durango, CO 81301, USA",(888) 872-4607,http://www.durangotrain.com/,37.2690881,-107.8825343,Durango +The Powerhouse,"1295 Camino Del Rio, Durango, CO 81301, USA",(970) 259-9234,https://powsci.org/,37.2782875,-107.8805411,Durango +Durango train ride,"Durango, CO 81301, USA",Unknown,Unknown,37.27527999999999,-107.8800667,Durango +Statue,"1129 Camino Del Rio, Durango, CO 81301, USA",Unknown,Unknown,37.2773437,-107.8822476,Durango +Oxbow Park and Preserve,"500 Animas View Dr, Durango, CO 81301, USA",(970) 375-7321,http://www.durangogov.org/Facilities/Facility/Details/33,37.3096535,-107.8543142,Durango +Durango Wildlife Museum,"151 E 16th St, Durango, CO 81301, USA",(970) 247-0855,https://www.durango.org/discover-durango/fish-hatchery-and-wildlife-museum,37.2814416,-107.875858,Durango +Lions Den,"2401 Rim Dr, Durango, CO 81301, USA",(970) 375-7321,http://www.durangogov.org/Facilities/Facility/Details/16,37.2880791,-107.8614313,Durango +Grizzly Brown carving,"1423 W 3rd Ave, Durango, CO 81301, USA",Unknown,Unknown,37.2799199,-107.8815851,Durango +Durango Adventures and Zipline Tours,"20673 US-160, Durango, CO 81301, USA",(970) 759-9880,http://durangoadventures.com/,37.2702327,-107.908568,Durango +Animas City Park,"E 32nd St, Durango, CO 81301, USA",(970) 375-7321,https://www.durangogov.org/facilities/facility/details/Animas-City-Park-1,37.3016533,-107.8686998,Durango +Durango Treasures,"900 Main Ave, Durango, CO 81301, USA",(970) 403-5562,http://durangotreasures.com/?utm_source=gmb&utm_medium=referral,37.2735159,-107.8803706,Durango +DurangoLiveCam,"529 Castle Rdg Dr, Durango, CO 81303, USA",Unknown,Unknown,37.272949,-107.9382454,Durango +Scenic View,"800 S Camino Del Rio, Durango, CO 81301, USA",Unknown,Unknown,37.243582,-107.869547,Durango +Pinkerton Hot Springs,"35554 US-550, Durango, CO 81301, USA",Unknown,Unknown,37.4510282,-107.8053135,Durango +Schneider Park,"950 Roosa Ave, Durango, CO 81301, USA",Unknown,https://www.durango.org/listing/schneider-park/1843/,37.2781864,-107.882483,Durango +American Dream display,"1129 Camino Del Rio, Durango, CO 81301, USA",Unknown,Unknown,37.27745410000001,-107.8830663,Durango +Memorial Park Phase II,"Durango, CO 81301, USA",(970) 375-7300,Unknown,37.2913016,-107.8693091,Durango +Longview World of Wonders,"112 E Tyler St, Longview, TX 75601, USA",(903) 212-4969,http://www.longviewwow.org/,32.494791,-94.7395559,Longview +Gregg County Historical Museum,"214 N Fredonia St, Longview, TX 75601, USA",(903) 753-5840,http://gregghistorical.org/,32.4953078,-94.7382885,Longview +Longview Museum of Fine Arts,"215 E Tyler St, Longview, TX 75601, USA",(903) 753-8103,https://www.lmfa.org/,32.4946741,-94.73797809999999,Longview +KidsView Playground,"100 H G Mosley Pkwy, Longview, TX 75604, USA",(903) 237-1270,https://www.longviewtexas.gov/2162/Park-and-Facility-Locations,32.49205389999999,-94.77511469999999,Longview +Longview Arboretum and Nature Center,"706 W Cotton St, Longview, TX 75604, USA",(903) 212-2181,http://longviewarboretum.org/,32.49630919999999,-94.7574346,Longview +Stamper Park,"400 Fair St, Longview, TX 75601, USA",(903) 237-1270,https://www.longviewtexas.gov/2162/Park-and-Facility-Locations,32.4888322,-94.74906560000001,Longview +Lear Park,"100 H G Mosley Pkwy, Longview, TX 75604, USA",(903) 237-1270,https://www.longviewtexas.gov/2162/Park-and-Facility-Locations,32.4918841,-94.7773128,Longview +Rotary Park,"500 Baylor Dr, Longview, TX 75601, USA",(903) 237-1270,https://www.longviewtexas.gov/2162/Park-and-Facility-Locations,32.51020059999999,-94.7438943,Longview +Teague Park,"415 American Legion Blvd, Longview, TX 75601, USA",(903) 237-1270,https://www.longviewtexas.gov/2162/Park-and-Facility-Locations,32.5009758,-94.7214503,Longview +McWhorter Park,"1000 Toler Rd, Longview, TX 75604, USA",(903) 237-1270,https://www.longviewtexas.gov/2162/Park-and-Facility-Locations,32.52199929999999,-94.78922569999999,Longview +Air U Trampoline Park,"4300 US-259, Longview, TX 75605, USA",(903) 663-2478,http://www.airu-longview.com/,32.57095249999999,-94.7336406,Longview +Rosamond Gifford Zoo,"1 Conservation Pl, Syracuse, NY 13204, USA",(315) 435-8511,http://www.rosamondgiffordzoo.org/,43.0433241,-76.1810744,Syracuse +Museum of Science & Technology,"500 S Franklin St, Syracuse, NY 13202, USA",(315) 425-9068,http://www.most.org/,43.04709829999999,-76.1555908,Syracuse +Erie Canal Museum,"318 Erie Blvd E, Syracuse, NY 13202, USA",(315) 471-0593,https://eriecanalmuseum.org/,43.05067899999999,-76.14882899999999,Syracuse +Everson Museum of Art,"401 Harrison St, Syracuse, NY 13202, USA",(315) 474-6064,http://www.everson.org/,43.04472319999999,-76.1467421,Syracuse +WonderWorks Destiny,"9090 Destiny USA Dr, Syracuse, NY 13204, USA",(315) 466-7700,http://www.wonderworksonline.com/destiny/,43.06738999999999,-76.17256739999999,Syracuse +Museum Of Intrigue,"9658 Destiny USA Dr, Syracuse, NY 13204, USA",(855) 653-7227,https://www.museumofintrigue.com/,43.0673103,-76.1710008,Syracuse +5 Wits Syracuse,"10351 Destiny USA Dr, Syracuse, NY 13204, USA",(315) 988-4001,http://www.5-wits.com/,43.06846679999999,-76.1716631,Syracuse +Onondaga Historical Association,"321 Montgomery St, Syracuse, NY 13202, USA",(315) 428-1864,http://www.cnyhistory.org/,43.0478833,-76.1492051,Syracuse +E.M. Mills Rose Garden,"Thornden Park Dr, Syracuse, NY 13210, USA",(315) 473-4330,http://syracuserosesociety.org/,43.0390225,-76.1278912,Syracuse +Thornden Park,"Thornden Park Dr, Syracuse, NY 13210, USA",(315) 473-4330,http://www.syrgov.net/parks,43.0420963,-76.1266681,Syracuse +Clinton Square,"161 Genesee St, Syracuse, NY 13202, USA",(315) 423-0129,Unknown,43.0510781,-76.1529286,Syracuse +Taste of Syracuse,"1000 S Clinton St, Syracuse, NY 13202, USA",Unknown,Unknown,43.05086120000001,-76.15288269999999,Syracuse +Burnet Park,"Syracuse, NY 13204, USA",(315) 473-4330,Unknown,43.0422774,-76.183934,Syracuse +Syracuse Inner Harbor,"Syracuse, NY 13204, USA",(315) 473-4330,Unknown,43.0595237,-76.1656938,Syracuse +Elmwood Park,"919 Glenwood Ave, Syracuse, NY 13207, USA",(315) 473-4330,http://www.syrgov.net/parks/elmwoodPark.html,43.0187198,-76.166893,Syracuse +Armory Square,"241 W Fayette St, Syracuse, NY 13202, USA",(315) 412-7303,http://www.armorysq.org/,43.0485152,-76.155233,Syracuse +Onondaga Park,"655 Onondaga Ave, Syracuse, NY 13207, USA",(315) 469-3464,Unknown,43.0285453,-76.16271320000001,Syracuse +Salt Museum,"106 Lake Dr, Liverpool, NY 13088, USA",(315) 453-6712,http://www.onondagacountyparks.com/salt-museum/,43.0997557,-76.2068199,Syracuse +Franklin Square Park,"101 Solar St, Syracuse, NY 13204, USA",(315) 473-4330,Unknown,43.0569389,-76.1571244,Syracuse +Visit Syracuse,"109 S Warren St Suite 10, Syracuse, NY 13202, USA",(315) 470-1910,http://www.visitsyracuse.com/,43.0502658,-76.1504051,Syracuse +Munsinger Gardens,"1515 Riverside Dr SE, St Cloud, MN 56304, USA",(320) 257-5959,https://www.munsingerclemens.com/,45.5514024,-94.1445174,St. Cloud +Stearns History Museum,"235 South 33rd Ave S, St Cloud, MN 56301, USA",(320) 253-8424,http://www.stearnshistorymuseum.org/,45.5476191,-94.2026901,St. Cloud +Lake George Park,"1101 7th St S, St Cloud, MN 56301, USA",(320) 255-7277,http://www.ci.stcloud.mn.us/91/Park-Recreation,45.5542645,-94.1625308,St. Cloud +Pine View Park,"6520 Saukview Dr, St Cloud, MN 56303, USA",(320) 255-7200,Unknown,45.5570278,-94.2409058,St. Cloud +Welcome to Saint Cloud Sign,"3800 18th St S, St Cloud, MN 56301, USA",Unknown,Unknown,45.543831,-94.2055304,St. Cloud +Quarry Park and Nature Preserve,"1802 Co Rd 137, Waite Park, MN 56387, USA",(320) 255-6172,https://www.stearnscountymn.gov/396/Quarry-Park-Nature-Preserve,45.53649199999999,-94.24184199999999,St. Cloud +Seberger Park,"2001 2nd St N, St Cloud, MN 56303, USA",(320) 257-5959,http://ci.stcloud.mn.us/210/wading-pools-splash-pads,45.5569918,-94.1819139,St. Cloud +Clemens Gardens,"56301, 1301 Kilian Blvd SE #56301, St Cloud, MN 56304, USA",(320) 257-5959,https://www.munsingerclemens.com/the-gardens/clemens-gardens/,45.55128089999999,-94.14309929999999,St. Cloud +Summerland Family Fun Park,"1050 28th Ave NE, Sauk Rapids, MN 56379, USA",(320) 251-0940,http://www.summerlandfunpark.com/,45.5820921,-94.1038389,St. Cloud +Riverside Park,"St Cloud, MN 56304, USA",(320) 650-3053,https://www.ci.stcloud.mn.us/Facilities/Facility/Details/25,45.54551079999999,-94.14304299999999,St. Cloud +Blacklight Adventures,"240 33rd Ave S, St Cloud, MN 56301, USA",(320) 774-1500,http://www.blacklightadventuresllc.com/,45.548603,-94.19676969999999,St. Cloud +AirMaxx Trampoline Park & Warrior Course,"3900 Roosevelt Rd, St Cloud, MN 56301, USA",(320) 281-5599,https://www.airmaxxstcloud.com/,45.5025596,-94.15264119999999,St. Cloud +Charles M. Schulz Museum and Research Center,"2301 Hardies Ln, Santa Rosa, CA 95403, USA",(707) 579-4452,https://schulzmuseum.org/,38.46037,-122.7359139,Santa Rosa +Howarth Park,"630 Summerfield Rd, Santa Rosa, CA 95405, USA",(707) 543-3425,https://srcity.org/1271/Howarth-Park,38.4526631,-122.6692682,Santa Rosa +Trione-Annadel State Park,"6201 Channel Dr, Santa Rosa, CA 95409, USA",(707) 539-3911,http://www.parks.ca.gov/?page_id=480,38.4522438,-122.6346359,Santa Rosa +Railroad Square Historic District,"9 4th St, Santa Rosa, CA 95401, USA",Unknown,https://www.railroadsquare.net/,38.4375005,-122.7214031,Santa Rosa +Spring Lake Park,"5585 Newanga Ave, Santa Rosa, CA 95405, USA",(707) 539-8092,http://parks.sonomacounty.ca.gov/Get_Outdoors/Parks/Spring_Lake_Regional_Park.aspx,38.4500466,-122.6496719,Santa Rosa +Children's Museum of Sonoma County,"1835 W Steele Ln, Santa Rosa, CA 95403, USA",(707) 546-4069,https://www.cmosc.org/?utm_source=google&utm_medium=organic&utm_campaign=gmb&utm_content=gmb_website,38.4608589,-122.7369642,Santa Rosa +Luther Burbank Home & Gardens,"204 Santa Rosa Ave, Santa Rosa, CA 95404, USA",(707) 524-5445,http://www.lutherburbank.org/,38.4361572,-122.7117766,Santa Rosa +Museum of Sonoma County,"425 7th St, Santa Rosa, CA 95401, USA",(707) 579-1500,https://museumsc.org/,38.44185,-122.7183725,Santa Rosa +Safari West,"3115 Porter Creek Rd, Santa Rosa, CA 95404, USA",(707) 579-2551,https://www.safariwest.com/,38.5569166,-122.6955347,Santa Rosa +Pacific Coast Air Museum,"One Air Museum Way, Santa Rosa, CA 95403, USA",(707) 575-7900,http://pacificcoastairmuseum.org/,38.5065179,-122.8021181,Santa Rosa +Peanuts Statue,"545 4th St, Santa Rosa, CA 95401, USA",Unknown,Unknown,38.4405718,-122.7144757,Santa Rosa +Juilliard Park,"227 Santa Rosa Ave, Santa Rosa, CA 95401, USA",(707) 543-3770,https://srcity.org/,38.435084,-122.7135492,Santa Rosa +Peanuts Statue,"751 Lombardi Ct, Santa Rosa, CA 95407, USA",Unknown,Unknown,38.42784239999999,-122.7493697,Santa Rosa +Nagasawa Park,"1313 Fountaingrove Pkwy, Santa Rosa, CA 95403, USA",(707) 543-3292,https://srcity.org/Facilities/Facility/Details/Nagasawa-Community-Park-76,38.483193,-122.7166532,Santa Rosa +Peanuts Statue,"151 Coddingtown Center, Santa Rosa, CA 95401, USA",Unknown,Unknown,38.4590836,-122.7306704,Santa Rosa +Fremont Park,"844 5th St, Santa Rosa, CA 95404, USA",Unknown,Unknown,38.44333369999999,-122.7087954,Santa Rosa +California Welcome Center,"9 4th St, Santa Rosa, CA 95401, USA",(707) 577-8674,https://www.visitcalifornia.com/experience/california-welcome-center-santa-rosa/,38.4375432,-122.7214426,Santa Rosa +Laguna de Santa Rosa Trail,"6303 CA-12, Santa Rosa, CA 95409, USA",(707) 433-1625,http://parks.sonomacounty.ca.gov/Get_Outdoors/Parks/Laguna_de_Santa_Rosa_Trail.aspx,38.40604359999999,-122.8117633,Santa Rosa +Snoopy's Home Ice,"1667 W Steele Ln, Santa Rosa, CA 95403, USA",(707) 546-7147,http://www.snoopyshomeice.com/,38.460572,-122.734344,Santa Rosa +Santa Rosa Junior College Multicultural Museum,"Bussman Hall, Santa Rosa, CA 95401, USA",(707) 527-4479,https://museum.santarosa.edu/,38.45614359999999,-122.7208729,Santa Rosa +Buena Vista Museum of Natural History & Science,"2018 Chester Ave, Bakersfield, CA 93301, USA",(661) 324-6350,http://www.buenavistamuseum.org/?utm_source=google&utm_medium=wix_google_business_profile&utm_campaign=17814811990716261384,35.3777015,-119.0184299,Bakersfield +Kern County Museum,"3801 Chester Ave, Bakersfield, CA 93301, USA",(661) 437-3330,http://kerncountymuseum.org/,35.3934454,-119.0194027,Bakersfield +Bakersfield Museum of Art,"1930 R St, Bakersfield, CA 93301, USA",(661) 323-7219,http://www.bmoa.org/,35.37678599999999,-119.008974,Bakersfield +Central Park at Mill Creek,"500 19th St, Bakersfield, CA 93301, USA",(661) 326-3866,https://www.bakersfieldcity.us/297/Recreation-Parks,35.3741849,-119.0088485,Bakersfield +The Park at River Walk,"11298 Stockdale Hwy, Bakersfield, CA 93311, USA",(661) 326-3866,https://www.bakersfieldcity.us/297/Recreation-Parks,35.3513811,-119.1272181,Bakersfield +California Living Museum,"10500 Alfred Harrell Hwy, Bakersfield, CA 93306, USA",(661) 872-2256,http://calmzoo.org/,35.4322965,-118.8853528,Bakersfield +Mural Alley Bakersfield,"1727 18th St Suite B, Bakersfield, CA 93301, USA",Unknown,http://www.localefarmtotable.com/,35.3750252,-119.0220234,Bakersfield +BLOOM Mural Bakersfield,"801 Kentucky St, Bakersfield, CA 93305, USA",Unknown,http://www.thehubofbakersfield.org/,35.3771554,-118.9894868,Bakersfield +Lori Brock Discovery Center,"3801 Chester Ave, Bakersfield, CA 93301, USA",(661) 437-3330,https://kerncountymuseum.org/lori-brock-discovery-center/,35.3935639,-119.0194149,Bakersfield +Colonel Thomas Baker Memorial,"1501 Truxtun Ave, Bakersfield, CA 93301, USA",(661) 392-2130,http://ohp.parks.ca.gov/?page_id=21423,35.3731075,-119.0194309,Bakersfield +Beale Park,"500 Oleander Ave, Bakersfield, CA 93304, USA",(661) 326-3866,https://www.bakersfieldcity.us/297/Recreation-Parks,35.3622881,-119.0249926,Bakersfield +Visit Bakersfield,"515 Truxtun Ave, Bakersfield, CA 93301, USA",(866) 425-7353,http://www.visitbakersfield.com/,35.37300939999999,-119.007677,Bakersfield +The Bakersfield Sign,"3032-3000 Sillect Ave, Bakersfield, CA 93308, USA",Unknown,Unknown,35.38615,-119.0424809,Bakersfield +Saunders Park,"3300 Palm St, Bakersfield, CA 93309, USA",(661) 326-3866,https://www.bakersfieldcity.us/297/Recreation-Parks,35.3621328,-119.0412278,Bakersfield +Panorama Vista Preserve,"901 E Roberts Ln, Bakersfield, CA 93308, USA",(661) 872-3569,http://panoramavista.org/,35.4127933,-118.9994859,Bakersfield +Yokuts Park,"4200 Empire Dr, Bakersfield, CA 93309, USA",(661) 326-3866,https://www.bakersfieldcity.us/297/Recreation-Parks,35.37599489999999,-119.0470921,Bakersfield +Cross of Palms,"7000-9698 Rudd Ave, Bakersfield, CA 93314, USA",Unknown,Unknown,35.43429409999999,-119.172055,Bakersfield +Ingenious Escape Rooms - Bakersfield Stockdale,"6225 District Blvd #103, Bakersfield, CA 93313, USA",(661) 493-6383,https://ingeniousescapebakersfield.com/,35.31139919999999,-119.0719076,Bakersfield +Hart Memorial Park,"Hart Park, Bakersfield, CA 93308, USA",Unknown,https://hmp.areafish.com/,35.4444575,-118.9081356,Bakersfield +Puzzle Effect Escape Rooms - Bakersfield,"3616 Coffee Rd C, Bakersfield, CA 93308, USA",(661) 587-3710,https://bakersfield.puzzleeffect.com/,35.3925424,-119.0910466,Bakersfield +Buffalo Bill Ranch State Historical Park Museum,"2921 Scouts Rest Ranch Rd, North Platte, NE 69101, USA",(308) 535-8035,http://outdoornebraska.gov/buffalobillranch/,41.1631459,-100.7962165,North Platte +Golden Spike Tower,"1249 N Homestead Rd, North Platte, NE 69101, USA",(308) 532-9920,https://goldenspiketower.com/,41.144225,-100.829387,North Platte +Cody Park Railroad Museum,"1400 N Jeffers St, North Platte, NE 69101, USA",(308) 535-6719,https://www.visitnorthplatte.com/listing/cody-park-railroad-museum/145/,41.1475898,-100.7528683,North Platte +North Platte Area Children's Museum,"314 N Jeffers St, North Platte, NE 69101, USA",(308) 532-3512,http://www.npchildrensmuseum.com/,41.136185,-100.763657,North Platte +Cody Park,"1601 N Jeffers St, North Platte, NE 69101, USA",(308) 535-6700,http://www.ci.north-platte.ne.us/parks/cody-park/,41.1498274,-100.7572245,North Platte +20th Century Veterans Memorial,"2811 S Jeffers St, North Platte, NE 69103, USA",(308) 532-6579,https://visitnorthplatte.com/directory-posts/20th-century-veterans-memorial/,41.10789399999999,-100.762932,North Platte +Alpha Omega Labyrinth,"651 S Sherman Ave, North Platte, NE 69101, USA",(308) 532-1478,Unknown,41.1284605,-100.7841144,North Platte +Buffalo Bill Ranch State Historical Park,"2921 Scouts Rest Ranch Rd, North Platte, NE 69101, USA",(308) 535-8035,http://outdoornebraska.gov/buffalobillranch/,41.1627692,-100.7956034,North Platte +Lincoln County Historical Museum,"2403 N Buffalo Bill Ave, North Platte, NE 69101, USA",(308) 534-5640,https://lincolncountymuseum.org/,41.1602472,-100.7907139,North Platte +N. Platte-S. Platte River Confluence,"Unnamed Road, North Platte, NE 69101, USA",Unknown,Unknown,41.1150752,-100.6825356,North Platte +Cody Go Karts,"805 Halligan Dr, North Platte, NE 69101, USA",(308) 534-8277,http://www.codygokarts.com/,41.11133949999999,-100.7550201,North Platte +Fort Cody Trading Post,"221 Halligan Dr, North Platte, NE 69101, USA",(308) 532-8081,http://www.fortcody.com/,41.113552,-100.7626629,North Platte +Riverside Park,"100 State St, La Crosse, WI 54601, USA",(608) 789-7533,https://www.riversideparklacrosse.com/,43.81694439999999,-91.25583329999999,La Crosse +La Crosse Segway Tours,"Next To Duluth Trading, 400 Main St STE 102, La Crosse, WI 54601, USA",(608) 790-5419,http://www.lacrossesegwaytours.com/,43.81201179999999,-91.2510815,La Crosse +Children's Museum of La Crosse,"207 5th Ave S, La Crosse, WI 54601, USA",(608) 784-2652,http://www.funmuseum.org/,43.81075709999999,-91.2500046,La Crosse +Historic Hixon House Museum,"429 7th St N, La Crosse, WI 54601, USA",(608) 782-1980,http://www.lchshistory.org/hixon-house,43.8158517,-91.2471242,La Crosse +Riverside International Friendship Gardens,"345-, 405 E Veterans Memorial Dr, La Crosse, WI 54601, USA",(608) 789-7533,http://www.riversidegardens.org/,43.8183551,-91.2551039,La Crosse +Pettibone Park,"700 N Pettibone Dr, La Crosse, WI 54601, USA",(608) 789-7533,Unknown,43.819739,-91.265017,La Crosse +Myrick Park,"2000 La Crosse St, La Crosse, WI 54601, USA",(608) 789-7533,https://www.cityoflacrosse.org/Home/Components/FacilityDirectory/FacilityDirectory/90/,43.8210554,-91.22565209999999,La Crosse +World's Largest Six-Pack,"3rd St S, La Crosse, WI 54601, USA",(608) 785-4200,Unknown,43.8028449,-91.25326749999999,La Crosse +Dahl Auto Museum,"711 3rd St S, La Crosse, WI 54601, USA",(608) 791-6494,https://www.dahlautomuseum.com/,43.80600400000001,-91.253273,La Crosse +Copeland Park,"1130 Copeland Park Dr, La Crosse, WI 54603, USA",(608) 789-7533,https://www.cityoflacrosse.org/Home/Components/FacilityDirectory/FacilityDirectory/55/34,43.84048809999999,-91.24988979999999,La Crosse +Paul E. Stry Nature Preserve,"W5845 WI-33, La Crosse, WI 54601, USA",Unknown,Unknown,43.7900492,-91.1963928,La Crosse +La Crosse Area Heritage Center,"506 Main St, La Crosse, WI 54601, USA",(608) 782-1980,http://www.lchshistory.org/,43.8116373,-91.24959000000001,La Crosse +Grandad Bluff Park,"3020 Grandad Bluff Rd, La Crosse, WI 54601, USA",(608) 789-7533,https://explorelacrosse.com/project/grandad-bluff-la-crosse/,43.8124379,-91.210978,La Crosse +Pump House Regional Arts Center,"119 King St, La Crosse, WI 54601, USA",(608) 785-1434,http://thepumphouse.org/,43.8101902,-91.2560841,La Crosse +Seminary Park,"3400 East Ave S, La Crosse, WI 54601, USA",Unknown,Unknown,43.7749117,-91.22358589999999,La Crosse +La Crosse Escape Room,"319 Main St, La Crosse, WI 54601, USA",(608) 518-3891,http://www.lacrosseescaperoom.com/,43.8126728,-91.25176839999999,La Crosse +Upper Hixon Forest,"800 Milson Ct, La Crosse, WI 54601, USA",(608) 789-7533,https://www.cityoflacrosse.org/,43.8258653,-91.1912582,La Crosse +Mt. La Crosse Ski Area,"Old Town Hall Rd, La Crosse, WI 54601, USA",(608) 788-0044,http://www.mtlacrosse.com/,43.7436241,-91.1829743,La Crosse +Red Cloud Park,"520 Powell St, La Crosse, WI 54601, USA",(608) 789-7533,https://www.cityoflacrosse.org/Home/Components/FacilityDirectory/FacilityDirectory/100/,43.8335236,-91.22954899999999,La Crosse +Grandad Bluff,"Grandad Bluff, La Crosse, WI 54601, USA",Unknown,Unknown,43.81257249999999,-91.2088589,La Crosse +Plattsburgh City Beach,"4 Beach Rd, Plattsburgh, NY 12901, USA",(518) 563-7701,http://www.cityofplattsburgh-ny.gov/plattsburghcitybeach,44.720654,-73.43194799999999,Plattsburgh +Point Au Roche State Park,"19 Camp Red Cloud Rd, Plattsburgh, NY 12901, USA",(518) 563-0369,https://parks.ny.gov/parks/30/details.aspx,44.78551259999999,-73.38050559999999,Plattsburgh +Trinity Park,"1 Trinity Pl, Plattsburgh, NY 12901, USA",(518) 324-7709,Unknown,44.6986366,-73.45232829999999,Plattsburgh +U.S.S. Lake Champlain Memorial,"Plattsburgh, NY 12901, USA",Unknown,Unknown,44.6975612,-73.4423288,Plattsburgh +Cumberland Bay State Park,"152 Cumberland Head Rd, Plattsburgh, NY 12901, USA",(518) 563-5240,https://parks.ny.gov/parks/34/details.aspx,44.7236377,-73.4266999,Plattsburgh +South Platt St. Park,"21 South Platt Street, Plattsburgh, NY 12901, USA",(518) 324-7709,http://www.plattsburghrecreation.com/,44.6871022,-73.4553023,Plattsburgh +Kids' Station Children's Museum,"13 New York Rd, Plattsburgh, NY 12903, USA",(518) 324-7426,Unknown,44.6834736,-73.4454855,Plattsburgh +Kent-Delord House Museum,"17 Cumberland Ave, Plattsburgh, NY 12901, USA",(518) 561-1035,http://www.kentdelordhouse.org/,44.7004852,-73.4480793,Plattsburgh +Champy's Fun City,"411 State Rte 3, Plattsburgh, NY 12901, USA",(518) 563-2095,http://www.champysfuncity.com/,44.695891,-73.488678,Plattsburgh +Plattsburgh State Art Museum,"101 Broad St, Plattsburgh, NY 12901, USA",(518) 564-2474,https://www.plattsburgh.edu/plattslife/arts/art-museum/index.html,44.6937533,-73.4658347,Plattsburgh +War of 1812 Museum,"31 Washington Rd, Plattsburgh, NY 12903, USA",(518) 566-1814,https://battleofplattsburgh.org/,44.6819397,-73.44593920000001,Plattsburgh +Samuel Champlain Monument Park,"30 Cumberland Ave, Plattsburgh, NY 12901, USA",Unknown,http://www.plattsburghrecreation.com/,44.7002907,-73.4471817,Plattsburgh +Bluff Point Light,"Plattsburgh, NY 12901, USA",Unknown,Unknown,44.62266160000001,-73.43110539999999,Plattsburgh +Champlain Valley Transportation Museum Kids' Station,"13 New York Rd, Plattsburgh, NY 12903, USA",(518) 324-7426,Unknown,44.68406160000001,-73.4452802,Plattsburgh +MagiQuest,"10175 Weddington Rd, Concord, NC 28027, USA",(704) 549-8206,https://www.greatwolf.com/concord/waterpark-attractions/attractions/magiquest,35.361193,-80.711714,Concord +SEA LIFE Charlotte-Concord,"8111 Concord Mills Boulevard, Concord, NC 28027, USA",(855) 450-0512,https://www.visitsealife.com/charlotte-concord/,35.3692328,-80.72510779999999,Concord +Mustang Owner's Museum,"4001 Dearborn Pl NW, Concord, NC 28027, USA",(980) 439-5653,https://www.mustangownersmuseum.com/,35.3669221,-80.671039,Concord +The Avett Brothers’ Tribute Mural,"25 Union St N, Concord, NC 28025, USA",Unknown,http://www.cicadastudios.net/,35.4108418,-80.58186719999999,Concord +Vietnam Veterans Park,"760 Orphanage Rd, Concord, NC 28027, USA",Unknown,http://www.cabarruscounty.us/alp,35.4448958,-80.6356898,Concord +Frank Liske Park,"4001 Stough Rd, Concord, NC 28027, USA",(704) 920-2701,https://www.cabarruscounty.us/Parks/Frank-Liske-Park,35.361684,-80.6182017,Concord +Memorial Garden,"36 Spring St SW, Concord, NC 28025, USA",(704) 786-8009,https://firstpresconcord.org/about/memorial-garden/,35.40860939999999,-80.5819222,Concord +Xtreme Play,"1480 Concord Pkwy N, Concord, NC 28025, USA",(704) 782-1221,http://xtremeplayconcord.com/,35.4402061,-80.6044568,Concord +Bost Grist Mill,"4701 NC-200, Concord, NC 28025, USA",(704) 782-1600,http://www.bostgristmill.com/,35.322079,-80.49656279999999,Concord +W W Flowe Park,"99 Central Heights Dr, Concord, NC 28025, USA",(704) 262-3444,https://www.concordnc.gov/Departments/Parks-Recreation/Facilities,35.3572906,-80.5858001,Concord +Great Wolf Lodge Water Park | Concord,"10175 Weddington Rd, Concord, NC 28027, USA",(866) 925-9653,https://www.greatwolf.com/concord?utm_source=google&utm_medium=organic&utm_campaign=gmb-concord,35.3613868,-80.71172729999999,Concord +Cabarrus County Convention and Visitors Bureau,"10099 Weddington Rd Suite 102, Concord, NC 28027, USA",(704) 782-4340,http://www.visitcabarrus.com/,35.3632035,-80.7128882,Concord +Cabo Winery,"37 Union St S, Concord, NC 28025, USA",(704) 785-9463,http://cabowine.com/,35.4098995,-80.5803913,Concord +Hendrick Motorsports Museum and Team Shop,"4411 Papa Joe Hendrick Blvd, Concord, NC 28027, USA",(877) 467-4890,http://hendrickmotorsports.com/,35.354,-80.70501,Concord +iFLY Indoor Skydiving - Charlotte,"7840 Lyles Ln NW, Concord, NC 28027, USA",(704) 851-4359,https://www.iflyworld.com/charlotte/?utm_source=G&utm_medium=local&utm_campaign=google-local,35.36627600000001,-80.714287,Concord +Stars and Strikes Family Entertainment Center,"545 Concord Pkwy N #40, Concord, NC 28027, USA",(678) 965-5707,http://www.starsandstrikes.com/,35.411654,-80.615541,Concord +Troy’s Funeral Home,"Union St N, Concord, NC 28025, USA",Unknown,Unknown,35.4177825,-80.58919809999999,Concord +Dorton Park,"5790 Poplar Tent Rd, Concord, NC 28027, USA",(704) 782-1085,https://www.concordnc.gov/Departments/Parks-Recreation/Facilities,35.4089823,-80.6736243,Concord +Historic Cabarrus Veterans Museum,"65 Church St S, Concord, NC 28025, USA",Unknown,Unknown,35.4101342,-80.5782576,Concord +Atlanta Botanical Garden,"1345 Piedmont Ave NE, Atlanta, GA 30309, USA",(404) 876-5859,https://www.atlantabg.org/,33.7899568,-84.37259879999999,Atlanta +World of Coca-Cola,"121 Baker St NW, Atlanta, GA 30313, USA",(404) 676-5151,https://www.worldofcoca-cola.com/,33.7625564,-84.39243599999999,Atlanta +Georgia Aquarium,"225 Baker St NW, Atlanta, GA 30313, USA",(404) 581-4000,https://www.georgiaaquarium.org/,33.76338199999999,-84.3951098,Atlanta +"Martin Luther King, Jr. National Historical Park","450 Auburn Ave NE, Atlanta, GA 30312, USA",(404) 331-5190,https://www.nps.gov/malu/index.htm,33.7566739,-84.3731798,Atlanta +Piedmont Park,"Atlanta, GA 30309, USA",(404) 875-7275,https://piedmontpark.org/,33.7879265,-84.37216819999999,Atlanta +High Museum of Art,"1280 Peachtree St NE, Atlanta, GA 30309, USA",(404) 733-4400,https://www.high.org/,33.7900632,-84.38555199999999,Atlanta +SkyView Atlanta,"168 Luckie St NW, Atlanta, GA 30303, USA",(678) 949-9023,http://www.skyviewatlanta.com/,33.7589378,-84.3916921,Atlanta +Zoo Atlanta,"800 Cherokee Ave SE, Atlanta, GA 30315, USA",(404) 624-5600,https://zooatlanta.org/,33.7337594,-84.3716604,Atlanta +Atlanta History Center,"130 W Paces Ferry Rd NW, Atlanta, GA 30305, USA",(404) 814-4000,http://www.atlantahistorycenter.com/,33.8418797,-84.3862534,Atlanta +LEGO Discovery Center Atlanta,"3500 Peachtree Rd NE Suite G-1, Atlanta, GA 30326, USA",(404) 848-9252,https://atlanta.legolanddiscoverycenter.com/,33.8533433,-84.36304419999999,Atlanta +Krog Street Tunnel,"1 Krog St NE, Atlanta, GA 30307, USA",(404) 492-0847,https://discoveratlanta.com/things-to-do/krog-street-tunnel/,33.7529948,-84.36364789999999,Atlanta +Fernbank Museum | 3D Theater | Forest,"767 Clifton Rd, Atlanta, GA 30307, USA",(404) 929-6300,https://www.fernbankmuseum.org/,33.7739247,-84.32799849999999,Atlanta +Delta Flight Museum,"1060 Delta Blvd, Atlanta, GA 30354, USA",(404) 715-7886,http://deltamuseum.org/,33.65607299999999,-84.4223545,Atlanta +Tiny Doors ATL,"1380 Atlantic Dr NW Suite 14100, Atlanta, GA 30363, USA",(404) 528-8017,http://www.tinydoorsatl.com/,33.79272580000001,-84.3978715,Atlanta +Fox Theatre,"660 Peachtree St NE, Atlanta, GA 30308, USA",(855) 285-8499,http://www.foxtheatre.org/,33.7725999,-84.3854681,Atlanta +Original Selfie Museum | Atlanta,"116 Centennial Olympic Park Dr, Atlanta, GA 30313, USA",(404) 566-5778,http://originalselfiemuseum.com/,33.7515291,-84.3994487,Atlanta +Folk Art Park,"Courtland St NE, Atlanta, GA 30308, USA",Unknown,Unknown,33.764049,-84.38403459999999,Atlanta +Underground Atlanta,"50 Upper Alabama St, Atlanta, GA 30303, USA",Unknown,http://www.undergroundatl.com/,33.7532167,-84.39058059999999,Atlanta +Children's Museum of Atlanta,"275 Centennial Olympic Park Dr NW, Atlanta, GA 30313, USA",(404) 659-5437,https://childrensmuseumatlanta.org/,33.7625707,-84.39173269999999,Atlanta +Centennial Olympic Park,"Atlanta, GA 30313, USA",(404) 223-4412,https://www.gwcca.org/centennial-olympic-park,33.760463,-84.3930831,Atlanta +Seven Peaks Water Park Provo,"1330 300 N, Provo, UT 84606, USA",Unknown,http://www.sevenpeaks.com/,40.2370735,-111.6361835,Provo +Provo Canyon,"2487 E Provo Canyon Rd, Provo, UT 84604, USA",Unknown,Unknown,40.32810239999999,-111.633856,Provo +Utah Lake State Park,"4400 W Center St, Provo, UT 84601, USA",Unknown,https://stateparks.utah.gov/parks/utah-lake/,40.2378421,-111.7362163,Provo +Museum of Mormon Mexican History,"1501 N Canyon Rd, Provo, UT 84604, USA",(801) 830-1468,http://www.museumofmormonmexicanhistory.com/,40.2538734,-111.6564138,Provo +Bean Life Science Museum,"645 E Phillips Ln, Provo, UT 84604, USA",(801) 422-5050,https://mlbean.byu.edu/,40.2533777,-111.647436,Provo +BYU Museum of Paleontology,"84602-3300, 1683 N Canyon Rd, Provo, UT 84604, USA",(801) 422-3680,http://geology.byu.edu/Museum/,40.2564305,-111.6567329,Provo +Brigham Young University Museum of Art (MOA),"Campus Dr, Provo, UT 84602, USA",(801) 422-8287,http://moa.byu.edu/,40.2507587,-111.6479756,Provo +Provo Daughters of Utah Pioneers Museum,"550 N 500 W, Provo, UT 84601, USA",(801) 852-6609,https://www.provo.org/departments/parks/pioneer-museum-village,40.2414444,-111.6667472,Provo +Provo Beach,"4801 N University Ave #210, Provo, UT 84604, USA",(801) 224-5001,http://www.provobeach.com/,40.29960559999999,-111.6590822,Provo +Provo Pioneer Village,"600 N 500 W, Provo, UT 84601, USA",Unknown,http://www.provopioneervillage.org/,40.24201970000001,-111.6667831,Provo +Provo city hall fountain,"495 W Center St, Provo, UT 84601, USA",Unknown,Unknown,40.2335235,-111.6671681,Provo +The Rift,"1200 Towne Centre Blvd suite 1158, Provo, UT 84601, USA",(801) 623-6985,https://therift.paladinarcher.com/,40.2160813,-111.662589,Provo +Bridal Veil Falls View Area,"1025 Provo River Pkwy, Provo, UT 84604, USA",Unknown,Unknown,40.3414968,-111.6030504,Provo +The Hill,"1199 Lakeshore Dr, Provo, UT 84601, USA",Unknown,Unknown,40.24941159999999,-111.7163152,Provo +BYU's Museum of Peoples and Cultures,"2201 N Canyon Rd, Provo, UT 84604, USA",(801) 422-0020,http://mpc.byu.edu/,40.2629932,-111.6578209,Provo +Memorial Park,"800 E Center St, Provo, UT 84606, USA",(801) 852-6600,https://www.provo.org/departments/parks,40.2341941,-111.644203,Provo +Pioneer Park,"500 W Center St, Provo, UT 84601, USA",(801) 852-6000,http://www.provo.org/Home/Components/FacilityDirectory/FacilityDirectory/56/200,40.233059,-111.668294,Provo +Vivian Park,"6828 S Fork Rd, Provo, UT 84604, USA",(801) 851-8640,http://www.utahcounty.gov/parks/,40.35539800000001,-111.5735363,Provo +South Fork Park,"4988 S Fork Rd, Provo, UT 84604, USA",(801) 852-6606,http://provo.org/Home/Components/FacilityDirectory/FacilityDirectory/45/200?sortn=EDate&sortd=asc,40.3485019,-111.5469529,Provo +Rock Canyon Overlook,"Squaw Peak Rd, Provo, UT 84604, USA",Unknown,Unknown,40.2757942,-111.6001219,Provo +Frederic Remington Art Museum,"303 Washington St, Ogdensburg, NY 13669, USA",(315) 393-2425,http://www.fredericremington.org/,44.6985554,-75.4932603,Ogdensburg +Fort de la Presentation site,"Van Rensselaer Point, 22 Albany Ave, Ogdensburg, NY 13669, USA",(315) 393-3620,http://www.fort1749.org/,44.6958606,-75.5028291,Ogdensburg +Welcome to New York Sign - Ogdensburg,"102 Bridge Approach Rd, Ogdensburg, NY 13669, USA",Unknown,Unknown,44.7231275,-75.4549649,Ogdensburg +Eel Weir State Park,"424 Co Rd 4, Ogdensburg, NY 13669, USA",(315) 393-1138,https://parks.ny.gov/parks/eelweir/details.aspx,44.6303892,-75.4768366,Ogdensburg +Ogdensburg Lighthouse,"Ogdensburg, NY 13669, USA",Unknown,Unknown,44.6978004,-75.5034244,Ogdensburg +Triphammer Falls,"University Ave & East Ave, Ithaca, NY 14850, USA",(607) 272-1313,http://www.visitithaca.com/attractions/triphammer-falls-fall-creek,42.4515727,-76.4803428,Ithaca +Buttermilk Falls State Park,"106 E Buttermilk Falls Rd, Ithaca, NY 14850, USA",(607) 273-5761,https://parks.ny.gov/parks/151/details.aspx,42.41696839999999,-76.5215046,Ithaca +Ithaca Falls Natural Area,"Lake St, Ithaca, NY 14850, USA",(607) 272-1313,Unknown,42.452616,-76.4931576,Ithaca +Sciencenter,"601 1st St, Ithaca, NY 14850, USA",(607) 272-0600,http://www.sciencenter.org/,42.449849,-76.50406500000001,Ithaca +Herbert F. Johnson Museum of Art,"114 Central Ave, Ithaca, NY 14853, USA",(607) 255-6464,https://museum.cornell.edu/,42.4507153,-76.48621140000002,Ithaca +Potter's Falls,"Ithaca, NY 14850, USA",Unknown,https://www.visitithaca.com/attractions/potters-falls,42.4188785,-76.46361089999999,Ithaca +Sagan Planet Walk,"171 Ithaca Cmns, Ithaca, NY 14850, USA",(607) 277-7469,Unknown,42.4395999,-76.4968093,Ithaca +Stewart Park,"1 James L Gibbs Dr, Ithaca, NY 14850, USA",(607) 273-8364,http://www.cityofithaca.org/,42.4613514,-76.5032365,Ithaca +Buttermilk Falls,"112 E Buttermilk Falls Rd, Ithaca, NY 14850, USA",(607) 273-5761,https://parks.ny.gov/parks/buttermilkfalls/details.aspx,42.4163508,-76.5209727,Ithaca +Horseshoe Falls,"774 University Ave, Ithaca, NY 14850, USA",Unknown,Unknown,42.45199059999999,-76.4859848,Ithaca +Cornell Botanic Gardens,"124 Comstock Knoll Dr, Ithaca, NY 14850, USA",(607) 255-2400,http://www.cornellbotanicgardens.org/,42.4496189,-76.4728445,Ithaca +Cascadilla Gorge Trail,"Cascadilla Gorge Trail, Ithaca, NY 14850, USA",(607) 255-2400,https://cornellbotanicgardens.org/location/cascadilla-gorge/,42.4429001,-76.4940396,Ithaca +The History Center in Tompkins County,"110 N Tioga St, Ithaca, NY 14850, USA",(607) 273-8284 ext. 229,http://www.thehistorycenter.net/,42.440003,-76.4969629,Ithaca +East Shore Park,"1000 E Shore Dr, Ithaca, NY 14850, USA",Unknown,https://cayugalake.com/locations/blueway-destinations/east-shore-park/,42.4713693,-76.5036037,Ithaca +Robert H. Treman State Park,"105 Enfield Falls Rd, Ithaca, NY 14850, USA",(607) 273-3440,http://parks.ny.gov/parks/135/,42.39928450000001,-76.56954979999999,Ithaca +Ithaca Children's Garden,"121 Turtle Ln, Ithaca, NY 14850, USA",(607) 319-4203,http://ithacachildrensgarden.org/,42.44703279999999,-76.51428349999999,Ithaca +Wells Falls,"Finger Lakes, Ithaca, NY 14850, USA",Unknown,http://www.visitithaca.com/attractions/businessmans-lunch-falls-six-mile-creek,42.43356139999999,-76.4851427,Ithaca +Cayuga Nature Center,"1420 Taughannock Blvd, Ithaca, NY 14850, USA",(607) 273-6260,http://cayuganaturecenter.org/,42.5183475,-76.5570863,Ithaca +Museum of the Earth,"1259 Trumansburg Rd, Ithaca, NY 14850, USA",(607) 273-6623,https://www.museumoftheearth.org/,42.4664857,-76.5359543,Ithaca +Ithaca Falls,"Ithaca Falls, Ithaca, NY 14850, USA",Unknown,Unknown,42.4529252,-76.4916542,Ithaca +The Broadmoor Seven Falls,"1045 Lower Gold Camp Rd, Colorado Springs, CO 80905, USA",(855) 923-7272,https://www.sevenfalls.com/,38.7814336,-104.879953,Colorado Springs +Cheyenne Mountain Zoo,"4250 Cheyenne Mountain Zoo Rd, Colorado Springs, CO 80906, USA",(719) 633-9925,http://www.cmzoo.org/,38.77053559999999,-104.8520371,Colorado Springs +Cave of the Winds Mountain Park,"100 Cave of the Winds Rd, Manitou Springs, CO 80829, USA",(719) 685-5444,https://caveofthewinds.com/,38.87249189999999,-104.9203241,Colorado Springs +Ghost Town Museum,"400 S 21st St, Colorado Springs, CO 80904, USA",(719) 634-0696,http://www.ghosttownmuseum.com/,38.8404749,-104.8607719,Colorado Springs +Garden of the Gods,"Colorado Springs, CO 80904, USA",(719) 634-6666,https://gardenofgods.com/,38.87179329999999,-104.8861757,Colorado Springs +North Cheyenne Cañon Park,"2120 S Cheyenne Canyon Rd, Colorado Springs, CO 80906, USA",(719) 385-6086,https://coloradosprings.gov/page/north-cheyenne-canon,38.7909863,-104.8653081,Colorado Springs +Manitou Cliff Dwellings,"10 Cliff Rd, Manitou Springs, CO 80829, USA",(719) 685-5242,http://www.cliffdwellingsmuseum.com/,38.8628747,-104.912272,Colorado Springs +Penrose Heritage Museum,"11 Lake Cir, Colorado Springs, CO 80906, USA",(719) 577-7065,https://www.elpomar.org/About-Us/museum-and-legacy-properties/penrose-heritage-museum-1/,38.7926733,-104.849918,Colorado Springs +Will Rogers Shrine of the Sun,"4250 Cheyenne Mountain Zoo Rd, Colorado Springs, CO 80906, USA",(719) 578-5367,https://www.elpomar.org/About-Us/museum-and-legacy-properties/will-rogers-shrine-of-the-sun/,38.7720157,-104.8630502,Colorado Springs +Adventures Out West,"925 S 8th St, Colorado Springs, CO 80905, USA",(719) 578-0935,https://www.advoutwest.com/,38.820308,-104.8414033,Colorado Springs +Balanced Rock,"Garden Dr, Colorado Springs, CO 80904, USA",Unknown,Unknown,38.86478599999999,-104.897416,Colorado Springs +Miramont Castle Museum and The Queen's Parlour Tea Room,"9 Capitol Hill Ave, Manitou Springs, CO 80829, USA",(719) 685-1011,http://www.miramontcastle.org/,38.8592342,-104.9222607,Colorado Springs +Magic Town,"2418 W Colorado Ave, Colorado Springs, CO 80904, USA",(719) 471-1600,http://www.michaelgarman.com/,38.8469687,-104.8619341,Colorado Springs +Cheyenne Mountain State Park,"410 JL Ranch Heights Rd, Colorado Springs, CO 80926, USA",(719) 576-2016,https://cpw.state.co.us/placestogo/parks/CheyenneMountain,38.7291548,-104.83288,Colorado Springs +Kissing Camels,"2336-3818 N 30th St, Colorado Springs, CO 80904, USA",Unknown,http://gardenofgods.com/,38.87988249999999,-104.8811977,Colorado Springs +Western Museum of Mining & Industry,"225 North Gate Blvd, Colorado Springs, CO 80921, USA",(719) 488-0880,http://www.wmmi.org/,39.0255498,-104.8288667,Colorado Springs +Red Rock Canyon Open Space,"3550 W High St, Colorado Springs, CO 80904, USA",(719) 385-5940,https://redrockcanyonopenspace.org/,38.8518656,-104.8784924,Colorado Springs +Starsmore Visitor and Nature Center,"2120 S Cheyenne Canyon Rd, Colorado Springs, CO 80906, USA",(719) 385-6086,https://coloradosprings.gov/Starsmore,38.7909594,-104.8652877,Colorado Springs +America the Beautiful Park,"Cimino Dr, Colorado Springs, CO 80903, USA",Unknown,Unknown,38.8299432,-104.8321176,Colorado Springs +May Natural History Museum,"710 Rock Creek Canyon Rd, Colorado Springs, CO 80926, USA",(719) 576-0450,http://www.coloradospringsbugmuseum.com/,38.70529070000001,-104.8406052,Colorado Springs +Olympic National Park,"3002 Mt Angeles Rd, Port Angeles, WA 98362, USA",(360) 565-3130,http://www.nps.gov/olym/index.htm,47.8021067,-123.6043524,Washington +Space Needle,"400 Broad St, Seattle, WA 98109, USA",(206) 905-2100,https://www.spaceneedle.com/,47.6205063,-122.3492774,Washington +North Cascades National Park,"Washington, USA",(360) 854-7200,https://www.nps.gov/noca/index.htm,48.7718174,-121.2984648,Washington +Chihuly Bridge of Glass,"Bridge of Glass, Tacoma, WA 98402, USA",(866) 468-7386,https://www.museumofglass.org/,47.24566639999999,-122.4345766,Washington +Washington Park Arboretum,"2300 Arboretum Dr E, Seattle, WA 98112, USA",(206) 543-8800,https://botanicgardens.uw.edu/washington-park-arboretum/,47.6364162,-122.2958146,Washington +Mount Rainier National Park,"Washington, USA",(360) 569-2211,https://www.nps.gov/mora/index.htm,46.8799663,-121.7269094,Washington +Seattle Aquarium,"1483 Alaskan Way Pier 59, Seattle, WA 98101, USA",(206) 386-4300,https://www.seattleaquarium.org/,47.60740020000001,-122.3429559,Washington +International Fountain,"305 Harrison St, Seattle, WA 98109, USA",(206) 684-7200,https://www.seattlecenter.com/explore/attractions/international-fountain,47.6225227,-122.3520323,Washington +Riverfront Park,"507 N Howard St, Spokane, WA 99201, USA",(509) 625-6600,http://riverfrontspokane.org/,47.660491,-117.4210382,Washington +The Gum Wall,"1428 Post Alley, Seattle, WA 98101, USA",(206) 587-2414,https://unexpectedproductions.org/gumwall/,47.6083607,-122.3403382,Washington +Wings Over Washington,"1301 Alaskan Wy, Seattle, WA 98101, USA",(206) 602-1808,http://www.wingsoverwa.com/,47.6062079,-122.3420642,Washington +Deception Pass Bridge,"North Whidbey, Oak Harbor, WA 98277, USA",Unknown,Unknown,48.406229,-122.6445849,Washington +Kerry Park,"211 W Highland Dr, Seattle, WA 98119, USA",(206) 684-4075,http://www.seattle.gov/parks/find/parks/kerry-park,47.6294692,-122.3599224,Washington +Mt. Baker-Snoqualmie National Forest,"Marblemount, WA 98267, USA",(425) 783-6000,https://www.fs.usda.gov/mbs,48.08265189999999,-121.4840113,Washington +World's Largest Egg,"Winlock, WA 98596, USA",(360) 388-8399,http://www.cityofwinlock.com/,46.4933219,-122.9378811,Washington +Boeing Future of Flight​,"8415 Paine Field Blvd, Mukilteo, WA 98275, USA",(800) 464-1476,https://www.boeingfutureofflight.com/,47.9212293,-122.2901598,Washington +Hoh Rain Forest Visitor Center,"18113 Upper Hoh Rd, Forks, WA 98331, USA",(360) 565-3131,https://www.nps.gov/olym/planyourvisit/visiting-the-hoh.htm,47.8608804,-123.9348331,Washington +Washington Park,"4033 SW Canyon Rd, Portland, OR 97221, USA",(503) 319-0999,http://explorewashingtonpark.org/,45.51517560000001,-122.7104903,Washington +Bloedel Reserve,"7571 NE Dolphin Dr, Bainbridge Island, WA 98110, USA",(206) 842-7631,http://www.bloedelreserve.org/,47.7079768,-122.5471182,Washington +Whatcom Falls Park,"1401 Electric Ave, Bellingham, WA 98229, USA",(360) 778-7000,https://cob.org/services/recreation/parks-trails/parks-guide/whatcom-falls-park,48.75044750000001,-122.4269052,Washington +The Frontier Museum,"6330 1st Ave W, Williston, ND 58801, USA",(701) 580-2415,https://www.thefrontiermuseum.org/,48.203693,-103.624705,Williston +Moose Park,"7th Ave. E &, 24th St E, Williston, ND 58801, USA",(701) 774-9773,Unknown,48.1665403,-103.6118312,Williston +Cut Bluff Overlook,"Williston, ND 58801, USA",Unknown,http://www.visitwilliston.com/thingstodo/Attractions/,48.1249125,-103.5615183,Williston +Railroad Park,"S Main St, Williston, ND 58801, USA",(701) 774-9773,http://www.willistonparks.com/parks,48.1432862,-103.6205423,Williston +Safari Trampoline Park,"3206 26th St W, Williston, ND 58801, USA",(701) 572-2222,https://www.safaritrampoline.com/,48.1695022,-103.6695709,Williston +Center of the Universe,"1 S Boston Ave, Tulsa, OK 74103, USA",Unknown,Unknown,36.1568986,-95.99153659999999,Tulsa +Philbrook Museum of Art,"2727 S Rockford Rd, Tulsa, OK 74114, USA",(918) 748-5300,http://www.philbrook.org/,36.12385489999999,-95.9700944,Tulsa +Gathering Place,"2650 S John Williams Way, Tulsa, OK 74114, USA",(918) 779-1000,https://www.gatheringplace.org/,36.1251603,-95.9840207,Tulsa +Tulsa Air and Space Museum & Planetarium,"3624 N 74th E Ave, Tulsa, OK 74115, USA",(918) 834-9900,https://www.tulsamuseum.org/,36.2067509,-95.8957281,Tulsa +The Cave House - Linda Collier,"1623 Charles Page Blvd, Tulsa, OK 74127, USA",(918) 378-1952,http://cavehousetulsa.com/,36.1517261,-96.0112601,Tulsa +Tulsa Zoo,"6421 E 36th St N, Tulsa, OK 74115, USA",(918) 669-6600,http://www.tulsazoo.org/,36.2130153,-95.9064904,Tulsa +The Tulsa Arts District,"street name was changed years ago, E Mathew Brady St, Tulsa, OK 74103, USA",Unknown,http://thetulsaartsdistrict.org/,36.1589262,-95.99183389999999,Tulsa +Tulsa Botanic Garden,"3900 Tulsa Botanic Dr, Tulsa, OK 74127, USA",(918) 289-0330,https://www.tulsabotanic.org/,36.2068298,-96.06214489999999,Tulsa +Tours of Tulsa,"4318 S Trenton Ave, Tulsa, OK 74105, USA",(918) 625-4909,http://toursoftulsa.com/,36.1003128,-95.96935839999999,Tulsa +Route 66 Historical Village,"3770 Southwest Blvd, Tulsa, OK 74107, USA",(918) 619-9473,http://route66village.com/,36.1083018,-96.0161972,Tulsa +Woodward Park and Gardens,"2435 S Peoria Ave, Tulsa, OK 74114, USA",(918) 576-5155,https://www.tulsagardencenter.org/,36.13192470000001,-95.9736606,Tulsa +Golden Driller Statue,"Tulsa Expo Center, 4145 E 21st St, Tulsa, OK 74114, USA",(918) 596-2100,http://exposquare.com/,36.1337734,-95.93110809999999,Tulsa +Oxley Nature Center,"6700 Mohawk Blvd, Tulsa, OK 74115, USA",(918) 596-9054,http://www.oxleynaturecenter.org/,36.2234573,-95.90303039999999,Tulsa +Gilcrease Museum,"1400 N Gilcrease Museum Rd, Tulsa, OK 74127, USA",(918) 596-2700,http://gilcrease.org/,36.1742658,-96.0210402,Tulsa +River West Festival Park,"2100 S Jackson Ave, Tulsa, OK 74107, USA",(918) 596-2001,http://www.riverparks.org/,36.1341662,-95.99905000000001,Tulsa +Guthrie Green,"111 Reconciliation Way, Tulsa, OK 74103, USA",(918) 574-2421,http://www.guthriegreen.com/,36.1597162,-95.9920028,Tulsa +OkieTundra,"U.S. Rt. 66, Tulsa, OK 73059, USA",Unknown,Unknown,36.101922,-96.0267763,Tulsa +The Outsiders House Museum,"731 N St Louis Ave, Tulsa, OK 74106, USA",Unknown,https://www.theoutsidershouse.com/,36.16547749999999,-95.9703084,Tulsa +Oklahoma Aquarium,"300 Aquarium Dr, Jenks, OK 74037, USA",(918) 296-3474,http://www.okaquarium.org/,36.0198841,-95.9570456,Tulsa +The Sherwin Miller Museum of Jewish Art,"2021 E 71st St, Tulsa, OK 74136, USA",(918) 492-1818,http://www.jewishmuseumtulsa.org/,36.0620308,-95.96353909999999,Tulsa +Museum of the Southwest,"1705 W Missouri Ave, Midland, TX 79701, USA",(432) 683-2882,http://www.museumsw.org/,31.993304,-102.092519,Midland +Sibley Nature Center,"1307 E Wadley Ave, Midland, TX 79705, USA",(432) 684-6827,https://sibleynaturecenter.org/,32.03295999999999,-102.0703552,Midland +Grasslands Park,"2500 Crowley Blvd, Midland, TX 79707, USA",Unknown,http://www.midlandtexas.gov/facilities/facility/details/Grasslands-Park-22,32.0031798,-102.1642916,Midland +The I-20 Wildlife Preserve & Jenna Welch Nature Study Center,"2201 S Midland Dr, Midland, TX 79703, USA",(432) 853-9453,https://www.i20wp.org/,31.96169,-102.123738,Midland +Midland Army Air Field Museum Hangar,"9600 Wright Dr, Midland, TX 79706, USA",Unknown,http://www.highskywing.org/,31.9418417,-102.2146406,Midland +Beal Park,"5200 W Wall St, Midland, TX 79703, USA",(432) 685-7356,https://www.midlandtexas.gov/Facilities/Facility/Details/Beal-Park-2,31.965182,-102.1385535,Midland +Bush Family Home State Historic Site,"1412 W Ohio Ave, Midland, TX 79701, USA",(432) 685-1112,http://visitbushfamilyhome.com/,31.9987064,-102.0913018,Midland +Permian Basin Petroleum Museum,"1500 I-20, Midland, TX 79701, USA",(432) 683-4403,http://petroleummuseum.org/,31.9720665,-102.0851728,Midland +Washington Park,"1803 E Indiana Ave, Midland, TX 79701, USA",(432) 685-7356,http://www.midlandtexas.gov/Facilities/Facility/Details/Washington-Park-51,31.9980238,-102.0562214,Midland +Midland County History Museum,"200 N Main St, Midland, TX 79701, USA",(432) 688-8947,https://www.visitmidland.com/listing/midland-county-historical-museum/7/,31.998711,-102.0742482,Midland +Dennis the Menace Park,"2201 W Indiana Ave, Midland, TX 79701, USA",(432) 685-7356,http://www.midlandtexas.gov/facilities/facility/details/Dennis-the-Menace-Park-15,31.9907239,-102.0978675,Midland +Reyes-Mashburn-Nelms Park,"2101 Cuthbert Ave, Midland, TX 79701, USA",(800) 624-6435,http://www.visitmidlandtexas.com/Reyes-Mashburn-Nelms-Park,32.0159089,-102.0493251,Midland +Urban Air Trampoline and Adventure Park,"4706 N Midkiff Rd Suite 1, Midland, TX 79705, USA",(432) 203-0283,https://www.urbanair.com/texas-midland,32.0359959,-102.1287393,Midland +Krannert Art Museum,"500 E Peabody Dr, Champaign, IL 61820, USA",(217) 333-1861,https://kam.illinois.edu/,40.10198210000001,-88.2313482,Champaign +Hessel Park,"1400 Grandview Dr, Champaign, IL 61820, USA",(217) 398-2550,https://champaignparks.com/park/hessel-park/,40.099465,-88.2503773,Champaign +Centennial Park,"2200 W Kirby Ave, Champaign, IL 61821, USA",(217) 398-2550,https://champaignparks.com/park/centennial-park/,40.10060379999999,-88.2838262,Champaign +Douglass Park,"512 E Grove St, Champaign, IL 61820, USA",(217) 398-2576,https://champaignparks.com/,40.1245974,-88.2309231,Champaign +William M. Staerkel Planetarium,"2400 W Bradley Ave, Champaign, IL 61821, USA",(217) 351-2568,http://www.parkland.edu/planetarium,40.1321839,-88.2914261,Champaign +Cattle Bank,"102 E University Ave, Champaign, IL 61820, USA",Unknown,http://champaigncountyhistory.org/,40.11646640000001,-88.2386009,Champaign +Champaign Diamond Railroad Crossing #2,"606 N Market St, Champaign, IL 61820, USA",Unknown,Unknown,40.12164610000001,-88.2383392,Champaign +West Side Park,"400 W University Ave, Champaign, IL 61820, USA",(217) 805-4100,https://champaignparks.com/park/west-side-park/,40.1172968,-88.2484637,Champaign +Spurlock Museum,"600 S Gregory St, Urbana, IL 61801, USA",(217) 333-2360,https://www.spurlock.illinois.edu/,40.1076151,-88.2207767,Champaign +Kaufman Lake,"2702 W Springfield Ave, Champaign, IL 61822, USA",(217) 398-2570,https://champaignparks.com/park/kaufman-lake/,40.1135118,-88.2902108,Champaign +Citizens Park,"Garden Hills Dr, Champaign, IL 61821, USA",Unknown,http://www.champaignparkdistrict.com/parks/citizens.htm,40.1296287,-88.27189399999999,Champaign +Champaign County History Museum at the Historic Cattle Bank,"102 E University Ave, Champaign, IL 61820, USA",(217) 356-1010,http://www.champaigncountyhistory.org/,40.11652389999999,-88.238486,Champaign +Johnston Park,"701 Goldenview Dr, Champaign, IL 61821, USA",Unknown,https://champaignparks.com/,40.10793990000001,-88.3038832,Champaign +Crystal Lake Park,"206 W Park St, Urbana, IL 61801, USA",(217) 367-1544,http://www.urbanaparks.org/facilities/11.html,40.1230726,-88.2090005,Champaign +Busey Woods,"1505 N Broadway Ave, Urbana, IL 61801, USA",(217) 384-4062,http://www.urbanaparks.org/parks/natural-areas/,40.1270844,-88.2132285,Champaign +Champaign-Urbana Adventures in Time and Space,"302 N Broadway Ave Suite 100, Urbana, IL 61801, USA",(217) 898-7158,http://www.cuadventures.com/,40.11519639999999,-88.20632239999999,Champaign +University of Illinois Arboretum,"2001 S Lincoln Ave, Urbana, IL 61802, USA",(217) 333-7579,http://arboretum.illinois.edu/,40.0943092,-88.2170074,Champaign +Mattis Park,"601 Devonshire Dr, Champaign, IL 61820, USA",(217) 398-2550,https://champaignparks.com/project/mattis-park/,40.088655,-88.2529914,Champaign +Alto Vineyards Champaign,"4210 N Duncan Rd, Champaign, IL 61822, USA",(217) 356-4784,http://altovineyards.net/,40.16721039999999,-88.2951619,Champaign +Anita Purves Nature Center,"1505 N Broadway Ave, Urbana, IL 61801, USA",(217) 384-4062,http://www.urbanaparks.org/facilities/anita-purves-nature-center/,40.1271202,-88.20957159999999,Champaign +Lake Region Heritage Center,"502 4th St NE, Devils Lake, ND 58301, USA",(701) 662-3701,http://lrhcmuseum.com/,48.1115577,-98.8585154,Devils Lake +Sheriff's House Museum,"416 6th St NE, Devils Lake, ND 58301, USA",(701) 662-7080,Unknown,48.1135713,-98.85938069999999,Devils Lake +Roosevelt Park,"Devils Lake, ND 58301, USA",(701) 662-8243,http://www.dlparkboard.org/,48.11312369999999,-98.8710833,Devils Lake +Ruger Park,"Devils Lake, ND 58301, USA",(701) 662-8243,https://www.dlparkboard.org/ruger-park,48.1208861,-98.8516124,Devils Lake +Roundhouse Park,"1009 Roundhouse Park Dr NW, Devils Lake, ND 58301, USA",(701) 662-8243,https://www.dlparkboard.org/roundhouse-park,48.1191204,-98.8723796,Devils Lake +Devils Lake State Parks,"152 S Duncan Rd, Devils Lake, ND 58301, USA",(701) 766-4015,https://www.parkrec.nd.gov/grahams-island-state-park,48.0478062,-99.0599281,Devils Lake +Pikes Playground,"Devils Lake, ND 58301, USA",Unknown,Unknown,48.085642,-98.8437069,Devils Lake +Devil’s Lake Water Tower,"505 11th St NW, Devils Lake, ND 58301, USA",Unknown,Unknown,48.1190817,-98.85830370000001,Devils Lake +Ice fishing North Dakota devils lake,"4355 87th Ave NE, Devils Lake, ND 58301, USA",Unknown,Unknown,48.04522069999999,-98.74621990000001,Devils Lake +Greer Heritage Museum,"106 S Main St, Greer, SC 29650, USA",(864) 877-3377,https://www.greerheritage.com/,34.93817689999999,-82.22805660000002,Greer +Greer City Park,"301 E Poinsett St, Greer, SC 29651, USA",(864) 848-2190,http://www.cityofgreer.org/,34.9382033,-82.2232338,Greer +J. Verne Smith Park (Lake Robinson),"2544 Mays Bridge Rd, Greer, SC 29651, USA",(864) 895-3645,https://www.greercpw.com/lakes-recreation,34.9931264,-82.2958185,Greer +GSP- Overlook,"1525 County Rd 136, Greer, SC 29651, USA",Unknown,Unknown,34.9030472,-82.21898510000001,Greer +Gilreath's Mill,"N Hwy 101, Greer, SC 29651, USA",Unknown,http://www.nationalregister.sc.gov/greenville/S10817723009/index.htm,34.9730586,-82.2783709,Greer +Lindsey's Christmas House,"107 Rotan St, Greer, SC 29651, USA",Unknown,Unknown,34.9293733,-82.223362,Greer +Century Park,"3605 Brushy Creek Rd, Greer, SC 29650, USA",(864) 848-2190,Unknown,34.9301694,-82.24024059999999,Greer +Muskegon State Park,"North Loop, Muskegon, MI, USA",(231) 744-3480,http://www.michigandnr.com/parksandtrails/Details.aspx?type=SPRK&id=475,43.2475206,-86.34150050000001,Muskegon +Pere Marquette Park,"3510 Channel Dr, Muskegon, MI 49441, USA",(231) 724-4100,https://muskegon-mi.gov/waterfront-parks/pere-marquette/,43.2238321,-86.3363495,Muskegon +Muskegon Museum of History & Science of the Lakeshore Museum Center,"430 W Clay Ave, Muskegon, MI 49440, USA",(231) 722-0278,http://www.lakeshoremuseum.org/,43.2337948,-86.2542385,Muskegon +Muskegon Museum of Art,"296 W Webster Ave, Muskegon, MI 49440, USA",(231) 720-2570,http://www.muskegonartmuseum.org/,43.23441219999999,-86.25091689999999,Muskegon +Hackley & Hume Historic Site,"484 W Webster Ave, Muskegon, MI 49440, USA",(231) 722-0278,http://www.lakeshoremuseum.org/,43.2316894,-86.2554863,Muskegon +Muskegon Heritage Museum of Business & Industry,"561 W Western Ave, Muskegon, MI 49440, USA",(231) 722-1363,http://www.muskegonheritage.org/,43.2329316,-86.2567359,Muskegon +Muskegon South Pierhead Lighthouse,"1431 Beach St, Muskegon, MI 49441, USA",(844) 654-4487,http://www.muskegonlights.org/,43.2266092,-86.3413329,Muskegon +Kruse Park,"3205 W Sherman Blvd, Muskegon, MI 49441, USA",(231) 724-4100,https://muskegon-mi.gov/waterfront-parks/kruse/,43.20719940000001,-86.321613,Muskegon +The Monet Garden Of Muskegon,"Muskegon, MI 49440, USA",(231) 724-6977,https://www.facebook.com/Monet-Garden-of-MuskegonMI-117791008268146,43.2331228,-86.2548375,Muskegon +USS Silversides Submarine Museum,"1346 Bluff St, Muskegon, MI 49441, USA",(231) 755-1230,http://www.silversidesmuseum.org/,43.2297288,-86.3323896,Muskegon +Muskegon Channel,"Muskegon, MI 49440, USA",Unknown,Unknown,43.2284434,-86.3383897,Muskegon +Hackley Park,"350 W Webster Ave, Muskegon, MI 49440, USA",Unknown,http://www.muskegon-mi.gov/departments/parks/hackley-park/,43.2337427,-86.2525624,Muskegon +Scolnik House Of The Depression Era,"504 W Clay Ave, Muskegon, MI 49440, USA",(231) 722-7578,https://lakeshoremuseum.org/project/scolnik-house-of-the-depression-era/,43.23269200000001,-86.2558432,Muskegon +Muskegon,"1798 Sanford St, Muskegon, MI 49441, USA",Unknown,Unknown,43.2006687,-86.2422661,Muskegon +S.S. Milwaukee Clipper,"2098 Lakeshore Dr, Muskegon, MI 49441, USA",(231) 299-0784,http://milwaukeeclipper.com/,43.2216955,-86.29587389999999,Muskegon +Moxie The Mastodon Art Work,"430 W Clay Ave, Muskegon, MI 49440, USA",Unknown,Unknown,43.2336943,-86.25384950000002,Muskegon +Muskegon Lake Nature Preserve,"2529 Lake Ave, North Muskegon, MI 49445, USA",(517) 648-3034,http://www.muskegonlakenaturepreserve.com/,43.2648158,-86.2511887,Muskegon +Michigan's Adventure,"4750 Whitehall Rd, Muskegon, MI 49445, USA",(231) 766-9959,http://www.miadventure.com/,43.3416799,-86.2704809,Muskegon +Muskegon State Park Block House,"462 N Scenic Dr, Muskegon, MI 49445, USA",(231) 744-3480,http://www.michigandnr.com/parksandtrails/Details.aspx?type=SPRK&id=475,43.2553711,-86.3495026,Muskegon +Heritage Landing,"No mi meta mmm, 1050 7th St, Muskegon, MI 49440, USA",(231) 724-1105,https://muskegon-mi.gov/waterfront-parks/heritage-landing/,43.2323387,-86.2606345,Muskegon +Hibbing Historical Society,"400 E 23rd St, Hibbing, MN 55746, USA",(218) 263-8522,Unknown,47.4236173,-92.93722369999999,Hibbing +Bennett Park,"520 E 13th St, Hibbing, MN 55746, USA",(218) 362-5955,Unknown,47.4342108,-92.9367067,Hibbing +Greyhound Bus Museum,"1201 Greyhound Blvd, Hibbing, MN 55746, USA",(218) 263-5814,http://www.greyhoundbusmuseum.org/,47.4383722,-92.9395778,Hibbing +Maple Hill Park,"3674 Maple Hill Rd, Hibbing, MN 55746, USA",Unknown,Unknown,47.38088339999999,-92.9550555,Hibbing +Hull–Rust–Mahoning Open Pit Iron Mine,"Penobscot Road, Hibbing, MN 55746, USA",Unknown,https://hibbingmineview.org/,47.44397829999999,-92.925136,Hibbing +Hill of Three Waters,"401 Penobscot Rd, Hibbing, MN 55746, USA",Unknown,https://www.hmdb.org/m.asp?m=27715,47.472345,-92.9637429,Hibbing +Minnesota Museum of Mining,"701 W Lake St, Chisholm, MN 55719, USA",(218) 254-5543,http://www.mnmuseumofmining.org/,47.4893514,-92.89140359999999,Hibbing +Santa Ana Zoo,"1801 E Chestnut Ave, Santa Ana, CA 92701, USA",(714) 647-6575,http://www.santaanazoo.org/,33.7435545,-117.8424885,Santa Ana +Bowers Museum,"2002 N Main St, Santa Ana, CA 92706, USA",(714) 567-3600,http://www.bowers.org/,33.7634055,-117.8681454,Santa Ana +Discovery Science Center,"2500 N Main St, Santa Ana, CA 92705, USA",(714) 542-2823,https://www.discoverycube.org/,33.7702538,-117.8678641,Santa Ana +Downtown Santa Ana Historic District,"Santa Ana, CA 92701, USA",Unknown,http://www.downtown-santaana.com/,33.7476661,-117.8667056,Santa Ana +Heritage Museum of Orange County,"3101 W Harvard St, Santa Ana, CA 92704, USA",(714) 540-0404,http://heritagemuseumoc.org/,33.7207429,-117.9106923,Santa Ana +Santiago Park - City of Santa Ana,"600 E Memory Ln, Santa Ana, CA 92705, USA",(714) 647-6902,https://www.santa-ana.org/santiago-park/,33.7733764,-117.8609095,Santa Ana +The Dr. Willella Howe-Waffle House and Medical Museum,"120 W Civic Center Dr, Santa Ana, CA 92701, USA",(714) 547-9645,https://www.santaanahistory.com/drhowewafflemuseum,33.7504322,-117.8684323,Santa Ana +Museo Castillo Serrallés,"Sector El Vigia, P.º De La Cruceta, Ponce, 00730, Puerto Rico",(787) 259-1774,http://www.museocastilloserralles.com/,18.0187269,-66.6193047,Ponce +La Guancha,"X98P+9XP, Calle B, Ponce, 00716, Puerto Rico",Unknown,https://www.laguancha.net/,17.9659567,-66.61255229999999,Ponce +Hacienda Buena Vista - Para la Naturaleza,"Km 17.3, PR-123, Ponce, 00731, Puerto Rico",(787) 722-5882,https://www.paralanaturaleza.org/hacienda-buena-vista/,18.083394,-66.65403599999999,Ponce +Centro Cultural de Ponce Carmen Solá de Pereira,"70 C. Cristina, Ponce, 00730, Puerto Rico",(787) 607-5112,Unknown,18.011912,-66.61251770000001,Ponce +Plaza Luis Muñoz Rivera,"C. Reina Isabel, Ponce, 00730, Puerto Rico",(787) 298-6026,Unknown,18.012198,-66.61404759999999,Ponce +Parque de Bombas,"296P+QG6 Plaza Las Delicias, Ponce, 00731, Puerto Rico",(787) 840-1045,Unknown,18.0119047,-66.6137251,Ponce +Letras de Ponce,"2CGH+3RH, Autop. Luis A. Ferré, Ponce, 00715, Puerto Rico",Unknown,http://ponce.com/las-letras-de-ponce/,18.0251857,-66.5703936,Ponce +Parque Urbano Dora Colón Clavell,"295P+796, Calle Concordia, Calle Jobos Y Calle Marina, Ponce, 00717, Puerto Rico",(787) 284-4142,http://www.travelponce.com/Dora-Colon-Clavell.html,18.0081636,-66.6141104,Ponce +La Fuente del León,"X98P+CH5, Ponce, 00716, Puerto Rico",Unknown,Unknown,17.9660039,-66.6135252,Ponce +Faro de Caja de Muertos / Lighthouse,"Unnamed Rd, VFVH+7G8, Ponce, Puerto Rico",Unknown,Unknown,17.893155,-66.52117439999999,Ponce +Puente hamaca,"29V3+CW4, Ponce, 00728, Puerto Rico",Unknown,Unknown,18.0435042,-66.64516069999999,Ponce +Torre de Observación de la Guancha,"X97P+HFM, Ponce, 00716, Puerto Rico",Unknown,Unknown,17.9639573,-66.61381759999999,Ponce +Monumento a los Héroes de El Polvorín,"296P+GGC, Segundo, Ponce 00730, Puerto Rico",(787) 319-3978,Unknown,18.0113161,-66.61373250000001,Ponce +Charco tres palmitas,"39J6+CCC, PR-503, Ponce, 00731, Puerto Rico",Unknown,Unknown,18.0810572,-66.6389791,Ponce +Casa Paoli,"2548 Calle Mayor, Ponce, 00717, Puerto Rico",(939) 640-1584,http://www.casapaolipr.com/,18.0079853,-66.61332060000001,Ponce +Panteón Nacional Román Baldorioty de Castro,"15 Calle Frontispicio, Ponce, 00730, Puerto Rico",(787) 284-4141 ext. 456,Unknown,18.0162804,-66.6178316,Ponce +"Parque Luis A. ""Wito"" Morales","3CCF+WFF, PR-139, Ponce, 00731, Puerto Rico",(787) 812-0076,Unknown,18.0723157,-66.57634159999999,Ponce +Monumento en Memoria a los Ilustres Ponceños,"2605 Las Américas Ave, Ponce, 00717, Puerto Rico",Unknown,Unknown,18.00327459999999,-66.6041395,Ponce +Tibes Indigenous Ceremonial Park,"29VG+GVJ, PR-503, Ponce, 00731, Puerto Rico",(787) 840-5685,Unknown,18.0438485,-66.6228552,Ponce +Museo de Arte de Ponce,"2325 Las Américas Ave, Ponce, 00717, Puerto Rico",(787) 840-1510,https://museoarteponce.org/,18.0042388,-66.6169262,Ponce +Sharlot Hall Museum,"415 W Gurley St, Prescott, AZ 86301, USA",(928) 445-3122,https://www.sharlothallmuseum.org/,34.541729,-112.4731796,Prescott +Heritage Park Zoological Sanctuary,"1403 Heritage Park Rd, Prescott, AZ 86301, USA",(928) 778-4242,http://www.heritageparkzoo.org/,34.6124929,-112.4447931,Prescott +Willow Lake Park,"1497 Heritage Park Rd, Prescott, AZ 86301, USA",(928) 777-1552,http://www.prescott-az.gov/recreation-area/willow-lake-park/,34.61452939999999,-112.4415096,Prescott +A Haunting Experience Tours,"201 W Gurley St, Prescott, AZ 86301, USA",(928) 642-5074,http://ahauntingexperiencetours.com/,34.5419033,-112.4701258,Prescott +Dragon Fly Cove,"Peavine Trail (Prescott Peavine Trail), Prescott, AZ 86301, USA",Unknown,Unknown,34.5881241,-112.4145364,Prescott +Phippen Museum,"4701 AZ-89, Prescott, AZ 86301, USA",(928) 778-1385,http://www.phippenartmuseum.org/,34.62337359999999,-112.4255504,Prescott +Constellation Trail,"5761 AZ-89, Prescott, AZ 86301, USA",Unknown,Unknown,34.6232118,-112.4266925,Prescott +Horse Statue,"Prescott, AZ 86303, USA",(908) 481-8871,Unknown,34.5401896,-112.4694567,Prescott +Prescott Arizona Mural,"150 S Montezuma St, Prescott, AZ 86303, USA",Unknown,Unknown,34.541648,-112.4708799,Prescott +A.C. Williams Granite Creek Park,"554 6th St, Prescott, AZ 86301, USA",Unknown,Unknown,34.548429,-112.468248,Prescott +Puzzle Rides Prescott,"Historic Downtown, 135 S Granite St, Prescott, AZ 86303, USA",(602) 601-2261,http://www.puzzlerides.com/,34.5412182,-112.4713679,Prescott +Community Nature Center,"1981 Williamson Valley Rd, Prescott, AZ 86305, USA",(928) 777-1121,http://www.prescott-az.gov/recreation-area/community-nature-center/,34.5748262,-112.495804,Prescott +Museum of Indigenous People,"147 N Arizona Ave, Prescott, AZ 86301, USA",(928) 445-1230,https://www.museumofindigenouspeople.org/,34.5435313,-112.4589946,Prescott +Highlands Center for Natural History,"1375 S Walker Rd, Prescott, AZ 86303, USA",(928) 776-9550,https://highlandscenter.org/,34.52417399999999,-112.3930991,Prescott +Lynx Lake,"Prescott, AZ 86303, USA",Unknown,Unknown,34.5188386,-112.3851878,Prescott +Fort Whipple Museum,"500 AZ-89, Prescott, AZ 86301, USA",(928) 445-3122,https://www.sharlothallmuseum.org/venue/fort-whipple-museum/,34.5538766,-112.45247,Prescott +The Children's Museum of Indianapolis,"3000 N Meridian St, Indianapolis, IN 46208, USA",(317) 334-4000,https://www.childrensmuseum.org/,39.81061319999999,-86.1578917,Indianapolis +White River State Park,"801 W Washington St, Indianapolis, IN 46204, USA",(317) 233-2434,https://www.whiteriverstatepark.org/,39.7665464,-86.17078579999999,Indianapolis +Indiana State Museum,"650 W Washington St, Indianapolis, IN 46204, USA",(317) 232-1637,http://www.indianamuseum.org/,39.76839189999999,-86.1695013,Indianapolis +Indianapolis Zoo,"1200 W Washington St, Indianapolis, IN 46222, USA",(317) 630-2001,http://www.indianapoliszoo.com/,39.76678709999999,-86.1770481,Indianapolis +Catacombs,"222 E Market St, Indianapolis, IN 46204, USA",(317) 639-4534,https://www.indianalandmarks.org/tours-events/ongoing-tours-events/city-market-catacombs-tour/,39.7687329,-86.1534198,Indianapolis +Eiteljorg Museum,"500 W Washington St, Indianapolis, IN 46204, USA",(317) 636-9378,http://www.eiteljorg.org/,39.76857539999999,-86.16779149999999,Indianapolis +Eagle Creek Park,"7840 W 56th St, Indianapolis, IN 46254, USA",(317) 327-7110,https://www.indy.gov/activity/about-eagle-creek-park,39.873789,-86.29620299999999,Indianapolis +Newfields,"4000 N Michigan Rd, Indianapolis, IN 46208, USA",(317) 923-1331,https://www.discovernewfields.org/,39.82596059999999,-86.1856632,Indianapolis +Oldfields–Lilly House & Gardens,"4000 N Michigan Rd, Indianapolis, IN 46208, USA",(317) 923-1331,http://www.imamuseum.org/visit/oldfields-lilly-house-gardens/lilly-house,39.8283758,-86.1854796,Indianapolis +Indianapolis Motor Speedway Museum,"4750 W 16th St, Indianapolis, IN 46222, USA",(317) 492-6784,https://imsmuseum.org/,39.79031459999999,-86.23366109999999,Indianapolis +Benjamin Harrison Presidential Site,"1230 N Delaware St, Indianapolis, IN 46202, USA",(317) 631-1888,http://www.presidentbenjaminharrison.org/,39.78407199999999,-86.154487,Indianapolis +Indiana War Memorial & Museum,"55 E Michigan St, Indianapolis, IN 46204, USA",(317) 232-7615,https://www.indianawarmemorials.org/,39.7733607,-86.15695079999999,Indianapolis +Central Canal,"Canal Walk, Indianapolis, IN 46204, USA",Unknown,Unknown,39.7693459,-86.1662996,Indianapolis +Holliday Park,"6363 Spring Mill Rd, Indianapolis, IN 46260, USA",(317) 327-7180,https://www.hollidaypark.org/,39.8708933,-86.1634943,Indianapolis +Military Park,"601 W New York St, Indianapolis, IN 46204, USA",(317) 233-2434,https://www.whiteriverstatepark.org/,39.77059,-86.1687006,Indianapolis +Central Canal,"Indianapolis, IN 46204, USA",Unknown,Unknown,39.7674579,-86.1704647,Indianapolis +Indiana Medical History Museum,"3270 Kirkbride Way, Indianapolis, IN 46222, USA",(317) 635-7329,http://www.imhm.org/,39.7698864,-86.2133001,Indianapolis +Veal's Ice Tree,"6445 Mimosa Ln, Indianapolis, IN 46259, USA",Unknown,http://vealsicetree.wixsite.com/vealsicetree,39.67615,-85.96344649999999,Indianapolis +The Escape Room Indianapolis,"200 S Meridian St STE 220, Indianapolis, IN 46225, USA",(317) 986-6542,https://www.escaperoomusa.com/indy/,39.7641465,-86.1583957,Indianapolis +Virginia B. Fairbanks Art & Nature Park,"1850 W 38th St, Indianapolis, IN 46228, USA",(317) 923-1331,https://discovernewfields.org/do-and-see/places-to-go/virginia-b-fairbanks-art-nature-park-100-acres,39.825996,-86.1894275,Indianapolis +Smokey Bear Park,"214 6th Ave #2336, International Falls, MN 56649, USA",Unknown,Unknown,48.6033189,-93.4101827,International Falls +Rainy Lake Visitor Center,"1797 Ut - 342, International Falls, MN 56649, USA",(218) 286-5258,http://www.nps.gov/voya/planyourvisit/visitorcenters.htm,48.5847246,-93.1611377,International Falls +The Journey Museum & Learning Center,"222 New York St, Rapid City, SD 57701, USA",(605) 394-6923,http://www.journeymuseum.org/,44.0865361,-103.2186319,Rapid City +Museum of Geology,"O'Harra Building, 561 E St Joseph St, Rapid City, SD 57701, USA",(605) 394-2467,http://museum.sdsmt.edu/,44.073751,-103.2060334,Rapid City +Reptile Gardens,"8955 US-16, Rapid City, SD 57702, USA",(800) 335-0275,http://www.reptilegardens.com/,43.9909702,-103.2720165,Rapid City +President William Howard Taft Statue,"727 Main St, Rapid City, SD 57701, USA",Unknown,https://www.visitrapidcity.com/things-to-do/all-things/attractions/city-presidents,44.08155259999999,-103.2305723,Rapid City +WaTiki® Indoor Waterpark Resort,"1314 N Elk Vale Rd, Rapid City, SD 57703, USA",(605) 718-2445,http://www.watikiwaterpark.com/,44.09866859999999,-103.1480536,Rapid City +Memorial Park,"600-684 Omaha St, Rapid City, SD 57701, USA",(605) 394-9300,Unknown,44.084061,-103.2271567,Rapid City +Dinosaur Park,"940 Skyline Dr, Rapid City, SD 57701, USA",(605) 343-8687,http://www.rcgov.org/departments/parks-recreation/parks-recreation-department-78.html,44.07806189999999,-103.2458739,Rapid City +Bear Country USA,"13820 US-16, Rapid City, SD 57702, USA",(605) 343-2290,http://www.bearcountryusa.com/,43.9753738,-103.2968942,Rapid City +Dinosaur Museum,"8973 US-16, Rapid City, SD 57702, USA",(605) 342-8140,http://blackhillsdinosaurmuseum.com/index.html,43.989073,-103.273093,Rapid City +Founders Park,"1510 W Omaha St, Rapid City, SD 57701, USA",(605) 394-4175,https://www.visitrapidcity.com/things-to-do/tours-historic-districts/founders-park,44.0846113,-103.242718,Rapid City +Berlin Wall,"206 N 8th St #100, Rapid City, SD 57701, USA",(800) 487-3223,Unknown,44.0860165,-103.2277805,Rapid City +Black Hills Escape Rooms,"705 Main St, Rapid City, SD 57701, USA",(605) 731-8050,http://blackhillsescaperooms.com/,44.08129909999999,-103.229428,Rapid City +Black Hills Caverns,"2600 Cavern Rd, Rapid City, SD 57702, USA",(605) 343-0542,http://www.blackhillscaverns.com/,44.060171,-103.355983,Rapid City +President Barack Obama Statue,"405 St Joseph St, Rapid City, SD 57701, USA",Unknown,https://www.visitrapidcity.com/things-to-do/all-things/attractions/city-presidents,44.07933320000001,-103.2237863,Rapid City +Art Alley,"599 7th St, Rapid City, SD 57701, USA",(806) 893-4592,https://www.artalleyrc.com/,44.0806915,-103.2280663,Rapid City +Canyon Lake Park,"3P67+329, 4181 Jackson Blvd, Rapid City, SD 57702, USA",(605) 394-4175,http://www.rcgov.org/departments/parks-recreation/parks-division/municipal-parks/municipal-parks-322.html,44.059886,-103.2872664,Rapid City +President Franklin Roosevelt Statue,"430 SD-79, Rapid City, SD 57701, USA",Unknown,Unknown,44.08087090000001,-103.2248855,Rapid City +President Thomas Jefferson Statue,"524 7th St, Rapid City, SD 57701, USA",Unknown,Unknown,44.0804149,-103.2289911,Rapid City +President George Bush Sr Statue,"Rapid City, SD 57701, USA",Unknown,Unknown,44.0809623,-103.2268735,Rapid City +President Abraham Lincoln Statue,"515 9th St #501, Rapid City, SD 57701, USA",(800) 487-3223,Unknown,44.081904,-103.2327325,Rapid City +Southeast Alaska Discovery Center,"50 Main St, Ketchikan, AK 99901, USA",(907) 228-6220,https://www.fs.usda.gov/recarea/tongass/recarea/?recid=78948,55.340697,-131.644023,Ketchikan +Totem Heritage Center,"601 Deermount St, Ketchikan, AK 99901, USA",(907) 225-5900,http://www.ketchikanmuseums.org/,55.3425768,-131.6340798,Ketchikan +Great Alaskan Lumberjack Show,"420 Spruce Mill Way, Ketchikan, AK 99901, USA",(907) 225-9050,http://www.alaskanlumberjackshow.com/,55.34004969999999,-131.6434173,Ketchikan +Eagle Park,"Front St, Ketchikan, AK 99901, USA",Unknown,Unknown,55.3425047,-131.6487077,Ketchikan +Tongass Historical Museum,"629 Dock St, Ketchikan, AK 99901, USA",(907) 225-5600,http://www.ketchikanmuseums.org/,55.3425263,-131.6435809,Ketchikan +Creek Street in Ketchikan,"13 Creek St, Ketchikan, AK 99901, USA",(907) 617-0867,https://creekstreetketchikan.com/,55.34215409999999,-131.6413674,Ketchikan +Hovercraft Eco Adventure & Wildlife Viewing,"1471 Tongass Ave, Ketchikan, AK 99901, USA",(907) 228-2320,Unknown,55.3467784,-131.6620485,Ketchikan +Totem Bight State Historical Park,"9883 N Tongass Hwy, Ketchikan, AK 99901, USA",(907) 247-8574,https://dnr.alaska.gov/parks/aspunits/southeast/totembigshp.htm,55.4201157,-131.7725377,Ketchikan +Ketchikan Sign,"Mission St, Ketchikan, AK 99901, USA",Unknown,Unknown,55.3413216,-131.6466192,Ketchikan +Whale Park,"829 Mill St, Ketchikan, AK 99901, USA",Unknown,Unknown,55.3416514,-131.6439464,Ketchikan +Ketchikan Helicopter,"1515 Tongass Ave, Ketchikan, AK 99901, USA",(855) 858-4354,http://www.ketchikanhelicopters.com/contact/,55.34693599999999,-131.6624702,Ketchikan +Sun Raven Totem Pole,"600 Stedman St, Ketchikan, AK 99901, USA",Unknown,https://www.alaska.org/detail/sun-raven-totem-poles,55.3390868,-131.6375951,Ketchikan +Alaska Sourdough Tours,"Ketchikan, AK 99901, USA",Unknown,Unknown,55.34222219999999,-131.6461111,Ketchikan +Fishing. Ketchikan adventure tours,"Side of building, 24 Creek St, Ketchikan, AK 99901, USA",(907) 220-1188,https://www.alaska.org/detail/dollys-house-museum,55.3415005,-131.6410792,Ketchikan +Potlatch Totem Park and Museum,"9809 Totem Bight Rd, Ketchikan, AK 99901, USA",(907) 225-4445,http://www.potlatchparkalaska.com/,55.420164,-131.770528,Ketchikan +East Street pier,"100 East St, Ketchikan, AK 99901, USA",Unknown,Unknown,55.33914309999999,-131.6390037,Ketchikan +Tunnel of Ketchikan,"Water St, Ketchikan, AK 99901, USA",Unknown,https://www.alaska.org/detail/tunnel-of-ketchikan,55.3428031,-131.6490202,Ketchikan +Yelatzie Salmon,"Married Man's Trl, Ketchikan, AK 99901, USA",Unknown,Unknown,55.3425672,-131.6430594,Ketchikan +Tireless Tide,"Dock St, Ketchikan, AK 99901, USA",Unknown,Unknown,55.3419532,-131.6461172,Ketchikan +Chief Johnson Totem Pole,"Totem Way, Ketchikan, AK 99901, USA",Unknown,http://ketchikanstories.com/ketchicon/chief-johnsons-totem-pole/totem-pole,55.341987,-131.6427125,Ketchikan +Saint Louis Zoo,"1 Government Dr, St. Louis, MO 63110, USA",(314) 781-0900,https://stlzoo.org/,38.6349169,-90.29097750000001,St. Louis +City Museum,"750 N 16th St, St. Louis, MO 63103, USA",(314) 231-2489,https://www.citymuseum.org/,38.6336745,-90.2006976,St. Louis +Forest Park,"5595 Grand Dr, St. Louis, MO 63112, USA",Unknown,https://www.forestparkforever.org/,38.63711729999999,-90.28476619999999,St. Louis +Missouri Botanical Garden,"4344 Shaw Blvd, St. Louis, MO 63110, USA",(314) 577-5100,http://www.missouribotanicalgarden.org/,38.61276719999999,-90.25937979999999,St. Louis +Saint Louis Art Museum,"1 Fine Arts Dr, St. Louis, MO 63110, USA",(314) 721-0072,http://www.slam.org/,38.6393062,-90.2944911,St. Louis +Citygarden Sculpture Park,"801 Market St, St. Louis, MO 63101, USA",(314) 241-3337,http://www.citygardenstl.org/,38.6266804,-90.1937073,St. Louis +The Gateway Arch,"Gateway Arch, St. Louis, MO 63102, USA",(877) 982-1410,https://www.gatewayarch.com/,38.6251269,-90.1867504,St. Louis +St. Louis Union Station Mirror Maze,"201 S 18th St, St. Louis, MO 63103, USA",Unknown,https://www.stlouisunionstation.com/mirror-maze,38.62837469999999,-90.2075084,St. Louis +Tower Grove Park,"4257 Northeast Dr, St. Louis, MO 63110, USA",(314) 771-2679,https://www.towergrovepark.org/,38.6061925,-90.2541675,St. Louis +The St. Louis Wheel,"201 S 18th St, St. Louis, MO 63103, USA",(314) 923-3960,http://thestlouiswheel.com/,38.6277183,-90.209575,St. Louis +St. Louis Riverfront,"Poplar St, St. Louis, MO 63102, USA",(877) 982-1410,http://www.gatewayarch.com/,38.6243421,-90.1839603,St. Louis +Saint Louis Science Center,"5050 Oakland Ave, St. Louis, MO 63110, USA",(314) 289-4400,https://www.slsc.org/,38.6289922,-90.27041899999999,St. Louis +Campbell House Museum,"1508 Locust St, St. Louis, MO 63103, USA",(314) 421-0325,http://www.campbellhousemuseum.org/,38.63133029999999,-90.2018274,St. Louis +Museum of Westward Expansion,"11 N 4th St, St. Louis, MO 63102, USA",(314) 655-1614,http://www.gatewayarch.com/,38.6256744,-90.1892738,St. Louis +Gateway Arch National Park,"St. Louis, MO 63102, USA",(314) 655-1600,https://www.nps.gov/jeff/index.htm,38.6248848,-90.1858982,St. Louis +Art Hill,"35-43 Fine Arts Dr, St. Louis, MO 63110, USA",(314) 367-7275,http://www.forestparkforever.org/,38.6403391,-90.29371090000001,St. Louis +Missouri History Museum,"5700 Lindell Blvd, St. Louis, MO 63112, USA",(314) 746-4599,https://www.mohistory.org/museum,38.6452478,-90.28573829999999,St. Louis +Compton Hill Water Tower,"1700-1898 S Grand Blvd, St. Louis, MO 63104, USA",(314) 552-9000,http://www.watertowerfoundation.org/,38.6150228,-90.2389402,St. Louis +Laclede's Landing Wax Museum,"720 N 2nd St, St. Louis, MO 63102, USA",(314) 241-1155,http://www.stlwaxmuseum.com/,38.6307649,-90.184336,St. Louis +"The Magic House, St. Louis Children’s Museum","516 S Kirkwood Rd, St. Louis, MO 63122, USA",(314) 822-8900,http://www.magichouse.org/,38.5737375,-90.4056837,St. Louis +Santa Maria Valley Discovery Museum,"705 S McClelland St, Santa Maria, CA 93454, USA",(805) 928-8414,http://www.smvdiscoverymuseum.org/,34.9454709,-120.4350538,Santa Maria +Santa Maria Museum of Flight,"3015 Airpark Dr, Santa Maria, CA 93455, USA",(805) 922-8758,https://www.smmuseumofflight.com/,34.90496510000001,-120.4547551,Santa Maria +Santa Maria Historical Museum,"616 S Broadway, Santa Maria, CA 93454, USA",(805) 922-3130,http://santamariahistory.com/,34.9466315,-120.4356333,Santa Maria +Natural History Museum,"412 S McClelland St, Santa Maria, CA 93454, USA",(805) 614-0806,https://www.smnaturalhistory.org/,34.948942,-120.434002,Santa Maria +Russell Park,"1000 W Church St, Santa Maria, CA 93458, USA",(805) 925-0951,https://www.cityofsantamaria.org/city-government/departments/recreation-and-parks/visit-your-parks/view-park-photos-descriptions#Russell%20Park,34.9516534,-120.4510654,Santa Maria +Jim May Park,"809 Stanford Dr, Santa Maria, CA 93454, USA",(805) 925-0951,Unknown,34.9755846,-120.4249603,Santa Maria +Boomers Santa Maria,"2250 Preisker Ln, Santa Maria, CA 93458, USA",(805) 928-4942,https://boomersparks.com/santamaria?utm_source=gmb&utm_medium=Yext,34.98185369999999,-120.4333933,Santa Maria +Adventure Safaris Dinosaur Warehouse,"1360 W McCoy Ln #11, Santa Maria, CA 93455, USA",(805) 588-3353,https://www.centralcoastdinosaurs.com/,34.9153977,-120.4606577,Santa Maria +Los Flores Ranch Park,"6245 Dominion Rd, Santa Maria, CA 93454, USA",(805) 925-0951,Unknown,34.8428892,-120.3357283,Santa Maria +Pioneer Park,"1150 W Foster Rd, Santa Maria, CA 93455, USA",(805) 925-0951,Unknown,34.8817772,-120.4523634,Santa Maria +"Santa Maria, CA","Nipomo, CA 93444, USA",Unknown,Unknown,34.9910505,-120.4530716,Santa Maria +Eldridge Park,"96 Eldridge Park Dr, Elmira, NY 14901, USA",(607) 732-8440,https://eldridgepark.org/,42.1148166,-76.8164925,Elmira +Chemung Valley History Museum,"415 E Water St, Elmira, NY 14901, USA",(607) 734-4167,http://www.chemungvalleymuseum.org/,42.0885384,-76.8005623,Elmira +John W. Jones Museum,"1250 Davis St, Elmira, NY 14901, USA",(607) 846-3030,https://www.johnwjonesmuseum.org/,42.1077792,-76.8244947,Elmira +Mark Twain's Study,"800 Park Pl, Elmira, NY 14901, USA",(607) 735-1941,https://marktwainstudies.com/about/mark-twains-study/,42.0979238,-76.8139345,Elmira +Arnot Art Museum,"235 Lake St, Elmira, NY 14901, USA",(607) 734-3697,https://www.arnotartmuseum.org/,42.090829,-76.80248399999999,Elmira +Harris Hill Amusement Park,"557 Harris Hill Rd, Elmira, NY 14903, USA",(607) 732-1210,http://www.harrishillamusements.com/,42.123799,-76.895933,Elmira +Pirozzolo Park,"1255 W Water St, Elmira, NY 14905, USA",(607) 734-2031,Unknown,42.0751891,-76.8454288,Elmira +Katy Leary Park,"105 Connelly Ave, Elmira, NY 14904, USA",(607) 737-5679,http://cityofelmira.net/public-works/katy,42.08296970000001,-76.8117261,Elmira +National Soaring Museum,"51 Soaring Hill Dr, Elmira, NY 14903, USA",(607) 734-3128,http://www.soaringmuseum.org/,42.12168419999999,-76.9013015,Elmira +Brick Pond Park,"1015 Sullivan St, Elmira, NY 14901, USA",(607) 737-5691,http://cityofelmira.net/public-works/brick,42.10696839999999,-76.8025328,Elmira +Mark Twain Riverfront Park,"250 E Water St, Elmira, NY 14901, USA",Unknown,http://cityofelmira.net/public-works/mtriverfront,42.0879064,-76.80388479999999,Elmira +Mark Twain Gravesite,"1208 Davis St, Elmira, NY 14901, USA",Unknown,https://es.findagrave.com/memorial/1048/mark-twain,42.1062603,-76.8254668,Elmira +Brand Park,"301-311 Maple Ave, Elmira, NY 14904, USA",(607) 737-5751,http://www.cityofelmira.net/public-works/parks-and-recreation,42.0852112,-76.7931586,Elmira +Pulaski Park,"311 W Center St, Elmira, NY 14901, USA",Unknown,Unknown,42.1042923,-76.8212791,Elmira +Twinkle Town at Bradley Farms,"1543 Maple Ave, Elmira, NY 14904, USA",(607) 732-0561,https://bradleyfarmselmira.com/twinkle-town/,42.0571851,-76.7811583,Elmira +Alexandria National Museum,"131 El-Shaheed Galal El-Desouky, باب شرقي ووابور المياه، قسم باب شرقي، الإسكندرية 5423004, Egypt",03 4835519,http://www.alexandria.gov.eg/services/tourism/alextourism/museums/alexmusuem.html,31.20074149999999,29.9131977,Alexandria +Montaza Palace,"Montaza Palace, El-Gaish Rd, Al Mandarah Bahri, Montaza 2, Alexandria Governorate 5527001, Egypt",Unknown,Unknown,31.2884954,30.0159691,Alexandria +Catacombs of Kom el Shoqafa,"12 متفرع من ش، Ras at Tin, Karmouz, Alexandria Governorate 5341042, Egypt",03 3936825,Unknown,31.1787378,29.8930706,Alexandria +Serapeum of Alexandria,"Pompey's Pillar, Al Karah WA at Toubageyah WA Kafr Al Ghates, Karmouz, Alexandria Governorate 5341142, Egypt",012 29437357,Unknown,31.18234660000001,29.89628720000001,Alexandria +Villa of the birds,"54 شارع صفية زغلول،, المسلة شرق، العطارين، الإسكندرية 5371040, Egypt",Unknown,Unknown,31.1954085,29.9053826,Alexandria +Tea island,"72RC+MFG, Al Mandarah Bahri, Qesm Al Montazah, Alexandria Governorate 5527001, Egypt",Unknown,https://www.urtrips.com/tea-island-alexandria/,31.2916827,30.02119659999999,Alexandria +Citadel of Qaitbay,"Alexandria, As Sayalah Sharq, Qesm Al Gomrok, Alexandria Governorate 5321431, Egypt",Unknown,http://www.sis.gov.eg/,31.214011,29.8856383,Alexandria +"Alexandria Corniche, Louran","7X3F+J5G, Corniche Road, As Soyouf Bahri, Louran, Alexandria Governorate 5517070, Egypt",Unknown,Unknown,31.2540527,29.9729404,Alexandria +لسان سيدي بشر,"منطقة لوران ، فود كورت المحروسة، الأسكندرية،،, 7X4F+4QF، قسم أول المنتزة، Egypt",Unknown,Unknown,31.2553058,29.9744173,Alexandria +Alroshd Tourism,"Abis, Mansheya, Alexandria Governorate 5411432, Egypt",011 22296484,Unknown,31.1788926,29.9371714,Alexandria +لسان مكس,"5R2R+V33, Al _max, Al Meks, Dekhela, Alexandria Governorate, Egypt",Unknown,Unknown,31.15214989999999,29.84016299999999,Alexandria +Nubian Queen Travel,"Miami, City Beach tour, Alexandria Kornish, Sidi Beshr Bahri, Montaza 2, Alexandria Governorate 21614, Egypt",03 5562698,http://gonubianqueen.com/,31.2731774,30.0013152,Alexandria +Qaitbay Square,"6V6J+GXC, Kayetbai, Ras at Tin, Qesm Al Gomrok, Alexandria Governorate 5321421, Egypt",Unknown,Unknown,31.21130339999999,29.88237609999999,Alexandria +Jewel sculpture,"6W23+WFM, Al Mesallah Sharq, Al Attarin, Alexandria Governorate 5372066, Egypt",Unknown,Unknown,31.2022911,29.9035882,Alexandria +Bakri Tours,"Borg, Bab Sharqi WA Wabour Al Meyah, Bab Sharqi, Alexandria Governorate 5422015, Egypt",012 00564926,https://bakri-tours.business.site/?utm_source=gmb&utm_medium=referral,31.2000924,29.9187387,Alexandria +محطة اتوبيس إسكندرية السياحي,"Al Mandarah Bahri, حدائق المنتزة, Alexandria Governorate 5527001, Egypt",Unknown,Unknown,31.2819719,30.0118033,Alexandria +Ahmed mekky,"8 Hussein Basha Asem, Al Mazar, Qesm Al Gomrok, Alexandria Governorate 5321383, Egypt",Unknown,Unknown,31.2051877,29.8840954,Alexandria +كورنيش منطقة القائد ابراهيم,"3 Ibn Al Yossr, Al Mesallah Sharq, Al Attarin, Alexandria Governorate 5373002, Egypt",Unknown,Unknown,31.2030184,29.9018143,Alexandria +Royal Jewelry Museum,"27 Ahmed Yehia, San Stefano, El Raml 2, Alexandria Governorate 5451010, Egypt",03 5828348,https://royaljewelrymuseum.business.site/?utm_source=gmb&utm_medium=referral,31.2406096,29.9632848,Alexandria +Ancient Roman Theatre,"Ismail Mahana Road أمام محطة مصرالسكة الحديدية، Kom Ad Dakah Gharb, Al Attarin, Alexandria Governorate 21517, Egypt",03 3902904,http://www.alexandria.gov.eg/services/tourism/alextourism/museums/roman_th.html,31.19464559999999,29.9040251,Alexandria +Winchester Mystery House,"525 S Winchester Blvd, San Jose, CA 95128, USA",(408) 247-2000,https://winchestermysteryhouse.com/?utm_medium=organic&utm_source=google&utm_campaign=gbp-website,37.3183318,-121.9510491,San Jose +Happy Hollow Park & Zoo,"748 Story Rd, San Jose, CA 95112, USA",(408) 794-6400,https://happyhollow.org/,37.32609619999999,-121.8598463,San Jose +Rosicrucian Egyptian Museum,"1660 Park Ave, San Jose, CA 95191, USA",(408) 947-3635,http://www.egyptianmuseum.org/,37.33348600000001,-121.922884,San Jose +Plaza de Cesar Chavez,"1 Paseo de San Antonio, San Jose, CA 95113, USA",(408) 535-3570,http://www.sjparks.org/,37.3324858,-121.8898421,San Jose +San Jose Museum of Art,"110 S Market St, San Jose, CA 95113, USA",(408) 271-6840,http://sjmusart.org/,37.3337262,-121.8899245,San Jose +Municipal Rose Garden,"1649 Naglee Ave, San Jose, CA 95126, USA",(408) 794-7275,https://www.sanjose.org/listings/municipal-rose-garden,37.3318809,-121.9286119,San Jose +Alum Rock Park,"15350 Penitencia Creek Rd, San Jose, CA 95127, USA",(408) 259-5477,https://www.sanjoseca.gov/Home/Components/FacilityDirectory/FacilityDirectory/2088/2028?utm_campaign=google_maps&utm_medium=organic&utm_source=google,37.396039,-121.801812,San Jose +Sierra vista,"5345 Sierra Rd, San Jose, CA 95132, USA",Unknown,Unknown,37.40913889999999,-121.8011053,San Jose +Children's Discovery Museum of San Jose,"180 Woz Way, San Jose, CA 95110, USA",(408) 298-5437,https://www.cdm.org/,37.3269922,-121.8920824,San Jose +St James Park,"N 2nd St &, E St James St, San Jose, CA 95112, USA",(408) 535-3570,https://www.sanjoseca.gov/Home/Components/FacilityDirectory/FacilityDirectory/2661/,37.3388897,-121.8911568,San Jose +San Jose Museum of Quilts & Textiles,"520 S 1st St, San Jose, CA 95113, USA",(408) 971-0323,http://www.sjquiltmuseum.org/,37.3281515,-121.8843554,San Jose +The Tech Interactive,"201 S Market St, San Jose, CA 95113, USA",(408) 294-8324,https://www.thetech.org/,37.3314903,-121.8902357,San Jose +Viet Museum,"1650 Senter Rd, San Jose, CA 95112, USA",(408) 679-9149,https://www.vietmuseumsanjose.com/,37.319748,-121.8582402,San Jose +Japanese American Museum of San Jose,"535 N 5th St, San Jose, CA 95112, USA",(408) 294-3138,http://www.jamsj.org/,37.34749559999999,-121.8936037,San Jose +History Park,"635 Phelan Ave, San Jose, CA 95112, USA",(408) 287-2290,http://historysanjose.org/,37.3201693,-121.8586549,San Jose +California's Great America,"4701 Great America Pkwy, Santa Clara, CA 95054, USA",(408) 988-1776,http://www.cagreatamerica.com/,37.3979214,-121.9742877,San Jose +Paulson House,"1650 Senter Rd, San Jose, CA 95112, USA",Unknown,https://historysanjose.org/plan-your-visit/history-park/paulson-house/,37.3191997,-121.8580623,San Jose +Japanese Friendship Garden,"1300 Senter Rd, San Jose, CA 95112, USA",(408) 794-7275,https://www.sanjoseca.gov/Home/Components/FacilityDirectory/FacilityDirectory/2835/,37.3218587,-121.8599194,San Jose +Kelley Park,"1300 Senter Rd, San Jose, CA 95112, USA",(408) 794-7275,https://www.sanjoseca.gov/Home/Components/FacilityDirectory/FacilityDirectory/2245/2028?npage=8,37.3253954,-121.8587999,San Jose +Vieira Park,"2988 Grassina St, San Jose, CA 95136, USA",(408) 793-5510,https://www.sanjoseca.gov/Home/Components/FacilityDirectory/FacilityDirectory/2687/2028,37.287021,-121.8614271,San Jose +Pima Air & Space Museum,"6000 E Valencia Rd, Tucson, AZ 85756, USA",(520) 574-0462,https://www.pimaair.org/,32.1399593,-110.8649696,Tucson +Reid Park Zoo,"3400 E Zoo Ct, Tucson, AZ 85716, USA",(520) 791-3204,https://reidparkzoo.org/?utm_source=google&utm_medium=organic&utm_campaign=GMB,32.2098547,-110.9207443,Tucson +The Mini Time Machine Museum of Miniatures,"4455 E Camp Lowell Dr, Tucson, AZ 85712, USA",(520) 881-0606,https://theminitimemachine.org/,32.2654613,-110.8956412,Tucson +Tucson Botanical Gardens,"2150 N Alvernon Way, Tucson, AZ 85712, USA",(520) 326-9686,http://www.tucsonbotanical.org/,32.248523,-110.908785,Tucson +Trail Dust Town,"6541 E Tanque Verde Rd, Tucson, AZ 85715, USA",(520) 296-4551,http://www.traildusttown.com/,32.2474341,-110.8529292,Tucson +San Xavier del Bac Mission,"1950 W San Xavier Rd, Tucson, AZ 85746, USA",(520) 294-2624,http://www.sanxaviermission.org/,32.1069638,-111.00878,Tucson +Old Tucson,"201 Kinney Rd, Tucson, AZ 85735, USA",(520) 883-0100,http://oldtucson.com/,32.2183137,-111.1289275,Tucson +Children's Museum Tucson,"200 S 6th Ave, Tucson, AZ 85701, USA",(520) 792-9985,https://www.childrensmuseumtucson.org/,32.219192,-110.969338,Tucson +Presidio San Agustín del Tucson Museum,"196 N Court Ave, Tucson, AZ 85701, USA",(520) 622-0594,http://www.tucsonpresidio.com/,32.224195,-110.9737738,Tucson +Fort Lowell Museum,"2900 N Craycroft Rd, Tucson, AZ 85712, USA",(520) 885-3832,Unknown,32.2596871,-110.874732,Tucson +Arizona-Sonora Desert Museum,"2021 N Kinney Rd, Tucson, AZ 85743, USA",(520) 883-1380,https://www.desertmuseum.org/,32.244013,-111.168174,Tucson +Tumamoc Hill,"Tumamoc Hill Rd, Tucson, AZ 85745, USA",Unknown,http://tumamoc.arizona.edu/,32.2254619,-111.0016214,Tucson +International Wildlife Museum,"4800 West Gates Pass, Boulevard, Tucson, AZ 85745, USA",(520) 629-0100,http://www.thewildlifemuseum.org/,32.2346357,-111.0670564,Tucson +Tucson Museum Of Art,"140 N Main Ave, Tucson, AZ 85701, USA",(520) 624-2333,http://www.tucsonmuseumofart.org/,32.2234486,-110.9754411,Tucson +Rincon Mountain Visitor Center,"3693 S Old Spanish Trail, Tucson, AZ 85730, USA",(520) 733-5153,http://www.nps.gov/sagu/index.htm,32.1802194,-110.7362959,Tucson +Flandrau Science Center and Planetarium,"1601 E University Blvd, Tucson, AZ 85721, USA",(520) 621-4516,https://flandrau.org/,32.2323378,-110.9478701,Tucson +Arizona State Museum,"1013 E University Blvd, Tucson, AZ 85721, USA",(520) 621-6302,https://statemuseum.arizona.edu/visit,32.2325513,-110.9557445,Tucson +Tucson Rodeo Parade Museum,"4823 S 6th Ave, Tucson, AZ 85714, USA",(520) 294-3636,https://www.tucsonrodeoparade.com/the-museum/,32.164315,-110.967814,Tucson +Valley of the Moon,"2544 E Allen Rd, Tucson, AZ 85716, USA",(520) 323-1331,http://www.tucsonvalleyofthemoon.com/,32.275029,-110.933962,Tucson +Saguaro National Park Sign,"Tucson, AZ 85730, USA",Unknown,Unknown,32.1807874,-110.7378339,Tucson +Castillo San Felipe del Morro,"501 Calle Norzagaray, San Juan, 00901, Puerto Rico",(787) 729-6960,https://www.nps.gov/saju/index.htm,18.4706276,-66.1239202,San Juan +Paseo de La Princesa,"FV7M+9CV, Paseo de la Princesa, San Juan, 00901, Puerto Rico",Unknown,Unknown,18.4634809,-66.11644,San Juan +Parque de las Palomas,"FV7J+HWR, C. Tetuán, San Juan, 00901, Puerto Rico",(787) 480-2910,http://www.conoceapuertorico.com/parque-de-las-palomas/,18.4639894,-66.11774869999999,San Juan +Castillo San Cristóbal,"501 Calle Norzagaray, San Juan, 00901, Puerto Rico",(787) 449-4049,https://www.nps.gov/saju/learn/historyculture/san-cristobal.htm,18.4673652,-66.1110077,San Juan +Casa Blanca,"1 C. de San Sebastián, San Juan, 00901, Puerto Rico",(787) 725-1454,https://www.discoverpuertorico.com/profile/museo-casa-blanca/8488,18.4664019,-66.1200722,San Juan +San Juan National Historic Site,"FVCG+5HX, San Juan, 00901, Puerto Rico",(787) 729-6960,https://www.nps.gov/saju/index.htm,18.4704822,-66.1235165,San Juan +Puerta de San Juan,"FV8J+354 Caleta de San Juan, San Juan, 00901, Puerto Rico",Unknown,Unknown,18.4651336,-66.1195327,San Juan +Museo de las Américas,"C. Beneficencia, San Juan, 00901, Puerto Rico",(787) 724-5052,http://www.museolasamericas.org/,18.4677245,-66.1201859,San Juan +La Fortaleza,"63 C. de la Fortaleza, San Juan, 00901, Puerto Rico",(787) 721-7000,Unknown,18.4641061,-66.1192296,San Juan +Walkway of the Presidents,"FV8V+FJH, San Juan, 00901, Puerto Rico",Unknown,Unknown,18.4661967,-66.1058858,San Juan +Plaza Colón,"FV8Q+C57, C. de la Fortaleza, San Juan, 00901, Puerto Rico",Unknown,https://www.discoverpuertorico.com/profile/plaza-colon-san-juan/8039,18.4660267,-66.1120694,San Juan +Paseo del Morro,"FVCG+P3C Paseo del Morro, San Juan, 00901, Puerto Rico",Unknown,Unknown,18.4718182,-66.1248519,San Juan +Jerrys Adventures llc.,"580 Av. Manuel Fernández Juncos, San Juan, 00907, Puerto Rico",(787) 455-1245,http://www.jerrysadventures.com/,18.455552,-66.08822289999999,San Juan +Paseo de la Fama de Puerto Rico,"1053 Ashford Ave, San Juan, 00907, Puerto Rico",Unknown,Unknown,18.4578182,-66.0751284,San Juan +Balneario El Escambrón,"FW86+P2V, San Juan, 00910, Puerto Rico",Unknown,Unknown,18.46685979999999,-66.0899681,San Juan +Museo de Arte de Puerto Rico,"299 Avenida José de Diego, San Juan, 00909, Puerto Rico",(787) 977-6277,https://www.mapr.org/,18.448276,-66.066284,San Juan +Casa Ramón Power y Giralt – Para la Naturaleza,"155 C. Tetuán, San Juan, 00901, Puerto Rico",(787) 722-5834 ext. 242,http://www.paralanaturaleza.org/,18.464202,-66.116441,San Juan +Museo del Mar,"360 C. de San Francisco, San Juan, 00901, Puerto Rico",(787) 977-4461,http://www.museodelmarpr.org/,18.46632809999999,-66.1128195,San Juan +Casa Rosa,"Casa Rosa, San Juan, 00901, Puerto Rico",Unknown,Unknown,18.4664951,-66.1211536,San Juan +Plaza de Armas,"FV8M+48H, San Juan, 00969, Puerto Rico",Unknown,Unknown,18.4653047,-66.1166484,San Juan +National Mississippi River Museum & Aquarium,"350 E 3rd St, Dubuque, IA 52001, USA",(563) 557-9545,http://www.rivermuseum.org/,42.49689470000001,-90.6614081,Dubuque +Dubuque Shot Tower,"E Commercial St, Dubuque, IA 52001, USA",(563) 589-4100,https://www.cityofdubuque.org/712/Shot-Tower,42.5000745,-90.6539856,Dubuque +Crystal Lake Cave,"6684 Crystal Lake Cave Rd, Dubuque, IA 52003, USA",(563) 556-6451,https://www.facebook.com/crystallakecavellc/,42.43385500000001,-90.6211,Dubuque +EB Lyons Interpretive Center,"8991 Bellevue Heights Rd, Dubuque, IA 52003, USA",(563) 556-0620,http://www.minesofspain.org/,42.4597846,-90.66404109999999,Dubuque +Dubuque Museum of Art,"701 Locust St, Dubuque, IA 52001, USA",(563) 557-1851,http://www.dbqart.org/,42.4998178,-90.6680178,Dubuque +Dubuque Arboretum & Botanical Gardens,"3800 Arboretum Dr, Dubuque, IA 52001, USA",(563) 556-2100,http://www.dubuquearboretum.net/,42.532795,-90.71644859999999,Dubuque +Eagle Point Park,"2601 Shiras Ave, Dubuque, IA 52001, USA",(563) 589-4263,https://www.cityofdubuque.org/573/Eagle-Point-Park,42.5365654,-90.6526423,Dubuque +Sky Tours at YMCA Union Park Camp,"11764 John F Kennedy Rd, Dubuque, IA 52001, USA",(563) 484-4248,http://www.skytourszipline.com/,42.53858090000001,-90.71579559999999,Dubuque +William M. Black,"Ice Harbor Drive, Dubuque, IA 52001, USA",(563) 557-9545,http://www.cityofdubuque.org/713/William-M-Black,42.49526229999999,-90.66246269999999,Dubuque +Julien Dubuque Monument,"1810 Monument Dr, Dubuque, IA 52003, USA",(563) 556-0620,http://minesofspain.org/,42.46885229999999,-90.6465477,Dubuque +Fenelon Place Elevator Company,"512 Fenelon Pl, Dubuque, IA 52001, USA",(563) 582-6496,http://fenelonplaceelevator.com/,42.4963478,-90.6694471,Dubuque +Dubuque Diamond Railroad Crossing,"430 E 7th St, Dubuque, IA 52001, USA",Unknown,Unknown,42.501272,-90.65793719999999,Dubuque +StoryBook Hill Children’s Zoo,"12201 N Cascade Rd, Dubuque, IA 52003, USA",(563) 590-1019,http://www.storybookhillzoo.com/,42.4675536,-90.7287377,Dubuque +Heritage Pond / Heritage Trail,"Rupp Hollow Rd, Dubuque, IA 52001, USA",(563) 556-6745,https://www.iowadnr.gov/Fishing/Where-to-Fish/Lakes-Ponds-Reservoirs/LakeDetails?lakeCode=HEP31,42.55392739999999,-90.7069223,Dubuque +Fenelon Place Elevator,"491 W 4th St, Dubuque, IA 52001, USA",(563) 582-6496,http://www.fenelonplaceelevator.com/,42.4967771,-90.66869469999999,Dubuque +Mathias Ham Historic Site,"2241 Lincoln Ave, Dubuque, IA 52001, USA",(563) 557-9545,http://rivermuseum.com/hamsite,42.5313476,-90.65069659999999,Dubuque +Stone Cliff Winery,"600 Star Brewery Drive, Dubuque, IA 52001, USA",(563) 583-6100,http://www.stonecliffwinery.com/,42.4994444,-90.6538889,Dubuque +Union Park,"10554 US-52, Dubuque, IA 52001, USA",(563) 589-4263,http://www.cityofdubuque.org/,42.53375560000001,-90.71105,Dubuque +Diamond Jo Casino Dubuque,"301 Bell St, Dubuque, IA 52001, USA",(563) 690-4800,https://diamondjodubuque.boydgaming.com/,42.49747079999999,-90.6590957,Dubuque +Dubuque Town Clock,"680 Main St, Dubuque, IA 52001, USA",Unknown,http://www.cityofdubuque.org/1596/Town-Clock,42.4999392,-90.666647,Dubuque +Gordon R Howard Museum,"115 N Lomita St, Burbank, CA 91506, USA",(818) 841-6333,http://www.burbankhistoricalsoc.org/,34.1725881,-118.3182448,Burbank +Warner Bros. Studio Tour Hollywood,"3400 Warner Blvd, Burbank, CA 91505, USA",(818) 977-8687,https://www.wbstudiotour.com/,34.151323,-118.3362579,Burbank +Warner Bros. Water Tower,"3517 Warner Blvd, Burbank, CA 91505, USA",Unknown,Unknown,34.1504742,-118.3386024,Burbank +Martial Arts History Museum,"2319 W Magnolia Blvd, Burbank, CA 91506, USA",(818) 478-1722,http://www.mamuseum.com/,34.1726069,-118.3335672,Burbank +The Mystic Museum,"3204 W Magnolia Blvd, Burbank, CA 91505, USA",(818) 433-7530,http://www.themysticmuseum.com/,34.1692556,-118.3420778,Burbank +Burbank Aviation Museum,"3898 Valhalla Dr, Burbank, CA 91505, USA",(818) 768-7881,https://www.facebook.com/BurbankAviationMuseum/,34.1902508,-118.3538638,Burbank +Batman: Hush Statue,"109 Palm Ave, Burbank, CA 91502, USA",Unknown,https://deadline.com/2020/11/burbank-adds-batman-hush-statue-in-amc-walkway-1234619964/,34.1815117,-118.3116009,Burbank +Stough Canyon Nature Center,"2300 E Walnut Ave, Burbank, CA 91504, USA",(818) 238-5440,http://www.burbankca.gov/naturecenter,34.21391299999999,-118.3069314,Burbank +Universal Plaza,"142 Baker St, Toluca Lake, CA 91602, USA",Unknown,http://universalstudioshollywood.com/,34.1384598,-118.3551248,Burbank +Portal of the Folded Wings Shrine to Aviation,"3898 Valhalla Dr, Burbank, CA 91505, USA",(818) 763-9121,https://www.hmdb.org/m.asp?m=150059,34.19027499999999,-118.3538221,Burbank +Burbank Christmas Tree,"6M4Q+39, Burbank, CA 91504, USA",Unknown,Unknown,34.2049723,-118.3115566,Burbank +Johnny Carson Park,"400 Bob Hope Dr, Burbank, CA 91505, USA",(818) 238-5300,https://www.burbankca.gov/web/parks-recreation/johnny-carson-park,34.1542843,-118.3299207,Burbank +Stough Canyon Park,"1335 Lockheed View Dr, Burbank, CA 91504, USA",(818) 238-5300,https://www.burbankca.gov/web/parks-recreation/stough-canyon-park,34.2053237,-118.3091273,Burbank +Abraham Lincoln Park,"300 N Buena Vista St, Burbank, CA 91505, USA",Unknown,https://www.burbankca.gov/web/parks-recreation/abraham-lincoln-park,34.164122,-118.3303272,Burbank +Super Silly Fun Land,"100 Universal City Plaza, Universal City, CA 91608, USA",Unknown,https://www.universalstudioshollywood.com/web/en/us/things-to-do/rides-and-attractions/super-silly-fun-land,34.13869049999999,-118.35644,Burbank +Brace Canyon Park,"2901 Haven Way, Burbank, CA 91504, USA",Unknown,https://www.burbankca.gov/web/parks-recreation/brace-canyon-park,34.2103539,-118.3306473,Burbank +Visit Burbank,"150 N 3rd St, Burbank, CA 91502, USA",(747) 477-1462,https://visitburbank.com/,34.1828198,-118.3079294,Burbank +Gunnison Pioneer Museum,"803 E Tomichi Ave, Gunnison, CO 81230, USA",(970) 641-4530,http://www.gunnisonpioneermuseum.com/,38.5439478,-106.9176763,Gunnison +I.O.O.F. Park,"124 E Virginia Ave, Gunnison, CO 81230, USA",(970) 641-8060,Unknown,38.5456696,-106.9265976,Gunnison +Frontier Homestead State Park Museum,"635 N Main St, Cedar City, UT 84721, USA",(435) 586-9290,http://frontierhomestead.org/,37.6886111,-113.0625,Cedar City +Park Discovery,"2077 W Royal Hunte Dr, Cedar City, UT 84720, USA",(435) 865-9223,http://www.cedarcity.org/index.aspx?NID=270,37.6579466,-113.0875758,Cedar City +Southern Utah Museum of Art,"Southern Utah Museum of Art, 13 S 300 W, Cedar City, UT 84720, USA",(435) 586-5432,https://www.suu.edu/suma/,37.677072,-113.0662961,Cedar City +Cedar City Lighthouse,"Cedar City, UT 84720, USA",Unknown,Unknown,37.6545551,-113.0838539,Cedar City +Self guided walking tour of cemetery,"635 N Main St, Cedar City, UT 84721, USA",Unknown,Unknown,37.6888484,-113.062501,Cedar City +Cedar Highlands water tank,"Cedar City, UT 84720, USA",Unknown,Unknown,37.6494585,-113.0672145,Cedar City +Thunderbird Garden Trailhead,"Cedar City, UT 84721, USA",Unknown,https://www.blm.gov/visit/search-details/255101/1,37.69015099999999,-113.0436358,Cedar City +I/G Winery & Tasting Room,"59 W Center St, Cedar City, UT 84720, USA",(435) 867-9463,http://igwinery.com/,37.67721350000001,-113.0627537,Cedar City +"Canyon Park, East Side","500 E Center St, Cedar City, UT 84720, USA",Unknown,http://www.cedarcity.org/index.aspx?NID=240,37.6769027,-113.0529816,Cedar City +Horseshoe Park,"675 N 150 W, Cedar City, UT 84721, USA",(435) 865-9223,http://www.cedarcity.org/251/Horseshoe-Park,37.6886718,-113.0593651,Cedar City +Mile Marker 3,"1400-1566 E Center St, Cedar City, UT 84720, USA",Unknown,Unknown,37.6678886,-113.0113754,Cedar City +Bicentennial Park,"660 W 1045 N, Cedar City, UT 84721, USA",(435) 865-9223,http://www.cedarcity.org/241/Bicentennial-Park,37.6949209,-113.0708983,Cedar City +Cedar City Visitor Center,"581 N Main St, Cedar City, UT 84721, USA",(435) 586-5124,http://www.visitcedarcity.com/,37.6872554,-113.0623438,Cedar City +Squaw Cavern,"785 S 400 E, Cedar City, UT 84720, USA",Unknown,Unknown,37.6633824,-113.0543194,Cedar City +John F. Kennedy Memorial,"480 Ocean St, Hyannis, MA 02601, USA",(508) 790-6345,Unknown,41.64186189999999,-70.2786505,Hyannis +John F. Kennedy Hyannis Museum,"397 Main St, Hyannis, MA 02601, USA",(508) 790-3077,http://jfkhyannismuseum.org/,41.65231649999999,-70.2841361,Hyannis +Cape Cod Maritime Museum,"135 South St, Hyannis, MA 02601, USA",(508) 775-1723,http://www.capecodmaritimemuseum.org/,41.651523,-70.27950899999999,Hyannis +Veterans Memorial Park,"480 Ocean St, Hyannis, MA 02601, USA",Unknown,Unknown,41.6402842,-70.2787802,Hyannis +Cape Codder Water Park,"1225 Iyannough Rd Suite #4, Hyannis, MA 02601, USA",(508) 568-2940,https://www.capecodderwaterpark.com/,41.6738914,-70.3104944,Hyannis +Kalmus Park Beach,"670 Ocean St, Hyannis, MA 02601, USA",Unknown,Unknown,41.63450160000001,-70.2785227,Hyannis +Walkway to the Sea,"Main St, Hyannis, MA 02601, USA",Unknown,Unknown,41.6520958,-70.2827184,Hyannis +Korean War Memorial,"480 Ocean St, Hyannis, MA 02601, USA",Unknown,Unknown,41.64137849999999,-70.2789105,Hyannis +Pleasant Street Park,"115 Pleasant St, Hyannis, MA 02601, USA",(508) 862-4678,http://www.town.barnstable.ma.us/,41.6515361,-70.2787732,Hyannis +Sea Captains Row-Crowell Homestead,"35 Pleasant St, Hyannis, MA 02601, USA",(508) 280-7290,http://www.seacaptainsrow.org/,41.65378649999999,-70.2792734,Hyannis +Veterans Park Beach,"480 Ocean St, Hyannis, MA 02601, USA",(508) 790-9885,http://www.town.barnstable.ma.us/,41.64108969999999,-70.2785463,Hyannis +Bismore Park,"Hyannis, MA 02601, USA",Unknown,Unknown,41.6489986,-70.27971029999999,Hyannis +Cape Cod Beer,"1336 Phinneys Ln, Hyannis, MA 02601, USA",(508) 790-4200,http://www.capecodbeer.com/,41.67814319999999,-70.310088,Hyannis +Whydah Pirate Museum,"674 MA-28, West Yarmouth, MA 02673, USA",(508) 534-9571,http://www.discoverpirates.com/,41.65011639999999,-70.2250032,Hyannis +Hyannisport Wharf,"Harbor Rd, Hyannis, MA 02601, USA",Unknown,Unknown,41.6348048,-70.2886649,Hyannis +Saint Francis Xavier Parish,"347 South St, Hyannis, MA 02601, USA",(508) 775-0818,https://www.sfxhyannis.org/,41.6494033,-70.28635419999999,Hyannis +Cape Cod Central Railroad,"252 Main St, Hyannis, MA 02601, USA",(888) 797-7245,https://www.capetrain.com/,41.654983,-70.2799083,Hyannis +Massachusetts Air & Space Museum,"438 Main St, Hyannis, MA 02601, USA",(508) 827-6300,http://massairspace.org/,41.6522464,-70.2854741,Hyannis +Iyanough Memorial,"367 Main St, Hyannis, MA 02601, USA",Unknown,Unknown,41.6528761,-70.2833636,Hyannis +Toad Hall Classic Car Museum,"288 Scudder Ave, Hyannis, MA 02601, USA",(508) 778-4934,http://www.toadhallcars.com/default.asp,41.6409802,-70.3036152,Hyannis +Pullen Park,"520 Ashe Ave, Raleigh, NC 27606, USA",(919) 996-6468,http://www.raleighnc.gov/parks/content/ParksRec/Articles/Parks/Pullen.html,35.7792205,-78.66287080000001,Raleigh +North Carolina Museum of Art,"2110 Blue Ridge Rd, Raleigh, NC 27607, USA",(919) 839-6262,https://ncartmuseum.org/,35.80988569999999,-78.7025784,Raleigh +Marbles Kids Museum,"201 E Hargett St, Raleigh, NC 27601, USA",(919) 834-4040,http://www.marbleskidsmuseum.org/,35.7783093,-78.6364427,Raleigh +North Carolina Museum of Natural Sciences,"11 W Jones St, Raleigh, NC 27601, USA",(919) 707-9800,http://naturalsciences.org/,35.7821824,-78.63929739999999,Raleigh +Frankie's of Raleigh,"11190 Fun Park Dr, Raleigh, NC 27617, USA",(919) 433-7888,http://www.frankies.com/,35.9193406,-78.79401899999999,Raleigh +Mordecai Historic Park,"1 Mimosa St, Raleigh, NC 27604, USA",(919) 996-4364,https://raleighnc.gov/places/mordecai-historic-park,35.792825,-78.63314439999999,Raleigh +Historic Yates Mill County Park,"4620 Lake Wheeler Rd, Raleigh, NC 27603, USA",(919) 856-6675,http://www.wakegov.com/parks/yatesmill/Pages/default.aspx,35.721626,-78.685693,Raleigh +Downtown Raleigh,"300 Fayetteville St, Raleigh, NC 27602, USA",(919) 996-3000,http://godowntownraleigh.com/,35.7766609,-78.6397866,Raleigh +Pope House Museum,"511 S Wilmington St, Raleigh, NC 27601, USA",(919) 996-2220,http://www.raleighnc.gov/parks/content/PRecRecreation/Articles/HRMPope.html,35.7736962,-78.63824319999999,Raleigh +JC Raulston Arboretum,"Ruby McSwain Education Center, 4415 Beryl Rd, Raleigh, NC 27606, USA",(919) 515-3132,https://jcra.ncsu.edu/,35.79455170000001,-78.6999457,Raleigh +Boylan Bridge,"234 S Boylan Ave, Raleigh, NC 27603, USA",Unknown,Unknown,35.7773857,-78.6496525,Raleigh +Adventure Landing,"3311 Capital Blvd, Raleigh, NC 27604, USA",(919) 872-1688,https://raleigh.adventurelanding.com/,35.8252599,-78.5878557,Raleigh +Joel Lane Museum House,"160 S St Mary's St, Raleigh, NC 27603, USA",(919) 833-3431,http://www.joellane.org/,35.7790484,-78.650764,Raleigh +The Trolley Lot,"424 S McDowell St, Raleigh, NC 27601, USA",Unknown,Unknown,35.7747675,-78.6422169,Raleigh +City of Raleigh Museum,"220 Fayetteville St, Raleigh, NC 27601, USA",(919) 996-2220,https://www.cityofraleighmuseum.org/,35.7776501,-78.6394246,Raleigh +William B. Umstead State Park,"8801 Glenwood Ave, Raleigh, NC 27617, USA",(919) 571-4170,http://www.ncparks.gov/william-b-umstead-state-park,35.8894623,-78.7518462,Raleigh +Historic Oak View County Park,"4028 Carya Dr, Raleigh, NC 27610, USA",(919) 250-1013,https://www.wakegov.com/departments-government/parks-recreation-open-space/all-parks-trails/historic-oak-view-county-park,35.7700909,-78.57035090000001,Raleigh +Shelley Lake Park,"1400 W Millbrook Rd, Raleigh, NC 27612, USA",(919) 996-2329,http://www.raleighnc.gov/parks/content/ParksRec/Articles/Parks/ShelleyLake.html,35.8588838,-78.6659129,Raleigh +North Carolina State Capitol,"1 E Edenton St, Raleigh, NC 27601, USA",(984) 867-8340,https://historicsites.nc.gov/all-sites/n-c-state-capitol,35.7803584,-78.63912909999999,Raleigh +WRAL Azalea Garden,"2619 Western Blvd, Raleigh, NC 27606, USA",(919) 821-8773,http://www.wral-gardens.com/,35.7785789,-78.6738594,Raleigh +BeWILDerwood Norfolk,"Horning Rd, Hoveton, Norwich NR12 8JW, UK",01692 633033,https://bewilderwood.co.uk/,52.7087753,1.4502013,Norfolk +National Trust - Blickling Hall,"Blickling, Norwich NR11 6NF, UK",01263 738030,http://www.nationaltrust.org.uk/blickling-estate/,52.811731,1.231647,Norfolk +North Norfolk Railway,"North Norfolk Railway PLC, Station, Station Approach, Sheringham NR26 8RA, UK",01263 820800,https://www.nnrailway.co.uk/,52.9418078,1.2080492,Norfolk +Pensthorpe,"Pensthorpe Rd, Fakenham NR21 0LN, UK",01328 851465,http://www.pensthorpe.com/,52.8241554,0.8894837000000001,Norfolk +Oxburgh Estate,"Oxborough, King's Lynn PE33 9PS, UK",01366 328258,http://www.nationaltrust.org.uk/oxburgh-hall,52.5810275,0.5703437999999998,Norfolk +Norwich Castle,"Castle St, Norwich NR1 3JU, UK",01603 493625,http://www.museums.norfolk.gov.uk/Visit_Us/Norwich_Castle/index.htm,52.62872770000001,1.2961591,Norfolk +Holkham Hall,"Holkham Rd, Wells-next-the-Sea NR23 1AB, UK",01328 713111,https://www.holkham.co.uk/,52.95014080000001,0.8031124000000001,Norfolk +"National Trust - Felbrigg Hall, Gardens & Estate","Felbrigg, Norwich NR11 8PR, UK",01263 837444,http://www.nationaltrust.org.uk/felbrigg-hall/,52.9080267,1.2609628,Norfolk +SEA LIFE Hunstanton,"Seagate Rd, Hunstanton PE36 5BH, UK",01485 533576,http://www.visitsealife.com/Hunstanton,52.9349242,0.4833485999999999,Norfolk +East Ruston Old Vicarage Garden,"East Ruston Old Vicarage, Vicarage Rd, Norwich NR12 9HN, UK",01692 650432,https://eastrustonoldvicarage.co.uk/,52.8058785,1.5117316,Norfolk +ROARR!,"Lenwade, Norwich NR9 5JE, UK",01603 876310,https://roarr.co.uk/,52.7128475,1.1201404,Norfolk +National Trust - Blakeney National Nature Reserve,"Morston Rd, Holt NR25 7BH, UK",01263 740241,http://www.nationaltrust.org.uk/blakeney/,52.95972029999999,1.0116269,Norfolk +Merrivale Model Village,"Marine Parade, Great Yarmouth NR30 3JG, UK",01493 842097,http://www.merrivalemodelvillage.co.uk/,52.59859100000001,1.7362237,Norfolk +Great Yarmouth Pleasure Beach,"The Pleasure Beach, S Beach Parade, Great Yarmouth NR30 3EH, UK",01493 844585,http://www.pleasure-beach.co.uk/,52.5937258,1.736034,Norfolk +Melsop Farm Park,"Ellingham Rd, Norwich NR9 4NT, UK",01953 851943,http://www.melsopfarmpark.co.uk/,52.56388310000001,0.9345699000000001,Norfolk +Norfolk + Suffolk Tourist Attractions,"Fairhaven Woodland and Water Garden, School Rd, South Walsham, Norwich NR13 6DZ, UK",Unknown,http://norfolkandsuffolkattractions.co.uk/,52.665634,1.501852,Norfolk +Sandringham Estate,"Sandringham PE35 6EN, UK",01485 544112,https://sandringhamestate.co.uk/,52.8296856,0.5124889000000001,Norfolk +Happisburgh Lighthouse,"Lighthouse Ln, Happisburgh, Norwich NR12 0PY, UK",Unknown,http://www.happisburgh.org.uk/lighthouse,52.8204113,1.5369095,Norfolk +Norwich Cathedral,"65 The Cl, Norwich NR1 4DH, UK",01603 218300,https://www.cathedral.org.uk/,52.6318974,1.3011826,Norfolk +Houghton Hall & Gardens Norfolk,"RMH4+F6, Bircham Rd, King's Lynn PE31 6TY, UK",01485 528569,http://www.houghtonhall.com/,52.826846,0.6578158000000001,Norfolk +New Orleans City Park,"New Orleans, LA, USA",(504) 482-4888,https://neworleanscitypark.org/,30.00339929999999,-90.0924294,New Orleans +Audubon Aquarium,"1 Canal St, New Orleans, LA 70130, USA",(504) 565-3033,https://audubonnatureinstitute.org/aquarium,29.9504543,-90.06292119999999,New Orleans +Mardi Gras World,"1380 Port of New Orleans Pl, New Orleans, LA 70130, USA",(504) 361-7821,http://www.mardigrasworld.com/,29.9350317,-90.0614772,New Orleans +New Orleans Museum of Art,"1 Collins Diboll Cir, New Orleans, LA 70124, USA",(504) 658-4100,https://noma.org/,29.9864722,-90.09344999999999,New Orleans +Jackson Square,"New Orleans, LA 70116, USA",(504) 658-3200,https://nola.gov/parks-and-parkways/parks-squares/jackson-square/,29.9574024,-90.0629495,New Orleans +The National WWII Museum,"945 Magazine St, New Orleans, LA 70130, USA",(504) 528-1944,https://www.nationalww2museum.org/,29.9430711,-90.07053169999999,New Orleans +Audubon Zoo,"6500 Magazine St, New Orleans, LA 70118, USA",(504) 861-2537,https://audubonnatureinstitute.org/,29.9237334,-90.1314068,New Orleans +The Cabildo,"701 Chartres St, New Orleans, LA 70130, USA",(504) 568-8975,https://louisianastatemuseum.org/museum/cabildo,29.95750430000001,-90.06390379999999,New Orleans +Visit New Orleans,"400 Toulouse St, New Orleans, LA 70130, USA",(504) 569-1401,http://www.visitneworleans.com/,29.9552704,-90.0627252,New Orleans +St. Louis Cathedral,"615 Pere Antoine Alley, New Orleans, LA 70116, USA",(504) 525-9585,http://www.stlouiscathedral.org/,29.9579735,-90.06372809999999,New Orleans +JAMNOLA,"2832 Royal St, New Orleans, LA 70117, USA",(504) 233-9152,http://www.jamnola.com/,29.9639431,-90.0490762,New Orleans +Vue Orleans,"2 Canal St, New Orleans, LA 70130, USA",(504) 285-3600,https://vueorleans.com/,29.9489518,-90.063531,New Orleans +Storyland,"5 Victory Ave, New Orleans, LA 70124, USA",(504) 483-9402,http://neworleanscitypark.com/in-the-park/Storyland,29.9869849,-90.0980445,New Orleans +The Historic New Orleans Collection,"520 Royal St, New Orleans, LA 70130, USA",(504) 523-4662,https://www.hnoc.org/,29.9568565,-90.0656754,New Orleans +The Singing Oak,"New Orleans, LA 70124, USA",(707) 689-2985,Unknown,29.9858767,-90.09021539999999,New Orleans +The Presbytère,"751 Chartres St, New Orleans, LA 70116, USA",(504) 568-6968,https://louisianastatemuseum.org/museum/presbytere,29.9581273,-90.0633038,New Orleans +New Orleans Historic Voodoo Museum,"724 Dumaine St, New Orleans, LA 70116, USA",(504) 680-0128,http://voodoomuseum.com/,29.95990399999999,-90.0638513,New Orleans +Longue Vue House & Gardens,"7 Bamboo Rd, New Orleans, LA 70124, USA",(504) 488-5488,http://www.longuevue.com/,29.977113,-90.1227756,New Orleans +Steamboat NATCHEZ - Official Site,"400 Toulouse St, New Orleans, LA 70130, USA",(504) 569-1401,https://www.steamboatnatchez.com/,29.9552704,-90.0627252,New Orleans +French Quarter Visitor Center,"419 Decatur St, New Orleans, LA 70130, USA",(504) 589-3882,https://www.nps.gov/jela/planyourvisit/french-quarter-site.htm,29.9548418,-90.0647849,New Orleans +Medford Railroad Park,"799 Berrydale Ave, Medford, OR 97501, USA",(541) 613-1638,https://www.facebook.com/Medfordrailroadpark/,42.3500314,-122.8809836,Medford +The Children's Museum of Southern Oregon,"413 W Main St, Medford, OR 97501, USA",(541) 772-9922,http://www.tcmso.org/,42.3234617,-122.8767569,Medford +Oregon Hills Park,"6001 E McAndrews Rd, Medford, OR 97504, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Oregon-Hills-Park,42.3379139,-122.8066255,Medford +Crater Lake National Park Trust,"1109 Court St, Medford, OR 97501, USA",(541) 770-1179,http://craterlaketrust.org/,42.33866389999999,-122.8806248,Medford +Prescott Park,"3030 Roxy Ann Rd, Medford, OR 97504, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Prescott-Park,42.354921,-122.7802051,Medford +Fichtner-Mainwaring Park,"334 Holmes Ave, Medford, OR 97501, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Fichtner-Mainwaring-Park,42.3114537,-122.8697892,Medford +Crater Rock Museum,"2002 Scenic Ave, Central Point, OR 97502, USA",(541) 664-6081,http://craterrock.com/,42.38930000000001,-122.9247103,Medford +Hawthorne Park Playground,"501 E Main St, Medford, OR 97504, USA",(541) 774-2400,Unknown,42.33088079999999,-122.8679696,Medford +Ruhl Park,"235 S Modoc Ave & Hillcrest Road, Medford, OR 97504, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Ruhl-Park,42.3294528,-122.8410756,Medford +Liberty Park,"617 N Bartlett St, Medford, OR 97501, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Liberty-Park,42.332966,-122.876247,Medford +Lewis Park,"130 Lewis Ave, Medford, OR 97501, USA",(541) 774-2400,https://www.medfordoregon.gov/Government/Departments/Parks-Recreation-and-Facilities/Lewis-Park,42.3217515,-122.8938298,Medford +J Harvey Turnure Memorial Park,"26 Lake St, White Plains, NY 10603, USA",(914) 422-1336,http://www.cityofwhiteplains.com/Facilities/Facility/Details/Turnure-Park-36,41.0362827,-73.7617601,White Plains +Saxon Woods Park,"1800 Mamaroneck Ave, White Plains, NY 10605, USA",(914) 995-4480,http://parks.westchestergov.com/saxon-woods-park,40.9866807,-73.7451978,White Plains +Battle of White Plains Park,"76 Battle Ave, White Plains, NY 10606, USA",Unknown,http://www.ci.white-plains.ny.us/index.aspx?nid=103,41.0300007,-73.7798287,White Plains +White Plains Park,"White Plains, NY 10604, USA",(914) 494-1632,Unknown,41.03398620000001,-73.7629097,White Plains +African American History Mural,"61 Manhattan Ave, White Plains, NY 10607, USA",Unknown,Unknown,41.0458368,-73.7970117,White Plains +Percy Grainger House,"7 Cromwell Pl, White Plains, NY 10601, USA",(914) 281-1610,http://percygraingeramerica.org/,41.02730399999999,-73.7671042,White Plains +Druss Park,"S Lexington Ave & Prospect St, White Plains, NY 10601, USA",(914) 422-1336,Unknown,41.0205271,-73.76933629999999,White Plains +Battle Hill Park,"115 Battle Ave, White Plains, NY 10606, USA",(914) 422-1336,http://www.cityofwhiteplains.com/,41.0320629,-73.7829883,White Plains +The Puzzle Parlour,"131 Court St, White Plains, NY 10601, USA",(914) 368-8222,http://www.thepuzzleparlour.com/white-plains/,41.0290615,-73.7661578,White Plains +Oklahoma City National Memorial & Museum,"620 N Harvey Ave, Oklahoma City, OK 73102, USA",(405) 235-3313,http://memorialmuseum.com/,35.4731496,-97.5170593,Oklahoma City +National Cowboy & Western Heritage Museum,"1700 NE 63rd St, Oklahoma City, OK 73111, USA",(405) 478-2250,http://nationalcowboymuseum.org/,35.5356997,-97.4831286,Oklahoma City +Oklahoma City Zoo,"2000 Remington Pl, Oklahoma City, OK 73111, USA",(405) 424-3344,https://www.okczoo.org/,35.5238895,-97.4724932,Oklahoma City +Frontier City,"11501 N I- 35 Service Rd, Oklahoma City, OK 73131, USA",(405) 478-2140,https://www.sixflags.com/frontiercity?utm_source=googlebusinessprofile&utm_medium=organic&utm_campaign=Google+Business+Profile,35.5856674,-97.4394665,Oklahoma City +Oklahoma City Museum of Art,"415 Couch Dr, Oklahoma City, OK 73102, USA",(405) 236-3100,http://www.okcmoa.com/,35.4695638,-97.5205029,Oklahoma City +Science Museum Oklahoma,"2020 Remington Pl, Oklahoma City, OK 73111, USA",(405) 602-6664,http://www.sciencemuseumok.org/,35.5237553,-97.4754913,Oklahoma City +Myriad Botanical Gardens,"301 W Reno Ave, Oklahoma City, OK 73102, USA",(405) 445-7080,http://www.myriadgardens.org/,35.46533110000001,-97.51790729999999,Oklahoma City +Museum of Osteology,"10301 S Sunnylane Rd, Oklahoma City, OK 73160, USA",(405) 814-0006,http://www.skeletonmuseum.com/,35.36483489999999,-97.4418414,Oklahoma City +Bricktown Water Taxi,"111 S Mickey Mantle Dr, Oklahoma City, OK 73104, USA",(405) 234-8294,http://www.bricktownwatertaxi.com/,35.4652226,-97.5092937,Oklahoma City +Hurricane Harbor Oklahoma City,"3908 W Reno Ave, Oklahoma City, OK 73107, USA",(405) 943-9687,https://www.sixflags.com/hurricaneharborokc?utm_source=googlebusinessprofile&utm_medium=organic&utm_campaign=Google+Business+Profile,35.46222799999999,-97.58841199999999,Oklahoma City +Centennial Land Run Monument,"200 Centennial Ave, Oklahoma City, OK 73102, USA",(405) 297-8912,http://www.visitokc.com/listings/oklahoma-land-run-monument/467/,35.4611333,-97.5051775,Oklahoma City +Oklahoma City's Adventure District,"1 Remington Pl, Oklahoma City, OK 73111, USA",(405) 424-1000,http://www.okcadventure.com/,35.52691389999999,-97.47224899999999,Oklahoma City +Oklahoma History Center,"800 Nazih Zuhdi Dr, Oklahoma City, OK 73105, USA",(405) 522-0765,http://www.okhistory.org/historycenter,35.4940917,-97.4997465,Oklahoma City +Sanctuary Asia,"2000 Remington Pl, Oklahoma City, OK 73111, USA",Unknown,https://www.okczoo.org/directions--parking,35.5197346,-97.47246620000001,Oklahoma City +Lighthouse,"Lake Hefner Pkwy, Oklahoma City, OK 73120, USA",Unknown,Unknown,35.565183,-97.578676,Oklahoma City +OKC Underground,"300 N Broadway Ave, Oklahoma City, OK 73102, USA",(405) 235-3500,http://downtownokc.com/underground/,35.4701517,-97.5141986,Oklahoma City +Wheeler Ferris Wheel at Wheeler District,"1701 S Western Ave, Oklahoma City, OK 73109, USA",(405) 655-8455,http://www.wheelerdistrict.com/visit,35.45173479999999,-97.53198189999999,Oklahoma City +Stockyards City Main Street,"2401 Exchange Ave Suite D, Oklahoma City, OK 73108, USA",(405) 235-7267,http://www.stockyardscity.org/,35.45323019999999,-97.5566911,Oklahoma City +Bricktown River Walk Park,"400 E Reno Ave, Oklahoma City, OK 73104, USA",Unknown,Unknown,35.4620033,-97.5054353,Oklahoma City +Martin Nature Park,"5000 W Memorial Rd, Oklahoma City, OK 73142, USA",(405) 297-1429,https://www.okc.gov/departments/parks-recreation/martin-park-nature-center,35.6090059,-97.6090052,Oklahoma City +Navy Pier,"600 E Grand Ave, Chicago, IL 60611, USA",(312) 595-7437,https://navypier.org/,41.8918633,-87.6050944,Chicago +Riverwalk,"E Wacker Dr, Chicago, IL 60601, USA",Unknown,https://www.chicago.gov/city/en/sites/chicagoriverwalk/home.html,41.88848069999999,-87.6233111,Chicago +Skydeck Chicago,"233 S Wacker Dr, Chicago, IL 60606, USA",(312) 875-9447,https://theskydeck.com/?utm_source=google&utm_medium=organic&utm_campaign=googlemybusiness,41.8788761,-87.635915,Chicago +360 CHICAGO,"875 N Michigan Ave 94th floor, Chicago, IL 60611, USA",(888) 875-8439,https://360chicago.com/?utm_source=GMBlisting&utm_medium=organic,41.8990104,-87.6232416,Chicago +Millennium Park,"201 E Randolph St, Chicago, IL 60602, USA",(312) 742-1168,https://www.chicago.gov/city/en/depts/dca/supp_info/millennium_park.html,41.8825524,-87.62255139999999,Chicago +Shedd Aquarium,"1200 S DuSable Lk Shr Dr, Chicago, IL 60605, USA",(312) 939-2438,https://www.sheddaquarium.org/,41.8675726,-87.614038,Chicago +Cloud Gate,"201 E Randolph St, Chicago, IL 60602, USA",Unknown,https://www.cityofchicago.org/city/en/depts/dca/supp_info/chicago_s_publicartcloudgateinmillenniumpark.html,41.8826572,-87.6233039,Chicago +Grant Park,"Chicago, IL, USA",(312) 742-3918,https://www.chicagoparkdistrict.com/parks-facilities/grant-park/,41.8739324,-87.61988079999999,Chicago +Buckingham Fountain,"301 S Columbus Dr, Chicago, IL 60605, USA",(312) 742-7529,http://www.chicagoparkdistrict.com/,41.87579439999999,-87.6189483,Chicago +Lincoln Park Zoo,"Chicago, IL 60614, USA",(312) 742-2000,https://www.lpzoo.org/,41.921703,-87.6336403,Chicago +Field Museum,"1400 S Lake Shore Dr, Chicago, IL 60605, USA",(312) 922-9410,https://www.fieldmuseum.org/,41.86626100000001,-87.6169805,Chicago +Willis Tower,"233 S Wacker Dr, Chicago, IL 60606, USA",(312) 875-0066,https://www.willistower.com/,41.8788764,-87.6359149,Chicago +The Art Institute of Chicago,"111 S Michigan Ave, Chicago, IL 60603, USA",(312) 443-3600,http://www.artic.edu/,41.8795845,-87.62371329999999,Chicago +Chicago Cultural Center,"78 E Washington St, Chicago, IL 60602, USA",(312) 744-5000,http://www.chicagoculturalcenter.org/,41.8837536,-87.6249515,Chicago +Chicago History Museum,"1601 N Clark St, Chicago, IL 60614, USA",(312) 642-4600,https://home.chicagohistory.org/,41.9117293,-87.63167120000001,Chicago +Wrigley Field,"1060 W Addison St, Chicago, IL 60613, USA",(773) 404-2827,http://chicago.cubs.mlb.com/chc/ballpark/,41.9484384,-87.6553327,Chicago +Chicago Children's Museum,"700 E Grand Ave, Chicago, IL 60611, USA",(312) 527-1000,http://www.chicagochildrensmuseum.org/,41.891408,-87.60914400000001,Chicago +MUSEUM OF ICE CREAM,"435 N Michigan Ave Suite G, Chicago, IL 60611, USA",Unknown,http://www.museumoficecream.com/,41.8902605,-87.6231494,Chicago +The Richard H. Driehaus Museum,"40 E Erie St, Chicago, IL 60611, USA",(312) 482-8933,http://www.driehausmuseum.org/,41.8942872,-87.626539,Chicago +Garfield Park Conservatory,"300 N Central Park Ave, Chicago, IL 60624, USA",(773) 638-1766,https://garfieldconservatory.org/,41.8862729,-87.7172554,Chicago +El Paso Zoo and Botanical Gardens,"4001 E Paisano Dr, El Paso, TX 79905, USA",(915) 212-0966,http://www.elpasozoo.org/,31.7690489,-106.4448897,El Paso +El Paso Museum of Art,"1 Arts Festival Plaza, El Paso, TX 79901, USA",(915) 212-0300,https://epma.art/,31.75858760000001,-106.4902692,El Paso +National Border Patrol Museum,"4315 Woodrow Bean Transmountain Dr, El Paso, TX 79924, USA",(915) 759-6060,http://www.borderpatrolmuseum.com/,31.9030697,-106.4486364,El Paso +San Jacinto Plaza,"114 W Mills Ave, El Paso, TX 79901, USA",(915) 534-0600,https://new.elpasotexas.gov/parks-and-recreation/aquatics/spray-parks/,31.7596192,-106.4885225,El Paso +Casa de Azucar,"4301 Leavell Ave, El Paso, TX 79904, USA",Unknown,https://www.atlasobscura.com/places/casa-de-azucar,31.83339590000001,-106.4404549,El Paso +El Paso Holocaust Museum & Study Center,"715 N Oregon St, El Paso, TX 79902, USA",(915) 351-0048,http://www.elpasoholocaustmuseum.org/,31.762324,-106.491945,El Paso +Franklin Mountains State Park,"Tom Mays Park Access Rd, El Paso, TX 79911, USA",(915) 444-9100,http://www.tpwd.state.tx.us/state-parks/parks/find-a-park/franklin-mountains-state-park,31.91170269999999,-106.5173673,El Paso +El Paso Museum of Archaeology,"4301 Woodrow Bean Transmountain Dr, El Paso, TX 79924, USA",(915) 755-4332,http://epmarch.org/,31.9036702,-106.4490514,El Paso +Wigwam Museum,"110 E San Antonio Ave, El Paso, TX 79901, USA",(915) 274-9531,http://www.ghosts915.org/,31.7578173,-106.4883395,El Paso +Old Fort Bliss Replica Cultural Center,"5054 Pershing Rd, El Paso, TX 79925, USA",(915) 588-8482,https://bliss.armymwr.com/programs/old-fort-bliss-replica-cultural-center,31.8000486,-106.4266952,El Paso +Magoffin Home State Historic Site,"1120 Magoffin Ave, El Paso, TX 79901, USA",(915) 533-5147,http://www.visitmagoffinhome.com/,31.7624871,-106.4769802,El Paso +House Of Sugar,"4301 Leavell Ave, El Paso, TX 79904, USA",Unknown,Unknown,31.83341019999999,-106.4404588,El Paso +Ascarate Park,"6900 Delta Dr, El Paso, TX 79905, USA",(915) 771-2380,https://www.epcountyparks.com/parks/,31.7522854,-106.4023314,El Paso +Tom Lea Upper Park,"900 Rim Rd, El Paso, TX 79902, USA",(915) 212-0092,https://www.elpasotexas.gov/parks-and-recreation,31.77492709999999,-106.4913005,El Paso +Downtown El Paso,"201 N Oregon St, El Paso, TX 79901, USA",(915) 400-2294,https://downtownelpaso.com/,31.7589538,-106.4886907,El Paso +Rio Bosque Park,"10716 Socorro Rd, El Paso, TX 79927, USA",(915) 747-8663,https://www.utep.edu/cerm/rio-bosque/rio-bosque-home.html,31.6409649,-106.310328,El Paso +Murchison Rogers Park,"1600 Scenic Dr, El Paso, TX 79902, USA",(915) 803-8914,https://www.elpasotexas.gov/parks-and-recreation,31.782629,-106.479791,El Paso +Keystone Heritage Park and the El Paso Desert Botanical Garden,"4200 Doniphan Dr, El Paso, TX 79922, USA",(915) 490-8571,http://www.keystoneheritagepark.com/,31.820571,-106.563529,El Paso +Chamizal National Memorial,"800 S San Marcial St, El Paso, TX 79905, USA",(915) 532-7273,https://www.nps.gov/cham/index.htm,31.76724089999999,-106.4543374,El Paso +Centennial Museum and Chihuahuan Desert Gardens,"500 W University Ave, El Paso, TX 79968, USA",(915) 747-5565,http://museum.utep.edu/,31.7692881,-106.5059544,El Paso +Midway Village Museum,"6799 Guilford Rd, Rockford, IL 61107, USA",(815) 397-9112,https://www.midwayvillage.com/,42.2804989,-88.98463989999999,Rockford +Burpee Museum of Natural History,"737 N Main St, Rockford, IL 61103, USA",(815) 965-3433,http://www.burpee.org/,42.2773242,-89.08814249999999,Rockford +Discovery Center Museum,"711 N Main St, Rockford, IL 61103, USA",(815) 963-6769,http://www.discoverycentermuseum.org/,42.2771046,-89.0894304,Rockford +Tinker Swiss Cottage Museum and Gardens,"411 Kent St, Rockford, IL 61102, USA",(815) 964-2424,http://www.tinkercottage.com/,42.26411,-89.102796,Rockford +Anderson Japanese Gardens,"318 Spring Creek Rd, Rockford, IL 61107, USA",(815) 229-9390,http://andersongardens.org/,42.2900539,-89.05779539999999,Rockford +Nicholas Conservatory & Gardens,"1354 N 2nd St, Rockford, IL 61107, USA",(815) 987-8858,http://www.nicholasconservatory.com/,42.28229330000001,-89.0707044,Rockford +Klehm Arboretum & Botanic Garden,"2715 S Main St, Rockford, IL 61102, USA",(815) 965-8146,http://www.klehm.org/,42.2444523,-89.11254020000001,Rockford +Rockford Art Museum,"711 N Main St, Rockford, IL 61103, USA",(815) 968-2787,http://rockfordartmuseum.org/,42.2769287,-89.0889917,Rockford +Erlander Home Museum,"404 S 3rd St, Rockford, IL 61104, USA",(815) 963-5559,http://www.swedishhistorical.org/,42.26409779999999,-89.08869279999999,Rockford +Davis Park at Founders Landing,"320 S Wyman St, Rockford, IL 61101, USA",(815) 968-5600,https://www.gorockford.com/listings/davis-park-at-founders-landing/275/,42.26825019999999,-89.0953792,Rockford +Ethnic Heritage Museum,"1129 S Main St, Rockford, IL 61101, USA",(815) 962-7402,https://www.ethnicheritagemuseum.org/,42.2611002,-89.100915,Rockford +Sinnissippi Park,"1401 N 2nd St, Rockford, IL 61107, USA",(815) 987-8858,http://rockfordparkdistrict.org/ncg,42.2827292,-89.0641156,Rockford +Riverfront Museum Park,"Ste 3, 711 N Main St, Rockford, IL 61103, USA",(815) 962-0105,Unknown,42.2768431,-89.0888593,Rockford +La Paloma Gardens,"3622 Brookview Rd, Rockford, IL 61107, USA",(815) 399-0324,http://www.lapalomagardens.com/,42.2936707,-89.0346172,Rockford +Frank Lloyd Wright's Laurent House,"4646 Spring Brook Rd, Rockford, IL 61114, USA",(815) 877-2952,http://www.laurenthouse.com/,42.2998334,-89.0243617,Rockford +Sinnissippi Gardens,"1354 N 2nd St, Rockford, IL 61107, USA",(815) 987-8858,https://nicholasconservatory.com/,42.2840305,-89.0679007,Rockford +Hurricane Harbor Rockford,"7820 Cherryvale N Blvd, Cherry Valley, IL 61016, USA",(847) 249-4636,https://www.sixflags.com/hurricaneharborrockford/?utm_source=googlebusinessprofile&utm_medium=organic&utm_campaign=Google+Business+Profile,42.246158,-88.96275,Rockford +Searls Park,"4950 Safford Rd, Rockford, IL 61101, USA",(815) 987-8800,http://rockfordparkdistrict.org/,42.3006848,-89.1241445,Rockford +Ingersoll Centennial Park,"315 S 1st St, Rockford, IL 61104, USA",(815) 987-8800,http://rockfordparkdistrict.org/,42.2662975,-89.09143920000001,Rockford +Rockford Park District,"401 S Main St, Rockford, IL 61101, USA",(815) 987-8800,https://rockfordparkdistrict.org/,42.268422,-89.0972335,Rockford +El Parterre,"CRJW+R7R, C. José de Diego, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.4321045,-67.1543509,Aguadilla +Mirador de Aguadilla,"# km. 128.4, Cll 2, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.42155,-67.15245,Aguadilla +Casas de Colores Aguadilla - Pintalto,"CRJW+XH2, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.4323759,-67.15359670000001,Aguadilla +Rompeolas Beach,"15 PR-111, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.4359708,-67.15639999999999,Aguadilla +Parqué Colón,"CR7R+R3P, Aguadilla, Aguada 00602, Puerto Rico",Unknown,Unknown,18.4145875,-67.1597969,Aguadilla +Museo de Arte de Aguadilla y del Caribe,"55 C. Ramón E. Betances, Aguadilla, 00603, Puerto Rico",(787) 649-0000,http://www.maacaguadilla.com/,18.4291984,-67.154822,Aguadilla +Silla Aguadilla,"Tribunal de Primera Instancia Aguadilla, 70 Calle Concepción, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.424973,-67.1550389,Aguadilla +Letras Aguadilla,"CRHV+VQ7, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.4296099,-67.15575199999999,Aguadilla +Muelle de Azúcar,"CRWR+55X, Aguadilla, 00603, Puerto Rico",(787) 962-3657,https://www.facebook.com/ciudaddeencantos,18.4454919,-67.159515,Aguadilla +Fuerte De La Concepción,"CRPV+7P7, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.4356527,-67.1557043,Aguadilla +Bandera de los Reyes Magos,"CRHW+8JF, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.4283023,-67.1534398,Aguadilla +Mirador al oceano,"CRRV+J6, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.4415111,-67.1569813,Aguadilla +La Bandera de Villa Lobos,"108 Calle Manuel Corchado, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.4283134,-67.1534673,Aguadilla +Mural Llegada de España,"CR3W+3MQ, PR-111, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.4027165,-67.1532726,Aguadilla +The Nest by Crash Boat Experiences,"Crash Boat, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.4595981,-67.1643853,Aguadilla +Monumento en Homenaje a los Indios Taínos - Aguadilla,"CR4W+83F, PR-115, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.4058209,-67.1548131,Aguadilla +Faro de Punta Borinquen,"FVW2+VF3, Borinquen Ave, Borinquen, Aguadilla 00603, Puerto Rico",(954) 832-6493,http://borinquenbeacon.com/,18.4971277,-67.1488277,Aguadilla +Plaza Rafael Hernández Marín,"CRHW+X86, Aguadilla, 00603, Puerto Rico",Unknown,https://www.facebook.com/ciudaddeencantos,18.4299065,-67.1542407,Aguadilla +Tabletop Beach,"14, 6 Cliff Rd, Aguadilla, 00603, Puerto Rico",Unknown,Unknown,18.5077465,-67.1378766,Aguadilla +Hidden Park,"Behind C1*, C. Bilbao, Aguadilla, 00603, Puerto Rico",(939) 401-9476,Unknown,18.4540619,-67.1559963,Aguadilla +Omaha's Henry Doorly Zoo and Aquarium,"3701 S 10th St, Omaha, NE 68107, USA",(402) 733-8400,https://www.omahazoo.com/,41.2258648,-95.9271093,Omaha +The Durham Museum,"801 S 10th St, Omaha, NE 68108, USA",(402) 444-5071,https://durhammuseum.org/,41.251469,-95.9289649,Omaha +Omaha Children's Museum,"500 S 20th St, Omaha, NE 68102, USA",(402) 342-6164,https://www.ocm.org/,41.2551251,-95.9429158,Omaha +Lauritzen Gardens/Kenefick Park,"100 Bancroft St, Omaha, NE 68108, USA",(402) 346-4002,https://www.lauritzengardens.org/,41.23416870000001,-95.9165125,Omaha +Desert Dome,"3701 S 10th St, Omaha, NE 68108, USA",(402) 733-8401,http://omahazoo.com/exhibits/desert-dome,41.2256687,-95.9277329,Omaha +Heartland of America Park at The RiverFront,"800 Douglas St, Omaha, NE 68102, USA",(402) 599-6565,http://www.theriverfrontomaha.com/,41.25668099999999,-95.924842,Omaha +Bob Kerrey Pedestrian Bridge.,"705 Riverfront Dr, Omaha, NE 68102, USA",(402) 444-5900,http://omaha.net/places/bob-kerrey-pedestrian-bridge,41.26563309999999,-95.9223128,Omaha +Fun-Plex Waterpark & Rides,"7003 Q St, Omaha, NE 68117, USA",(402) 331-8436,http://fun-plex.com/,41.203969,-96.019854,Omaha +Stingray Beach,"3701 S 10th St, Omaha, NE 68107, USA",(402) 733-8401,https://www.omahazoo.com/stingray-beach,41.2266122,-95.9239832,Omaha +OPPD Arboretum,"Omaha, NE 68164, USA",(402) 536-4131,http://www.oppd.com/residential/trees-power-lines/arboretum/,41.2786497,-96.0783359,Omaha +Joslyn Castle & Gardens,"3902 Davenport St, Omaha, NE 68131, USA",(402) 595-2199,http://joslyncastle.com/tours,41.2616075,-95.9718884,Omaha +Lewis & Clark Landing at The RiverFront,"345 Riverfront Dr, Omaha, NE 68102, USA",(402) 599-6565,http://www.theriverfrontomaha.com/,41.2617743,-95.9244421,Omaha +Gene Leahy Mall at The RiverFront,"1001 Douglas St, Omaha, NE 68102, USA",(402) 599-6565,https://www.theriverfrontomaha.com/,41.2580197,-95.93121599999999,Omaha +Turner Park,"3110 Farnam St, Omaha, NE 68131, USA",(402) 444-5930,http://parks.cityofomaha.org/park-details?pid=189,41.2587427,-95.95908510000001,Omaha +General Crook House Museum,"5730 N 30th St, Omaha, NE 68111, USA",(402) 455-9990,http://www.douglascohistory.org/,41.3102164,-95.96041749999999,Omaha +Joslyn Art Museum,"2200 Dodge St, Omaha, NE 68102, USA",(402) 342-3300,http://www.joslyn.org/,41.260395,-95.9460525,Omaha +Pioneer Courage Park,"1450 Capitol Ave, Omaha, NE 68179, USA",(402) 602-3930,Unknown,41.261041,-95.9355887,Omaha +The West Maple Rock: World famous.,"15600 W Maple Rd, Omaha, NE 68116, USA",Unknown,https://m.facebook.com/groups/2486192221476339,41.2905893,-96.15900769999999,Omaha +Chef Boyardee Statue,"707 Conagra Dr, Omaha, NE 68102, USA",Unknown,Unknown,41.25416080000001,-95.92499210000001,Omaha +Stinson Park,"2285 S 67th St, Omaha, NE 68106, USA",(402) 496-1616,http://www.aksarbenvillage.com/,41.237924,-96.01559689999999,Omaha +Riverside Discovery Center,"1600 S Beltline Hwy W, Scottsbluff, NE 69361, USA",(308) 630-6236,http://www.riversidediscoverycenter.org/,41.85541449999999,-103.6817675,Scottsbluff +Scotts Bluff National Monument,"190276 Old Oregon Trail, Gering, NE 69341, USA",(308) 436-9700,http://www.nps.gov/scbl,41.8343571,-103.7072063,Scottsbluff +Fish Yakutat,"Yakutat, AK 99689, USA",(907) 410-7300,Unknown,59.56255279999999,-139.7414723,Yakutat +Cannon Beach,"NF-99681, Yakutat, AK 99689, USA",Unknown,Unknown,59.4922001,-139.7280193,Yakutat +Arcata Community Forest,"Arcata, CA 95521, USA",(707) 822-8184,http://www.cityofarcata.org/,40.8748434,-124.0504289,Arcata +Phillips House Museum,"71 7th St, Arcata, CA 95521, USA",(707) 822-4722,https://arcatahistory.org/phillips-house-museum/,40.8657949,-124.0781714,Arcata +Mad River County Park,"1 Mad River Rd, Arcata, CA 95521, USA",(707) 445-7651,http://co.humboldt.ca.us/portal/living/county_parks/default.asp?parkID=MR,40.9315257,-124.1312813,Arcata +Redwood Park,"490 E. Park Road, Arcata, CA 95521, USA",(707) 822-7091,Unknown,40.8698709,-124.0733634,Arcata +Janes Creek Meadows Park,"2985 Janes Creek Dr, Arcata, CA 95521, USA",(707) 822-7091,http://www.cityofarcata.org/,40.88819049999999,-124.0828724,Arcata +Humboldt Coastal Nature Center,"220 Stamps Ln, Arcata, CA 95521, USA",(707) 444-1397,http://friendsofthedunes.org/,40.85728580000001,-124.1629959,Arcata +"Ma-le'l Dunes, North","Arcata, CA 95521, USA",(707) 733-5406,https://www.blm.gov/visit/ma-lel-dunes-cma,40.87277599999999,-124.152159,Arcata +Arcata Bird Sanctuary,"S I St, Arcata, CA 95521, USA",(707) 826-2359,Unknown,40.8558567,-124.0982081,Arcata +Redwood Sky Walk at Sequoia Park Zoo,"3414 W St, Eureka, CA 95503, USA",(707) 441-4263,https://redwoodskywalk.com/,40.77704169999999,-124.1446583,Arcata +Arcata Plaza,"844 H St, Arcata, CA 95521, USA",Unknown,http://arcatamainstreet.com/,40.8685473,-124.0864372,Arcata +Arcata Marsh Interpretive Center,"569 S G St, Arcata, CA 95521, USA",(707) 826-2359,http://www.arcatamarshfriends.org/,40.8581294,-124.0904876,Arcata +Arcata Parks Department,"736 F St, Arcata, CA 95521, USA",(707) 822-5957,https://www.cityofarcata.org/426/Park-Maps,40.867258,-124.0848055,Arcata +Madaket Harbor Cruise,"1 C St, Eureka, CA 95501, USA",(707) 445-1910,https://www.humboldtbaymaritimemuseum.com/madaket-cruises.html,40.80551599999999,-124.1701,Arcata +Mad River Slough Wildlife Area,"Arcata, CA 95521, USA",Unknown,Unknown,40.8599723,-124.116699,Arcata +Carlson Park,"5201 Carlson Park Dr # 4, Arcata, CA 95521, USA",Unknown,Unknown,40.90569440000001,-124.077754,Arcata +Holly Yashi,"1300 9th St, Arcata, CA 95521, USA",(707) 822-5132,https://www.hollyyashi.com/,40.8706879,-124.091952,Arcata +Arcata Playhouse,"1251 9th St, Arcata, CA 95521, USA",(707) 822-1575,http://www.arcataplayhouse.org/,40.8699333,-124.0917889,Arcata +Sequoia Park Zoo,"3414 W St, Eureka, CA 95503, USA",(707) 441-4263,http://www.sequoiaparkzoo.net/,40.77704169999999,-124.1446583,Arcata +McKinleyville Totem Pole,"1500 City Center Rd, McKinleyville, CA 95519, USA",Unknown,Unknown,40.9431309,-124.103567,Arcata +Arcata Diamond Railroad Crossing,"1720 M St, Arcata, CA 95521, USA",Unknown,Unknown,40.8762192,-124.0910167,Arcata +Riverfront Park,"507 N Howard St, Spokane, WA 99201, USA",(509) 625-6600,http://riverfrontspokane.org/,47.660491,-117.4210382,Spokane +Manito Park,"1702 S Grand Blvd, Spokane, WA 99203, USA",(509) 625-6200,http://www.manitopark.org/,47.63942,-117.4093973,Spokane +Numerica SkyRide at Riverfront Spokane,"720 W Spokane Falls Blvd, Spokane, WA 99201, USA",(509) 625-6600,https://my.spokanecity.org/riverfrontpark/attractions/skyride/,47.6603492,-117.4224572,Spokane +Northwest Museum of Arts & Culture,"2316 W 1st Ave, Spokane, WA 99201, USA",(509) 456-3931,http://www.northwestmuseum.org/,47.6569592,-117.445495,Spokane +Spokane Falls (Upper Falls),"W North River Dr, Spokane, WA 99201, USA",Unknown,Unknown,47.663066,-117.4231896,Spokane +Looff Carrousel and Gift Shop,"W Spokane Falls Blvd, Spokane, WA 99201, USA",(509) 625-6600,https://my.spokanecity.org/riverfrontpark/attractions/looff-carrousel/,47.6606759,-117.4202831,Spokane +Rotary Fountain,"507 N Howard St, Spokane, WA 99201, USA",Unknown,Unknown,47.6605845,-117.4211272,Spokane +Huntington Park,"350 N Post St, Spokane, WA 99201, USA",(509) 625-6200,Unknown,47.6608714,-117.4252427,Spokane +Spokane Falls (Lower Falls),"W North River Dr, Spokane, WA 99201, USA",Unknown,Unknown,47.6616466,-117.4253254,Spokane +The Great Northern Clocktower,"47°39'41. 117°25'08., 4 E 5th Ave, Spokane, WA 99202, USA",(509) 625-6600,Unknown,47.661494,-117.41904,Spokane +Edwidge Woldson Park,"525 W 7th Ave, Spokane, WA 99204, USA",(509) 625-6624,Unknown,47.64799949999999,-117.4200789,Spokane +Cliff Park,"426 W 12th Ave, Spokane, WA 99201, USA",(509) 625-6200,http://spokaneparks.org/Parks/park/cliff_park/,47.6445176,-117.4187412,Spokane +John A. Finch Arboretum,"3404 W Woodland Blvd, Spokane, WA 99224, USA",(509) 363-5466,https://my.spokanecity.org/urbanforestry/programs/finch-arboretum/,47.6414911,-117.4667133,Spokane +Wonderland Family Fun Center Pizza - & Local brews,"10515 N Division St, Spokane, WA 99218, USA",(509) 468-4386,http://wonderlandspokane.com/,47.75355559999999,-117.4103804,Spokane +snxw meneɂ,"825-899 N Howard St, Spokane, WA 99201, USA",Unknown,Unknown,47.6634676,-117.421747,Spokane +Drumheller Springs Historical Park,"1915 W Dalton Ave, Spokane, WA 99205, USA",Unknown,http://my.spokanecity.org/parks/,47.6870671,-117.4396426,Spokane +Spokane Party Trolley,"109 S Scott St, Spokane, WA 99202, USA",(509) 879-6309,http://spokanepartytrolley.com/,47.6563704,-117.3986172,Spokane +Gaiser Conservatory,"4 W 21st Ave, Spokane, WA 99203, USA",(509) 363-5455,https://my.spokanecity.org/parks/gardens/gaiser-conservatory/,47.63554999999999,-117.411742,Spokane +Duncan Garden,"Spokane, WA 99203, USA",(509) 625-6624,https://my.spokanecity.org/parks/gardens/duncan/,47.6345011,-117.4117468,Spokane +Splash Down,"11127 E Mission Ave, Spokane Valley, WA 99206, USA",Unknown,https://splashdownfamilywaterpark.com/,47.67325779999999,-117.2548371,Spokane +Gladys Porter Zoo,"500 E Ringgold St, Brownsville, TX 78520, USA",(956) 546-7187,http://gladysporterzoo.org/,25.9133667,-97.49538249999999,Brownsville +Resaca De La Palma State Park,"1000 New Carmen Ave, Brownsville, TX 78521, USA",(956) 350-2920,http://tpwd.texas.gov/state-parks/resaca-de-la-palma,25.9968,-97.571626,Brownsville +Historic Brownsville Museum,"641 E Madison St, Brownsville, TX 78520, USA",(956) 548-1313,http://www.mitteculturaldistrict.org/,25.9075,-97.49916669999999,Brownsville +Stillman House Museum,"1325 E Washington St, Brownsville, TX 78520, USA",(956) 541-5560,http://www.brownsvillehistory.org/,25.9008354,-97.49630379999999,Brownsville +Palo Alto Battlefield National Historical Park,"7200 Paredes Line Rd, Brownsville, TX 78526, USA",(956) 541-2785,http://www.nps.gov/paal/index.htm,26.0167821,-97.47902619999999,Brownsville +Brownsville Museum of Fine Art,"660 E Ringgold St, Brownsville, TX 78520, USA",(956) 542-0941,http://www.bmfa.us/,25.9116478,-97.49388990000001,Brownsville +Brownsville Historic Battlefield Trail,"1 Event Center, Brownsville, TX 78526, USA",Unknown,https://brownsville.org/members/historic-battlefield-trail/,25.9625709,-97.4889676,Brownsville +Children's Museum of Brownsville,"501 E Ringgold St #5, Brownsville, TX 78520, USA",(956) 548-9300,http://www.cmofbrownsville.org/,25.9163297,-97.49610829999999,Brownsville +Alice Wilson Hope Park,"1300 E Levee St, Brownsville, TX 78520, USA",(956) 542-2064,http://parks.cob.us/,25.8992325,-97.4996924,Brownsville +Boca Chica Wildlife Refuge,"Boca Chica Blvd, Brownsville, TX 78521, USA",Unknown,http://tpwd.texas.gov/huntwild/wildlife/wildlife-trails/coastal/lower/boca-chica-loop,26.0042398,-97.19443609999999,Brownsville +Southmost Preserve,"10000 Southmost Rd, Brownsville, TX 78521, USA",Unknown,Unknown,25.8542139,-97.3976267,Brownsville +Charro days classic 1 mile and 5k start/finish,"615 E Adams St, Brownsville, TX 78520, USA",(956) 639-4217,http://www.sombrerofestival.com/,25.9056736,-97.5003177,Brownsville +Boca Chica To Mars Mural,"1025 E Adams St, Brownsville, TX 78520, USA",Unknown,Unknown,25.9034183,-97.4978565,Brownsville +Sabal Palm Sanctuary,"8435 Sabal Palm Grove Rd, Brownsville, TX 78521, USA",(956) 541-8034,http://www.sabalpalmsanctuary.org/,25.8523259,-97.4177959,Brownsville +Washington Plaza,"700 E Madison St, Brownsville, TX 78520, USA",Unknown,Unknown,25.9059399,-97.49928469999999,Brownsville +Costumes of the Americas Museum,"1004 E 6th St, Brownsville, TX 78520, USA",(956) 525-7252,http://www.brownsvillehistory.org/,25.9081707,-97.49877289999999,Brownsville +Centro Cultural Cameron Park,"2100 Avenida Gregory, Brownsville, TX 78526, USA",(956) 547-7002,https://www.cameroncountytx.gov/parks-community-parks/parks-la-esperanza/,25.9701652,-97.483784,Brownsville +Riverside Park,"15 Riverside Blvd, Brownsville, TX 78520, USA",(956) 542-2064,https://www.brownsvilletx.gov/facilities/facility/details/Riverside-Park-37,25.9104125,-97.5151795,Brownsville +"Historic ""Old Morgue"" at Fort Brown","Old Morgue, Brownsville, TX 78520, USA",(512) 472-0102,https://explorebtx.com/the-future-of-two-nations-decided-here/,25.8984584,-97.4916265,Brownsville +Southern Pacific Linear Park,"Brownsville, TX 78520, USA",(956) 542-2064,http://parks.cob.us/,25.9106026,-97.4954546,Brownsville +Drake Park,"777 NW Riverside Blvd, Bend, OR 97701, USA",(541) 389-7275,https://www.bendparksandrec.org/park/drake-park-and-mirror-pond/,44.059025,-121.318238,Bend +High Desert Museum,"59800 US-97, Bend, OR 97702, USA",(541) 382-4754,http://www.highdesertmuseum.org/,43.9661759,-121.3419191,Bend +Sun Mountain Fun Center,"300 NE Bend River Mall Dr, Bend, OR 97703, USA",(541) 382-6161,https://sunmountainfun.com/,44.08471919999999,-121.3019177,Bend +Bend Whitewater Park,"166 SW Shevlin Hixon Dr, Bend, OR 97702, USA",(541) 389-7275,https://www.bendparksandrec.org/facility/bend-whitewater-park/,44.05005559999999,-121.3213198,Bend +Deschutes Historical Museum,"129 NW Idaho Ave, Bend, OR 97703, USA",(541) 389-1813,http://www.deschuteshistory.org/,44.05534970000001,-121.3171216,Bend +Visit Bend,"750 NW Lava Rd #160, Bend, OR 97703, USA",(541) 382-8048,https://www.visitbend.com/,44.0581289,-121.3110268,Bend +"Bend,OR","Lower level, Bend, OR 97703, USA",(541) 262-5062,Unknown,44.05817279999999,-121.3153096,Bend +Columbia Park,"264 NW Columbia St, Bend, OR 97702, USA",(541) 389-7275,https://www.bendparksandrec.org/park/columbia-park/,44.0528461,-121.3261033,Bend +Love The River Bench,"1968 NW 1st St, Bend, OR 97701, USA",Unknown,Unknown,44.0670473,-121.3131142,Bend +Pilot Butte State Scenic Viewpoint,"1310 NE Hwy 20, Bend, OR 97701, USA",(800) 551-6949,https://oregonstateparks.org/index.cfm?do=parkPage.dsp_parkPage&parkId=33,44.0605432,-121.2832425,Bend +Lava Lands Visitor Center,"58201 US-97, Bend, OR 97702, USA",(541) 383-5300,https://www.fs.usda.gov/recarea/deschutes/recarea/?recid=38394,43.90985489999999,-121.3568955,Bend +Puzzle Effect Escape Rooms - Bend,"61470 S Hwy 97 #4, Bend, OR 97702, USA",(541) 293-5832,https://bend.puzzleeffect.com/,44.0320037,-121.3075508,Bend +Wildflower Park,"60955 River Rim Dr, Bend, OR 97702, USA",(541) 389-7275,https://www.bendparksandrec.org/park/wildflower-park/,44.01485659999999,-121.3504406,Bend +Miller's Landing Park,"80 NW Riverside Blvd, Bend, OR 97703, USA",(541) 389-7275,https://www.bendparksandrec.org/park/millers-landing-park/,44.0517635,-121.3223337,Bend +Pioneer Park,"1525 NW Wall St, Bend, OR 97701, USA",(541) 389-7275,https://www.bendparksandrec.org/park/pioneer-park/,44.0651043,-121.3098741,Bend +Newberry National Volcanic Monument,"Bend, OR 97702, USA",(541) 383-5300,https://www.fs.usda.gov/recarea/deschutes/recarea/?recid=66159,43.90985489999999,-121.3568955,Bend +Greetings from Bend Postcard Mural,"450 NW Franklin Ave, Bend, OR 97703, USA",Unknown,https://www.greetingstour.com/murals/bend-oregon,44.0568535,-121.3125466,Bend +Farewell Bend Park,"1000 SW Reed Market Rd, Bend, OR 97702, USA",(541) 389-7275,https://www.bendparksandrec.org/park/farewell-bend-park/,44.0411386,-121.3246087,Bend +Archie Briggs Canyon Open Space,"Bend, OR 97703, USA",Unknown,Unknown,44.0921051,-121.3290512,Bend +Lava River Cave,"Cottonwood Rd, Bend, OR 97707, USA",(541) 383-5300,https://www.fs.usda.gov/recarea/deschutes/recarea/?recid=38396,43.8953801,-121.3695663,Bend +Hagerstown Roundhouse Museum,"296 S Burhans Blvd, Hagerstown, MD 21740, USA",(301) 739-4665,http://www.roundhouse.org/,39.6427978,-77.7341185,Hagerstown +Discovery Station At Hagerstown Inc,"101 W Washington St, Hagerstown, MD 21740, USA",(301) 790-0076,http://www.discoverystation.org/,39.6431407,-77.7230347,Hagerstown +Miller House Museum,"135 W Washington St, Hagerstown, MD 21740, USA",(301) 797-8782,https://washcohistory.org/,39.6434413,-77.7234661,Hagerstown +The Hagerstown Cultural Trail,"160 Hood St, Hagerstown, MD 21740, USA",(301) 739-8577,http://hagerstownculturaltrail.com/,39.637632,-77.725664,Hagerstown +Jonathan Hager House Museum,"110 Key St, Hagerstown, MD 21740, USA",(301) 739-8393,http://www.hagerstownmd.org/index.aspx?NID=309,39.639811,-77.73025059999999,Hagerstown +Hagerstown City Park,"501 Virginia Ave, Hagerstown, MD 21740, USA",(301) 739-8577,http://www.hagerstownmd.org/145/Parks-Recreation,39.63615250000001,-77.7310032,Hagerstown +Washington County Museum of Fine Arts,"401 Museum Dr, Hagerstown, MD 21740, USA",(301) 739-5727,http://www.wcmfa.org/,39.6370417,-77.7314889,Hagerstown +Fairgrounds Park,"351 N Cleveland Ave, Hagerstown, MD 21740, USA",(301) 739-8577 ext. 169,https://www.hagerstownmd.org/314/Fairgrounds-Park,39.6456049,-77.7065754,Hagerstown +Pangborn Park,"591 Pangborn Blvd, Hagerstown, MD 21740, USA",(301) 739-8577,http://www.hagerstownmd.org/,39.6489793,-77.7000463,Hagerstown +"Doleman Black Heritage Museum, Inc.","33 W Washington St Rm. 210, Hagerstown, MD 21740, USA",(301) 797-5019,https://www.dolemanblackheritagemuseum.org/,39.642321,-77.7213421,Hagerstown +Kiwanis Park,"371 Dynasty Dr, Hagerstown, MD 21742, USA",Unknown,https://www.hagerstownmd.org/kiwanispark,39.6387715,-77.6907983,Hagerstown +Hagerstown Aviation Museum,"18450 Showalter Rd Bldg 8, Hagerstown, MD 21742, USA",(301) 733-8717,http://www.hagerstownaviationmuseum.org/,39.7065859,-77.72621319999999,Hagerstown +Historic Jonathan Street,"326-398 Jonathan St, Hagerstown, MD 21740, USA",Unknown,Unknown,39.6482379,-77.7187047,Hagerstown +Historic City Park,"501 Virginia Ave, Hagerstown, MD 21740, USA",(301) 739-8577 ext. 134,http://www.historiccitypark.com/contact-us/,39.636211,-77.7318241,Hagerstown +Heavy Metal Playground,"14515 Pennsylvania Ave, Hagerstown, MD 21742, USA",(240) 415-8088,http://www.heavymetalplayground.com/,39.7136951,-77.72286869999999,Hagerstown +National Road Park,"806 W Washington St, Hagerstown, MD 21740, USA",(301) 739-8577 ext. 169,https://www.hagerstownmd.org/1292/National-Road-Park,39.64711330000001,-77.7347662,Hagerstown +Mansion House Art Center (Home of the Valley Art Association),"480 Highland Ave, Hagerstown, MD 21740, USA",(301) 797-2867,http://valleyartassoc.com/,39.6351911,-77.7333539,Hagerstown +City Park Train Hub,"770 City Park Dr, Hagerstown, MD 21740, USA",(301) 739-8577 ext. 170,Unknown,39.6349168,-77.7346118,Hagerstown +Martin “Marty” L. Snook Memorial Park,"17901 Halfway Blvd, Hagerstown, MD 21740, USA",(240) 313-2700,https://www.washco-md.net/parks-facilities/county-park/parks-marty-snook/,39.6077555,-77.7565319,Hagerstown +Washington County Historical Society,"135 W Washington St, Hagerstown, MD 21740, USA",(301) 797-8782,https://washcohistory.org/,39.6433307,-77.7236309,Hagerstown +Peoria Riverfront Museum,"222 SW Washington St, Peoria, IL 61602, USA",(309) 686-7000,http://www.peoriariverfrontmuseum.org/,40.68929139999999,-89.5898773,Peoria +Peoria Zoo,"2320 N Prospect Rd, Peoria, IL 61603, USA",(309) 686-3365,http://www.peoriazoo.org/,40.71699009999999,-89.57393979999999,Peoria +Caterpillar Visitors Center,"110 SW Washington St, Peoria, IL 61602, USA",(309) 675-0606,https://www.caterpillar.com/en/company/visitors-center.html,40.6900787,-89.58883999999999,Peoria +Giant Oak Park,"426 W High St, Peoria, IL 61605, USA",(309) 682-1200,http://www.peoriaparks.org/giant-oak-park,40.69852799999999,-89.59970299999999,Peoria +The Peoria PlayHouse,"2218 N Prospect Rd, Peoria, IL 61603, USA",(309) 323-6900,http://www.peoriaplayhouse.org/,40.7149796,-89.5734068,Peoria +Luthy Botanical Garden,"2520 N Prospect Rd, Peoria, IL 61603, USA",(309) 681-3506,https://peoriaparks.org/places/luthy/,40.71865499999999,-89.5756658,Peoria +Donovan Park,"5805 Knoxville Ave, Peoria, IL 61614, USA",(309) 682-6684,http://www.peoriaparks.org/,40.7573178,-89.598373,Peoria +Forest Park Nature Center,"5809 N Forest Park Dr, Peoria Heights, IL 61616, USA",(309) 686-3360,https://www.peoriaparks.org/fpnc/,40.7573443,-89.5749329,Peoria +Peoria Holocaust Memorial,"123 SW Washington St, Peoria, IL 61602, USA",(309) 677-3900,http://www.peoriaholocaustmemorial.org/,40.6892243,-89.5906105,Peoria +Glen Oak Park,"2218 N Prospect Rd, Peoria, IL 61603, USA",(309) 686-3359,http://peoriaparks.org/,40.7154807,-89.57506939999999,Peoria +Pettengill-Morron House Museum,"1212 W Moss Ave, Peoria, IL 61606, USA",(309) 674-1921,http://www.peoriahistoricalsociety.org/House-Museums/Pettengill-Morron_House_Museum,40.693957,-89.6117518,Peoria +Grand View Drive,"3210 N Grandview Dr, Peoria, IL 61614, USA",(309) 686-3375,https://www.peoriaparks.org/grand-view-drive/,40.7262759,-89.55442409999999,Peoria +Tower Park,"1222 E Kingman Ave, Peoria Heights, IL 61616, USA",(309) 682-8732,https://www.peoriaheights.org/tower-park/,40.7470075,-89.57458849999999,Peoria +St. Louis Arch Replica,"3406 W Farmington Rd, Peoria, IL 61604, USA",Unknown,https://www.roadsideamerica.com/tip/14960,40.7034703,-89.6466485,Peoria +Poplet Hollow River Bluff Trail Head,"Peoria, IL 61615, USA",Unknown,Unknown,40.80052920000001,-89.5872124,Peoria +Lakeview Park,"1917 W Lake Ave, Peoria, IL 61614, USA",(309) 682-1200,https://www.peoriaparks.org/lakeview-park/,40.74234919999999,-89.60860869999999,Peoria +Wheels O' Time Museum,"1710 W Woodside Dr, Dunlap, IL 61525, USA",(309) 243-9020,http://wheelsotime.org/,40.83357959999999,-89.6192028,Peoria +East Peoria River Front Park,"1201 Riverside Dr, East Peoria, IL 61611, USA",(309) 689-3019,Unknown,40.6848474,-89.5852728,Peoria +Peoria Historical Society,"611 SW Washington St # A, Peoria, IL 61602, USA",(309) 674-1921,http://www.peoriahistoricalsociety.org/,40.6866086,-89.5955017,Peoria +Community Solar System,"222 SW Washington St, Peoria, IL 61602, USA",(309) 686-7000,https://www.peoriariverfrontmuseum.org/dome-planetarium/community-solar-system,40.6893405,-89.5894618,Peoria +The History Museum at the Castle,"330 E College Ave, Appleton, WI 54911, USA",(920) 735-9370,http://www.myhistorymuseum.org/,44.2621443,-88.4014413,Appleton +Hearthstone Historic House Museum,"625 W Prospect Ave, Appleton, WI 54911, USA",(920) 730-8204,https://www.hearthstonemuseum.org/,44.254306,-88.4150093,Appleton +Atlas Science Center Center,"425 W Water St, Appleton, WI 54911, USA",(920) 380-7491,http://www.atlassciencecenter.org/,44.25499120000001,-88.4114171,Appleton +Trout Museum of Art,"111 W College Ave, Appleton, WI 54911, USA",(920) 733-4089,http://troutmuseum.org/,44.26165779999999,-88.4065409,Appleton +Plamann Park,"1375 E Broadway Dr, Appleton, WI 54913, USA",(920) 832-4791,https://www.outagamie.org/visitors/parks-trails-fishing-nature/plamann-park,44.3266378,-88.3850825,Appleton +Appleton Memorial Park,"1620 E Witzke Blvd, Appleton, WI 54911, USA",(920) 832-5905,http://www.appletonparkandrec.org/,44.2909096,-88.3797726,Appleton +Building For Kids,"100 W College Ave, Appleton, WI 54911, USA",(920) 734-3226,http://www.buildingforkids.org/,44.262013,-88.407004,Appleton +Gordon Bubolz Nature Preserve,"4815 N Lynndale Dr, Appleton, WI 54913, USA",(920) 731-6041,http://www.bubolzpreserve.org/,44.311604,-88.449619,Appleton +"Segway the Fox Tours-Appleton, Neenah, & Green Bay","500 E Franklin St, Appleton, WI 54911, USA",(920) 376-0256,https://glidenew.com/segway-the-lake/appleton-fun-historic-tour/,44.2651834,-88.39802309999999,Appleton +Appleton Historical Society Museum and Resource Center,"128 N Durkee St, Appleton, WI 54911, USA",(920) 540-3699,http://appletonhistory.com/,44.2627799,-88.40249659999999,Appleton +Erb Park,"1800 N Morrison St, Appleton, WI 54911, USA",(920) 832-5905,"http://appletonparkandrec.org/parks,-pavilions-and-trails/community-parks/erb-park",44.2782157,-88.4028166,Appleton +Lutz Park,"1320 S Lutz Dr, Appleton, WI 54914, USA",(920) 832-5905,"http://www.appletonparkandrec.org/parks,-pavilions-and-trails/neighborhood-parks/lutz-park",44.2496201,-88.4217581,Appleton +Butterfly Garden of Wisconsin,"N2550 WI-47, Appleton, WI 54913, USA",(920) 733-2929,http://www.butterflygardensofwisconsin.com/,44.33136259999999,-88.4139196,Appleton +Pierce Park,"1035 W Prospect Ave, Appleton, WI 54914, USA",(920) 832-5905,"http://www.appletonparkandrec.org/parks,-pavilions-and-trails/community-parks/pierce-park",44.252469,-88.42220429999999,Appleton +"Appleton Downtown, Inc.","333 W College Ave Suite 100, Appleton, WI 54912, USA",(920) 954-9112,http://www.appletondowntown.org/,44.2616636,-88.40897430000001,Appleton +Wisconsin Museum of International Wildlife,"10 E College Ave, Appleton, WI 54911, USA",(920) 419-2721,Unknown,44.2621694,-88.4059935,Appleton +Ellen Kort Sidewalk Poetry,"E College &, S Alton Ct, Appleton, WI 54911, USA",Unknown,https://www.appleton.org/government/public-works/admin-engineering,44.261908,-88.3910535,Appleton +Arbutus Park,"556-598 W Packard St, Appleton, WI 54911, USA",(920) 832-5905,http://appletonparkandrec.org/,44.26698630000001,-88.41241649999999,Appleton +Badger Sports Park,"3600 E Evergreen Dr, Appleton, WI 54913, USA",(920) 830-6900,http://www.badgersportspark.com/,44.3025303,-88.3559799,Appleton +Urban Air Trampoline and Adventure Park,"4741 W Lawrence St, Appleton, WI 54914, USA",(920) 471-0844,https://www.urbanair.com/wisconsin-appleton?utm_source=gmb&utm_medium=website,44.2603731,-88.4780554,Appleton +"Virginia Museum of Transportation, Inc.","303 Norfolk Ave SW, Roanoke, VA 24016, USA",(540) 342-5670,http://vmt.org/,37.27293360000001,-79.9459078,Roanoke +Mill Mountain Star,"2000 Jb Fishburn Pkwy SE, Roanoke, VA 24014, USA",(540) 853-2000,https://www.playroanoke.com/parks-facilities/mill-mountain-park/,37.2508252,-79.9323727,Roanoke +Mill Mountain Zoo,"Mill Mountain Spur, Roanoke, VA 24014, USA",(540) 343-3241,http://www.mmzoo.org/,37.2478918,-79.9364856,Roanoke +Science Museum of Western Virginia,"1 Market Square SE, Roanoke, VA 24011, USA",(540) 342-5710,http://www.smwv.org/,37.2715264,-79.9394691,Roanoke +O. Winston Link & Roanoke History Museum,"101 Shenandoah Ave NE, Roanoke, VA 24016, USA",(540) 982-5465,http://www.roanokehistory.org/,37.27354129999999,-79.9381495,Roanoke +Mill Mountain Park,"2198 Mill Mountain Spur, Roanoke, VA 24014, USA",(540) 853-2236,https://www.playroanoke.com/parks-facilities/mill-mountain-park/,37.24939320000001,-79.9332613,Roanoke +Taubman Museum of Art,"110 Salem Ave SE, Roanoke, VA 24011, USA",(540) 342-5760,https://www.taubmanmuseum.org/,37.27274,-79.93833,Roanoke +Optimus Prime Sculpture,"2239 Franklin Rd SW, Roanoke, VA 24014, USA",Unknown,Unknown,37.2510331,-79.95487039999999,Roanoke +Explore Park,"56 Roanoke River Parkway Rd, Roanoke, VA 24014, USA",(540) 427-1800,http://explorepark.org/,37.2382897,-79.8519747,Roanoke +Hotel Roanoke RailCam -East,"110 Shenandoah Ave NE, Roanoke, VA 24016, USA",Unknown,Unknown,37.273643,-79.93948089999999,Roanoke +Kids Square Children's Museum,"1 Market Square SE, Roanoke, VA 24011, USA",(540) 342-5777,http://kidssquare.org/,37.2714998,-79.9394702,Roanoke +The Scenic Route,"303 Market St SE, Roanoke, VA 24011, USA",Unknown,Unknown,37.2710163,-79.9394198,Roanoke +The Harrison Museum of African American Culture,"1 Market Square SE #2, Roanoke, VA 24011, USA",(540) 857-4395,http://harrisonmuseum.com/,37.2714707,-79.9394628,Roanoke +Read Mountain Preserve,"6101 Crumpacker Dr, Roanoke, VA 24012, USA",(540) 387-6078,https://www.roanokecountyparks.com/facilities/facility/details/readmountainpreserve-19,37.33481489999999,-79.8904967,Roanoke +Splash Valley,"7415 Wood Haven Rd, Roanoke, VA 24019, USA",(540) 777-6300,http://www.splashvalleywaterpark.com/,37.3379021,-79.9936523,Roanoke +Memorial Bridge Park,"1403 Memorial Ave SW, Roanoke, VA 24015, USA",(540) 853-2236,http://www.playroanoke.com/,37.2683299,-79.9686329,Roanoke +Elmwood Park,"505 Williamson Rd SE, Roanoke, VA 24011, USA",(540) 853-2236,https://www.playroanoke.com/parks-facilities/elmwood-park/,37.2680156,-79.93900699999999,Roanoke +"Roanoke, Virginia, USA | Virtual Railfan LIVE","303 Norfolk Ave SW, Roanoke, VA 24016, USA",Unknown,Unknown,37.27319499999999,-79.9463864,Roanoke +Smith Park,"1618 Wiley Dr SW, Roanoke, VA 24016, USA",(540) 853-2236,https://www.playroanoke.com/parks-facilities/smith-park/,37.25839109999999,-79.955874,Roanoke +Hotel Roanoke RailCam - West,"108 Shenandoah Ave NE, Roanoke, VA 24016, USA",Unknown,Unknown,37.27362749999999,-79.9395332,Roanoke +Cascades Raptor Center,"32275 Fox Hollow Rd, Eugene, OR 97405, USA",(541) 485-1320,http://cascadesraptorcenter.org/,43.986978,-123.078793,Eugene +Alton Baker Park,"200 Day Island Rd, Eugene, OR 97401, USA",(541) 682-4800,https://www.eugene-or.gov/facilities/facility/details/Alton-Baker-Park-29,44.05497799999999,-123.0795561,Eugene +Hendricks Park,"Summit Ave &, Skyline Blvd, Eugene, OR 97403, USA",(541) 682-4800,https://www.eugene-or.gov/facilities/facility/details/80,44.0353374,-123.0587689,Eugene +Eugene Science Center,"2300 Leo Harris Pkwy, Eugene, OR 97401, USA",(541) 682-7888,http://www.eugenesciencecenter.org/,44.05647279999999,-123.0727371,Eugene +Museum of Natural and Cultural History,"1680 E 15th Ave, Eugene, OR 97401, USA",(541) 346-3024,http://mnch.uoregon.edu/,44.0430077,-123.0680746,Eugene +Shelton McMurphey Johnson House,"303 Willamette St, Eugene, OR 97401, USA",(541) 484-0808,https://www.smjhouse.org/,44.0564145,-123.0921528,Eugene +Owen Rose Garden,"300 N Jefferson St, Eugene, OR 97402, USA",(541) 682-4800,http://www.eugene-or.gov/Facilities/Facility/Details/124,44.06277790000001,-123.1024347,Eugene +Jordan Schnitzer Museum of Art,"1430 Johnson Lane, Eugene, OR 97403, USA",(541) 346-3027,http://jsma.uoregon.edu/,44.0443107,-123.077137,Eugene +Eugene Solar System Trail: the Sun,"100 Day Island Rd, Eugene, OR 97401, USA",(541) 682-7888,https://eugenesciencecenter.org/exhibits/eugene-solar-system-trail/,44.0567009,-123.0827232,Eugene +Maurie Jacobs Park,"169 Fir Ln, Eugene, OR 97404, USA",(541) 682-4800,http://www.eugene-or.gov/Facilities/Facility/Details/Maurie-Jacobs-Park-114,44.0657388,-123.1122134,Eugene +Adventure! Children's Museum,"490 Valley River Center, Eugene, OR 97401, USA",(541) 653-9629,http://www.adventurechildrensmuseum.org/,44.06739990000001,-123.1062537,Eugene +Lane County History Museum,"740 W 13th Ave, Eugene, OR 97402, USA",(541) 682-4242,https://www.lchm.org/,44.04510800000001,-123.103759,Eugene +Frank Kinney Park,"875 Martin St, Eugene, OR 97405, USA",(541) 682-4800,https://www.eugene-or.gov/Facilities/Facility/Details/106,43.99884659999999,-123.0766934,Eugene +Willakenzie Park,"1725 Best Ln, Eugene, OR 97401, USA",(541) 682-4800,https://www.eugene-or.gov/Facilities/Facility/Details/115,44.083805,-123.0628212,Eugene +Mount Pisgah Arboretum,"34901 Frank Parrish Rd, Eugene, OR 97405, USA",(541) 747-3817,http://www.mountpisgaharboretum.org/,44.00687859999999,-122.9803488,Eugene +Oregon Air and Space Museum,"90377 Boeing Dr, Eugene, OR 97402, USA",(541) 461-1101,http://www.oasmuseum.com/,44.115156,-123.2125091,Eugene +Skinner Butte Park,"248 Cheshire Ave, Eugene, OR 97401, USA",(541) 682-4800,https://www.eugene-or.gov/Facilities/Facility/Details/Skinner-Butte-Park-55,44.05917230000001,-123.0926201,Eugene +Skyview City Park,"Eugene, OR 97405, USA",(541) 682-4800,https://www.eugene-or.gov/Facilities/Facility/Details/65,44.0246466,-123.1416036,Eugene +Delta Ponds,"640 Goodpasture Island Rd, Eugene, OR 97401, USA",(541) 682-5010,http://eugene-or.gov/Facilities/Facility/Details/Delta-Ponds-133,44.0789886,-123.1073867,Eugene +Candlelight Park,"1165 Welcome Way, Eugene, OR 97402, USA",(541) 682-4800,https://www.eugene-or.gov/Facilities/Facility/Details/49,44.0713076,-123.1837873,Eugene +Flaming Gorge Tour,"1641 Elk St, Rock Springs, WY 82901, USA",(307) 382-2538,http://explorewy.com/Flaming-Gorge-Tour,41.61203,-109.2310002,Rock Springs +Bunning Park,"J St &, Evans St, Rock Springs, WY 82901, USA",Unknown,https://www.rswy.net/eGov/apps/locations/facilities.egov?view=detail&id=28,41.5894846,-109.221995,Rock Springs +Rock Springs Historical Museum,"201 B St, Rock Springs, WY 82901, USA",(307) 362-3138,https://www.rswy.net/museum/,41.5853348,-109.2206645,Rock Springs +Blairtown Park,"731 McCurtain Dr, Rock Springs, WY 82901, USA",Unknown,https://www.rswy.net/egov/apps/locations/facilities.egov?view=detail&id=26,41.5737825,-109.2249811,Rock Springs +Explore Rock Springs & Green River Visitor Center,"1641 Elk St, Rock Springs, WY 82901, USA",(307) 382-2538,http://explorewy.com/,41.61203,-109.2310002,Rock Springs +Veteran's Park,"Rock Springs, WY 82901, USA",(307) 352-1400,http://www.rswy.net/egov/apps/locations/facilities.egov?view=detail&id=42,41.59996479999999,-109.2053165,Rock Springs +Rock Springs Arch,"200 S Main St, Rock Springs, WY 82901, USA",Unknown,Unknown,41.5861993,-109.2210657,Rock Springs +Pilot Butte Wild Horse Scenic Loop,"Wild Horse Canyon Rd, Green River, WY 82935, USA",Unknown,https://www.blm.gov/visit/pilot-butte-wild-horse-scenic-tour,41.5398389,-109.4715175,Rock Springs +"Wataha Park Pavilion, North Rock Springs,","Rock Springs, WY 82901, USA",(307) 352-1440,Unknown,41.6437938,-109.2470185,Rock Springs +Boot Hill Museum,"500 W Wyatt Earp Blvd, Dodge City, KS 67801, USA",(620) 227-8188,https://www.boothill.org/,37.7538033,-100.0217447,Dodge City +Home of Stone,"112 E Vine St, Dodge City, KS 67801, USA",(620) 227-6791,Unknown,37.7555437,-100.0155437,Dodge City +Wright Park,"71 N 2nd Ave, Dodge City, KS 67801, USA",(620) 225-8100,http://www.dodgecity.org/index.aspx?nid=106#&ui-state=dialog,37.7485372,-100.0210088,Dodge City +Coronado Cross,"11666 US-400, Dodge City, KS 67801, USA",Unknown,Unknown,37.725763,-99.9125981,Dodge City +Dodge City Historic Trolley Tours,"400 W Wyatt Earp Blvd, Dodge City, KS 67801, USA",(620) 225-8186,https://www.visitdodgecity.org/91/Historic-Trolley-Tours,37.7528215,-100.0208003,Dodge City +Kansas Teachers Hall of Fame,"603 5th Ave, Dodge City, KS 67801, USA",(620) 225-7311,http://www.teachershallfamedodgecityks.org/,37.7540867,-100.022878,Dodge City +Historic Santa Fe Depot,"201 E Wyatt Earp Blvd, Dodge City, KS 67801, USA",(620) 225-1001,Unknown,37.7526408,-100.0160383,Dodge City +Long Branch Lagoon,"111 4th Ave, Dodge City, KS 67801, USA",(620) 225-8156,http://www.lblagoon.com/,37.750409,-100.0225021,Dodge City +Wright Park Zoo,"71 N 2nd Ave, Dodge City, KS 67801, USA",(620) 225-8160,http://www.dodgecity.org/index.aspx?nid=106#&ui-state=dialog,37.7490458,-100.0217198,Dodge City +Dodge City Convention & Visitors Bureau,"400 W Wyatt Earp Blvd, Dodge City, KS 67801, USA",(620) 225-8186,http://www.visitdodgecity.org/,37.7530407,-100.0206931,Dodge City +KANSAS CATTLE TOWNS COALITION,"400 W Wyatt Earp Blvd, Dodge City, KS 67801, USA",(800) 653-9378,Unknown,37.7530333,-100.0206836,Dodge City +Feed Yard Scenic Overlook,"US-56, Dodge City, KS 67801, USA",(785) 296-2009,http://www.travelks.com/s/index.cfm?LID=6531,37.7523461,-99.96057780000001,Dodge City +Dodge City Trail of Fame Office,"509 S 2nd Ave, Dodge City, KS 67801, USA",(620) 561-1925,https://visitdodgecity.org/314/Dodge-City-Trail-of-Fame,37.753797,-100.0202514,Dodge City +Texas Capitol,"1100 Congress Ave., Austin, TX 78701, USA",(512) 463-4630,https://tspb.texas.gov/prop/tc/tc/capitol.html,30.2746652,-97.74035049999999,Austin +Zilker Metropolitan Park,"Austin, TX 78746, USA",(512) 974-6700,https://www.austintexas.gov/department/zilker-metropolitan-park,30.2669764,-97.7729703,Austin +Museum of the Weird,"412 E 6th St, Austin, TX 78701, USA",(512) 476-5493,http://www.museumoftheweird.com/,30.2671674,-97.73867,Austin +Cathedral of Junk,"4422 Lareina Dr, Austin, TX 78745, USA",(512) 299-7413,https://www.roadsideamerica.com/story/7816,30.2186473,-97.77157079999999,Austin +Bullock Texas State History Museum,"1800 Congress Ave., Austin, TX 78701, USA",(512) 936-8746,http://www.thestoryoftexas.com/,30.280337,-97.73906869999999,Austin +Austin Aquarium,"13530 US-183 Hwy #101, Austin, TX 78750, USA",(512) 222-5586,http://www.austinaquarium.com/,30.4499019,-97.792278,Austin +Umlauf Sculpture Garden & Museum,"605 Azie Morton Rd, Austin, TX 78704, USA",(512) 445-5582,http://umlaufsculpture.org/,30.2632583,-97.76615559999999,Austin +Haunted ATX,"501 N Interstate Hwy 35, Austin, TX 78702, USA",(737) 210-1869,https://hauntedatx.com/,30.2649689,-97.7341319,Austin +Blanton Museum of Art,"200 E Martin Luther King Jr Blvd, Austin, TX 78712, USA",(512) 471-5482,https://blantonmuseum.org/,30.2808109,-97.7376838,Austin +Mexic-Arte Museum,"419 Congress Ave., Austin, TX 78701, USA",(512) 480-9373,http://mexic-artemuseum.org/,30.2668433,-97.7427924,Austin +"The only locally owned, Original Austin Ghost Tours and Investigations","303 Red River St, Austin, TX 78701, USA",(512) 203-5561,http://www.austinghosttours.com/,30.26406339999999,-97.7379309,Austin +Austin Zoo,"10808 Rawhide Trail, Austin, TX 78736, USA",(512) 288-1490,http://www.austinzoo.org/,30.2608711,-97.9377719,Austin +Statesman Bat Observation Center,"305 S Congress Ave, Austin, TX 78704, USA",(512) 327-9721,http://www.batcon.org/,30.2599308,-97.74560070000001,Austin +Elisabet Ney Museum,"304 E 44th St, Austin, TX 78751, USA",(512) 974-1625,http://www.austintexas.gov/department/elisabet-ney-museum,30.3066213,-97.7262544,Austin +Sculpture Falls,"Barton Creek Greenbelt Trail, Austin, TX 78746, USA",(512) 974-6700,http://www.austintexas.gov/page/trail-directory,30.26185019999999,-97.8235253,Austin +Austin Nature & Science Center,"2389 Stratford Dr, Austin, TX 78746, USA",(512) 974-3888,http://www.austintexas.gov/department/austin-nature-and-science-center,30.2721724,-97.7733195,Austin +Mayfield Park and Nature Preserve,"3505 W 35th St, Austin, TX 78703, USA",(512) 974-6700,https://www.austintexas.gov/department/mayfield-park,30.31246269999999,-97.77060379999999,Austin +Texas Selfie Museum,"503 Neches St, Austin, TX 78701, USA",(512) 651-8383,http://originalselfiemuseum.com/,30.2660105,-97.73830500000001,Austin +Austin Visitor Center,"602 E 4th St, Austin, TX 78701, USA",(512) 478-0098,https://www.austintexas.org/plan-a-trip/visitor-center/,30.264628,-97.73741059999999,Austin +McKinney Falls State Park,"5808 McKinney Falls Pkwy, Austin, TX 78744, USA",(512) 243-1643,https://tpwd.texas.gov/state-parks/mckinney-falls,30.1836487,-97.72219439999999,Austin +Jungle Island,"1111 Parrot Jungle Trail, Miami, FL 33132, USA",(305) 400-7000,http://www.jungleisland.com/,25.7849814,-80.17422239999999,Miami +Miami Seaquarium,"4400 Rickenbacker Cswy, Key Biscayne, FL 33149, USA",(305) 361-5705,https://miamiseaquarium.com/,25.7342904,-80.1648572,Miami +Vizcaya Museum & Gardens,"3251 S Miami Ave, Miami, FL 33129, USA",(305) 250-9133,https://vizcaya.org/,25.7443866,-80.21047469999999,Miami +Pérez Art Museum Miami,"1103 Biscayne Blvd, Miami, FL 33132, USA",(305) 375-3000,https://www.pamm.org/en/,25.7859307,-80.1861912,Miami +Bayfront Park,"301 Biscayne Blvd, Miami, FL 33132, USA",(305) 358-7550,http://www.bayfrontparkmiami.com/,25.7752589,-80.18618889999999,Miami +Wynwood Walls,"2516 NW 2nd Ave, Miami, FL 33127, USA",(305) 576-3334,Unknown,25.8010178,-80.1993841,Miami +Maurice A. Ferré Park,"1075 Biscayne Blvd, Miami, FL 33132, USA",(305) 358-7550,http://www.bayfrontparkmiami.com/,25.78435829999999,-80.1871918,Miami +Bayside Marketplace,"401 Biscayne Blvd, Miami, FL 33132, USA",(305) 577-3344,https://www.baysidemarketplace.com/visit/360-virtual-map,25.7784025,-80.18679379999999,Miami +Miami Children's Museum,"980 MacArthur Cswy, Miami, FL 33132, USA",(305) 373-5437,http://www.miamichildrensmuseum.org/,25.78469939999999,-80.1765206,Miami +Skyviews Miami Observation Wheel,"401 Biscayne Blvd, Miami, FL 33132, USA",Unknown,https://www.skyviewsobservationwheels.com/?utm_source=google&utm_medium=organic&utm_campaign=gbp,25.77701979999999,-80.184519,Miami +Phillip & Patricia Frost Museum of Science,"1101 Biscayne Blvd, Miami, FL 33132, USA",(305) 434-9600,https://www.frostscience.org/,25.7852621,-80.1878898,Miami +Miami Walk of Fame,"401 Biscayne Blvd, Miami, FL 33132, USA",(786) 763-0831,http://www.miamiwalkoffame.com/,25.7781959,-80.1874465,Miami +Lummus Park,"1130 Ocean Dr, Miami Beach, FL 33139, USA",Unknown,https://www.miamibeachfl.gov/city-hall/parks-and-recreation/parks-facilities-directory/lummus-park/,25.7809553,-80.12994789999999,Miami +Torch of Friendship,"301 Biscayne Blvd, Miami, FL 33132, USA",(888) 311-3233,http://www.miamigov.com/home/,25.7776071,-80.1877094,Miami +Port of Miami,"1922 N Cruise Blvd, Miami, FL 33132, USA",Unknown,Unknown,25.7739808,-80.1666351,Miami +Official Art Deco Walking Tour,"1001 Ocean Dr, Miami Beach, FL 33139, USA",(305) 672-2014,https://mdpl.org/tours/,25.7802959,-80.1303405,Miami +HistoryMiami Museum,"101 W Flagler St, Miami, FL 33130, USA",(305) 375-1492,http://www.historymiami.org/,25.7746635,-80.196383,Miami +Domino Park,"1444 SW 8th St, Miami, FL 33135, USA",(305) 859-2717,http://www.miamigov.com/,25.7655757,-80.21933969999999,Miami +Little Havana Visitor Center,"1600 SW 8th St, Miami, FL 33135, USA",Unknown,Unknown,25.7655517,-80.2206779,Miami +Miami G,"1111 Lincoln Rd, Miami Beach, FL 33139, USA",(305) 896-9850,http://miami-g.com/,25.7909106,-80.140205,Miami +The Dallas World Aquarium,"1801 N Griffin St, Dallas, TX 75202, USA",(214) 720-2224,https://www.dwazoo.com/,32.7834737,-96.805358,Dallas +The Sixth Floor Museum at Dealey Plaza,"411 Elm St, Dallas, TX 75202, USA",(214) 747-6660,https://www.jfk.org/,32.7798188,-96.8084842,Dallas +Reunion Tower,"300 Reunion Blvd E, Dallas, TX 75207, USA",(214) 296-9950,http://www.reuniontower.com/,32.7755056,-96.80885669999999,Dallas +Dallas Museum of Art,"1717 N Harwood St, Dallas, TX 75201, USA",(214) 922-1200,https://www.dma.org/,32.7876959,-96.8010444,Dallas +The Dallas Arboretum and Botanical Garden,"8525 Garland Rd, Dallas, TX 75218, USA",(214) 515-6615,https://www.dallasarboretum.org/,32.8236184,-96.71662359999999,Dallas +Dallas Zoo,"650 S R.L. Thornton Fwy, Dallas, TX 75203, USA",(469) 554-7501,https://www.dallaszoo.com/,32.7409696,-96.81532,Dallas +Klyde Warren Park,"2012 Woodall Rodgers Fwy, Dallas, TX 75201, USA",(214) 716-4500,http://klydewarrenpark.org/,32.7893644,-96.8016184,Dallas +Old City Park,"1515 S Harwood St, Dallas, TX 75215, USA",(214) 421-5141,http://www.oldcityparkdallas.org/,32.77275279999999,-96.78654399999999,Dallas +Pioneer Plaza,"1428 Young St, Dallas, TX 75202, USA",Unknown,http://www.dallasparks.org/Facilities/Facility/Details/Pioneer-Plaza-624,32.7766323,-96.80119859999999,Dallas +Perot Museum of Nature and Science,"2201 N Field St, Dallas, TX 75201, USA",(214) 428-5555,https://www.perotmuseum.org/,32.7869429,-96.80658439999999,Dallas +Nasher Sculpture Center,"2001 Flora St, Dallas, TX 75201, USA",(214) 242-5100,http://www.nashersculpturecenter.org/,32.7881824,-96.8001567,Dallas +Giant Eyeball,"1601 Main St, Dallas, TX 75201, USA",Unknown,https://artandseek.org/2021/03/18/why-is-there-a-giant-eyeball-in-downtown-dallas-we-take-a-look/,32.781406,-96.7983119,Dallas +Dealey Plaza,"Dallas, TX 75202, USA",(214) 670-4100,http://www.dallasparks.org/Facilities/Facility/Details/Dealey-Plaza-462,32.7788184,-96.8082993,Dallas +John F. Kennedy Memorial Plaza,"646 Main St, Dallas, TX 75202, USA",(214) 747-6660,https://www.jfk.org/john-f-kennedy-memorial-plaza/,32.7787249,-96.8064507,Dallas +African American Museum of Dallas,"3536 Grand Ave, Dallas, TX 75210, USA",(214) 565-9026,http://www.aamdallas.org/,32.7790574,-96.7644136,Dallas +Frontiers of Flight Museum,"6911 Lemmon Ave, Dallas, TX 75209, USA",(214) 350-3600,http://www.flightmuseum.com/,32.84260200000001,-96.835202,Dallas +White Rock Lake Park,"8300 E Lawther Dr, Dallas, TX 75218, USA",(214) 660-1100,http://www.whiterocklake.org/,32.8365139,-96.7216119,Dallas +Leonhardt Lagoon Nature Walk,"1121 1st Ave, Dallas, TX 75210, USA",(214) 426-3400,https://eventseeker.com/venue/1132302-leonhardt-lagoon-dallas-tx,32.7778302,-96.761946,Dallas +George W. Bush Presidential Center,"2943 SMU Boulevard, Dallas, TX 75205, USA",(214) 200-4300,http://www.bushcenter.org/,32.84118300000001,-96.778198,Dallas +Trinity Forest Adventure Park,"1800 Dowdy Ferry Rd, Dallas, TX 75217, USA",(214) 391-1000,http://trinitytreetops.com/,32.6898099,-96.6757659,Dallas +Walter Zych Park,"1801 Jackson St, Mosinee, WI 54455, USA",Unknown,http://www.mosinee.wi.us/parks/walter_zych_park.html,44.7963376,-89.72399170000001,Mosinee +River Park,"1098-1070 Armory Rd, Mosinee, WI 54455, USA",Unknown,http://www.mosinee.wi.us/parks/river_park.html,44.7967952,-89.707264,Mosinee +Great Escape of Central Texas,"4400-1 E Central Texas Expy suite c, Killeen, TX 76543, USA",(254) 680-2686,http://www.greatescapectx.com/,31.0788118,-97.7001343,Killeen +Urban Air Trampoline and Adventure Park,"2102 Jennifer Dr, Killeen, TX 76542, USA",(254) 334-1435,https://www.urbanair.com/texas-killeen?utm_source=gmb&utm_medium=website,31.1043815,-97.7462463,Killeen +Roberson Family Christmas Lightshow,"3302 Shawlands Rd, Killeen, TX 76542, USA",Unknown,Unknown,31.04978929999999,-97.7224273,Killeen +Public fountain,"E Green Ave, Killeen, TX 76541, USA",Unknown,Unknown,31.1249874,-97.72854219999999,Killeen +Lions Club Park,"1700 E Stan Schlueter Loop, Killeen, TX 76542, USA",(254) 501-6390,https://www.killeentexas.gov/Facilities/Facility/Details/Lions-Club-Park-4,31.06978329999999,-97.7348518,Killeen +Mayborn Science Theater,"Bldg No. 267, Bell Tower Drive, On the Campus of Central Texas College, 6200 W Central Texas Expy, Killeen, TX 76549, USA",(254) 526-1768,http://www.starsatnight.org/,31.1190225,-97.8049724,Killeen +Long Branch Park,"1101 Branch Dr, Killeen, TX 76543, USA",(254) 501-6390,http://www.killeentexas.gov/,31.1177625,-97.68887699999999,Killeen +Ninini Point Lighthouse,"Lihue, HI 96766, USA",Unknown,https://www.history.uscg.mil/Browse-by-Topic/Assets/Land/All/Article/1968821/nawiliwili-lighthouse/,21.9550423,-159.3357786,Lihue +Kauaʻi Museum,"4428 Rice St, Lihue, HI 96766, USA",(808) 245-6931,http://www.kauaimuseum.org/,21.975035,-159.368253,Lihue +Nāwiliwili Harbor,"Waapa Rd, Lihue, HI 96766, USA",(808) 241-3115,http://nawiliwiliharbor.com/,21.9546501,-159.3571378,Lihue +Niumalu Beach Park,"2403-2435 Niumalu Rd, Lihue, HI 96766, USA",(808) 241-4460,Unknown,21.9511723,-159.3623952,Lihue +Kauai Backcountry Adventures,"3-4131 Kuhio Hwy, Lihue, HI 96766, USA",(808) 245-2506,http://www.kauaibackcountry.com/,21.9950123,-159.3551132,Lihue +Ahukini Recreational Pier State Park,"3651 Ahukini Rd, Lihue, HI 96766, USA",(808) 274-3444,http://dlnr.hawaii.gov/dsp/parks/kauai/ahukini-state-recreational-pier/,21.9928693,-159.3317538,Lihue +Kilohana,"3-2087 Kaumualii Hwy, Lihue, HI 96766, USA",(808) 245-5608,http://kilohanakauai.com/,21.9714003,-159.3914129,Lihue +Kapaia Swinging Bridge,"4438 Laukini Rd, Lihue, HI 96766, USA",Unknown,https://historichawaii.org/2014/03/03/kapaia-swinging-bridge-2011/,21.9907952,-159.3644832,Lihue +Lihue Civic Center Historic District,"Lihue, HI 96766, USA",(808) 241-6349,http://www.kauai.gov/,21.97508759999999,-159.3672808,Lihue +Kauai Safaris,"3-2087 Kaumualii Hwy, Lihue, HI 96766, USA",(808) 652-4707,http://kauaisafaris.com/,21.9707614,-159.391989,Lihue +Kauai Plantation Railway,"Depot, 3-2087 Kaumualii Hwy, Lihue, HI 96766, USA",(808) 245-7245,http://www.kilohanakauai.com/,21.9711103,-159.3923377,Lihue +Hawaiian Collection Room,"3-2087 Kaumualii Hwy, Lihue, HI 96766, USA",(808) 245-9452,Unknown,21.9718545,-159.3913163,Lihue +Fern Grotto,"Kapaʻa, HI 96746, USA",Unknown,http://dlnr.hawaii.gov/dsp/parks/kauai/wailua-river-state-park/,22.0395109,-159.3592349,Lihue +Lu’au Kalamaku,"3-2087 Kaumualii Hwy, Lihue, HI 96766, USA",(877) 622-1780,http://luaukalamaku.com/,21.9712528,-159.3921194,Lihue +Lydgate Beach Park,"Leho Dr, Lihue, HI 96766, USA",(808) 241-4463,http://www.kauai.gov/Government/Departments-Agencies/Parks-Recreation/Park-Facilities,22.0372331,-159.336448,Lihue +Kauai Escape Room,"4353 Rice St #1, Lihue, HI 96766, USA",(808) 635-6957,https://www.escaperoomkauai.com/,21.9736566,-159.3669351,Lihue +Pittsburgh Zoo & Aquarium,"7370 Baker St, Pittsburgh, PA 15206, USA",(412) 665-3640,http://www.pittsburghzoo.org/,40.4842648,-79.922206,Pittsburgh +Phipps Conservatory and Botanical Gardens,"1 Schenley Drive, Pittsburgh, PA 15213, USA",(412) 622-6914,https://www.phipps.conservatory.org/,40.43901549999999,-79.947951,Pittsburgh +The Andy Warhol Museum,"117 Sandusky St, Pittsburgh, PA 15212, USA",(412) 237-8300,http://www.warhol.org/,40.4483755,-80.0024907,Pittsburgh +Point State Park,"601 Commonwealth Pl, Pittsburgh, PA 15222, USA",(412) 565-2850,http://www.dcnr.state.pa.us/stateparks/findapark/point/,40.4415719,-80.00785379999999,Pittsburgh +Carnegie Museum of Art,"4400 Forbes Ave, Pittsburgh, PA 15213, USA",(412) 622-3131,https://carnegieart.org/,40.4437052,-79.9489727,Pittsburgh +The Frick Pittsburgh,"7227 Reynolds St, Pittsburgh, PA 15208, USA",(412) 371-0600,https://www.thefrickpittsburgh.org/,40.44748109999999,-79.9017563,Pittsburgh +Carnegie Science Center,"1 Allegheny Ave, Pittsburgh, PA 15212, USA",(412) 237-3400,http://www.carnegiesciencecenter.org/,40.44568279999999,-80.01818519999999,Pittsburgh +Randyland,"1501 Arch St, Pittsburgh, PA 15212, USA",(412) 342-8152,Unknown,40.4579311,-80.0097399,Pittsburgh +National Aviary,"700 Arch St, Pittsburgh, PA 15212, USA",(412) 323-7235,https://www.aviary.org/,40.4533299,-80.00960529999999,Pittsburgh +Trundle Manor,"7724 Juniata St, Pittsburgh, PA 15218, USA",(412) 916-5544,http://trundlemanor.com/,40.42272149999999,-79.8804881,Pittsburgh +Senator John Heinz History Center,"1212 Smallman St, Pittsburgh, PA 15222, USA",(412) 454-6000,http://www.heinzhistorycenter.org/,40.4468415,-79.9920696,Pittsburgh +Haunted Pittsburgh LLC,"414 Grant St, Pittsburgh, PA 15219, USA",(412) 385-2015,http://www.hauntedpittsburghtours.com/,40.4382415,-79.99668489999999,Pittsburgh +Point of View,"1435 Grandview Ave, Pittsburgh, PA 15211, USA",Unknown,Unknown,40.4392746,-80.0213101,Pittsburgh +Fort Pitt Museum,"Point State Park, 601 Commonwealth Pl, Pittsburgh, PA 15222, USA",(412) 281-9284,http://www.fortpittmuseum.org/,40.4406403,-80.00968639999999,Pittsburgh +Schenley Park,"Pittsburgh, PA 15213, USA",(412) 682-7275,https://pittsburghpa.gov/citiparks,40.4350634,-79.9417467,Pittsburgh +Cathedral of Learning,"4200 Fifth Ave, Pittsburgh, PA 15260, USA",(412) 624-4141,http://www.tour.pitt.edu/tour/cathedral-learning,40.4443625,-79.95315509999999,Pittsburgh +Carnegie Museum of Natural History,"4400 Forbes Ave, Pittsburgh, PA 15213, USA",(412) 622-3131,https://carnegiemnh.org/,40.4433215,-79.949974,Pittsburgh +Mattress Factory,"509 Jacksonia St, Pittsburgh, PA 15212, USA",(412) 231-3169,http://mattress.org/,40.4572005,-80.0124101,Pittsburgh +West End Overlook Park,"Marlow St, Pittsburgh, PA 15205, USA",(412) 255-2539,https://registerparks.pittsburghpa.gov/ViewFacilityDetails.aspx?Fid=43&Rid=89,40.445656,-80.03375489999999,Pittsburgh +Kennywood,"4800 Kennywood Blvd, West Mifflin, PA 15122, USA",(412) 461-0500,https://www.kennywood.com/?utm_source=google&utm_medium=OrganicGMB&utm_id=GMBtraffic,40.386622,-79.86188279999999,Pittsburgh +Tallahassee Museum,"3945 Museum Rd, Tallahassee, FL 32310, USA",(850) 575-8684,http://tallahasseemuseum.org/,30.4104779,-84.34403950000001,Tallahassee +Alfred B. Maclay Gardens State Park,"3540 Thomasville Rd, Tallahassee, FL 32309, USA",(850) 487-4556,https://www.floridastateparks.org/park/Maclay-Gardens,30.5135456,-84.24748740000001,Tallahassee +Railroad Square Art District,"661 Railroad Sq, Tallahassee, FL 32310, USA",(850) 224-1308,http://www.railroadsquare.com/,30.433016,-84.291037,Tallahassee +Florida Historic Capitol Museum,"400 S Monroe St, Tallahassee, FL 32399, USA",(850) 487-1902,http://flhistoriccapitol.gov/,30.4381359,-84.2813118,Tallahassee +Cascades Park,"1001 S Gadsden St, Tallahassee, FL 32301, USA",(850) 891-3866,http://discovercascades.com/,30.4337109,-84.2779171,Tallahassee +Mission San Luis,"2100 W Tennessee St, Tallahassee, FL 32304, USA",(850) 245-6406,http://www.missionsanluis.org/,30.4486503,-84.3200536,Tallahassee +Goodwood Museum & Gardens,"1600 Miccosukee Rd, Tallahassee, FL 32308, USA",(850) 877-4202,http://www.goodwoodmuseum.org/,30.45656,-84.25681759999999,Tallahassee +Lake Jackson Mounds State Park,"3600 Indian Mound Rd, Tallahassee, FL 32303, USA",(850) 922-6007,https://www.floridastateparks.org/park/Lake-Jackson,30.500009,-84.31840369999999,Tallahassee +Tallahassee Automobile Museum,"6800 Mahan Dr, Tallahassee, FL 32308, USA",(850) 942-0137,http://tacm.com/,30.4864983,-84.1625536,Tallahassee +Fun Station,"2821 Sharer Rd, Tallahassee, FL 32312, USA",(850) 383-0788,http://thefunstation.net/,30.4804626,-84.29473229999999,Tallahassee +Spring House - Frank Lloyd Wright,"3117 Okeeheepkee Rd, Tallahassee, FL 32303, USA",Unknown,http://www.preservespringhouse.org/,30.4900738,-84.3126487,Tallahassee +The Grove Museum,"902 N Monroe St, Tallahassee, FL 32303, USA",(850) 245-6100,https://thegrovemuseum.com/,30.45084219999999,-84.2820306,Tallahassee +Museum of Florida History,"500 S Bronough St, Tallahassee, FL 32399, USA",(850) 245-6400,https://museumoffloridahistory.com/,30.43805870000001,-84.2849586,Tallahassee +Velda Mound Park,"Baldwin Dr S, Tallahassee, FL 32309, USA",Unknown,Unknown,30.5016003,-84.22251370000001,Tallahassee +Tallahassee-St. Marks Historic Railroad State Trail,"4778 Woodville Hwy, Tallahassee, FL 32305, USA",(850) 245-2081,http://www.dep.state.fl.us/gwt/state/marks/,30.37029209999999,-84.2680306,Tallahassee +Lake Ella Park,"S Lake Ella Dr, Tallahassee, FL 32303, USA",(850) 891-6860,https://www.talgov.com/,30.461047,-84.2794009,Tallahassee +Knott House Museum,"301 E Park Ave, Tallahassee, FL 32301, USA",(850) 922-2459,https://www.museumoffloridahistory.com/visit/knott-house-museum/,30.4417261,-84.2793998,Tallahassee +Heritage Walk,"120 E Jefferson St, Tallahassee, FL 32301, USA",Unknown,Unknown,30.43964019999999,-84.2804098,Tallahassee +DeSoto Site Historic State Park,"1001 Desoto Park Dr, Tallahassee, FL 32301, USA",(850) 245-6444,http://www.exploresouthernhistory.com/fldesoto1.html,30.4352758,-84.2688661,Tallahassee +Natural Bridge Battlefield Historic State Park,"7502 Natural Bridge Rd, Tallahassee, FL 32305, USA",(850) 922-6007,https://www.floridastateparks.org/parks-and-trails/natural-bridge-battlefield-historic-state-park,30.3004867,-84.1395561,Tallahassee +World Museum of Mining,"155 Museum Way, Butte, MT 59701, USA",(406) 723-7211,http://www.miningmuseum.org/?utm_source=google-gmb-maps&utm_medium=gmb-website-button&utm_campaign=locl.io&utm_content=2bf5731c-b070-4b4d-9db0-d460ae94a77e,46.0093633,-112.5648062,Butte +Old Butte Historical Tours,"117 N Main St #9331, Butte, MT 59701, USA",(406) 498-3424,http://buttetour.info/,46.0140775,-112.5361469,Butte +Our Lady of the Rockies,"Butte Plaza Mall, 3100 Harrison Ave, Butte, MT 59701, USA",(406) 782-1221,https://www.ourladyoftherockies.com/,46.0003643,-112.4462327,Butte +Mineral Museum,"1300 W Park St, Butte, MT 59701, USA",(406) 496-4414,http://www.mbmg.mtech.edu/MineralMuseum/main.asp,46.0107631,-112.5569098,Butte +BUTTE MULE HISTORIC TOURS,"116 W Park St, Butte, MT 59701, USA",(406) 560-4989,http://www.buttemuletours.com/,46.01246080000001,-112.5382562,Butte +Mai Wah Society Inc,"17 W Mercury St, Butte, MT 59701, USA",(406) 723-3231,https://www.maiwah.org/,46.0113517,-112.5362293,Butte +McGruff Park,"Shields Ave, Butte, MT 59701, USA",(406) 497-6200,http://co.silverbow.mt.us/192/Parks-Recreation,46.0072248,-112.5169694,Butte +Historic Clark Chateau Museum & Gallery,"321 W Broadway St, Butte, MT 59701, USA",(406) 565-5600,https://clarkchateau.org/,46.01351100000001,-112.541775,Butte +Copper King Mansion,"219 W Granite St, Butte, MT 59701, USA",(406) 782-7580,https://copperkingmansion.com/,46.0145012,-112.540285,Butte +Dumas Brothel,"45 E Mercury St, Butte, MT 59701, USA",(406) 351-9922,http://dumas-brothel.com/,46.01154599999999,-112.533944,Butte +Koprivica Park,"900-1002 E 2nd St, Butte, MT 59701, USA",Unknown,https://www.facebook.com/pages/Koprivica-Park/730136157026207,46.0047148,-112.5256406,Butte +Old Lexington Gardens,"300-304 E Granite St, Butte, MT 59701, USA",(406) 723-6656,https://www.visitmt.com/listings/general/garden/old-lexington-stamp-mill-and-gardens,46.0146424,-112.531588,Butte +Big Butte Open Space Recreation Area,"Butte, MT 59701, USA",(406) 497-6200,http://co.silverbow.mt.us/712/Big-Butte-Open-Space,46.0170143,-112.5651201,Butte +Columbia Gardens Arch,"Downhill Ln, Butte, MT 59701, USA",Unknown,Unknown,45.95407699999999,-112.6002722,Butte +Piccadilly Museum of Transportation,"20 W Broadway St, Butte, MT 59701, USA",(406) 723-3034,https://www.piccmuseum.com/,46.01346969999999,-112.5364497,Butte +Anselmo Mine,"521 N Excelsior Ave, Butte, MT 59701, USA",Unknown,Unknown,46.0167587,-112.5492393,Butte +Butte Urban Safari Tours (B.U.S.T),"842 W Galena St, Butte, MT 59701, USA",(406) 723-3959,Unknown,46.01126199999999,-112.548776,Butte +Berkeley Pit Viewing Stand,"The Berkeley Pit Visitor Center, 300 Continental Dr, Butte, MT 59701, USA",(406) 723-3177,https://www.visitmt.com/listings/general/landmark/berkeley-pit.html,46.01123949999999,-112.5183281,Butte +Lexington Mine,"1402 N Main St, Butte, MT 59701, USA",Unknown,Unknown,46.0281106,-112.5352282,Butte +Alice Mine,"207 Williams St, Butte, MT 59701, USA",Unknown,Unknown,46.0338936,-112.5382694,Butte +Museum of the Great Plains,"601 NW Ferris Ave, Lawton, OK 73507, USA",(580) 581-3460,http://www.discovermgp.org/,34.617559,-98.397868,Lawton +Elmer Thomas Park,"501 NW Ferris Ave, Lawton, OK 73507, USA",(580) 581-3400,https://www.lawtonok.gov/index.php/places/elmer-thomas-park,34.61934160000001,-98.39516379999999,Lawton +Comanche National Museum and Cultural Center,"701 NW Ferris Ave, Lawton, OK 73507, USA",(580) 353-0404,http://www.comanchemuseum.com/,34.6186385,-98.3988789,Lawton +Historic Mattie Beal Home,"1008 SW 5th St, Lawton, OK 73501, USA",(580) 678-3156,http://www.lawtonheritage.org/,34.5955701,-98.3947676,Lawton +Urban Air Trampoline and Adventure Park,"5324 NW Cache Rd, Lawton, OK 73505, USA",(580) 303-7243,https://www.urbanair.com/oklahoma-lawton/,34.62251210000001,-98.4606954,Lawton +Fort Sill National Historic Landmark and Museum,"435 Quanah Rd, Fort Sill, OK 73503, USA",(580) 442-5123,https://sill-www.army.mil/fs-museum/,34.669632,-98.38608300000001,Lawton +Shepler Square Park,"406 W Gore Blvd, Lawton, OK 73501, USA",(580) 919-9144,Unknown,34.60838469999999,-98.3942671,Lawton +Liberty Lake Park,"Lawton, OK 73507, USA",(580) 581-3400,Unknown,34.6210862,-98.416709,Lawton +Laugh Out Loud,"6720 Quanah Parker Trailway, Lawton, OK 73505, USA",(580) 536-4386,http://lollawton.com/,34.63014499999999,-98.47706799999999,Lawton +Medicine Bluff Historical Marker,"Lawton, OK 73503, USA",Unknown,Unknown,34.6854414,-98.41538779999999,Lawton +Missile Park,"Lawton, OK 73503, USA",Unknown,Unknown,34.66540119999999,-98.38399059999999,Lawton +Ambrosia Springs Park,"Ambrosia Springs Rd, Lawton, OK 73503, USA",Unknown,Unknown,34.6762658,-98.3857032,Lawton +Medicine Park Aquarium and Natural Sciences Center,"1 Aquarium Dr, Medicine Park, OK 73557, USA",(580) 529-3601,https://mpmns.org/,34.72738739999999,-98.50789859999999,Lawton +Kid's Zone at Greer Park,"541-573 NW 38th St, Lawton, OK 73505, USA",Unknown,Unknown,34.6173435,-98.4388488,Lawton +Twisted Escape Rooms-Lawton,"4602, 201 SW C Ave ste b, Lawton, OK 73501, USA",(580) 583-7688,Unknown,34.6053775,-98.39078669999999,Lawton +Ragamuffins Indoor Play Center,"815 SE Interstate Dr, Lawton, OK 73501, USA",Unknown,Unknown,34.5985354,-98.37851889999999,Lawton +Iolani Palace,"364 S King St, Honolulu, HI 96813, USA",(808) 522-0822,https://www.iolanipalace.org/,21.3067572,-157.8587697,Honolulu +Bishop Museum,"1525 Bernice St, Honolulu, HI 96817, USA",(808) 847-3511,https://www.bishopmuseum.org/,21.3329195,-157.8706127,Honolulu +Aloha Tower,"Aloha Tower, 155 Ala Moana Blvd, Honolulu, HI 96813, USA",(808) 544-1453,https://alohatower.com/,21.3071238,-157.8660266,Honolulu +Honolulu Zoo,"151 Kapahulu Ave, Honolulu, HI 96815, USA",(808) 926-3191,https://www.honolulu.gov/zoo.html,21.2710896,-157.8214785,Honolulu +Waikiki Aquarium,"2777 Kalākaua Ave, Honolulu, HI 96815, USA",(808) 923-9741,https://www.waikikiaquarium.org/,21.2657981,-157.8216482,Honolulu +Waikīkī Beach,"Waikiki, Honolulu, HI 96815, USA",Unknown,https://noahlangphotography.com/blog/best-waikiki-beach-hotels-and-food-oahu-hawaii,21.276235,-157.8273177,Honolulu +Honolulu festival,"2131-2141 Kalākaua Ave, Honolulu, HI 96815, USA",Unknown,Unknown,21.2813184,-157.8305062,Honolulu +Honolulu Museum of Art (HoMA),"900 S Beretania St., Honolulu, HI 96814, USA",(808) 532-8700,https://honolulumuseum.org/,21.3037991,-157.8487014,Honolulu +Duke Paoa Kahanamoku Statue,"Kalākaua Ave, Honolulu, HI 96815, USA",Unknown,https://www.publicartinpublicplaces.info/duke-paoa-kahanamoku-1990-by-jan-gordon-fisher,21.2755195,-157.8253238,Honolulu +"Shangri La Museum of Islamic Art, Culture & Design","4055 Pāpū Cir, Honolulu, HI 96816, USA",(808) 734-1941,http://www.shangrilahawaii.org/,21.2570987,-157.7949963,Honolulu +Lānaʻi Lookout,"8102 Kalanianaʻole Hwy, Honolulu, HI 96825, USA",Unknown,Unknown,21.2764765,-157.6856114,Honolulu +Spitting Cave,"7 Lumahai St, Honolulu, HI 96825, USA",Unknown,Unknown,21.2595075,-157.7076774,Honolulu +Pearl Harbor National Memorial,"1 Arizona Memorial Pl, Honolulu, HI 96818, USA",(808) 422-3399,https://www.nps.gov/perl/index.htm,21.3675985,-157.938858,Honolulu +Foster Botanical Garden,"50 N Vineyard Blvd, Honolulu, HI 96817, USA",(808) 768-7135,http://www.honolulu.gov/cms-dpr-menu/site-dpr-sitearticles/568-foster-botanical-garden.html,21.3168139,-157.8590314,Honolulu +Tantalus Lookout - Puu Ualakaa State Park,"Nutridge St, Honolulu, HI 96822, USA",(808) 587-0300,http://dlnr.hawaii.gov/dsp/parks/oahu/puu-ualakaa-state-wayside/,21.3134333,-157.8228472,Honolulu +Don Ho Statue,"2324 Kalākaua Ave, Honolulu, HI 96815, USA",Unknown,Unknown,21.2777474,-157.8268775,Honolulu +Kūhiō Beach,"2453 Kalākaua Ave, Honolulu, HI 96815, USA",(808) 768-3003,http://www.honolulu.gov/parks/default/about-us.html,21.27277239999999,-157.8238124,Honolulu +Ala Moana Regional Park,"1201 Ala Moana Blvd, Honolulu, HI 96814, USA",(808) 768-4611,http://www.honolulu.gov/parks,21.28996859999999,-157.847657,Honolulu +Great Lawn,"2003 Kālia Rd, Honolulu, HI 96815, USA",Unknown,Unknown,21.2829014,-157.8381675,Honolulu +King David Kalākaua Statue,"2050 Kalākaua Ave, Honolulu, HI 96815, USA",Unknown,Unknown,21.2839332,-157.831693,Honolulu +Greenville Zoo,"150 Cleveland Park Dr, Greenville, SC 29601, USA",(864) 467-4300,http://www.greenvillezoo.com/,34.8474429,-82.3859678,Greenville +Falls Park on the Reedy,"601 S Main St, Greenville, SC 29601, USA",(864) 467-4350,https://www.greenvillesc.gov/167/Falls-Park,34.8449748,-82.4015955,Greenville +The Children’s Museum of the Upstate,"300 College St, Greenville, SC 29601, USA",(864) 233-7755,https://tcmupstate.org/greenville/,34.8558685,-82.4004377,Greenville +Runway Park at GMU,"21 Airport Rd Ext, Greenville, SC 29607, USA",(864) 242-4777,https://www.greenvilledowntownairport.com/runway-park,34.84456900000001,-82.35085869999999,Greenville +Roper Mountain Science Center,"402 Roper Mountain Rd, Greenville, SC 29615, USA",(864) 355-8900,http://www.ropermountain.org/,34.83904499999999,-82.3092369,Greenville +Upcountry History Museum,"540 Buncombe St, Greenville, SC 29601, USA",(864) 467-3100,https://www.upcountryhistory.org/,34.8571405,-82.4029296,Greenville +Linky Stone Park: The Children's Garden,"24 Reedy View Dr, Greenville, SC 29601, USA",(864) 232-2273,Unknown,34.84904229999999,-82.4035291,Greenville +Greenville County Museum of Art,"420 College St, Greenville, SC 29601, USA",(864) 271-7570,http://www.gcma.org/,34.85632940000001,-82.4007379,Greenville +Escape Artist Greenville - Downtown,"209 E Stone Ave, Greenville, SC 29609, USA",(864) 509-9305,https://www.escapeartistgreenville.com/,34.8608835,-82.3910607,Greenville +Frankie's Fun Park,"45 Park Woodruff Dr, Greenville, SC 29607, USA",(864) 627-9888,http://www.frankies.com/,34.8211652,-82.29605649999999,Greenville +River Lodge,"S Main St, Greenville, SC 29601, USA",(864) 467-4350,Unknown,34.84336809999999,-82.4001351,Greenville +Downtown Greenville,"S Main St, Greenville, SC 29605, USA",(864) 271-5333,https://www.greenvillesc.gov/424/Explore-Downtown,34.8484905,-82.4000174,Greenville +Cancer Survivors Park,"52 Cleveland St, Greenville, SC 29601, USA",(864) 255-5010,http://www.cancersurvivorspark.org/,34.8414497,-82.3979741,Greenville +Unity Park,"320 S Hudson St, Greenville, SC 29601, USA",(864) 467-8000,https://www.greenvillesc.gov/1843/Unity-Park,34.85065599999999,-82.41013,Greenville +Museum & Library of Confederate History,"15 Boyce Ave, Greenville, SC 29601, USA",(864) 421-9039,http://www.confederatemuseum.org/,34.8500115,-82.3873703,Greenville +Cleveland Park,"Cleveland Park Dr & East Washington, Greenville, SC 29601, USA",(864) 467-4355,https://www.greenvillesc.gov/1581/Cleveland-Park,34.8493214,-82.38468519999999,Greenville +Legacy Park,"336 Rocky Slope Rd, Greenville, SC 29607, USA",(864) 467-4355,https://www.greenvillesc.gov/1580/Legacy-Park,34.8293197,-82.3324931,Greenville +Conestee Nature Preserve,"840 Mauldin Rd, Greenville, SC 29607, USA",(864) 277-2004,https://conesteepreserve.org/,34.7751711,-82.3546277,Greenville +Flying Rabbit Adventures,"821 Laurens Rd, Greenville, SC 29607, USA",(864) 230-0191,https://www.flyingrabbitadventures.com/?utm_source=google&utm_medium=organic&utm_campaign=gbp,34.8490064,-82.3721679,Greenville +Sigal Music Museum,"516 Buncombe St, Greenville, SC 29601, USA",(864) 520-8807,https://sigalmusicmuseum.org/?utm_source=google&utm_medium=organic&utm_campaign=gbp,34.8565111,-82.4027926,Greenville +Glacier Gardens Rainforest Adventure,"7600 Glacier Hwy, Juneau, AK 99801, USA",(907) 790-3377,http://www.glaciergardens.com/,58.360371,-134.548916,Juneau +Alaska State Museum,"395 Whittier St, Juneau, AK 99801, USA",(907) 465-2901,https://museums.alaska.gov/asm/,58.29992410000001,-134.4156397,Juneau +Mendenhall Glacier Visitor Center,"6000 Glacier Spur Rd, Juneau, AK 99801, USA",(907) 789-0097,https://www.fs.usda.gov/detail/tongass/about-forest/offices/?cid=stelprdb5400800,58.41722369999999,-134.5457934,Juneau +Juneau-Douglas City Museum,"114 W 4th St, Juneau, AK 99801, USA",(907) 586-3572,http://www.juneau.org/museum/,58.3018345,-134.4112893,Juneau +AJ Mine Gastineau Mill Tours,"500 Sheep Creek Mine Rd, Juneau, AK 99801, USA",(907) 500-5186,http://www.ajgastineauminetour.com/,58.26591740000001,-134.3334914,Juneau +Joe Juneau Memorial,"86 Glacier Ave, Juneau, AK 99801, USA",Unknown,Unknown,58.300618,-134.4200607,Juneau +-,"120 4th St, Juneau, AK 99801, USA",Unknown,Unknown,58.30211140000001,-134.4104716,Juneau +Juneau Channel Island State Marine Park,"Favorite Channel, Juneau, AK, USA",(907) 269-8400,Unknown,58.47844980000001,-134.9286281,Juneau +Eagle Beach,"Juneau, AK 99801, USA",Unknown,Unknown,58.52917029999999,-134.8286179,Juneau +Last Chance Mining Museum,"1001 Basin Rd, Juneau, AK 99801, USA",(907) 586-5338,https://www.facebook.com/lastchanceminingmuseum,58.3054727,-134.3844031,Juneau +Mendenhall Glacier (Áakʼw Tʼáak Sítʼ),"CFR3+HM4, Juneau, AK 99801, USA",Unknown,Unknown,58.44138749999999,-134.5457969,Juneau +Juneau's Best Tours,"230 S Franklin St #906, Juneau, AK 99801, USA",Unknown,Unknown,58.29955870000001,-134.4045438,Juneau +The Whale Project,"Harris Harbor Way, Juneau, AK 99801, USA",(907) 723-9999,https://www.alaskawhalesculpture.com/,58.299121,-134.4264335,Juneau +OverStreet Park,"Harris Harbor Way, Juneau, AK 99801, USA",(907) 586-2787,https://beta.juneau.org/,58.2993014,-134.4264713,Juneau +Eaglecrest Ski Area,"3000 Fish Creek Rd, Juneau, AK 99801, USA",(907) 790-2000,https://skieaglecrest.com/,58.2745312,-134.5128166,Juneau +"National Shrine of St. Thérèse, Juneau","21425 Glacier Hwy, Juneau, AK 99801, USA",(907) 789-9815,https://www.shrineofsainttherese.org/,58.47230930000001,-134.787191,Juneau +Cope Park,"Cope Park Rd, Juneau, AK 99801, USA",(907) 586-5226,https://juneau.org/parks-recreation/cope-park,58.30500189999999,-134.4126738,Juneau +Father Brown Cross,"Downtown Juneau, Juneau, AK 99801, USA",Unknown,Unknown,58.29593440000001,-134.3816527,Juneau +Ernest Gruening State Historic Park,"Amalga Harbor Rd, Juneau, AK 99801, USA",Unknown,Unknown,58.4937681,-134.7874323,Juneau +Alaska Skoolie Adventures,"3820 Kiowa Dr, Juneau, AK 99801, USA",(907) 209-7438,https://www.airbnb.com/users/show/275382236,58.39017749999999,-134.5674136,Juneau +SkyWheel Myrtle Beach,"1110 N Ocean Blvd, Myrtle Beach, SC 29577, USA",(843) 839-9200,http://skywheelmb.com/,33.6940259,-78.87737179999999,Myrtle Beach +WonderWorks Myrtle Beach,"1313 Celebrity Cir, Myrtle Beach, SC 29577, USA",(843) 626-9962,http://www.wonderworksonline.com/myrtle-beach,33.71682030000001,-78.8843065,Myrtle Beach +Family Kingdom Amusement Park,"300 S Ocean Blvd, Myrtle Beach, SC 29577, USA",(843) 626-3447,http://www.familykingdomfun.com/,33.682392,-78.89193159999999,Myrtle Beach +Hollywood Wax Museum,"1808 21st Ave N unit a, Myrtle Beach, SC 29577, USA",(843) 444-0091,https://www.hollywoodwaxentertainment.com/myrtle-beach-sc-attractions/,33.7171419,-78.89125729999999,Myrtle Beach +Ripley's Aquarium of Myrtle Beach,"1110 Celebrity Cir, Myrtle Beach, SC 29577, USA",(843) 916-0888,https://www.ripleyaquariums.com/myrtlebeach/,33.7157371,-78.8779414,Myrtle Beach +Broadway at the Beach,"1325 Celebrity Cir, Myrtle Beach, SC 29577, USA",(843) 444-3200,https://www.broadwayatthebeach.com/,33.71561730000001,-78.8819491,Myrtle Beach +Ripley's Believe It or Not!,"901 N Ocean Blvd, Myrtle Beach, SC 29577, USA",(843) 916-0888,http://www.ripleys.com/myrtlebeach,33.69245410000001,-78.8797541,Myrtle Beach +Ripley's Haunted Adventure,"915 N Ocean Blvd, Myrtle Beach, SC 29577, USA",(843) 916-0888,https://www.ripleys.com/myrtlebeach/haunted-adventure/,33.6932294,-78.8789223,Myrtle Beach +Myrtle Beach Boardwalk and Promenade,"Myrtle Beach, Myrtle Beach Boardwalk and Promenade, Myrtle Beach, SC 29577, USA",(843) 918-1000,http://www.myrtlebeachdowntown.com/,33.6932866,-78.87757959999999,Myrtle Beach +Plyler Park,"1000 N Ocean Blvd, Myrtle Beach, SC 29577, USA",(843) 918-1014,Unknown,33.6934613,-78.877809,Myrtle Beach +Soar + Explore,"1313 Celebrity Cir, Myrtle Beach, SC 29577, USA",(843) 626-9962,http://www.wonderworksonline.com/myrtle-beach/the-experience/soar-explore/,33.7166601,-78.8840046,Myrtle Beach +Free Fall Thrill Park,"1201 N Ocean Blvd, Myrtle Beach, SC 29577, USA",(843) 444-8255,http://freefallpark.com/,33.6946055,-78.877455,Myrtle Beach +Ripley's Mirror Maze,"913 N Ocean Blvd, Myrtle Beach, SC 29577, USA",(843) 916-0888,https://www.ripleys.com/myrtlebeach/ripleys-mirror-maze/,33.6932293,-78.8789223,Myrtle Beach +Myrtle Beach State Park,"4401 S Kings Hwy, Myrtle Beach, SC 29575, USA",(843) 238-5325,https://southcarolinaparks.com/myrtle-beach,33.6511978,-78.93062499999999,Myrtle Beach +Hannah's Maze of Mirrors,"1808 21st Ave N Unit C, Myrtle Beach, SC 29577, USA",(843) 444-0091,https://www.hollywoodwaxentertainment.com/myrtle-beach-sc-attractions/,33.71727529999999,-78.8913015,Myrtle Beach +Myrtle Beach Safari (by reservation only),"851 Folly Ranch Ln, Myrtle Beach, SC 29588, USA",(843) 361-4552,https://docantlesdaysafari.com/,33.695161,-78.96923199999999,Myrtle Beach +Dinopark,"1112 Celebrity Cir, Myrtle Beach, SC 29577, USA",(843) 808-9619,http://www.dinoparkmb.com/,33.7154995,-78.8775139,Myrtle Beach +Backstage Mirror Maze,"1314 Celebrity Cir #165, Myrtle Beach, SC 29577, USA",(843) 712-1794,http://www.backstagemirrormaze.com/,33.7178823,-78.88289569999999,Myrtle Beach +The Pavilion Parks,"1325 Celebrity Cir, Myrtle Beach, SC 29577, USA",(843) 839-0303,https://pavilionparks.com/,33.71561730000001,-78.8819491,Myrtle Beach +Gardens By The Sea,"5506 N Ocean Blvd #5504, Myrtle Beach, SC 29577, USA",Unknown,Unknown,33.7257741,-78.8380281,Myrtle Beach +Public Garden,"Boston, MA 02116, USA",(617) 635-4505,https://www.boston.gov/parks/public-garden,42.35406389999999,-71.0700921,Boston +Museum of Science,"Museum Of Science Driveway, Boston, MA 02114, USA",(617) 723-2500,https://www.mos.org/,42.367714,-71.0709771,Boston +New England Aquarium,"1 Central Wharf, Boston, MA 02110, USA",(617) 973-5200,https://www.neaq.org/,42.3592478,-71.0491475,Boston +Boston Tea Party Ships & Museum,"306 Congress St, Boston, MA 02210, USA",(617) 338-1773,https://www.bostonteapartyship.com/,42.35218209999999,-71.0512911,Boston +Boston Common,"139 Tremont St, Boston, MA 02111, USA",(617) 635-4505,https://www.boston.gov/departments/parks-and-recreation,42.3550897,-71.0657256,Boston +Faneuil Hall Marketplace,"Boston, MA 02109, USA",(617) 523-1300,https://faneuilhallmarketplace.com/,42.360189,-71.0551145,Boston +Bunker Hill Monument,"Monument Sq, Charlestown, MA 02129, USA",(617) 242-5641,http://www.nps.gov/bost/historyculture/bhm.htm,42.37635409999999,-71.0607764,Boston +Fenway Park,"4 Jersey St, Boston, MA 02215, USA",(877) 733-7699,https://www.mlb.com/redsox/ballpark,42.3466764,-71.0972178,Boston +View Boston,"800 Boylston St Floor 52, Boston, MA 02199, USA",(617) 544-3535,https://www.viewboston.com/,42.3471679,-71.0825119,Boston +Old State House,"206 Washington St, Boston, MA 02109, USA",(617) 720-1713,https://www.revolutionaryspaces.org/,42.3587352,-71.05745399999999,Boston +Charles River Esplanade,"Charles River, Esplanade, Boston, MA 02116, USA",(617) 227-0365,http://esplanade.org/,42.3556187,-71.0788876,Boston +Black Heritage Trail,"46 Joy St, Boston, MA 02114, USA",(508) 228-9833,https://www.nps.gov/boaf/planyourvisit/index.htm,42.3599907,-71.065214,Boston +Castle Island,"2010 William J Day Blvd, Boston, MA 02127, USA",(617) 727-5290,https://www.mass.gov/locations/castle-island-pleasure-bay-m-street-beach-and-carson-beach,42.33786989999999,-71.0125206,Boston +Boston Children's Museum,"308 Congress St, Boston, MA 02210, USA",(617) 426-6500,https://bostonchildrensmuseum.org/,42.3519736,-71.04968389999999,Boston +"Museum of Fine Arts, Boston","465 Huntington Ave, Boston, MA 02115, USA",(617) 267-9300,https://www.mfa.org/,42.339381,-71.094048,Boston +Boston Waterfront,"1 Marina Park Drive, Boston, MA 02210, USA",Unknown,Unknown,42.354529,-71.043897,Boston +The Paul Revere House,"19 N Square, Boston, MA 02113, USA",(617) 523-2338,http://www.paulreverehouse.org/,42.363739,-71.05369999999999,Boston +John F. Kennedy Presidential Library and Museum,"Columbia Point, Boston, MA 02125, USA",(617) 514-1600,https://www.jfklibrary.org/,42.316274,-71.0342146,Boston +The Boston Stone,"Marshall St, Boston, MA 02108, USA",Unknown,Unknown,42.3617145,-71.0568536,Boston +Observation Deck at Independence Wharf,"470 Atlantic Ave, Boston, MA 02210, USA",Unknown,Unknown,42.3541519,-71.05141069999999,Boston +Pineapple Fountain,"1 Vendue Range, Charleston, SC 29401, USA",(843) 724-5003,Unknown,32.7780879,-79.9251889,Charleston +South Carolina Aquarium,"100 Aquarium Wharf, Charleston, SC 29401, USA",(843) 577-3474,http://scaquarium.org/,32.7909936,-79.92549919999999,Charleston +Rainbow Row,"83-107 E Bay St, Charleston, SC 29401, USA",(803) 528-8317,http://rainbowrowcharlestonsc.com/,32.7753504,-79.9273372,Charleston +The Charleston Museum,"360 Meeting St, Charleston, SC 29403, USA",(843) 722-2996,https://www.charlestonmuseum.org/,32.7896061,-79.9356663,Charleston +Charleston City Market,"188 Meeting St, Charleston, SC 29401, USA",(843) 937-0920,http://www.thecharlestoncitymarket.com/,32.78084439999999,-79.93055,Charleston +Joe Riley Waterfront Park,"Vendue Range, Concord St, Charleston, SC 29401, USA",Unknown,Unknown,32.778966,-79.9255465,Charleston +Aiken-Rhett House Museum,"48 Elizabeth St, Charleston, SC 29403, USA",(843) 723-1159,https://www.historiccharleston.org/house-museums/aiken-rhett-house/,32.7914295,-79.9348077,Charleston +Charles Towne Landing State Historic Site,"1500 Old Towne Rd, Charleston, SC 29407, USA",(843) 852-4200,http://www.southcarolinaparks.com/ctl,32.8104054,-79.9951397,Charleston +Nathaniel Russell House,"51 Meeting St, Charleston, SC 29401, USA",(843) 724-8481,https://www.historiccharleston.org/house-museums/nathaniel-russell-house/,32.77399719999999,-79.93102990000001,Charleston +White Point Garden,"2 Murray Blvd, Charleston, SC 29401, USA",Unknown,Unknown,32.7699361,-79.9303611,Charleston +Old Exchange and Provost Dungeon,"122 E Bay St, Charleston, SC 29401, USA",(843) 727-2166,http://oldexchange.org/,32.7768533,-79.9269411,Charleston +Drayton Hall,"3380 Ashley River Rd, Charleston, SC 29414, USA",(843) 769-2600,http://www.draytonhall.org/,32.87089949999999,-80.0763195,Charleston +McLeod Plantation Historic Site,"325 Country Club Dr, Charleston, SC 29412, USA",(843) 762-9514,https://www.ccprc.com/1447/McLeod-Plantation-Historic-Site,32.7631484,-79.9730658,Charleston +Children's Museum of the Lowcountry,"25 Ann St, Charleston, SC 29403, USA",(843) 853-8962,http://explorecml.org/,32.789416,-79.9376529,Charleston +Charleston Pirate Tours,"79 Cumberland St, Charleston, SC 29401, USA",(843) 442-7299,https://charlestonpiratetour.com/,32.7794474,-79.9300671,Charleston +Boone Hall Plantation & Gardens,"1235 Long Point Rd, Mt Pleasant, SC 29464, USA",(843) 884-4371,http://boonehallplantation.com/,32.8582446,-79.82311490000001,Charleston +Old Slave Mart Museum,"6 Chalmers St, Charleston, SC 29401, USA",(843) 958-6467,http://oldslavemartmuseum.com/,32.77782429999999,-79.92841109999999,Charleston +Middleton Place,"4300 Ashley River Rd, Charleston, SC 29414, USA",(843) 556-6020,http://www.middletonplace.org/,32.8999341,-80.13776899999999,Charleston +Pirates of Charleston,"95 Ripley Point Dr, Charleston, SC 29407, USA",Unknown,https://piratesofcharleston.com/,32.7772275,-79.96233600000001,Charleston +Fort Sumter and Fort Moultrie National Historical Park,"340 Concord St, Charleston, SC 29401, USA",(843) 577-0242,http://www.nps.gov/fosu/,32.7523958,-79.8751625,Charleston +Latrobe Area Historical Society,"416 Weldon St, Latrobe, PA 15650, USA",(724) 539-8889,https://www.latrobehistory.org/,40.3175393,-79.3814622,Latrobe +Winnie Palmer Nature Reserve,"744 Walzer Way, Latrobe, PA 15650, USA",(724) 537-5284,https://www.wpnr.org/,40.288553,-79.394888,Latrobe +Legion Keener Park,"1658 Catherine St, Latrobe, PA 15650, USA",(724) 537-4331,http://www.latroberecreation.org/legionkeenerpark.html,40.30967279999999,-79.38865489999999,Latrobe +Lincoln Highway Experience,"3435 Route 30 East, Latrobe, PA 15650, USA",(724) 879-4241,http://lhhc.org/,40.2914433,-79.34184139999999,Latrobe +Twin Lakes Park,"219 Twin Lakes Rd, Latrobe, PA 15650, USA",(724) 830-3950,http://www.co.westmoreland.pa.us/index.aspx?NID=737,40.32230870000001,-79.47196319999999,Latrobe +Latrobe Skating Center,"2914 Ligonier St, Latrobe, PA 15650, USA",(724) 537-8541,http://www.latrobeskatingcenter.com/,40.29796,-79.3656584,Latrobe +World's Fair Park,"525 Henley St, Knoxville, TN 37902, USA",(865) 215-1158,http://worldsfairpark.org/,35.9625774,-83.9241924,Knoxville +Sunsphere,"810 Clinch Ave, Knoxville, TN 37902, USA",(865) 314-0660,http://www.sunspheretickets.com/,35.961707,-83.92335349999999,Knoxville +Knoxville Museum of Art,"1050 Worlds Fair Park Dr, Knoxville, TN 37916, USA",(865) 525-6101,http://www.knoxart.org/,35.9624258,-83.9252288,Knoxville +Ijams Nature Center,"2915 Island Home Ave, Knoxville, TN 37920, USA",(865) 577-4717,http://www.ijams.org/,35.9564535,-83.8667753,Knoxville +Knoxville Walking Tours,"301 S Gay St, Knoxville, TN 37902, USA",(865) 309-4522,http://knoxvillewalkingtours.com/,35.9664481,-83.91916739999999,Knoxville +Muse Knoxville,"516 N Beaman St, Knoxville, TN 37914, USA",(865) 594-1494,http://www.themuseknoxville.org/,35.9976168,-83.88546749999999,Knoxville +Knoxville Botanical Garden and Arboretum,"2743 Wimpole Ave, Knoxville, TN 37914, USA",(865) 862-8717,http://www.knoxgarden.org/,35.9821601,-83.88107699999999,Knoxville +Haunted Knoxville Ghost Tours,"36 Market Square #1404, Knoxville, TN 37902, USA",(865) 377-9677,http://www.hauntedknoxville.net/,35.96596299999999,-83.9195529,Knoxville +Three Rivers Rambler,"2560 University Commons Way, Knoxville, TN 37919, USA",(865) 524-9411,http://www.threeriversrambler.com/,35.9528101,-83.9403756,Knoxville +McClung Museum of Natural History & Culture,"1327 Cir Park Dr, Knoxville, TN 37996, USA",(865) 974-2144,http://mcclungmuseum.utk.edu/,35.952005,-83.9272094,Knoxville +Chilhowee Park & Exposition Center,"3301 E Magnolia Ave, Knoxville, TN 37914, USA",(865) 215-1450,https://chilhoweepark.com/,35.9962958,-83.8840324,Knoxville +Charles Krutch Park,"504 Market St, Knoxville, TN 37902, USA",(865) 215-4248,https://www.knoxvilletn.gov/government/city_departments_offices/parks_and_recreation/parks/krutch_park,35.9644142,-83.9186952,Knoxville +Knoxville Sightseeing,"2519 Mitchell St, Knoxville, TN 37917, USA",(865) 566-0634,Unknown,35.9927898,-83.90412769999999,Knoxville +Augusta Quarry,"3000 Fort Dickerson Rd SW, Knoxville, TN 37920, USA",Unknown,Unknown,35.94477150000001,-83.9118858,Knoxville +Zoo Knoxville,"3500 Knoxville Zoo Dr, Knoxville, TN 37914, USA",(865) 637-5331,https://www.zooknoxville.org/,35.9998122,-83.8882497,Knoxville +Outdoor Knoxville Adventure Center,"900 Volunteer Landing Ln, Knoxville, TN 37915, USA",(865) 228-8424,http://www.outdoorknoxville.com,35.9619021,-83.9126632,Knoxville +James White Fort Association,"205 E Hill Ave, Knoxville, TN 37915, USA",(865) 525-6514,http://jameswhitesfort.org/,35.9629616,-83.9121693,Knoxville +UT Gardens Knoxville,"2518 Jacob Dr, Knoxville, TN 37996, USA",(865) 974-7324,http://utgardens.tennessee.edu/locations/knoxville,35.9439999,-83.9382601,Knoxville +"Rowing Man Statue in Knoxville, TN","W. Church Avenue &, S Gay St, Knoxville, TN 37902, USA",Unknown,Unknown,35.9636109,-83.9175188,Knoxville +East Tennessee Historical Society and Museum,"601 S Gay St, Knoxville, TN 37902, USA",(865) 215-8830,http://www.easttnhistory.org/,35.9641166,-83.9177945,Knoxville +Denver Zoo,"2300 Steele St, Denver, CO 80205, USA",(720) 337-1400,https://denverzoo.org/,39.74959609999999,-104.9508519,Denver +Denver Botanic Gardens,"1007 York St, Denver, CO 80206, USA",(720) 865-3500,https://www.botanicgardens.org/,39.7320964,-104.9612839,Denver +Denver Art Museum,"100 W 14th Ave Pkwy, Denver, CO 80204, USA",(720) 865-5000,https://denverartmuseum.org/,39.73718780000001,-104.9893451,Denver +Denver Museum of Nature & Science,"2001 Colorado Blvd, Denver, CO 80205, USA",(303) 370-6000,https://www.dmns.org/,39.74752609999999,-104.9428078,Denver +Molly Brown House Museum,"1340 Pennsylvania St, Denver, CO 80203, USA",(303) 832-4092,https://mollybrown.org/,39.7374933,-104.9807338,Denver +Big Blue Bear,"750-776 14th St, Denver, CO 80202, USA",Unknown,http://bluebearstudios.com/,39.7436238,-104.9952912,Denver +Elitch Gardens,"2000 Elitch Cir, Denver, CO 80204, USA",(303) 595-4386,https://www.elitchgardens.com/,39.750183,-105.0101417,Denver +Clyfford Still Museum,"1250 Bannock St, Denver, CO 80204, USA",(720) 354-4880,https://clyffordstillmuseum.org/,39.7363194,-104.9897917,Denver +History Colorado Center,"1200 Broadway, Denver, CO 80203, USA",(303) 447-8679,https://www.historycolorado.org/history-colorado-center?utm_source=GoogleBusinessListing,39.73583740000001,-104.9871305,Denver +Historic Elitch Carousel Dome,"3775 Tennyson St, Denver, CO 80212, USA",Unknown,Unknown,39.76859109999999,-105.0446649,Denver +Beyond Light Show,"400 S Logan St, Denver, CO 80209, USA",Unknown,http://www.beyondlightshow.com/,39.7091597,-104.9822776,Denver +Colorado State Capitol,"200 E Colfax Ave, Denver, CO 80203, USA",(303) 866-2604,https://www.colorado.gov/pacific/capitol,39.73932509999999,-104.9848069,Denver +Meow Wolf Denver | Convergence Station,"1338 1st St, Denver, CO 80204, USA",(866) 636-9969,https://tickets.meowwolf.com/denver/#gbp,39.7408201,-105.0156629,Denver +Kirkland Museum of Fine & Decorative Art,"1201 Bannock St, Denver, CO 80204, USA",(303) 832-8576,http://www.kirklandmuseum.org/,39.7355683,-104.9905479,Denver +City Park,"2001 Colorado Blvd, Denver, CO 80205, USA",(720) 913-1311,http://www.denver.org/listings/City-Park/6822/,39.7476212,-104.9498084,Denver +Four Mile Historic Park,"715 S Forest St, Denver, CO 80246, USA",(720) 865-0800,http://fourmilepark.org/,39.7035422,-104.9292325,Denver +Forney Museum of Transportation,"4303 Brighton Blvd, Denver, CO 80216, USA",(303) 297-1113,http://www.forneymuseum.org/,39.7779854,-104.9706957,Denver +Confluence Park,"2250 15th St, Denver, CO 80202, USA",(720) 913-1311,http://www.denver.org/things-to-do/sports-recreation/denver-parks/,39.754654,-105.0073456,Denver +Denver Selfie Museum,"1531 Stout St Suite 102, Denver, CO 80202, USA",(303) 328-0104,https://denverselfiemuseum.com/,39.7453576,-104.9938072,Denver +Wings Over the Rockies Air & Space Museum,"7711 E Academy Blvd, Denver, CO 80230, USA",(303) 360-5360,http://wingsmuseum.org/,39.72089070000001,-104.8955075,Denver +Maine Discovery Museum,"74 Main St, Bangor, ME 04401, USA",(207) 262-7200,http://www.mainediscoverymuseum.org/,44.8000986,-68.7717374,Bangor +Cole Land Transportation Museum,"405 Perry Rd, Bangor, ME 04401, USA",(207) 990-3600,http://www.colemuseum.org/,44.7855519,-68.8049006,Bangor +Cascade Park,"600 State St, Bangor, ME 04401, USA",(207) 992-4490,Unknown,44.8113134,-68.7458284,Bangor +Broadway Park,"Bangor, ME 04401, USA",(207) 947-1018,http://www.bangorparksandrec.com/info/facilities,44.8110238,-68.7697526,Bangor +Bass Park,"Bangor, ME 04401, USA",(207) 947-5555,http://m.facebook.com/pages/Bass-Park/152605074749579,44.79054370000001,-68.78296449999999,Bangor +The Stephen & Tabitha King Foundation,"47 W Broadway, Bangor, ME 04401, USA",(207) 990-2910,http://www.stkfoundation.org/,44.8023001,-68.78499889999999,Bangor +Paul Bunyan Statue,"519 Main St, Bangor, ME 04401, USA",(207) 947-0307,http://www.bangormaine.gov/,44.78868310000001,-68.7783728,Bangor +Zillman Art Museum,"40 Harlow St, Bangor, ME 04401, USA",(207) 581-3300,http://www.zam.umaine.edu/,44.80316939999999,-68.7704815,Bangor +Bangor City Forest,"54 Tripp Dr, Bangor, ME 04401, USA",(207) 992-4490,http://cityforest.bangorinfo.com/,44.8632801,-68.74036509999999,Bangor +Gomez Park,"40-200 Broad St, Bangor, ME 04401, USA",(207) 992-4490,http://www.bangorparksandrec.com/,44.7988879,-68.77017620000001,Bangor +Bangor Historical Society,"159 Union St, Bangor, ME 04401, USA",(207) 942-1900,http://www.bangorhistoricalsociety.org/,44.799951,-68.77431059999999,Bangor +Hayford Park,"13th St, Bangor, ME 04401, USA",(207) 947-1018,http://www.bangorparksandrec.com/info/facilities/details.aspx?FacilityID=8711,44.80384649999999,-68.7874569,Bangor +Bangor amphitheater,"357 Odlin Rd, Bangor, ME 04401, USA",Unknown,Unknown,44.7884255,-68.8130067,Bangor +Northeast Penjajawoc Preserve,"Kittredge Rd, Bangor, ME 04401, USA",(207) 942-1010,http://www.bangorlandtrust.org/,44.853646,-68.74365139999999,Bangor +Penobscot River Walkway,"Bangor, ME 04401, USA",Unknown,Unknown,44.7950177,-68.7705451,Bangor +Orono Bog Boardwalk,"Tripp Dr, Bangor, ME 04401, USA",(207) 866-2578,http://www.oronobogwalk.org/,44.8680056,-68.7261071,Bangor +Thomas Hill Standpipe,"41 Thomas Hill Rd, Bangor, ME 04401, USA",(207) 947-4516,https://www.bangorwater.org/about-us/thomas-hill-standpipe/,44.8073883,-68.7828543,Bangor +Bangor waterfront sculptures,"26 Front St, Bangor, ME 04401, USA",Unknown,Unknown,44.7968884,-68.7697812,Bangor +Norumbega Parkway,"Franklin St, Bangor, ME 04401, USA",Unknown,Unknown,44.8027881,-68.77174579999999,Bangor +Mount Hope Cemetery Corp. & Crematory,"1048 State St, Bangor, ME 04401, USA",(207) 945-6589,http://mthopebgr.com/,44.8254899,-68.72642259999999,Bangor +Albany Institute of History & Art,"125 Washington Ave, Albany, NY 12210, USA",(518) 463-4478,http://www.albanyinstitute.org/,42.655725,-73.760233,Albany +New York State Museum,"222 Madison Ave, Albany, NY 12230, USA",(518) 474-5877,http://www.nysm.nysed.gov/,42.6485806,-73.7611611,Albany +Washington Park Lake House,"Washington Park Rd, Albany, NY 12203, USA",(518) 434-5699,https://www.albanyny.gov/,42.656183,-73.7719618,Albany +Hear about Here,"5 Columbia Cir Suite 1, Albany, NY 12203, USA",(518) 250-9488,http://www.hearabouthere.com/,42.7048002,-73.8645994,Albany +Discover Albany Visitors Center,"25 Quackenbush Square, Albany, NY 12207, USA",(518) 434-1217,http://www.albany.org/,42.654109,-73.7482442,Albany +Schuyler Mansion State Historic Site,"32 Catherine St, Albany, NY 12202, USA",(518) 434-0834,https://parks.ny.gov/historic-sites/33/details.aspx,42.641474,-73.759383,Albany +Washington Park,"35 Willett St, Albany, NY 12210, USA",(518) 992-6152,https://www.washingtonparkconservancy.org/,42.6574309,-73.770777,Albany +New York State Capitol,"State St. and, Washington Ave, Albany, NY 12224, USA",(518) 474-2418,http://empirestateplaza.ny.gov/,42.65277199999999,-73.7572388,Albany +Buckingham Lake Park,"39 Berkshire Blvd, Albany, NY 12203, USA",(518) 434-5699,Unknown,42.6641696,-73.8090533,Albany +USS SLATER,"141 Broadway, Albany, NY 12202, USA",(518) 431-1943,http://www.ussslater.org/,42.6424886,-73.7497636,Albany +Historic Cherry Hill,"523 1/2, 523 S Pearl St, Albany, NY 12202, USA",(518) 434-4791,https://www.historiccherryhill.org/,42.6348514,-73.7634157,Albany +Parks Recreation & Historic,"Albany, NY 12238, USA",(518) 474-0456,Unknown,42.65,-73.75999999999999,Albany +Irish American Heritage Museum,"21 Quackenbush Square, Albany, NY 12207, USA",(518) 427-1916,https://www.irish-us.org/,42.6542839,-73.74825,Albany +The McPherson Legacy to the City of Albany - Robert Burns Statue,"Washington Park Rd &, Hudson Ave, Albany, NY 12210, USA",Unknown,Unknown,42.6550745,-73.7679168,Albany +Ten Broeck Mansion,"9 Ten Broeck Pl, Albany, NY 12210, USA",(518) 436-9826,http://www.tenbroeckmansion.org/,42.6587337,-73.75117089999999,Albany +Jim DiNapoli Park,"Albany, NY 12207, USA",Unknown,Unknown,42.6503225,-73.7508196,Albany +Lincoln Park,"228 Eagle St, Albany, NY 12202, USA",(518) 434-3201,https://www.albanyny.gov/797/Lincoln-Park-Master-Plan,42.64597000000001,-73.76596339999999,Albany +East Capitol Park,"Eagle St, Albany, NY 12210, USA",(518) 474-5733,https://www.ogs.ny.gov/,42.6517889,-73.7560389,Albany +West Capitol Park,"West Capitol Park, State 85, S Swan St, Albany, NY 12210, USA",Unknown,Unknown,42.6534691,-73.7586339,Albany +Triangles and Arches by Alexander Calder,"134 Eagle St, Albany, NY 12202, USA",(518) 473-7521,https://empirestateplaza.ny.gov/art/alexander-calder,42.6494143,-73.7606768,Albany +Laishley Park,"Punta Gorda, FL 33950, USA",Unknown,http://www.ci.punta-gorda.fl.us/visitors/laishley-park,26.9387774,-82.0490536,Punta Gorda +Ponce De Leon Park,"3400 Ponce de Leon Pkwy, Punta Gorda, FL 33950, USA",(941) 575-5041,http://www.ci.punta-gorda.fl.us/visitors/ponce-de-leon-park,26.9098801,-82.09552029999999,Punta Gorda +Charlotte Harbor Preserve State Park,"12301 Burnt Store Rd, Punta Gorda, FL 33955, USA",(941) 575-5816,https://www.floridastateparks.org/parks-and-trails/charlotte-harbor-preserve-state-park,26.8504337,-82.0238705,Punta Gorda +Punta Gorda Nature Park,"1555 Aqui Esta Dr, Punta Gorda, FL 33950, USA",Unknown,http://www.ci.punta-gorda.fl.us/Home/Components/FacilityDirectory/FacilityDirectory/50/630,26.9094442,-82.06932479999999,Punta Gorda +Gilchrist Park,"400 W Retta Esplanade, Punta Gorda, FL 33950, USA",(941) 575-3324,http://www.ci.punta-gorda.fl.us/visitors/gilchrist-park,26.9335081,-82.0561872,Punta Gorda +Peace River Wildlife Center,"3400 Ponce de Leon Pkwy, Punta Gorda, FL 33950, USA",(941) 637-3830,https://www.prwildlife.org/,26.910993,-82.09534359999999,Punta Gorda +Charlotte Harbor Environmental Center,"10941 Burnt Store Rd, Punta Gorda, FL 33955, USA",(941) 575-5435,http://checflorida.org/,26.874246,-82.027254,Punta Gorda +Peace River Botanical & Sculpture Gardens,"5827 Riverside Dr, Punta Gorda, FL 33982, USA",(941) 621-8299,http://www.peacerivergardens.org/,26.9643263,-81.98863010000001,Punta Gorda +Escape Rooms Unlocked - Punta Gorda,"401 E Olympia Ave #2, Punta Gorda, FL 33950, USA",(941) 295-6880,http://escaperoomsunlocked.com/,26.937278,-82.044708,Punta Gorda +Blanchard House Museum,"406 Dr Martin Luther King Jr Blvd, Punta Gorda, FL 33950, USA",(941) 575-7518,http://www.blanchardhousemuseum.org/,26.9361476,-82.0438735,Punta Gorda +Military Heritage Museum,"900 W Marion Ave, Punta Gorda, FL 33950, USA",(941) 575-9002,https://militaryheritagemuseum.org/,26.929012,-82.05981539999999,Punta Gorda +Punta Gorda Boat Center,"5258 River Bay Dr, Punta Gorda, FL 33950, USA",(239) 273-1272,Unknown,26.891385,-82.054407,Punta Gorda +Alligator Bay Distillers,"25522 Marion Ave, Punta Gorda, FL 33950, USA",(941) 347-8419,http://www.alligatorbaydistillers.com/,26.9431209,-82.0233473,Punta Gorda +Hector House Plaza,"227 Taylor St, Punta Gorda, FL 33950, USA",Unknown,Unknown,26.9344632,-82.0505711,Punta Gorda +Peace River Preserve,"28000 Sandhill Blvd, Punta Gorda, FL 33983, USA",(941) 613-3220,https://www.charlottecountyfl.gov/departments/community-services/parks/all-parks/peace-river-preserve.stml,27.0153962,-81.99352030000001,Punta Gorda +Bayshore Live Oak Park,"23157 Bayshore Rd, Port Charlotte, FL 33980, USA",(941) 627-1628,https://www.charlottecountyfl.gov/departments/community-services/parks/all-parks/bayshore-live-oak-park.stml,26.9565887,-82.071032,Punta Gorda +Pittman Park,"W Retta Esplanade, Punta Gorda, FL 33950, USA",Unknown,http://www.ci.punta-gorda.fl.us/Home/Components/FacilityDirectory/FacilityDirectory/59/59?selcat=178,26.9297978,-82.06050929999999,Punta Gorda +Sea Grape Artists Gallery,"113 W Marion Ave, Punta Gorda, FL 33950, USA",(941) 575-1718,http://seagrapegallery.com/,26.9357713,-82.05019639999999,Punta Gorda +Bissett Park,"12455 Path Ave, Punta Gorda, FL 33955, USA",(941) 235-5000,https://www.charlottecountyfl.gov/departments/community-services/parks/all-parks/bissett-park.stml,26.8470969,-81.99721799999999,Punta Gorda +Peace River,"631 Woodstork Ln, Punta Gorda, FL 33982, USA",Unknown,Unknown,27.0172349,-81.9762545,Punta Gorda +Jungle Queen Riverboat,"801 Seabreeze Blvd, Fort Lauderdale, FL 33316, USA",(954) 462-5596,http://www.junglequeen.com/,26.1126572,-80.1076874,Fort Lauderdale +Bonnet House Museum & Gardens,"900 N Birch Rd, Fort Lauderdale, FL 33304, USA",(954) 563-5393,http://www.bonnethouse.org/,26.1363719,-80.1069179,Fort Lauderdale +Riverwalk Fort Lauderdale,"888 E Las Olas Blvd #210, Fort Lauderdale, FL 33301, USA",(954) 468-1541,http://www.goriverwalk.com/,26.1189446,-80.1342954,Fort Lauderdale +Museum of Discovery and Science,"401 SW 2nd St, Fort Lauderdale, FL 33312, USA",(954) 467-6637,http://www.mods.org/,26.1206046,-80.1479671,Fort Lauderdale +Historic Stranahan House Museum,"335 SE 6th Ave, Fort Lauderdale, FL 33301, USA",(954) 524-4736,http://www.stranahanhouse.org/,26.1184624,-80.13748989999999,Fort Lauderdale +History Fort Lauderdale,"231 SW 2nd Ave, Fort Lauderdale, FL 33301, USA",(954) 463-4431,http://www.historyfortlauderdale.org/,26.1191543,-80.1459453,Fort Lauderdale +Earl Lifshey Ocean Park,"3054 N Ocean Blvd, Fort Lauderdale, FL 33308, USA",(954) 828-7275,https://www.parks.fortlauderdale.gov/beach/beaches/earl-lifshey-park,26.167472,-80.0989553,Fort Lauderdale +Colee Hammock Park,"1500 Brickell Dr, Fort Lauderdale, FL 33301, USA",(954) 828-7275,https://www.parks.fortlauderdale.gov/Home/Components/FacilityDirectory/FacilityDirectory/141/1091,26.1173142,-80.1287546,Fort Lauderdale +Hugh Taylor Birch State Park,"3109 E Sunrise Blvd, Fort Lauderdale, FL 33304, USA",(954) 564-4521,https://www.floridastateparks.org/park/Hugh-Taylor-Birch,26.1453543,-80.1049979,Fort Lauderdale +Beach Pavilion at Lauderdale-By-The-Sea,"0 Commercial Blvd, Lauderdale-By-The-Sea, FL 33308, USA",(954) 640-4200,http://www.discoverlbts.com/,26.1896272,-80.0951458,Fort Lauderdale +broward center perfoming arts,"1 N Fort Lauderdale Beach Blvd, Fort Lauderdale, FL 33304, USA",Unknown,Unknown,26.122631,-80.104097,Fort Lauderdale +DC Alexander Park,"501 S Fort Lauderdale Beach Blvd, Fort Lauderdale, FL 33316, USA",(954) 828-7275,https://www.parks.fortlauderdale.gov/Home/Components/FacilityDirectory/FacilityDirectory/22/1091,26.116333,-80.1051955,Fort Lauderdale +Escapology,"17 S Fort Lauderdale Beach Blvd #300, Fort Lauderdale, FL 33316, USA",(954) 900-5463,https://www.escapology.com/en/fort-lauderdale-fl/,26.1219735,-80.1043497,Fort Lauderdale +Riverfront Arch,"200 SW 1st Ave, Fort Lauderdale, FL 33301, USA",Unknown,Unknown,26.12045969999999,-80.1445036,Fort Lauderdale +Esplanade Park,"400 SW 2nd St, Fort Lauderdale, FL 33312, USA",(954) 828-7275,http://www.fortlauderdale.gov/,26.1199683,-80.1479426,Fort Lauderdale +Dr. Von D. Mizell-Eula Johnson State Park,"6503 N Ocean Dr, Dania Beach, FL 33004, USA",(954) 923-2833,https://www.floridastateparks.org/parks-and-trails/dr-von-d-mizell-eula-johnson-state-park,26.0746754,-80.1114437,Fort Lauderdale +Pioneer House Museum,"229 SW 2nd Ave, Fort Lauderdale, FL 33301, USA",Unknown,http://www.historyfortlauderdale.org/,26.1194231,-80.1458304,Fort Lauderdale +NSU Art Museum Fort Lauderdale,"1 E Las Olas Blvd, Fort Lauderdale, FL 33301, USA",(954) 525-5500,http://nsuartmuseum.org/,26.1196496,-80.14276869999999,Fort Lauderdale +Fort Lauderdale Beach Cam - Live Streaming,"505 N Fort Lauderdale Beach Blvd, Fort Lauderdale, FL 33304, USA",Unknown,Unknown,26.1296352,-80.1035553,Fort Lauderdale +Vista Park,"2851 N Atlantic Blvd, Fort Lauderdale, FL 33308, USA",Unknown,Unknown,26.1634908,-80.09916,Fort Lauderdale +Philadelphia Zoo,"3400 W Girard Ave, Philadelphia, PA 19104, USA",(215) 243-1100,https://www.philadelphiazoo.org/,39.97149589999999,-75.1955383,Philadelphia +The Franklin Institute,"222 N 20th St, Philadelphia, PA 19103, USA",(215) 448-1200,https://www.fi.edu/?utm_source=google&utm_medium=googlemybusiness&utm_campaign=2021,39.9582109,-75.17313469999999,Philadelphia +Independence National Historical Park,"Philadelphia, PA 19106, USA",(215) 965-2305,https://www.nps.gov/inde/index.htm,39.9495312,-75.14973189999999,Philadelphia +Philadelphia's Magic Gardens,"1020 South St, Philadelphia, PA 19147, USA",(215) 733-0390,http://www.phillymagicgardens.org/,39.94271519999999,-75.1593153,Philadelphia +Liberty Bell,"526 Market St, Philadelphia, PA 19106, USA",(215) 965-2305,https://www.nps.gov/inde/learn/historyculture/stories-libertybell.htm,39.9496103,-75.1502821,Philadelphia +Philadelphia Museum of Art,"2600 Benjamin Franklin Pkwy, Philadelphia, PA 19130, USA",(215) 763-8100,https://www.philamuseum.org/,39.9655697,-75.18096609999999,Philadelphia +Eastern State Penitentiary,"2027 Fairmount Ave, Philadelphia, PA 19130, USA",(215) 236-3300,http://www.easternstate.org/,39.9683364,-75.17266479999999,Philadelphia +JFK Plaza (Love Park),"Arch St, Philadelphia, PA 19102, USA",(215) 686-1776,http://www.phila.gov/Pages/default.aspx,39.9541322,-75.16563959999999,Philadelphia +Franklin Square,"200 N 6th St, Philadelphia, PA 19106, USA",(215) 629-4026,http://www.historicphiladelphia.org/franklin-square/what-to-see/,39.95566339999999,-75.1504502,Philadelphia +Rodin Museum,"2151 Benjamin Franklin Pkwy, Philadelphia, PA 19130, USA",(215) 763-8100,https://www.rodinmuseum.org/,39.9619232,-75.17395789999999,Philadelphia +Rocky Statue,"2600 Benjamin Franklin Pkwy, Philadelphia, PA 19130, USA",Unknown,http://www.associationforpublicart.org/artwork/rocky/,39.96513309999999,-75.1792878,Philadelphia +Please Touch Museum,"4231 Avenue of the Republic, Philadelphia, PA 19131, USA",(215) 581-3181,http://www.pleasetouchmuseum.org/,39.9794964,-75.209147,Philadelphia +Elfreth's Alley Museum,"126 Elfreth's Alley, Philadelphia, PA 19106, USA",Unknown,http://elfrethsalley.org/,39.95271779999999,-75.14248189999999,Philadelphia +African American Museum in Philadelphia,"701 Arch St, Philadelphia, PA 19106, USA",(215) 574-0380,http://aampmuseum.org/,39.95326139999999,-75.1517562,Philadelphia +The Mütter Museum at The College of Physicians of Philadelphia,"19 S 22nd St, Philadelphia, PA 19103, USA",(215) 563-3737,https://muttermuseum.org/,39.9532308,-75.1763698,Philadelphia +Museum of the American Revolution,"101 S 3rd St, Philadelphia, PA 19106, USA",(215) 253-6731,https://www.amrevmuseum.org/,39.94832030000001,-75.1457547,Philadelphia +Penn Museum,"3260 South St, Philadelphia, PA 19104, USA",(215) 898-4000,http://www.penn.museum/,39.9492392,-75.191367,Philadelphia +Benjamin Franklin Museum,"317 Chestnut St, Philadelphia, PA 19106, USA",(267) 514-1522,http://www.nps.gov/inde/planyourvisit/benjaminfranklinmuseum.htm,39.9494619,-75.1468994,Philadelphia +Betsy Ross House,"239 Arch St, Philadelphia, PA 19106, USA",(215) 629-4026,http://historicphiladelphia.org/what-to-see/,39.9522267,-75.1446521,Philadelphia +Barnes Foundation,"2025 Benjamin Franklin Pkwy, Philadelphia, PA 19130, USA",(215) 278-7000,https://www.barnesfoundation.org/,39.9606433,-75.17280749999999,Philadelphia +Phelps Mansion Museum,"191 Court St, Binghamton, NY 13901, USA",(607) 722-4873,http://www.phelpsmansion.org/,42.10064390000001,-75.9055669,Binghamton +Roberson Museum and Science Center,"30 Front St, Binghamton, NY 13905, USA",(607) 772-0660,http://www.roberson.org/,42.0938996,-75.91858119999999,Binghamton +The Discovery Center of the Southern Tier,"60 Morgan Rd, Binghamton, NY 13903, USA",(607) 773-8661,http://www.thediscoverycenter.org/,42.0738133,-75.9037491,Binghamton +Ross Park Zoo,"60 Morgan Rd, Binghamton, NY 13903, USA",(607) 724-5461,http://www.rossparkzoo.org/,42.07569539999999,-75.90648759999999,Binghamton +Bundy Museum of History and Art,"133 Main St, Binghamton, NY 13905, USA",(607) 772-9179,http://www.bundymuseum.org/,42.1019264,-75.9282463,Binghamton +Cutler Botanic Garden,"840 Front St, Binghamton, NY 13905, USA",(607) 772-8953,http://ccebroomecounty.com/gardening/cutler-botanic-gardens,42.1283107,-75.9058877,Binghamton +Recreation Park,"Beethoven St & Seminary Ave, Binghamton, NY 13905, USA",(607) 722-9166,Unknown,42.09971599999999,-75.93329659999999,Binghamton +Otsiningo Park,"1 Otsiningo Park, Binghamton, NY 13905, USA",(607) 778-6541,http://www.gobroomecounty.com/parks/otsiningo,42.1235412,-75.90285240000001,Binghamton +Ross Park Carousel,"Ross Park Carousel, 44 Morgan Rd, Binghamton, NY 13903, USA",(607) 772-7017,https://www.binghamton-ny.gov/government/departments/parks-recreation/city-carousels,42.0754655,-75.90788239999999,Binghamton +Dunk House,"4 Pine St, Binghamton, NY 13901, USA",Unknown,Unknown,42.1003355,-75.9077873,Binghamton +Binghamton Clothing Factory Fire Monument,"51 Mygatt St, Binghamton, NY 13905, USA",Unknown,http://www.atlasobscura.com/places/binghamton-clothing-factory-fire-monument,42.1091145,-75.9238787,Binghamton +Dr. Martin Luther King Statuette,"5 Court St, Binghamton, NY 13901, USA",Unknown,Unknown,42.0990252,-75.915517,Binghamton +Confluence Park,"N Shore Dr, Binghamton, NY 13901, USA",Unknown,http://www.visitbinghamton.org/listings/the-confluence-park/,42.0928571,-75.9163927,Binghamton +Cheri A Lindsey Memorial Park,"1 Truesdell St, Binghamton, NY 13901, USA",(607) 772-7017,Unknown,42.1131591,-75.90546359999999,Binghamton +Rod Serling Gazebo,"Binghamton, NY 13905, USA",(800) 836-6740,Unknown,42.0997405,-75.9332675,Binghamton +Binghamton Freedom Trail - Harriet Tubman,"77 Water St, Binghamton, NY 13901, USA",Unknown,Unknown,42.0960603,-75.915587,Binghamton +Binghamton University Art Museum,"4400 Vestal Pkwy E, Binghamton, NY 13901, USA",(607) 777-2968,http://www.binghamton.edu/art-museum/,42.0886991,-75.968107,Binghamton +Railroad Terminal Historic District,"Binghamton, NY 13901, USA",Unknown,Unknown,42.1035271,-75.90771579999999,Binghamton +Binghamton University Nature Preserve,"Vestal, NY 13850, USA",(607) 777-2000,https://www.binghamton.edu/nature-preserve/,42.08460409999999,-75.97234929999999,Binghamton +ACA Memorial,"E Clinton St, Binghamton, NY 13905, USA",Unknown,Unknown,42.1032634,-75.9159055,Binghamton +C. M. Russell Museum,"400 13th St N, Great Falls, MT 59401, USA",(406) 727-8787,https://cmrussell.org/,47.5101885,-111.2862464,Great Falls +Electric City Water Park,"100 River Dr S, Great Falls, MT 59405, USA",(406) 454-9008,http://www.greatfallsmt.net/recreation/electric-city-water-park,47.5039718,-111.309761,Great Falls +The Lewis and Clark Interpretive Center,"4201 Giant Springs Rd, Great Falls, MT 59405, USA",(406) 453-6248,https://www.fs.usda.gov/recarea/hlcnf/recarea/?recid=61458,47.52944249999999,-111.2355985,Great Falls +Children's Museum of Montana,"22 Railroad Square, Great Falls, MT 59401, USA",(406) 452-6661,http://childrensmuseumofmontana.org/?utm_source=google&utm_medium=wix_google_business_profile&utm_campaign=11119304774603334464,47.5062509,-111.3075411,Great Falls +Giant Springs State Park,"4803 Giant Springs Rd, Great Falls, MT 59405, USA",(406) 727-1212,http://stateparks.mt.gov/giant-springs/,47.534446,-111.228842,Great Falls +West Bank Park,"1600 4th St NE, Great Falls, MT 59404, USA",(406) 771-1265,https://greatfallsmt.net/recreation/west-bank-park,47.5129257,-111.3124064,Great Falls +Paris Gibson Square Museum of Art,"1400 1st Ave N, Great Falls, MT 59401, USA",(406) 727-8255,http://www.the-square.org/,47.5056014,-111.2825348,Great Falls +The History Museum,"422 2nd St S, Great Falls, MT 59405, USA",(406) 452-3462,http://greatfallshistorymuseum.org/,47.4998175,-111.3048796,Great Falls +Gibson Park,"River, s Edge Trail, Great Falls, MT 59401, USA",(406) 771-1265,https://greatfallsmt.net/recreation/gibson-park-0,47.51029,-111.3045441,Great Falls +Wooden Turtle Carving,"420 Park Dr N, Great Falls, MT 59401, USA",Unknown,Unknown,47.5125232,-111.3022693,Great Falls +Great Falls Dam View,"5435 River Dr N, Great Falls, MT 59405, USA",Unknown,Unknown,47.51961259999999,-111.2576008,Great Falls +Rainbow Dam,"River's Edge Trail, Great Falls, MT 59404, USA",Unknown,Unknown,47.5346304,-111.2048997,Great Falls +Lewis & Clark Trail Heritage Foundation,"4201 Giant Springs Rd, Great Falls, MT 59405, USA",(406) 454-1234,https://www.lewisandclark.org/,47.5294186,-111.2356118,Great Falls +Statue of Liberty Replica,"Gibson Park Trail, Great Falls, MT 59401, USA",(406) 771-1265,https://greatfallsmt.net/,47.50749009999999,-111.3062585,Great Falls +Malmstrom Museum and Air Park,"90 Whitehall Dr, Malmstrom AFB, MT 59402, USA",(406) 731-2705,https://www.malmstrom.af.mil/About-Us/Malmstrom-Museum,47.50625729999999,-111.2003773,Great Falls +Tool Tree,"119 1st Ave N, Great Falls, MT 59401, USA",Unknown,Unknown,47.50772419999999,-111.3139627,Great Falls +Black Eagle Memorial Island,"River's Edge Trail, Great Falls, MT 59405, USA",Unknown,Unknown,47.52089830000001,-111.2587144,Great Falls +St. Ann's Cathedral,"715 3rd Ave N, Great Falls, MT 59401, USA",(406) 761-5456,http://www.stannscathedral.org/,47.5088049,-111.2949997,Great Falls +Montana Veterans Memorial,"1025 25th St N, Great Falls, MT 59401, USA",(406) 771-1265,http://montanaveteransmemorial.org/,47.5177292,-111.2618894,Great Falls +Shreveport Aquarium,"601 Clyde Fant Pkwy, Shreveport, LA 71101, USA",(318) 383-0601,http://www.shreveportaquarium.com/,32.5159309,-93.7433341,Shreveport +Red River District,"500 Clyde Fant Pkwy, Shreveport, LA 71101, USA",(318) 673-5100,http://downtownshreveport.com/business-blank/red-river-district/,32.51599220000001,-93.744905,Shreveport +Sci-Port Discovery Center,"820 Clyde Fant Pkwy, Shreveport, LA 71101, USA",(318) 424-3466,https://sci-port.org/?utm_source=googl&utm_medium=organic&utm_campaign=gbp,32.5134279,-93.7418988,Shreveport +Louisiana State Exhibit Museum,"3015 Greenwood Rd, Shreveport, LA 71109, USA",(318) 632-2020,http://www.sos.la.gov/HistoricalResources/VisitMuseums/LouisianaStateExhibitMuseum/Pages/default.aspx,32.4802536,-93.78530959999999,Shreveport +Shreveport Water Works Museum,"142 N Common St, Shreveport, LA 71101, USA",(318) 221-3388,http://shreveportwaterworks.org/,32.5175477,-93.7574913,Shreveport +The Logan Mansion,"725 Austen Pl, Shreveport, LA 71101, USA",(318) 210-1007,Unknown,32.5066833,-93.75387870000002,Shreveport +Spring Street Historical Museum,"525 N Spring St, Shreveport, LA 71101, USA",(318) 562-3128,https://springstreetmuseum.org/,32.514522,-93.7460224,Shreveport +R.W. Norton Art Gallery,"4747 Creswell Ave, Shreveport, LA 71106, USA",(318) 865-4201,http://www.rwnaf.org/,32.45882100000001,-93.74098,Shreveport +Shreveport Riverview Park,"601 Clyde Fant Pkwy, Shreveport, LA 71101, USA",(318) 673-7727,https://www.myspar.org/340/Riverview-Park,32.5159377,-93.74338999999999,Shreveport +Southern University Museum-Art,"610 Texas St, Shreveport, LA 71101, USA",(318) 670-6631,https://www.susla.edu/page/university-museum,32.5122489,-93.7515011,Shreveport +J. Bennett Johnston Waterway Regional Visitor Center,"700 Clyde Fant Memorial Pkwy, Shreveport, LA 71101, USA",(318) 677-2673,http://www.mvk.usace.army.mil/Missions/Recreation/J-Bennett-Johnston-Visitor-Center/,32.5143581,-93.74307259999999,Shreveport +Betty Virginia Park,"3901 Fairfield Ave, Shreveport, LA 71106, USA",(318) 673-7727,http://www.myspar.org/329/Betty-Virginia,32.4686444,-93.748561,Shreveport +American Rose Center,"8877 Jefferson Paige Rd, Shreveport, LA 71119, USA",(318) 938-5402,https://www.rose.org/,32.4598426,-93.9494064,Shreveport +Splash Kingdom Oasis,"7670 W 70th St, Shreveport, LA 71129, USA",(318) 938-5475,https://www.splashkingdomwaterpark.com/shreveport-oasis/,32.443445,-93.920591,Shreveport +Stage-Stars Museum,"705 Grand Ave, Shreveport, LA 71101, USA",Unknown,Unknown,32.507923,-93.752967,Shreveport +Elvis Presley Statue,"705 Grand Ave, Shreveport, LA 71101, USA",(318) 841-4000,http://www.shreveportmunicipalauditorium.com/,32.507923,-93.752967,Shreveport +Duck Pond,"E Kings Hwy, Shreveport, LA 71103, USA",(318) 673-7727,https://www.shreveportla.gov/index.aspx?NID=368,32.47123459999999,-93.7112026,Shreveport +Walter B Jacobs Memorial Nature Park,"8012 Par Rd 4, Shreveport, LA 71107, USA",(318) 929-2806,http://www.caddoparks.org/,32.5666964,-93.9328618,Shreveport +Meadows Museum Of Art,"2911 Centenary Blvd, Shreveport, LA 71104, USA",(318) 869-5169,http://www.centenary.edu/meadows,32.483384,-93.7335008,Shreveport +Jubilee Zoo - Petting Zoo & Play Place,"6402 LA-1, Shreveport, LA 71107, USA",(318) 929-7387,https://jubileezoo.com/,32.614182,-93.8680127,Shreveport +Asheville Pinball Museum,"1 Battle Square Ste 1b, Asheville, NC 28801, USA",(828) 776-5671,http://ashevillepinball.com/,35.5964044,-82.55665839999999,Asheville +Botanical Gardens at Asheville,"151 WT Weaver Blvd, Asheville, NC 28804, USA",(828) 252-5190,https://www.ashevillebotanicalgardens.org/,35.6124838,-82.5660193,Asheville +Western North Carolina Nature Center,"75 Gashes Creek Rd, Asheville, NC 28805, USA",(828) 259-8080,http://www.wildwnc.org/,35.5794378,-82.4942607,Asheville +The North Carolina Arboretum,"100 Frederick Law Olmsted Way, Asheville, NC 28806, USA",(828) 665-2492,http://www.ncarboretum.org/,35.49585039999999,-82.6052229,Asheville +Thomas Wolfe Memorial,"52 N Market St, Asheville, NC 28801, USA",(828) 253-8304,http://www.wolfememorial.com/,35.59750289999999,-82.5513414,Asheville +The Adventure Center of Asheville,"85 Expo Dr, Asheville, NC 28806, USA",(877) 247-5539,https://ashevilletreetopsadventurepark.com/,35.592959,-82.58326699999999,Asheville +Asheville Ghost Tours: Oldest & Original,"80 Broadway St, Asheville, NC 28801, USA",(828) 318-8579,http://www.hauntedasheville.com/,35.5982597,-82.5520193,Asheville +Asheville Museum of Science,"43 Patton Ave, Asheville, NC 28801, USA",(828) 254-7162,https://ashevillescience.org/,35.5947901,-82.5533963,Asheville +Grovewood Village,"111 Grovewood Rd, Asheville, NC 28804, USA",(828) 214-7768,http://www.grovewood.com/,35.62136299999999,-82.544686,Asheville +Asheville Art Museum,"2 S Pack Square, Asheville, NC 28801, USA",(828) 253-3227,http://www.ashevilleart.org/,35.5946714,-82.5512827,Asheville +LaZoom Tours,"76 Biltmore Ave, Asheville, NC 28801, USA",(828) 225-6932,http://www.lazoomtours.com/?utm_source=GMBlisting&utm_medium=organic,35.59222759999999,-82.55057169999999,Asheville +Pack Square Park,"80 Court Plaza, Asheville, NC 28801, USA",(828) 259-5800,https://www.nps.gov/nr/travel/asheville/pac.htm,35.5955651,-82.549388,Asheville +Biltmore,"1 Lodge St, Asheville, NC 28803, USA",(800) 411-3812,https://www.biltmore.com/,35.5527514,-82.56369049999999,Asheville +Blue Ridge National Heritage Area,"195 Hemphill Knob Rd, Asheville, NC 28803, USA",(828) 298-5330,http://www.blueridgeheritage.com/,35.565868,-82.48646699999999,Asheville +Pritchard Park,"67 Patton Ave, Asheville, NC 28801, USA",(828) 251-1122,http://www.ashevillenc.gov/,35.5947264,-82.5544579,Asheville +Asheville Treetops Adventure Park,"85 Expo Dr, Asheville, NC 28806, USA",(877) 247-5539,http://www.ashevilletreetopsadventurepark.com/asheville-treetops-adventure-park,35.5929483,-82.58328279999999,Asheville +Biltmore Waterfall,"Fourmile Branch,, Asheville, NC 28806, USA",(800) 441-3812,http://www.biltmore.com/,35.5314172,-82.5546233,Asheville +River Arts District,"3 River Arts Pl, Asheville, NC 28801, USA",(828) 388-3526,http://www.riverartsdistrict.com/,35.5828141,-82.5646953,Asheville +Statue: Childhood,"121 US-74 ALT, Asheville, NC 28801, USA",Unknown,Unknown,35.5952587,-82.5506124,Asheville +Urban Trail,"11 Biltmore Ave, Asheville, NC 28801, USA",Unknown,http://www.ashevilleurbantrail.com/,35.594841,-82.5515138,Asheville +Cheyenne Frontier Days Old West Museum,"4610 Carey Ave, Cheyenne, WY 82001, USA",(307) 778-7290,http://www.oldwestmuseum.org/?utm_source=google&utm_medium=wix_google_business_profile&utm_campaign=868959285552699281,41.15794520000001,-104.8340615,Cheyenne +Wyoming State Museum,"2301 Central Ave, Cheyenne, WY 82001, USA",(307) 777-7022,http://wyomuseum.state.wy.us/,41.1394554,-104.8179522,Cheyenne +Cheyenne Depot Museum,"121 W 15th St, Cheyenne, WY 82001, USA",(307) 638-6338,http://www.cheyennedepotmuseum.org/,41.1317202,-104.8146395,Cheyenne +Cheyenne Botanic Gardens,"710 S Lions Park Dr, Cheyenne, WY 82001, USA",(307) 637-6458,http://www.botanic.org/,41.15570799999999,-104.8305412,Cheyenne +Messenger's Old West Museum,"616 Crook Ave, Cheyenne, WY 82001, USA",(307) 635-8959,Unknown,41.131721,-104.789608,Cheyenne +Cheyenne Depot Plaza,"1 Depot Square Capitol &, W 15th St, Cheyenne, WY 82007, USA",(800) 426-5009,https://www.cheyenne.org/listing/cheyenne-depot/83/,41.1326948,-104.8144224,Cheyenne +Nelson Museum of the West,"1714 Carey Ave, Cheyenne, WY 82001, USA",(307) 635-7670,http://www.nelsonmuseum.com/,41.1336343,-104.8177085,Cheyenne +Cheyenne Street Railway Trolley,"121 W 15th St #202, Cheyenne, WY 82001, USA",(800) 426-5009,http://www.cheyennetrolley.com/,41.1317202,-104.8146395,Cheyenne +Big Boy Steam Engine 4004,"1705 Morrie Ave, Cheyenne, WY 82001, USA",(307) 638-4357,http://www.cheyennecity.org/,41.13675869999999,-104.7998805,Cheyenne +BSA Replica of Statue of Liberty,"Cheyenne, WY 82009, USA",Unknown,Unknown,41.1605646,-104.8319574,Cheyenne +Paul Smith Children's Village at the Cheyenne Botanic Gardens,"616 S Lions Park Dr, Cheyenne, WY 82001, USA",(307) 637-6349,http://www.botanic.org/discover/childrens-village/,41.15541340000001,-104.8293565,Cheyenne +Wyoming State Capitol,"200 W 24th St, Cheyenne, WY 82001, USA",(307) 777-7767,http://www.wyomingcapitolsquare.com/,41.140267,-104.8202125,Cheyenne +Mylar Park,"5117 Seminoe Rd, Cheyenne, WY 82009, USA",(307) 637-6429,https://www.cheyenne.org/listing/mylar-park/62/,41.1666514,-104.8184431,Cheyenne +Cowgirls of the West Museum,"205 W 17th St, Cheyenne, WY 82001, USA",(307) 638-4994,http://www.cowgirlsofthewestmuseum.com/,41.1333609,-104.8160615,Cheyenne +Wyoming Historic Governors' Mansion State Historic Site,"300 E 21st St, Cheyenne, WY 82001, USA",(307) 777-7878,https://wyoparks.wyo.gov/index.php/places-to-go/historic-governors-mansion,41.1387883,-104.8146447,Cheyenne +Southeast Wyoming Welcome Center,"5611 High Plains Road, Cheyenne, WY 82007, USA",(800) 225-5996,https://www.dot.state.wy.us/restareas,41.0584272,-104.8796397,Cheyenne +Holliday Park,"19th Morrie Ave, Cheyenne, WY 82001, USA",(307) 637-6429,Unknown,41.1387955,-104.8029116,Cheyenne +Wyoming Metal Art Roadside Attraction,"3560 Interstate 80 Service Rd, Cheyenne, WY 82009, USA",Unknown,Unknown,41.1593361,-104.6069703,Cheyenne +Lions Park Gazebo,"4603 Lions Park Dr, Cheyenne, WY 82001, USA",Unknown,Unknown,41.1578232,-104.8316048,Cheyenne +Lions Park,"789-829 S Lions Park Dr, Cheyenne, WY 82001, USA",(307) 637-6433,http://cheyennecity.org/,41.1543249,-104.8298793,Cheyenne +Milwaukee Art Museum,"700 N Art Museum Dr, Milwaukee, WI 53202, USA",(414) 224-3200,http://mam.org/,43.04007259999999,-87.897058,Milwaukee +Milwaukee Public Museum,"800 W Wells St, Milwaukee, WI 53233, USA",(414) 278-2728,https://www.mpm.edu/,43.0405367,-87.9208579,Milwaukee +North Point Lighthouse,"2650 N Wahl Ave, Milwaukee, WI 53211, USA",(414) 332-6754,http://northpointlighthouse.org/,43.06567219999999,-87.8714222,Milwaukee +Milwaukee County Zoo,"10001 W Bluemound Rd, Milwaukee, WI 53226, USA",(414) 771-3040,https://milwaukeezoo.org/,43.0327156,-88.03740789999999,Milwaukee +Milwaukee Riverwalk District,"101 W Pleasant St, Milwaukee, WI 53212, USA",Unknown,http://www.milwaukeeriverwalkdistrict.com/,43.0512611,-87.9117979,Milwaukee +Discovery World,"500 N Harbor Dr, Milwaukee, WI 53202, USA",(414) 765-9966,https://www.discoveryworld.org/,43.03686889999999,-87.89573519999999,Milwaukee +Mitchell Park Domes,"524 S Layton Blvd, Milwaukee, WI 53215, USA",(414) 257-5600,https://www.mitchellparkdomes.com/,43.0264365,-87.94594819999999,Milwaukee +Pabst Mansion,"2000 W Wisconsin Ave, Milwaukee, WI 53233, USA",(414) 931-0808,http://www.pabstmansion.com/,43.0392649,-87.93799410000001,Milwaukee +Harley-Davidson Museum,"400 W Canal St, Milwaukee, WI 53201, USA",(414) 287-2789,http://www.h-dmuseum.com/,43.0316706,-87.9165244,Milwaukee +Museum Center Park,"910 E Michigan St, Milwaukee, WI 53202, USA",(414) 224-3200,http://mam.org/,43.03903640000001,-87.8991425,Milwaukee +Milwaukee Pierhead Lighthouse,"Milwaukee, WI 53202, USA",Unknown,Unknown,43.0259591,-87.8953511,Milwaukee +Lakeshore State Park,"500 N Harbor Dr, Milwaukee, WI 53202, USA",(414) 274-4281,https://dnr.wisconsin.gov/topic/parks/lakeshore,43.03363269999999,-87.8955177,Milwaukee +Streets of Old Milwaukee,"800 W Wells St, Milwaukee, WI 53233, USA",(414) 278-2702,http://www.mpm.edu/exhibitions/permanent-exhibits/first-floor-exhibits/streets-old-milwaukee,43.0406576,-87.9218831,Milwaukee +Oceans of Fun with Ocean Connections,"10001 W Bluemound Rd, Milwaukee, WI 53226, USA",(414) 453-5527,https://www.oceansoffun.org/,43.0342961,-88.0403788,Milwaukee +Milwaukee RiverWalk | East,"N Riverwalk Way, Milwaukee, WI 53202, USA",Unknown,https://milwaukeeriverwalkdistrict.com/,43.0429268,-87.9125315,Milwaukee +South Shore Beach,"2900 S Shore Dr, Milwaukee, WI 53207, USA",Unknown,Unknown,42.9939338,-87.8810213,Milwaukee +Jewish Museum Milwaukee,"1360 N Prospect Ave, Milwaukee, WI 53202, USA",(414) 390-5730,http://jewishmuseummilwaukee.org/,43.0479913,-87.8948862,Milwaukee +Veterans Park,"1010 N Lincoln Memorial Dr, Milwaukee, WI 53202, USA",(414) 257-7275,https://county.milwaukee.gov/files/county/parks-department/Park-Maps/Veterans1.pdf,43.0451097,-87.8907809,Milwaukee +North Point Water Tower,"2288 N Lake Dr, Milwaukee, WI 53202, USA",(414) 286-2830,http://city.milwaukee.gov/water/about/North-Point-Tower-.htm,43.0597042,-87.8798559,Milwaukee +Sky Trail Wisconsin Adventure Zone,"10001 W Bluemound Rd, Milwaukee, WI 53226, USA",Unknown,http://www.facebook.com/skytrailwisconsin,43.03265,-88.0375662,Milwaukee +Carrie M. McLain Memorial Museum,"100 W 7th Ave, Nome, AK 99762, USA",(907) 443-6630,https://www.nomealaska.org/memorial-museum,64.5027538,-165.3984216,Nome +World’s Largest Gold Pan,"405 Warren Pl, Nome, AK 99762, USA",Unknown,https://www.nomealaska.org/,64.5004309,-165.4082981,Nome +Anvil Rock,"Anvil Rock Rd, Nome, AK 99762, USA",Unknown,http://www.alaska.org/detail/anvil-mountain-white-alice-antennas-viewpoint,64.5609588,-165.3877932,Nome +Anvil City Square,"308 Bering St, Nome, AK 99762, USA",Unknown,http://www.nomealaska.org/,64.5000809,-165.408603,Nome +Bering Land Bridge National Preserve Visitor Center,"214 Front St, Nome, AK 99762, USA",Unknown,http://nps.gov/bela,64.4979543,-165.4084829,Nome +Nome Visitor Center,"301 Front St, Nome, AK 99762, USA",(907) 443-6555,http://www.visitnomealaska.com/,64.497818,-165.4101257,Nome +Nome Discovery Tours,"607 W 1st Ave, Nome, AK 99762, USA",(907) 443-2814,https://m.facebook.com/DiscoverNome/,64.49980359999999,-165.4157015,Nome +Maruskiya's of Nome,"247 Front St, Nome, AK 99762, USA",(907) 443-2955,http://www.maruskiyas.com/,64.4977804,-165.409487,Nome +Bering Tea & Coffee,"310 Bering St, Nome, AK 99762, USA",(907) 387-0352,https://beringteaandcoffee.square.site/,64.5000007,-165.4096852,Nome +Katirvik Cultural Center,"100 W 7th Ave, Nome, AK 99762, USA",Unknown,https://kawerak.org/cultural-development/katirvik-cultural-center/,64.5026594,-165.3981072,Nome +Lake Casa Blanca International State Park,"5102 Bob Bullock Loop, Laredo, TX 78041, USA",(956) 725-3826,https://tpwd.texas.gov/state-parks/lake-casa-blanca,27.5391656,-99.451308,Laredo +Republic of the Rio Grande Museum,"1005 Zaragoza St, Laredo, TX 78040, USA",(956) 727-3480,https://www.nps.gov/places/republic-of-the-rio-grande-museum.htm,27.50210749999999,-99.50597499999999,Laredo +Slaughter Park,"202 N Stone Ave, Laredo, TX 78040, USA",(956) 795-2350,https://laredoparksandrec.com/laredo-fields/slaughter-sports-complex/,27.4971659,-99.48507959999999,Laredo +Imaginarium of South Texas,"5300 San Dario Ave Suite 510, Laredo, TX 78041, USA",(956) 728-0404,http://www.istx.org/,27.5535006,-99.49826000000002,Laredo +Laredo Water Museum,"2702 Anna Ave, Laredo, TX 78040, USA",(956) 721-2020,https://laredoutilities.com/laredo-water-museum/,27.5239159,-99.52182119999999,Laredo +San Augustin Plaza,"1012 Grant St, Laredo, TX 78040, USA",Unknown,https://laredoparksandrec.com/laredo-parks/san-augustin-plaza/,27.5025981,-99.50614,Laredo +Border Heritage Museum,"810 Zaragoza St, Laredo, TX 78040, USA",(956) 718-2727,https://m.facebook.com/BorderHeritage,27.5023307,-99.50416659999999,Laredo +North Central Park,"10202 International Blvd, Laredo, TX 78045, USA",(956) 791-7300,https://laredoparksandrec.com/laredo-parks/north-central-park/,27.5999127,-99.4711959,Laredo +Jarvis Plaza,"1004 Matamoros St, Laredo, TX 78040, USA",(956) 729-4610,https://laredoparksandrec.com/laredo-parks/jarvis-plaza/,27.50606969999999,-99.5089378,Laredo +Las Alas de Laredo Mural,"Deerfield, Laredo, TX 78045, USA",Unknown,https://www.kgns.tv/2023/06/02/city-laredo-unveils-new-mural-father-mcnaboe-park/,27.5878399,-99.5292944,Laredo +Reyes Meza Museum,"88276 Nuevo Laredo, Tamaulipas, Mexico",867 717 5960,Unknown,27.425398,-99.50636100000001,Laredo +San Agustin Catholic Cathedral,"201 San Agustin Ave, Laredo, TX 78040, USA",(956) 722-1382,http://sanagustincathedrallaredo.org/,27.5025236,-99.5054698,Laredo +parque,"Madero, 88240 Nuevo Laredo, Tamps., Mexico",Unknown,Unknown,27.4702135,-99.5073051,Laredo +Zoológico Regional de Nuevo Laredo,"Av. Luis Donaldo Colosio s/n, Colonia Viveros, 88070 Nuevo Laredo, Tamps., Mexico",867 714 6172,http://www.mexicoescultura.com/recinto/67786/zoologico-de-nuevo-laredo.html,27.4782929,-99.4833929,Laredo +TAMIU Planetarium,"Laredo, TX 78041, USA",(956) 326-2463,http://www.tamiu.edu/planetarium/,27.5722857,-99.43395749999999,Laredo +Laredo Safari & Adventure Park,"Ranch road 7918f, Laredo, TX 78046, USA",(956) 606-7823,Unknown,27.2998238,-99.3337267,Laredo +Estacionamiento Laredo,"319 Convent Ave, Laredo, TX 78040, USA",Unknown,Unknown,27.5035375,-99.5075187,Laredo +Urban Air Trampoline and Adventure Park,"6310 McPherson Rd, Laredo, TX 78041, USA",(956) 602-1501,https://www.urbanair.com/texas-laredo?utm_source=gmb&utm_medium=website,27.5600563,-99.4763115,Laredo +Pappajohn Sculpture Park,"1330 Grand Ave, Des Moines, IA 50309, USA",(515) 237-1386,http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park,41.5851577,-93.63529439999999,Des Moines +Blank Park Zoo,"7401 SW 9th St, Des Moines, IA 50315, USA",(515) 285-4722,http://www.blankparkzoo.com/,41.5209593,-93.6244982,Des Moines +Greater Des Moines Botanical Garden,"909 Robert D. Ray Dr, Des Moines, IA 50309, USA",(515) 323-6290,http://www.dmbotanicalgarden.com/,41.596709,-93.614188,Des Moines +Robert D. Ray Asian Garden,"Robert D. Ray Dr, Des Moines, IA 50309, USA",(515) 323-6290,https://www.dmbotanicalgarden.com/,41.5932713,-93.6172794,Des Moines +Des Moines Water Works Park,"2201 George Flagg Pkwy, Des Moines, IA 50321, USA",Unknown,http://www.dmww.com/,41.5687383,-93.67011280000001,Des Moines +Science Center of Iowa,"401 W Martin Luther King Jr Pkwy, Des Moines, IA 50309, USA",(515) 274-6868,http://www.sciowa.org/,41.58296430000001,-93.62089879999999,Des Moines +Heritage Carousel of Des Moines,"1801 Pennsylvania Ave, Des Moines, IA 50316, USA",(515) 721-2590,http://www.heritagecarousel.org,41.61345010000001,-93.61074169999999,Des Moines +Des Moines Art Center,"4700 Grand Ave, Des Moines, IA 50312, USA",(515) 277-4405,http://www.desmoinesartcenter.org/,41.5839333,-93.6811807,Des Moines +Gray's Lake Park,"2101 Fleur Dr, Des Moines, IA 50315, USA",(515) 242-2855,https://www.dsm.city/business_detail_T6_R58.php,41.5722537,-93.6437862,Des Moines +Cowles Commons,"221 Walnut St, Des Moines, IA 50309, USA",(515) 246-2300,http://www.desmoinesperformingarts.org/,41.5870551,-93.621697,Des Moines +Rotary Riverwalk Park,"821 W River Dr, Des Moines, IA 50309, USA",(515) 996-9241,http://rotaryclubofdmam.com/Stories/rotary-riverwalk-park-1,41.5920965,-93.6196537,Des Moines +Jordan House,"2001 Fuller Rd, West Des Moines, IA 50265, USA",(515) 225-1286,http://www.wdmhs.org/,41.5601119,-93.7338778,Des Moines +Adventureland Resort,"305 34th Ave NW, Altoona, IA 50009, USA",(515) 266-2121,https://www.adventurelandresort.com/?utm_source=google&utm_medium=OrganicGMB&utm_id=GMBtraffic,41.657646,-93.49694629999999,Des Moines +Iowa State Capitol,"1007 E Grand Ave, Des Moines, IA 50319, USA",(515) 281-5591,https://www.legis.iowa.gov/resources/tourCapitol,41.5912022,-93.60363889999999,Des Moines +Des Moines Children's Museum,"1551 Valley W Dr Suite 108, West Des Moines, IA 50266, USA",(515) 218-8344,http://www.dsmchildrensmuseum.com/,41.59700799999999,-93.7498801,Des Moines +Des Moines' Downtown Farmers’ Market,"300 Court Ave, Des Moines, IA 50309, USA",(515) 286-4928,http://desmoinesfarmersmarket.com/,41.5850647,-93.62043469999999,Des Moines +South Des Moines Sculpture Park,"768-798 McKinley Ave, Des Moines, IA 50315, USA",Unknown,Unknown,41.54090799999999,-93.62416929999999,Des Moines +Salisbury House & Gardens,"4025 Tonawanda Dr, Des Moines, IA 50312, USA",(515) 274-1777,http://www.salisburyhouse.org/,41.57941599999999,-93.67175999999999,Des Moines +Riverview Park,"Riverview Park, 710 Corning Ave, Des Moines, IA 50313, USA",(515) 237-1386,https://www.dsm.city/business_detail_T6_R81.php,41.62180350000001,-93.6277423,Des Moines +Terrace Hill Historic Site,"2300 Grand Ave, Des Moines, IA 50312, USA",(515) 281-7205,http://terracehill.iowa.gov/,41.5832606,-93.64913,Des Moines +Cape Fear Botanical Garden,"536 N Eastern Blvd, Fayetteville, NC 28301, USA",(910) 486-0221,http://www.capefearbg.org/,35.0558546,-78.85918699999999,Fayetteville +The Fayetteville Area Transportation and Local History Museum,"325 Franklin St, Fayetteville, NC 28301, USA",(910) 433-1457,https://www.fcpr.us/facilities/museums/fayetteville-area-transportation-and-local-history-museum,35.0520812,-78.8821703,Fayetteville +Fayetteville Rose Garden,"2201 Hull Rd, Fayetteville, NC 28303, USA",(910) 678-8228,http://www.visitnc.com/listing/fayetteville-rose-garden,35.0664033,-78.92480979999999,Fayetteville +Lake Rim Park,"2214 Tar Kiln Dr, Fayetteville, NC 28304, USA",(910) 433-1018,Unknown,35.02950209999999,-79.0448299,Fayetteville +ZipQuest - Waterfall & Treetop Adventure,"533 Carvers Falls Rd, Fayetteville, NC 28311, USA",(910) 488-8787,http://www.zipquest.com/,35.1492359,-78.8550324,Fayetteville +Museum of the Cape Fear,"801 Arsenal Ave, Fayetteville, NC 28305, USA",(910) 500-4240,https://museumofthecapefear.ncdcr.gov/,35.0545079,-78.8926565,Fayetteville +North Carolina Veterans Park,"300 Bragg Blvd, Fayetteville, NC 28301, USA",(910) 433-1457,Unknown,35.05783669999999,-78.8851689,Fayetteville +Airborne & Special Operations Museum Foundation,"100 Bragg Blvd, Fayetteville, NC 28301, USA",(910) 643-2778,http://www.asomf.org/,35.05584119999999,-78.8850004,Fayetteville +Fascinate-U Children's Museum,"116 Green St, Fayetteville, NC 28301, USA",(910) 829-9171,http://www.fascinate-u.com/,35.053149,-78.877847,Fayetteville +Festival Park,"335 Ray Ave, Fayetteville, NC 28301, USA",(910) 433-1547,Unknown,35.0585031,-78.88230829999999,Fayetteville +Sandford House,"Fayetteville, NC 28301, USA",Unknown,Unknown,35.0488891,-78.8779802,Fayetteville +Arsenal Park,"215 Myrover St, Fayetteville, NC 28305, USA",(910) 500-4240,https://museumofthecapefear.ncdcr.gov/arsenal-park,35.05385989999999,-78.8947712,Fayetteville +Clark Park Nature Center,"631 Sherman Dr, Fayetteville, NC 28301, USA",(910) 433-1579,https://fcpr.us/parks-trails/parks/clark-park,35.0877738,-78.870772,Fayetteville +Mazarick Park,"1400 Belvedere Ave, Fayetteville, NC 28305, USA",(910) 433-1547,https://fcpr.us/parks-trails/parks/mazarick-park,35.0716799,-78.9011416,Fayetteville +Art Park,"Fayetteville, NC 28301, USA",Unknown,Unknown,35.05431250000001,-78.8790625,Fayetteville +Fayetteville Veterans Park,"220 Lamon St, Fayetteville, NC 28301, USA",(910) 433-1004,Unknown,35.0583308,-78.8734802,Fayetteville +Downtown Fayetteville Tours,"215 Gillespie St, Fayetteville, NC 28301, USA",(910) 444-0034,http://www.downtownfaytours.com/,35.0496821,-78.8787517,Fayetteville +1897 Poe House,"206 Bradford Ave, Fayetteville, NC 28305, USA",(910) 500-4240,https://museumofthecapefear.ncdcr.gov/1897-poe-house,35.0541803,-78.8926895,Fayetteville +North Fayetteville Diamond Railroad Crossing,"335 Ray Ave, Fayetteville, NC 28301, USA",Unknown,Unknown,35.058115,-78.883387,Fayetteville +Arnette Park,"2165 Wilmington Hwy, Fayetteville, NC 28306, USA",(910) 433-1547,http://fcpr.us/Home/Components/FacilityDirectory/FacilityDirectory/86/2974,35.00547290000001,-78.8568377,Fayetteville +Lewisburg Children's Museum,"815 Market St #14, Lewisburg, PA 17837, USA",(570) 768-4914,https://www.lewisburgchildrensmuseum.org/,40.96013569999999,-76.8917627,Lewisburg +Modern Art Alley,"324 Cherry Alley Between North 3rd &, N 4th St, Lewisburg, PA 17837, USA",Unknown,https://www.facebook.com/ModernArtAlley/,40.9643214,-76.8858551,Lewisburg +Samek Art Museum,"701 Moore Ave, Lewisburg, PA 17837, USA",(570) 577-3792,http://museum.bucknell.edu/,40.9564209,-76.8840955,Lewisburg +Packwood House Museum,"15 N Water St, Lewisburg, PA 17837, USA",(570) 524-0323,Unknown,40.9665674,-76.88189349999999,Lewisburg +The Fort Museum and Frontier Village,"1 Museum Rd, Fort Dodge, IA 50501, USA",(515) 573-4231,Unknown,42.4880174,-94.199365,Fort Dodge +Blanden Memorial Art Museum,"920 3rd Ave S, Fort Dodge, IA 50501, USA",(515) 573-2316,http://www.blanden.org/,42.5027486,-94.1846168,Fort Dodge +Soldier Creek Winery,"1584 Paragon Ave, Fort Dodge, IA 50501, USA",(515) 216-0987,http://soldiercreekwinery.com/,42.5596234,-94.14748499999999,Fort Dodge +"Webster County Fort Dodge, Iowa Freedom Rock","Fort Dodge, IA 50501, USA",Unknown,Unknown,42.5004881,-94.2078951,Fort Dodge +Oleson Park Splashpad,"1232 Oleson Park Ave, Fort Dodge, IA 50501, USA",(515) 576-7237,http://www.fortdodgeiowa.org/department/division.php?structureid=134,42.4906816,-94.1735559,Fort Dodge +Fort Frenzy,"3232 1st Ave S, Fort Dodge, IA 50501, USA",(515) 576-2226,https://www.fortfrenzy.com/,42.5056523,-94.14778659999999,Fort Dodge +Loomis Park,"N 7th St &, Loomis Park Dr, Fort Dodge, IA 50501, USA",(515) 576-7237,http://www.fortdodgeiowa.org/department/board.php?fDD=12-58,42.5188154,-94.1970618,Fort Dodge +Buffalo Bill Center of the West,"720 Sheridan Ave, Cody, WY 82414, USA",(307) 587-4771,https://centerofthewest.org/,44.5249986,-109.0731945,Cody +Old Trail Town,"1831 Demaris Dr, Cody, WY 82414, USA",(307) 587-5302,http://www.oldtrailtown.org/,44.515364,-109.104363,Cody +Buffalo Bill Dam & Visitor Center,"4808 N Fork Hwy, Cody, WY 82414, USA",(307) 527-6076,http://www.bbdvc.com/,44.5013668,-109.1839211,Cody +Cody Dug Up Gun Museum,"1020 12th St, Cody, WY 82414, USA",(307) 587-3344,http://www.codydugupgunmuseum.com/,44.5265075,-109.0637237,Cody +Cody City Park,"908 Sheridan Ave, Cody, WY 82414, USA",(307) 586-4112,https://www.codywy.gov/facilities/facility/details/City-Park-5,44.5254181,-109.0686929,Cody +Cody Heritage Museum,"1092 Sheridan Ave, Cody, WY 82414, USA",(307) 586-4272,http://codyheritagemuseum.org/,44.52585049999999,-109.0661351,Cody +Cody Firearms Museum,"720 Sheridan Ave, Cody, WY 82414, USA",(307) 587-4771,https://centerofthewest.org/our-museums/firearms/,44.52539669999999,-109.0732925,Cody +Cody Trolley Tours,"1192 Sheridan Ave, Cody, WY 82414, USA",(307) 527-7043,https://codytrolleytours.com/,44.5256011,-109.064256,Cody +CoveredGround Yellowstone Tours,"2313 11th St, Cody, WY 82414, USA",(307) 250-3594,https://coveredgroundtours.com/,44.5127508,-109.0659996,Cody +HIP District Cody,"1413 Rumsey Ave, Cody, WY 82414, USA",(307) 587-2777,Unknown,44.5274659,-109.059393,Cody +State of Wyoming Veterans Memorial Park,"2513 Greybull Hwy, Cody, WY 82414, USA",Unknown,Unknown,44.51237049999999,-109.0404925,Cody +Cody Wyoming Adventures,"1119 12th St, Cody, WY 82414, USA",(307) 587-6988,http://www.codywyomingadventures.com/,44.5259243,-109.0645252,Cody +The Chattanooga Zoo at Warner Park,"301 N Holtzclaw Ave, Chattanooga, TN 37404, USA",(423) 697-1322,http://www.chattzoo.org/,35.0426324,-85.2820989,Chattanooga +Rock City Gardens,"1400 Patten Rd, Lookout Mountain, GA 30750, USA",(706) 820-2531,http://seerockcity.com/?utm_source=gmb&utm_medium=organic,34.9733918,-85.35017719999999,Chattanooga +Tennessee Aquarium,"1 Broad St, Chattanooga, TN 37402, USA",(423) 265-0695,http://www.tnaqua.org/,35.0558229,-85.3110646,Chattanooga +Lookout Mountain Incline Railway,"3917 St Elmo Ave, Chattanooga, TN 37409, USA",(423) 821-4224,http://www.ridetheincline.com/,35.0095465,-85.3285638,Chattanooga +Coolidge Park,"150 River St, Chattanooga, TN 37405, USA",(423) 643-6311,http://www.chattanooga.gov/public-works/parks/directory-of-park-facilities,35.0605058,-85.3068569,Chattanooga +Creative Discovery Museum,"321 Chestnut St, Chattanooga, TN 37402, USA",(423) 756-2738,http://www.cdmfun.org/,35.0527,-85.31228,Chattanooga +Chattanooga Ghost Tours Inc,"57 E 5th St, Chattanooga, TN 37402, USA",(423) 800-5998,https://chattanoogaghosttours.com/,35.0512312,-85.3090572,Chattanooga +Ross's Landing,"201 Riverfront Pkwy, Chattanooga, TN 37402, USA",(423) 643-6311,http://www.chattanooga.gov/public-works/parks/directory-of-park-facilities,35.0567414,-85.310302,Chattanooga +Hunter Museum of American Art,"10 Bluff View Ave, Chattanooga, TN 37403, USA",(423) 267-0968,http://www.huntermuseum.org/,35.0558936,-85.306405,Chattanooga +Walnut Street Bridge,"1 Walnut St, Chattanooga, TN 37403, USA",(423) 643-6311,Unknown,35.0583304,-85.30729559999999,Chattanooga +Tennessee Riverpark,"4301 Amnicola Hwy, Chattanooga, TN 37402, USA",(423) 209-5370,http://parks.hamiltontn.gov/,35.095938,-85.2453108,Chattanooga +Moccasin Bend National Archeological District,"301 Manufacturers Rd, Chattanooga, TN 37405, USA",(423) 648-5623,https://www.nps.gov/chch/learn/historyculture/moccasin-bend-national-archeological-district.htm,35.0530239,-85.32865629999999,Chattanooga +Ruby Falls,"1720 Scenic Hwy, Chattanooga, TN 37409, USA",(423) 821-2544,http://www.rubyfalls.com/,35.0190839,-85.3393555,Chattanooga +Cravens House,"Point Park Visitor Ctr, Lookout Mountain, TN 37350, USA",(423) 821-7786,https://www.nps.gov/places/cravenshouselom.htm,35.01378179999999,-85.34149459999999,Chattanooga +Reflection Riding Arboretum & Nature Center,"400 Garden Rd, Chattanooga, TN 37419, USA",(423) 821-1160,https://www.reflectionriding.org/,35.01013030000001,-85.3645849,Chattanooga +Williams Echo Dome,"430 E 2nd St, Chattanooga, TN 37403, USA",Unknown,Unknown,35.0542155,-85.3048365,Chattanooga +Audubon Acres,"900 N Sanctuary Rd, Chattanooga, TN 37421, USA",(423) 892-1499,http://www.chattanoogaaudubon.org/,34.99935,-85.18034,Chattanooga +Sculpture Fields at Montague Park,"1800 Polk St, Chattanooga, TN 37408, USA",(423) 266-7288,http://www.sculpturefields.org/,35.02617480000001,-85.29362359999999,Chattanooga +Bessie Smith Cultural Center and Chattanooga African American Museum,"200 E M L King Blvd, Chattanooga, TN 37403, USA",(423) 266-8658,http://www.bessiesmithcc.org/?utm_source=google&utm_medium=wix_google_business_profile&utm_campaign=3948799342172393035,35.0446336,-85.3064668,Chattanooga +Wooden Horse,"10 Bluff View Ave, Chattanooga, TN 37403, USA",Unknown,Unknown,35.0558357,-85.3067129,Chattanooga +"Deadhorse, Alaska","Deadhorse Dr, Prudhoe Bay, AK 99734, USA",Unknown,https://www.travelalaska.com/Destinations/Communities/Prudhoe-BayDeadhorse.aspx,70.19932539999999,-148.4593678,Deadhorse +Deadhorse Camp,"Mile 412.8 Dalton Highway, Prudhoe Bay, AK 99734, USA",(877) 474-3565,http://www.deadhorsecamp.com/,70.1884689,-148.4367828,Deadhorse +Northernmost Drivable Point in North America,"Unnamed Road, Prudhoe Bay, AK 99734, USA",Unknown,Unknown,70.5083932,-149.861184,Deadhorse +Deadhorse,"Deadhorse, Prudhoe Bay, AK 99734, USA",Unknown,Unknown,70.20019959999999,-148.4597191,Deadhorse +Natural Resources Department,"Prudhoe Bay, AK 99734, USA",(907) 659-2830,Unknown,70.41049579999999,-148.9721164,Deadhorse +Deadhorse Airport,"1 Airport Way, Prudhoe Bay, AK 99734, USA",(907) 659-2553,Unknown,70.1949601,-148.4629549,Deadhorse +Aurora Coffee Shop,"123 E Lake Colleen Dr, Prudhoe Bay, AK 99734, USA",(907) 670-0600,https://theaurorahotel.net/,70.2119365,-148.4377169,Deadhorse +Eagle Lodge,"DS12 Access Rd, Prudhoe Bay, AK 99734, USA",(907) 371-0340,http://afognakleasing.com/,70.2108688,-148.4253692,Deadhorse +Arctic Oilfield Hotel,"Prudhoe Bay, AK 99734, USA",(907) 685-0500,Unknown,70.2259073,-148.3971713,Deadhorse +Brooks Camp,"75 Sag River Rd, Prudhoe Bay, AK 99734, USA",(907) 659-6233,http://brookscampak.com/,70.2095485,-148.4078586,Deadhorse +The Aurora Hotel,"123 E Lake Colleen Dr, Prudhoe Bay, AK 99734, USA",(907) 670-0600,http://theaurorahotel.net/,70.21131129999999,-148.4379882,Deadhorse +Ashley Johnson-Barr Memorial Park,"208-222 Lagoon St, Kotzebue, AK 99752, USA",Unknown,https://www.cityofkotzebue.com/index.asp?Type=B_BASIC&SEC={2B1E554D-BA3D-4E98-AA3E-2861AD732FD0},66.8947457,-162.5976059,Kotzebue +Northwest Arctic Heritage Center,"171 Third Ave, Kotzebue, AK 99752, USA",(907) 442-3890,https://www.nps.gov/kova/planyourvisit/northwest-arctic-heritage-center.htm,66.8925946,-162.6052557,Kotzebue +Sitka National Historical Park,"Sitka National Historical Park, 103 Monastery St, Sitka, AK 99835, USA",(907) 747-0110,http://www.nps.gov/sitk/,57.0483239,-135.3159987,Sitka +Russian Bishop's House,"Sitka National Historical Park, 501 Lincoln St, Sitka, AK 99835, USA",(907) 747-0110,https://www.nps.gov/sitk/learn/historyculture/russian-bishops-house.htm,57.0513521,-135.3313722,Sitka +Sitka Sound Science Center,"Sage Memorial Building, 834 Lincoln St, Sitka, AK 99835, USA",(907) 747-8878,http://www.sitkascience.org/,57.0497528,-135.3235435,Sitka +Old Sitka State Historic Park,"Old Sitka Historic Site, Sitka, AK 99835, USA",Unknown,https://dnr.alaska.gov/parks/aspunits/southeast/oldsitkaahp.htm,57.1308324,-135.3725135,Sitka +Sheldon Jackson Museum,"104 College Dr, Sitka, AK 99835, USA",(907) 747-8981,https://museums.alaska.gov/sheldon_jackson/,57.05054320000001,-135.3222287,Sitka +Baranof Castle State Historic Site,"Sitka, AK 99835, USA",Unknown,Unknown,57.0486854,-135.3380656,Sitka +Fortress of the Bear,"4639 Sawmill Creek Rd, Sitka, AK 99835, USA",(907) 747-3550,http://www.fortressofthebear.org/,57.05042659999999,-135.2329939,Sitka +Sitka Whale Statue,"610 Lincoln St, Sitka, AK 99835, USA",Unknown,Unknown,57.0511346,-135.3285969,Sitka +Sitka breakwater,"Sitka, AK 99835, USA",Unknown,Unknown,57.0491696,-135.3245271,Sitka +Herring Cove Trail,"NF-Fh11, Sitka, AK 99835, USA",Unknown,https://sitkatrailworks.org/beaver-lakeherring-cove-trail-loop/,57.0451077,-135.2016892,Sitka +Sitka Historical Society & Museum,"330 Harbor Dr, Sitka, AK 99835, USA",(907) 738-3766,http://www.sitkahistory.com/,57.0494511,-135.3321783,Sitka +Alaska Native Brotherhood Hall,"223 Katlian St, Sitka, AK 99835, USA",Unknown,https://www.nps.gov/subjects/nhlalaska/index.htm,57.05072639999999,-135.3409908,Sitka +St. Michael the Archangel Orthodox Cathedral,"240 Lincoln St, Sitka, AK 99835, USA",(907) 747-8120,http://stmichaelcathedral.org/,57.05,-135.3352778,Sitka +Southeast Alaska Indian Cultural Center,"106 Metlakatla St, Sitka, AK 99835, USA",(907) 747-0110,https://www.nps.gov/sitk/index.htm,57.0485652,-135.3190026,Sitka +Harbor Mountain view point,"NF-7576, Sitka, AK 99835, USA",Unknown,Unknown,57.0969017,-135.3667486,Sitka +Blue Lake Dam,"NF-7577, Sitka, AK 99835, USA",Unknown,Unknown,57.0618456,-135.2005411,Sitka +Alaska Raptor Center,"1000 Raptor Way, Sitka, AK 99835, USA",(907) 747-8662,http://www.alaskaraptor.org/,57.052333,-135.3160504,Sitka +Sitka Wildlife Adventures,"215 Shotgun Alley, Sitka, AK 99835, USA",(907) 738-6481,https://www.sitkawildlifeadventures.com/,57.037896,-135.2759259,Sitka +Mosquito Cove Trailhead,"Mosquito, Cove Trail, Sitka, AK 99835, USA",Unknown,https://sitkatrailworks.org/mosquito-cove-trail/,57.13557489999999,-135.3675726,Sitka +Gavan Hill Trailhead,"3M7G+R2, Sitka, AK 99835, USA",Unknown,https://sitkatrailworks.org/harbor-mountaingavin-hill-trail/,57.064563,-135.324938,Sitka +Museum of the Rockies,"600 W Kagy Blvd, Bozeman, MT 59717, USA",(406) 994-2251,http://www.museumoftherockies.org/,45.65862389999999,-111.0451215,Bozeman +Gallatin History Museum,"317 W Main St, Bozeman, MT 59715, USA",(406) 522-8122,http://gallatinhistorymuseum.org/,45.679657,-111.042195,Bozeman +Bozeman Sculpture Park,"626 E Main St, Bozeman, MT 59715, USA",Unknown,http://www.gallatinartcrossing.org/,45.67675879999999,-111.0274301,Bozeman +American Computer & Robotics Museum,"2023 Stadium Dr #1a, Bozeman, MT 59715, USA",(406) 582-1288,http://www.acrmuseum.org/,45.6592806,-111.0549639,Bozeman +The Story Mansion and Story Park,"811 S Willson Ave, Bozeman, MT 59715, USA",(406) 582-2290,http://www.friendsofthestory.org,45.67074090000001,-111.0395117,Bozeman +Montana Science Center,"2744 W Main St, Bozeman, MT 59718, USA",(406) 522-9087,https://montanasciencecenter.org/,45.6721805,-111.0744063,Bozeman +Dinosaur Park,"1707 Vaquero Pkwy, Bozeman, MT 59718, USA",(406) 582-3178,Unknown,45.6954881,-111.0847807,Bozeman +Peets Hill/Burke Park,"429 E Story St, Bozeman, MT 59715, USA",(406) 587-8404,https://gvlt.org/featured-trails/peets-hill-burke-park/,45.67389979999999,-111.0293315,Bozeman +Glen Lake Rotary Park,"Bozeman, MT 59715, USA",Unknown,https://www.bozemansunriserotary.org/sitepage/glen-lake-rotary-park/glen-lake-rotary-park,45.7045046,-111.0388199,Bozeman +Bozeman Welcome Sign,"Bozeman, MT 59715, USA",Unknown,Unknown,45.67762760000001,-111.0156917,Bozeman +College 'M',"Trail to 'M', Bozeman, MT 59715, USA",Unknown,Unknown,45.7146921,-110.9734986,Bozeman +Yellowstone Glacier Adventures,"65 Hidden Valley Rd, Bozeman, MT 59718, USA",(406) 585-9041,http://www.yellowstoneyearround.com/,45.729051,-111.0979132,Bozeman +Gallatin County Regional Park,"5000 Tschache Ln, Bozeman, MT 59718, USA",(406) 582-3178,https://gvlt.org/featured-trails/gallatin-regional-park/,45.6950748,-111.088943,Bozeman +Downtown Bozeman Partnership,"222 E Main St #302, Bozeman, MT 59715, USA",(406) 586-4008,http://www.downtownbozeman.org/,45.6791029,-111.0335398,Bozeman +The Extreme History Project,"234 E Mendenhall St, Bozeman, MT 59715, USA",(406) 220-2678,http://www.extremehistoryproject.org/,45.6802117,-111.0333019,Bozeman +Palm Springs Aerial Tramway,"1 Tramway Rd, Palm Springs, CA 92262, USA",(760) 325-1391,https://pstramway.com/,33.8370537,-116.6141062,Palm Springs +Palm Springs Art Museum,"101 N Museum Dr, Palm Springs, CA 92262, USA",(760) 322-4800,https://www.psmuseum.org/,33.8242137,-116.5499366,Palm Springs +Walk of the Stars Palm Springs,"10 N Palm Canyon Dr, Palm Springs, CA 92262, USA",Unknown,https://www.facebook.com/Palm-Springs-Walk-of-Stars-171425349581866/,33.8231607,-116.546711,Palm Springs +Moorten Botanical Garden,"1701 S Palm Canyon Dr, Palm Springs, CA 92264, USA",(760) 327-6555,http://www.moortenbotanicalgarden.com/,33.800232,-116.5461732,Palm Springs +Indian Canyons,"38520 S Palm Canyon Dr, Palm Springs, CA 92264, USA",(760) 323-6018,http://www.indian-canyons.com/,33.7497215,-116.5409498,Palm Springs +Palm Springs Air Museum,"Parking, lot 745 N Gene Autry Trail, Palm Springs, CA 92262, USA",(760) 778-6262,http://palmspringsairmuseum.org/,33.8325472,-116.5049806,Palm Springs +Palm Springs Historical Society,"221 S Palm Canyon Dr, Palm Springs, CA 92262, USA",(760) 323-8297,https://pshistoricalsociety.org/,33.8207524,-116.5470074,Palm Springs +Greater Palm Springs,"70100 CA-111, Rancho Mirage, CA 92270, USA",(760) 770-9000,http://www.visitgreaterpalmsprings.com/,33.76199630000001,-116.4413063,Palm Springs +Frances Stevens Park,"500 N Palm Canyon Dr, Palm Springs, CA 92262, USA",Unknown,Unknown,33.8305183,-116.5460725,Palm Springs +Palm Springs Welcome Sign,"Palm Springs, CA 92262, USA",Unknown,Unknown,33.8593509,-116.5587192,Palm Springs +Robolights,"1077 E Granvia Valmonte, Palm Springs, CA 92262, USA",(760) 774-0318,http://www.robochristmas.com/,33.8319337,-116.5353368,Palm Springs +Agua Caliente Tahquitz Visitor Center,"500 W Mesquite Ave, Palm Springs, CA 92264, USA",(760) 416-7044,http://www.tahquitzcanyon.com/canyon,33.8100011,-116.5527753,Palm Springs +The Living Desert Zoo and Gardens,"47900 Portola Ave, Palm Desert, CA 92260, USA",(760) 346-5694,https://www.livingdesert.org/,33.6999789,-116.3744166,Palm Springs +Shiprock,"Palm Springs, CA 92262, USA",Unknown,Unknown,33.8692458,-116.5771091,Palm Springs +Sonny Bono Statue,"155 S Palm Canyon Dr, Palm Springs, CA 92262, USA",Unknown,Unknown,33.8220109,-116.5471643,Palm Springs +Santa Rosa and San Jacinto Mountains National Monument Visitor Center,"51-500 CA-74, Palm Desert, CA 92260, USA",(760) 862-9984,https://www.blm.gov/programs/national-conservation-lands/california/santa-rosa-and-san-jacinto-mountains-national-monument,33.6716537,-116.4087363,Palm Springs +El Mirador Tower,"N Indian Canyon Dr, Palm Springs, CA 92262, USA",(760) 323-6511,https://www.palmspringslife.com/a-healthy-outcome-at-el-mirador/,33.838641,-116.5449904,Palm Springs +Palm Springs Art Museum Architecture and Design Center,"300 S Palm Canyon Dr, Palm Springs, CA 92262, USA",(760) 423-5260,http://www.psmuseum.org/architecture-design-center/,33.81919260000001,-116.5465368,Palm Springs +Agua Caliente Cultural Museum,"140 N Indian Canyon Dr, Palm Springs, CA 92262, USA",(760) 778-1079,http://www.accmuseum.org/,33.8242954,-116.5450063,Palm Springs +Desert View Terrace,"1 Tram Way, Palm Springs, CA 92262, USA",Unknown,Unknown,33.8130821,-116.6384175,Palm Springs +National Civil Rights Museum,"450 Mulberry St, Memphis, TN 38103, USA",(901) 521-9699,https://www.civilrightsmuseum.org/,35.1344326,-90.05755599999999,Memphis +Graceland,"Elvis Presley Blvd, Memphis, TN 38116, USA",(901) 332-3322,https://www.graceland.com/,35.0476912,-90.02604930000001,Memphis +Memphis Rock 'n' Soul Museum,"Just South of Beale at FedExForum, 191 Beale St, Memphis, TN 38103, USA",(901) 205-2533,http://memphisrocknsoul.org/,35.1384943,-90.0521758,Memphis +Children's Museum of Memphis,"2525 Central Ave, Memphis, TN 38104, USA",(901) 458-2678,https://cmom.com/,35.125208,-89.976525,Memphis +Memphis Botanic Garden,"750 Cherry Rd, Memphis, TN 38117, USA",(901) 636-4100,http://membg.org/,35.110813,-89.91772569999999,Memphis +Elvis Presley's Memphis,"3717 Elvis Presley Blvd, Memphis, TN 38116, USA",(901) 332-3322,http://graceland.com/,35.04813010000001,-90.02588589999999,Memphis +Shelby Farms Park,"6903 Great View Dr N, Memphis, TN 38134, USA",(901) 222-7275,http://www.shelbyfarmspark.org/,35.1386993,-89.83226169999999,Memphis +Stax Museum of American Soul Music,"926 E McLemore Ave, Memphis, TN 38126, USA",(901) 261-6338,http://www.staxmuseum.com/,35.11564329999999,-90.0312615,Memphis +Slave Haven Underground Railroad Museum,"826 N 2nd St, Memphis, TN 38107, USA",(901) 527-7711,http://slavehavenmemphis.com/,35.16464739999999,-90.04313909999999,Memphis +Memphis Zoo,"2000 Prentiss Pl, Memphis, TN 38112, USA",(901) 333-6500,https://memphiszoo.org/,35.1482196,-89.9950187,Memphis +Tom Lee Park,"Riverside Dr, Memphis, TN 38103, USA",Unknown,http://www.tomleepark.org/,35.1360674,-90.0636756,Memphis +The Cotton Museum at the Memphis Cotton Exchange,"65 Union Ave, Memphis, TN 38103, USA",(901) 531-7826,http://www.memphiscottonmuseum.org/,35.1434083,-90.0547667,Memphis +Graceland Mansion,"3764 Elvis Presley Blvd, Memphis, TN 38116, USA",Unknown,https://www.graceland.com/mansion,35.0459411,-90.0229481,Memphis +Beale Street Entertainment District,"Beale St, Memphis, TN 38103, USA",Unknown,http://www.bealestreet.com/,35.13990200000001,-90.0534601,Memphis +Memphis Music Hall of Fame,"126 S 2nd St, Memphis, TN 38103, USA",(901) 205-2532,http://memphismusichalloffame.com/,35.140345,-90.0535072,Memphis +Elvis Statue,"115 Beale St, Memphis, TN 38103, USA",Unknown,http://elvis-statue.keeq.io/,35.1399782,-90.0542789,Memphis +Memphis Museum of Science & History,"3050 Central Ave, Memphis, TN 38111, USA",(901) 636-2362,https://moshmemphis.com/,35.1253603,-89.9591949,Memphis +Fire Museum of Memphis,"118 Adams Ave, Memphis, TN 38103, USA",(901) 636-5650,http://www.firemuseum.com/,35.14815419999999,-90.05102579999999,Memphis +Memphis Sign,"Mud Island Park, River Park, Mud Island, Memphis, TN 38103, USA",Unknown,https://www.memphisart.org/artwork/memphis-bicentennial-sign/,35.1453955,-90.058893,Memphis +Dixon Gallery & Gardens,"4339 Park Ave, Memphis, TN 38117, USA",(901) 761-5250,http://www.dixon.org/,35.1064644,-89.9172667,Memphis +Whaling Museum,"13 Broad St, Nantucket, MA 02554, USA",(508) 228-1894,http://www.nha.org/,41.28549,-70.0987762,Nantucket +Great Point Lighthouse,"Nantucket, MA 02554, USA",(508) 325-5395,https://www.nantucket-ma.gov/2484/Great-Point-Coskata-Coatue-Wildlife-Refu,41.3900672,-70.0482662,Nantucket +Great Point Beach,"Great Point Rd, Nantucket, MA 02554, USA",(508) 228-1700,http://www.thetrustees.org/,41.3663518,-70.0205993,Nantucket +Coskata-Coatue Wildlife Refuge Gatehouse,"107 Wauwinet Rd, Nantucket, MA 02554, USA",(508) 228-0006,http://www.thetrustees.org/,41.3279998,-69.9966333,Nantucket +Hadwen House,"96 Main St, Nantucket, MA 02554, USA",(508) 228-1894,https://nha.org/visit/museums-and-tours/hadwen-house/,41.28145910000001,-70.1022751,Nantucket +Greater Light,"8 Howard St, Nantucket, MA 02554, USA",(508) 228-1894,http://www.nha.org/sites/greaterlight.html,41.281997,-70.10410170000002,Nantucket +Nantucket House,"2 Seikinnow Pl, Nantucket, MA 02554, USA",Unknown,Unknown,41.2627253,-70.09091699999999,Nantucket +Nantucket Shipwreck and Life Saving Museum,"158 Polpis Rd, Nantucket, MA 02554, USA",(508) 228-1885,http://eganmaritime.org/shipwreck-lifesaving-museum,41.29120400000001,-70.044854,Nantucket +Salt Marsh Way Beach,"92 Washington St, Nantucket, MA 02554, USA",Unknown,Unknown,41.279443,-70.09267489999999,Nantucket +'Sconset Bluff Walk,"27 Bank St, Siasconset, MA 02564, USA",Unknown,https://nantucket-ma.gov/Facilities/Facility/Details/Sconset-Bluff-Walk-25,41.2638874,-69.9629084,Nantucket +Nantucket Downtown Historic District,"2 Fairgrounds Rd, Nantucket, MA 02554, USA",Unknown,https://www.nantucket-ma.gov/283/Historic-District-Commission,41.2837637,-70.0988397,Nantucket +Brant Point Lighthouse,"Easton St, Nantucket, MA 02554, USA",Unknown,https://www.nps.gov/nr/travel/maritime/brn.htm,41.2899249,-70.09028030000002,Nantucket +Jethro Coffin House,"16 Sunset Hill Ln, Nantucket, MA 02554, USA",(508) 228-1894,http://www.nha.org/sites/oldesthouse.html,41.287972,-70.1064406,Nantucket +Smith's Point,"Nantucket, MA 02554, USA",Unknown,https://www.nantucket-ma.gov/2424/Smiths-Point,41.27639749999999,-70.2168035,Nantucket +Nobadeer Beach,"Nobadeer Ave, Nantucket, MA 02554, USA",Unknown,Unknown,41.24458659999999,-70.0773883,Nantucket +Old Gaol,"15R Vestal St, Nantucket, MA 02554, USA",Unknown,http://www.nha.org/sites/oldgaol.html,41.2809953,-70.1062743,Nantucket +Madaket Beach,"Madaket Beach, Pensylvania Ave, Nantucket, MA 02554, USA",Unknown,http://www.nantucket-ma.gov/673/Beaches-Parks,41.2702349,-70.2050829,Nantucket +Gardiner's Corner City Sign,"16 Main St, Nantucket, MA 02554, USA",Unknown,Unknown,41.2833609,-70.0976879,Nantucket +Nantucket Land & Water Council Inc,"6 Ash Ln, Nantucket, MA 02554, USA",(508) 228-2818,https://www.nantucketlandcouncil.org/,41.285538,-70.10044400000001,Nantucket +Sconset Foot Bridge,"Unnamed Road, Siasconset, MA 02564, USA",Unknown,Unknown,41.2612585,-69.964145,Nantucket +Museum of Regional History,"219 N State Line Ave, Texarkana, TX 75501, USA",(903) 793-4831,http://www.texarkanamuseums.org/,33.4222979,-94.0433271,Texarkana +Spring Lake Park,"4303 N Park Rd, Texarkana, TX 75501, USA",(903) 798-3978,Unknown,33.4623093,-94.058364,Texarkana +Bringle Lake Park East,"3650 Shilling Rd, Texarkana, TX 75503, USA",Unknown,Unknown,33.4953732,-94.09670949999999,Texarkana +ArtSparK,"317 Main St, Texarkana, TX 75501, USA",(903) 792-8681,https://trahc.org/venue/artspark/,33.4226651,-94.0452426,Texarkana +Ace of Clubs House,"420 Pine St, Texarkana, TX 75501, USA",(903) 793-4831,http://www.texarkanamuseums.org/,33.4241131,-94.0441637,Texarkana +Texarkana Wall Murals #FABKMURAL,"116 W Broad St, Texarkana, TX 75501, USA",Unknown,https://www.visittexarkanadistrict.com/copy-of-attractions,33.4213397,-94.0438673,Texarkana +Texarkana Water Tower,"1307 W 4th St, Texarkana, TX 75501, USA",Unknown,https://txktoday.com/news/work-painti,33.4192759,-94.055729,Texarkana +Texas State Line,"N State Line Ave, Texarkana, TX 75503, USA",Unknown,Unknown,33.4703375,-94.043161,Texarkana +Holiday Springs Water Park,"5501 Crossroads Pkwy, Texarkana, AR 71854, USA",(870) 772-2200,http://www.holidayspringswaterpark.com/,33.47538540000001,-94.0355709,Texarkana +Discovery Place Interactive Museum,"215 Pine St, Texarkana, TX 75501, USA",(903) 793-4831,http://www.texarkanamuseums.org/,33.421873,-94.0433505,Texarkana +Texarkana Museums System,"219 N State Line Ave, Texarkana, TX 75501, USA",(903) 793-4831,http://texarkanamuseum.org/,33.4223029,-94.04329919999999,Texarkana +Welcome to Arkansas Sign,"State Line Ave, Texarkana, AR 71854, USA",Unknown,Unknown,33.405887,-94.0431146,Texarkana +Four States Auto Museum,"217 Laurel St, Texarkana, AR 71854, USA",(870) 772-2886,http://www.fourstatesautomuseum.org/,33.4243398,-94.0381797,Texarkana +Bringle Lake Park West,"7602 University Ave, Texarkana, TX 75503, USA",(903) 798-3900,http://www.ci.texarkana.tx.us/facilities/facility/details/Bringle-Lake-3,33.4955863,-94.103758,Texarkana +Welcome to Arkansas Sign,"AR-151, Texarkana, AR 71854, USA",Unknown,Unknown,33.38565779999999,-94.0414777,Texarkana +Fun Country Park,"8225 N State Line Ave, Texarkana, TX 75503, USA",(903) 791-0001,Unknown,33.5138031,-94.0449294,Texarkana +Texas State Line Monument,"N State Line Ave, Texarkana, TX 75503, USA",Unknown,Unknown,33.5466662,-94.04417819999999,Texarkana +Parks & Wildlife Department,"601 Main St, Texarkana, TX 75501, USA",(903) 798-3440,Unknown,33.4251727,-94.0470153,Texarkana +Welcome to Texas Sign,"570 Interstate 30 Frontage Road, Texarkana, TX 75503, USA",Unknown,Unknown,33.4704587,-94.04794299999999,Texarkana +Welcome to Texas Sign,"TX-151 Loop, Texarkana, TX 75501, USA",Unknown,Unknown,33.3860344,-94.04395249999999,Texarkana +Jack O'Connor Center,"5600 Hells Gate Rd, Lewiston, ID 83501, USA",(208) 743-5043,https://jack-oconnor.org/,46.362665,-117.0574109,Lewiston +Lewis & Clark Discovery Center,"5100 Hells Gate Rd, Lewiston, ID 83501, USA",(208) 799-5015,https://parksandrecreation.idaho.gov/parks/hells-gate/,46.368332,-117.0576884,Lewiston +Nez Perce County Historical Society,"0306 3rd St, Lewiston, ID 83501, USA",(208) 743-2535,http://www.nezpercecountymuseum.com/,46.42284839999999,-117.0289833,Lewiston +Hells Gate State Park,"5100 Hells Gate Rd, Lewiston, ID 83501, USA",(208) 799-5015,http://parksandrecreation.idaho.gov/parks/hells-gate,46.36800849999999,-117.0571623,Lewiston +Lewis and Clark Center,"Lewiston, ID 83501, USA",Unknown,Unknown,46.4243835,-117.0336923,Lewiston +Modie Park Conservancy,"1035 21st Ave, Lewiston, ID 83501, USA",(208) 743-9182,https://modiepark.org/,46.3987317,-117.0172594,Lewiston +Wild Adventures,"3766 Old Clyattville Rd, Valdosta, GA 31601, USA",(229) 219-7080,https://www.wildadventures.com/,30.71932659999999,-83.32245470000001,Valdosta +Grand Bay Wildlife Management Area,"4649 Knight Academy Rd #4641, Valdosta, GA 31605, USA",(229) 426-5267,https://georgiawildlife.com/grand-bay-wma,30.9204237,-83.1927747,Valdosta +East Valdosta Diamond Railroad Crossing,"729 E Savannah Ave, Valdosta, GA 31601, USA",Unknown,Unknown,30.8334331,-83.2673835,Valdosta +Wood Valley Park,"2130-, 2140 Gornto Rd, Valdosta, GA 31602, USA",Unknown,Unknown,30.8497665,-83.322874,Valdosta +Lowndes County Historical Museum,"305 W Central Ave, Valdosta, GA 31601, USA",(229) 247-4780,http://www.valdostamuseum.com/,30.8305161,-83.2827561,Valdosta +John W. Saunders Memorial Park,"RMHX+GJQ, 1151 River St, Valdosta, GA 31601, USA",(229) 259-3507,https://vlpra.com/200/John-W-Saunders-Memorial-Park,30.82955309999999,-83.3004672,Valdosta +Drexel Park,"1401 N Patterson St, Valdosta, GA 31601, USA",(229) 259-3507,http://www.exploregeorgia.org/listing/1490-drexel-park,30.847192,-83.28384489999999,Valdosta +National SEA LIFE Centre Birmingham,"The Water's Edge, Eleven Brindley Place, Birmingham B1 2HL, UK",0121 634 2610,https://www.visitsealife.com/birmingham,52.4782074,-1.9128138,Birmingham +Cadbury World,"69 Linden Rd, Birmingham B30 1JR, UK",0121 828 9300,https://www.cadburyworld.co.uk/,52.4287945,-1.9314253,Birmingham +The Birmingham Botanical Gardens,"Westbourne Rd, Birmingham B15 3TR, UK",0121 454 1860,https://www.birminghambotanicalgardens.org.uk/?utm_source=google&utm_medium=organic&utm_campaign=gmb,52.46721669999999,-1.9296332,Birmingham +Aston Hall,"Trinity Rd, Birmingham B6 6JD, UK",Unknown,http://www.birminghammuseums.org.uk/aston,52.506495,-1.8845164,Birmingham +Thinktank Birmingham Science Museum,"Millennium Point, Curzon St, Birmingham B4 7XG, UK",0121 348 8000,http://www.birminghammuseums.org.uk/thinktank,52.48253099999999,-1.886773,Birmingham +Birmingham Wildlife Conservation Park,"Pershore Rd, Birmingham B5 7RL, UK",0121 471 4997,http://www.bhamconservationpark.org/,52.45043700000001,-1.910305999999999,Birmingham +Birmingham Cathedral,"Cathedral Square, Colmore Row, Birmingham B3 2QB, UK",0121 262 1840,http://www.birminghamcathedral.com/,52.4811597,-1.8991412,Birmingham +Winterbourne House & Garden,"58 Edgbaston Park Rd, Birmingham B15 2RT, UK",0121 414 3003,https://www.winterbourne.org.uk/,52.4526911,-1.9235632,Birmingham +National Trust - Birmingham Back to Backs,"50-54, 55-63 Inge St, Hurst St, Birmingham B5 4TE, UK",0121 622 2442,https://www.nationaltrust.org.uk/birmingham-back-to-backs,52.4743351,-1.8972246,Birmingham +LEGOLAND Discovery Centre & LEGO Store Birmingham,"LEGOLAND Discovery Centre, Arena, King Edwards Rd, Birmingham B1 2AA, UK",0121 794 2386,https://www.legolanddiscoverycentre.com/birmingham/,52.4791473,-1.9150398,Birmingham +Cannon Hill Park,"Russell Rd, Moseley, Birmingham B13 8RD, UK",0121 303 1111,https://www.birmingham.gov.uk/directory_record/9091/cannon_hill_park,52.4515075,-1.9026256,Birmingham +Birmingham Museum & Art Gallery,"Chamberlain Sq, Birmingham B3 3DH, UK",0121 348 8000,https://www.birminghammuseums.org.uk/birmingham-museum-and-art-gallery/,52.480111,-1.903462,Birmingham +The Coffin Works,"13-15 Fleet St, Birmingham B3 1JP, UK",0121 233 4790,http://www.coffinworks.org/,52.4819641,-1.9073582,Birmingham +Lapworth Museum of Geology,"Aston Webb Building, University of Birmingham, Birmingham B15 2TT, UK",0121 414 7294,http://www.birmingham.ac.uk/facilities/lapworth-museum/index.aspx,52.449203,-1.932230999999999,Birmingham +Edgbaston Village,"5 Greenfield Cres, Birmingham B15, UK",0121 248 7676,https://edgbastonvillage.co.uk/,52.4699777,-1.9220236,Birmingham +Library of Birmingham,"1 Centenary Sq, Birmingham B1 2EA, UK",0121 242 4242,https://birmingham.spydus.co.uk/cgi-bin/spydus.exe/MSGTRN/WPAC/HOME,52.47970780000001,-1.9085044,Birmingham +Selly Manor Museum,"Maple Rd, Bournville, Birmingham B30 2AE, UK",0121 472 0199,http://www.sellymanormuseum.org.uk/,52.43074439999999,-1.9342376,Birmingham +Sutton Park,"Park Rd, The Royal Town of Sutton Coldfield, Birmingham, Sutton Coldfield B74 2YT, UK",0121 355 6370,https://www.birmingham.gov.uk/suttonpark,52.5711204,-1.8568268,Birmingham +Blakesley Hall Museum,"Blakesley Hall, Blakesley Rd, Birmingham B25 8RN, UK",0121 348 8000,http://www.birminghammuseums.org.uk/blakesley,52.4734414,-1.8093949,Birmingham +Soho House Museum,"Soho Ave, Birmingham B18 5LB, UK",0121 348 8000,http://www.birminghammuseums.org.uk/soho,52.4996654,-1.922607,Birmingham +Steamtown National Historic Site,"350 Cliff St, Scranton, PA 18503, USA",(570) 445-1898,https://www.nps.gov/stea/,41.4079058,-75.6720114,Scranton +Nay Aug Park,"500 Arthur Ave, Scranton, PA 18510, USA",(570) 348-4186,https://nayaugpark.org/,41.4000913,-75.6446789,Scranton +Everhart Museum,"1901 Mulberry St, Scranton, PA 18510, USA",(570) 346-7186,http://everhart-museum.org/,41.4006958,-75.64421080000001,Scranton +Electric City Trolley Museum,"300 Cliff St, Scranton, PA 18503, USA",(570) 963-6590,http://www.ectma.org/,41.4094769,-75.6733115,Scranton +Anthracite Heritage Museum,"22 Bald Mountain Rd, Scranton, PA 18504, USA",(570) 963-4804,http://www.anthracitemuseum.org/,41.416863,-75.7163881,Scranton +Lackawanna Coal Mine Tour,"Bald Mountain Rd, Scranton, PA 18504, USA",(570) 963-6463,https://coalminetournepa.com/,41.4166832,-75.71519889999999,Scranton +Scranton Iron Furnaces,"159 Cedar Ave, Scranton, PA 18505, USA",(570) 963-4804,http://www.anthracitemuseum.org/explore/iron-furnaces/,41.40403779999999,-75.6627492,Scranton +Montage Mountain Resorts,"1000 Montage Mountain Rd, Scranton, PA 18507, USA",(570) 969-7669,https://www.montagemountainresorts.com/,41.3512429,-75.6629169,Scranton +Steamtown NHS Diamond Railroad Crossing,"150 S Washington Ave, Scranton, PA 18503, USA",Unknown,Unknown,41.4072197,-75.6701853,Scranton +The Lookout,"Moosic St, Scranton, PA 18505, USA",Unknown,Unknown,41.3957677,-75.6388793,Scranton +The 'Pioneer' Gravity Rail Car,"Scranton, PA 18510, USA",Unknown,Unknown,41.4006752,-75.6433244,Scranton +Catlin House Museum,"232 Monroe Ave, Scranton, PA 18510, USA",(570) 344-3841,http://www.lackawannahistory.org/,41.4058088,-75.657522,Scranton +Rail Yard Scenic View,"300 Lackawanna Ave, Scranton, PA 18503, USA",Unknown,Unknown,41.4077053,-75.6677196,Scranton +"Houdini Museum, Tour & Magic Show WEEKENDS","1433 N Main Ave, Scranton, PA 18508, USA",(570) 342-5555,http://houdini.org/,41.4325295,-75.663011,Scranton +Electric City Aquarium & Reptile Den,"300 Lackawanna Ave, Scranton, PA 18503, USA",(570) 909-9631,http://www.electriccityaquarium.com/,41.4079877,-75.66826739999999,Scranton +Nay Aug Avenue Natural Play Area,"1737 Nay Aug Ave #1731, Scranton, PA 18509, USA",(570) 963-6730,http://www.lhva.org/,41.4357526,-75.6570601,Scranton +Lahey Family Fun Park,"500 Morgan Hwy, Clarks Summit, PA 18411, USA",(570) 586-5699,http://www.laheyfunpark.com/,41.4630361,-75.6886667,Scranton +Paul Kanjorski Bridge,"759 Matthew Ave, Scranton, PA 18510, USA",Unknown,Unknown,41.4018016,-75.6376846,Scranton +Sturgis Park,"1100-1198 Electric St, Scranton, PA 18509, USA",Unknown,Unknown,41.42941,-75.642421,Scranton +The Electric City Mural,"800 Linden St, Scranton, PA 18510, USA",Unknown,Unknown,41.405736,-75.66012429999999,Scranton +Historic Pensacola Village,"205 E Zaragoza St, Pensacola, FL 32502, USA",(850) 595-5993,http://www.historicpensacola.org/,30.40874519999999,-87.2130784,Pensacola +Pensacola Museum of Art,"407 S Jefferson St, Pensacola, FL 32502, USA",(850) 432-6247,http://www.pensacolamuseum.org/,30.4079585,-87.213443,Pensacola +Palafox Street Downtown Pensacola,"200 N Palafox St, Pensacola, FL 32502, USA",Unknown,http://visitpensacola.com/,30.4156547,-87.2158627,Pensacola +Plaza De Luna Memorial Monument,"900 S Palafox St, Pensacola, FL 32502, USA",(850) 436-5670,https://www.cityofpensacola.com/facilities/facility/details/plazadeluna-75,30.402506,-87.2130128,Pensacola +The Graffiti Bridge,"N 17th Ave, Pensacola, FL 32502, USA",(850) 361-9306,http://thegraffitibridge.com/,30.420402,-87.193888,Pensacola +Pensacola Children's Museum,"115 Zaragoza St, Pensacola, FL 32502, USA",(850) 595-1559,http://www.historicpensacola.org/plan-your-visit/museums-properties/pensacola-childrens-museum/,30.408296,-87.2127429,Pensacola +Go Retro,"610 N Spring St, Pensacola, FL 32501, USA",(850) 466-5220,http://www.goretro.us/,30.4196742,-87.21960759999999,Pensacola +Museum of Commerce,"201 Zaragoza St, Pensacola, FL 32502, USA",(850) 595-5985,https://historicpensacola.org/plan-your-visit/museums-properties/museum-of-commerce/,30.4085519,-87.21147859999999,Pensacola +The Quina House Museum,"204 S Alcaniz St, Pensacola, FL 32502, USA",(850) 432-3050,https://pensacolahistoricpreservationsociety.com/quinahouse,30.41104139999999,-87.2093412,Pensacola +Pensacola MESS Hall,"418 E Wright St, Pensacola, FL 32502, USA",(877) 937-6377,http://www.pensacolamesshall.org/,30.418049,-87.210194,Pensacola +Pensacola Bay City Ferry,"750 Commendencia St, Pensacola, FL 32502, USA",(850) 466-3379,https://www.pensacolabaycityferry.com/,30.405077,-87.2121877,Pensacola +Museum of Industry,"200 Zaragoza St, Pensacola, FL 32502, USA",(850) 595-5985,http://historicpensacola.org/plan-your-visit/museums-properties/museum-of-industry/,30.4089578,-87.2115541,Pensacola +Pensacola,"Pensacola, FL 32501, USA",Unknown,https://www.visitpensacola.com/,30.42130899999999,-87.2169149,Pensacola +Pensacola Aviation Discovery Park,"4200 Jerry L Maygarden Rd, Pensacola, FL 32504, USA",Unknown,Unknown,30.4715774,-87.18137349999999,Pensacola +Seville Square,"311 E Government St, Pensacola, FL 32502, USA",(850) 436-5670,http://www.ci.pensacola.fl.us/,30.4094849,-87.2097321,Pensacola +The Twin Bluffs,"3700 Scenic Hwy, Pensacola, FL 32504, USA",Unknown,Unknown,30.4597979,-87.164964,Pensacola +Fort George,"501 N Palafox St, Pensacola, FL 32501, USA",(850) 436-5670,https://www.visitpensacola.com/listing/fort-george/2506/,30.4187436,-87.2169617,Pensacola +Voices of Pensacola Multicultural Center,"117 E Government St, Pensacola, FL 32502, USA",(850) 595-5840,http://historicpensacola.org/,30.4092351,-87.2129358,Pensacola +Splash City Adventures,"6709 Pensacola Blvd, Pensacola, FL 32505, USA",(850) 505-0800,http://splashcityadventure.com/,30.4880556,-87.2616667,Pensacola +Pensacola Lighthouse & Maritime Museum,"2081 Radford Blvd, Pensacola, FL 32508, USA",(850) 393-1561,http://www.pensacolalighthouse.org/,30.3460366,-87.3080825,Pensacola +Bowles House,"439 E Main St, Hancock, MD 21750, USA",(301) 714-2233,http://www.canaltrust.org/discoveryarea/bowles-house/,39.69396929999999,-78.1549409,Hancock +Kirkwood Park,"Kirk Farm Rd, Hancock, MD 21750, USA",(301) 678-5622,https://www.townofhancock.org/attractions,39.7068956,-78.1982762,Hancock +C&O Canal Lock 52,"Lock 52, Hancock, MD 21750, USA",(301) 739-4200,https://www.nps.gov/choh/index.htm,39.6938786,-78.1558003,Hancock +Hancock Historical Society,"126 W High St # 106, Hancock, MD 21750, USA",(301) 678-7377,Unknown,39.7005664,-78.1822351,Hancock +Joseph Hancock Jr. Primitive Park,"167 W Main St, Hancock, MD 21750, USA",(301) 678-5622,http://www.townofhancock.org/,39.6991285,-78.1839942,Hancock +Widmeyer Memorial Park,"Hancock, MD 21750, USA",(301) 678-5622,https://www.townofhancock.org/attractions,39.70190169999999,-78.189897,Hancock +Prospect Peak,"WV-9, Berkeley Springs, WV 25411, USA",Unknown,Unknown,39.6225416,-78.2595876,Hancock +Museum of the Berkeley Springs,"2 Fairfax St, Berkeley Springs, WV 25411, USA",(800) 447-8797,http://www.museumoftheberkeleysprings.com/,39.62727219999999,-78.228875,Hancock +Hancock Antique Mall & Indoor Flea Market,"266 N Pennsylvania Ave, Hancock, MD 21750, USA",(301) 678-5959,http://hancockantiquemall.com/,39.7104119,-78.1777311,Hancock +Buddylou's Eats Drinks & Antiques,"11 E Main St, Hancock, MD 21750, USA",(301) 678-6460,http://buddylous.com/,39.69859499999999,-78.17730999999999,Hancock +Robert W. Nichol Nature Preserve and Science Center,"404 W Main St, Hancock, NY 13783, USA",(607) 637-5262,http://delawareriver.natgeotourism.com/content/robert-w-nichol-nature-preserve-and-science-center/del930991ec5321c262b,41.95649239999999,-75.2893206,Hancock +Tri-Angle Restaurant,"200 E Main St, Hancock, MD 21750, USA",(301) 678-6175,Unknown,39.6969914,-78.1650133,Hancock +Hancock County Historical Museum,"1008 Ridge Ave, New Cumberland, WV 26047, USA",(304) 564-4800,http://hancockcountymuseum.com/,40.4907279,-80.6008078,Hancock +Blue Goose Fruit Market & Bakery,"557 E Main St, Hancock, MD 21750, USA",(301) 678-5050,https://www.bluegoosemarkethancock.com/,39.69377129999999,-78.1464788,Hancock +The Hancock Town Square,"20 E Main St, Hancock, NY 13783, USA",Unknown,Unknown,41.95489999999999,-75.2813129,Hancock +Hancock House Historic Site,"3 Front St, Hancocks Bridge, NJ 08038, USA",(856) 935-4373,https://nj.gov/dep/parksandforests/historic/hancockhouse.html,39.5079365,-75.4603178,Hancock +Potomac River Grill,"4 Blue Hill, Hancock, MD 21750, USA",(301) 678-6100,http://potomacrivergrill.com/,39.69833000000001,-78.186414,Hancock +IHOP,"434 E Main St, Hancock, MD 21750, USA",(240) 343-8164,https://restaurants.ihop.com/en-us/md/hancock/breakfast-434-e-main-street-5646?utm_source=google&utm_medium=organic&utm_campaign=google_my_business&utm_term=5646&utm_content=website,39.6956471,-78.1537264,Hancock +Hancock Visitors Center,"439 E Main St, Hancock, MD 21750, USA",(301) 678-5463,https://www.nps.gov/choh/planyourvisit/hancockvisitorcenter.htm,39.6939736,-78.1548486,Hancock +Santa Monica Pier,"200 Santa Monica Pier, Santa Monica, CA 90401, USA",(310) 458-8900,https://santamonicapier.org/,34.0082821,-118.4987585,Los Angeles +Griffith Observatory,"2800 E Observatory Rd, Los Angeles, CA 90027, USA",(213) 473-0800,https://griffithobservatory.org/,34.1184341,-118.3003935,Los Angeles +Hollywood Sign,"Los Angeles, CA 90068, USA",(323) 258-4338,http://www.hollywoodsign.org/,34.1341151,-118.3215482,Los Angeles +Los Angeles County Museum of Art,"5905 Wilshire Blvd, Los Angeles, CA 90036, USA",(323) 857-6000,http://www.lacma.org/,34.0639323,-118.3592293,Los Angeles +Universal Studios Hollywood,"100 Universal City Plaza, Universal City, CA 91608, USA",(800) 864-8377,https://www.universalstudioshollywood.com/?utm_source=google&utm_medium=organic&utm_campaign=GMB,34.13811680000001,-118.3533783,Los Angeles +Griffith Park,"4730 Crystal Springs Dr, Los Angeles, CA 90027, USA",(323) 913-4688,https://www.laparks.org/griffithpark/griffith-park-home-page,34.1365544,-118.2942,Los Angeles +Guinness World Records Museum,"6764 Hollywood Blvd, Los Angeles, CA 90028, USA",(323) 463-6433,https://www.hollywoodwaxentertainment.com/hollywood-ca-attractions/guinness-worlds-records-museum/,34.1014015,-118.3380435,Los Angeles +Natural History Museum of Los Angeles County,"900 Exposition Blvd, Los Angeles, CA 90007, USA",(213) 763-3466,https://nhm.org/,34.0171448,-118.2886635,Los Angeles +The Broad,"221 S Grand Ave, Los Angeles, CA 90012, USA",(213) 232-6200,https://www.thebroad.org/,34.0545021,-118.2501802,Los Angeles +Crossroads of the World,"6671 Sunset Blvd, Los Angeles, CA 90028, USA",(323) 463-5611,https://www.crossroadsoftheworldla.com/,34.0981907,-118.3356595,Los Angeles +Paramount Pictures Studio Tour,"5515 Melrose Ave, Los Angeles, CA 90038, USA",(323) 956-1777,http://www.paramountstudiotour.com/,34.0837936,-118.3208986,Los Angeles +La Brea Tar Pits and Museum,"5801 Wilshire Blvd, Los Angeles, CA 90036, USA",(213) 763-3499,https://tarpits.org/,34.06388,-118.356445,Los Angeles +Hollywood Walk of Fame,"6901 Hollywood Blvd, Los Angeles, CA 90028, USA",Unknown,https://walkoffame.com/william-shatner/,34.1017052,-118.340257,Los Angeles +Hollywood Wax Museum,"6767 Hollywood Blvd, Los Angeles, CA 90028, USA",(323) 462-5991,https://www.hollywoodwaxentertainment.com/hollywood-ca-attractions/hollywood-wax-museum/,34.1017446,-118.3381545,Los Angeles +You Are The Star,"1665 Wilcox Ave, Los Angeles, CA 90028, USA",Unknown,Unknown,34.1012752,-118.3309212,Los Angeles +Bronson Caves,"3200 Canyon Dr, Los Angeles, CA 90068, USA",(818) 243-1145,http://www.laparks.org/park/bronson-canyon,34.1213309,-118.3143371,Los Angeles +View,"7695-7699 Mulholland Dr, Los Angeles, CA 90046, USA",Unknown,Unknown,34.1288408,-118.3651137,Los Angeles +The Getty,"1200 Getty Center Dr, Los Angeles, CA 90049, USA",(310) 440-7300,https://www.getty.edu/visit/center/,34.0780358,-118.4740954,Los Angeles +Universal Studio Tour,"100 Universal City Plaza, Universal City, CA 91608, USA",(800) 864-8377,https://www.universalstudioshollywood.com/web/en/us/things-to-do/rides-and-attractions/the-world-famous-studio-tour,34.1390399,-118.3537014,Los Angeles +Scavenger Hunt Walking Tours - Los Angeles Union Station,"800 N Alameda St, Los Angeles, CA 90012, USA",(916) 587-2923,https://www.scavengerhuntwalkingtours.com/,34.0562196,-118.2365021,Los Angeles +Lime Creek Nature Center,"3501 Lime Creek Rd, Mason City, IA 50401, USA",(641) 423-5309,http://www.cgcounty.org/,43.1838114,-93.1927745,Mason City +Music Man Square,"308 S Pennsylvania Ave, Mason City, IA 50401, USA",(641) 424-2852,https://themusicmansquare.org/,43.14925069999999,-93.1988604,Mason City +Charles H. MacNider Art Museum,"303 2nd St SE, Mason City, IA 50401, USA",(641) 421-3666,http://www.macniderart.org/,43.149489,-93.196023,Mason City +River City Sculptures on Parade,"9 N Federal Ave, Mason City, IA 50401, USA",(641) 423-5724,http://www.sculpturesonparade.com/contact-us.php,43.1521554,-93.2006787,Mason City +Stockman House,"530 1st St NE, Mason City, IA 50401, USA",(641) 423-1923,http://www.stockmanhouse.org/,43.1523486,-93.1921787,Mason City +East Park,"802 3rd St NE, Mason City, IA 50401, USA",(641) 421-3673,http://www.masoncity.net/pview.aspx?id=17965&catid=481,43.1541302,-93.1848698,Mason City +Rancho Deluxe,"500 2nd St NE, Mason City, IA 50401, USA",Unknown,https://www.facebook.com/Rancho-Deluxe-The-Original-Bicycle-Garden-279437285588064/,43.1537507,-93.1929035,Mason City +Central Park,"W State St, Mason City, IA 50401, USA",Unknown,Unknown,43.1522401,-93.20190149999999,Mason City +Kinney Pioneer Museum,"Suite G, 9184 265th St, Clear Lake, IA 50428, USA",(641) 423-1258,http://kinneypioneermuseum.org/,43.14996590000001,-93.33760989999999,Mason City +Blair Meadows Preserve,"275th St, Mason City, IA 50401, USA",Unknown,Unknown,43.1644269,-93.2629862,Mason City +Forsyth Park,"Savannah, GA 31401, USA",(912) 351-3841,https://www.savannahga.gov/351/Parks-Playgrounds,32.0675356,-81.09623839999999,Savannah +Wormsloe State Historic Site,"7601 Skidaway Rd, Savannah, GA 31406, USA",(912) 353-3023,https://gastateparks.org/Wormsloe,31.9801931,-81.069243,Savannah +Mercer-Williams House Museum,"429 Bull St, Savannah, GA 31401, USA",(912) 238-0208,http://www.mercerhouse.com/,32.071362,-81.0954668,Savannah +Savannah Historic District,"301 Martin Luther King Jr Blvd, Savannah, GA 31401, USA",(912) 944-0455,http://www.nps.gov/nr/travel/geo-flor/1.htm,32.07612410000001,-81.0990759,Savannah +Savannah's Waterfront,"1 W River St, Savannah, GA 31401, USA",(912) 234-0295,https://savannahswaterfront.com/,32.0818497,-81.09184929999999,Savannah +Old Fort Jackson,"1 Fort Jackson Rd, Savannah, GA 31404, USA",(912) 232-3945,http://www.chsgeorgia.org/OFJ,32.0818985,-81.0358067,Savannah +Owens-Thomas House & Slave Quarters,"124 Abercorn St, Savannah, GA 31401, USA",(912) 790-8800,http://www.telfair.org/visit/owens-thomas/,32.0773837,-81.0892894,Savannah +Davenport House Museum Entrance and Shop,"323 E Broughton St, Savannah, GA 31401, USA",(912) 236-8097,http://www.davenporthousemuseum.org/,32.0777164,-81.0878187,Savannah +American Prohibition Museum,"209 W Saint Julian Street, Savannah, GA 31401, USA",(912) 220-1249,https://www.americanprohibitionmuseum.com/,32.08055900000001,-81.0946235,Savannah +Jepson Center & Telfair Children's Art Museum (CAM),"207 W York St, Savannah, GA 31401, USA",(912) 790-8800,http://www.telfair.org/visit/jepson/,32.07828549999999,-81.0951522,Savannah +Hearse Ghost Tours,"1410 E Broad St, Savannah, GA 31401, USA",(912) 695-1578,https://www.hearseghosttours.com/,32.0601846,-81.0908072,Savannah +Savannah Children's Museum,"655 Louisville Rd, Savannah, GA 31401, USA",(912) 651-6823 ext. 203,http://www.chsgeorgia.org/SCM,32.0760234,-81.10093359999999,Savannah +#1 Ghost Tour,"309 E Park Ln, Savannah, GA 31401, USA",(912) 398-8632,https://1ghosttour.com/,32.0634629,-81.09390739999999,Savannah +Ralph Mark Gilbert Civil Rights Museum,"460 Martin Luther King Jr Blvd, Savannah, GA 31401, USA",(912) 777-6099,https://rmgcivilrightsmuseum.com/,32.07214039999999,-81.0998784,Savannah +Blue Orb Tours,"Chippewa Square, Savannah, GA 31401, USA",(912) 665-4258,https://blueorbtours.com/,32.0758198,-81.0931476,Savannah +Andrew Low House,"329 Abercorn St, Savannah, GA 31401, USA",(912) 233-6854,http://www.andrewlowhouse.com/,32.0730147,-81.0924551,Savannah +Tricentennial Park,"MLK Jr Blvd @, Louisville Rd, Savannah, GA 31401, USA",(912) 238-1453,http://www.savannah.com/tricentennial-park/,32.0756282,-81.0999451,Savannah +The Savannah Underground,"415 W Boundary St, Savannah, GA 31401, USA",(912) 214-5310,http://www.thesavannahunderground.com/,32.0733865,-81.105728,Savannah +Savannah History Museum,"303 Martin Luther King Jr Blvd, Savannah, GA 31401, USA",(912) 651-6840,http://www.chsgeorgia.org/,32.0761781,-81.0990726,Savannah +Pin Point Heritage Museum,"9924 Pin Point Ave, Savannah, GA 31406, USA",(912) 355-0064,Unknown,31.95215889999999,-81.0902873,Savannah +Grizzly & Wolf Discovery Center,"201 S Canyon St, West Yellowstone, MT 59758, USA",(800) 257-2570,http://www.grizzlydiscoveryctr.org/,44.6561185,-111.0986333,West Yellowstone +Museum of the Yellowstone,"104 Yellowstone Ave, West Yellowstone, MT 59758, USA",(406) 646-1100,http://museumoftheyellowstone.org/,44.658223,-111.100586,West Yellowstone +West Yellowstone Visitor Information Center,"30 Yellowstone Ave, West Yellowstone, MT 59758, USA",(406) 646-7701,https://www.destinationyellowstone.com/,44.6583236,-111.0992662,West Yellowstone +Yellowstone Aerial Adventures- Zipline Adventure Park,"105 S Faithful St, West Yellowstone, MT 59758, USA",(406) 646-5171,http://www.yellowstoneparkzipline.com/,44.6573998,-111.1059203,West Yellowstone +West Yellowstone Heritage Park,"179-199 Firehole Ave, West Yellowstone, MT 59758, USA",(406) 646-7715,http://www.townofwestyellowstone.com/residents/recreation/,44.66275139999999,-111.1011501,West Yellowstone +Yellowstone Giant Screen Theatre,"101 S Canyon St, West Yellowstone, MT 59758, USA",(406) 646-4100,https://www.yellowstonegiantscreen.com/,44.6575218,-111.0986804,West Yellowstone +West Yellowstone Destination Adventure Sign,"West Yellowstone, MT 59758, USA",Unknown,Unknown,44.65864,-111.0982803,West Yellowstone +Old Faithful,"Yellowstone National Park, WY 82190, USA",(307) 344-7381,http://www.nps.gov/yell/index.htm,44.46047879999999,-110.8281376,West Yellowstone +"madison junction, yellowstone national park","721 Airport Rd, West Yellowstone, MT 59758, USA",Unknown,Unknown,44.6866718,-111.1145878,West Yellowstone +Sled Hill,"135 Gibbon Ave, West Yellowstone, MT 59758, USA",Unknown,https://www.townofwestyellowstone.com/residents/recreation/,44.6636092,-111.1010652,West Yellowstone +SeeYellowstone.com,"211 Yellowstone Ave, West Yellowstone, MT 59758, USA",(800) 221-1151,http://www.seeyellowstone.com/,44.6589019,-111.1028635,West Yellowstone +Aquarium of the Pacific,"100 Aquarium Way, Long Beach, CA 90802, USA",(562) 590-3100,https://www.aquariumofpacific.org/,33.7619735,-118.1969738,Long Beach +The Queen Mary,"1126 Queens Hwy, Long Beach, CA 90802, USA",(562) 435-3510,https://www.queenmary.com/,33.7526356,-118.1903235,Long Beach +El Dorado Nature Center,"7550 E Spring St, Long Beach, CA 90815, USA",(562) 570-1745,http://www.longbeach.gov/park/park-and-facilities/parks-centers-pier/el-dorado-nature-center/,33.8098225,-118.0857107,Long Beach +The Lion Lighthouse,"200 Aquarium Way, Long Beach, CA 90802, USA",(562) 570-4950,Unknown,33.7602507,-118.1941058,Long Beach +Earl Burns Miller Japanese Garden,"Earl Warren Dr, Long Beach, CA 90840, USA",(562) 985-8420,https://www.csulb.edu/japanese-garden,33.7852766,-118.119816,Long Beach +Long Beach Museum of Art,"2300 E Ocean Blvd, Long Beach, CA 90803, USA",(562) 439-2119,http://www.lbma.org/,33.7634611,-118.1648139,Long Beach +ShoreLine Aquatic Park,"200 Aquarium Way, Long Beach, CA 90802, USA",(562) 570-3100,http://www.longbeach.gov/Park/Park-and-Facilities/Directory/ShoreLine-Aquatic-Park/,33.7601417,-118.1951111,Long Beach +El Dorado East Regional Park,"7550 E Spring St, Long Beach, CA 90815, USA",(562) 570-1771,http://www.longbeach.gov/park/park-and-facilities/directory/el-dorado-east-regional-park/,33.8109092,-118.0854391,Long Beach +Rainbow Lagoon Park,"400 E Shoreline Dr, Long Beach, CA 90802, USA",(562) 570-3100,http://www.longbeach.gov/park/park-and-facilities/directory/rainbow-lagoon/,33.7628892,-118.1876346,Long Beach +Seashell Park,"100 Aquarium Way, Long Beach, CA 90802, USA",Unknown,Unknown,33.7625017,-118.1962911,Long Beach +Long Beach Sign,"W Shoreline Dr, Long Beach, CA 90802, USA",Unknown,Unknown,33.7709553,-118.2038706,Long Beach +Skinniest House In America,"708 Gladys Ave, Long Beach, CA 90804, USA",Unknown,Unknown,33.7756288,-118.1577494,Long Beach +Jenni Rivera Memorial Park,"2001 Walnut Ave, Long Beach, CA 90806, USA",(562) 570-3111,http://www.longbeach.gov/,33.7955443,-118.1741434,Long Beach +Giant Globe,"Long Beach, CA 90846, USA",Unknown,Unknown,33.8276909,-118.1462255,Long Beach +Bixby Park,"130 Cherry Ave, Long Beach, CA 90802, USA",(562) 570-1601,http://www.longbeach.gov/park/park-and-facilities/directory/bixby-park/,33.765966,-118.167132,Long Beach +Pride Lifeguard Tower,"1799 Bluff Pl #1693, Long Beach, CA 90802, USA",Unknown,Unknown,33.7636297,-118.1717606,Long Beach +Long Beach Lifeguard Museum,"5291 E Paoli Way, Long Beach, CA 90803, USA",Unknown,Unknown,33.7647615,-118.1275776,Long Beach +Cesar E. Chavez Park,"401 Golden Ave, Long Beach, CA 90802, USA",(562) 570-8890,http://www.longbeach.gov/park/park-and-facilities/directory/cesar-e--chavez-park/,33.7717552,-118.2023621,Long Beach +Museum of Latin American Art (MOLAA),"628 Alamitos Ave, Long Beach, CA 90802, USA",(562) 437-1689,http://www.molaa.org/,33.7744763,-118.1798478,Long Beach +Hilltop Park,"2351 Dawson Ave, Signal Hill, CA 90755, USA",(562) 989-7330,http://www.cityofsignalhill.org/Facilities.aspx?Page=detail&RID=3,33.79934969999999,-118.1656039,Long Beach +Nevada Museum of Art,"160 W Liberty St, Reno, NV 89501, USA",(775) 329-3333,https://www.nevadaart.org/,39.5207823,-119.8134183,Reno +The Discovery,"490 S Center St, Reno, NV 89501, USA",(775) 786-1000,https://nvdm.org/?utm_source=gmb&utm_medium=organic&utm_campaign=the_discovery,39.52176830000001,-119.8094121,Reno +National Automobile Museum,"1 Museum Dr, Reno, NV 89501, USA",(775) 333-9300,http://www.automuseum.org/,39.526224,-119.8083969,Reno +Fleischmann Planetarium,"1664 N Virginia St, Reno, NV 89557, USA",(775) 784-4812,http://unr.edu/planetarium,39.5459068,-119.8194696,Reno +Rancho San Rafael Regional Park,"1595 N Sierra St, Reno, NV 89503, USA",(775) 785-4512,Unknown,39.5456988,-119.8239912,Reno +Wilbur D. May Center,"1595 N Sierra St, Reno, NV 89503, USA",(775) 785-5961,http://www.maycenter.com/,39.5460619,-119.8254368,Reno +Idlewild Park,"2055 Idlewild Dr, Reno, NV 89509, USA",(775) 334-2270,Unknown,39.5218409,-119.8329796,Reno +Reno Arch,"345 N Virginia St, Reno, NV 89501, USA",(775) 334-4636,https://www.reno.gov/,39.5281622,-119.813681,Reno +Grand Adventure Land,"2500 E 2nd St, Reno, NV 89595, USA",(775) 789-1127,http://www.grandsierraresort.com/GrandAdventureLand,39.5264417,-119.78059,Reno +Nevada Historical Society,"1650 N Virginia St, Reno, NV 89503, USA",(775) 688-1190,http://www.nvhistoricalsociety.org/,39.5473222,-119.8204292,Reno +Animal Ark,"1265 Deerlodge Rd, Reno, NV 89508, USA",(775) 475-9626,http://www.animalark.org/,39.78392409999999,-119.869049,Reno +The Sensory Garden At Idlewild Park,"74 Cowan Dr, Reno, NV 89509, USA",Unknown,http://ktmb.org/sensory-garden/,39.5217021,-119.8331676,Reno +Indian Head,"Reno, NV 89509, USA",Unknown,Unknown,39.52136890000001,-119.8333492,Reno +Dorostkar Park,"6331 Mayberry Dr, Reno, NV 89519, USA",(775) 828-6612,Unknown,39.5056928,-119.88642,Reno +Dragon Lights Reno,"1595 N Sierra St, Reno, NV 89503, USA",(888) 484-2698,https://dragonlightsreno.org/,39.5457842,-119.8240397,Reno +Believe sculpture,"10 N Virginia St, Reno, NV 89501, USA",Unknown,https://artrail.washoecounty.us/sites/believe.php,39.5256138,-119.8120102,Reno +W. M Keck Earth Science And Mineral Engineering Museum,"1664 North Virginia Street, Mackay Mines, 057 Mail Stop 0168, Reno, NV 89557, USA",(775) 784-4528,http://unr.edu/keck,39.5392212,-119.8144189,Reno +Old Wooden Bridge,"2100 Garson Rd, Reno, NV 89523, USA",Unknown,Unknown,39.5117066,-119.9629841,Reno +Bartley Ranch Regional Park,"6000 Bartley Ranch Rd, Reno, NV 89511, USA",(775) 828-6612,https://www.washoecounty.gov/parks/parks/park_directory_pages/south_region/bartley_ranch_regional_park.php,39.46978099999999,-119.8073539,Reno +Raymond L Smith Truckee River Walk,"17 S Virginia St, Reno, NV 89501, USA",(775) 825-9255,http://renoriver.org/about-us/our-history,39.5245387,-119.8126362,Reno +Akron Zoo,"500 Edgewood Ave, Akron, OH 44307, USA",(330) 375-2550,https://www.akronzoo.org/,41.078555,-81.5414397,Akron +Akron Art Museum,"1 S High St, Akron, OH 44308, USA",(330) 376-9186,http://akronartmuseum.org/,41.0843583,-81.5154611,Akron +Stan Hywet Hall & Gardens,"714 N Portage Path, Akron, OH 44303, USA",(330) 836-5533,https://www.stanhywet.org/,41.1192497,-81.5503172,Akron +Cascade Valley Metro Park-Chuckery Area,"837 Cuyahoga St, Akron, OH 44313, USA",(330) 867-5511,http://www.summitmetroparks.org/,41.1120179,-81.52497249999999,Akron +F.A. Seiberling Nature Realm,"1828 Smith Rd, Akron, OH 44313, USA",(330) 865-8065,http://www.summitmetroparks.org/fa-seiberling-nature-realm.aspx,41.1399175,-81.5757635,Akron +Lock 3 Park,"200 S Main St, Akron, OH 44308, USA",(330) 375-2877,http://lock3live.com/,41.079966,-81.52067339999999,Akron +Indian Signal Tree,"Peck Rd, Akron, OH 44310, USA",(330) 867-5511,http://www.summitmetroparks.org,41.1203374,-81.5180236,Akron +Akron Children's Museum,"51. W. State Street, Mailing Address:, 216 S Main St, Akron, OH 44308, USA",(330) 396-6103,http://akronkids.org/,41.0797658,-81.5217534,Akron +Simon Perkins Stone Mansion,"550 Copley Rd, Akron, OH 44320, USA",(330) 535-1120,http://summithistory.org/,41.0851189,-81.54158,Akron +Hower House,"60 Fir Hill, Akron, OH 44304, USA",(330) 972-6909,https://www.uakron.edu/howerhousemuseum/,41.0796335,-81.50768470000001,Akron +"Cuyahoga Valley Scenic Railroad, Akron","27 Ridge St, Akron, OH 44308, USA",(800) 468-4070,http://www.cvsr.com/,41.0894679,-81.5148576,Akron +Bethlehem Cave and Nativity Museum,"2425 Myersville Rd, Akron, OH 44312, USA",(330) 699-5086,http://www.nativityofthelord.org/,40.9974995,-81.4353405,Akron +Portage Path Native American Statue,"Akron, OH 44303, USA",Unknown,Unknown,41.0978606,-81.54578049999999,Akron +Cascade Valley Metro Park - Overlook Area,"354 Sackett Ave, Akron, OH 44313, USA",Unknown,https://www.summitmetroparks.org/cascade-valley-metro-park.aspx,41.1286817,-81.5212664,Akron +Polar Express,"27 Ridge St, Akron, OH 44308, USA",(800) 468-4070,Unknown,41.0895003,-81.5150264,Akron +Lock 4,"200 S Main St, Akron, OH 44308, USA",Unknown,http://www.downtownakron.com/go/lock-4,41.0810748,-81.51995579999999,Akron +Cascade Park,"57 W North St, Akron, OH 44308, USA",(330) 374-5625,Unknown,41.0904979,-81.51729689999999,Akron +Highland square porch rocker,"Beck Ave, Akron, OH 44302, USA",Unknown,Unknown,41.091114,-81.5401177,Akron +Cummings Center for the History of Psychology,"73 S College St, Akron, OH 44325, USA",(330) 972-7285,https://uakron.edu/chp,41.0805957,-81.5107372,Akron +AKRON Sign,"20 Ambrose Ct, Akron, OH 44303, USA",Unknown,Unknown,41.08884279999999,-81.5254188,Akron +Louisville Mega Cavern,"1841 Taylor Ave, Louisville, KY 40213, USA",(877) 614-6342,https://louisvillemegacavern.com/,38.2012259,-85.703929,Louisville +Louisville Slugger Museum & Factory,"800 W Main St, Louisville, KY 40202, USA",(877) 775-8443,http://www.sluggermuseum.com/,38.25713559999999,-85.7639796,Louisville +Kentucky Science Center,"727 W Main St, Louisville, KY 40202, USA",(502) 561-6100,http://www.kysciencecenter.org/,38.2576145,-85.76265699999999,Louisville +Louisville Zoo,"1100 Trevilian Way, Louisville, KY 40213, USA",(502) 459-2181,https://louisvillezoo.org/,38.2057299,-85.7071264,Louisville +Frazier History Museum,"829 W Main St, Louisville, KY 40202, USA",(502) 753-5663,http://www.fraziermuseum.org/,38.2577529,-85.7644972,Louisville +Waterfront Park,"129 River Rd, Louisville, KY 40202, USA",(502) 574-3768,https://ourwaterfront.org/,38.26073890000001,-85.74260129999999,Louisville +The Waverly Hills Sanatorium,"4400 Paralee Dr, Louisville, KY 40272, USA",(502) 690-7880,http://www.therealwaverlyhills.com/,38.1301221,-85.8416929,Louisville +Kentucky Derby Museum,"704 Central Ave, Louisville, KY 40208, USA",(502) 637-1111,http://www.derbymuseum.org/,38.2054621,-85.7710699,Louisville +Cherokee Park,"745 Cochran Hill Rd, Louisville, KY 40206, USA",(502) 574-7275,https://louisvilleky.gov/government/parks/park-list/cherokee-park,38.2399656,-85.6993663,Louisville +Trolley de 'Ville,"140 N Fourth St, Louisville, KY 40202, USA",(502) 939-3415,https://trolleydeville.com/,38.2580913,-85.75648559999999,Louisville +Churchill Downs,"700 Central Ave, Louisville, KY 40208, USA",(502) 636-4400,http://www.churchilldowns.com/,38.2037252,-85.77239879999999,Louisville +Speed Art Museum,"2035 S 3rd St, Louisville, KY 40208, USA",(502) 634-2700,http://www.speedmuseum.org/,38.2183706,-85.7609428,Louisville +Conrad-Caldwell House Museum,"1402 St James Ct, Louisville, KY 40208, USA",(502) 636-5023,http://conrad-caldwell.org/,38.2291479,-85.76342230000002,Louisville +Lights Under Louisville,"1841 Taylor Ave, Louisville, KY 40213, USA",(877) 614-6342,http://lightsunderlouisville.com/,38.2015141,-85.7040882,Louisville +Louisville Nature Center,"3745 Illinois Ave, Louisville, KY 40213, USA",(502) 458-1328,http://louisvillenaturecenter.org/,38.2096492,-85.7111025,Louisville +Locust Grove,"561 Blankenbaker Ln, Louisville, KY 40207, USA",(502) 897-9845,http://www.locustgrove.org/,38.28645400000001,-85.66138699999999,Louisville +Muhammad Ali Center,"144 N 6th St, Louisville, KY 40202, USA",(502) 584-9254,https://alicenter.org/,38.25847619999999,-85.75980480000001,Louisville +Iroquois Park,"2120 Rundill Rd, Louisville, KY 40214, USA",(502) 363-7766,https://louisvilleky.gov/government/parks/park-list/iroquois-park,38.1608222,-85.7803059,Louisville +Louisville Knot,"8 W Main St, Louisville, KY 40202, USA",Unknown,Unknown,38.257531,-85.7656208,Louisville +KMAC Contemporary Art Museum,"715 W Main St, Louisville, KY 40202, USA",(502) 589-0102,http://www.kmacmuseum.org/,38.257524,-85.762142,Louisville +Wadsworth Atheneum Museum of Art,"600 Main St, Hartford, CT 06103, USA",(860) 278-2670,https://www.thewadsworth.org/,41.7637113,-72.6730855,Hartford +The Mark Twain House & Museum,"351 Farmington Ave, Hartford, CT 06105, USA",(860) 247-0998,https://marktwainhouse.org/,41.7670235,-72.7014493,Hartford +Bushnell Park Carousel,"1 Jewell St, Hartford, CT 06103, USA",(860) 232-6710,http://www.bushnellpark.org/attractions/the-carousel,41.76513409999999,-72.6792356,Hartford +Connecticut Science Center,"250 Columbus Blvd, Hartford, CT 06103, USA",(860) 724-3623,https://www.ctsciencecenter.org/,41.7646881,-72.6694469,Hartford +Connecticut's Old State House,"800 Main St, Hartford, CT 06103, USA",(860) 522-6766,http://www.ctoldstatehouse.org/,41.76602599999999,-72.6727365,Hartford +Harriet Beecher Stowe Center,"77 Forest St, Hartford, CT 06105, USA",(860) 522-9258,http://harrietbeecherstowecenter.org/,41.7668083,-72.7003833,Hartford +Museum of Connecticut History,"231 Capitol Ave, Hartford, CT 06106, USA",(860) 757-6535,https://museumofcthistory.org/,41.7626535,-72.68303639999999,Hartford +Connecticut Museum of Culture and History,"1 Elizabeth St, Hartford, CT 06105, USA",(860) 236-5621,https://chs.org/,41.772934,-72.705277,Hartford +Bushnell Park Conservancy,"99 Trinity St, Hartford, CT 06123, USA",(860) 232-6710,http://www.bushnellpark.org/,41.7652688,-72.68012,Hartford +Elizabeth Park Conservancy,"1561 Asylum Ave, West Hartford, CT 06117, USA",(860) 231-9443,http://www.elizabethparkct.org/,41.77458339999999,-72.7193936,Hartford +Great River Park,"301 E River Dr, East Hartford, CT 06108, USA",(860) 713-3131,https://riverfront.org/great-river-park/,41.7591858,-72.65917209999999,Hartford +Katharine Day House at Harriet Beecher Stowe Center,"77 Forest St, Hartford, CT 06105, USA",(860) 522-9258,http://www.harrietbeecherstowe.org/,41.7671821,-72.70050080000001,Hartford +Colt Park,"106 Wethersfield Ave, Hartford, CT 06114, USA",(860) 757-9311,https://www.hartfordct.gov/Government/Departments/Public-Works/Parks-Directory/Colt-Park,41.75162770000001,-72.6690723,Hartford +Corning Fountain,"Horace Bushnell Promenade, Hartford, CT 06103, USA",(860) 585-5411,http://www.bushnellpark.org/attractions/the-carousel,41.76661349999999,-72.68103669999999,Hartford +Butler-McCook House & Garden,"396 Main St, Hartford, CT 06103, USA",(860) 522-1806,https://www.ctlandmarks.org/butler-mccook,41.76066700000001,-72.6746677,Hartford +Soldiers & Sailors Memorial Arch,"15 Trinity St, Hartford, CT 06106, USA",(860) 585-5411,http://www.bushnellpark.org/attractions/soldiers-sailors-memorial-arch,41.7656791,-72.6799794,Hartford +Bushnell Park,"Downtown, Hartford, CT 06103, USA",(860) 585-5411,http://www.bushnellpark.org/,41.7642113,-72.6773479,Hartford +Pope Park,"Pope Park Dr, Hartford, CT 06106, USA",(860) 830-5292,https://www.hartfordct.gov/Government/Departments/Public-Works/Parks-Directory/Pope-Park,41.7558186,-72.69592159999999,Hartford +Riverside Park,"20 Leibert Rd, Hartford, CT 06120, USA",(860) 713-3131,https://riverfront.org/riverside-park/,41.77630459999999,-72.664638,Hartford +Friends of Elizabeth Park,"1561 Asylum Ave, West Hartford, CT 06117, USA",(860) 231-9443,http://elizabethparkct.org/,41.7762661,-72.71815350000001,Hartford +Cincinnati Zoo & Botanical Garden,"3400 Vine St, Cincinnati, OH 45220, USA",(513) 281-4700,https://cincinnatizoo.org/,39.14267759999999,-84.5092902,Cincinnati +Cincinnati Art Museum,"953 Eden Park Dr, Cincinnati, OH 45202, USA",(513) 721-2787,https://www.cincinnatiartmuseum.org/,39.1144588,-84.4967972,Cincinnati +American Sign Museum,"1330 Monmouth Ave, Cincinnati, OH 45225, USA",(513) 541-6366,http://www.americansignmuseum.org/,39.14347779999999,-84.5400688,Cincinnati +Eden Park,"950 Eden Park Dr, Cincinnati, OH 45202, USA",(513) 357-2604,http://www.cincinnatiparks.com/central/eden-park/,39.1164516,-84.4960394,Cincinnati +Cincinnati Museum Center,"1301 Western Ave, Cincinnati, OH 45203, USA",(513) 287-7000,http://www.cincymuseum.org/,39.1099317,-84.5372751,Cincinnati +Krohn Conservatory,"1501 Eden Park Dr, Cincinnati, OH 45202, USA",(513) 421-4086,https://www.cincinnatiparks.com/krohn/,39.1149567,-84.49013819999999,Cincinnati +Taft Museum of Art,"316 Pike St, Cincinnati, OH 45202, USA",(513) 241-0343,https://www.taftmuseum.org/,39.10208799999999,-84.5026948,Cincinnati +National Underground Railroad Freedom Center,"50 E Freedom Way, Cincinnati, OH 45202, USA",(513) 333-7500,http://www.freedomcenter.org/,39.0973901,-84.5112357,Cincinnati +Washington Park,"1230 Elm St, Cincinnati, OH 45202, USA",(513) 621-4400,http://washingtonpark.org/features-of-the-park/park-rules/,39.108929,-84.5172249,Cincinnati +Contemporary Arts Center,"44 E 6th St, Cincinnati, OH 45202, USA",(513) 345-8400,http://contemporaryartscenter.org/,39.1027951,-84.5120127,Cincinnati +William Howard Taft National Historic Site,"2038 Auburn Ave, Cincinnati, OH 45219, USA",(513) 684-3262,http://www.nps.gov/wiho/index.htm,39.119501,-84.5083058,Cincinnati +Cincinnati Observatory,"3489 Observatory Pl, Cincinnati, OH 45208, USA",(513) 321-5186,http://www.cincinnatiobservatory.org/,39.1391451,-84.4225924,Cincinnati +American Legacy Tours,"1332 Vine St, Cincinnati, OH 45202, USA",(859) 951-8560,https://www.americanlegacytours.com/,39.11061040000001,-84.51523999999999,Cincinnati +Ault Park,"5090 Observatory Cir, Cincinnati, OH 45208, USA",(513) 357-2604,http://www.aultparkac.org/,39.1320088,-84.41025560000001,Cincinnati +Hippo Cove,"3489 Dury Ave, Cincinnati, OH 45229, USA",(513) 281-4700,https://cincinnatizoo.org/exhibits/hippo-cove/,39.1451726,-84.5061929,Cincinnati +Roo Valley,"3438 Vine St, Cincinnati, OH 45220, USA",(513) 281-4700,https://cincinnatizoo.org/,39.14400399999999,-84.50977300000001,Cincinnati +Cheetah Encounter,"Dury Ave, Cincinnati, OH 45220, USA",(513) 475-6198,https://cincinnatizoo.org/,39.1438202,-84.5060286,Cincinnati +Newport Aquarium,"1 Levee Wy, Newport, KY 41071, USA",(800) 406-3474,https://www.newportaquarium.com/,39.09466400000001,-84.4974482,Cincinnati +Cincinnati Fire Museum,"315 W Court St, Cincinnati, OH 45202, USA",(513) 621-5553,https://www.cincyfiremuseum.com/,39.1053621,-84.51963909999999,Cincinnati +Sing the Queen City Sign,"25 E Freedom Way, Cincinnati, OH 45202, USA",(513) 333-0388,http://www.artworkscincinnati.org/,39.0967066,-84.5110869,Cincinnati +The Strong National Museum of Play,"1 Manhattan Square Dr, Rochester, NY 14607, USA",(585) 263-2700,http://www.museumofplay.org/,43.1525482,-77.601629,Rochester +George Eastman Museum,"900 East Ave, Rochester, NY 14607, USA",(585) 327-4800,http://eastman.org/,43.1528123,-77.5802521,Rochester +High Falls,"4 Commercial St, Rochester, NY 14614, USA",Unknown,http://www.cityofrochester.gov/,43.1613269,-77.6135695,Rochester +Susan B. Anthony Museum & House,"17 Madison St, Rochester, NY 14608, USA",(585) 235-6124,http://www.susanb.org/,43.1531919,-77.62796349999999,Rochester +RMSC (Rochester Museum & Science Center),"657 East Ave, Rochester, NY 14607, USA",(585) 271-4320,http://www.rmsc.org/,43.1524693,-77.5874498,Rochester +Highland Park,"180 Reservoir Ave, Rochester, NY 14620, USA",(585) 753-7270,https://www.monroecounty.gov/parks-highland,43.1302755,-77.6046441,Rochester +Warner Castle,"5 Castle Park, Rochester, NY 14620, USA",(585) 473-5130,https://www.highlandparkconservancy.org/warner-estate,43.1323337,-77.61180019999999,Rochester +Seneca Park Zoo,"2222 St Paul St, Rochester, NY 14621, USA",(585) 336-7200,https://senecaparkzoo.org/?utm_source=gmb&utm_medium=organic&utm_campaign=GMB_listing,43.2048845,-77.6238437,Rochester +Memorial Art Gallery,"500 University Ave, Rochester, NY 14607, USA",(585) 276-8900,http://mag.rochester.edu/,43.15761089999999,-77.5881793,Rochester +Ontario Beach Park,"50 Beach Ave, Rochester, NY 14612, USA",(585) 753-7275,https://www.cityofrochester.gov/ontariobeachpark/,43.2594928,-77.60694710000001,Rochester +Sunken Garden,"5 Castle Park, Rochester, NY 14620, USA",(585) 753-7275,Unknown,43.1324586,-77.6110575,Rochester +RMSC Strasenburgh Planetarium,"663 East Ave, Rochester, NY 14607, USA",(585) 697-1945,http://www.rmsc.org/StrasenburghPlanetarium/,43.1523189,-77.58685559999999,Rochester +Charlotte Pier,"1 Beach Ave, Rochester, NY 14612, USA",Unknown,https://www.cityofrochester.gov/ontariobeachpark/,43.2587371,-77.6036805,Rochester +Seabreeze Amusement Park,"4600 Culver Rd, Rochester, NY 14622, USA",(585) 323-1900,http://www.seabreeze.com/,43.2319762,-77.5423996,Rochester +Charlotte Genesee Lighthouse,"70 Lighthouse St, Rochester, NY 14612, USA",(585) 621-6179,http://www.geneseelighthouse.org/,43.25277270000001,-77.61075369999999,Rochester +Washington Grove,"Rochester, NY 14610, USA",(585) 428-7581,http://www.cityofrochester.gov/cobbshill/,43.1396567,-77.563893,Rochester +Cobb's Hill Park,"80 Culver Rd, Rochester, NY 14610, USA",(585) 428-6770,http://www.cityofrochester.gov/article.aspx?id=8589935129,43.1423348,-77.5726388,Rochester +Lamberton Conservatory,"180 Reservoir Ave, Rochester, NY 14620, USA",(585) 753-7270,https://www.highlandparkconservancy.org/lamberton-conservatory-botanicals,43.13226390000001,-77.6079111,Rochester +Turning Point Falls,"260 Boxart St, Rochester, NY 14612, USA",Unknown,http://nyfalls.com/,43.2310778,-77.6219306,Rochester +Bausch & Lomb Riverside Park,"711 Wilson Blvd, Rochester, NY 14611, USA",(585) 428-5990,http://www.cityofrochester.gov/,43.13209029999999,-77.6247113,Rochester +Golden Gate Bridge,"Golden Gate Brg, San Francisco, CA, USA",(415) 921-5858,https://www.goldengate.org/,37.8199286,-122.4782551,San Francisco +PIER 39,"The Embarcadero, San Francisco, CA 94133, USA",(415) 705-5500,https://www.pier39.com/,37.808673,-122.409821,San Francisco +Coit Tower,"1 Telegraph Hill Blvd, San Francisco, CA 94133, USA",(415) 249-0995,http://sfrecpark.org/destination/telegraph-hill-pioneer-park/coit-tower/,37.8023949,-122.4058222,San Francisco +Exploratorium,"Pier 15 Embarcadero at, Green St, San Francisco, CA 94111, USA",(415) 528-4444,https://www.exploratorium.edu/,37.8016649,-122.397348,San Francisco +Union Square,"San Francisco, CA 94108, USA",(415) 781-7880,https://visitunionsquaresf.com/,37.7879358,-122.4075139,San Francisco +San Francisco Botanical Garden,"1199 9th Ave, San Francisco, CA 94122, USA",(415) 661-1316,https://www.sfbg.org/,37.7677096,-122.4693109,San Francisco +Fort Point National Historic Site,"201 Marine Dr, San Francisco, CA 94129, USA",(415) 561-4959,http://www.nps.gov/fopo/planyourvisit/hours.htm,37.81061169999999,-122.47709,San Francisco +San Francisco Museum of Modern Art,"151 3rd St, San Francisco, CA 94103, USA",(415) 357-4000,https://www.sfmoma.org/,37.7857182,-122.4010508,San Francisco +de Young Museum,"50 Hagiwara Tea Garden Dr, San Francisco, CA 94118, USA",(415) 750-3600,http://deyoung.famsf.org/,37.771469,-122.4686755,San Francisco +Golden Gate Park,"San Francisco, CA, USA",(415) 831-2700,https://sfrecpark.org/770/Golden-Gate-Park/,37.7694208,-122.4862138,San Francisco +California Academy of Sciences,"55 Music Concourse Dr, San Francisco, CA 94118, USA",(415) 379-8000,https://www.calacademy.org/,37.76986459999999,-122.4660947,San Francisco +Aquarium of the Bay,"PIER 39 The Embarcadero &, Beach St, San Francisco, CA 94133, USA",(415) 623-5300,http://www.aquariumofthebay.org/,37.80864869999999,-122.4093299,San Francisco +The Walt Disney Family Museum,"104 Montgomery St, San Francisco, CA 94129, USA",(415) 345-6800,https://www.waltdisney.org/,37.8013783,-122.4586431,San Francisco +Twin Peaks,"501 Twin Peaks Blvd, San Francisco, CA 94114, USA",(415) 831-2700,https://sfrecpark.org/Facilities/Facility/Details/Twin-Peaks-384,37.7529149,-122.4474131,San Francisco +Alcatraz Island,"San Francisco, CA 94133, USA",(415) 561-4900,http://www.nps.gov/alca/index.htm,37.8269775,-122.4229555,San Francisco +Legion of Honor,"100 34th Ave, San Francisco, CA 94121, USA",(415) 750-3600,https://legionofhonor.famsf.org/,37.7844661,-122.5008419,San Francisco +San Francisco Cable Car Museum,"1201 Mason St, San Francisco, CA 94108, USA",(415) 474-1887,http://www.cablecarmuseum.org/,37.7946366,-122.4115074,San Francisco +San Francisco Maritime National Historical Park,"San Francisco, CA 94109, USA",(415) 447-5000,http://www.nps.gov/safr,37.806437,-122.4239199,San Francisco +Japanese Tea Garden,"75 Hagiwara Tea Garden Dr, San Francisco, CA 94118, USA",(415) 752-1171,http://japaneseteagardensf.com/,37.7700913,-122.4704359,San Francisco +Fisherman's Wharf,"2801 Leavenworth St, San Francisco, CA 94133, USA",Unknown,http://www.fishermanswharf.org/,37.80842769999999,-122.4156775,San Francisco +Detroit Institute of Arts,"5200 Woodward Ave, Detroit, MI 48202, USA",(313) 833-7900,https://dia.org/,42.3593793,-83.06450099999999,Detroit +Detroit Historical Museum,"5401 Woodward Ave, Detroit, MI 48202, USA",(313) 833-1805,http://detroithistorical.org/detroit-historical-museum/plan-your-visit/general-information,42.3597909,-83.0671394,Detroit +Campus Martius Park,"800 Woodward Ave, Detroit, MI 48226, USA",(313) 566-8250,https://downtowndetroitparks.com/parks/campus-martius/,42.3319145,-83.0465866,Detroit +Motown Museum,"2648 Berry Gordy Jr. Boulevard, 2648 W Grand Blvd, Detroit, MI 48208, USA",(313) 875-2264,http://www.motownmuseum.org/,42.3641081,-83.0884008,Detroit +Detroit Zoo,"8450 W 10 Mile Rd, Royal Oak, MI 48067, USA",(248) 541-5717,http://detroitzoo.org/,42.4768358,-83.14904419999999,Detroit +Michigan Science Center,"5020 John R St, Detroit, MI 48202, USA",(313) 577-8400,http://www.mi-sci.org/,42.358451,-83.06239660000001,Detroit +Comerica Park,"2100 Woodward Ave, Detroit, MI 48201, USA",(313) 962-4000,http://detroit.tigers.mlb.com/det/ballpark/index.jsp,42.33899840000001,-83.0485197,Detroit +Museum of Contemporary Art Detroit,"4454 Woodward Ave, Detroit, MI 48201, USA",(313) 832-6622,http://mocadetroit.org/,42.35358669999999,-83.06184979999999,Detroit +Charles H. Wright Museum of African American History,"315 E Warren Ave, Detroit, MI 48201, USA",(313) 494-5800,http://thewright.org/,42.358777,-83.0609516,Detroit +Belle Isle Aquarium,"3 Inselruhe Ave, Detroit, MI 48207, USA",(313) 331-7760,http://www.belleisleconservancy.org/,42.3365928,-82.98527539999999,Detroit +GMRenCen,"400 Renaissance Center, Detroit, MI 48243, USA",(313) 567-3126,https://gmrencen.com/,42.3293284,-83.0397632,Detroit +Detroit Segway Tours & Rides,"in the Shipping Container!, 2934 Russell St, Detroit, MI 48207, USA",(855) 873-4929,http://detroitsegway.com/,42.3491815,-83.0419692,Detroit +Detroit Riverfront Conservancy,"600 Renaissance Center #1720, Detroit, MI 48243, USA",(313) 566-8200,http://www.detroitriverfront.org/,42.3303575,-83.0378624,Detroit +Historic Fort Wayne,"6325 W Jefferson Ave, Detroit, MI 48209, USA",(313) 628-0796,http://www.historicfortwaynecoalition.com/,42.30020189999999,-83.0979698,Detroit +Spirit of Detroit Plaza,"2 Woodward Ave, Detroit, MI 48226, USA",Unknown,https://detroitmi.gov/news/spirit-plaza-official-season-opening-weekend-downtown-detroit,42.3291341,-83.04493509999999,Detroit +Detroit Riverwalk,"1340 Atwater St, Detroit, MI 48207, USA",(313) 566-8200,http://www.detroitmi.gov/recreation,42.3303761,-83.0318545,Detroit +Grand Circus Park,"101-157 Witherell St, Detroit, MI 48226, USA",(313) 566-8250,http://downtowndetroitparks.com/,42.3364771,-83.0508383,Detroit +Ford Piquette Avenue Plant Museum,"461 Piquette Ave, Detroit, MI 48202, USA",(313) 872-8759,http://www.fordpiquetteplant.org/,42.3686329,-83.0651383,Detroit +Beacon Park,"1901 Grand River Ave, Detroit, MI 48226, USA",(313) 566-8250,https://empoweringmichigan.com/beacon-park/,42.3345254,-83.05530689999999,Detroit +MotorCities National Heritage Area,"200 Renaissance Center #3148, Detroit, MI 48243, USA",(313) 259-3425,http://www.motorcities.org/,42.3292843,-83.0392162,Detroit +Monterey Bay Aquarium,"886 Cannery Row, Monterey, CA 93940, USA",(831) 648-4800,https://www.montereybayaquarium.org/,36.6182017,-121.9019479,Monterey +Old Fisherman's Wharf,"1 Old Fisherman’s Wharf, Monterey, CA 93940, USA",(831) 238-0777,http://www.montereywharf.com/,36.60379629999999,-121.8933703,Monterey +Dennis The Menace Playground,"777 Pearl St, Monterey, CA 93940, USA",Unknown,"https://monterey.org/city_hall/parks___recreation/beaches,_parks___playgrounds/specialty_parks/el_estero_park_complex.php",36.5983372,-121.8861164,Monterey +Monterey Museum of Art,"559 Pacific St, Monterey, CA 93940, USA",(831) 372-5477,http://www.montereyart.org/,36.59749959999999,-121.8966213,Monterey +McAbee Beach,"1 Hoffman Ave, Monterey, CA 93940, USA",Unknown,Unknown,36.615658,-121.8995004,Monterey +Lovers Point Park,"631 Ocean View Blvd, Pacific Grove, CA 93950, USA",(831) 375-2345,https://www.cityofpacificgrove.org/living/recreation/parks/lovers-point-park,36.6261619,-121.9163682,Monterey +Monterey State Historic Park,"20 Custom House Plaza, Monterey, CA 93940, USA",(831) 649-2907,https://www.parks.ca.gov/?page_id=575,36.60257309999999,-121.8941195,Monterey +Coast Guard Pier,"100 Lighthouse Ave, Monterey, CA 93940, USA",(831) 647-7300,Unknown,36.6094063,-121.893152,Monterey +The Original Monterey Walking Tours - guided tours of historic Monterey and Cannery Row,"3 Portola Plaza, Monterey, CA 93940, USA",(831) 521-4884,http://www.walkmonterey.com/,36.6015038,-121.8940666,Monterey +El Estero Park,"725 Pearl St, Monterey, CA 93940, USA",(831) 646-3866,http://monterey.org/rec,36.5977083,-121.8856079,Monterey +Presidio of Monterey Museum,"Corporal Ewing Rd, Monterey, CA 93944, USA",(831) 646-3456,https://www.monterey.org/city_facilities/museums/discover_museums/presidio_of_monterey_museum.php,36.6066848,-121.8970691,Monterey +Monterey Moon Tree,"536-570 Pacific St, Monterey, CA 93940, USA",Unknown,Unknown,36.5978337,-121.8969736,Monterey +Monterey Mirror Maze,"751 Cannery Row, Monterey, CA 93940, USA",(831) 649-6293,https://montereyfamilyfunadventure.com/,36.61674259999999,-121.9011293,Monterey +Old Monterey Jail,"580 Pacific St, Monterey, CA 93940, USA",(831) 646-5641,https://monterey.org/city_facilities/museums/discover_museums/old_monterey_jail.php,36.597596,-121.8977079,Monterey +The Stevenson House,"530 Houston St, Monterey, CA 93940, USA",Unknown,Unknown,36.5973186,-121.8934592,Monterey +Cannery Row,"700 Cannery Row, Monterey, CA 93940, USA",(831) 649-6690,http://canneryrow.com/,36.6162117,-121.9004171,Monterey +San Carlos Beach Park,"100 Reeside Ave, Monterey, CA 93940, USA",(831) 646-3866,http://monterey.org/rec,36.6105695,-121.8967636,Monterey +Monterey County Youth Museum,"425 Washington St, Monterey, CA 93940, USA",(831) 649-6444,http://www.mymuseum.org/,36.5991473,-121.8923441,Monterey +Monterey Bay Aquarium,"886 Cannery Row, Monterey, CA 93940, USA",Unknown,Unknown,36.6177149,-121.9012821,Monterey +Monterey Sea Lions,"1 Custom House Plaza, Monterey, CA 93940, USA",Unknown,Unknown,36.6032907,-121.8930702,Monterey +Ludington Park,"Lake Shore Dr, Escanaba, MI 49829, USA",(906) 789-7862,Unknown,45.7400155,-87.0531961,Escanaba +Walk of Planets,"400-498 Ludington St, Escanaba, MI 49829, USA",Unknown,Unknown,45.7458391,-87.0531785,Escanaba +Antique Village,"2401 9th Ave N, Escanaba, MI 49829, USA",Unknown,https://www.upsteamandgasengine.org/heritage-village/,45.7573705,-87.0791703,Escanaba +William Bonifas Fine Arts Center,"700 1st Ave S, Escanaba, MI 49829, USA",(906) 786-3833,https://www.bonifasarts.org/,45.744953,-87.057107,Escanaba +UPutt Family Fun Center,"2805 N Lincoln Rd, Escanaba, MI 49829, USA",(906) 233-7733,https://uputtfamilyfuncenter.com/,45.7817502,-87.08400689999999,Escanaba +Leigh’s Garden Winery,"904 Ludington St, Escanaba, MI 49829, USA",(906) 553-7799,https://www.leighsgarden.com/,45.7458869,-87.0600903,Escanaba +John D. Besse Park,"PWP6+788, 1110 30th St S, Escanaba, MI 49829, USA",(906) 786-9402,http://www.escanaba.org/,45.7357185,-87.0894162,Escanaba +Escanaba Welcome Sign,"Escanaba, MI 49829, USA",Unknown,Unknown,45.7731958,-87.082883,Escanaba +Chippewa Valley Museum,"1204 E Half Moon Dr, Eau Claire, WI 54703, USA",(715) 834-7871,http://www.cvmuseum.com/,44.81147240000001,-91.5176097,Eau Claire +Carson Park,"100 Carson Park Dr, Eau Claire, WI 54703, USA",(715) 839-5039,Unknown,44.8080316,-91.5222647,Eau Claire +Children’s Museum of Eau Claire,"126 N Barstow St, Eau Claire, WI 54703, USA",(715) 832-5437,http://www.childrensmuseumec.com/,44.81422179999999,-91.5021358,Eau Claire +Chaos Water Park,"5152 Fairview Dr, Eau Claire, WI 54701, USA",(844) 855-2724,https://www.metropolisresort.com/resort/chaos-water-park,44.7646367,-91.4650513,Eau Claire +Phoenix Park,"330 Riverfront Terrace, Eau Claire, WI 54703, USA",(715) 839-5032,https://www.visiteauclaire.com/listing/phoenix-park/1898/,44.8130493,-91.50416589999999,Eau Claire +Boyd Park,"1202 Fairway St, Eau Claire, WI 54701, USA",(715) 839-5039,http://www.visiteauclaire.com/listings/boyd-park/1845/,44.8129248,-91.48577209999999,Eau Claire +Action City,"2402 Lorch Ave, Eau Claire, WI 54701, USA",(715) 710-2259,https://www.metropolisresort.com/resort/action-city,44.76413770000001,-91.4664782,Eau Claire +Lowes Creek County Park,"5238 S Lowes Creek Rd, Eau Claire, WI 54701, USA",(715) 839-4783,https://www.co.eau-claire.wi.us/our-government/departments-and-facilities/department-directory/parks-forest/parks/lowes-creek-county-park,44.7553048,-91.468953,Eau Claire +Mount Simon Park,"1100 Addison Ave, Eau Claire, WI 54703, USA",(715) 839-5032,Unknown,44.8303583,-91.50248409999999,Eau Claire +Wisconsin Logging Museum,"1110 E Half Moon Dr, Eau Claire, WI 54703, USA",(715) 835-6200,http://www.wisconsinlogging.org/,44.810422,-91.51790100000001,Eau Claire +Ager House,"514 W Madison St, Eau Claire, WI 54703, USA",(715) 834-5204,https://agerhouse.org/visit-the-ager-house,44.8158429,-91.5142853,Eau Claire +“INGRAIN” in Sculpture Tour,"200 Riverfront Terrace, Eau Claire, WI 54703, USA",Unknown,Unknown,44.812358,-91.5034707,Eau Claire +Tower Ridge Recreation Area,"1230 S 82nd Ave, Eau Claire, WI 54703, USA",(715) 839-4783,https://www.eccountyparks.com/parks/parks-and-shelters/tower_ridge_recreation_area_chalet/,44.8251244,-91.3626377,Eau Claire +Big Falls County Park,"600 Big Falls Forest Rd, Eau Claire, WI 54703, USA",(715) 839-4783,https://www.eauclairecounty.gov/our-government/departments-and-facilities/department-directory/parks-forest/parks/big-falls-county-park,44.8209711,-91.29338399999999,Eau Claire +Sudo Valley,"861 Pyeongchon-ri, Jeungsan-myeon, Gimcheon, Gyeongsangbuk-do, South Korea",054-437-0005,Unknown,35.8856021,128.0171389, +N Seoul Tower,"105 Namsangongwon-gil, Yongsan-gu, Seoul, South Korea",02-3455-9277,http://www.nseoultower.co.kr/,37.5511694,126.9882266, +Lotte World,"240 Olympic-ro, Songpa-gu, Seoul, South Korea",1661-2000,http://www.lotteworld.com/,37.51111579999999,127.098167, +International Sisters Cities Theme Street,"Gwongwang-ro 142beon-gil, Ingye-dong, Paldal-gu, Suwon-si, Gyeonggi-do, South Korea",Unknown,Unknown,37.259846,127.0332657, +Duryu Park,"South Korea, Daegu, Dalseo-gu, 성당동 154",053-803-7470,http://www.daegu.go.kr/cts/index.do?menu_id=00000942&servletPath=%2Fcts,35.84724349999999,128.5577828, +Bukchon Hanok Village,"Gyedong-gil, Jongno-gu, Seoul, South Korea",02-2133-1371,https://bukchon.seoul.go.kr/front/index.do,37.5814696,126.9849519, +Ppuri Park,"79 Ppurigongwon-ro, Jung-gu, Daejeon, South Korea",042-288-8310,Unknown,36.2854269,127.3880835, +Wolgok History Park,"Daegu, South Korea",Unknown,Unknown,35.8180801,128.5450903, +Yuseong Hot Springs,"552-5 Bongmyeong-dong, Yuseong-gu, Daejeon, South Korea",Unknown,Unknown,36.35425589999999,127.3412636, +Daedong Sky Park,"20-9 Jayang-dong, Dong-gu, Daejeon, South Korea",Unknown,https://korean.visitkorea.or.kr/detail/ms_detail.do?cotid=22105359-9a9f-44f8-bad6-93941894f32a,36.33248469999999,127.4514017, +Gyeongbokgung Palace,"161 Sajik-ro, Jongno-gu, Seoul, South Korea",02-3700-3900,http://www.royalpalace.go.kr/,37.579617,126.977041, +Jeonju Hanok Village,"99 Girin-daero, Wansan-gu, Jeonju, Jeollabuk-do, South Korea",063-282-1330,https://hanok.jeonju.go.kr/,35.81470819999999,127.1526319, +Daejeon Skyroad,"Jungang-ro 164beon-gil, 은행선화동 Jung-gu, Daejeon, South Korea",042-252-7100,http://www.skyroad.or.kr/,36.32823570000001,127.4283342, +Waryong Park,"Daegu, South Korea",Unknown,Unknown,35.8582733,128.5007349, +Gosangol Dinosaur Park,"43 Yongdu 2-gil, Nam-gu, Daegu, South Korea",053-664-2174,Unknown,35.82946729999999,128.6037566, +Anguksa,"산184-1 Goemok-ri, Jeoksang-myeon, Muju, Jeollabuk-do, South Korea",063-322-6162,http://www.mujutour.co.kr/board/view.sko?boardId=tour_tourpoint&boardSid=190&menuCd=AA02005001000&contentsSid=44&orderBy=dataTitle:asc&startPage=1&searchType=dataTitle&keyword=%EC%95%88%EA%B5%AD%EC%82%AC&searchStartDt=&searchEndDt=&dataSid=104605,35.9447717,127.6915011, +Teddy Bear Museum,"South Korea, Jeollabuk-do, Gunsan, 월명동 6-2",063-446-9000,http://www.teddybear9000.com/,35.98559290000001,126.7092676, +Apsan Observatory,"Apsansunhwan-ro, 대명9동 Nam-gu, Daegu, South Korea",Unknown,http://www.apsan-cablecar.co.kr/,35.8247849,128.5794424, +Hwangsan Traditional Hanok Village,"Hwangsan 2-gil, Wicheon-myeon, Geochang-gun, Gyeongsangnam-do, South Korea",055-940-3420,https://www.geochang.go.kr/tour/tourcontent/sights/major/View.do?id=TL0001671&pageCd=TU0101000000&siteGubun=tour,35.7620604,127.8388609, +Uam Historical Park,"65 Gayang-dong, Dong-gu, Daejeon, South Korea",042-270-8691,https://ko.wikipedia.org/wiki/%EC%9A%B0%EC%95%94%EC%82%AC%EC%A0%81%EA%B3%B5%EC%9B%90,36.34782409999999,127.4567871, diff --git a/database/background/citySet.txt b/database/background/citySet.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a277185537880740a6385e6303804f10c73870a --- /dev/null +++ b/database/background/citySet.txt @@ -0,0 +1,311 @@ +San Diego +Pellston +Buffalo +Charlotte Amalie +Flagstaff +Evansville +Hilo +Twin Falls +Newark +State College +Johnstown +Montgomery +Redding +Lynchburg +South Bend +Sarasota +Sioux Falls +Paducah +Kahului +Atlantic City +Bemidji +Toledo +Abilene +Sacramento +Amarillo +Moline +Hilton Head +Manhattan +Minneapolis +Fort Myers +Roswell +Harlingen +Seattle +Manchester +Gulfport +Gainesville +Pago Pago +Wrangell +Augusta +Waterloo +Yuma +Saipan +Christiansted +North Bend +Richmond +Albuquerque +Nashville +Aberdeen +Harrisburg +Fort Wayne +Green Bay +Wenatchee +Santa Fe +St. Petersburg +Belleville +Greensboro +Lake Charles +Traverse City +Erie +Niagara Falls +Pocatello +Idaho Falls +Alpena +Wilmington +Ontario +Iron Mountain +Lubbock +Helena +Kalamazoo +Cleveland +Grand Island +New Bern +Melbourne +Bristol +Orlando +Bismarck +Fresno +Billings +Daytona Beach +College Station +Jacksonville +Salt Lake City +Corpus Christi +Florence +Moab +Grand Forks +Las Vegas +Fairbanks +Petersburg +Wichita +Rhinelander +Kansas City +Dothan +Alamosa +Adak Island +Islip +Wichita Falls +Presque Isle +San Luis Obispo +Dayton +Fort Smith +Martha's Vineyard +Portland +Waco +New York +Columbus +Tampa +Little Rock +Kona +Clarksburg +San Angelo +Saginaw +Houston +Duluth +Valparaiso +Phoenix +Oakland +Watertown +Ogden +Cedar Rapids +Cape Girardeau +Sun Valley +Sault Ste. Marie +Trenton +Missoula +Pasco +Brainerd +Newburgh +Gustavus +Branson +Providence +Minot +Huntsville +San Antonio +Marquette +Owensboro +Del Rio +Portsmouth +Bloomington +Lexington +Santa Barbara +Baltimore +Panama City +Kodiak +Yakima +Vernal +Salisbury +Mission +Newport News +Charlottesville +Grand Junction +Baton Rouge +Beaumont +Staunton +Kalispell +Key West +Worcester +West Palm Beach +Boise +Grand Rapids +Salina +Fort Leonard Wood +Walla Walla +Everett +Dillingham +Lansing +Madison +Victoria +Sioux City +Hattiesburg +Stockton +Anchorage +Charlotte +Jamestown +Laramie +Decatur +Durango +Longview +Syracuse +St. Cloud +Santa Rosa +Bakersfield +North Platte +La Crosse +Plattsburgh +Concord +Atlanta +Provo +Ogdensburg +Ithaca +Colorado Springs +Washington +Williston +Tulsa +Midland +Champaign +Devils Lake +Greer +Muskegon +Hibbing +Santa Ana +Ponce +Prescott +Indianapolis +International Falls +Rapid City +Ketchikan +St. Louis +Santa Maria +Elmira +Alexandria +San Jose +Tucson +San Juan +Dubuque +Burbank +Gunnison +Cedar City +Hyannis +Raleigh +Norfolk +New Orleans +Medford +White Plains +Oklahoma City +Chicago +El Paso +Rockford +Aguadilla +Omaha +Scottsbluff +Yakutat +Arcata +Spokane +Brownsville +Bend +Hagerstown +Peoria +Appleton +Roanoke +Eugene +Rock Springs +Dodge City +Austin +Miami +Dallas +Mosinee +Killeen +Lihue +Pittsburgh +Tallahassee +Butte +Lawton +Honolulu +Greenville +Juneau +Myrtle Beach +Boston +Charleston +Latrobe +Knoxville +Denver +Bangor +Albany +Punta Gorda +Fort Lauderdale +Philadelphia +Binghamton +Great Falls +Shreveport +Asheville +Cheyenne +Milwaukee +Nome +Laredo +Des Moines +Fayetteville +Lewisburg +Fort Dodge +Cody +Chattanooga +Deadhorse +Kotzebue +Sitka +Bozeman +Palm Springs +Memphis +Nantucket +Texarkana +Lewiston +Valdosta +Birmingham +Scranton +Pensacola +Hancock +Los Angeles +Mason City +Savannah +West Yellowstone +Long Beach +Reno +Akron +Louisville +Hartford +Cincinnati +Rochester +San Francisco +Detroit +Monterey +Escanaba +Eau Claire diff --git a/database/background/citySet_with_states.txt b/database/background/citySet_with_states.txt new file mode 100644 index 0000000000000000000000000000000000000000..92f6c0a084ee5d7794199f978cd2bd22288694ea --- /dev/null +++ b/database/background/citySet_with_states.txt @@ -0,0 +1,312 @@ +San Diego California +Pellston Michigan +Buffalo New York +Charlotte Amalie St. Thomas +Flagstaff Arizona +Evansville Indiana +Hilo Hawaii +Twin Falls Idaho +Newark New Jersey +State College Pennsylvania +Johnstown Pennsylvania +Charleston South Carolina +Montgomery Alabama +Redding California +Lynchburg Virginia +South Bend Indiana +Sarasota Florida +Sioux Falls South Dakota +Paducah Kentucky +Kahului Hawaii +Atlantic City New Jersey +Bemidji Minnesota +Toledo Ohio +Abilene Texas +Sacramento California +Amarillo Texas +Moline Illinois +Hilton Head South Carolina +Manhattan New York +Minneapolis Minnesota +Fort Myers Florida +Roswell New Mexico +Harlingen Texas +Seattle Washington +Manchester England +Gulfport Mississippi +Gainesville Florida +Pago Pago Eastern District +Wrangell Alaska +Augusta Georgia +Waterloo Wallonia +Yuma Arizona +Saipan Saipan +Christiansted St. Croix +North Bend Oregon +Richmond Virginia +Albuquerque New Mexico +Nashville Tennessee +Aberdeen Scotland +Harrisburg Pennsylvania +Fort Wayne Indiana +Green Bay Wisconsin +Wenatchee Washington +Santa Fe New Mexico +St. Petersburg Saint Petersburg +Belleville Illinois +Greensboro North Carolina +Lake Charles Louisiana +Traverse City Michigan +Erie Pennsylvania +Niagara Falls New York +Pocatello Idaho +Idaho Falls Idaho +Alpena Michigan +Wilmington North Carolina +Ontario Ontario +Iron Mountain Michigan +Lubbock Texas +Helena Montana +Kalamazoo Michigan +Cleveland Ohio +Grand Island Nebraska +New Bern North Carolina +Melbourne Victoria +Bristol Tennessee +Orlando Florida +Bismarck North Dakota +Fresno California +Billings Montana +Jackson Mississippi +Daytona Beach Florida +College Station Texas +Jacksonville Florida +Salt Lake City Utah +Corpus Christi Texas +Florence Tuscany +Moab Utah +Grand Forks North Dakota +Las Vegas Nevada +Fairbanks Alaska +Petersburg Virginia +Wichita Kansas +Rhinelander Wisconsin +Kansas City Missouri +Dothan Alabama +Alamosa Colorado +Adak Island Alaska +Islip New York +Wichita Falls Texas +Presque Isle Maine +San Luis Obispo California +Dayton Ohio +Fort Smith Arkansas +Martha's Vineyard Massachusetts +Portland Oregon +Waco Texas +New York New York +Columbus Ohio +Tampa Florida +Little Rock Arkansas +Kona Hawaii +Clarksburg West Virginia +San Angelo Texas +Saginaw Michigan +Houston Texas +Duluth Minnesota +Valparaiso Indiana +Phoenix Arizona +Oakland California +Watertown New York +Ogden Utah +Cedar Rapids Iowa +Cape Girardeau Missouri +Sun Valley Idaho +Sault Ste. Marie Ontario +Trenton New Jersey +Missoula Montana +Pasco Washington +Brainerd Minnesota +Newburgh New York +Gustavus Minnesota +Branson Missouri +Providence Rhode Island +Minot North Dakota +Huntsville Alabama +San Antonio Texas +Marquette Wisconsin +Owensboro Kentucky +Del Rio Texas +Portsmouth England +Bloomington Illinois +Lexington Kentucky +Santa Barbara California +Baltimore Maryland +Panama City Florida +Kodiak Alaska +Yakima Washington +Vernal Utah +Salisbury Maryland +Mission Texas +Newport News Virginia +Charlottesville Virginia +Grand Junction Colorado +Baton Rouge Louisiana +Beaumont Texas +Staunton Virginia +Kalispell Montana +Key West Florida +Worcester England +West Palm Beach Florida +Boise Idaho +Grand Rapids Michigan +Salina Kansas +Fort Leonard Wood Missouri +Walla Walla Washington +Everett Washington +Dillingham Alaska +Lansing Michigan +Madison Wisconsin +Victoria Victoria +Sioux City Iowa +Hattiesburg Mississippi +Stockton California +Anchorage Alaska +Charlotte North Carolina +Jamestown Virginia +Laramie Wyoming +Decatur Georgia +Durango Colorado +Longview Texas +Syracuse New York +St. Cloud Minnesota +Santa Rosa California +Bakersfield California +North Platte Nebraska +La Crosse Wisconsin +Plattsburgh New York +Concord New Hampshire +Atlanta Georgia +Provo Utah +Ogdensburg New York +Ithaca New York +Colorado Springs Colorado +Washington District of Columbia +Williston North Dakota +Tulsa Oklahoma +Midland Texas +Champaign Illinois +Devils Lake Wisconsin +Greer South Carolina +Muskegon Michigan +Hibbing Minnesota +Santa Ana California +Ponce Ponce +Prescott Arizona +Indianapolis Indiana +International Falls Minnesota +Rapid City South Dakota +Ketchikan Alaska +St. Louis Missouri +Santa Maria California +Elmira New York +Alexandria Alexandria Governorate +San Jose California +Tucson Arizona +San Juan San Juan +Dubuque Iowa +Burbank California +Gunnison Colorado +Cedar City Utah +Hyannis Massachusetts +Raleigh North Carolina +Norfolk Virginia +New Orleans Louisiana +Medford Oregon +White Plains New York +Oklahoma City Oklahoma +Chicago Illinois +El Paso Texas +Rockford Illinois +Aguadilla Aguadilla +Omaha Nebraska +Scottsbluff Nebraska +Yakutat Alaska +Arcata California +Spokane Washington +Brownsville Texas +Bend Oregon +Hagerstown Maryland +Peoria Illinois +Appleton Wisconsin +Roanoke Virginia +Eugene Oregon +Rock Springs Wyoming +Dodge City Kansas +Austin Texas +Miami Florida +Dallas Texas +Mosinee Wisconsin +Killeen Texas +Lihue Hawaii +Pittsburgh Pennsylvania +Tallahassee Florida +Butte California +Lawton Oklahoma +Honolulu Hawaii +Greenville South Carolina +Juneau Alaska +Myrtle Beach South Carolina +Boston Massachusetts +Latrobe Pennsylvania +Knoxville Tennessee +Denver Colorado +Bangor Maine +Albany New York +Punta Gorda Florida +Fort Lauderdale Florida +Philadelphia Pennsylvania +Binghamton New York +Great Falls Montana +Shreveport Louisiana +Asheville North Carolina +Cheyenne Wyoming +Milwaukee Wisconsin +Nome Alaska +Laredo Texas +Des Moines Iowa +Fayetteville North Carolina +Lewisburg Pennsylvania +Fort Dodge Iowa +Cody Wyoming +Chattanooga Tennessee +Deadhorse Alaska +Kotzebue Alaska +Sitka Alaska +Bozeman Montana +Palm Springs California +Memphis Tennessee +Nantucket Massachusetts +Texarkana Texas +Lewiston Idaho +Valdosta Georgia +Birmingham England +Scranton Pennsylvania +Pensacola Florida +Hancock Michigan +Los Angeles California +Mason City Iowa +Savannah Georgia +West Yellowstone Montana +Long Beach California +Reno Nevada +Akron Ohio +Louisville Kentucky +Hartford Connecticut +Cincinnati Ohio +Rochester New York +San Francisco California +Detroit Michigan +Monterey California +Escanaba Michigan +Eau Claire Wisconsin \ No newline at end of file diff --git a/database/background/clean_data.py b/database/background/clean_data.py new file mode 100644 index 0000000000000000000000000000000000000000..ff11b7527e53f6d59334134d1da457c978f6380e --- /dev/null +++ b/database/background/clean_data.py @@ -0,0 +1,14 @@ +with open('database/background/citySet.txt','r') as f: + city_set = f.read().strip().split('\n') + +with open('database/background/citySet_with_states.txt','r') as f: + lines = f.read().strip().split('\n') + data = [] + for unit in lines: + if unit.split('\t')[0] in city_set: + data.append(unit) + +with open('database/background/citySet_with_states.txt','w') as f: + for unit in data: + f.write(unit + '\n') + f.close() \ No newline at end of file diff --git a/database/background/get_state_set.py b/database/background/get_state_set.py new file mode 100644 index 0000000000000000000000000000000000000000..4aa4c623139ec21e549fbaac14b0b49f3e9d7eac --- /dev/null +++ b/database/background/get_state_set.py @@ -0,0 +1,22 @@ +import os +# print now directory +print(os.getcwd()) +state_set = set() +city_set = set() +with open('database/background/citySet_with_states.txt','r') as f: + city_set = f.read().strip().split('\n') + for city in city_set: + city_name = city.split('\t')[0] + state_name = city.split('\t')[1] + state_set.add(state_name) + city_set.add(city_name) + # write to new file + f.close() +# with open('database/background/stateSet.txt', 'a') as f: +# for state_name in state_set: +# f.write(state_name.split('\\')[0] + '\n') +# f.close() +with open('database/background/citySet_2.txt', 'a') as f: + for city_name in city_set: + f.write(city_name.split('\\')[0] + '\n') + f.close() \ No newline at end of file diff --git a/database/background/stateSet.txt b/database/background/stateSet.txt new file mode 100644 index 0000000000000000000000000000000000000000..80eaa208ef60cfcf073a78494faa18a008fe0222 --- /dev/null +++ b/database/background/stateSet.txt @@ -0,0 +1,65 @@ +Wallonia +St. Thomas +Alaska +Washington +Kansas +Scotland +Michigan +Eastern District +New Jersey +Utah +Alexandria Governorate +North Dakota +Connecticut +West Virginia +Aguadilla +North Carolina +Ohio +Colorado +Arkansas +New York +Mississippi +San Juan +Minnesota +California +Maine +Nebraska +Idaho +Alabama +Texas +Maryland +England +New Mexico +South Carolina +Montana +Ponce +Tennessee +Florida +Oklahoma +Hawaii +New Hampshire +Iowa +Oregon +Wyoming +Pennsylvania +Tuscany +Virginia +Indiana +Missouri +District of Columbia +Saint Petersburg +Nevada +Massachusetts +Louisiana +Wisconsin +Saipan +Ontario +St. Croix +Kentucky +South Dakota +Arizona +Georgia +Rhode Island +Illinois +None +Victoria diff --git a/database/background/test.py b/database/background/test.py new file mode 100644 index 0000000000000000000000000000000000000000..366eb92d49e7cc13d58b4829daed7fcba7be5efc --- /dev/null +++ b/database/background/test.py @@ -0,0 +1,8 @@ + +f = open('/home/xj/toolAugEnv/code/toolConstraint/database/background/citySet.txt','r').read().strip().split('\n') +citySet = [] +for line in f: + if line not in citySet: + citySet.append(line.strip()) + else: + print(line) \ No newline at end of file diff --git a/database/flights/.DS_Store b/database/flights/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 Binary files /dev/null and b/database/flights/.DS_Store differ diff --git a/database/flights/clean_Flights_2022.csv b/database/flights/clean_Flights_2022.csv new file mode 100644 index 0000000000000000000000000000000000000000..56dd4b07463a85b52b9fac99f52bbfa48e52645c --- /dev/null +++ b/database/flights/clean_Flights_2022.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dafdb0e3f8b79ce599a1e612a772865295bc226b46e5fb278368f7255b11cee +size 304807007 diff --git a/database/googleDistanceMatrix/clean_data.py b/database/googleDistanceMatrix/clean_data.py new file mode 100644 index 0000000000000000000000000000000000000000..86c968b79f3405e01f3b25755e5dcccc57adaa9e --- /dev/null +++ b/database/googleDistanceMatrix/clean_data.py @@ -0,0 +1,17 @@ +import re +import pandas as pd +import csv + +def extract_before_parenthesis(s): + match = re.search(r'^(.*?)\([^)]*\)', s) + return match.group(1) if match else s + +if __name__ == '__main__': + data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/googleDistanceMatrix/distance.csv') + data = data.to_dict(orient = 'split') + fieldnames = ['origin', 'destination', 'cost', 'duration', 'distance'] + with open('/home/xj/toolAugEnv/code/toolConstraint/database/googleDistanceMatrix/distance2.csv', 'w', newline='') as csvfile: + writer = csv.DictWriter(csvfile, fieldnames=fieldnames) + writer.writeheader() + for row in data['data']: + writer.writerow({'origin': extract_before_parenthesis(row[0]), 'destination': extract_before_parenthesis(row[1]), 'cost': row[2], 'duration': row[3], 'distance': row[4]}) \ No newline at end of file diff --git a/database/googleDistanceMatrix/distance.csv b/database/googleDistanceMatrix/distance.csv new file mode 100644 index 0000000000000000000000000000000000000000..ef9b46c6bd1b5596cbba8b7485a91366309759d7 --- /dev/null +++ b/database/googleDistanceMatrix/distance.csv @@ -0,0 +1,17603 @@ +origin,destination,cost,duration,distance +Detroit,Norfolk,,10 hours 55 mins,"1,144 km" +Norfolk,Detroit,,10 hours 49 mins,"1,142 km" +Minneapolis,St. Louis,,8 hours 29 mins,901 km +St. Louis,Minneapolis,,8 hours 28 mins,900 km +Killeen,Abilene,,2 hours 56 mins,285 km +Killeen,Amarillo,,6 hours 58 mins,719 km +Killeen,Harlingen,,5 hours 51 mins,632 km +Killeen,Lubbock,,5 hours 19 mins,536 km +Killeen,College Station,,1 hour 50 mins,170 km +Killeen,Corpus Christi,,4 hours 13 mins,457 km +Killeen,Wichita Falls,,3 hours 48 mins,422 km +Killeen,Waco,,1 hour 1 min,98.6 km +Killeen,San Angelo,,2 hours 57 mins,296 km +Killeen,Houston,,3 hours 8 mins,306 km +Killeen,San Antonio,,2 hours 21 mins,235 km +Killeen,Del Rio,,4 hours 37 mins,452 km +Killeen,Mission,,, +Killeen,Beaumont,,, +Killeen,Longview,,3 hours 47 mins,379 km +Killeen,Midland,,4 hours 38 mins,477 km +Killeen,El Paso,,8 hours 29 mins,920 km +Killeen,Brownsville,,6 hours 12 mins,671 km +Killeen,Austin,,1 hour 10 mins,108 km +Killeen,Dallas,,2 hours 18 mins,249 km +Killeen,Laredo,,4 hours 38 mins,486 km +Killeen,Texarkana,,4 hours 54 mins,535 km +Abilene,Killeen,,2 hours 57 mins,285 km +Abilene,Amarillo,,4 hours 10 mins,446 km +Abilene,Harlingen,,7 hours 30 mins,802 km +Abilene,Lubbock,,2 hours 31 mins,263 km +Abilene,College Station,,4 hours 21 mins,420 km +Abilene,Corpus Christi,,5 hours 52 mins,627 km +Abilene,Wichita Falls,,2 hours 19 mins,246 km +Abilene,Waco,,3 hours 2 mins,297 km +Abilene,San Angelo,,1 hour 29 mins,145 km +Abilene,Houston,,5 hours 39 mins,570 km +Abilene,San Antonio,,3 hours 54 mins,394 km +Abilene,Del Rio,,3 hours 54 mins,398 km +Abilene,Mission,,, +Abilene,Beaumont,,, +Abilene,Longview,,4 hours 30 mins,497 km +Abilene,Midland,,2 hours 15 mins,239 km +Abilene,El Paso,,6 hours 34 mins,729 km +Abilene,Brownsville,,7 hours 52 mins,841 km +Abilene,Austin,,3 hours 36 mins,349 km +Abilene,Dallas,,2 hours 43 mins,292 km +Abilene,Laredo,,6 hours 6 mins,605 km +Abilene,Texarkana,,5 hours 19 mins,577 km +Amarillo,Killeen,,6 hours 58 mins,734 km +Amarillo,Abilene,,4 hours 12 mins,461 km +Amarillo,Harlingen,,11 hours 7 mins,"1,225 km" +Amarillo,Lubbock,,1 hour 47 mins,197 km +Amarillo,College Station,,7 hours 42 mins,825 km +Amarillo,Corpus Christi,,9 hours 28 mins,"1,050 km" +Amarillo,Wichita Falls,,3 hours 27 mins,362 km +Amarillo,Waco,,6 hours 24 mins,690 km +Amarillo,San Angelo,,4 hours 35 mins,492 km +Amarillo,Houston,,8 hours 49 mins,965 km +Amarillo,San Antonio,,7 hours 31 mins,817 km +Amarillo,Del Rio,,7 hours 2 mins,743 km +Amarillo,Mission,,, +Amarillo,Beaumont,,, +Amarillo,Longview,,7 hours 21 mins,789 km +Amarillo,Midland,,3 hours 33 mins,387 km +Amarillo,El Paso,,6 hours 46 mins,704 km +Amarillo,Brownsville,,11 hours 28 mins,"1,264 km" +Amarillo,Austin,,7 hours 38 mins,798 km +Amarillo,Dallas,,5 hours 30 mins,589 km +Amarillo,Laredo,,9 hours 38 mins,"1,007 km" +Amarillo,Texarkana,,7 hours 47 mins,798 km +Harlingen,Killeen,,5 hours 46 mins,632 km +Harlingen,Abilene,,7 hours 25 mins,802 km +Harlingen,Amarillo,,11 hours 0 mins,"1,210 km" +Harlingen,Lubbock,,9 hours 21 mins,"1,027 km" +Harlingen,College Station,,5 hours 44 mins,576 km +Harlingen,Corpus Christi,,2 hours 2 mins,219 km +Harlingen,Wichita Falls,,9 hours 0 mins,"1,011 km" +Harlingen,Waco,,6 hours 12 mins,687 km +Harlingen,San Angelo,,6 hours 42 mins,747 km +Harlingen,Houston,,4 hours 55 mins,529 km +Harlingen,San Antonio,,3 hours 39 mins,407 km +Harlingen,Del Rio,,5 hours 44 mins,570 km +Harlingen,Mission,,, +Harlingen,Beaumont,,, +Harlingen,Longview,,8 hours 12 mins,868 km +Harlingen,Midland,,8 hours 23 mins,930 km +Harlingen,El Paso,,11 hours 23 mins,"1,295 km" +Harlingen,Brownsville,,30 mins,41.7 km +Harlingen,Austin,,4 hours 44 mins,525 km +Harlingen,Dallas,,7 hours 29 mins,837 km +Harlingen,Laredo,,3 hours 2 mins,289 km +Harlingen,Texarkana,,9 hours 32 mins,994 km +Lubbock,Killeen,,5 hours 15 mins,537 km +Lubbock,Abilene,,2 hours 28 mins,264 km +Lubbock,Amarillo,,1 hour 48 mins,197 km +Lubbock,Harlingen,,9 hours 23 mins,"1,029 km" +Lubbock,College Station,,6 hours 43 mins,688 km +Lubbock,Corpus Christi,,7 hours 45 mins,853 km +Lubbock,Wichita Falls,,3 hours 8 mins,336 km +Lubbock,Waco,,5 hours 24 mins,565 km +Lubbock,San Angelo,,2 hours 51 mins,295 km +Lubbock,Houston,,8 hours 1 min,838 km +Lubbock,San Antonio,,5 hours 47 mins,621 km +Lubbock,Del Rio,,5 hours 18 mins,546 km +Lubbock,Mission,,, +Lubbock,Beaumont,,, +Lubbock,Longview,,6 hours 50 mins,763 km +Lubbock,Midland,,1 hour 50 mins,191 km +Lubbock,El Paso,,5 hours 33 mins,560 km +Lubbock,Brownsville,,9 hours 45 mins,"1,068 km" +Lubbock,Austin,,5 hours 54 mins,602 km +Lubbock,Dallas,,5 hours 2 mins,558 km +Lubbock,Laredo,,7 hours 54 mins,810 km +Lubbock,Texarkana,,7 hours 27 mins,769 km +College Station,Killeen,,1 hour 50 mins,176 km +College Station,Abilene,,4 hours 19 mins,424 km +College Station,Amarillo,,7 hours 40 mins,824 km +College Station,Harlingen,,5 hours 49 mins,577 km +College Station,Lubbock,,6 hours 44 mins,691 km +College Station,Corpus Christi,,4 hours 4 mins,382 km +College Station,Wichita Falls,,4 hours 16 mins,464 km +College Station,Waco,,1 hour 32 mins,148 km +College Station,San Angelo,,4 hours 40 mins,470 km +College Station,Houston,,1 hour 29 mins,156 km +College Station,San Antonio,,2 hours 57 mins,280 km +College Station,Del Rio,,5 hours 20 mins,527 km +College Station,Mission,,, +College Station,Beaumont,,, +College Station,Longview,,3 hours 11 mins,300 km +College Station,Midland,,6 hours 21 mins,651 km +College Station,El Paso,,10 hours 11 mins,"1,094 km" +College Station,Brownsville,,6 hours 11 mins,616 km +College Station,Austin,,1 hour 52 mins,172 km +College Station,Dallas,,2 hours 45 mins,291 km +College Station,Laredo,,5 hours 10 mins,528 km +College Station,Texarkana,,4 hours 41 mins,436 km +Corpus Christi,Killeen,,4 hours 10 mins,456 km +Corpus Christi,Abilene,,5 hours 49 mins,626 km +Corpus Christi,Amarillo,,9 hours 24 mins,"1,034 km" +Corpus Christi,Harlingen,,2 hours 5 mins,218 km +Corpus Christi,Lubbock,,7 hours 45 mins,851 km +Corpus Christi,College Station,,4 hours 6 mins,387 km +Corpus Christi,Wichita Falls,,7 hours 24 mins,835 km +Corpus Christi,Waco,,4 hours 36 mins,511 km +Corpus Christi,San Angelo,,5 hours 6 mins,571 km +Corpus Christi,Houston,,3 hours 17 mins,340 km +Corpus Christi,San Antonio,,2 hours 3 mins,231 km +Corpus Christi,Del Rio,,4 hours 10 mins,428 km +Corpus Christi,Mission,,, +Corpus Christi,Beaumont,,, +Corpus Christi,Longview,,6 hours 34 mins,679 km +Corpus Christi,Midland,,6 hours 47 mins,754 km +Corpus Christi,El Paso,,9 hours 47 mins,"1,119 km" +Corpus Christi,Brownsville,,2 hours 27 mins,258 km +Corpus Christi,Austin,,3 hours 8 mins,349 km +Corpus Christi,Dallas,,5 hours 53 mins,661 km +Corpus Christi,Laredo,,2 hours 32 mins,242 km +Corpus Christi,Texarkana,,7 hours 54 mins,805 km +Wichita Falls,Killeen,,3 hours 50 mins,421 km +Wichita Falls,Abilene,,2 hours 19 mins,245 km +Wichita Falls,Amarillo,,3 hours 28 mins,362 km +Wichita Falls,Harlingen,,9 hours 7 mins,"1,009 km" +Wichita Falls,Lubbock,,3 hours 12 mins,336 km +Wichita Falls,College Station,,4 hours 20 mins,463 km +Wichita Falls,Corpus Christi,,7 hours 29 mins,834 km +Wichita Falls,Waco,,3 hours 2 mins,327 km +Wichita Falls,San Angelo,,3 hours 34 mins,380 km +Wichita Falls,Houston,,5 hours 27 mins,602 km +Wichita Falls,San Antonio,,5 hours 38 mins,613 km +Wichita Falls,Del Rio,,6 hours 0 mins,633 km +Wichita Falls,Mission,,, +Wichita Falls,Beaumont,,, +Wichita Falls,Longview,,3 hours 59 mins,427 km +Wichita Falls,Midland,,4 hours 10 mins,447 km +Wichita Falls,El Paso,,8 hours 29 mins,937 km +Wichita Falls,Brownsville,,9 hours 29 mins,"1,049 km" +Wichita Falls,Austin,,4 hours 26 mins,486 km +Wichita Falls,Dallas,,2 hours 8 mins,226 km +Wichita Falls,Laredo,,7 hours 54 mins,863 km +Wichita Falls,Texarkana,,4 hours 26 mins,436 km +Waco,Killeen,,1 hour 0 mins,98.5 km +Waco,Abilene,,3 hours 4 mins,297 km +Waco,Amarillo,,6 hours 24 mins,687 km +Waco,Harlingen,,6 hours 17 mins,687 km +Waco,Lubbock,,5 hours 30 mins,564 km +Waco,College Station,,1 hour 32 mins,148 km +Waco,Corpus Christi,,4 hours 39 mins,512 km +Waco,Wichita Falls,,2 hours 59 mins,326 km +Waco,San Angelo,,3 hours 26 mins,337 km +Waco,Houston,,2 hours 50 mins,298 km +Waco,San Antonio,,2 hours 48 mins,291 km +Waco,Del Rio,,5 hours 14 mins,540 km +Waco,Mission,,, +Waco,Beaumont,,, +Waco,Longview,,2 hours 56 mins,283 km +Waco,Midland,,5 hours 8 mins,516 km +Waco,El Paso,,9 hours 14 mins,990 km +Waco,Brownsville,,6 hours 38 mins,727 km +Waco,Austin,,1 hour 36 mins,164 km +Waco,Dallas,,1 hour 28 mins,153 km +Waco,Laredo,,5 hours 4 mins,541 km +Waco,Texarkana,,4 hours 4 mins,439 km +San Angelo,Killeen,,2 hours 56 mins,293 km +San Angelo,Abilene,,1 hour 29 mins,144 km +San Angelo,Amarillo,,4 hours 35 mins,511 km +San Angelo,Harlingen,,6 hours 46 mins,745 km +San Angelo,Lubbock,,2 hours 53 mins,315 km +San Angelo,College Station,,4 hours 38 mins,461 km +San Angelo,Corpus Christi,,5 hours 7 mins,569 km +San Angelo,Wichita Falls,,3 hours 33 mins,380 km +San Angelo,Waco,,3 hours 23 mins,336 km +San Angelo,Houston,,5 hours 46 mins,586 km +San Angelo,San Antonio,,3 hours 10 mins,337 km +San Angelo,Del Rio,,2 hours 31 mins,252 km +San Angelo,Mission,,, +San Angelo,Beaumont,,, +San Angelo,Longview,,5 hours 42 mins,621 km +San Angelo,Midland,,1 hour 47 mins,180 km +San Angelo,El Paso,,5 hours 56 mins,650 km +San Angelo,Brownsville,,7 hours 7 mins,784 km +San Angelo,Austin,,3 hours 28 mins,327 km +San Angelo,Dallas,,3 hours 55 mins,416 km +San Angelo,Laredo,,5 hours 17 mins,527 km +San Angelo,Texarkana,,6 hours 31 mins,702 km +Houston,Killeen,,3 hours 9 mins,326 km +Houston,Abilene,,5 hours 38 mins,574 km +Houston,Amarillo,,8 hours 50 mins,965 km +Houston,Harlingen,,4 hours 58 mins,529 km +Houston,Lubbock,,8 hours 3 mins,841 km +Houston,College Station,,1 hour 30 mins,153 km +Houston,Corpus Christi,,3 hours 12 mins,334 km +Houston,Wichita Falls,,5 hours 25 mins,604 km +Houston,Waco,,2 hours 51 mins,298 km +Houston,San Angelo,,5 hours 46 mins,587 km +Houston,San Antonio,,2 hours 56 mins,317 km +Houston,Del Rio,,5 hours 19 mins,564 km +Houston,Mission,,, +Houston,Beaumont,,, +Houston,Longview,,3 hours 24 mins,340 km +Houston,Midland,,7 hours 27 mins,768 km +Houston,El Paso,,10 hours 38 mins,"1,201 km" +Houston,Brownsville,,5 hours 19 mins,568 km +Houston,Austin,,2 hours 31 mins,266 km +Houston,Dallas,,3 hours 27 mins,385 km +Houston,Laredo,,5 hours 4 mins,507 km +Houston,Texarkana,,4 hours 44 mins,467 km +San Antonio,Killeen,,2 hours 21 mins,235 km +San Antonio,Abilene,,3 hours 53 mins,394 km +San Antonio,Amarillo,,7 hours 28 mins,802 km +San Antonio,Harlingen,,3 hours 43 mins,406 km +San Antonio,Lubbock,,5 hours 48 mins,619 km +San Antonio,College Station,,2 hours 54 mins,272 km +San Antonio,Corpus Christi,,2 hours 5 mins,231 km +San Antonio,Wichita Falls,,5 hours 34 mins,614 km +San Antonio,Waco,,2 hours 47 mins,290 km +San Antonio,San Angelo,,3 hours 9 mins,339 km +San Antonio,Houston,,2 hours 56 mins,317 km +San Antonio,Del Rio,,2 hours 34 mins,251 km +San Antonio,Mission,,, +San Antonio,Beaumont,,, +San Antonio,Longview,,5 hours 33 mins,570 km +San Antonio,Midland,,4 hours 51 mins,522 km +San Antonio,El Paso,,7 hours 50 mins,887 km +San Antonio,Brownsville,,4 hours 5 mins,446 km +San Antonio,Austin,,1 hour 19 mins,128 km +San Antonio,Dallas,,4 hours 4 mins,440 km +San Antonio,Laredo,,2 hours 24 mins,252 km +San Antonio,Texarkana,,6 hours 40 mins,727 km +Del Rio,Killeen,,4 hours 36 mins,452 km +Del Rio,Abilene,,3 hours 53 mins,397 km +Del Rio,Amarillo,,7 hours 0 mins,754 km +Del Rio,Harlingen,,5 hours 46 mins,570 km +Del Rio,Lubbock,,5 hours 17 mins,558 km +Del Rio,College Station,,5 hours 20 mins,535 km +Del Rio,Corpus Christi,,4 hours 14 mins,429 km +Del Rio,Wichita Falls,,5 hours 56 mins,633 km +Del Rio,Waco,,5 hours 15 mins,539 km +Del Rio,San Angelo,,2 hours 29 mins,252 km +Del Rio,Houston,,5 hours 22 mins,564 km +Del Rio,San Antonio,,2 hours 37 mins,252 km +Del Rio,Mission,,, +Del Rio,Beaumont,,, +Del Rio,Longview,,8 hours 1 min,819 km +Del Rio,Midland,,3 hours 49 mins,375 km +Del Rio,El Paso,,6 hours 25 mins,684 km +Del Rio,Brownsville,,6 hours 8 mins,610 km +Del Rio,Austin,,3 hours 47 mins,377 km +Del Rio,Dallas,,6 hours 18 mins,669 km +Del Rio,Laredo,,3 hours 3 mins,288 km +Del Rio,Texarkana,,8 hours 55 mins,955 km +Mission,Killeen,,, +Mission,Abilene,,, +Mission,Amarillo,,, +Mission,Harlingen,,, +Mission,Lubbock,,, +Mission,College Station,,, +Mission,Corpus Christi,,, +Mission,Wichita Falls,,, +Mission,Waco,,, +Mission,San Angelo,,, +Mission,Houston,,, +Mission,San Antonio,,, +Mission,Del Rio,,, +Mission,Beaumont,,, +Mission,Longview,,, +Mission,Midland,,, +Mission,El Paso,,, +Mission,Brownsville,,, +Mission,Austin,,, +Mission,Dallas,,, +Mission,Laredo,,, +Mission,Texarkana,,, +Beaumont,Killeen,,, +Beaumont,Abilene,,, +Beaumont,Amarillo,,, +Beaumont,Harlingen,,, +Beaumont,Lubbock,,, +Beaumont,College Station,,, +Beaumont,Corpus Christi,,, +Beaumont,Wichita Falls,,, +Beaumont,Waco,,, +Beaumont,San Angelo,,, +Beaumont,Houston,,, +Beaumont,San Antonio,,, +Beaumont,Del Rio,,, +Beaumont,Mission,,, +Beaumont,Longview,,, +Beaumont,Midland,,, +Beaumont,El Paso,,, +Beaumont,Brownsville,,, +Beaumont,Austin,,, +Beaumont,Dallas,,, +Beaumont,Laredo,,, +Beaumont,Texarkana,,, +Longview,Killeen,,3 hours 46 mins,379 km +Longview,Abilene,,4 hours 29 mins,496 km +Longview,Amarillo,,7 hours 20 mins,795 km +Longview,Harlingen,,8 hours 16 mins,868 km +Longview,Lubbock,,6 hours 53 mins,761 km +Longview,College Station,,3 hours 15 mins,305 km +Longview,Corpus Christi,,6 hours 31 mins,673 km +Longview,Wichita Falls,,3 hours 55 mins,434 km +Longview,Waco,,2 hours 57 mins,283 km +Longview,San Angelo,,5 hours 43 mins,620 km +Longview,Houston,,3 hours 24 mins,340 km +Longview,San Antonio,,5 hours 34 mins,571 km +Longview,Del Rio,,8 hours 0 mins,821 km +Longview,Mission,,, +Longview,Beaumont,,, +Longview,Midland,,6 hours 38 mins,737 km +Longview,El Paso,,10 hours 56 mins,"1,227 km" +Longview,Brownsville,,8 hours 38 mins,907 km +Longview,Austin,,4 hours 22 mins,444 km +Longview,Dallas,,1 hour 54 mins,208 km +Longview,Laredo,,7 hours 50 mins,821 km +Longview,Texarkana,,1 hour 36 mins,141 km +Midland,Killeen,,4 hours 37 mins,480 km +Midland,Abilene,,2 hours 15 mins,238 km +Midland,Amarillo,,3 hours 33 mins,387 km +Midland,Harlingen,,8 hours 28 mins,930 km +Midland,Lubbock,,1 hour 51 mins,191 km +Midland,College Station,,6 hours 19 mins,647 km +Midland,Corpus Christi,,6 hours 50 mins,755 km +Midland,Wichita Falls,,4 hours 9 mins,448 km +Midland,Waco,,5 hours 5 mins,518 km +Midland,San Angelo,,1 hour 47 mins,180 km +Midland,Houston,,7 hours 26 mins,773 km +Midland,San Antonio,,4 hours 52 mins,522 km +Midland,Del Rio,,3 hours 51 mins,375 km +Midland,Mission,,, +Midland,Beaumont,,, +Midland,Longview,,6 hours 36 mins,737 km +Midland,El Paso,,4 hours 27 mins,491 km +Midland,Brownsville,,8 hours 49 mins,969 km +Midland,Austin,,5 hours 9 mins,514 km +Midland,Dallas,,4 hours 48 mins,532 km +Midland,Laredo,,6 hours 40 mins,658 km +Midland,Texarkana,,7 hours 25 mins,817 km +El Paso,Killeen,,8 hours 29 mins,920 km +El Paso,Abilene,,6 hours 33 mins,729 km +El Paso,Amarillo,,6 hours 43 mins,704 km +El Paso,Harlingen,,11 hours 26 mins,"1,295 km" +El Paso,Lubbock,,5 hours 27 mins,560 km +El Paso,College Station,,10 hours 11 mins,"1,088 km" +El Paso,Corpus Christi,,9 hours 48 mins,"1,119 km" +El Paso,Wichita Falls,,8 hours 27 mins,939 km +El Paso,Waco,,9 hours 12 mins,989 km +El Paso,San Angelo,,5 hours 56 mins,650 km +El Paso,Houston,,10 hours 39 mins,"1,201 km" +El Paso,San Antonio,,7 hours 50 mins,887 km +El Paso,Del Rio,,6 hours 24 mins,683 km +El Paso,Mission,,, +El Paso,Beaumont,,, +El Paso,Longview,,10 hours 54 mins,"1,227 km" +El Paso,Midland,,4 hours 27 mins,491 km +El Paso,Brownsville,,11 hours 48 mins,"1,334 km" +El Paso,Austin,,8 hours 40 mins,927 km +El Paso,Dallas,,9 hours 6 mins,"1,022 km" +El Paso,Laredo,,9 hours 20 mins,973 km +El Paso,Texarkana,,11 hours 43 mins,"1,307 km" +Brownsville,Killeen,,6 hours 10 mins,672 km +Brownsville,Abilene,,7 hours 49 mins,842 km +Brownsville,Amarillo,,11 hours 24 mins,"1,250 km" +Brownsville,Harlingen,,31 mins,42.1 km +Brownsville,Lubbock,,9 hours 45 mins,"1,067 km" +Brownsville,College Station,,6 hours 8 mins,616 km +Brownsville,Corpus Christi,,2 hours 26 mins,259 km +Brownsville,Wichita Falls,,9 hours 23 mins,"1,051 km" +Brownsville,Waco,,6 hours 36 mins,727 km +Brownsville,San Angelo,,7 hours 6 mins,787 km +Brownsville,Houston,,5 hours 18 mins,569 km +Brownsville,San Antonio,,4 hours 3 mins,447 km +Brownsville,Del Rio,,6 hours 8 mins,610 km +Brownsville,Mission,,, +Brownsville,Beaumont,,, +Brownsville,Longview,,8 hours 36 mins,908 km +Brownsville,Midland,,8 hours 47 mins,970 km +Brownsville,El Paso,,11 hours 46 mins,"1,335 km" +Brownsville,Austin,,5 hours 8 mins,565 km +Brownsville,Dallas,,7 hours 52 mins,877 km +Brownsville,Laredo,,3 hours 26 mins,329 km +Brownsville,Texarkana,,9 hours 56 mins,"1,034 km" +Austin,Killeen,,1 hour 10 mins,109 km +Austin,Abilene,,3 hours 35 mins,348 km +Austin,Amarillo,,7 hours 37 mins,783 km +Austin,Harlingen,,4 hours 48 mins,525 km +Austin,Lubbock,,5 hours 57 mins,600 km +Austin,College Station,,1 hour 51 mins,172 km +Austin,Corpus Christi,,3 hours 10 mins,350 km +Austin,Wichita Falls,,4 hours 24 mins,488 km +Austin,Waco,,1 hour 36 mins,164 km +Austin,San Angelo,,3 hours 27 mins,330 km +Austin,Houston,,2 hours 31 mins,266 km +Austin,San Antonio,,1 hour 19 mins,128 km +Austin,Del Rio,,3 hours 46 mins,378 km +Austin,Mission,,, +Austin,Beaumont,,, +Austin,Longview,,4 hours 22 mins,445 km +Austin,Midland,,5 hours 8 mins,511 km +Austin,El Paso,,8 hours 39 mins,928 km +Austin,Brownsville,,5 hours 10 mins,564 km +Austin,Dallas,,2 hours 53 mins,314 km +Austin,Laredo,,3 hours 35 mins,379 km +Austin,Texarkana,,5 hours 29 mins,601 km +Dallas,Killeen,,2 hours 17 mins,248 km +Dallas,Abilene,,2 hours 41 mins,291 km +Dallas,Amarillo,,5 hours 30 mins,588 km +Dallas,Harlingen,,7 hours 34 mins,837 km +Dallas,Lubbock,,5 hours 5 mins,556 km +Dallas,College Station,,2 hours 46 mins,291 km +Dallas,Corpus Christi,,5 hours 56 mins,662 km +Dallas,Wichita Falls,,2 hours 5 mins,227 km +Dallas,Waco,,1 hour 28 mins,155 km +Dallas,San Angelo,,3 hours 55 mins,415 km +Dallas,Houston,,3 hours 29 mins,385 km +Dallas,San Antonio,,4 hours 4 mins,441 km +Dallas,Del Rio,,6 hours 21 mins,668 km +Dallas,Mission,,, +Dallas,Beaumont,,, +Dallas,Longview,,1 hour 56 mins,206 km +Dallas,Midland,,4 hours 50 mins,531 km +Dallas,El Paso,,9 hours 8 mins,"1,021 km" +Dallas,Brownsville,,7 hours 55 mins,877 km +Dallas,Austin,,2 hours 53 mins,314 km +Dallas,Laredo,,6 hours 21 mins,691 km +Dallas,Texarkana,,2 hours 42 mins,287 km +Laredo,Killeen,,4 hours 39 mins,486 km +Laredo,Abilene,,6 hours 7 mins,606 km +Laredo,Amarillo,,9 hours 38 mins,992 km +Laredo,Harlingen,,3 hours 4 mins,290 km +Laredo,Lubbock,,7 hours 58 mins,809 km +Laredo,College Station,,5 hours 8 mins,535 km +Laredo,Corpus Christi,,2 hours 31 mins,234 km +Laredo,Wichita Falls,,7 hours 52 mins,865 km +Laredo,Waco,,5 hours 5 mins,541 km +Laredo,San Angelo,,5 hours 19 mins,529 km +Laredo,Houston,,5 hours 2 mins,507 km +Laredo,San Antonio,,2 hours 25 mins,252 km +Laredo,Del Rio,,3 hours 3 mins,288 km +Laredo,Mission,,, +Laredo,Beaumont,,, +Laredo,Longview,,7 hours 50 mins,822 km +Laredo,Midland,,6 hours 42 mins,659 km +Laredo,El Paso,,9 hours 21 mins,973 km +Laredo,Brownsville,,3 hours 26 mins,329 km +Laredo,Austin,,3 hours 37 mins,379 km +Laredo,Dallas,,6 hours 21 mins,691 km +Laredo,Texarkana,,8 hours 57 mins,978 km +Texarkana,Killeen,,4 hours 54 mins,537 km +Texarkana,Abilene,,5 hours 20 mins,579 km +Texarkana,Amarillo,,7 hours 56 mins,811 km +Texarkana,Harlingen,,9 hours 36 mins,994 km +Texarkana,Lubbock,,7 hours 43 mins,843 km +Texarkana,College Station,,4 hours 44 mins,439 km +Texarkana,Corpus Christi,,7 hours 51 mins,799 km +Texarkana,Wichita Falls,,4 hours 32 mins,451 km +Texarkana,Waco,,4 hours 6 mins,444 km +Texarkana,San Angelo,,6 hours 34 mins,703 km +Texarkana,Houston,,4 hours 44 mins,466 km +Texarkana,San Antonio,,6 hours 42 mins,729 km +Texarkana,Del Rio,,8 hours 59 mins,956 km +Texarkana,Mission,,, +Texarkana,Beaumont,,, +Texarkana,Longview,,1 hour 36 mins,142 km +Texarkana,Midland,,7 hours 28 mins,819 km +Texarkana,El Paso,,11 hours 46 mins,"1,309 km" +Texarkana,Brownsville,,9 hours 58 mins,"1,033 km" +Texarkana,Austin,,5 hours 30 mins,603 km +Texarkana,Dallas,,2 hours 43 mins,289 km +Texarkana,Laredo,,8 hours 58 mins,980 km +Manchester,Charlotte,,, +Charlotte,Manchester,,, +Hartford,Moline,,15 hours 31 mins,"1,670 km" +Hartford,Belleville,,16 hours 11 mins,"1,731 km" +Hartford,Bloomington,,13 hours 21 mins,"1,424 km" +Hartford,Champaign,,14 hours 21 mins,"1,540 km" +Hartford,Chicago,,13 hours 24 mins,"1,435 km" +Hartford,Rockford,,14 hours 48 mins,"1,575 km" +Hartford,Peoria,,15 hours 19 mins,"1,657 km" +Moline,Hartford,,15 hours 33 mins,"1,671 km" +Moline,Belleville,,3 hours 59 mins,417 km +Moline,Bloomington,,5 hours 18 mins,561 km +Moline,Champaign,,2 hours 43 mins,293 km +Moline,Chicago,,2 hours 43 mins,266 km +Moline,Rockford,,2 hours 1 min,194 km +Moline,Peoria,,1 hour 24 mins,149 km +Belleville,Hartford,,16 hours 14 mins,"1,734 km" +Belleville,Moline,,4 hours 0 mins,417 km +Belleville,Bloomington,,3 hours 50 mins,400 km +Belleville,Champaign,,2 hours 49 mins,287 km +Belleville,Chicago,,4 hours 36 mins,474 km +Belleville,Rockford,,4 hours 30 mins,471 km +Belleville,Peoria,,2 hours 37 mins,267 km +Bloomington,Hartford,,13 hours 23 mins,"1,428 km" +Bloomington,Moline,,5 hours 19 mins,563 km +Bloomington,Belleville,,3 hours 50 mins,401 km +Bloomington,Champaign,,2 hours 43 mins,272 km +Bloomington,Chicago,,3 hours 46 mins,373 km +Bloomington,Rockford,,5 hours 6 mins,518 km +Bloomington,Peoria,,3 hours 56 mins,412 km +Champaign,Hartford,,14 hours 24 mins,"1,542 km" +Champaign,Moline,,2 hours 46 mins,295 km +Champaign,Belleville,,2 hours 51 mins,288 km +Champaign,Bloomington,,2 hours 44 mins,269 km +Champaign,Chicago,,2 hours 8 mins,217 km +Champaign,Rockford,,2 hours 50 mins,299 km +Champaign,Peoria,,1 hour 23 mins,145 km +Chicago,Hartford,,13 hours 24 mins,"1,436 km" +Chicago,Moline,,2 hours 37 mins,265 km +Chicago,Belleville,,4 hours 34 mins,474 km +Chicago,Bloomington,,3 hours 46 mins,374 km +Chicago,Champaign,,2 hours 7 mins,218 km +Chicago,Rockford,,1 hour 32 mins,143 km +Chicago,Peoria,,2 hours 31 mins,267 km +Rockford,Hartford,,14 hours 49 mins,"1,585 km" +Rockford,Moline,,1 hour 57 mins,191 km +Rockford,Belleville,,4 hours 29 mins,470 km +Rockford,Bloomington,,5 hours 5 mins,516 km +Rockford,Champaign,,2 hours 47 mins,297 km +Rockford,Chicago,,1 hour 34 mins,143 km +Rockford,Peoria,,2 hours 17 mins,219 km +Peoria,Hartford,,15 hours 22 mins,"1,659 km" +Peoria,Moline,,1 hour 27 mins,151 km +Peoria,Belleville,,2 hours 38 mins,268 km +Peoria,Bloomington,,3 hours 57 mins,412 km +Peoria,Champaign,,1 hour 22 mins,144 km +Peoria,Chicago,,2 hours 34 mins,269 km +Peoria,Rockford,,2 hours 18 mins,217 km +Hartford,Denver,,1 day 3 hours,"3,022 km" +Denver,Hartford,,1 day 3 hours,"3,027 km" +Dallas,Boise,,23 hours 37 mins,"2,592 km" +Boise,Dallas,,23 hours 36 mins,"2,561 km" +Devils Lake,Alamosa,,17 hours 26 mins,"1,811 km" +Devils Lake,Grand Junction,,17 hours 52 mins,"1,939 km" +Devils Lake,Durango,,20 hours 3 mins,"2,089 km" +Devils Lake,Colorado Springs,,15 hours 10 mins,"1,668 km" +Devils Lake,Gunnison,,17 hours 36 mins,"1,870 km" +Devils Lake,Denver,,14 hours 14 mins,"1,553 km" +Alamosa,Devils Lake,,17 hours 19 mins,"1,821 km" +Alamosa,Grand Junction,,4 hours 29 mins,396 km +Alamosa,Durango,,2 hours 53 mins,240 km +Alamosa,Colorado Springs,,2 hours 36 mins,263 km +Alamosa,Gunnison,,2 hours 11 mins,197 km +Alamosa,Denver,,3 hours 38 mins,377 km +Grand Junction,Devils Lake,,17 hours 45 mins,"1,949 km" +Grand Junction,Alamosa,,4 hours 37 mins,397 km +Grand Junction,Durango,,3 hours 33 mins,269 km +Grand Junction,Colorado Springs,,4 hours 46 mins,498 km +Grand Junction,Gunnison,,2 hours 27 mins,200 km +Grand Junction,Denver,,3 hours 51 mins,391 km +Durango,Devils Lake,,19 hours 56 mins,"2,100 km" +Durango,Alamosa,,2 hours 52 mins,240 km +Durango,Grand Junction,,3 hours 30 mins,269 km +Durango,Colorado Springs,,5 hours 27 mins,504 km +Durango,Gunnison,,3 hours 47 mins,275 km +Durango,Denver,,6 hours 3 mins,542 km +Colorado Springs,Devils Lake,,15 hours 3 mins,"1,676 km" +Colorado Springs,Alamosa,,2 hours 37 mins,266 km +Colorado Springs,Grand Junction,,4 hours 48 mins,500 km +Colorado Springs,Durango,,5 hours 29 mins,506 km +Colorado Springs,Gunnison,,3 hours 12 mins,276 km +Colorado Springs,Denver,,1 hour 9 mins,113 km +Gunnison,Devils Lake,,17 hours 30 mins,"1,881 km" +Gunnison,Alamosa,,2 hours 12 mins,197 km +Gunnison,Grand Junction,,2 hours 20 mins,200 km +Gunnison,Durango,,3 hours 43 mins,275 km +Gunnison,Colorado Springs,,3 hours 10 mins,276 km +Gunnison,Denver,,3 hours 37 mins,323 km +Denver,Devils Lake,,14 hours 11 mins,"1,566 km" +Denver,Alamosa,,3 hours 40 mins,377 km +Denver,Grand Junction,,3 hours 54 mins,392 km +Denver,Durango,,6 hours 5 mins,542 km +Denver,Colorado Springs,,1 hour 11 mins,114 km +Denver,Gunnison,,3 hours 39 mins,323 km +Tulsa,Abilene,,5 hours 45 mins,636 km +Tulsa,Amarillo,,5 hours 15 mins,588 km +Tulsa,Harlingen,,11 hours 35 mins,"1,251 km" +Tulsa,Lubbock,,6 hours 38 mins,727 km +Tulsa,College Station,,6 hours 45 mins,702 km +Tulsa,Corpus Christi,,9 hours 57 mins,"1,075 km" +Tulsa,Wichita Falls,,3 hours 31 mins,392 km +Tulsa,Waco,,5 hours 30 mins,569 km +Tulsa,San Angelo,,7 hours 0 mins,770 km +Tulsa,Houston,,7 hours 26 mins,795 km +Tulsa,San Antonio,,8 hours 6 mins,854 km +Tulsa,Del Rio,,9 hours 25 mins,"1,023 km" +Tulsa,Mission,,, +Tulsa,Beaumont,,, +Tulsa,Longview,,4 hours 43 mins,459 km +Tulsa,Midland,,7 hours 36 mins,837 km +Tulsa,El Paso,,11 hours 51 mins,"1,286 km" +Tulsa,Brownsville,,11 hours 57 mins,"1,290 km" +Tulsa,Austin,,6 hours 54 mins,727 km +Tulsa,Dallas,,4 hours 6 mins,414 km +Tulsa,Killeen,,6 hours 18 mins,662 km +Tulsa,Laredo,,10 hours 22 mins,"1,104 km" +Tulsa,Texarkana,,4 hours 26 mins,440 km +Abilene,Tulsa,,5 hours 46 mins,637 km +Abilene,Killeen,,2 hours 57 mins,285 km +Amarillo,Tulsa,,5 hours 16 mins,587 km +Amarillo,Killeen,,6 hours 58 mins,734 km +Harlingen,Tulsa,,11 hours 31 mins,"1,251 km" +Harlingen,Killeen,,5 hours 46 mins,632 km +Lubbock,Tulsa,,6 hours 36 mins,726 km +Lubbock,Killeen,,5 hours 15 mins,537 km +College Station,Tulsa,,6 hours 44 mins,702 km +College Station,Killeen,,1 hour 50 mins,176 km +Corpus Christi,Tulsa,,9 hours 55 mins,"1,075 km" +Corpus Christi,Killeen,,4 hours 10 mins,456 km +Wichita Falls,Tulsa,,3 hours 31 mins,392 km +Wichita Falls,Killeen,,3 hours 50 mins,421 km +Waco,Tulsa,,5 hours 31 mins,566 km +Waco,Killeen,,1 hour 0 mins,98.5 km +San Angelo,Tulsa,,7 hours 0 mins,770 km +San Angelo,Killeen,,2 hours 56 mins,293 km +Houston,Tulsa,,7 hours 26 mins,796 km +Houston,Killeen,,3 hours 9 mins,326 km +San Antonio,Tulsa,,8 hours 6 mins,854 km +San Antonio,Killeen,,2 hours 21 mins,235 km +Del Rio,Tulsa,,9 hours 24 mins,"1,023 km" +Del Rio,Killeen,,4 hours 36 mins,452 km +Mission,Tulsa,,, +Mission,Killeen,,, +Beaumont,Tulsa,,, +Beaumont,Killeen,,, +Longview,Tulsa,,4 hours 44 mins,459 km +Longview,Killeen,,3 hours 46 mins,379 km +Midland,Tulsa,,7 hours 36 mins,839 km +Midland,Killeen,,4 hours 37 mins,480 km +El Paso,Tulsa,,11 hours 49 mins,"1,284 km" +El Paso,Killeen,,8 hours 29 mins,920 km +Brownsville,Tulsa,,11 hours 55 mins,"1,291 km" +Brownsville,Killeen,,6 hours 10 mins,672 km +Austin,Tulsa,,6 hours 55 mins,728 km +Austin,Killeen,,1 hour 10 mins,109 km +Dallas,Tulsa,,4 hours 8 mins,416 km +Dallas,Killeen,,2 hours 17 mins,248 km +Killeen,Tulsa,,6 hours 20 mins,663 km +Killeen,Abilene,,2 hours 56 mins,285 km +Killeen,Amarillo,,6 hours 58 mins,719 km +Killeen,Harlingen,,5 hours 51 mins,632 km +Killeen,Lubbock,,5 hours 19 mins,536 km +Killeen,College Station,,1 hour 50 mins,170 km +Killeen,Corpus Christi,,4 hours 13 mins,457 km +Killeen,Wichita Falls,,3 hours 48 mins,422 km +Killeen,Waco,,1 hour 1 min,98.6 km +Killeen,San Angelo,,2 hours 57 mins,296 km +Killeen,Houston,,3 hours 8 mins,306 km +Killeen,San Antonio,,2 hours 21 mins,235 km +Killeen,Del Rio,,4 hours 37 mins,452 km +Killeen,Mission,,, +Killeen,Beaumont,,, +Killeen,Longview,,3 hours 47 mins,379 km +Killeen,Midland,,4 hours 38 mins,477 km +Killeen,El Paso,,8 hours 29 mins,920 km +Killeen,Brownsville,,6 hours 12 mins,671 km +Killeen,Austin,,1 hour 10 mins,108 km +Killeen,Dallas,,2 hours 18 mins,249 km +Killeen,Laredo,,4 hours 38 mins,486 km +Killeen,Texarkana,,4 hours 54 mins,535 km +Laredo,Tulsa,,10 hours 24 mins,"1,105 km" +Laredo,Killeen,,4 hours 39 mins,486 km +Texarkana,Tulsa,,4 hours 28 mins,447 km +Texarkana,Killeen,,4 hours 54 mins,537 km +Sault Ste. Marie,Pellston,,1 hour 16 mins,122 km +Sault Ste. Marie,Traverse City,,3 hours 0 mins,282 km +Sault Ste. Marie,Alpena,,2 hours 39 mins,247 km +Sault Ste. Marie,Iron Mountain,,, +Sault Ste. Marie,Kalamazoo,,5 hours 5 mins,556 km +Sault Ste. Marie,Saginaw,,3 hours 32 mins,400 km +Sault Ste. Marie,Grand Rapids,,4 hours 22 mins,476 km +Sault Ste. Marie,Lansing,,4 hours 6 mins,464 km +Sault Ste. Marie,Muskegon,,4 hours 47 mins,499 km +Sault Ste. Marie,Hancock,,, +Sault Ste. Marie,Detroit,,4 hours 56 mins,560 km +Sault Ste. Marie,Escanaba,,2 hours 59 mins,282 km +Pellston,Sault Ste. Marie,,1 hour 17 mins,123 km +Pellston,Traverse City,,1 hour 49 mins,137 km +Pellston,Alpena,,1 hour 43 mins,157 km +Pellston,Iron Mountain,,, +Pellston,Kalamazoo,,4 hours 4 mins,407 km +Pellston,Saginaw,,2 hours 31 mins,292 km +Pellston,Grand Rapids,,3 hours 21 mins,327 km +Pellston,Lansing,,3 hours 4 mins,357 km +Pellston,Muskegon,,3 hours 46 mins,349 km +Pellston,Hancock,,, +Pellston,Detroit,,3 hours 55 mins,452 km +Pellston,Escanaba,,2 hours 45 mins,263 km +Traverse City,Sault Ste. Marie,,3 hours 2 mins,283 km +Traverse City,Pellston,,1 hour 51 mins,137 km +Traverse City,Alpena,,2 hours 29 mins,204 km +Traverse City,Iron Mountain,,, +Traverse City,Kalamazoo,,2 hours 59 mins,312 km +Traverse City,Saginaw,,2 hours 32 mins,251 km +Traverse City,Grand Rapids,,2 hours 17 mins,232 km +Traverse City,Lansing,,2 hours 57 mins,296 km +Traverse City,Muskegon,,2 hours 34 mins,212 km +Traverse City,Hancock,,, +Traverse City,Detroit,,3 hours 56 mins,411 km +Traverse City,Escanaba,,4 hours 30 mins,423 km +Alpena,Sault Ste. Marie,,2 hours 39 mins,247 km +Alpena,Pellston,,1 hour 42 mins,156 km +Alpena,Traverse City,,2 hours 27 mins,204 km +Alpena,Iron Mountain,,, +Alpena,Kalamazoo,,4 hours 33 mins,464 km +Alpena,Saginaw,,2 hours 29 mins,238 km +Alpena,Grand Rapids,,3 hours 50 mins,384 km +Alpena,Lansing,,3 hours 34 mins,372 km +Alpena,Muskegon,,4 hours 15 mins,406 km +Alpena,Hancock,,, +Alpena,Detroit,,3 hours 52 mins,398 km +Alpena,Escanaba,,4 hours 7 mins,387 km +Iron Mountain,Sault Ste. Marie,,, +Iron Mountain,Pellston,,, +Iron Mountain,Traverse City,,, +Iron Mountain,Alpena,,, +Iron Mountain,Kalamazoo,,, +Iron Mountain,Saginaw,,, +Iron Mountain,Grand Rapids,,, +Iron Mountain,Lansing,,, +Iron Mountain,Muskegon,,, +Iron Mountain,Hancock,,, +Iron Mountain,Detroit,,, +Iron Mountain,Escanaba,,, +Kalamazoo,Sault Ste. Marie,,5 hours 5 mins,556 km +Kalamazoo,Pellston,,4 hours 3 mins,407 km +Kalamazoo,Traverse City,,2 hours 57 mins,310 km +Kalamazoo,Alpena,,4 hours 36 mins,465 km +Kalamazoo,Iron Mountain,,, +Kalamazoo,Saginaw,,2 hours 27 mins,241 km +Kalamazoo,Grand Rapids,,49 mins,81.3 km +Kalamazoo,Lansing,,1 hour 17 mins,121 km +Kalamazoo,Muskegon,,1 hour 24 mins,147 km +Kalamazoo,Hancock,,, +Kalamazoo,Detroit,,2 hours 10 mins,225 km +Kalamazoo,Escanaba,,6 hours 33 mins,696 km +Saginaw,Sault Ste. Marie,,3 hours 34 mins,400 km +Saginaw,Pellston,,2 hours 32 mins,293 km +Saginaw,Traverse City,,2 hours 32 mins,252 km +Saginaw,Alpena,,2 hours 31 mins,241 km +Saginaw,Iron Mountain,,, +Saginaw,Kalamazoo,,2 hours 24 mins,239 km +Saginaw,Grand Rapids,,2 hours 4 mins,212 km +Saginaw,Lansing,,1 hour 15 mins,121 km +Saginaw,Muskegon,,2 hours 33 mins,207 km +Saginaw,Hancock,,, +Saginaw,Detroit,,1 hour 34 mins,165 km +Saginaw,Escanaba,,5 hours 2 mins,541 km +Grand Rapids,Sault Ste. Marie,,4 hours 21 mins,476 km +Grand Rapids,Pellston,,3 hours 19 mins,327 km +Grand Rapids,Traverse City,,2 hours 13 mins,230 km +Grand Rapids,Alpena,,3 hours 52 mins,385 km +Grand Rapids,Iron Mountain,,, +Grand Rapids,Kalamazoo,,48 mins,81.3 km +Grand Rapids,Saginaw,,2 hours 4 mins,214 km +Grand Rapids,Lansing,,1 hour 1 min,110 km +Grand Rapids,Muskegon,,41 mins,67.0 km +Grand Rapids,Hancock,,, +Grand Rapids,Detroit,,2 hours 20 mins,253 km +Grand Rapids,Escanaba,,5 hours 49 mins,616 km +Lansing,Sault Ste. Marie,,4 hours 7 mins,464 km +Lansing,Pellston,,3 hours 5 mins,357 km +Lansing,Traverse City,,2 hours 55 mins,294 km +Lansing,Alpena,,3 hours 36 mins,372 km +Lansing,Iron Mountain,,, +Lansing,Kalamazoo,,1 hour 17 mins,122 km +Lansing,Saginaw,,1 hour 17 mins,121 km +Lansing,Grand Rapids,,1 hour 3 mins,109 km +Lansing,Muskegon,,1 hour 36 mins,172 km +Lansing,Hancock,,, +Lansing,Detroit,,1 hour 24 mins,145 km +Lansing,Escanaba,,5 hours 35 mins,605 km +Muskegon,Sault Ste. Marie,,4 hours 47 mins,498 km +Muskegon,Pellston,,3 hours 45 mins,350 km +Muskegon,Traverse City,,2 hours 32 mins,210 km +Muskegon,Alpena,,4 hours 18 mins,408 km +Muskegon,Iron Mountain,,, +Muskegon,Kalamazoo,,1 hour 24 mins,147 km +Muskegon,Saginaw,,2 hours 33 mins,207 km +Muskegon,Grand Rapids,,42 mins,67.5 km +Muskegon,Lansing,,1 hour 36 mins,174 km +Muskegon,Hancock,,, +Muskegon,Detroit,,2 hours 54 mins,317 km +Muskegon,Escanaba,,6 hours 15 mins,639 km +Hancock,Sault Ste. Marie,,, +Hancock,Pellston,,, +Hancock,Traverse City,,, +Hancock,Alpena,,, +Hancock,Iron Mountain,,, +Hancock,Kalamazoo,,, +Hancock,Saginaw,,, +Hancock,Grand Rapids,,, +Hancock,Lansing,,, +Hancock,Muskegon,,, +Hancock,Detroit,,, +Hancock,Escanaba,,, +Detroit,Sault Ste. Marie,,4 hours 55 mins,559 km +Detroit,Pellston,,3 hours 53 mins,452 km +Detroit,Traverse City,,3 hours 53 mins,411 km +Detroit,Alpena,,3 hours 52 mins,400 km +Detroit,Iron Mountain,,, +Detroit,Kalamazoo,,2 hours 13 mins,226 km +Detroit,Saginaw,,1 hour 34 mins,165 km +Detroit,Grand Rapids,,2 hours 22 mins,254 km +Detroit,Lansing,,1 hour 24 mins,146 km +Detroit,Muskegon,,2 hours 55 mins,317 km +Detroit,Hancock,,, +Detroit,Escanaba,,6 hours 23 mins,700 km +Escanaba,Sault Ste. Marie,,2 hours 58 mins,282 km +Escanaba,Pellston,,2 hours 43 mins,262 km +Escanaba,Traverse City,,4 hours 27 mins,422 km +Escanaba,Alpena,,4 hours 6 mins,387 km +Escanaba,Iron Mountain,,, +Escanaba,Kalamazoo,,6 hours 32 mins,696 km +Escanaba,Saginaw,,5 hours 0 mins,540 km +Escanaba,Grand Rapids,,5 hours 50 mins,616 km +Escanaba,Lansing,,5 hours 33 mins,604 km +Escanaba,Muskegon,,6 hours 14 mins,639 km +Escanaba,Hancock,,, +Escanaba,Detroit,,6 hours 23 mins,700 km +Honolulu,Abilene,,, +Honolulu,Amarillo,,, +Honolulu,Harlingen,,, +Honolulu,Lubbock,,, +Honolulu,College Station,,, +Honolulu,Corpus Christi,,, +Honolulu,Wichita Falls,,, +Honolulu,Waco,,, +Honolulu,San Angelo,,, +Honolulu,Houston,,, +Honolulu,San Antonio,,, +Honolulu,Del Rio,,, +Honolulu,Mission,,, +Honolulu,Beaumont,,, +Honolulu,Longview,,, +Honolulu,Midland,,, +Honolulu,El Paso,,, +Honolulu,Brownsville,,, +Honolulu,Austin,,, +Honolulu,Dallas,,, +Honolulu,Killeen,,, +Honolulu,Laredo,,, +Honolulu,Texarkana,,, +Abilene,Honolulu,,, +Amarillo,Honolulu,,, +Harlingen,Honolulu,,, +Lubbock,Honolulu,,, +College Station,Honolulu,,, +Corpus Christi,Honolulu,,, +Wichita Falls,Honolulu,,, +Waco,Honolulu,,, +San Angelo,Honolulu,,, +Houston,Honolulu,,, +San Antonio,Honolulu,,, +Del Rio,Honolulu,,, +Mission,Honolulu,,, +Beaumont,Honolulu,,, +Longview,Honolulu,,, +Midland,Honolulu,,, +El Paso,Honolulu,,, +Brownsville,Honolulu,,, +Austin,Honolulu,,, +Dallas,Honolulu,,, +Killeen,Honolulu,,, +Laredo,Honolulu,,, +Texarkana,Honolulu,,, +Tucson,Moline,,23 hours 42 mins,"2,508 km" +Tucson,Belleville,,21 hours 34 mins,"2,355 km" +Tucson,Bloomington,,1 day 1 hour,"2,692 km" +Tucson,Champaign,,23 hours 51 mins,"2,617 km" +Tucson,Chicago,,1 day 2 hours,"2,804 km" +Tucson,Rockford,,1 day 1 hour,"2,696 km" +Tucson,Peoria,,23 hours 39 mins,"2,597 km" +Moline,Tucson,,23 hours 42 mins,"2,521 km" +Belleville,Tucson,,21 hours 34 mins,"2,367 km" +Bloomington,Tucson,,1 day 1 hour,"2,699 km" +Champaign,Tucson,,23 hours 51 mins,"2,629 km" +Chicago,Tucson,,1 day 2 hours,"2,815 km" +Rockford,Tucson,,1 day 1 hour,"2,810 km" +Peoria,Tucson,,23 hours 38 mins,"2,608 km" +Salt Lake City,Twin Falls,,3 hours 13 mins,351 km +Twin Falls,Salt Lake City,,3 hours 14 mins,351 km +Atlanta,Charleston,,4 hours 45 mins,491 km +Atlanta,Hilton Head,,4 hours 11 mins,452 km +Atlanta,Greer,,2 hours 29 mins,256 km +Atlanta,Greenville,,2 hours 16 mins,234 km +Atlanta,Myrtle Beach,,5 hours 37 mins,582 km +Charleston,Atlanta,,4 hours 46 mins,481 km +Charleston,Hilton Head,,2 hours 2 mins,158 km +Charleston,Greer,,3 hours 23 mins,349 km +Charleston,Greenville,,3 hours 15 mins,343 km +Charleston,Myrtle Beach,,2 hours 6 mins,158 km +Hilton Head,Atlanta,,4 hours 12 mins,451 km +Hilton Head,Charleston,,2 hours 0 mins,157 km +Hilton Head,Greer,,3 hours 59 mins,410 km +Hilton Head,Greenville,,3 hours 51 mins,404 km +Hilton Head,Myrtle Beach,,3 hours 46 mins,355 km +Greer,Atlanta,,2 hours 29 mins,256 km +Greer,Charleston,,3 hours 21 mins,349 km +Greer,Hilton Head,,3 hours 57 mins,410 km +Greer,Greenville,,22 mins,26.4 km +Greer,Myrtle Beach,,4 hours 11 mins,411 km +Greenville,Atlanta,,2 hours 16 mins,234 km +Greenville,Charleston,,3 hours 13 mins,343 km +Greenville,Hilton Head,,3 hours 50 mins,404 km +Greenville,Greer,,24 mins,19.3 km +Greenville,Myrtle Beach,,4 hours 4 mins,405 km +Myrtle Beach,Atlanta,,5 hours 36 mins,583 km +Myrtle Beach,Charleston,,2 hours 9 mins,158 km +Myrtle Beach,Hilton Head,,3 hours 46 mins,356 km +Myrtle Beach,Greer,,4 hours 12 mins,411 km +Myrtle Beach,Greenville,,4 hours 4 mins,405 km +Daytona Beach,Greensboro,,8 hours 5 mins,877 km +Daytona Beach,Wilmington,,7 hours 40 mins,844 km +Daytona Beach,New Bern,,8 hours 55 mins,979 km +Daytona Beach,Charlotte,,6 hours 55 mins,759 km +Daytona Beach,Raleigh,,7 hours 52 mins,872 km +Daytona Beach,Asheville,,7 hours 50 mins,854 km +Daytona Beach,Fayetteville,,6 hours 58 mins,776 km +Greensboro,Daytona Beach,,8 hours 9 mins,875 km +Greensboro,Wilmington,,3 hours 4 mins,330 km +Greensboro,New Bern,,3 hours 3 mins,309 km +Greensboro,Charlotte,,1 hour 28 mins,149 km +Greensboro,Raleigh,,1 hour 20 mins,124 km +Greensboro,Asheville,,2 hours 40 mins,278 km +Greensboro,Fayetteville,,1 hour 43 mins,152 km +Wilmington,Daytona Beach,,7 hours 44 mins,857 km +Wilmington,Greensboro,,3 hours 4 mins,331 km +Wilmington,New Bern,,1 hour 45 mins,152 km +Wilmington,Charlotte,,3 hours 24 mins,324 km +Wilmington,Raleigh,,1 hour 55 mins,206 km +Wilmington,Asheville,,5 hours 19 mins,541 km +Wilmington,Fayetteville,,1 hour 43 mins,149 km +New Bern,Daytona Beach,,8 hours 59 mins,990 km +New Bern,Greensboro,,3 hours 3 mins,308 km +New Bern,Wilmington,,1 hour 47 mins,153 km +New Bern,Charlotte,,4 hours 19 mins,454 km +New Bern,Raleigh,,1 hour 55 mins,184 km +New Bern,Asheville,,5 hours 32 mins,583 km +New Bern,Fayetteville,,2 hours 8 mins,209 km +Charlotte,Daytona Beach,,6 hours 56 mins,770 km +Charlotte,Greensboro,,1 hour 27 mins,148 km +Charlotte,Wilmington,,3 hours 24 mins,323 km +Charlotte,New Bern,,4 hours 19 mins,453 km +Charlotte,Raleigh,,2 hours 36 mins,267 km +Charlotte,Asheville,,2 hours 7 mins,209 km +Charlotte,Fayetteville,,2 hours 40 mins,223 km +Raleigh,Daytona Beach,,7 hours 56 mins,885 km +Raleigh,Greensboro,,1 hour 19 mins,124 km +Raleigh,Wilmington,,1 hour 57 mins,208 km +Raleigh,New Bern,,1 hour 57 mins,187 km +Raleigh,Charlotte,,2 hours 34 mins,269 km +Raleigh,Asheville,,3 hours 47 mins,398 km +Raleigh,Fayetteville,,1 hour 5 mins,104 km +Asheville,Daytona Beach,,7 hours 51 mins,865 km +Asheville,Greensboro,,2 hours 39 mins,278 km +Asheville,Wilmington,,5 hours 18 mins,539 km +Asheville,New Bern,,5 hours 32 mins,583 km +Asheville,Charlotte,,2 hours 7 mins,209 km +Asheville,Raleigh,,3 hours 49 mins,398 km +Asheville,Fayetteville,,4 hours 9 mins,423 km +Fayetteville,Daytona Beach,,7 hours 1 min,786 km +Fayetteville,Greensboro,,1 hour 44 mins,152 km +Fayetteville,Wilmington,,1 hour 44 mins,149 km +Fayetteville,New Bern,,2 hours 8 mins,209 km +Fayetteville,Charlotte,,2 hours 40 mins,223 km +Fayetteville,Raleigh,,1 hour 4 mins,102 km +Fayetteville,Asheville,,4 hours 10 mins,424 km +Seattle,Hilo,,, +Seattle,Kahului,,, +Seattle,Kona,,, +Seattle,Lihue,,, +Seattle,Honolulu,,, +Hilo,Seattle,,, +Hilo,Kahului,,, +Hilo,Kona,,1 hour 31 mins,125 km +Hilo,Lihue,,, +Hilo,Honolulu,,, +Kahului,Seattle,,, +Kahului,Hilo,,, +Kahului,Kona,,, +Kahului,Lihue,,, +Kahului,Honolulu,,, +Kona,Seattle,,, +Kona,Hilo,,1 hour 31 mins,125 km +Kona,Kahului,,, +Kona,Lihue,,, +Kona,Honolulu,,, +Lihue,Seattle,,, +Lihue,Hilo,,, +Lihue,Kahului,,, +Lihue,Kona,,, +Lihue,Honolulu,,, +Honolulu,Seattle,,, +Honolulu,Hilo,,, +Honolulu,Kahului,,, +Honolulu,Kona,,, +Honolulu,Lihue,,, +Roanoke,State College,,5 hours 30 mins,543 km +Roanoke,Johnstown,,5 hours 4 mins,485 km +Roanoke,Harrisburg,,4 hours 27 mins,474 km +Roanoke,Erie,,7 hours 26 mins,741 km +Roanoke,Pittsburgh,,5 hours 42 mins,546 km +Roanoke,Latrobe,,5 hours 27 mins,518 km +Roanoke,Philadelphia,,5 hours 49 mins,611 km +Roanoke,Lewisburg,,5 hours 26 mins,561 km +Roanoke,Scranton,,6 hours 14 mins,662 km +State College,Roanoke,,5 hours 27 mins,550 km +State College,Johnstown,,1 hour 29 mins,137 km +State College,Harrisburg,,1 hour 32 mins,138 km +State College,Erie,,3 hours 22 mins,342 km +State College,Pittsburgh,,2 hours 29 mins,225 km +State College,Latrobe,,1 hour 55 mins,183 km +State College,Philadelphia,,3 hours 11 mins,308 km +State College,Lewisburg,,1 hour 12 mins,115 km +State College,Scranton,,2 hours 22 mins,241 km +Johnstown,Roanoke,,5 hours 1 min,485 km +Johnstown,State College,,1 hour 29 mins,131 km +Johnstown,Harrisburg,,2 hours 25 mins,222 km +Johnstown,Erie,,3 hours 2 mins,283 km +Johnstown,Pittsburgh,,1 hour 25 mins,105 km +Johnstown,Latrobe,,48 mins,53.3 km +Johnstown,Philadelphia,,3 hours 54 mins,384 km +Johnstown,Lewisburg,,2 hours 25 mins,241 km +Johnstown,Scranton,,3 hours 35 mins,367 km +Harrisburg,Roanoke,,4 hours 28 mins,474 km +Harrisburg,State College,,1 hour 31 mins,139 km +Harrisburg,Johnstown,,2 hours 24 mins,221 km +Harrisburg,Erie,,4 hours 40 mins,476 km +Harrisburg,Pittsburgh,,3 hours 16 mins,327 km +Harrisburg,Latrobe,,2 hours 51 mins,252 km +Harrisburg,Philadelphia,,1 hour 48 mins,171 km +Harrisburg,Lewisburg,,1 hour 10 mins,98.1 km +Harrisburg,Scranton,,1 hour 58 mins,195 km +Erie,Roanoke,,7 hours 27 mins,740 km +Erie,State College,,3 hours 25 mins,337 km +Erie,Johnstown,,3 hours 4 mins,282 km +Erie,Harrisburg,,4 hours 43 mins,477 km +Erie,Pittsburgh,,1 hour 57 mins,206 km +Erie,Latrobe,,2 hours 39 mins,262 km +Erie,Philadelphia,,6 hours 22 mins,678 km +Erie,Lewisburg,,4 hours 1 min,430 km +Erie,Scranton,,4 hours 58 mins,518 km +Pittsburgh,Roanoke,,5 hours 40 mins,546 km +Pittsburgh,State College,,2 hours 29 mins,219 km +Pittsburgh,Johnstown,,1 hour 24 mins,108 km +Pittsburgh,Harrisburg,,3 hours 17 mins,328 km +Pittsburgh,Erie,,1 hour 55 mins,206 km +Pittsburgh,Latrobe,,53 mins,64.2 km +Pittsburgh,Philadelphia,,4 hours 46 mins,490 km +Pittsburgh,Lewisburg,,3 hours 25 mins,330 km +Pittsburgh,Scranton,,4 hours 35 mins,455 km +Latrobe,Roanoke,,5 hours 25 mins,507 km +Latrobe,State College,,1 hour 57 mins,174 km +Latrobe,Johnstown,,51 mins,51.2 km +Latrobe,Harrisburg,,2 hours 56 mins,251 km +Latrobe,Erie,,2 hours 41 mins,264 km +Latrobe,Pittsburgh,,55 mins,64.3 km +Latrobe,Philadelphia,,4 hours 25 mins,413 km +Latrobe,Lewisburg,,2 hours 53 mins,284 km +Latrobe,Scranton,,4 hours 3 mins,410 km +Philadelphia,Roanoke,,5 hours 48 mins,610 km +Philadelphia,State College,,3 hours 12 mins,309 km +Philadelphia,Johnstown,,3 hours 56 mins,384 km +Philadelphia,Harrisburg,,1 hour 51 mins,172 km +Philadelphia,Erie,,6 hours 21 mins,646 km +Philadelphia,Pittsburgh,,4 hours 48 mins,491 km +Philadelphia,Latrobe,,4 hours 23 mins,416 km +Philadelphia,Lewisburg,,2 hours 41 mins,261 km +Philadelphia,Scranton,,2 hours 5 mins,200 km +Lewisburg,Roanoke,,5 hours 26 mins,560 km +Lewisburg,State College,,1 hour 16 mins,89.0 km +Lewisburg,Johnstown,,2 hours 26 mins,242 km +Lewisburg,Harrisburg,,1 hour 11 mins,99.2 km +Lewisburg,Erie,,3 hours 59 mins,429 km +Lewisburg,Pittsburgh,,3 hours 26 mins,330 km +Lewisburg,Latrobe,,2 hours 53 mins,288 km +Lewisburg,Philadelphia,,2 hours 38 mins,260 km +Lewisburg,Scranton,,1 hour 27 mins,138 km +Scranton,Roanoke,,6 hours 12 mins,661 km +Scranton,State College,,2 hours 24 mins,241 km +Scranton,Johnstown,,3 hours 36 mins,367 km +Scranton,Harrisburg,,1 hour 57 mins,195 km +Scranton,Erie,,4 hours 58 mins,519 km +Scranton,Pittsburgh,,4 hours 36 mins,454 km +Scranton,Latrobe,,4 hours 3 mins,413 km +Scranton,Philadelphia,,2 hours 4 mins,201 km +Scranton,Lewisburg,,1 hour 28 mins,139 km +Arcata,Alamosa,,22 hours 7 mins,"2,217 km" +Arcata,Grand Junction,,17 hours 36 mins,"1,823 km" +Arcata,Durango,,19 hours 39 mins,"1,997 km" +Arcata,Colorado Springs,,21 hours 57 mins,"2,314 km" +Arcata,Gunnison,,19 hours 57 mins,"2,020 km" +Arcata,Denver,,20 hours 59 mins,"2,202 km" +Alamosa,Arcata,,22 hours 4 mins,"2,139 km" +Grand Junction,Arcata,,17 hours 40 mins,"1,745 km" +Durango,Arcata,,19 hours 39 mins,"1,918 km" +Colorado Springs,Arcata,,22 hours 1 min,"2,310 km" +Gunnison,Arcata,,19 hours 54 mins,"1,942 km" +Denver,Arcata,,21 hours 6 mins,"2,202 km" +Minneapolis,Sarasota,,23 hours 32 mins,"2,631 km" +Minneapolis,Fort Myers,,1 day 0 hours,"2,737 km" +Minneapolis,Gainesville,,21 hours 9 mins,"2,347 km" +Minneapolis,Orlando,,22 hours 33 mins,"2,519 km" +Minneapolis,Daytona Beach,,22 hours 37 mins,"2,519 km" +Minneapolis,Jacksonville,,21 hours 14 mins,"2,370 km" +Minneapolis,Tampa,,22 hours 45 mins,"2,547 km" +Minneapolis,Panama City,,20 hours 0 mins,"2,154 km" +Minneapolis,Key West,,1 day 5 hours,"3,133 km" +Minneapolis,West Palm Beach,,1 day 1 hour,"2,775 km" +Minneapolis,Miami,,1 day 2 hours,"2,880 km" +Minneapolis,Tallahassee,,20 hours 17 mins,"2,208 km" +Minneapolis,Punta Gorda,,1 day 0 hours,"2,702 km" +Minneapolis,Fort Lauderdale,,1 day 1 hour,"2,843 km" +Minneapolis,Pensacola,,19 hours 1 min,"2,009 km" +Sarasota,Minneapolis,,23 hours 37 mins,"2,640 km" +Sarasota,Fort Myers,,1 hour 20 mins,122 km +Sarasota,Gainesville,,2 hours 46 mins,294 km +Sarasota,Orlando,,2 hours 5 mins,211 km +Sarasota,Daytona Beach,,2 hours 54 mins,300 km +Sarasota,Jacksonville,,3 hours 55 mins,405 km +Sarasota,Tampa,,1 hour 1 min,98.4 km +Sarasota,Panama City,,6 hours 26 mins,689 km +Sarasota,Key West,,6 hours 13 mins,604 km +Sarasota,West Palm Beach,,3 hours 20 mins,280 km +Sarasota,Miami,,3 hours 26 mins,371 km +Sarasota,Tallahassee,,4 hours 48 mins,527 km +Sarasota,Punta Gorda,,54 mins,87.0 km +Sarasota,Fort Lauderdale,,3 hours 8 mins,344 km +Sarasota,Pensacola,,7 hours 21 mins,838 km +Fort Myers,Minneapolis,,1 day 1 hour,"2,745 km" +Fort Myers,Sarasota,,1 hour 21 mins,124 km +Fort Myers,Gainesville,,3 hours 43 mins,399 km +Fort Myers,Orlando,,2 hours 59 mins,257 km +Fort Myers,Daytona Beach,,3 hours 48 mins,345 km +Fort Myers,Jacksonville,,4 hours 52 mins,510 km +Fort Myers,Tampa,,1 hour 58 mins,204 km +Fort Myers,Panama City,,7 hours 23 mins,794 km +Fort Myers,Key West,,5 hours 13 mins,486 km +Fort Myers,West Palm Beach,,2 hours 34 mins,202 km +Fort Myers,Miami,,2 hours 26 mins,252 km +Fort Myers,Tallahassee,,5 hours 45 mins,633 km +Fort Myers,Punta Gorda,,34 mins,38.7 km +Fort Myers,Fort Lauderdale,,2 hours 8 mins,226 km +Fort Myers,Pensacola,,8 hours 18 mins,944 km +Gainesville,Minneapolis,,21 hours 13 mins,"2,354 km" +Gainesville,Sarasota,,2 hours 45 mins,293 km +Gainesville,Fort Myers,,3 hours 43 mins,398 km +Gainesville,Orlando,,1 hour 46 mins,181 km +Gainesville,Daytona Beach,,2 hours 2 mins,158 km +Gainesville,Jacksonville,,1 hour 16 mins,115 km +Gainesville,Tampa,,1 hour 58 mins,209 km +Gainesville,Panama City,,4 hours 2 mins,403 km +Gainesville,Key West,,7 hours 57 mins,795 km +Gainesville,West Palm Beach,,3 hours 59 mins,436 km +Gainesville,Miami,,4 hours 57 mins,541 km +Gainesville,Tallahassee,,2 hours 24 mins,241 km +Gainesville,Punta Gorda,,3 hours 17 mins,363 km +Gainesville,Fort Lauderdale,,4 hours 36 mins,504 km +Gainesville,Pensacola,,4 hours 57 mins,552 km +Orlando,Minneapolis,,22 hours 35 mins,"2,526 km" +Orlando,Sarasota,,2 hours 2 mins,211 km +Orlando,Fort Myers,,2 hours 58 mins,255 km +Orlando,Gainesville,,1 hour 43 mins,179 km +Orlando,Daytona Beach,,55 mins,89.8 km +Orlando,Jacksonville,,2 hours 2 mins,226 km +Orlando,Tampa,,1 hour 18 mins,136 km +Orlando,Panama City,,5 hours 24 mins,574 km +Orlando,Key West,,6 hours 27 mins,632 km +Orlando,West Palm Beach,,2 hours 28 mins,273 km +Orlando,Miami,,3 hours 26 mins,378 km +Orlando,Tallahassee,,3 hours 46 mins,413 km +Orlando,Punta Gorda,,2 hours 31 mins,223 km +Orlando,Fort Lauderdale,,3 hours 6 mins,341 km +Orlando,Pensacola,,6 hours 19 mins,724 km +Daytona Beach,Minneapolis,,22 hours 41 mins,"2,517 km" +Daytona Beach,Sarasota,,2 hours 55 mins,301 km +Daytona Beach,Fort Myers,,3 hours 51 mins,345 km +Daytona Beach,Gainesville,,2 hours 1 min,158 km +Daytona Beach,Orlando,,1 hour 0 mins,91.5 km +Daytona Beach,Jacksonville,,1 hour 28 mins,143 km +Daytona Beach,Tampa,,2 hours 12 mins,225 km +Daytona Beach,Panama City,,5 hours 30 mins,566 km +Daytona Beach,Key West,,6 hours 56 mins,674 km +Daytona Beach,West Palm Beach,,2 hours 56 mins,322 km +Daytona Beach,Miami,,3 hours 56 mins,421 km +Daytona Beach,Tallahassee,,3 hours 52 mins,404 km +Daytona Beach,Punta Gorda,,3 hours 24 mins,312 km +Daytona Beach,Fort Lauderdale,,3 hours 34 mins,390 km +Daytona Beach,Pensacola,,6 hours 25 mins,715 km +Jacksonville,Minneapolis,,21 hours 20 mins,"2,377 km" +Jacksonville,Sarasota,,3 hours 58 mins,406 km +Jacksonville,Fort Myers,,4 hours 55 mins,511 km +Jacksonville,Gainesville,,1 hour 18 mins,116 km +Jacksonville,Orlando,,2 hours 7 mins,227 km +Jacksonville,Daytona Beach,,1 hour 29 mins,153 km +Jacksonville,Tampa,,3 hours 10 mins,322 km +Jacksonville,Panama City,,4 hours 9 mins,426 km +Jacksonville,Key West,,8 hours 3 mins,810 km +Jacksonville,West Palm Beach,,4 hours 2 mins,457 km +Jacksonville,Miami,,5 hours 2 mins,556 km +Jacksonville,Tallahassee,,2 hours 31 mins,265 km +Jacksonville,Punta Gorda,,4 hours 29 mins,476 km +Jacksonville,Fort Lauderdale,,4 hours 40 mins,525 km +Jacksonville,Pensacola,,5 hours 4 mins,575 km +Tampa,Minneapolis,,22 hours 49 mins,"2,555 km" +Tampa,Sarasota,,1 hour 1 min,96.8 km +Tampa,Fort Myers,,1 hour 58 mins,202 km +Tampa,Gainesville,,1 hour 58 mins,209 km +Tampa,Orlando,,1 hour 21 mins,135 km +Tampa,Daytona Beach,,2 hours 10 mins,224 km +Tampa,Jacksonville,,3 hours 7 mins,320 km +Tampa,Panama City,,5 hours 38 mins,604 km +Tampa,Key West,,6 hours 52 mins,684 km +Tampa,West Palm Beach,,3 hours 19 mins,329 km +Tampa,Miami,,4 hours 4 mins,451 km +Tampa,Tallahassee,,4 hours 0 mins,442 km +Tampa,Punta Gorda,,1 hour 33 mins,167 km +Tampa,Fort Lauderdale,,3 hours 46 mins,424 km +Tampa,Pensacola,,6 hours 33 mins,753 km +Panama City,Minneapolis,,20 hours 7 mins,"2,156 km" +Panama City,Sarasota,,6 hours 25 mins,687 km +Panama City,Fort Myers,,7 hours 22 mins,793 km +Panama City,Gainesville,,4 hours 1 min,403 km +Panama City,Orlando,,5 hours 25 mins,575 km +Panama City,Daytona Beach,,5 hours 29 mins,575 km +Panama City,Jacksonville,,4 hours 6 mins,425 km +Panama City,Tampa,,5 hours 37 mins,603 km +Panama City,Key West,,11 hours 37 mins,"1,189 km" +Panama City,West Palm Beach,,7 hours 38 mins,831 km +Panama City,Miami,,8 hours 37 mins,936 km +Panama City,Tallahassee,,1 hour 58 mins,157 km +Panama City,Punta Gorda,,6 hours 57 mins,758 km +Panama City,Fort Lauderdale,,8 hours 16 mins,899 km +Panama City,Pensacola,,2 hours 20 mins,223 km +Key West,Minneapolis,,1 day 5 hours,"3,141 km" +Key West,Sarasota,,6 hours 15 mins,605 km +Key West,Fort Myers,,5 hours 14 mins,486 km +Key West,Gainesville,,7 hours 59 mins,795 km +Key West,Orlando,,6 hours 30 mins,632 km +Key West,Daytona Beach,,6 hours 55 mins,673 km +Key West,Jacksonville,,8 hours 2 mins,810 km +Key West,Tampa,,6 hours 52 mins,685 km +Key West,Panama City,,11 hours 39 mins,"1,190 km" +Key West,West Palm Beach,,4 hours 21 mins,372 km +Key West,Miami,,3 hours 23 mins,264 km +Key West,Tallahassee,,10 hours 1 min,"1,028 km" +Key West,Punta Gorda,,5 hours 31 mins,522 km +Key West,Fort Lauderdale,,3 hours 43 mins,304 km +Key West,Pensacola,,12 hours 34 mins,"1,339 km" +West Palm Beach,Minneapolis,,1 day 1 hour,"2,784 km" +West Palm Beach,Sarasota,,3 hours 21 mins,280 km +West Palm Beach,Fort Myers,,2 hours 33 mins,202 km +West Palm Beach,Gainesville,,3 hours 58 mins,437 km +West Palm Beach,Orlando,,2 hours 30 mins,275 km +West Palm Beach,Daytona Beach,,2 hours 52 mins,321 km +West Palm Beach,Jacksonville,,4 hours 0 mins,457 km +West Palm Beach,Tampa,,3 hours 20 mins,332 km +West Palm Beach,Panama City,,7 hours 39 mins,832 km +West Palm Beach,Key West,,4 hours 20 mins,373 km +West Palm Beach,Miami,,1 hour 15 mins,115 km +West Palm Beach,Tallahassee,,6 hours 0 mins,671 km +West Palm Beach,Punta Gorda,,2 hours 41 mins,228 km +West Palm Beach,Fort Lauderdale,,51 mins,75.2 km +West Palm Beach,Pensacola,,8 hours 34 mins,982 km +Miami,Minneapolis,,1 day 2 hours,"2,889 km" +Miami,Sarasota,,3 hours 25 mins,373 km +Miami,Fort Myers,,2 hours 24 mins,255 km +Miami,Gainesville,,4 hours 55 mins,543 km +Miami,Orlando,,3 hours 27 mins,380 km +Miami,Daytona Beach,,3 hours 52 mins,422 km +Miami,Jacksonville,,4 hours 59 mins,558 km +Miami,Tampa,,4 hours 1 min,454 km +Miami,Panama City,,8 hours 36 mins,938 km +Miami,Key West,,3 hours 22 mins,267 km +Miami,West Palm Beach,,1 hour 13 mins,117 km +Miami,Tallahassee,,6 hours 58 mins,777 km +Miami,Punta Gorda,,2 hours 41 mins,291 km +Miami,Fort Lauderdale,,36 mins,48.5 km +Miami,Pensacola,,9 hours 31 mins,"1,087 km" +Tallahassee,Minneapolis,,20 hours 24 mins,"2,211 km" +Tallahassee,Sarasota,,4 hours 48 mins,529 km +Tallahassee,Fort Myers,,5 hours 46 mins,635 km +Tallahassee,Gainesville,,2 hours 24 mins,245 km +Tallahassee,Orlando,,3 hours 48 mins,417 km +Tallahassee,Daytona Beach,,3 hours 52 mins,417 km +Tallahassee,Jacksonville,,2 hours 29 mins,267 km +Tallahassee,Tampa,,4 hours 1 min,445 km +Tallahassee,Panama City,,1 hour 59 mins,157 km +Tallahassee,Key West,,10 hours 0 mins,"1,031 km" +Tallahassee,West Palm Beach,,6 hours 2 mins,673 km +Tallahassee,Miami,,7 hours 0 mins,778 km +Tallahassee,Punta Gorda,,5 hours 20 mins,599 km +Tallahassee,Fort Lauderdale,,6 hours 39 mins,741 km +Tallahassee,Pensacola,,2 hours 53 mins,316 km +Punta Gorda,Minneapolis,,1 day 0 hours,"2,709 km" +Punta Gorda,Sarasota,,55 mins,87.5 km +Punta Gorda,Fort Myers,,36 mins,38.6 km +Punta Gorda,Gainesville,,3 hours 17 mins,363 km +Punta Gorda,Orlando,,2 hours 33 mins,221 km +Punta Gorda,Daytona Beach,,3 hours 23 mins,309 km +Punta Gorda,Jacksonville,,4 hours 26 mins,474 km +Punta Gorda,Tampa,,1 hour 32 mins,168 km +Punta Gorda,Panama City,,6 hours 58 mins,758 km +Punta Gorda,Key West,,5 hours 30 mins,525 km +Punta Gorda,West Palm Beach,,2 hours 42 mins,228 km +Punta Gorda,Miami,,2 hours 42 mins,292 km +Punta Gorda,Tallahassee,,5 hours 19 mins,597 km +Punta Gorda,Fort Lauderdale,,2 hours 24 mins,265 km +Punta Gorda,Pensacola,,7 hours 53 mins,907 km +Fort Lauderdale,Minneapolis,,1 day 1 hour,"2,852 km" +Fort Lauderdale,Sarasota,,3 hours 9 mins,345 km +Fort Lauderdale,Fort Myers,,2 hours 8 mins,226 km +Fort Lauderdale,Gainesville,,4 hours 36 mins,505 km +Fort Lauderdale,Orlando,,3 hours 8 mins,343 km +Fort Lauderdale,Daytona Beach,,3 hours 31 mins,389 km +Fort Lauderdale,Jacksonville,,4 hours 38 mins,525 km +Fort Lauderdale,Tampa,,3 hours 46 mins,425 km +Fort Lauderdale,Panama City,,8 hours 17 mins,900 km +Fort Lauderdale,Key West,,3 hours 43 mins,305 km +Fort Lauderdale,West Palm Beach,,50 mins,74.2 km +Fort Lauderdale,Miami,,38 mins,46.5 km +Fort Lauderdale,Tallahassee,,6 hours 39 mins,739 km +Fort Lauderdale,Punta Gorda,,2 hours 25 mins,263 km +Fort Lauderdale,Pensacola,,9 hours 12 mins,"1,050 km" +Pensacola,Minneapolis,,19 hours 2 mins,"2,008 km" +Pensacola,Sarasota,,7 hours 20 mins,837 km +Pensacola,Fort Myers,,8 hours 18 mins,942 km +Pensacola,Gainesville,,4 hours 56 mins,552 km +Pensacola,Orlando,,6 hours 21 mins,725 km +Pensacola,Daytona Beach,,6 hours 24 mins,724 km +Pensacola,Jacksonville,,5 hours 1 min,575 km +Pensacola,Tampa,,6 hours 33 mins,752 km +Pensacola,Panama City,,2 hours 20 mins,222 km +Pensacola,Key West,,12 hours 32 mins,"1,339 km" +Pensacola,West Palm Beach,,8 hours 34 mins,980 km +Pensacola,Miami,,9 hours 32 mins,"1,085 km" +Pensacola,Tallahassee,,2 hours 51 mins,316 km +Pensacola,Punta Gorda,,7 hours 52 mins,907 km +Pensacola,Fort Lauderdale,,9 hours 11 mins,"1,048 km" +Newark,San Diego,,1 day 17 hours,"4,426 km" +Newark,Redding,,1 day 18 hours,"4,617 km" +Newark,Sacramento,,1 day 17 hours,"4,515 km" +Newark,Fresno,,1 day 18 hours,"4,674 km" +Newark,San Luis Obispo,,1 day 19 hours,"4,717 km" +Newark,Oakland,,1 day 18 hours,"4,645 km" +Newark,Santa Barbara,,1 day 18 hours,"4,616 km" +Newark,Stockton,,1 day 18 hours,"4,591 km" +Newark,Santa Rosa,,1 day 18 hours,"4,670 km" +Newark,Bakersfield,,1 day 17 hours,"4,498 km" +Newark,Santa Ana,,1 day 17 hours,"4,473 km" +Newark,Santa Maria,,1 day 19 hours,"4,672 km" +Newark,San Jose,,1 day 19 hours,"4,707 km" +Newark,Burbank,,1 day 17 hours,"4,483 km" +Newark,Arcata,,1 day 21 hours,"4,842 km" +Newark,Butte,,1 day 18 hours,"4,554 km" +Newark,Palm Springs,,1 day 16 hours,"4,287 km" +Newark,Los Angeles,,1 day 17 hours,"4,473 km" +Newark,Long Beach,,1 day 17 hours,"4,496 km" +Newark,San Francisco,,1 day 18 hours,"4,654 km" +Newark,Monterey,,1 day 20 hours,"4,815 km" +San Diego,Newark,,1 day 17 hours,"4,424 km" +San Diego,Redding,,10 hours 10 mins,"1,070 km" +San Diego,Sacramento,,7 hours 50 mins,812 km +San Diego,Fresno,,5 hours 22 mins,545 km +San Diego,San Luis Obispo,,4 hours 59 mins,502 km +San Diego,Oakland,,7 hours 38 mins,789 km +San Diego,Santa Barbara,,3 hours 29 mins,351 km +San Diego,Stockton,,7 hours 7 mins,736 km +San Diego,Santa Rosa,,8 hours 30 mins,882 km +San Diego,Bakersfield,,3 hours 48 mins,372 km +San Diego,Santa Ana,,1 hour 26 mins,144 km +San Diego,Santa Maria,,4 hours 35 mins,454 km +San Diego,San Jose,,7 hours 17 mins,740 km +San Diego,Burbank,,2 hours 11 mins,210 km +San Diego,Arcata,,12 hours 15 mins,"1,242 km" +San Diego,Butte,,9 hours 15 mins,944 km +San Diego,Palm Springs,,2 hours 14 mins,205 km +San Diego,Los Angeles,,2 hours 0 mins,194 km +San Diego,Long Beach,,1 hour 47 mins,181 km +San Diego,San Francisco,,7 hours 51 mins,808 km +San Diego,Monterey,,7 hours 6 mins,706 km +Redding,Newark,,1 day 18 hours,"4,625 km" +Redding,San Diego,,10 hours 6 mins,"1,069 km" +Redding,Sacramento,,2 hours 28 mins,260 km +Redding,Fresno,,5 hours 4 mins,533 km +Redding,San Luis Obispo,,6 hours 26 mins,691 km +Redding,Oakland,,3 hours 11 mins,339 km +Redding,Santa Barbara,,8 hours 0 mins,842 km +Redding,Stockton,,3 hours 10 mins,336 km +Redding,Santa Rosa,,3 hours 33 mins,312 km +Redding,Bakersfield,,6 hours 40 mins,705 km +Redding,Santa Ana,,8 hours 50 mins,928 km +Redding,Santa Maria,,6 hours 56 mins,741 km +Redding,San Jose,,3 hours 49 mins,402 km +Redding,Burbank,,8 hours 0 mins,861 km +Redding,Arcata,,2 hours 49 mins,225 km +Redding,Butte,,1 hour 44 mins,157 km +Redding,Palm Springs,,9 hours 45 mins,"1,046 km" +Redding,Los Angeles,,8 hours 14 mins,877 km +Redding,Long Beach,,8 hours 33 mins,913 km +Redding,San Francisco,,3 hours 20 mins,349 km +Redding,Monterey,,4 hours 51 mins,509 km +Sacramento,Newark,,1 day 17 hours,"4,523 km" +Sacramento,San Diego,,7 hours 46 mins,811 km +Sacramento,Redding,,2 hours 28 mins,261 km +Sacramento,Fresno,,2 hours 44 mins,275 km +Sacramento,San Luis Obispo,,4 hours 33 mins,471 km +Sacramento,Oakland,,1 hour 22 mins,131 km +Sacramento,Santa Barbara,,6 hours 7 mins,622 km +Sacramento,Stockton,,50 mins,78.0 km +Sacramento,Santa Rosa,,1 hour 42 mins,157 km +Sacramento,Bakersfield,,4 hours 20 mins,447 km +Sacramento,Santa Ana,,6 hours 30 mins,670 km +Sacramento,Santa Maria,,5 hours 4 mins,522 km +Sacramento,San Jose,,2 hours 0 mins,194 km +Sacramento,Burbank,,5 hours 40 mins,603 km +Sacramento,Arcata,,5 hours 13 mins,477 km +Sacramento,Butte,,1 hour 33 mins,135 km +Sacramento,Palm Springs,,7 hours 25 mins,789 km +Sacramento,Los Angeles,,5 hours 55 mins,619 km +Sacramento,Long Beach,,6 hours 13 mins,655 km +Sacramento,San Francisco,,1 hour 31 mins,141 km +Sacramento,Monterey,,3 hours 1 min,301 km +Fresno,Newark,,1 day 18 hours,"4,675 km" +Fresno,San Diego,,5 hours 20 mins,544 km +Fresno,Redding,,5 hours 4 mins,538 km +Fresno,Sacramento,,2 hours 44 mins,273 km +Fresno,San Luis Obispo,,2 hours 20 mins,221 km +Fresno,Oakland,,2 hours 47 mins,282 km +Fresno,Santa Barbara,,3 hours 54 mins,372 km +Fresno,Stockton,,1 hour 59 mins,202 km +Fresno,Santa Rosa,,3 hours 39 mins,374 km +Fresno,Bakersfield,,1 hour 43 mins,175 km +Fresno,Santa Ana,,4 hours 4 mins,403 km +Fresno,Santa Maria,,2 hours 51 mins,271 km +Fresno,San Jose,,2 hours 35 mins,241 km +Fresno,Burbank,,3 hours 14 mins,336 km +Fresno,Arcata,,7 hours 25 mins,734 km +Fresno,Butte,,4 hours 9 mins,412 km +Fresno,Palm Springs,,4 hours 58 mins,522 km +Fresno,Los Angeles,,3 hours 28 mins,352 km +Fresno,Long Beach,,3 hours 47 mins,388 km +Fresno,San Francisco,,3 hours 0 mins,300 km +Fresno,Monterey,,2 hours 42 mins,249 km +San Luis Obispo,Newark,,1 day 19 hours,"4,720 km" +San Luis Obispo,San Diego,,5 hours 0 mins,503 km +San Luis Obispo,Redding,,6 hours 22 mins,690 km +San Luis Obispo,Sacramento,,4 hours 32 mins,466 km +San Luis Obispo,Fresno,,2 hours 20 mins,221 km +San Luis Obispo,Oakland,,3 hours 26 mins,360 km +San Luis Obispo,Santa Barbara,,1 hour 37 mins,152 km +San Luis Obispo,Stockton,,3 hours 50 mins,390 km +San Luis Obispo,Santa Rosa,,4 hours 20 mins,454 km +San Luis Obispo,Bakersfield,,2 hours 14 mins,219 km +San Luis Obispo,Santa Ana,,3 hours 50 mins,359 km +San Luis Obispo,Santa Maria,,34 mins,51.3 km +San Luis Obispo,San Jose,,2 hours 50 mins,297 km +San Luis Obispo,Burbank,,3 hours 7 mins,311 km +San Luis Obispo,Arcata,,8 hours 5 mins,814 km +San Luis Obispo,Butte,,5 hours 55 mins,609 km +San Luis Obispo,Palm Springs,,4 hours 45 mins,478 km +San Luis Obispo,Los Angeles,,3 hours 14 mins,304 km +San Luis Obispo,Long Beach,,3 hours 29 mins,337 km +San Luis Obispo,San Francisco,,3 hours 34 mins,372 km +San Luis Obispo,Monterey,,2 hours 19 mins,227 km +Oakland,Newark,,1 day 18 hours,"4,652 km" +Oakland,San Diego,,7 hours 34 mins,789 km +Oakland,Redding,,3 hours 11 mins,340 km +Oakland,Sacramento,,1 hour 21 mins,132 km +Oakland,Fresno,,2 hours 50 mins,281 km +Oakland,San Luis Obispo,,3 hours 29 mins,360 km +Oakland,Santa Barbara,,5 hours 3 mins,511 km +Oakland,Stockton,,1 hour 14 mins,115 km +Oakland,Santa Rosa,,1 hour 0 mins,94.0 km +Oakland,Bakersfield,,4 hours 11 mins,438 km +Oakland,Santa Ana,,6 hours 19 mins,647 km +Oakland,Santa Maria,,4 hours 0 mins,411 km +Oakland,San Jose,,51 mins,65.2 km +Oakland,Burbank,,5 hours 29 mins,581 km +Oakland,Arcata,,4 hours 45 mins,454 km +Oakland,Butte,,2 hours 44 mins,260 km +Oakland,Palm Springs,,7 hours 13 mins,766 km +Oakland,Los Angeles,,5 hours 43 mins,597 km +Oakland,Long Beach,,6 hours 2 mins,633 km +Oakland,San Francisco,,21 mins,19.9 km +Oakland,Monterey,,1 hour 54 mins,179 km +Santa Barbara,Newark,,1 day 18 hours,"4,617 km" +Santa Barbara,San Diego,,3 hours 29 mins,352 km +Santa Barbara,Redding,,7 hours 56 mins,843 km +Santa Barbara,Sacramento,,6 hours 6 mins,618 km +Santa Barbara,Fresno,,3 hours 53 mins,374 km +Santa Barbara,San Luis Obispo,,1 hour 37 mins,153 km +Santa Barbara,Oakland,,4 hours 59 mins,512 km +Santa Barbara,Stockton,,5 hours 23 mins,543 km +Santa Barbara,Santa Rosa,,5 hours 54 mins,607 km +Santa Barbara,Bakersfield,,2 hours 28 mins,236 km +Santa Barbara,Santa Ana,,2 hours 19 mins,207 km +Santa Barbara,Santa Maria,,1 hour 13 mins,104 km +Santa Barbara,San Jose,,4 hours 24 mins,450 km +Santa Barbara,Burbank,,1 hour 35 mins,159 km +Santa Barbara,Arcata,,9 hours 39 mins,967 km +Santa Barbara,Butte,,7 hours 28 mins,762 km +Santa Barbara,Palm Springs,,3 hours 14 mins,327 km +Santa Barbara,Los Angeles,,1 hour 42 mins,152 km +Santa Barbara,Long Beach,,1 hour 58 mins,185 km +Santa Barbara,San Francisco,,5 hours 8 mins,525 km +Santa Barbara,Monterey,,3 hours 53 mins,380 km +Stockton,Newark,,1 day 18 hours,"4,599 km" +Stockton,San Diego,,7 hours 2 mins,736 km +Stockton,Redding,,3 hours 10 mins,338 km +Stockton,Sacramento,,50 mins,79.1 km +Stockton,Fresno,,2 hours 2 mins,202 km +Stockton,San Luis Obispo,,3 hours 50 mins,396 km +Stockton,Oakland,,1 hour 12 mins,115 km +Stockton,Santa Barbara,,5 hours 23 mins,547 km +Stockton,Santa Rosa,,2 hours 3 mins,178 km +Stockton,Bakersfield,,3 hours 38 mins,375 km +Stockton,Santa Ana,,5 hours 46 mins,594 km +Stockton,Santa Maria,,4 hours 20 mins,446 km +Stockton,San Jose,,1 hour 21 mins,130 km +Stockton,Burbank,,4 hours 56 mins,528 km +Stockton,Arcata,,5 hours 49 mins,538 km +Stockton,Butte,,2 hours 15 mins,212 km +Stockton,Palm Springs,,6 hours 41 mins,713 km +Stockton,Los Angeles,,5 hours 11 mins,544 km +Stockton,Long Beach,,5 hours 30 mins,580 km +Stockton,San Francisco,,1 hour 25 mins,134 km +Stockton,Monterey,,2 hours 23 mins,237 km +Santa Rosa,Newark,,1 day 18 hours,"4,678 km" +Santa Rosa,San Diego,,8 hours 27 mins,882 km +Santa Rosa,Redding,,3 hours 32 mins,313 km +Santa Rosa,Sacramento,,1 hour 42 mins,157 km +Santa Rosa,Fresno,,3 hours 42 mins,374 km +Santa Rosa,San Luis Obispo,,4 hours 24 mins,454 km +Santa Rosa,Oakland,,1 hour 1 min,94.2 km +Santa Rosa,Santa Barbara,,5 hours 57 mins,605 km +Santa Rosa,Stockton,,2 hours 2 mins,175 km +Santa Rosa,Bakersfield,,5 hours 4 mins,530 km +Santa Rosa,Santa Ana,,7 hours 11 mins,740 km +Santa Rosa,Santa Maria,,4 hours 54 mins,505 km +Santa Rosa,San Jose,,1 hour 45 mins,159 km +Santa Rosa,Burbank,,6 hours 21 mins,673 km +Santa Rosa,Arcata,,3 hours 50 mins,361 km +Santa Rosa,Butte,,3 hours 5 mins,285 km +Santa Rosa,Palm Springs,,8 hours 6 mins,859 km +Santa Rosa,Los Angeles,,6 hours 36 mins,690 km +Santa Rosa,Long Beach,,6 hours 54 mins,726 km +Santa Rosa,San Francisco,,1 hour 7 mins,88.0 km +Santa Rosa,Monterey,,2 hours 48 mins,273 km +Bakersfield,Newark,,1 day 17 hours,"4,500 km" +Bakersfield,San Diego,,3 hours 46 mins,373 km +Bakersfield,Redding,,6 hours 40 mins,711 km +Bakersfield,Sacramento,,4 hours 19 mins,446 km +Bakersfield,Fresno,,1 hour 43 mins,176 km +Bakersfield,San Luis Obispo,,2 hours 15 mins,219 km +Bakersfield,Oakland,,4 hours 10 mins,437 km +Bakersfield,Santa Barbara,,2 hours 28 mins,237 km +Bakersfield,Stockton,,3 hours 34 mins,375 km +Bakersfield,Santa Rosa,,5 hours 2 mins,530 km +Bakersfield,Santa Ana,,2 hours 30 mins,232 km +Bakersfield,Santa Maria,,2 hours 12 mins,195 km +Bakersfield,San Jose,,3 hours 49 mins,388 km +Bakersfield,Burbank,,1 hour 40 mins,165 km +Bakersfield,Arcata,,8 hours 48 mins,890 km +Bakersfield,Butte,,5 hours 44 mins,585 km +Bakersfield,Palm Springs,,3 hours 25 mins,350 km +Bakersfield,Los Angeles,,1 hour 55 mins,181 km +Bakersfield,Long Beach,,2 hours 13 mins,217 km +Bakersfield,San Francisco,,4 hours 23 mins,456 km +Bakersfield,Monterey,,3 hours 38 mins,354 km +Santa Ana,Newark,,1 day 16 hours,"4,471 km" +Santa Ana,San Diego,,1 hour 25 mins,143 km +Santa Ana,Redding,,8 hours 53 mins,928 km +Santa Ana,Sacramento,,6 hours 33 mins,670 km +Santa Ana,Fresno,,4 hours 5 mins,403 km +Santa Ana,San Luis Obispo,,3 hours 49 mins,355 km +Santa Ana,Oakland,,6 hours 21 mins,647 km +Santa Ana,Santa Barbara,,2 hours 18 mins,204 km +Santa Ana,Stockton,,5 hours 50 mins,594 km +Santa Ana,Santa Rosa,,7 hours 13 mins,740 km +Santa Ana,Bakersfield,,2 hours 31 mins,231 km +Santa Ana,Santa Maria,,3 hours 25 mins,306 km +Santa Ana,San Jose,,5 hours 59 mins,598 km +Santa Ana,Burbank,,54 mins,67.8 km +Santa Ana,Arcata,,10 hours 58 mins,"1,100 km" +Santa Ana,Butte,,7 hours 58 mins,802 km +Santa Ana,Palm Springs,,1 hour 38 mins,156 km +Santa Ana,Los Angeles,,43 mins,52.2 km +Santa Ana,Long Beach,,34 mins,45.3 km +Santa Ana,San Francisco,,6 hours 34 mins,666 km +Santa Ana,Monterey,,5 hours 49 mins,564 km +Santa Maria,Newark,,1 day 19 hours,"4,676 km" +Santa Maria,San Diego,,4 hours 33 mins,453 km +Santa Maria,Redding,,6 hours 52 mins,742 km +Santa Maria,Sacramento,,5 hours 2 mins,518 km +Santa Maria,Fresno,,2 hours 50 mins,274 km +Santa Maria,San Luis Obispo,,34 mins,52.8 km +Santa Maria,Oakland,,3 hours 56 mins,412 km +Santa Maria,Santa Barbara,,1 hour 11 mins,102 km +Santa Maria,Stockton,,4 hours 20 mins,442 km +Santa Maria,Santa Rosa,,4 hours 50 mins,506 km +Santa Maria,Bakersfield,,2 hours 14 mins,198 km +Santa Maria,Santa Ana,,3 hours 23 mins,309 km +Santa Maria,San Jose,,3 hours 20 mins,349 km +Santa Maria,Burbank,,2 hours 40 mins,261 km +Santa Maria,Arcata,,8 hours 35 mins,866 km +Santa Maria,Butte,,6 hours 25 mins,662 km +Santa Maria,Palm Springs,,4 hours 19 mins,428 km +Santa Maria,Los Angeles,,2 hours 47 mins,254 km +Santa Maria,Long Beach,,3 hours 3 mins,287 km +Santa Maria,San Francisco,,4 hours 4 mins,425 km +Santa Maria,Monterey,,2 hours 49 mins,280 km +San Jose,Newark,,1 day 19 hours,"4,714 km" +San Jose,San Diego,,7 hours 12 mins,739 km +San Jose,Redding,,3 hours 46 mins,401 km +San Jose,Sacramento,,1 hour 56 mins,193 km +San Jose,Fresno,,2 hours 34 mins,240 km +San Jose,San Luis Obispo,,2 hours 50 mins,297 km +San Jose,Oakland,,49 mins,65.2 km +San Jose,Santa Barbara,,4 hours 24 mins,448 km +San Jose,Stockton,,1 hour 21 mins,129 km +San Jose,Santa Rosa,,1 hour 43 mins,159 km +San Jose,Bakersfield,,3 hours 49 mins,387 km +San Jose,Santa Ana,,5 hours 56 mins,597 km +San Jose,Santa Maria,,3 hours 21 mins,347 km +San Jose,Burbank,,5 hours 6 mins,531 km +San Jose,Arcata,,5 hours 28 mins,520 km +San Jose,Butte,,3 hours 19 mins,321 km +San Jose,Palm Springs,,6 hours 51 mins,716 km +San Jose,Los Angeles,,5 hours 21 mins,547 km +San Jose,Long Beach,,5 hours 40 mins,583 km +San Jose,San Francisco,,56 mins,78.0 km +San Jose,Monterey,,1 hour 15 mins,115 km +Burbank,Newark,,1 day 16 hours,"4,478 km" +Burbank,San Diego,,2 hours 11 mins,210 km +Burbank,Redding,,8 hours 2 mins,861 km +Burbank,Sacramento,,5 hours 42 mins,602 km +Burbank,Fresno,,3 hours 14 mins,336 km +Burbank,San Luis Obispo,,3 hours 4 mins,294 km +Burbank,Oakland,,5 hours 30 mins,580 km +Burbank,Santa Barbara,,1 hour 33 mins,143 km +Burbank,Stockton,,4 hours 59 mins,527 km +Burbank,Santa Rosa,,6 hours 22 mins,673 km +Burbank,Bakersfield,,1 hour 40 mins,163 km +Burbank,Santa Ana,,55 mins,68.3 km +Burbank,Santa Maria,,2 hours 40 mins,245 km +Burbank,San Jose,,5 hours 8 mins,531 km +Burbank,Arcata,,10 hours 7 mins,"1,033 km" +Burbank,Butte,,7 hours 7 mins,735 km +Burbank,Palm Springs,,1 hour 50 mins,188 km +Burbank,Los Angeles,,20 mins,18.0 km +Burbank,Long Beach,,43 mins,55.1 km +Burbank,San Francisco,,5 hours 43 mins,599 km +Burbank,Monterey,,4 hours 57 mins,497 km +Arcata,Newark,,1 day 21 hours,"4,849 km" +Arcata,San Diego,,12 hours 12 mins,"1,243 km" +Arcata,Redding,,2 hours 46 mins,223 km +Arcata,Sacramento,,5 hours 14 mins,483 km +Arcata,Fresno,,7 hours 28 mins,736 km +Arcata,San Luis Obispo,,8 hours 10 mins,816 km +Arcata,Oakland,,4 hours 47 mins,456 km +Arcata,Santa Barbara,,9 hours 43 mins,967 km +Arcata,Stockton,,5 hours 47 mins,536 km +Arcata,Santa Rosa,,3 hours 51 mins,362 km +Arcata,Bakersfield,,8 hours 50 mins,892 km +Arcata,Santa Ana,,10 hours 57 mins,"1,102 km" +Arcata,Santa Maria,,8 hours 40 mins,866 km +Arcata,San Jose,,5 hours 31 mins,521 km +Arcata,Burbank,,10 hours 7 mins,"1,035 km" +Arcata,Butte,,4 hours 30 mins,380 km +Arcata,Palm Springs,,11 hours 51 mins,"1,221 km" +Arcata,Los Angeles,,10 hours 21 mins,"1,051 km" +Arcata,Long Beach,,10 hours 40 mins,"1,087 km" +Arcata,San Francisco,,4 hours 53 mins,450 km +Arcata,Monterey,,6 hours 34 mins,635 km +Butte,Newark,,1 day 17 hours,"4,562 km" +Butte,San Diego,,9 hours 12 mins,944 km +Butte,Redding,,1 hour 43 mins,151 km +Butte,Sacramento,,1 hour 34 mins,135 km +Butte,Fresno,,4 hours 10 mins,408 km +Butte,San Luis Obispo,,5 hours 59 mins,604 km +Butte,Oakland,,2 hours 45 mins,259 km +Butte,Santa Barbara,,7 hours 32 mins,755 km +Butte,Stockton,,2 hours 16 mins,211 km +Butte,Santa Rosa,,3 hours 4 mins,285 km +Butte,Bakersfield,,5 hours 46 mins,580 km +Butte,Santa Ana,,7 hours 56 mins,803 km +Butte,Santa Maria,,6 hours 29 mins,655 km +Butte,San Jose,,3 hours 23 mins,322 km +Butte,Burbank,,7 hours 6 mins,736 km +Butte,Arcata,,4 hours 30 mins,376 km +Butte,Palm Springs,,8 hours 51 mins,921 km +Butte,Los Angeles,,7 hours 20 mins,752 km +Butte,Long Beach,,7 hours 39 mins,788 km +Butte,San Francisco,,2 hours 54 mins,269 km +Butte,Monterey,,4 hours 24 mins,429 km +Palm Springs,Newark,,1 day 16 hours,"4,286 km" +Palm Springs,San Diego,,2 hours 11 mins,224 km +Palm Springs,Redding,,9 hours 49 mins,"1,047 km" +Palm Springs,Sacramento,,7 hours 28 mins,788 km +Palm Springs,Fresno,,5 hours 1 min,522 km +Palm Springs,San Luis Obispo,,4 hours 44 mins,478 km +Palm Springs,Oakland,,7 hours 16 mins,766 km +Palm Springs,Santa Barbara,,3 hours 14 mins,326 km +Palm Springs,Stockton,,6 hours 46 mins,713 km +Palm Springs,Santa Rosa,,8 hours 8 mins,859 km +Palm Springs,Bakersfield,,3 hours 27 mins,349 km +Palm Springs,Santa Ana,,1 hour 39 mins,157 km +Palm Springs,Santa Maria,,4 hours 21 mins,429 km +Palm Springs,San Jose,,6 hours 55 mins,717 km +Palm Springs,Burbank,,1 hour 55 mins,193 km +Palm Springs,Arcata,,11 hours 54 mins,"1,219 km" +Palm Springs,Butte,,8 hours 54 mins,921 km +Palm Springs,Los Angeles,,1 hour 46 mins,172 km +Palm Springs,Long Beach,,1 hour 57 mins,190 km +Palm Springs,San Francisco,,7 hours 29 mins,785 km +Palm Springs,Monterey,,6 hours 44 mins,683 km +Los Angeles,Newark,,1 day 16 hours,"4,474 km" +Los Angeles,San Diego,,1 hour 57 mins,193 km +Los Angeles,Redding,,8 hours 15 mins,877 km +Los Angeles,Sacramento,,5 hours 54 mins,618 km +Los Angeles,Fresno,,3 hours 27 mins,352 km +Los Angeles,San Luis Obispo,,3 hours 8 mins,304 km +Los Angeles,Oakland,,5 hours 43 mins,596 km +Los Angeles,Santa Barbara,,1 hour 38 mins,153 km +Los Angeles,Stockton,,5 hours 12 mins,542 km +Los Angeles,Santa Rosa,,6 hours 35 mins,688 km +Los Angeles,Bakersfield,,1 hour 53 mins,179 km +Los Angeles,Santa Ana,,41 mins,51.8 km +Los Angeles,Santa Maria,,2 hours 44 mins,255 km +Los Angeles,San Jose,,5 hours 21 mins,546 km +Los Angeles,Burbank,,18 mins,17.7 km +Los Angeles,Arcata,,10 hours 20 mins,"1,049 km" +Los Angeles,Butte,,7 hours 20 mins,751 km +Los Angeles,Palm Springs,,1 hour 43 mins,171 km +Los Angeles,Long Beach,,28 mins,38.5 km +Los Angeles,San Francisco,,5 hours 56 mins,614 km +Los Angeles,Monterey,,5 hours 10 mins,512 km +Long Beach,Newark,,1 day 17 hours,"4,501 km" +Long Beach,San Diego,,1 hour 45 mins,181 km +Long Beach,Redding,,8 hours 38 mins,914 km +Long Beach,Sacramento,,6 hours 17 mins,656 km +Long Beach,Fresno,,3 hours 50 mins,390 km +Long Beach,San Luis Obispo,,3 hours 28 mins,336 km +Long Beach,Oakland,,6 hours 5 mins,634 km +Long Beach,Santa Barbara,,1 hour 57 mins,185 km +Long Beach,Stockton,,5 hours 35 mins,580 km +Long Beach,Santa Rosa,,6 hours 58 mins,726 km +Long Beach,Bakersfield,,2 hours 16 mins,217 km +Long Beach,Santa Ana,,34 mins,44.4 km +Long Beach,Santa Maria,,3 hours 4 mins,288 km +Long Beach,San Jose,,5 hours 44 mins,584 km +Long Beach,Burbank,,43 mins,54.5 km +Long Beach,Arcata,,10 hours 43 mins,"1,086 km" +Long Beach,Butte,,7 hours 43 mins,789 km +Long Beach,Palm Springs,,1 hour 55 mins,190 km +Long Beach,Los Angeles,,32 mins,38.8 km +Long Beach,San Francisco,,6 hours 18 mins,652 km +Long Beach,Monterey,,5 hours 33 mins,550 km +San Francisco,Newark,,1 day 18 hours,"4,662 km" +San Francisco,San Diego,,7 hours 44 mins,807 km +San Francisco,Redding,,3 hours 18 mins,350 km +San Francisco,Sacramento,,1 hour 28 mins,141 km +San Francisco,Fresno,,3 hours 0 mins,300 km +San Francisco,San Luis Obispo,,3 hours 34 mins,372 km +San Francisco,Oakland,,18 mins,19.8 km +San Francisco,Santa Barbara,,5 hours 7 mins,523 km +San Francisco,Stockton,,1 hour 24 mins,134 km +San Francisco,Santa Rosa,,1 hour 7 mins,88.3 km +San Francisco,Bakersfield,,4 hours 21 mins,456 km +San Francisco,Santa Ana,,6 hours 29 mins,666 km +San Francisco,Santa Maria,,4 hours 4 mins,423 km +San Francisco,San Jose,,54 mins,77.9 km +San Francisco,Burbank,,5 hours 39 mins,599 km +San Francisco,Arcata,,4 hours 52 mins,448 km +San Francisco,Butte,,2 hours 51 mins,270 km +San Francisco,Palm Springs,,7 hours 23 mins,785 km +San Francisco,Los Angeles,,5 hours 53 mins,615 km +San Francisco,Long Beach,,6 hours 12 mins,651 km +San Francisco,Monterey,,1 hour 58 mins,191 km +Monterey,Newark,,1 day 20 hours,"4,820 km" +Monterey,San Diego,,7 hours 2 mins,705 km +Monterey,Redding,,4 hours 47 mins,508 km +Monterey,Sacramento,,2 hours 57 mins,300 km +Monterey,Fresno,,2 hours 41 mins,247 km +Monterey,San Luis Obispo,,2 hours 20 mins,227 km +Monterey,Oakland,,1 hour 51 mins,178 km +Monterey,Santa Barbara,,3 hours 53 mins,378 km +Monterey,Stockton,,2 hours 22 mins,236 km +Monterey,Santa Rosa,,2 hours 46 mins,272 km +Monterey,Bakersfield,,3 hours 39 mins,354 km +Monterey,Santa Ana,,5 hours 46 mins,564 km +Monterey,Santa Maria,,2 hours 50 mins,278 km +Monterey,San Jose,,1 hour 16 mins,115 km +Monterey,Burbank,,4 hours 56 mins,497 km +Monterey,Arcata,,6 hours 31 mins,633 km +Monterey,Butte,,4 hours 20 mins,428 km +Monterey,Palm Springs,,6 hours 41 mins,683 km +Monterey,Los Angeles,,5 hours 11 mins,513 km +Monterey,Long Beach,,5 hours 29 mins,549 km +Monterey,San Francisco,,2 hours 0 mins,191 km +Boston,Washington,,7 hours 12 mins,709 km +Washington,Boston,,7 hours 12 mins,704 km +Gunnison,Abilene,,11 hours 23 mins,"1,163 km" +Gunnison,Amarillo,,7 hours 15 mins,716 km +Gunnison,Harlingen,,18 hours 18 mins,"1,927 km" +Gunnison,Lubbock,,8 hours 58 mins,899 km +Gunnison,College Station,,14 hours 54 mins,"1,539 km" +Gunnison,Corpus Christi,,16 hours 40 mins,"1,752 km" +Gunnison,Wichita Falls,,10 hours 40 mins,"1,076 km" +Gunnison,Waco,,13 hours 36 mins,"1,404 km" +Gunnison,San Angelo,,11 hours 46 mins,"1,194 km" +Gunnison,Houston,,16 hours 2 mins,"1,679 km" +Gunnison,San Antonio,,14 hours 42 mins,"1,520 km" +Gunnison,Del Rio,,14 hours 13 mins,"1,380 km" +Gunnison,Mission,,, +Gunnison,Beaumont,,, +Gunnison,Longview,,14 hours 33 mins,"1,503 km" +Gunnison,Midland,,10 hours 42 mins,"1,056 km" +Gunnison,El Paso,,9 hours 13 mins,943 km +Gunnison,Brownsville,,18 hours 39 mins,"1,967 km" +Gunnison,Austin,,14 hours 49 mins,"1,501 km" +Gunnison,Dallas,,12 hours 42 mins,"1,303 km" +Gunnison,Killeen,,14 hours 10 mins,"1,436 km" +Gunnison,Laredo,,16 hours 49 mins,"1,709 km" +Gunnison,Texarkana,,15 hours 0 mins,"1,512 km" +Abilene,Gunnison,,11 hours 26 mins,"1,148 km" +Amarillo,Gunnison,,7 hours 18 mins,716 km +Harlingen,Gunnison,,18 hours 16 mins,"1,912 km" +Lubbock,Gunnison,,9 hours 3 mins,899 km +College Station,Gunnison,,14 hours 56 mins,"1,537 km" +Corpus Christi,Gunnison,,16 hours 40 mins,"1,736 km" +Wichita Falls,Gunnison,,10 hours 43 mins,"1,074 km" +Waco,Gunnison,,13 hours 39 mins,"1,399 km" +San Angelo,Gunnison,,11 hours 50 mins,"1,212 km" +Houston,Gunnison,,16 hours 5 mins,"1,677 km" +San Antonio,Gunnison,,14 hours 43 mins,"1,504 km" +Del Rio,Gunnison,,14 hours 15 mins,"1,370 km" +Mission,Gunnison,,, +Beaumont,Gunnison,,, +Longview,Gunnison,,14 hours 35 mins,"1,507 km" +Midland,Gunnison,,10 hours 44 mins,"1,055 km" +El Paso,Gunnison,,9 hours 16 mins,945 km +Brownsville,Gunnison,,18 hours 40 mins,"1,952 km" +Austin,Gunnison,,14 hours 52 mins,"1,485 km" +Dallas,Gunnison,,12 hours 45 mins,"1,300 km" +Killeen,Gunnison,,14 hours 14 mins,"1,421 km" +Laredo,Gunnison,,16 hours 53 mins,"1,694 km" +Texarkana,Gunnison,,15 hours 12 mins,"1,523 km" +Punta Gorda,Nashville,,11 hours 29 mins,"1,289 km" +Punta Gorda,Bristol,,, +Punta Gorda,Knoxville,,10 hours 50 mins,"1,231 km" +Punta Gorda,Chattanooga,,9 hours 29 mins,"1,077 km" +Punta Gorda,Memphis,,13 hours 21 mins,"1,517 km" +Nashville,Punta Gorda,,11 hours 30 mins,"1,287 km" +Nashville,Bristol,,, +Nashville,Knoxville,,2 hours 42 mins,290 km +Nashville,Chattanooga,,2 hours 4 mins,214 km +Nashville,Memphis,,3 hours 10 mins,341 km +Bristol,Punta Gorda,,, +Bristol,Nashville,,, +Bristol,Knoxville,,, +Bristol,Chattanooga,,, +Bristol,Memphis,,, +Knoxville,Punta Gorda,,10 hours 53 mins,"1,231 km" +Knoxville,Nashville,,2 hours 42 mins,290 km +Knoxville,Bristol,,, +Knoxville,Chattanooga,,1 hour 41 mins,180 km +Knoxville,Memphis,,5 hours 44 mins,629 km +Chattanooga,Punta Gorda,,9 hours 32 mins,"1,078 km" +Chattanooga,Nashville,,2 hours 6 mins,216 km +Chattanooga,Bristol,,, +Chattanooga,Knoxville,,1 hour 42 mins,181 km +Chattanooga,Memphis,,5 hours 0 mins,547 km +Memphis,Punta Gorda,,13 hours 23 mins,"1,504 km" +Memphis,Nashville,,3 hours 11 mins,341 km +Memphis,Bristol,,, +Memphis,Knoxville,,5 hours 45 mins,629 km +Memphis,Chattanooga,,4 hours 58 mins,542 km +Houston,Tucson,,15 hours 14 mins,"1,715 km" +Tucson,Houston,,15 hours 16 mins,"1,717 km" +Palm Springs,Abilene,,16 hours 41 mins,"1,850 km" +Palm Springs,Amarillo,,14 hours 28 mins,"1,562 km" +Palm Springs,Harlingen,,21 hours 34 mins,"2,416 km" +Palm Springs,Lubbock,,15 hours 22 mins,"1,615 km" +Palm Springs,College Station,,20 hours 19 mins,"2,209 km" +Palm Springs,Corpus Christi,,19 hours 56 mins,"2,241 km" +Palm Springs,Wichita Falls,,17 hours 45 mins,"1,916 km" +Palm Springs,Waco,,19 hours 20 mins,"2,111 km" +Palm Springs,San Angelo,,16 hours 5 mins,"1,772 km" +Palm Springs,Houston,,20 hours 47 mins,"2,323 km" +Palm Springs,San Antonio,,17 hours 58 mins,"2,008 km" +Palm Springs,Del Rio,,16 hours 33 mins,"1,805 km" +Palm Springs,Mission,,, +Palm Springs,Beaumont,,, +Palm Springs,Longview,,21 hours 2 mins,"2,349 km" +Palm Springs,Midland,,14 hours 36 mins,"1,613 km" +Palm Springs,El Paso,,10 hours 13 mins,"1,122 km" +Palm Springs,Brownsville,,21 hours 56 mins,"2,456 km" +Palm Springs,Austin,,18 hours 48 mins,"2,048 km" +Palm Springs,Dallas,,19 hours 15 mins,"2,144 km" +Palm Springs,Killeen,,18 hours 37 mins,"2,042 km" +Palm Springs,Laredo,,19 hours 28 mins,"2,094 km" +Palm Springs,Texarkana,,21 hours 51 mins,"2,429 km" +Abilene,Palm Springs,,16 hours 41 mins,"1,851 km" +Amarillo,Palm Springs,,14 hours 30 mins,"1,562 km" +Harlingen,Palm Springs,,21 hours 29 mins,"2,418 km" +Lubbock,Palm Springs,,15 hours 24 mins,"1,616 km" +College Station,Palm Springs,,20 hours 18 mins,"2,217 km" +Corpus Christi,Palm Springs,,19 hours 53 mins,"2,242 km" +Wichita Falls,Palm Springs,,17 hours 48 mins,"1,917 km" +Waco,Palm Springs,,19 hours 20 mins,"2,112 km" +San Angelo,Palm Springs,,16 hours 3 mins,"1,772 km" +Houston,Palm Springs,,20 hours 45 mins,"2,324 km" +San Antonio,Palm Springs,,17 hours 57 mins,"2,010 km" +Del Rio,Palm Springs,,16 hours 32 mins,"1,806 km" +Mission,Palm Springs,,, +Beaumont,Palm Springs,,, +Longview,Palm Springs,,21 hours 3 mins,"2,349 km" +Midland,Palm Springs,,14 hours 34 mins,"1,614 km" +El Paso,Palm Springs,,10 hours 13 mins,"1,124 km" +Brownsville,Palm Springs,,21 hours 53 mins,"2,458 km" +Austin,Palm Springs,,18 hours 46 mins,"2,050 km" +Dallas,Palm Springs,,19 hours 15 mins,"2,144 km" +Killeen,Palm Springs,,18 hours 36 mins,"2,043 km" +Laredo,Palm Springs,,19 hours 28 mins,"2,096 km" +Texarkana,Palm Springs,,21 hours 53 mins,"2,432 km" +Raleigh,Buffalo,,10 hours 42 mins,"1,049 km" +Raleigh,Manhattan,,7 hours 56 mins,818 km +Raleigh,Niagara Falls,,11 hours 3 mins,"1,080 km" +Raleigh,Islip,,8 hours 36 mins,888 km +Raleigh,New York,,7 hours 47 mins,812 km +Raleigh,Watertown,,10 hours 49 mins,"1,147 km" +Raleigh,Newburgh,,8 hours 37 mins,903 km +Raleigh,Syracuse,,9 hours 46 mins,"1,035 km" +Raleigh,Plattsburgh,,12 hours 3 mins,"1,292 km" +Raleigh,Ogdensburg,,11 hours 48 mins,"1,240 km" +Raleigh,Ithaca,,9 hours 31 mins,974 km +Raleigh,Elmira,,8 hours 54 mins,901 km +Raleigh,White Plains,,8 hours 14 mins,862 km +Raleigh,Albany,,, +Raleigh,Binghamton,,8 hours 46 mins,923 km +Raleigh,Rochester,,10 hours 10 mins,"1,063 km" +Buffalo,Raleigh,,10 hours 49 mins,"1,049 km" +Buffalo,Manhattan,,6 hours 17 mins,613 km +Buffalo,Niagara Falls,,26 mins,31.9 km +Buffalo,Islip,,7 hours 4 mins,684 km +Buffalo,New York,,6 hours 14 mins,600 km +Buffalo,Watertown,,3 hours 15 mins,347 km +Buffalo,Newburgh,,5 hours 27 mins,542 km +Buffalo,Syracuse,,2 hours 19 mins,245 km +Buffalo,Plattsburgh,,6 hours 8 mins,605 km +Buffalo,Ogdensburg,,4 hours 14 mins,440 km +Buffalo,Ithaca,,2 hours 39 mins,250 km +Buffalo,Elmira,,2 hours 31 mins,232 km +Buffalo,White Plains,,5 hours 57 mins,600 km +Buffalo,Albany,,, +Buffalo,Binghamton,,3 hours 19 mins,320 km +Buffalo,Rochester,,1 hour 13 mins,123 km +Manhattan,Raleigh,,7 hours 58 mins,825 km +Manhattan,Buffalo,,6 hours 12 mins,610 km +Manhattan,Niagara Falls,,6 hours 27 mins,666 km +Manhattan,Islip,,1 hour 13 mins,89.2 km +Manhattan,New York,,27 mins,13.6 km +Manhattan,Watertown,,5 hours 5 mins,519 km +Manhattan,Newburgh,,1 hour 16 mins,99.0 km +Manhattan,Syracuse,,4 hours 2 mins,407 km +Manhattan,Plattsburgh,,4 hours 42 mins,491 km +Manhattan,Ogdensburg,,6 hours 4 mins,612 km +Manhattan,Ithaca,,3 hours 56 mins,368 km +Manhattan,Elmira,,3 hours 50 mins,382 km +Manhattan,White Plains,,40 mins,44.8 km +Manhattan,Albany,,, +Manhattan,Binghamton,,3 hours 2 mins,295 km +Manhattan,Rochester,,5 hours 19 mins,545 km +Niagara Falls,Raleigh,,11 hours 11 mins,"1,079 km" +Niagara Falls,Buffalo,,26 mins,31.6 km +Niagara Falls,Manhattan,,6 hours 32 mins,670 km +Niagara Falls,Islip,,7 hours 19 mins,741 km +Niagara Falls,New York,,6 hours 29 mins,657 km +Niagara Falls,Watertown,,3 hours 28 mins,363 km +Niagara Falls,Newburgh,,5 hours 42 mins,599 km +Niagara Falls,Syracuse,,2 hours 31 mins,260 km +Niagara Falls,Plattsburgh,,6 hours 20 mins,621 km +Niagara Falls,Ogdensburg,,4 hours 26 mins,456 km +Niagara Falls,Ithaca,,2 hours 51 mins,265 km +Niagara Falls,Elmira,,2 hours 52 mins,269 km +Niagara Falls,White Plains,,6 hours 12 mins,657 km +Niagara Falls,Albany,,, +Niagara Falls,Binghamton,,3 hours 36 mins,378 km +Niagara Falls,Rochester,,1 hour 26 mins,139 km +Islip,Raleigh,,8 hours 39 mins,894 km +Islip,Buffalo,,7 hours 1 min,691 km +Islip,Manhattan,,1 hour 15 mins,84.5 km +Islip,Niagara Falls,,7 hours 16 mins,747 km +Islip,New York,,1 hour 18 mins,85.8 km +Islip,Watertown,,5 hours 55 mins,601 km +Islip,Newburgh,,2 hours 4 mins,172 km +Islip,Syracuse,,4 hours 51 mins,488 km +Islip,Plattsburgh,,5 hours 32 mins,573 km +Islip,Ogdensburg,,6 hours 53 mins,694 km +Islip,Ithaca,,4 hours 45 mins,449 km +Islip,Elmira,,4 hours 39 mins,463 km +Islip,White Plains,,1 hour 15 mins,101 km +Islip,Albany,,, +Islip,Binghamton,,3 hours 51 mins,376 km +Islip,Rochester,,6 hours 8 mins,626 km +New York,Raleigh,,7 hours 50 mins,820 km +New York,Buffalo,,6 hours 16 mins,601 km +New York,Manhattan,,26 mins,12.9 km +New York,Niagara Falls,,6 hours 31 mins,657 km +New York,Islip,,1 hour 12 mins,84.2 km +New York,Watertown,,5 hours 9 mins,510 km +New York,Newburgh,,1 hour 28 mins,110 km +New York,Syracuse,,4 hours 6 mins,398 km +New York,Plattsburgh,,4 hours 55 mins,503 km +New York,Ogdensburg,,6 hours 8 mins,603 km +New York,Ithaca,,4 hours 0 mins,359 km +New York,Elmira,,3 hours 53 mins,373 km +New York,White Plains,,49 mins,55.8 km +New York,Albany,,, +New York,Binghamton,,3 hours 6 mins,286 km +New York,Rochester,,5 hours 23 mins,536 km +Watertown,Raleigh,,10 hours 59 mins,"1,150 km" +Watertown,Buffalo,,3 hours 15 mins,342 km +Watertown,Manhattan,,5 hours 10 mins,524 km +Watertown,Niagara Falls,,3 hours 27 mins,362 km +Watertown,Islip,,5 hours 57 mins,594 km +Watertown,New York,,5 hours 7 mins,510 km +Watertown,Newburgh,,4 hours 10 mins,413 km +Watertown,Syracuse,,1 hour 9 mins,114 km +Watertown,Plattsburgh,,3 hours 14 mins,254 km +Watertown,Ogdensburg,,1 hour 7 mins,95.4 km +Watertown,Ithaca,,2 hours 11 mins,204 km +Watertown,Elmira,,2 hours 52 mins,257 km +Watertown,White Plains,,4 hours 51 mins,510 km +Watertown,Albany,,, +Watertown,Binghamton,,2 hours 14 mins,231 km +Watertown,Rochester,,2 hours 19 mins,241 km +Newburgh,Raleigh,,8 hours 42 mins,912 km +Newburgh,Buffalo,,5 hours 26 mins,541 km +Newburgh,Manhattan,,1 hour 20 mins,99.1 km +Newburgh,Niagara Falls,,5 hours 41 mins,597 km +Newburgh,Islip,,2 hours 7 mins,169 km +Newburgh,New York,,1 hour 35 mins,107 km +Newburgh,Watertown,,4 hours 12 mins,412 km +Newburgh,Syracuse,,3 hours 16 mins,338 km +Newburgh,Plattsburgh,,3 hours 45 mins,401 km +Newburgh,Ogdensburg,,5 hours 11 mins,493 km +Newburgh,Ithaca,,3 hours 10 mins,299 km +Newburgh,Elmira,,3 hours 4 mins,313 km +Newburgh,White Plains,,1 hour 0 mins,82.1 km +Newburgh,Albany,,, +Newburgh,Binghamton,,2 hours 16 mins,226 km +Newburgh,Rochester,,4 hours 33 mins,476 km +Syracuse,Raleigh,,9 hours 55 mins,"1,037 km" +Syracuse,Buffalo,,2 hours 19 mins,240 km +Syracuse,Manhattan,,4 hours 6 mins,410 km +Syracuse,Niagara Falls,,2 hours 31 mins,260 km +Syracuse,Islip,,4 hours 53 mins,481 km +Syracuse,New York,,4 hours 4 mins,397 km +Syracuse,Watertown,,1 hour 8 mins,113 km +Syracuse,Newburgh,,3 hours 17 mins,339 km +Syracuse,Plattsburgh,,4 hours 1 min,371 km +Syracuse,Ogdensburg,,2 hours 6 mins,206 km +Syracuse,Ithaca,,1 hour 7 mins,90.6 km +Syracuse,Elmira,,1 hour 48 mins,144 km +Syracuse,White Plains,,3 hours 47 mins,397 km +Syracuse,Albany,,, +Syracuse,Binghamton,,1 hour 10 mins,118 km +Syracuse,Rochester,,1 hour 22 mins,139 km +Plattsburgh,Raleigh,,12 hours 6 mins,"1,301 km" +Plattsburgh,Buffalo,,6 hours 8 mins,602 km +Plattsburgh,Manhattan,,4 hours 46 mins,493 km +Plattsburgh,Niagara Falls,,6 hours 19 mins,622 km +Plattsburgh,Islip,,5 hours 33 mins,575 km +Plattsburgh,New York,,4 hours 59 mins,501 km +Plattsburgh,Watertown,,3 hours 15 mins,255 km +Plattsburgh,Newburgh,,3 hours 45 mins,402 km +Plattsburgh,Syracuse,,4 hours 0 mins,371 km +Plattsburgh,Ogdensburg,,2 hours 19 mins,189 km +Plattsburgh,Ithaca,,5 hours 3 mins,461 km +Plattsburgh,Elmira,,5 hours 7 mins,553 km +Plattsburgh,White Plains,,4 hours 27 mins,483 km +Plattsburgh,Albany,,, +Plattsburgh,Binghamton,,4 hours 19 mins,465 km +Plattsburgh,Rochester,,5 hours 11 mins,501 km +Ogdensburg,Raleigh,,11 hours 58 mins,"1,243 km" +Ogdensburg,Buffalo,,4 hours 14 mins,435 km +Ogdensburg,Manhattan,,6 hours 9 mins,616 km +Ogdensburg,Niagara Falls,,4 hours 26 mins,455 km +Ogdensburg,Islip,,6 hours 56 mins,687 km +Ogdensburg,New York,,6 hours 6 mins,602 km +Ogdensburg,Watertown,,1 hour 10 mins,96.0 km +Ogdensburg,Newburgh,,5 hours 9 mins,494 km +Ogdensburg,Syracuse,,2 hours 8 mins,206 km +Ogdensburg,Plattsburgh,,2 hours 18 mins,189 km +Ogdensburg,Ithaca,,3 hours 10 mins,296 km +Ogdensburg,Elmira,,3 hours 51 mins,350 km +Ogdensburg,White Plains,,5 hours 50 mins,603 km +Ogdensburg,Albany,,, +Ogdensburg,Binghamton,,3 hours 13 mins,323 km +Ogdensburg,Rochester,,3 hours 18 mins,334 km +Ithaca,Raleigh,,9 hours 39 mins,980 km +Ithaca,Buffalo,,2 hours 38 mins,244 km +Ithaca,Manhattan,,4 hours 0 mins,372 km +Ithaca,Niagara Falls,,2 hours 50 mins,264 km +Ithaca,Islip,,4 hours 47 mins,442 km +Ithaca,New York,,3 hours 58 mins,358 km +Ithaca,Watertown,,2 hours 10 mins,203 km +Ithaca,Newburgh,,3 hours 11 mins,300 km +Ithaca,Syracuse,,1 hour 7 mins,90.6 km +Ithaca,Plattsburgh,,5 hours 2 mins,459 km +Ithaca,Ogdensburg,,3 hours 9 mins,296 km +Ithaca,Elmira,,44 mins,54.1 km +Ithaca,White Plains,,3 hours 41 mins,359 km +Ithaca,Albany,,, +Ithaca,Binghamton,,1 hour 4 mins,79.0 km +Ithaca,Rochester,,1 hour 41 mins,143 km +Elmira,Raleigh,,9 hours 2 mins,909 km +Elmira,Buffalo,,2 hours 30 mins,232 km +Elmira,Manhattan,,3 hours 53 mins,385 km +Elmira,Niagara Falls,,2 hours 50 mins,269 km +Elmira,Islip,,4 hours 40 mins,455 km +Elmira,New York,,3 hours 50 mins,371 km +Elmira,Watertown,,2 hours 52 mins,256 km +Elmira,Newburgh,,3 hours 3 mins,314 km +Elmira,Syracuse,,1 hour 49 mins,144 km +Elmira,Plattsburgh,,5 hours 6 mins,552 km +Elmira,Ogdensburg,,3 hours 51 mins,349 km +Elmira,Ithaca,,44 mins,54.1 km +Elmira,White Plains,,3 hours 34 mins,372 km +Elmira,Albany,,, +Elmira,Binghamton,,55 mins,91.4 km +Elmira,Rochester,,1 hour 54 mins,200 km +White Plains,Raleigh,,8 hours 16 mins,869 km +White Plains,Buffalo,,5 hours 57 mins,600 km +White Plains,Manhattan,,41 mins,39.8 km +White Plains,Niagara Falls,,6 hours 12 mins,656 km +White Plains,Islip,,1 hour 15 mins,101 km +White Plains,New York,,54 mins,57.3 km +White Plains,Watertown,,4 hours 50 mins,509 km +White Plains,Newburgh,,1 hour 0 mins,80.5 km +White Plains,Syracuse,,3 hours 47 mins,396 km +White Plains,Plattsburgh,,4 hours 27 mins,481 km +White Plains,Ogdensburg,,5 hours 49 mins,602 km +White Plains,Ithaca,,3 hours 41 mins,358 km +White Plains,Elmira,,3 hours 34 mins,371 km +White Plains,Albany,,, +White Plains,Binghamton,,2 hours 47 mins,285 km +White Plains,Rochester,,5 hours 4 mins,535 km +Albany,Raleigh,,, +Albany,Buffalo,,, +Albany,Manhattan,,, +Albany,Niagara Falls,,, +Albany,Islip,,, +Albany,New York,,, +Albany,Watertown,,, +Albany,Newburgh,,, +Albany,Syracuse,,, +Albany,Plattsburgh,,, +Albany,Ogdensburg,,, +Albany,Ithaca,,, +Albany,Elmira,,, +Albany,White Plains,,, +Albany,Binghamton,,, +Albany,Rochester,,, +Binghamton,Raleigh,,8 hours 55 mins,924 km +Binghamton,Buffalo,,3 hours 19 mins,319 km +Binghamton,Manhattan,,3 hours 6 mins,297 km +Binghamton,Niagara Falls,,3 hours 35 mins,377 km +Binghamton,Islip,,3 hours 53 mins,368 km +Binghamton,New York,,3 hours 3 mins,284 km +Binghamton,Watertown,,2 hours 13 mins,230 km +Binghamton,Newburgh,,2 hours 16 mins,226 km +Binghamton,Syracuse,,1 hour 10 mins,118 km +Binghamton,Plattsburgh,,4 hours 18 mins,464 km +Binghamton,Ogdensburg,,3 hours 12 mins,323 km +Binghamton,Ithaca,,1 hour 4 mins,78.6 km +Binghamton,Elmira,,57 mins,91.1 km +Binghamton,White Plains,,2 hours 47 mins,284 km +Binghamton,Albany,,, +Binghamton,Rochester,,2 hours 26 mins,256 km +Rochester,Raleigh,,10 hours 17 mins,"1,070 km" +Rochester,Buffalo,,1 hour 13 mins,119 km +Rochester,Manhattan,,5 hours 22 mins,550 km +Rochester,Niagara Falls,,1 hour 25 mins,139 km +Rochester,Islip,,6 hours 9 mins,620 km +Rochester,New York,,5 hours 19 mins,536 km +Rochester,Watertown,,2 hours 18 mins,242 km +Rochester,Newburgh,,4 hours 32 mins,478 km +Rochester,Syracuse,,1 hour 22 mins,139 km +Rochester,Plattsburgh,,5 hours 11 mins,500 km +Rochester,Ogdensburg,,3 hours 17 mins,335 km +Rochester,Ithaca,,1 hour 41 mins,144 km +Rochester,Elmira,,1 hour 53 mins,200 km +Rochester,White Plains,,5 hours 3 mins,536 km +Rochester,Albany,,, +Rochester,Binghamton,,2 hours 26 mins,257 km +Boston,Lynchburg,,10 hours 7 mins,998 km +Boston,Richmond,,8 hours 44 mins,892 km +Boston,Petersburg,,9 hours 4 mins,928 km +Boston,Newport News,,9 hours 37 mins,992 km +Boston,Charlottesville,,9 hours 8 mins,895 km +Boston,Staunton,,9 hours 15 mins,961 km +Boston,Jamestown,,9 hours 32 mins,974 km +Boston,Norfolk,,9 hours 44 mins,929 km +Boston,Roanoke,,10 hours 26 mins,"1,095 km" +Lynchburg,Boston,,10 hours 7 mins,995 km +Lynchburg,Richmond,,2 hours 7 mins,182 km +Lynchburg,Petersburg,,2 hours 2 mins,186 km +Lynchburg,Newport News,,3 hours 7 mins,295 km +Lynchburg,Charlottesville,,1 hour 13 mins,110 km +Lynchburg,Staunton,,1 hour 24 mins,121 km +Lynchburg,Jamestown,,3 hours 3 mins,253 km +Lynchburg,Norfolk,,3 hours 29 mins,305 km +Lynchburg,Roanoke,,1 hour 9 mins,90.1 km +Richmond,Boston,,8 hours 42 mins,882 km +Richmond,Lynchburg,,2 hours 4 mins,182 km +Richmond,Petersburg,,25 mins,38.0 km +Richmond,Newport News,,1 hour 5 mins,110 km +Richmond,Charlottesville,,1 hour 10 mins,116 km +Richmond,Staunton,,1 hour 43 mins,175 km +Richmond,Jamestown,,1 hour 1 min,92.4 km +Richmond,Norfolk,,1 hour 34 mins,150 km +Richmond,Roanoke,,2 hours 52 mins,305 km +Petersburg,Boston,,9 hours 3 mins,918 km +Petersburg,Lynchburg,,2 hours 3 mins,181 km +Petersburg,Richmond,,27 mins,38.2 km +Petersburg,Newport News,,1 hour 21 mins,138 km +Petersburg,Charlottesville,,1 hour 30 mins,152 km +Petersburg,Staunton,,2 hours 4 mins,211 km +Petersburg,Jamestown,,1 hour 7 mins,79.2 km +Petersburg,Norfolk,,1 hour 32 mins,125 km +Petersburg,Roanoke,,2 hours 59 mins,263 km +Newport News,Boston,,9 hours 34 mins,981 km +Newport News,Lynchburg,,3 hours 7 mins,292 km +Newport News,Richmond,,1 hour 6 mins,111 km +Newport News,Petersburg,,1 hour 21 mins,139 km +Newport News,Charlottesville,,2 hours 7 mins,224 km +Newport News,Staunton,,2 hours 40 mins,283 km +Newport News,Jamestown,,36 mins,44.3 km +Newport News,Norfolk,,37 mins,40.9 km +Newport News,Roanoke,,3 hours 49 mins,413 km +Charlottesville,Boston,,9 hours 6 mins,892 km +Charlottesville,Lynchburg,,1 hour 13 mins,109 km +Charlottesville,Richmond,,1 hour 9 mins,116 km +Charlottesville,Petersburg,,1 hour 28 mins,152 km +Charlottesville,Newport News,,2 hours 7 mins,223 km +Charlottesville,Staunton,,45 mins,63.9 km +Charlottesville,Jamestown,,2 hours 3 mins,205 km +Charlottesville,Norfolk,,2 hours 37 mins,262 km +Charlottesville,Roanoke,,1 hour 54 mins,194 km +Staunton,Boston,,9 hours 14 mins,962 km +Staunton,Lynchburg,,1 hour 24 mins,120 km +Staunton,Richmond,,1 hour 41 mins,174 km +Staunton,Petersburg,,2 hours 0 mins,209 km +Staunton,Newport News,,2 hours 39 mins,281 km +Staunton,Charlottesville,,45 mins,64.1 km +Staunton,Jamestown,,2 hours 35 mins,263 km +Staunton,Norfolk,,3 hours 9 mins,320 km +Staunton,Roanoke,,1 hour 25 mins,140 km +Jamestown,Boston,,9 hours 30 mins,963 km +Jamestown,Lynchburg,,3 hours 1 min,253 km +Jamestown,Richmond,,1 hour 2 mins,93.3 km +Jamestown,Petersburg,,1 hour 6 mins,79.0 km +Jamestown,Newport News,,35 mins,42.8 km +Jamestown,Charlottesville,,2 hours 2 mins,206 km +Jamestown,Staunton,,2 hours 36 mins,265 km +Jamestown,Norfolk,,1 hour 4 mins,81.8 km +Jamestown,Roanoke,,3 hours 44 mins,395 km +Norfolk,Boston,,9 hours 43 mins,926 km +Norfolk,Lynchburg,,3 hours 27 mins,306 km +Norfolk,Richmond,,1 hour 36 mins,150 km +Norfolk,Petersburg,,1 hour 31 mins,123 km +Norfolk,Newport News,,38 mins,42.7 km +Norfolk,Charlottesville,,2 hours 36 mins,263 km +Norfolk,Staunton,,3 hours 10 mins,322 km +Norfolk,Jamestown,,1 hour 6 mins,83.2 km +Norfolk,Roanoke,,4 hours 18 mins,452 km +Roanoke,Boston,,10 hours 27 mins,"1,096 km" +Roanoke,Lynchburg,,1 hour 9 mins,90.7 km +Roanoke,Richmond,,2 hours 51 mins,304 km +Roanoke,Petersburg,,2 hours 57 mins,268 km +Roanoke,Newport News,,3 hours 50 mins,411 km +Roanoke,Charlottesville,,1 hour 55 mins,195 km +Roanoke,Staunton,,1 hour 27 mins,140 km +Roanoke,Jamestown,,3 hours 45 mins,393 km +Roanoke,Norfolk,,4 hours 19 mins,450 km +Denver,San Diego,,15 hours 50 mins,"1,735 km" +Denver,Redding,,18 hours 19 mins,"1,977 km" +Denver,Sacramento,,17 hours 9 mins,"1,875 km" +Denver,Fresno,,16 hours 46 mins,"1,837 km" +Denver,San Luis Obispo,,17 hours 22 mins,"1,880 km" +Denver,Oakland,,18 hours 23 mins,"2,004 km" +Denver,Santa Barbara,,16 hours 21 mins,"1,779 km" +Denver,Stockton,,17 hours 52 mins,"1,951 km" +Denver,Santa Rosa,,18 hours 43 mins,"2,030 km" +Denver,Bakersfield,,15 hours 9 mins,"1,661 km" +Denver,Santa Ana,,14 hours 58 mins,"1,636 km" +Denver,Santa Maria,,17 hours 9 mins,"1,835 km" +Denver,San Jose,,18 hours 56 mins,"2,048 km" +Denver,Burbank,,15 hours 1 min,"1,646 km" +Denver,Arcata,,21 hours 6 mins,"2,202 km" +Denver,Butte,,17 hours 52 mins,"1,914 km" +Denver,Palm Springs,,15 hours 3 mins,"1,651 km" +Denver,Los Angeles,,14 hours 58 mins,"1,636 km" +Denver,Long Beach,,15 hours 10 mins,"1,659 km" +Denver,San Francisco,,18 hours 32 mins,"2,014 km" +Denver,Monterey,,18 hours 45 mins,"2,015 km" +San Diego,Denver,,15 hours 50 mins,"1,734 km" +Redding,Denver,,18 hours 13 mins,"1,979 km" +Sacramento,Denver,,17 hours 7 mins,"1,876 km" +Fresno,Denver,,16 hours 45 mins,"1,836 km" +San Luis Obispo,Denver,,17 hours 20 mins,"1,881 km" +Oakland,Denver,,18 hours 19 mins,"2,006 km" +Santa Barbara,Denver,,16 hours 17 mins,"1,778 km" +Stockton,Denver,,17 hours 49 mins,"1,953 km" +Santa Rosa,Denver,,18 hours 39 mins,"2,031 km" +Bakersfield,Denver,,15 hours 10 mins,"1,661 km" +Santa Ana,Denver,,14 hours 53 mins,"1,632 km" +Santa Maria,Denver,,17 hours 9 mins,"1,837 km" +San Jose,Denver,,18 hours 55 mins,"2,049 km" +Burbank,Denver,,14 hours 53 mins,"1,639 km" +Arcata,Denver,,20 hours 59 mins,"2,202 km" +Butte,Denver,,17 hours 46 mins,"1,915 km" +Palm Springs,Denver,,14 hours 58 mins,"1,649 km" +Los Angeles,Denver,,14 hours 52 mins,"1,635 km" +Long Beach,Denver,,15 hours 10 mins,"1,662 km" +San Francisco,Denver,,18 hours 26 mins,"2,015 km" +Monterey,Denver,,18 hours 45 mins,"2,016 km" +Richmond,Abilene,,21 hours 17 mins,"2,345 km" +Richmond,Amarillo,,22 hours 23 mins,"2,493 km" +Richmond,Harlingen,,1 day 0 hours,"2,659 km" +Richmond,Lubbock,,23 hours 41 mins,"2,610 km" +Richmond,College Station,,20 hours 17 mins,"2,186 km" +Richmond,Corpus Christi,,22 hours 17 mins,"2,465 km" +Richmond,Wichita Falls,,20 hours 32 mins,"2,290 km" +Richmond,Waco,,20 hours 4 mins,"2,211 km" +Richmond,San Angelo,,22 hours 31 mins,"2,469 km" +Richmond,Houston,,19 hours 11 mins,"2,131 km" +Richmond,San Antonio,,22 hours 3 mins,"2,445 km" +Richmond,Del Rio,,1 day 0 hours,"2,692 km" +Richmond,Mission,,, +Richmond,Beaumont,,, +Richmond,Longview,,17 hours 23 mins,"1,920 km" +Richmond,Midland,,23 hours 26 mins,"2,586 km" +Richmond,El Paso,,1 day 4 hours,"3,076 km" +Richmond,Brownsville,,1 day 0 hours,"2,699 km" +Richmond,Austin,,21 hours 28 mins,"2,370 km" +Richmond,Dallas,,18 hours 40 mins,"2,056 km" +Richmond,Killeen,,20 hours 52 mins,"2,304 km" +Richmond,Laredo,,1 day 0 hours,"2,637 km" +Richmond,Texarkana,,16 hours 11 mins,"1,776 km" +Abilene,Richmond,,21 hours 14 mins,"2,344 km" +Amarillo,Richmond,,22 hours 21 mins,"2,492 km" +Harlingen,Richmond,,23 hours 58 mins,"2,657 km" +Lubbock,Richmond,,23 hours 22 mins,"2,536 km" +College Station,Richmond,,20 hours 10 mins,"2,179 km" +Corpus Christi,Richmond,,22 hours 19 mins,"2,467 km" +Wichita Falls,Richmond,,20 hours 20 mins,"2,203 km" +Waco,Richmond,,19 hours 59 mins,"2,206 km" +San Angelo,Richmond,,22 hours 26 mins,"2,469 km" +Houston,Richmond,,19 hours 9 mins,"2,129 km" +San Antonio,Richmond,,22 hours 2 mins,"2,443 km" +Del Rio,Richmond,,1 day 0 hours,"2,690 km" +Mission,Richmond,,, +Beaumont,Richmond,,, +Longview,Richmond,,17 hours 20 mins,"1,912 km" +Midland,Richmond,,23 hours 20 mins,"2,584 km" +El Paso,Richmond,,1 day 4 hours,"3,074 km" +Brownsville,Richmond,,1 day 0 hours,"2,697 km" +Austin,Richmond,,21 hours 23 mins,"2,368 km" +Dallas,Richmond,,18 hours 37 mins,"2,054 km" +Killeen,Richmond,,20 hours 48 mins,"2,302 km" +Laredo,Richmond,,1 day 0 hours,"2,635 km" +Texarkana,Richmond,,16 hours 8 mins,"1,773 km" +Omaha,Alamosa,,10 hours 51 mins,"1,126 km" +Omaha,Grand Junction,,11 hours 17 mins,"1,253 km" +Omaha,Durango,,13 hours 28 mins,"1,404 km" +Omaha,Colorado Springs,,8 hours 35 mins,982 km +Omaha,Gunnison,,11 hours 2 mins,"1,185 km" +Omaha,Denver,,7 hours 40 mins,868 km +Alamosa,Omaha,,10 hours 45 mins,"1,125 km" +Grand Junction,Omaha,,11 hours 10 mins,"1,253 km" +Durango,Omaha,,13 hours 22 mins,"1,404 km" +Colorado Springs,Omaha,,8 hours 29 mins,980 km +Gunnison,Omaha,,10 hours 56 mins,"1,185 km" +Denver,Omaha,,7 hours 37 mins,870 km +Richmond,Pellston,,13 hours 0 mins,"1,428 km" +Richmond,Traverse City,,13 hours 0 mins,"1,387 km" +Richmond,Alpena,,12 hours 58 mins,"1,375 km" +Richmond,Iron Mountain,,, +Richmond,Kalamazoo,,10 hours 51 mins,"1,148 km" +Richmond,Saginaw,,10 hours 40 mins,"1,141 km" +Richmond,Grand Rapids,,11 hours 18 mins,"1,215 km" +Richmond,Lansing,,10 hours 20 mins,"1,106 km" +Richmond,Muskegon,,11 hours 51 mins,"1,278 km" +Richmond,Hancock,,, +Richmond,Detroit,,9 hours 28 mins,"1,004 km" +Richmond,Escanaba,,15 hours 30 mins,"1,676 km" +Pellston,Richmond,,13 hours 6 mins,"1,431 km" +Traverse City,Richmond,,13 hours 7 mins,"1,390 km" +Alpena,Richmond,,13 hours 4 mins,"1,376 km" +Iron Mountain,Richmond,,, +Kalamazoo,Richmond,,10 hours 55 mins,"1,149 km" +Saginaw,Richmond,,10 hours 45 mins,"1,143 km" +Grand Rapids,Richmond,,11 hours 22 mins,"1,217 km" +Lansing,Richmond,,10 hours 26 mins,"1,109 km" +Muskegon,Richmond,,11 hours 57 mins,"1,281 km" +Hancock,Richmond,,, +Detroit,Richmond,,9 hours 33 mins,"1,006 km" +Escanaba,Richmond,,15 hours 35 mins,"1,678 km" +Denver,Augusta,,22 hours 23 mins,"2,492 km" +Denver,Decatur,,20 hours 29 mins,"2,267 km" +Denver,Atlanta,,20 hours 14 mins,"2,259 km" +Denver,Valdosta,,23 hours 31 mins,"2,626 km" +Denver,Savannah,,23 hours 49 mins,"2,658 km" +Augusta,Denver,,22 hours 27 mins,"2,491 km" +Augusta,Decatur,,2 hours 19 mins,229 km +Augusta,Atlanta,,2 hours 12 mins,234 km +Augusta,Valdosta,,4 hours 14 mins,350 km +Augusta,Savannah,,2 hours 27 mins,196 km +Decatur,Denver,,20 hours 33 mins,"2,264 km" +Decatur,Augusta,,2 hours 17 mins,228 km +Decatur,Atlanta,,19 mins,13.0 km +Decatur,Valdosta,,3 hours 32 mins,369 km +Decatur,Savannah,,3 hours 50 mins,401 km +Atlanta,Denver,,20 hours 16 mins,"2,257 km" +Atlanta,Augusta,,2 hours 13 mins,233 km +Atlanta,Decatur,,18 mins,10.0 km +Atlanta,Valdosta,,3 hours 20 mins,368 km +Atlanta,Savannah,,3 hours 39 mins,400 km +Valdosta,Denver,,23 hours 32 mins,"2,624 km" +Valdosta,Augusta,,4 hours 15 mins,350 km +Valdosta,Decatur,,3 hours 30 mins,375 km +Valdosta,Atlanta,,3 hours 19 mins,367 km +Valdosta,Savannah,,3 hours 11 mins,298 km +Savannah,Denver,,23 hours 53 mins,"2,656 km" +Savannah,Augusta,,2 hours 28 mins,195 km +Savannah,Decatur,,3 hours 51 mins,407 km +Savannah,Atlanta,,3 hours 40 mins,399 km +Savannah,Valdosta,,3 hours 11 mins,298 km +Gainesville,Charlotte,,6 hours 44 mins,729 km +Charlotte,Gainesville,,6 hours 41 mins,727 km +Ithaca,Greensboro,,9 hours 36 mins,967 km +Ithaca,Wilmington,,10 hours 55 mins,"1,119 km" +Ithaca,New Bern,,10 hours 29 mins,"1,054 km" +Ithaca,Charlotte,,10 hours 35 mins,"1,105 km" +Ithaca,Raleigh,,9 hours 39 mins,980 km +Ithaca,Asheville,,11 hours 18 mins,"1,180 km" +Ithaca,Fayetteville,,10 hours 10 mins,"1,041 km" +Greensboro,Ithaca,,9 hours 34 mins,967 km +Wilmington,Ithaca,,10 hours 47 mins,"1,111 km" +New Bern,Ithaca,,10 hours 20 mins,"1,060 km" +Charlotte,Ithaca,,10 hours 35 mins,"1,104 km" +Raleigh,Ithaca,,9 hours 31 mins,974 km +Asheville,Ithaca,,11 hours 17 mins,"1,180 km" +Fayetteville,Ithaca,,10 hours 3 mins,"1,035 km" +Charleston,Cincinnati,,9 hours 23 mins,"1,000 km" +Cincinnati,Charleston,,9 hours 20 mins,"1,000 km" +Gainesville,Greensboro,,7 hours 54 mins,847 km +Gainesville,Wilmington,,7 hours 29 mins,814 km +Gainesville,New Bern,,8 hours 44 mins,949 km +Gainesville,Charlotte,,6 hours 44 mins,729 km +Gainesville,Raleigh,,7 hours 41 mins,842 km +Gainesville,Asheville,,7 hours 39 mins,824 km +Gainesville,Fayetteville,,6 hours 47 mins,746 km +Greensboro,Gainesville,,7 hours 54 mins,832 km +Wilmington,Gainesville,,7 hours 29 mins,814 km +New Bern,Gainesville,,8 hours 44 mins,947 km +Charlotte,Gainesville,,6 hours 41 mins,727 km +Raleigh,Gainesville,,7 hours 41 mins,842 km +Asheville,Gainesville,,7 hours 35 mins,822 km +Fayetteville,Gainesville,,6 hours 45 mins,743 km +Augusta,Greensboro,,3 hours 50 mins,411 km +Augusta,Wilmington,,4 hours 14 mins,452 km +Augusta,New Bern,,5 hours 29 mins,586 km +Augusta,Charlotte,,2 hours 34 mins,265 km +Augusta,Raleigh,,4 hours 25 mins,479 km +Augusta,Asheville,,3 hours 17 mins,294 km +Augusta,Fayetteville,,3 hours 31 mins,383 km +Greensboro,Augusta,,3 hours 50 mins,409 km +Wilmington,Augusta,,4 hours 16 mins,451 km +New Bern,Augusta,,5 hours 31 mins,585 km +Charlotte,Augusta,,2 hours 33 mins,263 km +Raleigh,Augusta,,4 hours 28 mins,480 km +Asheville,Augusta,,3 hours 18 mins,295 km +Fayetteville,Augusta,,3 hours 32 mins,381 km +Baltimore,Sarasota,,14 hours 43 mins,"1,609 km" +Baltimore,Fort Myers,,15 hours 41 mins,"1,715 km" +Baltimore,Gainesville,,12 hours 3 mins,"1,319 km" +Baltimore,Orlando,,12 hours 56 mins,"1,437 km" +Baltimore,Daytona Beach,,12 hours 19 mins,"1,363 km" +Baltimore,Jacksonville,,10 hours 53 mins,"1,209 km" +Baltimore,Tampa,,13 hours 56 mins,"1,525 km" +Baltimore,Panama City,,14 hours 55 mins,"1,629 km" +Baltimore,Key West,,18 hours 52 mins,"2,019 km" +Baltimore,West Palm Beach,,14 hours 52 mins,"1,667 km" +Baltimore,Miami,,15 hours 52 mins,"1,766 km" +Baltimore,Tallahassee,,13 hours 17 mins,"1,468 km" +Baltimore,Punta Gorda,,15 hours 15 mins,"1,680 km" +Baltimore,Fort Lauderdale,,15 hours 29 mins,"1,735 km" +Baltimore,Pensacola,,15 hours 5 mins,"1,623 km" +Sarasota,Baltimore,,14 hours 46 mins,"1,602 km" +Fort Myers,Baltimore,,15 hours 43 mins,"1,708 km" +Gainesville,Baltimore,,12 hours 8 mins,"1,313 km" +Orlando,Baltimore,,12 hours 53 mins,"1,426 km" +Daytona Beach,Baltimore,,12 hours 19 mins,"1,343 km" +Jacksonville,Baltimore,,10 hours 56 mins,"1,200 km" +Tampa,Baltimore,,13 hours 58 mins,"1,517 km" +Panama City,Baltimore,,14 hours 57 mins,"1,623 km" +Key West,Baltimore,,18 hours 53 mins,"2,009 km" +West Palm Beach,Baltimore,,14 hours 51 mins,"1,656 km" +Miami,Baltimore,,15 hours 50 mins,"1,758 km" +Tallahassee,Baltimore,,13 hours 20 mins,"1,465 km" +Punta Gorda,Baltimore,,15 hours 18 mins,"1,672 km" +Fort Lauderdale,Baltimore,,15 hours 29 mins,"1,724 km" +Pensacola,Baltimore,,15 hours 5 mins,"1,612 km" +Milwaukee,Atlanta,,12 hours 6 mins,"1,307 km" +Atlanta,Milwaukee,,12 hours 6 mins,"1,309 km" +Charlotte,Lake Charles,,13 hours 3 mins,"1,440 km" +Charlotte,Baton Rouge,,11 hours 13 mins,"1,239 km" +Charlotte,New Orleans,,10 hours 28 mins,"1,149 km" +Charlotte,Shreveport,,12 hours 24 mins,"1,354 km" +Lake Charles,Charlotte,,13 hours 3 mins,"1,441 km" +Lake Charles,Baton Rouge,,1 hour 55 mins,204 km +Lake Charles,New Orleans,,3 hours 6 mins,331 km +Lake Charles,Shreveport,,3 hours 14 mins,302 km +Baton Rouge,Charlotte,,11 hours 14 mins,"1,241 km" +Baton Rouge,Lake Charles,,1 hour 55 mins,203 km +Baton Rouge,New Orleans,,1 hour 17 mins,131 km +Baton Rouge,Shreveport,,3 hours 42 mins,397 km +New Orleans,Charlotte,,10 hours 27 mins,"1,148 km" +New Orleans,Lake Charles,,3 hours 7 mins,332 km +New Orleans,Baton Rouge,,1 hour 17 mins,131 km +New Orleans,Shreveport,,4 hours 53 mins,526 km +Shreveport,Charlotte,,12 hours 23 mins,"1,353 km" +Shreveport,Lake Charles,,3 hours 17 mins,302 km +Shreveport,Baton Rouge,,3 hours 45 mins,400 km +Shreveport,New Orleans,,4 hours 55 mins,527 km +South Bend,Abilene,,16 hours 50 mins,"1,843 km" +South Bend,Amarillo,,16 hours 20 mins,"1,795 km" +South Bend,Harlingen,,22 hours 4 mins,"2,344 km" +South Bend,Lubbock,,17 hours 43 mins,"1,933 km" +South Bend,College Station,,17 hours 12 mins,"1,790 km" +South Bend,Corpus Christi,,20 hours 18 mins,"2,150 km" +South Bend,Wichita Falls,,14 hours 36 mins,"1,599 km" +South Bend,Waco,,16 hours 29 mins,"1,787 km" +South Bend,San Angelo,,18 hours 5 mins,"1,977 km" +South Bend,Houston,,17 hours 12 mins,"1,817 km" +South Bend,San Antonio,,19 hours 6 mins,"2,072 km" +South Bend,Del Rio,,20 hours 30 mins,"2,230 km" +South Bend,Mission,,, +South Bend,Beaumont,,, +South Bend,Longview,,14 hours 4 mins,"1,492 km" +South Bend,Midland,,18 hours 41 mins,"2,044 km" +South Bend,El Paso,,22 hours 56 mins,"2,492 km" +South Bend,Brownsville,,22 hours 25 mins,"2,384 km" +South Bend,Austin,,17 hours 54 mins,"1,946 km" +South Bend,Dallas,,15 hours 6 mins,"1,632 km" +South Bend,Killeen,,17 hours 18 mins,"1,880 km" +South Bend,Laredo,,21 hours 22 mins,"2,323 km" +South Bend,Texarkana,,12 hours 37 mins,"1,352 km" +Abilene,South Bend,,16 hours 49 mins,"1,841 km" +Amarillo,South Bend,,16 hours 19 mins,"1,792 km" +Harlingen,South Bend,,21 hours 57 mins,"2,358 km" +Lubbock,South Bend,,17 hours 39 mins,"1,931 km" +College Station,South Bend,,17 hours 6 mins,"1,800 km" +Corpus Christi,South Bend,,20 hours 19 mins,"2,169 km" +Wichita Falls,South Bend,,14 hours 34 mins,"1,597 km" +Waco,South Bend,,16 hours 24 mins,"1,797 km" +San Angelo,South Bend,,18 hours 3 mins,"1,975 km" +Houston,South Bend,,17 hours 9 mins,"1,831 km" +San Antonio,South Bend,,19 hours 0 mins,"2,085 km" +Del Rio,South Bend,,20 hours 26 mins,"2,228 km" +Mission,South Bend,,, +Beaumont,South Bend,,, +Longview,South Bend,,14 hours 1 min,"1,505 km" +Midland,South Bend,,18 hours 39 mins,"2,044 km" +El Paso,South Bend,,22 hours 51 mins,"2,488 km" +Brownsville,South Bend,,22 hours 21 mins,"2,398 km" +Austin,South Bend,,17 hours 49 mins,"1,959 km" +Dallas,South Bend,,15 hours 2 mins,"1,645 km" +Killeen,South Bend,,17 hours 14 mins,"1,893 km" +Laredo,South Bend,,21 hours 17 mins,"2,336 km" +Texarkana,South Bend,,12 hours 33 mins,"1,364 km" +Las Vegas,Abilene,,15 hours 38 mins,"1,706 km" +Las Vegas,Amarillo,,12 hours 21 mins,"1,386 km" +Las Vegas,Harlingen,,22 hours 7 mins,"2,468 km" +Las Vegas,Lubbock,,13 hours 15 mins,"1,440 km" +Las Vegas,College Station,,19 hours 53 mins,"2,130 km" +Las Vegas,Corpus Christi,,20 hours 29 mins,"2,293 km" +Las Vegas,Wichita Falls,,15 hours 38 mins,"1,740 km" +Las Vegas,Waco,,18 hours 34 mins,"2,007 km" +Las Vegas,San Angelo,,15 hours 43 mins,"1,740 km" +Las Vegas,Houston,,21 hours 0 mins,"2,343 km" +Las Vegas,San Antonio,,18 hours 31 mins,"2,061 km" +Las Vegas,Del Rio,,17 hours 6 mins,"1,857 km" +Las Vegas,Mission,,, +Las Vegas,Beaumont,,, +Las Vegas,Longview,,19 hours 31 mins,"2,168 km" +Las Vegas,Midland,,14 hours 20 mins,"1,573 km" +Las Vegas,El Paso,,10 hours 46 mins,"1,175 km" +Las Vegas,Brownsville,,22 hours 29 mins,"2,508 km" +Las Vegas,Austin,,19 hours 4 mins,"2,044 km" +Las Vegas,Dallas,,17 hours 40 mins,"1,967 km" +Las Vegas,Killeen,,18 hours 25 mins,"1,979 km" +Las Vegas,Laredo,,20 hours 1 min,"2,147 km" +Las Vegas,Texarkana,,19 hours 58 mins,"2,177 km" +Abilene,Las Vegas,,15 hours 37 mins,"1,706 km" +Amarillo,Las Vegas,,12 hours 20 mins,"1,386 km" +Harlingen,Las Vegas,,22 hours 2 mins,"2,470 km" +Lubbock,Las Vegas,,13 hours 14 mins,"1,440 km" +College Station,Las Vegas,,19 hours 50 mins,"2,133 km" +Corpus Christi,Las Vegas,,20 hours 26 mins,"2,294 km" +Wichita Falls,Las Vegas,,15 hours 38 mins,"1,741 km" +Waco,Las Vegas,,18 hours 34 mins,"2,066 km" +San Angelo,Las Vegas,,15 hours 40 mins,"1,739 km" +Houston,Las Vegas,,21 hours 0 mins,"2,344 km" +San Antonio,Las Vegas,,18 hours 29 mins,"2,061 km" +Del Rio,Las Vegas,,17 hours 4 mins,"1,858 km" +Mission,Las Vegas,,, +Beaumont,Las Vegas,,, +Longview,Las Vegas,,19 hours 30 mins,"2,174 km" +Midland,Las Vegas,,14 hours 18 mins,"1,573 km" +El Paso,Las Vegas,,10 hours 46 mins,"1,175 km" +Brownsville,Las Vegas,,22 hours 26 mins,"2,510 km" +Austin,Las Vegas,,19 hours 1 min,"2,071 km" +Dallas,Las Vegas,,17 hours 40 mins,"1,967 km" +Killeen,Las Vegas,,18 hours 25 mins,"1,979 km" +Laredo,Las Vegas,,20 hours 0 mins,"2,147 km" +Texarkana,Las Vegas,,20 hours 6 mins,"2,190 km" +Harrisburg,Detroit,,7 hours 17 mins,776 km +Detroit,Harrisburg,,7 hours 18 mins,777 km +Louisville,Pellston,,8 hours 24 mins,939 km +Louisville,Traverse City,,7 hours 49 mins,822 km +Louisville,Alpena,,8 hours 48 mins,935 km +Louisville,Iron Mountain,,, +Louisville,Kalamazoo,,5 hours 17 mins,544 km +Louisville,Saginaw,,6 hours 29 mins,701 km +Louisville,Grand Rapids,,5 hours 43 mins,593 km +Louisville,Lansing,,5 hours 25 mins,583 km +Louisville,Muskegon,,5 hours 59 mins,608 km +Louisville,Hancock,,, +Louisville,Detroit,,5 hours 27 mins,581 km +Louisville,Escanaba,,9 hours 26 mins,993 km +Pellston,Louisville,,8 hours 21 mins,941 km +Traverse City,Louisville,,7 hours 50 mins,827 km +Alpena,Louisville,,8 hours 44 mins,933 km +Iron Mountain,Louisville,,, +Kalamazoo,Louisville,,5 hours 17 mins,569 km +Saginaw,Louisville,,6 hours 25 mins,700 km +Grand Rapids,Louisville,,5 hours 41 mins,599 km +Lansing,Louisville,,5 hours 23 mins,588 km +Muskegon,Louisville,,5 hours 58 mins,611 km +Hancock,Louisville,,, +Detroit,Louisville,,5 hours 25 mins,582 km +Escanaba,Louisville,,9 hours 26 mins,995 km +Omaha,Seattle,,1 day 0 hours,"2,663 km" +Omaha,Wenatchee,,22 hours 36 mins,"2,487 km" +Omaha,Pasco,,, +Omaha,Yakima,,22 hours 44 mins,"2,540 km" +Omaha,Walla Walla,,21 hours 20 mins,"2,382 km" +Omaha,Everett,,1 day 0 hours,"2,698 km" +Omaha,Spokane,,20 hours 2 mins,"2,216 km" +Seattle,Omaha,,1 day 0 hours,"2,662 km" +Seattle,Wenatchee,,2 hours 33 mins,238 km +Seattle,Pasco,,, +Seattle,Yakima,,2 hours 14 mins,229 km +Seattle,Walla Walla,,4 hours 12 mins,420 km +Seattle,Everett,,34 mins,46.0 km +Seattle,Spokane,,4 hours 10 mins,449 km +Wenatchee,Omaha,,22 hours 33 mins,"2,487 km" +Wenatchee,Seattle,,2 hours 31 mins,238 km +Wenatchee,Pasco,,, +Wenatchee,Yakima,,1 hour 55 mins,172 km +Wenatchee,Walla Walla,,3 hours 1 min,292 km +Wenatchee,Everett,,2 hours 31 mins,198 km +Wenatchee,Spokane,,2 hours 41 mins,273 km +Pasco,Omaha,,, +Pasco,Seattle,,, +Pasco,Wenatchee,,, +Pasco,Yakima,,, +Pasco,Walla Walla,,, +Pasco,Everett,,, +Pasco,Spokane,,, +Yakima,Omaha,,22 hours 39 mins,"2,541 km" +Yakima,Seattle,,2 hours 14 mins,229 km +Yakima,Wenatchee,,1 hour 55 mins,182 km +Yakima,Pasco,,, +Yakima,Walla Walla,,2 hours 4 mins,210 km +Yakima,Everett,,2 hours 36 mins,264 km +Yakima,Spokane,,3 hours 2 mins,325 km +Walla Walla,Omaha,,21 hours 18 mins,"2,383 km" +Walla Walla,Seattle,,4 hours 11 mins,438 km +Walla Walla,Wenatchee,,3 hours 2 mins,291 km +Walla Walla,Pasco,,, +Walla Walla,Yakima,,2 hours 3 mins,210 km +Walla Walla,Everett,,4 hours 33 mins,473 km +Walla Walla,Spokane,,2 hours 44 mins,246 km +Everett,Omaha,,1 day 0 hours,"2,697 km" +Everett,Seattle,,34 mins,45.6 km +Everett,Wenatchee,,2 hours 28 mins,197 km +Everett,Pasco,,, +Everett,Yakima,,2 hours 35 mins,264 km +Everett,Walla Walla,,4 hours 33 mins,454 km +Everett,Spokane,,4 hours 31 mins,484 km +Spokane,Omaha,,20 hours 0 mins,"2,216 km" +Spokane,Seattle,,4 hours 11 mins,449 km +Spokane,Wenatchee,,2 hours 41 mins,272 km +Spokane,Pasco,,, +Spokane,Yakima,,3 hours 4 mins,327 km +Spokane,Walla Walla,,2 hours 44 mins,246 km +Spokane,Everett,,4 hours 32 mins,484 km +Tucson,San Diego,,5 hours 53 mins,654 km +Tucson,Redding,,15 hours 15 mins,"1,654 km" +Tucson,Sacramento,,12 hours 54 mins,"1,395 km" +Tucson,Fresno,,10 hours 27 mins,"1,129 km" +Tucson,San Luis Obispo,,10 hours 10 mins,"1,084 km" +Tucson,Oakland,,12 hours 42 mins,"1,373 km" +Tucson,Santa Barbara,,8 hours 40 mins,933 km +Tucson,Stockton,,12 hours 12 mins,"1,319 km" +Tucson,Santa Rosa,,13 hours 34 mins,"1,465 km" +Tucson,Bakersfield,,8 hours 53 mins,956 km +Tucson,Santa Ana,,7 hours 3 mins,781 km +Tucson,Santa Maria,,9 hours 47 mins,"1,035 km" +Tucson,San Jose,,12 hours 21 mins,"1,323 km" +Tucson,Burbank,,7 hours 21 mins,800 km +Tucson,Arcata,,17 hours 20 mins,"1,825 km" +Tucson,Butte,,14 hours 20 mins,"1,528 km" +Tucson,Palm Springs,,5 hours 40 mins,612 km +Tucson,Los Angeles,,7 hours 12 mins,778 km +Tucson,Long Beach,,7 hours 23 mins,797 km +Tucson,San Francisco,,12 hours 55 mins,"1,391 km" +Tucson,Monterey,,12 hours 10 mins,"1,289 km" +San Diego,Tucson,,5 hours 56 mins,653 km +Redding,Tucson,,15 hours 12 mins,"1,652 km" +Sacramento,Tucson,,12 hours 52 mins,"1,394 km" +Fresno,Tucson,,10 hours 25 mins,"1,127 km" +San Luis Obispo,Tucson,,10 hours 12 mins,"1,084 km" +Oakland,Tucson,,12 hours 40 mins,"1,372 km" +Santa Barbara,Tucson,,8 hours 41 mins,932 km +Stockton,Tucson,,12 hours 8 mins,"1,319 km" +Santa Rosa,Tucson,,13 hours 33 mins,"1,465 km" +Bakersfield,Tucson,,8 hours 52 mins,956 km +Santa Ana,Tucson,,7 hours 5 mins,762 km +Santa Maria,Tucson,,9 hours 46 mins,"1,034 km" +San Jose,Tucson,,12 hours 18 mins,"1,322 km" +Burbank,Tucson,,7 hours 17 mins,793 km +Arcata,Tucson,,17 hours 18 mins,"1,826 km" +Butte,Tucson,,14 hours 18 mins,"1,527 km" +Palm Springs,Tucson,,5 hours 40 mins,610 km +Los Angeles,Tucson,,7 hours 10 mins,777 km +Long Beach,Tucson,,7 hours 22 mins,796 km +San Francisco,Tucson,,12 hours 50 mins,"1,390 km" +Monterey,Tucson,,12 hours 8 mins,"1,289 km" +Newark,San Francisco,,1 day 18 hours,"4,654 km" +San Francisco,Newark,,1 day 18 hours,"4,662 km" +Minneapolis,Jacksonville,,21 hours 14 mins,"2,370 km" +Jacksonville,Minneapolis,,21 hours 20 mins,"2,377 km" +Kansas City,Flagstaff,,16 hours 47 mins,"1,783 km" +Kansas City,Yuma,,21 hours 12 mins,"2,232 km" +Kansas City,Phoenix,,18 hours 33 mins,"1,938 km" +Kansas City,Prescott,,18 hours 18 mins,"1,934 km" +Kansas City,Tucson,,18 hours 29 mins,"1,931 km" +Flagstaff,Kansas City,,16 hours 41 mins,"1,783 km" +Flagstaff,Yuma,,4 hours 46 mins,504 km +Flagstaff,Phoenix,,2 hours 18 mins,233 km +Flagstaff,Prescott,,1 hour 44 mins,153 km +Flagstaff,Tucson,,3 hours 50 mins,411 km +Yuma,Kansas City,,21 hours 10 mins,"2,231 km" +Yuma,Flagstaff,,4 hours 47 mins,512 km +Yuma,Phoenix,,2 hours 52 mins,298 km +Yuma,Prescott,,3 hours 46 mins,348 km +Yuma,Tucson,,3 hours 26 mins,379 km +Phoenix,Kansas City,,18 hours 31 mins,"1,939 km" +Phoenix,Flagstaff,,2 hours 15 mins,232 km +Phoenix,Yuma,,2 hours 49 mins,297 km +Phoenix,Prescott,,1 hour 46 mins,160 km +Phoenix,Tucson,,1 hour 44 mins,181 km +Prescott,Kansas City,,18 hours 12 mins,"1,935 km" +Prescott,Flagstaff,,1 hour 42 mins,154 km +Prescott,Yuma,,3 hours 48 mins,347 km +Prescott,Phoenix,,1 hour 45 mins,162 km +Prescott,Tucson,,3 hours 18 mins,340 km +Tucson,Kansas City,,18 hours 30 mins,"1,922 km" +Tucson,Flagstaff,,3 hours 47 mins,412 km +Tucson,Yuma,,3 hours 23 mins,380 km +Tucson,Phoenix,,1 hour 41 mins,180 km +Tucson,Prescott,,3 hours 19 mins,340 km +Santa Ana,Abilene,,18 hours 6 mins,"2,002 km" +Santa Ana,Amarillo,,15 hours 32 mins,"1,723 km" +Santa Ana,Harlingen,,22 hours 59 mins,"2,568 km" +Santa Ana,Lubbock,,16 hours 27 mins,"1,776 km" +Santa Ana,College Station,,21 hours 44 mins,"2,361 km" +Santa Ana,Corpus Christi,,21 hours 21 mins,"2,393 km" +Santa Ana,Wichita Falls,,18 hours 49 mins,"2,077 km" +Santa Ana,Waco,,20 hours 45 mins,"2,263 km" +Santa Ana,San Angelo,,17 hours 29 mins,"1,924 km" +Santa Ana,Houston,,22 hours 12 mins,"2,475 km" +Santa Ana,San Antonio,,19 hours 23 mins,"2,160 km" +Santa Ana,Del Rio,,17 hours 57 mins,"1,956 km" +Santa Ana,Mission,,, +Santa Ana,Beaumont,,, +Santa Ana,Longview,,22 hours 27 mins,"2,501 km" +Santa Ana,Midland,,16 hours 1 min,"1,765 km" +Santa Ana,El Paso,,11 hours 38 mins,"1,274 km" +Santa Ana,Brownsville,,23 hours 21 mins,"2,608 km" +Santa Ana,Austin,,20 hours 13 mins,"2,200 km" +Santa Ana,Dallas,,20 hours 40 mins,"2,295 km" +Santa Ana,Killeen,,20 hours 2 mins,"2,194 km" +Santa Ana,Laredo,,20 hours 53 mins,"2,246 km" +Santa Ana,Texarkana,,23 hours 9 mins,"2,513 km" +Abilene,Santa Ana,,18 hours 4 mins,"2,021 km" +Amarillo,Santa Ana,,15 hours 34 mins,"1,726 km" +Harlingen,Santa Ana,,22 hours 52 mins,"2,588 km" +Lubbock,Santa Ana,,16 hours 28 mins,"1,780 km" +College Station,Santa Ana,,21 hours 41 mins,"2,386 km" +Corpus Christi,Santa Ana,,21 hours 16 mins,"2,412 km" +Wichita Falls,Santa Ana,,18 hours 52 mins,"2,081 km" +Waco,Santa Ana,,20 hours 43 mins,"2,282 km" +San Angelo,Santa Ana,,17 hours 26 mins,"1,942 km" +Houston,Santa Ana,,22 hours 8 mins,"2,494 km" +San Antonio,Santa Ana,,19 hours 20 mins,"2,179 km" +Del Rio,Santa Ana,,17 hours 55 mins,"1,976 km" +Mission,Santa Ana,,, +Beaumont,Santa Ana,,, +Longview,Santa Ana,,22 hours 26 mins,"2,519 km" +Midland,Santa Ana,,15 hours 57 mins,"1,783 km" +El Paso,Santa Ana,,11 hours 36 mins,"1,293 km" +Brownsville,Santa Ana,,23 hours 16 mins,"2,628 km" +Austin,Santa Ana,,20 hours 9 mins,"2,220 km" +Dallas,Santa Ana,,20 hours 38 mins,"2,314 km" +Killeen,Santa Ana,,19 hours 59 mins,"2,213 km" +Laredo,Santa Ana,,20 hours 51 mins,"2,266 km" +Texarkana,Santa Ana,,23 hours 16 mins,"2,602 km" +Baltimore,San Diego,,1 day 15 hours,"4,232 km" +Baltimore,Redding,,1 day 17 hours,"4,491 km" +Baltimore,Sacramento,,1 day 16 hours,"4,389 km" +Baltimore,Fresno,,1 day 16 hours,"4,458 km" +Baltimore,San Luis Obispo,,1 day 17 hours,"4,502 km" +Baltimore,Oakland,,1 day 17 hours,"4,519 km" +Baltimore,Santa Barbara,,1 day 16 hours,"4,401 km" +Baltimore,Stockton,,1 day 17 hours,"4,465 km" +Baltimore,Santa Rosa,,1 day 17 hours,"4,544 km" +Baltimore,Bakersfield,,1 day 15 hours,"4,282 km" +Baltimore,Santa Ana,,1 day 15 hours,"4,258 km" +Baltimore,Santa Maria,,1 day 17 hours,"4,457 km" +Baltimore,San Jose,,1 day 18 hours,"4,581 km" +Baltimore,Burbank,,1 day 15 hours,"4,268 km" +Baltimore,Arcata,,1 day 20 hours,"4,716 km" +Baltimore,Butte,,1 day 17 hours,"4,428 km" +Baltimore,Palm Springs,,1 day 14 hours,"4,094 km" +Baltimore,Los Angeles,,1 day 15 hours,"4,258 km" +Baltimore,Long Beach,,1 day 15 hours,"4,280 km" +Baltimore,San Francisco,,1 day 17 hours,"4,528 km" +Baltimore,Monterey,,1 day 18 hours,"4,636 km" +San Diego,Baltimore,,1 day 15 hours,"4,229 km" +Redding,Baltimore,,1 day 17 hours,"4,501 km" +Sacramento,Baltimore,,1 day 16 hours,"4,398 km" +Fresno,Baltimore,,1 day 17 hours,"4,457 km" +San Luis Obispo,Baltimore,,1 day 17 hours,"4,502 km" +Oakland,Baltimore,,1 day 17 hours,"4,528 km" +Santa Barbara,Baltimore,,1 day 16 hours,"4,399 km" +Stockton,Baltimore,,1 day 16 hours,"4,475 km" +Santa Rosa,Baltimore,,1 day 17 hours,"4,553 km" +Bakersfield,Baltimore,,1 day 15 hours,"4,282 km" +Santa Ana,Baltimore,,1 day 15 hours,"4,252 km" +Santa Maria,Baltimore,,1 day 17 hours,"4,457 km" +San Jose,Baltimore,,1 day 18 hours,"4,589 km" +Burbank,Baltimore,,1 day 15 hours,"4,260 km" +Arcata,Baltimore,,1 day 20 hours,"4,724 km" +Butte,Baltimore,,1 day 16 hours,"4,437 km" +Palm Springs,Baltimore,,1 day 14 hours,"4,091 km" +Los Angeles,Baltimore,,1 day 15 hours,"4,256 km" +Long Beach,Baltimore,,1 day 15 hours,"4,283 km" +San Francisco,Baltimore,,1 day 17 hours,"4,538 km" +Monterey,Baltimore,,1 day 19 hours,"4,637 km" +Atlanta,Rochester,,14 hours 3 mins,"1,548 km" +Rochester,Atlanta,,14 hours 6 mins,"1,548 km" +Missoula,Abilene,,23 hours 1 min,"2,562 km" +Missoula,Amarillo,,18 hours 51 mins,"2,102 km" +Missoula,Harlingen,,1 day 6 hours,"3,326 km" +Missoula,Lubbock,,20 hours 37 mins,"2,298 km" +Missoula,College Station,,1 day 3 hours,"2,925 km" +Missoula,Corpus Christi,,1 day 4 hours,"3,151 km" +Missoula,Wichita Falls,,22 hours 16 mins,"2,462 km" +Missoula,Waco,,1 day 1 hour,"2,790 km" +Missoula,San Angelo,,23 hours 25 mins,"2,593 km" +Missoula,Houston,,1 day 4 hours,"3,065 km" +Missoula,San Antonio,,1 day 2 hours,"2,919 km" +Missoula,Del Rio,,1 day 2 hours,"2,844 km" +Missoula,Mission,,, +Missoula,Beaumont,,, +Missoula,Longview,,1 day 2 hours,"2,889 km" +Missoula,Midland,,22 hours 23 mins,"2,488 km" +Missoula,El Paso,,20 hours 31 mins,"2,230 km" +Missoula,Brownsville,,1 day 6 hours,"3,366 km" +Missoula,Austin,,1 day 2 hours,"2,900 km" +Missoula,Dallas,,1 day 0 hours,"2,689 km" +Missoula,Killeen,,1 day 2 hours,"2,835 km" +Missoula,Laredo,,1 day 4 hours,"3,108 km" +Missoula,Texarkana,,1 day 2 hours,"2,977 km" +Abilene,Missoula,,23 hours 6 mins,"2,568 km" +Amarillo,Missoula,,18 hours 58 mins,"2,102 km" +Harlingen,Missoula,,1 day 6 hours,"3,332 km" +Lubbock,Missoula,,20 hours 44 mins,"2,319 km" +College Station,Missoula,,1 day 3 hours,"2,957 km" +Corpus Christi,Missoula,,1 day 4 hours,"3,157 km" +Wichita Falls,Missoula,,22 hours 24 mins,"2,495 km" +Waco,Missoula,,1 day 1 hour,"2,819 km" +San Angelo,Missoula,,23 hours 31 mins,"2,633 km" +Houston,Missoula,,1 day 4 hours,"3,097 km" +San Antonio,Missoula,,1 day 2 hours,"2,924 km" +Del Rio,Missoula,,1 day 2 hours,"2,876 km" +Mission,Missoula,,, +Beaumont,Missoula,,, +Longview,Missoula,,1 day 2 hours,"2,928 km" +Midland,Missoula,,22 hours 29 mins,"2,509 km" +El Paso,Missoula,,20 hours 29 mins,"2,231 km" +Brownsville,Missoula,,1 day 6 hours,"3,372 km" +Austin,Missoula,,1 day 3 hours,"2,905 km" +Dallas,Missoula,,1 day 0 hours,"2,721 km" +Killeen,Missoula,,1 day 2 hours,"2,842 km" +Laredo,Missoula,,1 day 5 hours,"3,115 km" +Texarkana,Missoula,,1 day 3 hours,"2,984 km" +Los Angeles,Detroit,,1 day 9 hours,"3,671 km" +Detroit,Los Angeles,,1 day 9 hours,"3,671 km" +Boston,State College,,6 hours 53 mins,707 km +Boston,Johnstown,,8 hours 5 mins,833 km +Boston,Harrisburg,,6 hours 11 mins,628 km +Boston,Erie,,8 hours 10 mins,874 km +Boston,Pittsburgh,,9 hours 5 mins,921 km +Boston,Latrobe,,8 hours 32 mins,879 km +Boston,Philadelphia,,5 hours 2 mins,497 km +Boston,Lewisburg,,5 hours 57 mins,605 km +Boston,Scranton,,4 hours 38 mins,471 km +State College,Boston,,6 hours 51 mins,707 km +Johnstown,Boston,,8 hours 3 mins,833 km +Harrisburg,Boston,,6 hours 11 mins,629 km +Erie,Boston,,8 hours 11 mins,874 km +Pittsburgh,Boston,,9 hours 3 mins,921 km +Latrobe,Boston,,8 hours 32 mins,876 km +Philadelphia,Boston,,5 hours 2 mins,494 km +Lewisburg,Boston,,5 hours 56 mins,604 km +Scranton,Boston,,4 hours 38 mins,471 km +Seattle,San Diego,,19 hours 14 mins,"2,020 km" +Seattle,Redding,,9 hours 14 mins,956 km +Seattle,Sacramento,,11 hours 36 mins,"1,211 km" +Seattle,Fresno,,14 hours 12 mins,"1,483 km" +Seattle,San Luis Obispo,,15 hours 34 mins,"1,641 km" +Seattle,Oakland,,12 hours 19 mins,"1,290 km" +Seattle,Santa Barbara,,17 hours 8 mins,"1,792 km" +Seattle,Stockton,,12 hours 18 mins,"1,287 km" +Seattle,Santa Rosa,,12 hours 41 mins,"1,262 km" +Seattle,Bakersfield,,15 hours 48 mins,"1,656 km" +Seattle,Santa Ana,,17 hours 58 mins,"1,878 km" +Seattle,Santa Maria,,16 hours 4 mins,"1,692 km" +Seattle,San Jose,,12 hours 57 mins,"1,353 km" +Seattle,Burbank,,17 hours 8 mins,"1,812 km" +Seattle,Arcata,,9 hours 40 mins,929 km +Seattle,Butte,,10 hours 52 mins,"1,107 km" +Seattle,Palm Springs,,18 hours 53 mins,"1,997 km" +Seattle,Los Angeles,,17 hours 22 mins,"1,828 km" +Seattle,Long Beach,,17 hours 41 mins,"1,864 km" +Seattle,San Francisco,,12 hours 28 mins,"1,300 km" +Seattle,Monterey,,13 hours 59 mins,"1,460 km" +San Diego,Seattle,,19 hours 17 mins,"2,020 km" +Redding,Seattle,,9 hours 14 mins,956 km +Sacramento,Seattle,,11 hours 35 mins,"1,211 km" +Fresno,Seattle,,14 hours 11 mins,"1,488 km" +San Luis Obispo,Seattle,,15 hours 29 mins,"1,640 km" +Oakland,Seattle,,12 hours 18 mins,"1,290 km" +Santa Barbara,Seattle,,17 hours 2 mins,"1,792 km" +Stockton,Seattle,,12 hours 17 mins,"1,287 km" +Santa Rosa,Seattle,,12 hours 39 mins,"1,263 km" +Bakersfield,Seattle,,15 hours 46 mins,"1,661 km" +Santa Ana,Seattle,,18 hours 0 mins,"1,878 km" +Santa Maria,Seattle,,15 hours 59 mins,"1,692 km" +San Jose,Seattle,,12 hours 53 mins,"1,351 km" +Burbank,Seattle,,17 hours 9 mins,"1,811 km" +Arcata,Seattle,,9 hours 36 mins,927 km +Butte,Seattle,,10 hours 50 mins,"1,101 km" +Palm Springs,Seattle,,18 hours 56 mins,"1,997 km" +Los Angeles,Seattle,,17 hours 22 mins,"1,826 km" +Long Beach,Seattle,,17 hours 45 mins,"1,864 km" +San Francisco,Seattle,,12 hours 25 mins,"1,300 km" +Monterey,Seattle,,13 hours 54 mins,"1,458 km" +El Paso,Seattle,,1 day 1 hour,"2,721 km" +El Paso,Wenatchee,,1 day 0 hours,"2,600 km" +El Paso,Pasco,,, +El Paso,Yakima,,23 hours 12 mins,"2,493 km" +El Paso,Walla Walla,,21 hours 48 mins,"2,335 km" +El Paso,Everett,,1 day 2 hours,"2,756 km" +El Paso,Spokane,,23 hours 28 mins,"2,547 km" +Seattle,El Paso,,1 day 1 hour,"2,723 km" +Wenatchee,El Paso,,1 day 0 hours,"2,602 km" +Pasco,El Paso,,, +Yakima,El Paso,,23 hours 15 mins,"2,495 km" +Walla Walla,El Paso,,21 hours 53 mins,"2,336 km" +Everett,El Paso,,1 day 2 hours,"2,758 km" +Spokane,El Paso,,23 hours 32 mins,"2,548 km" +Providence,Buffalo,,6 hours 49 mins,723 km +Providence,Manhattan,,3 hours 7 mins,282 km +Providence,Niagara Falls,,7 hours 1 min,742 km +Providence,Islip,,3 hours 37 mins,225 km +Providence,New York,,3 hours 14 mins,291 km +Providence,Watertown,,5 hours 27 mins,535 km +Providence,Newburgh,,3 hours 6 mins,306 km +Providence,Syracuse,,4 hours 42 mins,492 km +Providence,Plattsburgh,,4 hours 57 mins,516 km +Providence,Ogdensburg,,6 hours 26 mins,616 km +Providence,Ithaca,,5 hours 27 mins,525 km +Providence,Elmira,,5 hours 28 mins,571 km +Providence,White Plains,,2 hours 34 mins,251 km +Providence,Albany,,, +Providence,Binghamton,,4 hours 40 mins,483 km +Providence,Rochester,,5 hours 52 mins,622 km +Buffalo,Providence,,6 hours 48 mins,726 km +Manhattan,Providence,,3 hours 2 mins,287 km +Niagara Falls,Providence,,7 hours 0 mins,742 km +Islip,Providence,,3 hours 32 mins,225 km +New York,Providence,,3 hours 8 mins,292 km +Watertown,Providence,,5 hours 26 mins,536 km +Newburgh,Providence,,3 hours 2 mins,290 km +Syracuse,Providence,,4 hours 41 mins,492 km +Plattsburgh,Providence,,4 hours 58 mins,518 km +Ogdensburg,Providence,,6 hours 24 mins,616 km +Ithaca,Providence,,5 hours 26 mins,525 km +Elmira,Providence,,5 hours 26 mins,570 km +White Plains,Providence,,2 hours 32 mins,252 km +Albany,Providence,,, +Binghamton,Providence,,4 hours 38 mins,482 km +Rochester,Providence,,5 hours 50 mins,621 km +Las Vegas,Minot,,20 hours 47 mins,"2,267 km" +Minot,Las Vegas,,20 hours 50 mins,"2,269 km" +Washington,Buffalo,,6 hours 54 mins,611 km +Washington,Manhattan,,4 hours 1 min,368 km +Washington,Niagara Falls,,7 hours 15 mins,642 km +Washington,Islip,,4 hours 41 mins,439 km +Washington,New York,,3 hours 52 mins,362 km +Washington,Watertown,,7 hours 1 min,710 km +Washington,Newburgh,,4 hours 41 mins,454 km +Washington,Syracuse,,5 hours 58 mins,597 km +Washington,Plattsburgh,,8 hours 8 mins,842 km +Washington,Ogdensburg,,8 hours 0 mins,803 km +Washington,Ithaca,,5 hours 43 mins,536 km +Washington,Elmira,,5 hours 5 mins,464 km +Washington,White Plains,,4 hours 19 mins,412 km +Washington,Albany,,, +Washington,Binghamton,,4 hours 58 mins,485 km +Washington,Rochester,,6 hours 21 mins,625 km +Buffalo,Washington,,7 hours 0 mins,661 km +Manhattan,Washington,,4 hours 0 mins,369 km +Niagara Falls,Washington,,7 hours 21 mins,698 km +Islip,Washington,,4 hours 41 mins,438 km +New York,Washington,,3 hours 51 mins,364 km +Watertown,Washington,,7 hours 3 mins,713 km +Newburgh,Washington,,4 hours 43 mins,456 km +Syracuse,Washington,,5 hours 59 mins,600 km +Plattsburgh,Washington,,8 hours 8 mins,845 km +Ogdensburg,Washington,,8 hours 2 mins,805 km +Ithaca,Washington,,5 hours 44 mins,539 km +Elmira,Washington,,5 hours 7 mins,468 km +White Plains,Washington,,4 hours 17 mins,413 km +Albany,Washington,,, +Binghamton,Washington,,4 hours 59 mins,487 km +Rochester,Washington,,6 hours 23 mins,629 km +Ontario,Honolulu,,, +Honolulu,Ontario,,, +San Juan,Abilene,,, +San Juan,Amarillo,,, +San Juan,Harlingen,,, +San Juan,Lubbock,,, +San Juan,College Station,,, +San Juan,Corpus Christi,,, +San Juan,Wichita Falls,,, +San Juan,Waco,,, +San Juan,San Angelo,,, +San Juan,Houston,,, +San Juan,San Antonio,,, +San Juan,Del Rio,,, +San Juan,Mission,,, +San Juan,Beaumont,,, +San Juan,Longview,,, +San Juan,Midland,,, +San Juan,El Paso,,, +San Juan,Brownsville,,, +San Juan,Austin,,, +San Juan,Dallas,,, +San Juan,Killeen,,, +San Juan,Laredo,,, +San Juan,Texarkana,,, +Abilene,San Juan,,, +Amarillo,San Juan,,, +Harlingen,San Juan,,, +Lubbock,San Juan,,, +College Station,San Juan,,, +Corpus Christi,San Juan,,, +Wichita Falls,San Juan,,, +Waco,San Juan,,, +San Angelo,San Juan,,, +Houston,San Juan,,, +San Antonio,San Juan,,, +Del Rio,San Juan,,, +Mission,San Juan,,, +Beaumont,San Juan,,, +Longview,San Juan,,, +Midland,San Juan,,, +El Paso,San Juan,,, +Brownsville,San Juan,,, +Austin,San Juan,,, +Dallas,San Juan,,, +Killeen,San Juan,,, +Laredo,San Juan,,, +Texarkana,San Juan,,, +Detroit,San Diego,,1 day 10 hours,"3,770 km" +San Diego,Detroit,,1 day 10 hours,"3,770 km" +Myrtle Beach,Fort Lauderdale,,10 hours 4 mins,"1,102 km" +Fort Lauderdale,Myrtle Beach,,10 hours 3 mins,"1,099 km" +Sacramento,Minneapolis,,1 day 3 hours,"3,027 km" +Minneapolis,Sacramento,,1 day 4 hours,"3,036 km" +Houston,Reno,,1 day 4 hours,"3,049 km" +Reno,Houston,,1 day 4 hours,"3,049 km" +Cedar Rapids,Alamosa,,14 hours 32 mins,"1,540 km" +Cedar Rapids,Grand Junction,,14 hours 58 mins,"1,667 km" +Cedar Rapids,Durango,,17 hours 9 mins,"1,817 km" +Cedar Rapids,Colorado Springs,,12 hours 16 mins,"1,396 km" +Cedar Rapids,Gunnison,,14 hours 42 mins,"1,598 km" +Cedar Rapids,Denver,,11 hours 20 mins,"1,281 km" +Alamosa,Cedar Rapids,,14 hours 27 mins,"1,541 km" +Grand Junction,Cedar Rapids,,14 hours 53 mins,"1,668 km" +Durango,Cedar Rapids,,17 hours 4 mins,"1,819 km" +Colorado Springs,Cedar Rapids,,12 hours 11 mins,"1,395 km" +Gunnison,Cedar Rapids,,14 hours 38 mins,"1,600 km" +Denver,Cedar Rapids,,11 hours 19 mins,"1,286 km" +Valparaiso,Martha's Vineyard,,, +Valparaiso,Hyannis,,, +Valparaiso,Boston,,, +Valparaiso,Nantucket,,, +Martha's Vineyard,Valparaiso,,, +Martha's Vineyard,Hyannis,,2 hours 7 mins,49.5 km +Martha's Vineyard,Boston,,2 hours 42 mins,156 km +Martha's Vineyard,Nantucket,,2 hours 36 mins,61.3 km +Hyannis,Valparaiso,,, +Hyannis,Martha's Vineyard,,1 hour 58 mins,63.6 km +Hyannis,Boston,,1 hour 21 mins,114 km +Hyannis,Nantucket,,2 hours 17 mins,47.0 km +Boston,Valparaiso,,, +Boston,Martha's Vineyard,,2 hours 34 mins,146 km +Boston,Hyannis,,1 hour 19 mins,114 km +Boston,Nantucket,,3 hours 37 mins,161 km +Nantucket,Valparaiso,,, +Nantucket,Martha's Vineyard,,2 hours 35 mins,60.8 km +Nantucket,Hyannis,,2 hours 19 mins,47.0 km +Nantucket,Boston,,3 hours 38 mins,165 km +Houston,Buffalo,,22 hours 6 mins,"2,388 km" +Houston,Manhattan,,1 day 0 hours,"2,627 km" +Houston,Niagara Falls,,22 hours 27 mins,"2,418 km" +Houston,Islip,,1 day 1 hour,"2,705 km" +Houston,New York,,23 hours 58 mins,"2,621 km" +Houston,Watertown,,1 day 1 hour,"2,716 km" +Houston,Newburgh,,1 day 0 hours,"2,688 km" +Houston,Syracuse,,1 day 0 hours,"2,614 km" +Houston,Plattsburgh,,1 day 4 hours,"3,076 km" +Houston,Ogdensburg,,1 day 2 hours,"2,810 km" +Houston,Ithaca,,1 day 0 hours,"2,607 km" +Houston,Elmira,,23 hours 46 mins,"2,569 km" +Houston,White Plains,,1 day 0 hours,"2,673 km" +Houston,Albany,,, +Houston,Binghamton,,1 day 0 hours,"2,640 km" +Houston,Rochester,,23 hours 4 mins,"2,493 km" +Buffalo,Houston,,22 hours 10 mins,"2,390 km" +Manhattan,Houston,,1 day 0 hours,"2,626 km" +Niagara Falls,Houston,,22 hours 32 mins,"2,421 km" +Islip,Houston,,1 day 1 hour,"2,704 km" +New York,Houston,,23 hours 58 mins,"2,618 km" +Watertown,Houston,,1 day 1 hour,"2,718 km" +Newburgh,Houston,,1 day 0 hours,"2,687 km" +Syracuse,Houston,,1 day 0 hours,"2,616 km" +Plattsburgh,Houston,,1 day 4 hours,"3,076 km" +Ogdensburg,Houston,,1 day 2 hours,"2,811 km" +Ithaca,Houston,,1 day 0 hours,"2,609 km" +Elmira,Houston,,23 hours 50 mins,"2,572 km" +White Plains,Houston,,1 day 0 hours,"2,671 km" +Albany,Houston,,, +Binghamton,Houston,,1 day 0 hours,"2,639 km" +Rochester,Houston,,23 hours 9 mins,"2,495 km" +South Bend,Atlanta,,10 hours 14 mins,"1,087 km" +Atlanta,South Bend,,10 hours 14 mins,"1,088 km" +Sun Valley,San Diego,,14 hours 9 mins,"1,461 km" +Sun Valley,Redding,,11 hours 16 mins,"1,085 km" +Sun Valley,Sacramento,,10 hours 24 mins,"1,074 km" +Sun Valley,Fresno,,12 hours 57 mins,"1,342 km" +Sun Valley,San Luis Obispo,,14 hours 51 mins,"1,545 km" +Sun Valley,Oakland,,11 hours 38 mins,"1,204 km" +Sun Valley,Santa Barbara,,14 hours 39 mins,"1,505 km" +Sun Valley,Stockton,,11 hours 7 mins,"1,150 km" +Sun Valley,Santa Rosa,,11 hours 57 mins,"1,229 km" +Sun Valley,Bakersfield,,13 hours 28 mins,"1,361 km" +Sun Valley,Santa Ana,,13 hours 17 mins,"1,362 km" +Sun Valley,Santa Maria,,15 hours 21 mins,"1,595 km" +Sun Valley,San Jose,,12 hours 16 mins,"1,266 km" +Sun Valley,Burbank,,13 hours 20 mins,"1,372 km" +Sun Valley,Arcata,,13 hours 52 mins,"1,294 km" +Sun Valley,Butte,,11 hours 6 mins,"1,113 km" +Sun Valley,Palm Springs,,13 hours 22 mins,"1,377 km" +Sun Valley,Los Angeles,,13 hours 16 mins,"1,362 km" +Sun Valley,Long Beach,,13 hours 29 mins,"1,384 km" +Sun Valley,San Francisco,,11 hours 47 mins,"1,213 km" +Sun Valley,Monterey,,13 hours 17 mins,"1,374 km" +San Diego,Sun Valley,,14 hours 8 mins,"1,461 km" +Redding,Sun Valley,,11 hours 13 mins,"1,087 km" +Sacramento,Sun Valley,,10 hours 24 mins,"1,074 km" +Fresno,Sun Valley,,12 hours 54 mins,"1,342 km" +San Luis Obispo,Sun Valley,,14 hours 46 mins,"1,553 km" +Oakland,Sun Valley,,11 hours 36 mins,"1,204 km" +Santa Barbara,Sun Valley,,14 hours 35 mins,"1,505 km" +Stockton,Sun Valley,,11 hours 6 mins,"1,151 km" +Santa Rosa,Sun Valley,,11 hours 56 mins,"1,229 km" +Bakersfield,Sun Valley,,13 hours 25 mins,"1,362 km" +Santa Ana,Sun Valley,,13 hours 11 mins,"1,359 km" +Santa Maria,Sun Valley,,15 hours 16 mins,"1,606 km" +San Jose,Sun Valley,,12 hours 10 mins,"1,265 km" +Burbank,Sun Valley,,13 hours 11 mins,"1,366 km" +Arcata,Sun Valley,,13 hours 49 mins,"1,293 km" +Butte,Sun Valley,,11 hours 3 mins,"1,113 km" +Palm Springs,Sun Valley,,13 hours 16 mins,"1,376 km" +Los Angeles,Sun Valley,,13 hours 10 mins,"1,362 km" +Long Beach,Sun Valley,,13 hours 28 mins,"1,389 km" +San Francisco,Sun Valley,,11 hours 43 mins,"1,214 km" +Monterey,Sun Valley,,13 hours 12 mins,"1,372 km" +Fort Lauderdale,Norfolk,,13 hours 26 mins,"1,510 km" +Norfolk,Fort Lauderdale,,13 hours 30 mins,"1,513 km" +Valparaiso,Belleville,,, +Belleville,Valparaiso,,, +Colorado Springs,Moline,,12 hours 49 mins,"1,467 km" +Colorado Springs,Belleville,,12 hours 26 mins,"1,367 km" +Colorado Springs,Bloomington,,15 hours 40 mins,"1,693 km" +Colorado Springs,Champaign,,14 hours 14 mins,"1,575 km" +Colorado Springs,Chicago,,15 hours 17 mins,"1,727 km" +Colorado Springs,Rockford,,14 hours 35 mins,"1,655 km" +Colorado Springs,Peoria,,14 hours 2 mins,"1,556 km" +Moline,Colorado Springs,,12 hours 55 mins,"1,469 km" +Belleville,Colorado Springs,,12 hours 31 mins,"1,366 km" +Bloomington,Colorado Springs,,15 hours 43 mins,"1,689 km" +Champaign,Colorado Springs,,14 hours 21 mins,"1,577 km" +Chicago,Colorado Springs,,15 hours 18 mins,"1,727 km" +Rockford,Colorado Springs,,14 hours 38 mins,"1,653 km" +Peoria,Colorado Springs,,14 hours 9 mins,"1,506 km" +Punta Gorda,Moline,,19 hours 16 mins,"2,150 km" +Punta Gorda,Belleville,,15 hours 46 mins,"1,762 km" +Punta Gorda,Bloomington,,15 hours 23 mins,"1,717 km" +Punta Gorda,Champaign,,16 hours 49 mins,"1,889 km" +Punta Gorda,Chicago,,18 hours 27 mins,"2,042 km" +Punta Gorda,Rockford,,19 hours 30 mins,"2,183 km" +Punta Gorda,Peoria,,17 hours 53 mins,"2,000 km" +Moline,Punta Gorda,,19 hours 18 mins,"2,147 km" +Belleville,Punta Gorda,,15 hours 47 mins,"1,758 km" +Bloomington,Punta Gorda,,15 hours 26 mins,"1,716 km" +Champaign,Punta Gorda,,16 hours 52 mins,"1,888 km" +Chicago,Punta Gorda,,18 hours 27 mins,"2,040 km" +Rockford,Punta Gorda,,19 hours 26 mins,"2,176 km" +Peoria,Punta Gorda,,17 hours 56 mins,"1,998 km" +Cedar Rapids,Abilene,,13 hours 48 mins,"1,545 km" +Cedar Rapids,Amarillo,,13 hours 19 mins,"1,497 km" +Cedar Rapids,Harlingen,,19 hours 48 mins,"2,222 km" +Cedar Rapids,Lubbock,,14 hours 41 mins,"1,635 km" +Cedar Rapids,College Station,,15 hours 0 mins,"1,675 km" +Cedar Rapids,Corpus Christi,,18 hours 9 mins,"2,046 km" +Cedar Rapids,Wichita Falls,,11 hours 34 mins,"1,301 km" +Cedar Rapids,Waco,,13 hours 42 mins,"1,540 km" +Cedar Rapids,San Angelo,,15 hours 3 mins,"1,679 km" +Cedar Rapids,Houston,,15 hours 46 mins,"1,705 km" +Cedar Rapids,San Antonio,,16 hours 18 mins,"1,825 km" +Cedar Rapids,Del Rio,,17 hours 29 mins,"1,932 km" +Cedar Rapids,Mission,,, +Cedar Rapids,Beaumont,,, +Cedar Rapids,Longview,,12 hours 57 mins,"1,359 km" +Cedar Rapids,Midland,,15 hours 39 mins,"1,746 km" +Cedar Rapids,El Paso,,19 hours 21 mins,"2,026 km" +Cedar Rapids,Brownsville,,20 hours 9 mins,"2,261 km" +Cedar Rapids,Austin,,15 hours 7 mins,"1,698 km" +Cedar Rapids,Dallas,,12 hours 26 mins,"1,324 km" +Cedar Rapids,Killeen,,14 hours 31 mins,"1,633 km" +Cedar Rapids,Laredo,,18 hours 35 mins,"2,075 km" +Cedar Rapids,Texarkana,,11 hours 30 mins,"1,218 km" +Abilene,Cedar Rapids,,13 hours 46 mins,"1,542 km" +Amarillo,Cedar Rapids,,13 hours 16 mins,"1,493 km" +Harlingen,Cedar Rapids,,19 hours 41 mins,"2,218 km" +Lubbock,Cedar Rapids,,14 hours 36 mins,"1,632 km" +College Station,Cedar Rapids,,14 hours 57 mins,"1,672 km" +Corpus Christi,Cedar Rapids,,18 hours 5 mins,"2,042 km" +Wichita Falls,Cedar Rapids,,11 hours 31 mins,"1,298 km" +Waco,Cedar Rapids,,13 hours 40 mins,"1,534 km" +San Angelo,Cedar Rapids,,15 hours 0 mins,"1,676 km" +Houston,Cedar Rapids,,15 hours 44 mins,"1,709 km" +San Antonio,Cedar Rapids,,16 hours 15 mins,"1,821 km" +Del Rio,Cedar Rapids,,17 hours 24 mins,"1,929 km" +Mission,Cedar Rapids,,, +Beaumont,Cedar Rapids,,, +Longview,Cedar Rapids,,13 hours 0 mins,"1,363 km" +Midland,Cedar Rapids,,15 hours 36 mins,"1,745 km" +El Paso,Cedar Rapids,,19 hours 16 mins,"2,023 km" +Brownsville,Cedar Rapids,,20 hours 4 mins,"2,258 km" +Austin,Cedar Rapids,,15 hours 5 mins,"1,695 km" +Dallas,Cedar Rapids,,12 hours 26 mins,"1,328 km" +Killeen,Cedar Rapids,,14 hours 29 mins,"1,630 km" +Laredo,Cedar Rapids,,18 hours 33 mins,"2,073 km" +Texarkana,Cedar Rapids,,11 hours 33 mins,"1,221 km" +Sioux Falls,Sarasota,,1 day 0 hours,"2,689 km" +Sioux Falls,Fort Myers,,1 day 1 hour,"2,794 km" +Sioux Falls,Gainesville,,21 hours 45 mins,"2,405 km" +Sioux Falls,Orlando,,23 hours 9 mins,"2,577 km" +Sioux Falls,Daytona Beach,,23 hours 13 mins,"2,577 km" +Sioux Falls,Jacksonville,,21 hours 50 mins,"2,427 km" +Sioux Falls,Tampa,,23 hours 21 mins,"2,605 km" +Sioux Falls,Panama City,,20 hours 31 mins,"2,116 km" +Sioux Falls,Key West,,1 day 5 hours,"3,191 km" +Sioux Falls,West Palm Beach,,1 day 1 hour,"2,832 km" +Sioux Falls,Miami,,1 day 2 hours,"2,937 km" +Sioux Falls,Tallahassee,,20 hours 48 mins,"2,171 km" +Sioux Falls,Punta Gorda,,1 day 1 hour,"2,759 km" +Sioux Falls,Fort Lauderdale,,1 day 2 hours,"2,900 km" +Sioux Falls,Pensacola,,19 hours 14 mins,"2,016 km" +Sarasota,Sioux Falls,,1 day 0 hours,"2,690 km" +Fort Myers,Sioux Falls,,1 day 1 hour,"2,796 km" +Gainesville,Sioux Falls,,21 hours 40 mins,"2,404 km" +Orlando,Sioux Falls,,23 hours 2 mins,"2,576 km" +Daytona Beach,Sioux Falls,,23 hours 8 mins,"2,567 km" +Jacksonville,Sioux Falls,,21 hours 48 mins,"2,428 km" +Tampa,Sioux Falls,,23 hours 16 mins,"2,605 km" +Panama City,Sioux Falls,,20 hours 30 mins,"2,126 km" +Key West,Sioux Falls,,1 day 5 hours,"3,191 km" +West Palm Beach,Sioux Falls,,1 day 1 hour,"2,834 km" +Miami,Sioux Falls,,1 day 2 hours,"2,940 km" +Tallahassee,Sioux Falls,,20 hours 47 mins,"2,181 km" +Punta Gorda,Sioux Falls,,1 day 1 hour,"2,760 km" +Fort Lauderdale,Sioux Falls,,1 day 2 hours,"2,902 km" +Pensacola,Sioux Falls,,19 hours 10 mins,"2,030 km" +Dallas,Buffalo,,20 hours 0 mins,"2,203 km" +Dallas,Manhattan,,23 hours 4 mins,"2,498 km" +Dallas,Niagara Falls,,20 hours 21 mins,"2,233 km" +Dallas,Islip,,23 hours 45 mins,"2,576 km" +Dallas,New York,,22 hours 55 mins,"2,491 km" +Dallas,Watertown,,23 hours 0 mins,"2,531 km" +Dallas,Newburgh,,23 hours 24 mins,"2,559 km" +Dallas,Syracuse,,22 hours 3 mins,"2,429 km" +Dallas,Plattsburgh,,1 day 2 hours,"2,790 km" +Dallas,Ogdensburg,,23 hours 58 mins,"2,624 km" +Dallas,Ithaca,,22 hours 11 mins,"2,422 km" +Dallas,Elmira,,21 hours 40 mins,"2,384 km" +Dallas,White Plains,,23 hours 14 mins,"2,544 km" +Dallas,Albany,,, +Dallas,Binghamton,,22 hours 28 mins,"2,472 km" +Dallas,Rochester,,20 hours 58 mins,"2,307 km" +Buffalo,Dallas,,20 hours 5 mins,"2,205 km" +Manhattan,Dallas,,23 hours 5 mins,"2,498 km" +Niagara Falls,Dallas,,20 hours 26 mins,"2,236 km" +Islip,Dallas,,23 hours 47 mins,"2,575 km" +New York,Dallas,,22 hours 55 mins,"2,490 km" +Watertown,Dallas,,23 hours 5 mins,"2,534 km" +Newburgh,Dallas,,23 hours 27 mins,"2,559 km" +Syracuse,Dallas,,22 hours 8 mins,"2,431 km" +Plattsburgh,Dallas,,1 day 2 hours,"2,794 km" +Ogdensburg,Dallas,,1 day 0 hours,"2,626 km" +Ithaca,Dallas,,22 hours 14 mins,"2,424 km" +Elmira,Dallas,,21 hours 45 mins,"2,388 km" +White Plains,Dallas,,23 hours 17 mins,"2,543 km" +Albany,Dallas,,, +Binghamton,Dallas,,22 hours 34 mins,"2,475 km" +Rochester,Dallas,,21 hours 3 mins,"2,310 km" +Charlottesville,Augusta,,6 hours 42 mins,698 km +Charlottesville,Decatur,,7 hours 53 mins,815 km +Charlottesville,Atlanta,,7 hours 53 mins,823 km +Charlottesville,Valdosta,,10 hours 40 mins,"1,151 km" +Charlottesville,Savannah,,7 hours 50 mins,867 km +Augusta,Charlottesville,,6 hours 43 mins,700 km +Decatur,Charlottesville,,7 hours 53 mins,815 km +Atlanta,Charlottesville,,7 hours 52 mins,822 km +Valdosta,Charlottesville,,10 hours 39 mins,"1,150 km" +Savannah,Charlottesville,,7 hours 47 mins,864 km +El Paso,Augusta,,22 hours 22 mins,"2,511 km" +El Paso,Decatur,,20 hours 30 mins,"2,290 km" +El Paso,Atlanta,,20 hours 16 mins,"2,279 km" +El Paso,Valdosta,,22 hours 3 mins,"2,455 km" +El Paso,Savannah,,23 hours 48 mins,"2,677 km" +Augusta,El Paso,,22 hours 27 mins,"2,517 km" +Decatur,El Paso,,20 hours 34 mins,"2,296 km" +Atlanta,El Paso,,20 hours 19 mins,"2,284 km" +Valdosta,El Paso,,22 hours 1 min,"2,455 km" +Savannah,El Paso,,23 hours 53 mins,"2,682 km" +Honolulu,Sacramento,,, +Sacramento,Honolulu,,, +Atlanta,Bozeman,,1 day 4 hours,"3,155 km" +Bozeman,Atlanta,,1 day 4 hours,"3,153 km" +Asheville,Minneapolis,,15 hours 47 mins,"1,711 km" +Minneapolis,Asheville,,15 hours 43 mins,"1,710 km" +Oakland,Eugene,,8 hours 3 mins,840 km +Eugene,Oakland,,8 hours 4 mins,843 km +Grand Rapids,Abilene,,17 hours 54 mins,"1,984 km" +Grand Rapids,Amarillo,,17 hours 25 mins,"1,937 km" +Grand Rapids,Harlingen,,23 hours 8 mins,"2,486 km" +Grand Rapids,Lubbock,,18 hours 47 mins,"2,075 km" +Grand Rapids,College Station,,18 hours 16 mins,"1,931 km" +Grand Rapids,Corpus Christi,,21 hours 23 mins,"2,292 km" +Grand Rapids,Wichita Falls,,15 hours 40 mins,"1,740 km" +Grand Rapids,Waco,,17 hours 34 mins,"1,929 km" +Grand Rapids,San Angelo,,19 hours 9 mins,"2,119 km" +Grand Rapids,Houston,,18 hours 16 mins,"1,958 km" +Grand Rapids,San Antonio,,20 hours 10 mins,"2,214 km" +Grand Rapids,Del Rio,,21 hours 35 mins,"2,372 km" +Grand Rapids,Mission,,, +Grand Rapids,Beaumont,,, +Grand Rapids,Longview,,15 hours 8 mins,"1,634 km" +Grand Rapids,Midland,,19 hours 45 mins,"2,186 km" +Grand Rapids,El Paso,,1 day 0 hours,"2,634 km" +Grand Rapids,Brownsville,,23 hours 30 mins,"2,526 km" +Grand Rapids,Austin,,18 hours 58 mins,"2,088 km" +Grand Rapids,Dallas,,16 hours 11 mins,"1,773 km" +Grand Rapids,Killeen,,18 hours 22 mins,"2,022 km" +Grand Rapids,Laredo,,22 hours 26 mins,"2,465 km" +Grand Rapids,Texarkana,,13 hours 41 mins,"1,494 km" +Abilene,Grand Rapids,,17 hours 55 mins,"1,981 km" +Amarillo,Grand Rapids,,17 hours 25 mins,"1,932 km" +Harlingen,Grand Rapids,,23 hours 3 mins,"2,498 km" +Lubbock,Grand Rapids,,18 hours 45 mins,"2,071 km" +College Station,Grand Rapids,,18 hours 12 mins,"1,940 km" +Corpus Christi,Grand Rapids,,21 hours 25 mins,"2,309 km" +Wichita Falls,Grand Rapids,,15 hours 40 mins,"1,737 km" +Waco,Grand Rapids,,17 hours 31 mins,"1,937 km" +San Angelo,Grand Rapids,,19 hours 10 mins,"2,115 km" +Houston,Grand Rapids,,18 hours 15 mins,"1,970 km" +San Antonio,Grand Rapids,,20 hours 6 mins,"2,225 km" +Del Rio,Grand Rapids,,21 hours 33 mins,"2,368 km" +Mission,Grand Rapids,,, +Beaumont,Grand Rapids,,, +Longview,Grand Rapids,,15 hours 7 mins,"1,645 km" +Midland,Grand Rapids,,19 hours 45 mins,"2,184 km" +El Paso,Grand Rapids,,23 hours 58 mins,"2,628 km" +Brownsville,Grand Rapids,,23 hours 27 mins,"2,538 km" +Austin,Grand Rapids,,18 hours 55 mins,"2,099 km" +Dallas,Grand Rapids,,16 hours 9 mins,"1,785 km" +Killeen,Grand Rapids,,18 hours 20 mins,"2,033 km" +Laredo,Grand Rapids,,22 hours 24 mins,"2,476 km" +Texarkana,Grand Rapids,,13 hours 40 mins,"1,504 km" +Boston,Bemidji,,1 day 0 hours,"2,582 km" +Boston,Minneapolis,,20 hours 39 mins,"2,238 km" +Boston,Duluth,,21 hours 37 mins,"2,334 km" +Boston,Brainerd,,22 hours 35 mins,"2,439 km" +Boston,Gustavus,,21 hours 6 mins,"2,285 km" +Boston,St. Cloud,,21 hours 35 mins,"2,341 km" +Boston,Hibbing,,22 hours 53 mins,"2,453 km" +Boston,International Falls,,1 day 0 hours,"2,595 km" +Bemidji,Boston,,1 day 0 hours,"2,593 km" +Bemidji,Minneapolis,,3 hours 34 mins,347 km +Bemidji,Duluth,,2 hours 44 mins,239 km +Bemidji,Brainerd,,1 hour 49 mins,154 km +Bemidji,Gustavus,,4 hours 25 mins,404 km +Bemidji,St. Cloud,,2 hours 32 mins,245 km +Bemidji,Hibbing,,1 hour 56 mins,166 km +Bemidji,International Falls,,1 hour 58 mins,181 km +Minneapolis,Boston,,20 hours 36 mins,"2,246 km" +Minneapolis,Bemidji,,3 hours 37 mins,347 km +Minneapolis,Duluth,,2 hours 16 mins,248 km +Minneapolis,Brainerd,,2 hours 6 mins,203 km +Minneapolis,Gustavus,,1 hour 9 mins,110 km +Minneapolis,St. Cloud,,1 hour 6 mins,105 km +Minneapolis,Hibbing,,3 hours 9 mins,312 km +Minneapolis,International Falls,,4 hours 35 mins,476 km +Duluth,Boston,,21 hours 36 mins,"2,344 km" +Duluth,Bemidji,,2 hours 45 mins,239 km +Duluth,Minneapolis,,2 hours 18 mins,249 km +Duluth,Brainerd,,2 hours 3 mins,184 km +Duluth,Gustavus,,3 hours 19 mins,357 km +Duluth,St. Cloud,,2 hours 22 mins,232 km +Duluth,Hibbing,,1 hour 23 mins,121 km +Duluth,International Falls,,2 hours 47 mins,263 km +Brainerd,Boston,,22 hours 34 mins,"2,450 km" +Brainerd,Bemidji,,1 hour 50 mins,154 km +Brainerd,Minneapolis,,2 hours 5 mins,204 km +Brainerd,Duluth,,2 hours 3 mins,184 km +Brainerd,Gustavus,,2 hours 55 mins,260 km +Brainerd,St. Cloud,,1 hour 2 mins,102 km +Brainerd,Hibbing,,2 hours 8 mins,187 km +Brainerd,International Falls,,3 hours 17 mins,298 km +Gustavus,Boston,,21 hours 4 mins,"2,293 km" +Gustavus,Bemidji,,4 hours 25 mins,404 km +Gustavus,Minneapolis,,1 hour 11 mins,113 km +Gustavus,Duluth,,3 hours 21 mins,358 km +Gustavus,Brainerd,,2 hours 54 mins,260 km +Gustavus,St. Cloud,,1 hour 56 mins,157 km +Gustavus,Hibbing,,4 hours 13 mins,421 km +Gustavus,International Falls,,5 hours 39 mins,585 km +St. Cloud,Boston,,21 hours 34 mins,"2,352 km" +St. Cloud,Bemidji,,2 hours 34 mins,246 km +St. Cloud,Minneapolis,,1 hour 5 mins,106 km +St. Cloud,Duluth,,2 hours 22 mins,232 km +St. Cloud,Brainerd,,1 hour 2 mins,102 km +St. Cloud,Gustavus,,1 hour 56 mins,157 km +St. Cloud,Hibbing,,2 hours 58 mins,272 km +St. Cloud,International Falls,,4 hours 18 mins,401 km +Hibbing,Boston,,22 hours 52 mins,"2,464 km" +Hibbing,Bemidji,,1 hour 55 mins,166 km +Hibbing,Minneapolis,,3 hours 10 mins,311 km +Hibbing,Duluth,,1 hour 22 mins,122 km +Hibbing,Brainerd,,2 hours 8 mins,186 km +Hibbing,Gustavus,,4 hours 11 mins,420 km +Hibbing,St. Cloud,,2 hours 58 mins,272 km +Hibbing,International Falls,,1 hour 46 mins,163 km +International Falls,Boston,,1 day 0 hours,"2,605 km" +International Falls,Bemidji,,1 hour 58 mins,180 km +International Falls,Minneapolis,,4 hours 36 mins,476 km +International Falls,Duluth,,2 hours 46 mins,263 km +International Falls,Brainerd,,3 hours 18 mins,298 km +International Falls,Gustavus,,5 hours 37 mins,584 km +International Falls,St. Cloud,,4 hours 19 mins,400 km +International Falls,Hibbing,,1 hour 45 mins,162 km +Erie,Moline,,8 hours 57 mins,953 km +Erie,Belleville,,9 hours 51 mins,"1,049 km" +Erie,Bloomington,,7 hours 1 min,743 km +Erie,Champaign,,8 hours 0 mins,859 km +Erie,Chicago,,6 hours 50 mins,718 km +Erie,Rockford,,8 hours 14 mins,858 km +Erie,Peoria,,8 hours 45 mins,940 km +Moline,Erie,,8 hours 57 mins,955 km +Belleville,Erie,,9 hours 50 mins,"1,051 km" +Bloomington,Erie,,7 hours 0 mins,745 km +Champaign,Erie,,8 hours 1 min,859 km +Chicago,Erie,,6 hours 48 mins,720 km +Rockford,Erie,,8 hours 13 mins,869 km +Peoria,Erie,,8 hours 46 mins,942 km +Minneapolis,La Crosse,,2 hours 33 mins,255 km +La Crosse,Minneapolis,,2 hours 32 mins,256 km +Miami,San Diego,,1 day 14 hours,"4,276 km" +Miami,Redding,,1 day 23 hours,"5,159 km" +Miami,Sacramento,,1 day 20 hours,"4,894 km" +Miami,Fresno,,1 day 18 hours,"4,624 km" +Miami,San Luis Obispo,,1 day 18 hours,"4,706 km" +Miami,Oakland,,1 day 20 hours,"4,885 km" +Miami,Santa Barbara,,1 day 17 hours,"4,555 km" +Miami,Stockton,,1 day 19 hours,"4,823 km" +Miami,Santa Rosa,,1 day 21 hours,"4,977 km" +Miami,Bakersfield,,1 day 16 hours,"4,447 km" +Miami,Santa Ana,,1 day 15 hours,"4,404 km" +Miami,Santa Maria,,1 day 18 hours,"4,658 km" +Miami,San Jose,,1 day 20 hours,"4,835 km" +Miami,Burbank,,1 day 15 hours,"4,422 km" +Miami,Arcata,,2 days 1 hour,"5,337 km" +Miami,Butte,,1 day 22 hours,"5,033 km" +Miami,Palm Springs,,1 day 14 hours,"4,234 km" +Miami,Los Angeles,,1 day 15 hours,"4,400 km" +Miami,Long Beach,,1 day 15 hours,"4,419 km" +Miami,San Francisco,,1 day 20 hours,"4,903 km" +Miami,Monterey,,1 day 20 hours,"4,801 km" +San Diego,Miami,,1 day 14 hours,"4,273 km" +Redding,Miami,,1 day 23 hours,"5,140 km" +Sacramento,Miami,,1 day 20 hours,"4,882 km" +Fresno,Miami,,1 day 18 hours,"4,610 km" +San Luis Obispo,Miami,,1 day 18 hours,"4,705 km" +Oakland,Miami,,1 day 20 hours,"4,873 km" +Santa Barbara,Miami,,1 day 17 hours,"4,553 km" +Stockton,Miami,,1 day 20 hours,"4,810 km" +Santa Rosa,Miami,,1 day 21 hours,"4,966 km" +Bakersfield,Miami,,1 day 16 hours,"4,435 km" +Santa Ana,Miami,,1 day 15 hours,"4,383 km" +Santa Maria,Miami,,1 day 18 hours,"4,655 km" +San Jose,Miami,,1 day 20 hours,"4,823 km" +Burbank,Miami,,1 day 15 hours,"4,414 km" +Arcata,Miami,,2 days 1 hour,"5,328 km" +Butte,Miami,,1 day 22 hours,"5,015 km" +Palm Springs,Miami,,1 day 14 hours,"4,231 km" +Los Angeles,Miami,,1 day 15 hours,"4,398 km" +Long Beach,Miami,,1 day 15 hours,"4,416 km" +San Francisco,Miami,,1 day 20 hours,"4,892 km" +Monterey,Miami,,1 day 20 hours,"4,790 km" +San Jose,Twin Falls,,10 hours 30 mins,"1,130 km" +San Jose,Pocatello,,12 hours 14 mins,"1,312 km" +San Jose,Idaho Falls,,12 hours 50 mins,"1,386 km" +San Jose,Sun Valley,,12 hours 10 mins,"1,265 km" +San Jose,Boise,,10 hours 21 mins,"1,080 km" +San Jose,Lewiston,,1 day 23 hours,"5,247 km" +Twin Falls,San Jose,,10 hours 36 mins,"1,131 km" +Twin Falls,Pocatello,,1 hour 46 mins,183 km +Twin Falls,Idaho Falls,,2 hours 22 mins,256 km +Twin Falls,Sun Valley,,1 hour 45 mins,134 km +Twin Falls,Boise,,2 hours 1 min,208 km +Twin Falls,Lewiston,,1 day 15 hours,"4,296 km" +Pocatello,San Jose,,12 hours 20 mins,"1,314 km" +Pocatello,Twin Falls,,1 hour 46 mins,183 km +Pocatello,Idaho Falls,,51 mins,83.6 km +Pocatello,Sun Valley,,2 hours 58 mins,270 km +Pocatello,Boise,,3 hours 23 mins,377 km +Pocatello,Lewiston,,1 day 13 hours,"4,114 km" +Idaho Falls,San Jose,,12 hours 56 mins,"1,388 km" +Idaho Falls,Twin Falls,,2 hours 22 mins,257 km +Idaho Falls,Pocatello,,49 mins,83.4 km +Idaho Falls,Sun Valley,,2 hours 43 mins,245 km +Idaho Falls,Boise,,3 hours 59 mins,451 km +Idaho Falls,Lewiston,,1 day 14 hours,"4,134 km" +Sun Valley,San Jose,,12 hours 16 mins,"1,266 km" +Sun Valley,Twin Falls,,1 hour 44 mins,134 km +Sun Valley,Pocatello,,2 hours 56 mins,269 km +Sun Valley,Idaho Falls,,2 hours 45 mins,245 km +Sun Valley,Boise,,2 hours 42 mins,249 km +Sun Valley,Lewiston,,1 day 16 hours,"4,419 km" +Boise,San Jose,,10 hours 26 mins,"1,083 km" +Boise,Twin Falls,,2 hours 0 mins,206 km +Boise,Pocatello,,3 hours 25 mins,378 km +Boise,Idaho Falls,,4 hours 1 min,451 km +Boise,Sun Valley,,2 hours 43 mins,249 km +Boise,Lewiston,,1 day 16 hours,"4,491 km" +Lewiston,San Jose,,2 days 0 hours,"5,244 km" +Lewiston,Twin Falls,,1 day 15 hours,"4,297 km" +Lewiston,Pocatello,,1 day 13 hours,"4,115 km" +Lewiston,Idaho Falls,,1 day 14 hours,"4,134 km" +Lewiston,Sun Valley,,1 day 16 hours,"4,419 km" +Lewiston,Boise,,1 day 16 hours,"4,491 km" +Atlanta,Buffalo,,13 hours 6 mins,"1,443 km" +Atlanta,Manhattan,,13 hours 14 mins,"1,397 km" +Atlanta,Niagara Falls,,13 hours 27 mins,"1,474 km" +Atlanta,Islip,,13 hours 55 mins,"1,468 km" +Atlanta,New York,,13 hours 5 mins,"1,391 km" +Atlanta,Watertown,,15 hours 28 mins,"1,663 km" +Atlanta,Newburgh,,13 hours 52 mins,"1,486 km" +Atlanta,Syracuse,,14 hours 25 mins,"1,550 km" +Atlanta,Plattsburgh,,17 hours 18 mins,"1,874 km" +Atlanta,Ogdensburg,,16 hours 27 mins,"1,756 km" +Atlanta,Ithaca,,14 hours 5 mins,"1,486 km" +Atlanta,Elmira,,13 hours 28 mins,"1,414 km" +Atlanta,White Plains,,13 hours 32 mins,"1,441 km" +Atlanta,Albany,,, +Atlanta,Binghamton,,13 hours 25 mins,"1,438 km" +Atlanta,Rochester,,14 hours 3 mins,"1,548 km" +Buffalo,Atlanta,,13 hours 7 mins,"1,443 km" +Manhattan,Atlanta,,13 hours 17 mins,"1,407 km" +Niagara Falls,Atlanta,,13 hours 29 mins,"1,474 km" +Islip,Atlanta,,13 hours 58 mins,"1,475 km" +New York,Atlanta,,13 hours 8 mins,"1,401 km" +Watertown,Atlanta,,15 hours 29 mins,"1,663 km" +Newburgh,Atlanta,,13 hours 55 mins,"1,485 km" +Syracuse,Atlanta,,14 hours 25 mins,"1,550 km" +Plattsburgh,Atlanta,,17 hours 20 mins,"1,874 km" +Ogdensburg,Atlanta,,16 hours 28 mins,"1,756 km" +Ithaca,Atlanta,,14 hours 6 mins,"1,486 km" +Elmira,Atlanta,,13 hours 30 mins,"1,415 km" +White Plains,Atlanta,,13 hours 34 mins,"1,450 km" +Albany,Atlanta,,, +Binghamton,Atlanta,,13 hours 25 mins,"1,437 km" +Rochester,Atlanta,,14 hours 6 mins,"1,548 km" +Cedar Rapids,Sarasota,,19 hours 38 mins,"2,163 km" +Cedar Rapids,Fort Myers,,20 hours 35 mins,"2,268 km" +Cedar Rapids,Gainesville,,17 hours 14 mins,"1,879 km" +Cedar Rapids,Orlando,,18 hours 38 mins,"2,051 km" +Cedar Rapids,Daytona Beach,,18 hours 42 mins,"2,051 km" +Cedar Rapids,Jacksonville,,17 hours 19 mins,"1,901 km" +Cedar Rapids,Tampa,,18 hours 50 mins,"2,079 km" +Cedar Rapids,Panama City,,16 hours 5 mins,"1,685 km" +Cedar Rapids,Key West,,1 day 1 hour,"2,665 km" +Cedar Rapids,West Palm Beach,,20 hours 51 mins,"2,306 km" +Cedar Rapids,Miami,,21 hours 49 mins,"2,411 km" +Cedar Rapids,Tallahassee,,16 hours 22 mins,"1,740 km" +Cedar Rapids,Punta Gorda,,20 hours 9 mins,"2,233 km" +Cedar Rapids,Fort Lauderdale,,21 hours 29 mins,"2,374 km" +Cedar Rapids,Pensacola,,14 hours 54 mins,"1,564 km" +Sarasota,Cedar Rapids,,19 hours 37 mins,"2,167 km" +Fort Myers,Cedar Rapids,,20 hours 33 mins,"2,273 km" +Gainesville,Cedar Rapids,,17 hours 12 mins,"1,882 km" +Orlando,Cedar Rapids,,18 hours 34 mins,"2,053 km" +Daytona Beach,Cedar Rapids,,18 hours 40 mins,"2,045 km" +Jacksonville,Cedar Rapids,,17 hours 20 mins,"1,905 km" +Tampa,Cedar Rapids,,18 hours 48 mins,"2,082 km" +Panama City,Cedar Rapids,,16 hours 7 mins,"1,683 km" +Key West,Cedar Rapids,,1 day 1 hour,"2,668 km" +West Palm Beach,Cedar Rapids,,20 hours 49 mins,"2,311 km" +Miami,Cedar Rapids,,21 hours 46 mins,"2,417 km" +Tallahassee,Cedar Rapids,,16 hours 24 mins,"1,738 km" +Punta Gorda,Cedar Rapids,,20 hours 8 mins,"2,237 km" +Fort Lauderdale,Cedar Rapids,,21 hours 27 mins,"2,379 km" +Pensacola,Cedar Rapids,,14 hours 56 mins,"1,565 km" +Bangor,Sarasota,,1 day 0 hours,"2,620 km" +Bangor,Fort Myers,,1 day 1 hour,"2,725 km" +Bangor,Gainesville,,21 hours 33 mins,"2,330 km" +Bangor,Orlando,,22 hours 26 mins,"2,447 km" +Bangor,Daytona Beach,,21 hours 48 mins,"2,373 km" +Bangor,Jacksonville,,20 hours 22 mins,"2,219 km" +Bangor,Tampa,,23 hours 25 mins,"2,535 km" +Bangor,Panama City,,1 day 0 hours,"2,640 km" +Bangor,Key West,,1 day 4 hours,"3,030 km" +Bangor,West Palm Beach,,1 day 0 hours,"2,677 km" +Bangor,Miami,,1 day 1 hour,"2,776 km" +Bangor,Tallahassee,,22 hours 46 mins,"2,478 km" +Bangor,Punta Gorda,,1 day 1 hour,"2,690 km" +Bangor,Fort Lauderdale,,1 day 1 hour,"2,745 km" +Bangor,Pensacola,,1 day 1 hour,"2,633 km" +Sarasota,Bangor,,1 day 0 hours,"2,609 km" +Fort Myers,Bangor,,1 day 1 hour,"2,714 km" +Gainesville,Bangor,,21 hours 29 mins,"2,319 km" +Orlando,Bangor,,22 hours 15 mins,"2,432 km" +Daytona Beach,Bangor,,21 hours 40 mins,"2,349 km" +Jacksonville,Bangor,,20 hours 18 mins,"2,207 km" +Tampa,Bangor,,23 hours 20 mins,"2,524 km" +Panama City,Bangor,,1 day 0 hours,"2,630 km" +Key West,Bangor,,1 day 4 hours,"3,016 km" +West Palm Beach,Bangor,,1 day 0 hours,"2,663 km" +Miami,Bangor,,1 day 1 hour,"2,764 km" +Tallahassee,Bangor,,22 hours 42 mins,"2,472 km" +Punta Gorda,Bangor,,1 day 1 hour,"2,678 km" +Fort Lauderdale,Bangor,,1 day 1 hour,"2,731 km" +Pensacola,Bangor,,1 day 0 hours,"2,619 km" +Key West,Abilene,,1 day 1 hour,"2,657 km" +Key West,Amarillo,,1 day 3 hours,"2,955 km" +Key West,Harlingen,,1 day 1 hour,"2,692 km" +Key West,Lubbock,,1 day 3 hours,"2,921 km" +Key West,College Station,,21 hours 21 mins,"2,287 km" +Key West,Corpus Christi,,23 hours 3 mins,"2,498 km" +Key West,Wichita Falls,,1 day 0 hours,"2,595 km" +Key West,Waco,,22 hours 40 mins,"2,420 km" +Key West,San Angelo,,1 day 2 hours,"2,748 km" +Key West,Houston,,19 hours 57 mins,"2,164 km" +Key West,San Antonio,,22 hours 49 mins,"2,478 km" +Key West,Del Rio,,1 day 1 hour,"2,725 km" +Key West,Mission,,, +Key West,Beaumont,,, +Key West,Longview,,20 hours 21 mins,"2,168 km" +Key West,Midland,,1 day 3 hours,"2,897 km" +Key West,El Paso,,1 day 7 hours,"3,363 km" +Key West,Brownsville,,1 day 1 hour,"2,732 km" +Key West,Austin,,22 hours 24 mins,"2,427 km" +Key West,Dallas,,22 hours 3 mins,"2,368 km" +Key West,Killeen,,22 hours 59 mins,"2,460 km" +Key West,Laredo,,1 day 1 hour,"2,670 km" +Key West,Texarkana,,20 hours 23 mins,"2,179 km" +Abilene,Key West,,1 day 1 hour,"2,652 km" +Amarillo,Key West,,1 day 3 hours,"2,944 km" +Harlingen,Key West,,1 day 1 hour,"2,692 km" +Lubbock,Key West,,1 day 3 hours,"2,918 km" +College Station,Key West,,21 hours 19 mins,"2,312 km" +Corpus Christi,Key West,,23 hours 7 mins,"2,503 km" +Wichita Falls,Key West,,1 day 0 hours,"2,582 km" +Waco,Key West,,22 hours 40 mins,"2,420 km" +San Angelo,Key West,,1 day 2 hours,"2,748 km" +Houston,Key West,,19 hours 56 mins,"2,164 km" +San Antonio,Key West,,22 hours 49 mins,"2,478 km" +Del Rio,Key West,,1 day 1 hour,"2,725 km" +Mission,Key West,,, +Beaumont,Key West,,, +Longview,Key West,,20 hours 19 mins,"2,162 km" +Midland,Key West,,1 day 3 hours,"2,892 km" +El Paso,Key West,,1 day 7 hours,"3,363 km" +Brownsville,Key West,,1 day 1 hour,"2,732 km" +Austin,Key West,,22 hours 24 mins,"2,427 km" +Dallas,Key West,,22 hours 3 mins,"2,361 km" +Killeen,Key West,,22 hours 58 mins,"2,476 km" +Laredo,Key West,,1 day 1 hour,"2,670 km" +Texarkana,Key West,,20 hours 24 mins,"2,180 km" +New York,Martha's Vineyard,,5 hours 24 mins,428 km +New York,Hyannis,,4 hours 20 mins,409 km +New York,Boston,,3 hours 41 mins,346 km +New York,Nantucket,,6 hours 38 mins,456 km +Martha's Vineyard,New York,,5 hours 36 mins,433 km +Hyannis,New York,,4 hours 27 mins,411 km +Boston,New York,,3 hours 46 mins,347 km +Nantucket,New York,,6 hours 44 mins,462 km +Nashville,San Diego,,1 day 5 hours,"3,200 km" +San Diego,Nashville,,1 day 5 hours,"3,198 km" +Albuquerque,Abilene,,7 hours 29 mins,785 km +Albuquerque,Amarillo,,4 hours 12 mins,464 km +Albuquerque,Harlingen,,14 hours 14 mins,"1,569 km" +Albuquerque,Lubbock,,5 hours 7 mins,518 km +Albuquerque,College Station,,11 hours 44 mins,"1,208 km" +Albuquerque,Corpus Christi,,12 hours 36 mins,"1,394 km" +Albuquerque,Wichita Falls,,7 hours 29 mins,819 km +Albuquerque,Waco,,10 hours 25 mins,"1,085 km" +Albuquerque,San Angelo,,7 hours 34 mins,818 km +Albuquerque,Houston,,12 hours 51 mins,"1,422 km" +Albuquerque,San Antonio,,10 hours 38 mins,"1,161 km" +Albuquerque,Del Rio,,9 hours 43 mins,976 km +Albuquerque,Mission,,, +Albuquerque,Beaumont,,, +Albuquerque,Longview,,11 hours 23 mins,"1,246 km" +Albuquerque,Midland,,6 hours 12 mins,652 km +Albuquerque,El Paso,,3 hours 50 mins,428 km +Albuquerque,Brownsville,,14 hours 35 mins,"1,609 km" +Albuquerque,Austin,,10 hours 55 mins,"1,122 km" +Albuquerque,Dallas,,9 hours 32 mins,"1,046 km" +Albuquerque,Killeen,,10 hours 16 mins,"1,058 km" +Albuquerque,Laredo,,12 hours 38 mins,"1,265 km" +Albuquerque,Texarkana,,11 hours 49 mins,"1,255 km" +Abilene,Albuquerque,,7 hours 31 mins,784 km +Amarillo,Albuquerque,,4 hours 14 mins,464 km +Harlingen,Albuquerque,,14 hours 9 mins,"1,566 km" +Lubbock,Albuquerque,,5 hours 7 mins,518 km +College Station,Albuquerque,,11 hours 44 mins,"1,212 km" +Corpus Christi,Albuquerque,,12 hours 33 mins,"1,390 km" +Wichita Falls,Albuquerque,,7 hours 32 mins,819 km +Waco,Albuquerque,,10 hours 28 mins,"1,144 km" +San Angelo,Albuquerque,,7 hours 33 mins,818 km +Houston,Albuquerque,,12 hours 53 mins,"1,422 km" +San Antonio,Albuquerque,,10 hours 37 mins,"1,157 km" +Del Rio,Albuquerque,,9 hours 43 mins,967 km +Mission,Albuquerque,,, +Beaumont,Albuquerque,,, +Longview,Albuquerque,,11 hours 24 mins,"1,252 km" +Midland,Albuquerque,,6 hours 12 mins,652 km +El Paso,Albuquerque,,3 hours 51 mins,428 km +Brownsville,Albuquerque,,14 hours 33 mins,"1,606 km" +Austin,Albuquerque,,10 hours 55 mins,"1,149 km" +Dallas,Albuquerque,,9 hours 33 mins,"1,045 km" +Killeen,Albuquerque,,10 hours 19 mins,"1,057 km" +Laredo,Albuquerque,,12 hours 39 mins,"1,257 km" +Texarkana,Albuquerque,,12 hours 0 mins,"1,269 km" +Oakland,Tucson,,12 hours 40 mins,"1,372 km" +Tucson,Oakland,,12 hours 42 mins,"1,373 km" +Little Rock,Abilene,,7 hours 19 mins,803 km +Little Rock,Amarillo,,8 hours 31 mins,961 km +Little Rock,Harlingen,,11 hours 39 mins,"1,226 km" +Little Rock,Lubbock,,9 hours 42 mins,"1,068 km" +Little Rock,College Station,,6 hours 47 mins,671 km +Little Rock,Corpus Christi,,9 hours 54 mins,"1,031 km" +Little Rock,Wichita Falls,,6 hours 31 mins,675 km +Little Rock,Waco,,6 hours 5 mins,669 km +Little Rock,San Angelo,,8 hours 33 mins,927 km +Little Rock,Houston,,6 hours 47 mins,698 km +Little Rock,San Antonio,,8 hours 41 mins,954 km +Little Rock,Del Rio,,10 hours 58 mins,"1,180 km" +Little Rock,Mission,,, +Little Rock,Beaumont,,, +Little Rock,Longview,,3 hours 39 mins,374 km +Little Rock,Midland,,9 hours 27 mins,"1,044 km" +Little Rock,El Paso,,13 hours 45 mins,"1,534 km" +Little Rock,Brownsville,,12 hours 1 min,"1,265 km" +Little Rock,Austin,,7 hours 29 mins,827 km +Little Rock,Dallas,,4 hours 42 mins,513 km +Little Rock,Killeen,,6 hours 53 mins,762 km +Little Rock,Laredo,,10 hours 57 mins,"1,205 km" +Little Rock,Texarkana,,2 hours 13 mins,233 km +Abilene,Little Rock,,7 hours 17 mins,804 km +Amarillo,Little Rock,,8 hours 30 mins,963 km +Harlingen,Little Rock,,11 hours 34 mins,"1,227 km" +Lubbock,Little Rock,,9 hours 25 mins,995 km +College Station,Little Rock,,6 hours 44 mins,668 km +Corpus Christi,Little Rock,,9 hours 56 mins,"1,037 km" +Wichita Falls,Little Rock,,6 hours 23 mins,662 km +Waco,Little Rock,,6 hours 2 mins,665 km +San Angelo,Little Rock,,8 hours 29 mins,928 km +Houston,Little Rock,,6 hours 46 mins,699 km +San Antonio,Little Rock,,8 hours 37 mins,953 km +Del Rio,Little Rock,,10 hours 52 mins,"1,181 km" +Mission,Little Rock,,, +Beaumont,Little Rock,,, +Longview,Little Rock,,3 hours 39 mins,374 km +Midland,Little Rock,,9 hours 23 mins,"1,044 km" +El Paso,Little Rock,,13 hours 41 mins,"1,534 km" +Brownsville,Little Rock,,11 hours 58 mins,"1,267 km" +Austin,Little Rock,,7 hours 26 mins,827 km +Dallas,Little Rock,,4 hours 40 mins,514 km +Killeen,Little Rock,,6 hours 51 mins,762 km +Laredo,Little Rock,,10 hours 55 mins,"1,204 km" +Texarkana,Little Rock,,2 hours 11 mins,232 km +Cincinnati,Moline,,6 hours 10 mins,669 km +Cincinnati,Belleville,,5 hours 13 mins,558 km +Cincinnati,Bloomington,,2 hours 29 mins,208 km +Cincinnati,Champaign,,3 hours 33 mins,379 km +Cincinnati,Chicago,,4 hours 34 mins,475 km +Cincinnati,Rockford,,5 hours 54 mins,620 km +Cincinnati,Peoria,,4 hours 47 mins,518 km +Moline,Cincinnati,,6 hours 8 mins,666 km +Belleville,Cincinnati,,5 hours 14 mins,557 km +Bloomington,Cincinnati,,2 hours 29 mins,207 km +Champaign,Cincinnati,,3 hours 34 mins,375 km +Chicago,Cincinnati,,4 hours 34 mins,477 km +Rockford,Cincinnati,,5 hours 53 mins,619 km +Peoria,Cincinnati,,4 hours 47 mins,518 km +Salt Lake City,Fresno,,11 hours 44 mins,"1,309 km" +Fresno,Salt Lake City,,11 hours 47 mins,"1,309 km" +Dallas,Bemidji,,17 hours 36 mins,"1,859 km" +Dallas,Minneapolis,,14 hours 7 mins,"1,515 km" +Dallas,Duluth,,16 hours 14 mins,"1,758 km" +Dallas,Brainerd,,16 hours 5 mins,"1,716 km" +Dallas,Gustavus,,13 hours 53 mins,"1,477 km" +Dallas,St. Cloud,,15 hours 5 mins,"1,618 km" +Dallas,Hibbing,,17 hours 7 mins,"1,821 km" +Dallas,International Falls,,18 hours 33 mins,"1,985 km" +Bemidji,Dallas,,17 hours 33 mins,"1,857 km" +Minneapolis,Dallas,,14 hours 6 mins,"1,512 km" +Duluth,Dallas,,16 hours 13 mins,"1,756 km" +Brainerd,Dallas,,16 hours 4 mins,"1,714 km" +Gustavus,Dallas,,13 hours 52 mins,"1,473 km" +St. Cloud,Dallas,,15 hours 4 mins,"1,615 km" +Hibbing,Dallas,,17 hours 5 mins,"1,818 km" +International Falls,Dallas,,18 hours 31 mins,"1,982 km" +Harrisburg,Abilene,,22 hours 53 mins,"2,515 km" +Harrisburg,Amarillo,,22 hours 43 mins,"2,479 km" +Harrisburg,Harlingen,,1 day 2 hours,"2,881 km" +Harrisburg,Lubbock,,1 day 0 hours,"2,618 km" +Harrisburg,College Station,,22 hours 3 mins,"2,379 km" +Harrisburg,Corpus Christi,,1 day 0 hours,"2,686 km" +Harrisburg,Wichita Falls,,20 hours 58 mins,"2,283 km" +Harrisburg,Waco,,21 hours 39 mins,"2,380 km" +Harrisburg,San Angelo,,1 day 0 hours,"2,639 km" +Harrisburg,Houston,,21 hours 18 mins,"2,353 km" +Harrisburg,San Antonio,,1 day 0 hours,"2,667 km" +Harrisburg,Del Rio,,1 day 3 hours,"2,892 km" +Harrisburg,Mission,,, +Harrisburg,Beaumont,,, +Harrisburg,Longview,,19 hours 9 mins,"2,112 km" +Harrisburg,Midland,,1 day 1 hour,"2,755 km" +Harrisburg,El Paso,,1 day 5 hours,"3,245 km" +Harrisburg,Brownsville,,1 day 3 hours,"2,920 km" +Harrisburg,Austin,,23 hours 4 mins,"2,539 km" +Harrisburg,Dallas,,20 hours 16 mins,"2,225 km" +Harrisburg,Killeen,,22 hours 27 mins,"2,473 km" +Harrisburg,Laredo,,1 day 2 hours,"2,859 km" +Harrisburg,Texarkana,,17 hours 47 mins,"1,945 km" +Abilene,Harrisburg,,22 hours 49 mins,"2,514 km" +Amarillo,Harrisburg,,22 hours 44 mins,"2,479 km" +Harlingen,Harrisburg,,1 day 2 hours,"2,881 km" +Lubbock,Harrisburg,,1 day 0 hours,"2,619 km" +College Station,Harrisburg,,21 hours 55 mins,"2,374 km" +Corpus Christi,Harrisburg,,1 day 0 hours,"2,692 km" +Wichita Falls,Harrisburg,,20 hours 59 mins,"2,284 km" +Waco,Harrisburg,,21 hours 34 mins,"2,376 km" +San Angelo,Harrisburg,,1 day 0 hours,"2,639 km" +Houston,Harrisburg,,21 hours 16 mins,"2,353 km" +San Antonio,Harrisburg,,1 day 0 hours,"2,664 km" +Del Rio,Harrisburg,,1 day 2 hours,"2,892 km" +Mission,Harrisburg,,, +Beaumont,Harrisburg,,, +Longview,Harrisburg,,19 hours 5 mins,"2,107 km" +Midland,Harrisburg,,1 day 1 hour,"2,754 km" +El Paso,Harrisburg,,1 day 5 hours,"3,244 km" +Brownsville,Harrisburg,,1 day 2 hours,"2,921 km" +Austin,Harrisburg,,22 hours 59 mins,"2,538 km" +Dallas,Harrisburg,,20 hours 12 mins,"2,224 km" +Killeen,Harrisburg,,22 hours 23 mins,"2,472 km" +Laredo,Harrisburg,,1 day 2 hours,"2,859 km" +Texarkana,Harrisburg,,17 hours 43 mins,"1,943 km" +Austin,San Diego,,19 hours 0 mins,"2,092 km" +Austin,Redding,,1 day 4 hours,"3,092 km" +Austin,Sacramento,,1 day 2 hours,"2,834 km" +Austin,Fresno,,23 hours 33 mins,"2,567 km" +Austin,San Luis Obispo,,23 hours 17 mins,"2,523 km" +Austin,Oakland,,1 day 2 hours,"2,811 km" +Austin,Santa Barbara,,21 hours 47 mins,"2,372 km" +Austin,Stockton,,1 day 1 hour,"2,758 km" +Austin,Santa Rosa,,1 day 3 hours,"2,904 km" +Austin,Bakersfield,,22 hours 0 mins,"2,395 km" +Austin,Santa Ana,,20 hours 9 mins,"2,220 km" +Austin,Santa Maria,,22 hours 53 mins,"2,474 km" +Austin,San Jose,,1 day 1 hour,"2,762 km" +Austin,Burbank,,20 hours 27 mins,"2,239 km" +Austin,Arcata,,1 day 6 hours,"3,264 km" +Austin,Butte,,1 day 3 hours,"2,967 km" +Austin,Palm Springs,,18 hours 46 mins,"2,050 km" +Austin,Los Angeles,,20 hours 19 mins,"2,217 km" +Austin,Long Beach,,20 hours 30 mins,"2,236 km" +Austin,San Francisco,,1 day 2 hours,"2,830 km" +Austin,Monterey,,1 day 1 hour,"2,728 km" +San Diego,Austin,,19 hours 4 mins,"2,091 km" +Redding,Austin,,1 day 4 hours,"3,090 km" +Sacramento,Austin,,1 day 2 hours,"2,833 km" +Fresno,Austin,,23 hours 33 mins,"2,565 km" +San Luis Obispo,Austin,,23 hours 20 mins,"2,522 km" +Oakland,Austin,,1 day 2 hours,"2,810 km" +Santa Barbara,Austin,,21 hours 49 mins,"2,371 km" +Stockton,Austin,,1 day 1 hour,"2,757 km" +Santa Rosa,Austin,,1 day 3 hours,"2,903 km" +Bakersfield,Austin,,22 hours 0 mins,"2,394 km" +Santa Ana,Austin,,20 hours 13 mins,"2,200 km" +Santa Maria,Austin,,22 hours 53 mins,"2,472 km" +San Jose,Austin,,1 day 1 hour,"2,760 km" +Burbank,Austin,,20 hours 25 mins,"2,231 km" +Arcata,Austin,,1 day 6 hours,"3,264 km" +Butte,Austin,,1 day 3 hours,"2,965 km" +Palm Springs,Austin,,18 hours 48 mins,"2,048 km" +Los Angeles,Austin,,20 hours 18 mins,"2,215 km" +Long Beach,Austin,,20 hours 30 mins,"2,234 km" +San Francisco,Austin,,1 day 2 hours,"2,828 km" +Monterey,Austin,,1 day 1 hour,"2,727 km" +Memphis,Buffalo,,13 hours 27 mins,"1,476 km" +Memphis,Manhattan,,16 hours 31 mins,"1,770 km" +Memphis,Niagara Falls,,13 hours 48 mins,"1,506 km" +Memphis,Islip,,17 hours 12 mins,"1,849 km" +Memphis,New York,,16 hours 21 mins,"1,764 km" +Memphis,Watertown,,16 hours 27 mins,"1,804 km" +Memphis,Newburgh,,16 hours 50 mins,"1,832 km" +Memphis,Syracuse,,15 hours 30 mins,"1,702 km" +Memphis,Plattsburgh,,19 hours 19 mins,"2,062 km" +Memphis,Ogdensburg,,17 hours 25 mins,"1,897 km" +Memphis,Ithaca,,15 hours 37 mins,"1,695 km" +Memphis,Elmira,,15 hours 7 mins,"1,657 km" +Memphis,White Plains,,16 hours 41 mins,"1,817 km" +Memphis,Albany,,, +Memphis,Binghamton,,15 hours 55 mins,"1,745 km" +Memphis,Rochester,,14 hours 24 mins,"1,580 km" +Buffalo,Memphis,,13 hours 29 mins,"1,478 km" +Manhattan,Memphis,,16 hours 30 mins,"1,770 km" +Niagara Falls,Memphis,,13 hours 51 mins,"1,508 km" +Islip,Memphis,,17 hours 11 mins,"1,848 km" +New York,Memphis,,16 hours 20 mins,"1,762 km" +Watertown,Memphis,,16 hours 30 mins,"1,806 km" +Newburgh,Memphis,,16 hours 52 mins,"1,832 km" +Syracuse,Memphis,,15 hours 33 mins,"1,704 km" +Plattsburgh,Memphis,,19 hours 22 mins,"2,066 km" +Ogdensburg,Memphis,,17 hours 29 mins,"1,899 km" +Ithaca,Memphis,,15 hours 39 mins,"1,697 km" +Elmira,Memphis,,15 hours 9 mins,"1,660 km" +White Plains,Memphis,,16 hours 41 mins,"1,815 km" +Albany,Memphis,,, +Binghamton,Memphis,,15 hours 58 mins,"1,748 km" +Rochester,Memphis,,14 hours 28 mins,"1,583 km" +St. Louis,State College,,11 hours 19 mins,"1,191 km" +St. Louis,Johnstown,,10 hours 15 mins,"1,079 km" +St. Louis,Harrisburg,,11 hours 54 mins,"1,264 km" +St. Louis,Erie,,9 hours 42 mins,"1,056 km" +St. Louis,Pittsburgh,,9 hours 3 mins,969 km +St. Louis,Latrobe,,9 hours 41 mins,"1,015 km" +St. Louis,Philadelphia,,13 hours 23 mins,"1,426 km" +St. Louis,Lewisburg,,12 hours 2 mins,"1,309 km" +St. Louis,Scranton,,13 hours 12 mins,"1,435 km" +State College,St. Louis,,11 hours 18 mins,"1,195 km" +Johnstown,St. Louis,,10 hours 14 mins,"1,075 km" +Harrisburg,St. Louis,,11 hours 51 mins,"1,262 km" +Erie,St. Louis,,9 hours 42 mins,"1,053 km" +Pittsburgh,St. Louis,,9 hours 2 mins,968 km +Latrobe,St. Louis,,9 hours 37 mins,"1,014 km" +Philadelphia,St. Louis,,13 hours 23 mins,"1,425 km" +Lewisburg,St. Louis,,11 hours 58 mins,"1,305 km" +Scranton,St. Louis,,13 hours 8 mins,"1,430 km" +Dallas,Grand Junction,,15 hours 3 mins,"1,500 km" +Grand Junction,Dallas,,15 hours 7 mins,"1,503 km" +Fort Lauderdale,Buffalo,,19 hours 55 mins,"2,200 km" +Fort Lauderdale,Manhattan,,18 hours 26 mins,"2,030 km" +Fort Lauderdale,Niagara Falls,,20 hours 16 mins,"2,230 km" +Fort Lauderdale,Islip,,19 hours 7 mins,"2,101 km" +Fort Lauderdale,New York,,18 hours 17 mins,"2,024 km" +Fort Lauderdale,Watertown,,21 hours 20 mins,"2,360 km" +Fort Lauderdale,Newburgh,,19 hours 7 mins,"2,116 km" +Fort Lauderdale,Syracuse,,20 hours 17 mins,"2,247 km" +Fort Lauderdale,Plattsburgh,,22 hours 33 mins,"2,504 km" +Fort Lauderdale,Ogdensburg,,22 hours 18 mins,"2,453 km" +Fort Lauderdale,Ithaca,,20 hours 1 min,"2,186 km" +Fort Lauderdale,Elmira,,19 hours 24 mins,"2,114 km" +Fort Lauderdale,White Plains,,18 hours 44 mins,"2,075 km" +Fort Lauderdale,Albany,,, +Fort Lauderdale,Binghamton,,19 hours 17 mins,"2,135 km" +Fort Lauderdale,Rochester,,20 hours 40 mins,"2,276 km" +Buffalo,Fort Lauderdale,,19 hours 58 mins,"2,203 km" +Manhattan,Fort Lauderdale,,18 hours 31 mins,"2,040 km" +Niagara Falls,Fort Lauderdale,,20 hours 19 mins,"2,233 km" +Islip,Fort Lauderdale,,19 hours 12 mins,"2,109 km" +New York,Fort Lauderdale,,18 hours 23 mins,"2,034 km" +Watertown,Fort Lauderdale,,21 hours 32 mins,"2,365 km" +Newburgh,Fort Lauderdale,,19 hours 15 mins,"2,127 km" +Syracuse,Fort Lauderdale,,20 hours 28 mins,"2,252 km" +Plattsburgh,Fort Lauderdale,,22 hours 40 mins,"2,515 km" +Ogdensburg,Fort Lauderdale,,22 hours 31 mins,"2,458 km" +Ithaca,Fort Lauderdale,,20 hours 12 mins,"2,195 km" +Elmira,Fort Lauderdale,,19 hours 35 mins,"2,124 km" +White Plains,Fort Lauderdale,,18 hours 49 mins,"2,084 km" +Albany,Fort Lauderdale,,, +Binghamton,Fort Lauderdale,,19 hours 28 mins,"2,139 km" +Rochester,Fort Lauderdale,,20 hours 51 mins,"2,285 km" +Latrobe,Sarasota,,16 hours 18 mins,"1,721 km" +Latrobe,Fort Myers,,17 hours 15 mins,"1,826 km" +Latrobe,Gainesville,,13 hours 38 mins,"1,431 km" +Latrobe,Orlando,,14 hours 31 mins,"1,548 km" +Latrobe,Daytona Beach,,13 hours 53 mins,"1,474 km" +Latrobe,Jacksonville,,12 hours 27 mins,"1,320 km" +Latrobe,Tampa,,15 hours 30 mins,"1,636 km" +Latrobe,Panama City,,15 hours 26 mins,"1,550 km" +Latrobe,Key West,,20 hours 27 mins,"2,131 km" +Latrobe,West Palm Beach,,16 hours 26 mins,"1,778 km" +Latrobe,Miami,,17 hours 26 mins,"1,877 km" +Latrobe,Tallahassee,,14 hours 38 mins,"1,417 km" +Latrobe,Punta Gorda,,16 hours 50 mins,"1,791 km" +Latrobe,Fort Lauderdale,,17 hours 4 mins,"1,846 km" +Latrobe,Pensacola,,15 hours 5 mins,"1,589 km" +Sarasota,Latrobe,,16 hours 22 mins,"1,722 km" +Fort Myers,Latrobe,,17 hours 19 mins,"1,828 km" +Gainesville,Latrobe,,13 hours 43 mins,"1,433 km" +Orlando,Latrobe,,14 hours 29 mins,"1,546 km" +Daytona Beach,Latrobe,,13 hours 54 mins,"1,463 km" +Jacksonville,Latrobe,,12 hours 32 mins,"1,320 km" +Tampa,Latrobe,,15 hours 34 mins,"1,637 km" +Panama City,Latrobe,,15 hours 27 mins,"1,552 km" +Key West,Latrobe,,20 hours 29 mins,"2,129 km" +West Palm Beach,Latrobe,,16 hours 26 mins,"1,776 km" +Miami,Latrobe,,17 hours 25 mins,"1,878 km" +Tallahassee,Latrobe,,14 hours 43 mins,"1,417 km" +Punta Gorda,Latrobe,,16 hours 53 mins,"1,792 km" +Fort Lauderdale,Latrobe,,17 hours 5 mins,"1,844 km" +Pensacola,Latrobe,,15 hours 4 mins,"1,589 km" +Atlanta,San Francisco,,1 day 12 hours,"3,995 km" +San Francisco,Atlanta,,1 day 12 hours,"3,982 km" +Minneapolis,Toledo,,9 hours 43 mins,"1,057 km" +Minneapolis,Cleveland,,11 hours 14 mins,"1,219 km" +Minneapolis,Dayton,,10 hours 27 mins,"1,137 km" +Minneapolis,Columbus,,11 hours 15 mins,"1,230 km" +Minneapolis,Akron,,11 hours 30 mins,"1,253 km" +Minneapolis,Cincinnati,,10 hours 24 mins,"1,133 km" +Toledo,Minneapolis,,9 hours 46 mins,"1,049 km" +Toledo,Cleveland,,1 hour 50 mins,183 km +Toledo,Dayton,,2 hours 14 mins,241 km +Toledo,Columbus,,2 hours 20 mins,228 km +Toledo,Akron,,2 hours 6 mins,218 km +Toledo,Cincinnati,,3 hours 1 min,326 km +Cleveland,Minneapolis,,11 hours 14 mins,"1,209 km" +Cleveland,Toledo,,1 hour 47 mins,184 km +Cleveland,Dayton,,3 hours 11 mins,340 km +Cleveland,Columbus,,2 hours 8 mins,228 km +Cleveland,Akron,,42 mins,62.3 km +Cleveland,Cincinnati,,3 hours 44 mins,400 km +Dayton,Minneapolis,,10 hours 31 mins,"1,138 km" +Dayton,Toledo,,2 hours 13 mins,240 km +Dayton,Cleveland,,3 hours 13 mins,342 km +Dayton,Columbus,,1 hour 7 mins,115 km +Dayton,Akron,,2 hours 58 mins,314 km +Dayton,Cincinnati,,56 mins,87.2 km +Columbus,Minneapolis,,11 hours 19 mins,"1,233 km" +Columbus,Toledo,,2 hours 20 mins,229 km +Columbus,Cleveland,,2 hours 11 mins,230 km +Columbus,Dayton,,1 hour 9 mins,116 km +Columbus,Akron,,1 hour 57 mins,202 km +Columbus,Cincinnati,,1 hour 39 mins,172 km +Akron,Minneapolis,,11 hours 32 mins,"1,247 km" +Akron,Toledo,,2 hours 5 mins,222 km +Akron,Cleveland,,44 mins,63.2 km +Akron,Dayton,,2 hours 55 mins,314 km +Akron,Columbus,,1 hour 52 mins,201 km +Akron,Cincinnati,,3 hours 28 mins,373 km +Cincinnati,Minneapolis,,10 hours 26 mins,"1,135 km" +Cincinnati,Toledo,,3 hours 1 min,326 km +Cincinnati,Cleveland,,3 hours 44 mins,401 km +Cincinnati,Dayton,,55 mins,87.3 km +Cincinnati,Columbus,,1 hour 39 mins,173 km +Cincinnati,Akron,,3 hours 29 mins,373 km +Little Rock,Phoenix,,18 hours 54 mins,"2,087 km" +Phoenix,Little Rock,,18 hours 51 mins,"2,090 km" +Memphis,Alamosa,,15 hours 25 mins,"1,670 km" +Memphis,Grand Junction,,19 hours 15 mins,"2,149 km" +Memphis,Durango,,17 hours 50 mins,"1,961 km" +Memphis,Colorado Springs,,15 hours 32 mins,"1,734 km" +Memphis,Gunnison,,17 hours 23 mins,"1,831 km" +Memphis,Denver,,15 hours 35 mins,"1,760 km" +Alamosa,Memphis,,15 hours 22 mins,"1,669 km" +Grand Junction,Memphis,,19 hours 8 mins,"2,148 km" +Durango,Memphis,,17 hours 45 mins,"1,960 km" +Colorado Springs,Memphis,,15 hours 28 mins,"1,734 km" +Gunnison,Memphis,,17 hours 19 mins,"1,830 km" +Denver,Memphis,,15 hours 33 mins,"1,763 km" +Cleveland,Sarasota,,16 hours 59 mins,"1,842 km" +Cleveland,Fort Myers,,17 hours 57 mins,"1,948 km" +Cleveland,Gainesville,,14 hours 19 mins,"1,552 km" +Cleveland,Orlando,,15 hours 12 mins,"1,670 km" +Cleveland,Daytona Beach,,14 hours 34 mins,"1,595 km" +Cleveland,Jacksonville,,13 hours 9 mins,"1,442 km" +Cleveland,Tampa,,16 hours 12 mins,"1,758 km" +Cleveland,Panama City,,15 hours 1 min,"1,573 km" +Cleveland,Key West,,21 hours 8 mins,"2,252 km" +Cleveland,West Palm Beach,,17 hours 7 mins,"1,900 km" +Cleveland,Miami,,18 hours 8 mins,"1,999 km" +Cleveland,Tallahassee,,14 hours 38 mins,"1,572 km" +Cleveland,Punta Gorda,,17 hours 31 mins,"1,912 km" +Cleveland,Fort Lauderdale,,17 hours 45 mins,"1,968 km" +Cleveland,Pensacola,,14 hours 13 mins,"1,551 km" +Sarasota,Cleveland,,17 hours 3 mins,"1,845 km" +Fort Myers,Cleveland,,18 hours 0 mins,"1,951 km" +Gainesville,Cleveland,,14 hours 25 mins,"1,556 km" +Orlando,Cleveland,,15 hours 10 mins,"1,669 km" +Daytona Beach,Cleveland,,14 hours 36 mins,"1,586 km" +Jacksonville,Cleveland,,13 hours 13 mins,"1,443 km" +Tampa,Cleveland,,16 hours 15 mins,"1,760 km" +Panama City,Cleveland,,15 hours 2 mins,"1,568 km" +Key West,Cleveland,,21 hours 10 mins,"2,252 km" +West Palm Beach,Cleveland,,17 hours 8 mins,"1,899 km" +Miami,Cleveland,,18 hours 7 mins,"2,001 km" +Tallahassee,Cleveland,,14 hours 38 mins,"1,573 km" +Punta Gorda,Cleveland,,17 hours 35 mins,"1,915 km" +Fort Lauderdale,Cleveland,,17 hours 46 mins,"1,968 km" +Pensacola,Cleveland,,14 hours 9 mins,"1,549 km" +Denver,Bozeman,,9 hours 54 mins,"1,119 km" +Bozeman,Denver,,9 hours 46 mins,"1,115 km" +Syracuse,Newark,,3 hours 44 mins,382 km +Newark,Syracuse,,3 hours 49 mins,382 km +Boston,Newark,,3 hours 51 mins,363 km +Newark,Boston,,3 hours 50 mins,361 km +Tampa,San Diego,,1 day 11 hours,"3,941 km" +Tampa,Redding,,1 day 20 hours,"4,824 km" +Tampa,Sacramento,,1 day 17 hours,"4,559 km" +Tampa,Fresno,,1 day 15 hours,"4,289 km" +Tampa,San Luis Obispo,,1 day 15 hours,"4,372 km" +Tampa,Oakland,,1 day 17 hours,"4,550 km" +Tampa,Santa Barbara,,1 day 14 hours,"4,221 km" +Tampa,Stockton,,1 day 17 hours,"4,488 km" +Tampa,Santa Rosa,,1 day 18 hours,"4,643 km" +Tampa,Bakersfield,,1 day 13 hours,"4,113 km" +Tampa,Santa Ana,,1 day 12 hours,"4,069 km" +Tampa,Santa Maria,,1 day 15 hours,"4,323 km" +Tampa,San Jose,,1 day 17 hours,"4,501 km" +Tampa,Burbank,,1 day 12 hours,"4,088 km" +Tampa,Arcata,,1 day 22 hours,"5,003 km" +Tampa,Butte,,1 day 19 hours,"4,698 km" +Tampa,Palm Springs,,1 day 11 hours,"3,899 km" +Tampa,Los Angeles,,1 day 12 hours,"4,066 km" +Tampa,Long Beach,,1 day 12 hours,"4,085 km" +Tampa,San Francisco,,1 day 17 hours,"4,569 km" +Tampa,Monterey,,1 day 17 hours,"4,467 km" +San Diego,Tampa,,1 day 11 hours,"3,940 km" +Redding,Tampa,,1 day 20 hours,"4,808 km" +Sacramento,Tampa,,1 day 17 hours,"4,550 km" +Fresno,Tampa,,1 day 15 hours,"4,277 km" +San Luis Obispo,Tampa,,1 day 15 hours,"4,372 km" +Oakland,Tampa,,1 day 17 hours,"4,541 km" +Santa Barbara,Tampa,,1 day 14 hours,"4,220 km" +Stockton,Tampa,,1 day 17 hours,"4,477 km" +Santa Rosa,Tampa,,1 day 18 hours,"4,633 km" +Bakersfield,Tampa,,1 day 13 hours,"4,102 km" +Santa Ana,Tampa,,1 day 12 hours,"4,050 km" +Santa Maria,Tampa,,1 day 15 hours,"4,322 km" +San Jose,Tampa,,1 day 17 hours,"4,491 km" +Burbank,Tampa,,1 day 12 hours,"4,081 km" +Arcata,Tampa,,1 day 22 hours,"4,995 km" +Butte,Tampa,,1 day 19 hours,"4,683 km" +Palm Springs,Tampa,,1 day 11 hours,"3,898 km" +Los Angeles,Tampa,,1 day 12 hours,"4,065 km" +Long Beach,Tampa,,1 day 12 hours,"4,084 km" +San Francisco,Tampa,,1 day 17 hours,"4,559 km" +Monterey,Tampa,,1 day 17 hours,"4,457 km" +Wilmington,New York,,9 hours 2 mins,949 km +New York,Wilmington,,9 hours 6 mins,959 km +Boston,Jacksonville,,17 hours 8 mins,"1,853 km" +Jacksonville,Boston,,17 hours 4 mins,"1,843 km" +Boise,San Diego,,14 hours 24 mins,"1,533 km" +Boise,Redding,,8 hours 47 mins,842 km +Boise,Sacramento,,8 hours 35 mins,890 km +Boise,Fresno,,11 hours 8 mins,"1,159 km" +Boise,San Luis Obispo,,13 hours 2 mins,"1,361 km" +Boise,Oakland,,9 hours 49 mins,"1,020 km" +Boise,Santa Barbara,,14 hours 18 mins,"1,420 km" +Boise,Stockton,,9 hours 17 mins,967 km +Boise,Santa Rosa,,10 hours 8 mins,"1,045 km" +Boise,Bakersfield,,12 hours 44 mins,"1,331 km" +Boise,Santa Ana,,13 hours 32 mins,"1,434 km" +Boise,Santa Maria,,13 hours 32 mins,"1,411 km" +Boise,San Jose,,10 hours 26 mins,"1,083 km" +Boise,Burbank,,13 hours 23 mins,"1,343 km" +Boise,Arcata,,11 hours 23 mins,"1,051 km" +Boise,Butte,,9 hours 17 mins,929 km +Boise,Palm Springs,,13 hours 37 mins,"1,449 km" +Boise,Los Angeles,,13 hours 32 mins,"1,434 km" +Boise,Long Beach,,13 hours 44 mins,"1,457 km" +Boise,San Francisco,,9 hours 58 mins,"1,030 km" +Boise,Monterey,,11 hours 28 mins,"1,190 km" +San Diego,Boise,,14 hours 24 mins,"1,535 km" +Redding,Boise,,8 hours 43 mins,843 km +Sacramento,Boise,,8 hours 34 mins,890 km +Fresno,Boise,,11 hours 4 mins,"1,157 km" +San Luis Obispo,Boise,,12 hours 57 mins,"1,369 km" +Oakland,Boise,,9 hours 46 mins,"1,019 km" +Santa Barbara,Boise,,14 hours 10 mins,"1,418 km" +Stockton,Boise,,9 hours 16 mins,966 km +Santa Rosa,Boise,,10 hours 7 mins,"1,045 km" +Bakersfield,Boise,,12 hours 39 mins,"1,330 km" +Santa Ana,Boise,,13 hours 27 mins,"1,433 km" +Santa Maria,Boise,,13 hours 27 mins,"1,421 km" +San Jose,Boise,,10 hours 21 mins,"1,080 km" +Burbank,Boise,,13 hours 11 mins,"1,340 km" +Arcata,Boise,,11 hours 20 mins,"1,050 km" +Butte,Boise,,9 hours 13 mins,929 km +Palm Springs,Boise,,13 hours 33 mins,"1,450 km" +Los Angeles,Boise,,13 hours 24 mins,"1,355 km" +Long Beach,Boise,,13 hours 44 mins,"1,463 km" +San Francisco,Boise,,9 hours 53 mins,"1,029 km" +Monterey,Boise,,11 hours 22 mins,"1,187 km" +Tulsa,Phoenix,,15 hours 38 mins,"1,714 km" +Phoenix,Tulsa,,15 hours 37 mins,"1,714 km" +Roswell,Phoenix,,8 hours 42 mins,929 km +Phoenix,Roswell,,8 hours 48 mins,921 km +Philadelphia,Buffalo,,6 hours 8 mins,603 km +Philadelphia,Manhattan,,1 hour 51 mins,157 km +Philadelphia,Niagara Falls,,6 hours 25 mins,668 km +Philadelphia,Islip,,2 hours 31 mins,228 km +Philadelphia,New York,,1 hour 42 mins,151 km +Philadelphia,Watertown,,5 hours 4 mins,521 km +Philadelphia,Newburgh,,2 hours 31 mins,243 km +Philadelphia,Syracuse,,4 hours 0 mins,408 km +Philadelphia,Plattsburgh,,5 hours 58 mins,631 km +Philadelphia,Ogdensburg,,6 hours 2 mins,614 km +Philadelphia,Ithaca,,3 hours 54 mins,369 km +Philadelphia,Elmira,,3 hours 48 mins,383 km +Philadelphia,White Plains,,2 hours 9 mins,202 km +Philadelphia,Albany,,, +Philadelphia,Binghamton,,3 hours 0 mins,296 km +Philadelphia,Rochester,,5 hours 17 mins,547 km +Buffalo,Philadelphia,,6 hours 8 mins,611 km +Manhattan,Philadelphia,,1 hour 49 mins,158 km +Niagara Falls,Philadelphia,,6 hours 23 mins,668 km +Islip,Philadelphia,,2 hours 30 mins,226 km +New York,Philadelphia,,1 hour 41 mins,152 km +Watertown,Philadelphia,,5 hours 2 mins,521 km +Newburgh,Philadelphia,,2 hours 33 mins,245 km +Syracuse,Philadelphia,,3 hours 58 mins,408 km +Plattsburgh,Philadelphia,,5 hours 58 mins,633 km +Ogdensburg,Philadelphia,,6 hours 1 min,614 km +Ithaca,Philadelphia,,3 hours 52 mins,369 km +Elmira,Philadelphia,,3 hours 44 mins,382 km +White Plains,Philadelphia,,2 hours 7 mins,201 km +Albany,Philadelphia,,, +Binghamton,Philadelphia,,2 hours 57 mins,295 km +Rochester,Philadelphia,,5 hours 14 mins,547 km +Tampa,Greensboro,,9 hours 44 mins,"1,051 km" +Tampa,Wilmington,,9 hours 19 mins,"1,019 km" +Tampa,New Bern,,10 hours 35 mins,"1,153 km" +Tampa,Charlotte,,8 hours 34 mins,934 km +Tampa,Raleigh,,9 hours 31 mins,"1,046 km" +Tampa,Asheville,,9 hours 29 mins,"1,029 km" +Tampa,Fayetteville,,8 hours 37 mins,950 km +Greensboro,Tampa,,9 hours 46 mins,"1,037 km" +Wilmington,Tampa,,9 hours 21 mins,"1,019 km" +New Bern,Tampa,,10 hours 37 mins,"1,153 km" +Charlotte,Tampa,,8 hours 34 mins,933 km +Raleigh,Tampa,,9 hours 34 mins,"1,048 km" +Asheville,Tampa,,9 hours 28 mins,"1,028 km" +Fayetteville,Tampa,,8 hours 38 mins,949 km +Hartford,Abilene,,1 day 3 hours,"2,976 km" +Hartford,Amarillo,,1 day 3 hours,"2,952 km" +Hartford,Harlingen,,1 day 7 hours,"3,343 km" +Hartford,Lubbock,,1 day 4 hours,"3,090 km" +Hartford,College Station,,1 day 2 hours,"2,840 km" +Hartford,Corpus Christi,,1 day 5 hours,"3,148 km" +Hartford,Wichita Falls,,1 day 1 hour,"2,755 km" +Hartford,Waco,,1 day 2 hours,"2,842 km" +Hartford,San Angelo,,1 day 5 hours,"3,100 km" +Hartford,Houston,,1 day 2 hours,"2,815 km" +Hartford,San Antonio,,1 day 5 hours,"3,129 km" +Hartford,Del Rio,,1 day 7 hours,"3,353 km" +Hartford,Mission,,, +Hartford,Beaumont,,, +Hartford,Longview,,23 hours 35 mins,"2,574 km" +Hartford,Midland,,1 day 5 hours,"3,201 km" +Hartford,El Paso,,1 day 9 hours,"3,649 km" +Hartford,Brownsville,,1 day 7 hours,"3,382 km" +Hartford,Austin,,1 day 3 hours,"3,000 km" +Hartford,Dallas,,1 day 1 hour,"2,686 km" +Hartford,Killeen,,1 day 3 hours,"2,935 km" +Hartford,Laredo,,1 day 7 hours,"3,320 km" +Hartford,Texarkana,,22 hours 12 mins,"2,406 km" +Abilene,Hartford,,1 day 3 hours,"2,978 km" +Amarillo,Hartford,,1 day 3 hours,"2,954 km" +Harlingen,Hartford,,1 day 7 hours,"3,344 km" +Lubbock,Hartford,,1 day 4 hours,"3,094 km" +College Station,Hartford,,1 day 2 hours,"2,837 km" +Corpus Christi,Hartford,,1 day 5 hours,"3,155 km" +Wichita Falls,Hartford,,1 day 1 hour,"2,759 km" +Waco,Hartford,,1 day 2 hours,"2,839 km" +San Angelo,Hartford,,1 day 4 hours,"3,102 km" +Houston,Hartford,,1 day 2 hours,"2,817 km" +San Antonio,Hartford,,1 day 5 hours,"3,127 km" +Del Rio,Hartford,,1 day 7 hours,"3,355 km" +Mission,Hartford,,, +Beaumont,Hartford,,, +Longview,Hartford,,23 hours 33 mins,"2,570 km" +Midland,Hartford,,1 day 5 hours,"3,206 km" +El Paso,Hartford,,1 day 9 hours,"3,651 km" +Brownsville,Hartford,,1 day 7 hours,"3,384 km" +Austin,Hartford,,1 day 3 hours,"3,001 km" +Dallas,Hartford,,1 day 1 hour,"2,688 km" +Killeen,Hartford,,1 day 3 hours,"2,936 km" +Laredo,Hartford,,1 day 7 hours,"3,323 km" +Texarkana,Hartford,,22 hours 12 mins,"2,406 km" +Bloomington,Sarasota,,14 hours 55 mins,"1,646 km" +Bloomington,Fort Myers,,15 hours 52 mins,"1,751 km" +Bloomington,Gainesville,,12 hours 31 mins,"1,362 km" +Bloomington,Orlando,,13 hours 55 mins,"1,534 km" +Bloomington,Daytona Beach,,13 hours 59 mins,"1,534 km" +Bloomington,Jacksonville,,12 hours 36 mins,"1,384 km" +Bloomington,Tampa,,14 hours 7 mins,"1,562 km" +Bloomington,Panama City,,11 hours 22 mins,"1,168 km" +Bloomington,Key West,,20 hours 7 mins,"2,148 km" +Bloomington,West Palm Beach,,16 hours 8 mins,"1,789 km" +Bloomington,Miami,,17 hours 7 mins,"1,894 km" +Bloomington,Tallahassee,,11 hours 39 mins,"1,223 km" +Bloomington,Punta Gorda,,15 hours 26 mins,"1,716 km" +Bloomington,Fort Lauderdale,,16 hours 46 mins,"1,857 km" +Bloomington,Pensacola,,10 hours 34 mins,"1,146 km" +Sarasota,Bloomington,,14 hours 52 mins,"1,648 km" +Fort Myers,Bloomington,,15 hours 48 mins,"1,753 km" +Gainesville,Bloomington,,12 hours 27 mins,"1,362 km" +Orlando,Bloomington,,13 hours 49 mins,"1,533 km" +Daytona Beach,Bloomington,,13 hours 55 mins,"1,525 km" +Jacksonville,Bloomington,,12 hours 35 mins,"1,385 km" +Tampa,Bloomington,,14 hours 3 mins,"1,563 km" +Panama City,Bloomington,,11 hours 21 mins,"1,163 km" +Key West,Bloomington,,20 hours 4 mins,"2,149 km" +West Palm Beach,Bloomington,,16 hours 4 mins,"1,791 km" +Miami,Bloomington,,17 hours 1 min,"1,897 km" +Tallahassee,Bloomington,,11 hours 38 mins,"1,218 km" +Punta Gorda,Bloomington,,15 hours 23 mins,"1,717 km" +Fort Lauderdale,Bloomington,,16 hours 42 mins,"1,860 km" +Pensacola,Bloomington,,10 hours 28 mins,"1,144 km" +Memphis,Abilene,,9 hours 16 mins,"1,018 km" +Memphis,Amarillo,,10 hours 22 mins,"1,166 km" +Memphis,Harlingen,,13 hours 36 mins,"1,441 km" +Memphis,Lubbock,,11 hours 39 mins,"1,283 km" +Memphis,College Station,,8 hours 44 mins,886 km +Memphis,Corpus Christi,,11 hours 51 mins,"1,247 km" +Memphis,Wichita Falls,,8 hours 30 mins,963 km +Memphis,Waco,,8 hours 2 mins,884 km +Memphis,San Angelo,,10 hours 30 mins,"1,142 km" +Memphis,Houston,,8 hours 44 mins,913 km +Memphis,San Antonio,,10 hours 38 mins,"1,169 km" +Memphis,Del Rio,,12 hours 55 mins,"1,395 km" +Memphis,Mission,,, +Memphis,Beaumont,,, +Memphis,Longview,,5 hours 36 mins,589 km +Memphis,Midland,,11 hours 24 mins,"1,259 km" +Memphis,El Paso,,15 hours 42 mins,"1,749 km" +Memphis,Brownsville,,13 hours 58 mins,"1,481 km" +Memphis,Austin,,9 hours 26 mins,"1,043 km" +Memphis,Dallas,,6 hours 39 mins,729 km +Memphis,Killeen,,8 hours 50 mins,977 km +Memphis,Laredo,,12 hours 54 mins,"1,420 km" +Memphis,Texarkana,,4 hours 10 mins,449 km +Abilene,Memphis,,9 hours 13 mins,"1,018 km" +Amarillo,Memphis,,10 hours 20 mins,"1,166 km" +Harlingen,Memphis,,13 hours 30 mins,"1,441 km" +Lubbock,Memphis,,11 hours 21 mins,"1,209 km" +College Station,Memphis,,8 hours 39 mins,882 km +Corpus Christi,Memphis,,11 hours 52 mins,"1,251 km" +Wichita Falls,Memphis,,8 hours 19 mins,876 km +Waco,Memphis,,7 hours 58 mins,879 km +San Angelo,Memphis,,10 hours 25 mins,"1,142 km" +Houston,Memphis,,8 hours 42 mins,913 km +San Antonio,Memphis,,10 hours 33 mins,"1,167 km" +Del Rio,Memphis,,12 hours 48 mins,"1,395 km" +Mission,Memphis,,, +Beaumont,Memphis,,, +Longview,Memphis,,5 hours 34 mins,588 km +Midland,Memphis,,11 hours 19 mins,"1,258 km" +El Paso,Memphis,,15 hours 37 mins,"1,748 km" +Brownsville,Memphis,,13 hours 54 mins,"1,481 km" +Austin,Memphis,,9 hours 22 mins,"1,041 km" +Dallas,Memphis,,6 hours 36 mins,728 km +Killeen,Memphis,,8 hours 47 mins,976 km +Laredo,Memphis,,12 hours 51 mins,"1,418 km" +Texarkana,Memphis,,4 hours 7 mins,446 km +Norfolk,Pellston,,14 hours 21 mins,"1,566 km" +Norfolk,Traverse City,,14 hours 21 mins,"1,525 km" +Norfolk,Alpena,,14 hours 20 mins,"1,513 km" +Norfolk,Iron Mountain,,, +Norfolk,Kalamazoo,,12 hours 12 mins,"1,286 km" +Norfolk,Saginaw,,12 hours 2 mins,"1,279 km" +Norfolk,Grand Rapids,,12 hours 39 mins,"1,352 km" +Norfolk,Lansing,,11 hours 41 mins,"1,244 km" +Norfolk,Muskegon,,13 hours 12 mins,"1,416 km" +Norfolk,Hancock,,, +Norfolk,Detroit,,10 hours 49 mins,"1,142 km" +Norfolk,Escanaba,,16 hours 51 mins,"1,814 km" +Pellston,Norfolk,,14 hours 27 mins,"1,569 km" +Traverse City,Norfolk,,14 hours 29 mins,"1,528 km" +Alpena,Norfolk,,14 hours 25 mins,"1,515 km" +Iron Mountain,Norfolk,,, +Kalamazoo,Norfolk,,12 hours 16 mins,"1,287 km" +Saginaw,Norfolk,,12 hours 6 mins,"1,281 km" +Grand Rapids,Norfolk,,12 hours 43 mins,"1,355 km" +Lansing,Norfolk,,11 hours 48 mins,"1,247 km" +Muskegon,Norfolk,,13 hours 18 mins,"1,419 km" +Hancock,Norfolk,,, +Detroit,Norfolk,,10 hours 55 mins,"1,144 km" +Escanaba,Norfolk,,16 hours 56 mins,"1,816 km" +North Platte,Alamosa,,7 hours 14 mins,801 km +North Platte,Grand Junction,,7 hours 27 mins,809 km +North Platte,Durango,,9 hours 38 mins,959 km +North Platte,Colorado Springs,,4 hours 45 mins,538 km +North Platte,Gunnison,,7 hours 12 mins,740 km +North Platte,Denver,,3 hours 50 mins,423 km +Alamosa,North Platte,,7 hours 9 mins,800 km +Grand Junction,North Platte,,7 hours 22 mins,809 km +Durango,North Platte,,9 hours 33 mins,960 km +Colorado Springs,North Platte,,4 hours 40 mins,536 km +Gunnison,North Platte,,7 hours 7 mins,741 km +Denver,North Platte,,3 hours 48 mins,427 km +Green Bay,Sarasota,,20 hours 59 mins,"2,309 km" +Green Bay,Fort Myers,,21 hours 56 mins,"2,414 km" +Green Bay,Gainesville,,18 hours 35 mins,"2,025 km" +Green Bay,Orlando,,19 hours 59 mins,"2,197 km" +Green Bay,Daytona Beach,,20 hours 3 mins,"2,197 km" +Green Bay,Jacksonville,,18 hours 40 mins,"2,047 km" +Green Bay,Tampa,,20 hours 11 mins,"2,225 km" +Green Bay,Panama City,,17 hours 26 mins,"1,831 km" +Green Bay,Key West,,1 day 2 hours,"2,811 km" +Green Bay,West Palm Beach,,22 hours 12 mins,"2,452 km" +Green Bay,Miami,,23 hours 11 mins,"2,557 km" +Green Bay,Tallahassee,,17 hours 43 mins,"1,886 km" +Green Bay,Punta Gorda,,21 hours 31 mins,"2,379 km" +Green Bay,Fort Lauderdale,,22 hours 50 mins,"2,520 km" +Green Bay,Pensacola,,16 hours 38 mins,"1,809 km" +Sarasota,Green Bay,,20 hours 58 mins,"2,312 km" +Fort Myers,Green Bay,,21 hours 55 mins,"2,418 km" +Gainesville,Green Bay,,18 hours 34 mins,"2,026 km" +Orlando,Green Bay,,19 hours 56 mins,"2,198 km" +Daytona Beach,Green Bay,,20 hours 2 mins,"2,189 km" +Jacksonville,Green Bay,,18 hours 41 mins,"2,050 km" +Tampa,Green Bay,,20 hours 10 mins,"2,227 km" +Panama City,Green Bay,,17 hours 28 mins,"1,828 km" +Key West,Green Bay,,1 day 2 hours,"2,813 km" +West Palm Beach,Green Bay,,22 hours 10 mins,"2,456 km" +Miami,Green Bay,,23 hours 8 mins,"2,561 km" +Tallahassee,Green Bay,,17 hours 45 mins,"1,883 km" +Punta Gorda,Green Bay,,21 hours 29 mins,"2,381 km" +Fort Lauderdale,Green Bay,,22 hours 49 mins,"2,524 km" +Pensacola,Green Bay,,16 hours 35 mins,"1,808 km" +Helena,Salt Lake City,,6 hours 52 mins,778 km +Helena,Moab,,10 hours 27 mins,"1,151 km" +Helena,Ogden,,6 hours 23 mins,722 km +Helena,Vernal,,9 hours 42 mins,"1,053 km" +Helena,Provo,,7 hours 30 mins,848 km +Helena,Cedar City,,10 hours 17 mins,"1,180 km" +Salt Lake City,Helena,,6 hours 53 mins,778 km +Salt Lake City,Moab,,3 hours 42 mins,376 km +Salt Lake City,Ogden,,37 mins,61.4 km +Salt Lake City,Vernal,,2 hours 57 mins,278 km +Salt Lake City,Provo,,45 mins,72.9 km +Salt Lake City,Cedar City,,3 hours 33 mins,405 km +Moab,Helena,,10 hours 28 mins,"1,151 km" +Moab,Salt Lake City,,3 hours 43 mins,376 km +Moab,Ogden,,4 hours 12 mins,434 km +Moab,Vernal,,3 hours 40 mins,349 km +Moab,Provo,,3 hours 5 mins,306 km +Moab,Cedar City,,4 hours 14 mins,464 km +Ogden,Helena,,6 hours 24 mins,722 km +Ogden,Salt Lake City,,38 mins,61.6 km +Ogden,Moab,,4 hours 13 mins,434 km +Ogden,Vernal,,3 hours 28 mins,336 km +Ogden,Provo,,1 hour 16 mins,131 km +Ogden,Cedar City,,4 hours 3 mins,463 km +Vernal,Helena,,9 hours 38 mins,900 km +Vernal,Salt Lake City,,3 hours 2 mins,277 km +Vernal,Moab,,3 hours 39 mins,349 km +Vernal,Ogden,,3 hours 30 mins,336 km +Vernal,Provo,,2 hours 46 mins,248 km +Vernal,Cedar City,,5 hours 37 mins,566 km +Provo,Helena,,7 hours 31 mins,847 km +Provo,Salt Lake City,,46 mins,72.3 km +Provo,Moab,,3 hours 7 mins,306 km +Provo,Ogden,,1 hour 15 mins,130 km +Provo,Vernal,,2 hours 40 mins,247 km +Provo,Cedar City,,2 hours 57 mins,335 km +Cedar City,Helena,,10 hours 18 mins,"1,180 km" +Cedar City,Salt Lake City,,3 hours 33 mins,405 km +Cedar City,Moab,,4 hours 12 mins,464 km +Cedar City,Ogden,,4 hours 2 mins,463 km +Cedar City,Vernal,,5 hours 29 mins,565 km +Cedar City,Provo,,2 hours 55 mins,335 km +Orlando,Abilene,,18 hours 23 mins,"2,041 km" +Orlando,Amarillo,,21 hours 13 mins,"2,340 km" +Orlando,Harlingen,,18 hours 33 mins,"2,077 km" +Orlando,Lubbock,,20 hours 46 mins,"2,306 km" +Orlando,College Station,,15 hours 5 mins,"1,672 km" +Orlando,Corpus Christi,,16 hours 48 mins,"1,882 km" +Orlando,Wichita Falls,,17 hours 49 mins,"1,979 km" +Orlando,Waco,,16 hours 25 mins,"1,805 km" +Orlando,San Angelo,,19 hours 23 mins,"2,133 km" +Orlando,Houston,,13 hours 41 mins,"1,549 km" +Orlando,San Antonio,,16 hours 33 mins,"1,863 km" +Orlando,Del Rio,,18 hours 57 mins,"2,110 km" +Orlando,Mission,,, +Orlando,Beaumont,,, +Orlando,Longview,,14 hours 5 mins,"1,552 km" +Orlando,Midland,,20 hours 31 mins,"2,282 km" +Orlando,El Paso,,1 day 0 hours,"2,748 km" +Orlando,Brownsville,,18 hours 55 mins,"2,116 km" +Orlando,Austin,,16 hours 9 mins,"1,812 km" +Orlando,Dallas,,15 hours 48 mins,"1,753 km" +Orlando,Killeen,,16 hours 44 mins,"1,845 km" +Orlando,Laredo,,18 hours 40 mins,"2,055 km" +Orlando,Texarkana,,14 hours 7 mins,"1,563 km" +Abilene,Orlando,,18 hours 25 mins,"2,038 km" +Amarillo,Orlando,,21 hours 16 mins,"2,330 km" +Harlingen,Orlando,,18 hours 33 mins,"2,078 km" +Lubbock,Orlando,,20 hours 45 mins,"2,304 km" +College Station,Orlando,,15 hours 7 mins,"1,699 km" +Corpus Christi,Orlando,,16 hours 55 mins,"1,889 km" +Wichita Falls,Orlando,,17 hours 54 mins,"1,968 km" +Waco,Orlando,,16 hours 28 mins,"1,806 km" +San Angelo,Orlando,,19 hours 27 mins,"2,134 km" +Houston,Orlando,,13 hours 45 mins,"1,550 km" +San Antonio,Orlando,,16 hours 38 mins,"1,864 km" +Del Rio,Orlando,,19 hours 3 mins,"2,111 km" +Mission,Orlando,,, +Beaumont,Orlando,,, +Longview,Orlando,,14 hours 7 mins,"1,548 km" +Midland,Orlando,,20 hours 31 mins,"2,278 km" +El Paso,Orlando,,1 day 0 hours,"2,749 km" +Brownsville,Orlando,,18 hours 57 mins,"2,118 km" +Austin,Orlando,,16 hours 12 mins,"1,814 km" +Dallas,Orlando,,15 hours 51 mins,"1,747 km" +Killeen,Orlando,,16 hours 47 mins,"1,862 km" +Laredo,Orlando,,18 hours 41 mins,"2,056 km" +Texarkana,Orlando,,14 hours 13 mins,"1,566 km" +Minneapolis,Baltimore,,16 hours 36 mins,"1,795 km" +Baltimore,Minneapolis,,16 hours 36 mins,"1,785 km" +Madison,Moline,,2 hours 41 mins,269 km +Madison,Belleville,,5 hours 24 mins,575 km +Madison,Bloomington,,5 hours 53 mins,610 km +Madison,Champaign,,3 hours 42 mins,402 km +Madison,Chicago,,2 hours 22 mins,237 km +Madison,Rockford,,1 hour 18 mins,118 km +Madison,Peoria,,3 hours 12 mins,324 km +Moline,Madison,,2 hours 44 mins,267 km +Belleville,Madison,,5 hours 27 mins,575 km +Bloomington,Madison,,5 hours 56 mins,612 km +Champaign,Madison,,3 hours 46 mins,404 km +Chicago,Madison,,2 hours 23 mins,237 km +Rockford,Madison,,1 hour 21 mins,119 km +Peoria,Madison,,3 hours 15 mins,322 km +San Francisco,Kahului,,, +Kahului,San Francisco,,, +Dallas,Indianapolis,,13 hours 10 mins,"1,447 km" +Indianapolis,Dallas,,13 hours 14 mins,"1,432 km" +Washington,Pellston,,11 hours 36 mins,"1,262 km" +Washington,Traverse City,,11 hours 36 mins,"1,221 km" +Washington,Alpena,,11 hours 34 mins,"1,210 km" +Washington,Iron Mountain,,, +Washington,Kalamazoo,,9 hours 27 mins,982 km +Washington,Saginaw,,9 hours 16 mins,975 km +Washington,Grand Rapids,,9 hours 54 mins,"1,049 km" +Washington,Lansing,,8 hours 56 mins,941 km +Washington,Muskegon,,10 hours 27 mins,"1,112 km" +Washington,Hancock,,, +Washington,Detroit,,8 hours 4 mins,838 km +Washington,Escanaba,,14 hours 6 mins,"1,510 km" +Pellston,Washington,,11 hours 48 mins,"1,262 km" +Traverse City,Washington,,11 hours 50 mins,"1,221 km" +Alpena,Washington,,11 hours 46 mins,"1,208 km" +Iron Mountain,Washington,,, +Kalamazoo,Washington,,9 hours 37 mins,981 km +Saginaw,Washington,,9 hours 27 mins,975 km +Grand Rapids,Washington,,10 hours 4 mins,"1,048 km" +Lansing,Washington,,9 hours 9 mins,941 km +Muskegon,Washington,,10 hours 39 mins,"1,112 km" +Hancock,Washington,,, +Detroit,Washington,,8 hours 15 mins,838 km +Escanaba,Washington,,14 hours 17 mins,"1,510 km" +Chicago,Sarasota,,17 hours 56 mins,"1,970 km" +Chicago,Fort Myers,,18 hours 53 mins,"2,076 km" +Chicago,Gainesville,,15 hours 32 mins,"1,686 km" +Chicago,Orlando,,16 hours 56 mins,"1,858 km" +Chicago,Daytona Beach,,17 hours 0 mins,"1,858 km" +Chicago,Jacksonville,,15 hours 37 mins,"1,708 km" +Chicago,Tampa,,17 hours 8 mins,"1,886 km" +Chicago,Panama City,,14 hours 23 mins,"1,492 km" +Chicago,Key West,,23 hours 8 mins,"2,472 km" +Chicago,West Palm Beach,,19 hours 9 mins,"2,114 km" +Chicago,Miami,,20 hours 7 mins,"2,218 km" +Chicago,Tallahassee,,14 hours 40 mins,"1,547 km" +Chicago,Punta Gorda,,18 hours 27 mins,"2,040 km" +Chicago,Fort Lauderdale,,19 hours 47 mins,"2,182 km" +Chicago,Pensacola,,13 hours 35 mins,"1,470 km" +Sarasota,Chicago,,17 hours 55 mins,"1,972 km" +Fort Myers,Chicago,,18 hours 52 mins,"2,078 km" +Gainesville,Chicago,,15 hours 31 mins,"1,687 km" +Orlando,Chicago,,16 hours 53 mins,"1,858 km" +Daytona Beach,Chicago,,16 hours 59 mins,"1,850 km" +Jacksonville,Chicago,,15 hours 38 mins,"1,710 km" +Tampa,Chicago,,17 hours 7 mins,"1,887 km" +Panama City,Chicago,,14 hours 25 mins,"1,488 km" +Key West,Chicago,,23 hours 8 mins,"2,473 km" +West Palm Beach,Chicago,,19 hours 8 mins,"2,116 km" +Miami,Chicago,,20 hours 5 mins,"2,222 km" +Tallahassee,Chicago,,14 hours 42 mins,"1,543 km" +Punta Gorda,Chicago,,18 hours 27 mins,"2,042 km" +Fort Lauderdale,Chicago,,19 hours 46 mins,"2,184 km" +Pensacola,Chicago,,13 hours 32 mins,"1,469 km" +Chicago,Buffalo,,8 hours 6 mins,865 km +Chicago,Manhattan,,12 hours 4 mins,"1,285 km" +Chicago,Niagara Falls,,8 hours 27 mins,896 km +Chicago,Islip,,12 hours 51 mins,"1,355 km" +Chicago,New York,,12 hours 1 min,"1,271 km" +Chicago,Watertown,,11 hours 5 mins,"1,194 km" +Chicago,Newburgh,,11 hours 58 mins,"1,284 km" +Chicago,Syracuse,,10 hours 9 mins,"1,091 km" +Chicago,Plattsburgh,,13 hours 13 mins,"1,371 km" +Chicago,Ogdensburg,,11 hours 9 mins,"1,184 km" +Chicago,Ithaca,,10 hours 16 mins,"1,084 km" +Chicago,Elmira,,9 hours 46 mins,"1,047 km" +Chicago,White Plains,,12 hours 8 mins,"1,309 km" +Chicago,Albany,,, +Chicago,Binghamton,,10 hours 34 mins,"1,135 km" +Chicago,Rochester,,9 hours 3 mins,970 km +Buffalo,Chicago,,8 hours 7 mins,864 km +Manhattan,Chicago,,12 hours 8 mins,"1,285 km" +Niagara Falls,Chicago,,8 hours 28 mins,895 km +Islip,Chicago,,12 hours 58 mins,"1,354 km" +New York,Chicago,,12 hours 5 mins,"1,272 km" +Watertown,Chicago,,11 hours 7 mins,"1,193 km" +Newburgh,Chicago,,11 hours 59 mins,"1,284 km" +Syracuse,Chicago,,10 hours 10 mins,"1,090 km" +Plattsburgh,Chicago,,13 hours 17 mins,"1,371 km" +Ogdensburg,Chicago,,11 hours 12 mins,"1,184 km" +Ithaca,Chicago,,10 hours 16 mins,"1,083 km" +Elmira,Chicago,,9 hours 46 mins,"1,047 km" +White Plains,Chicago,,12 hours 15 mins,"1,309 km" +Albany,Chicago,,, +Binghamton,Chicago,,10 hours 36 mins,"1,134 km" +Rochester,Chicago,,9 hours 5 mins,969 km +Little Rock,Atlanta,,7 hours 43 mins,836 km +Atlanta,Little Rock,,7 hours 41 mins,850 km +Miami,Pellston,,23 hours 19 mins,"2,637 km" +Miami,Traverse City,,23 hours 17 mins,"2,567 km" +Miami,Alpena,,23 hours 17 mins,"2,584 km" +Miami,Iron Mountain,,, +Miami,Kalamazoo,,20 hours 46 mins,"2,289 km" +Miami,Saginaw,,20 hours 59 mins,"2,350 km" +Miami,Grand Rapids,,21 hours 11 mins,"2,338 km" +Miami,Lansing,,20 hours 39 mins,"2,315 km" +Miami,Muskegon,,21 hours 27 mins,"2,353 km" +Miami,Hancock,,, +Miami,Detroit,,19 hours 56 mins,"2,230 km" +Miami,Escanaba,,1 day 1 hour,"2,738 km" +Pellston,Miami,,23 hours 22 mins,"2,634 km" +Traverse City,Miami,,23 hours 23 mins,"2,593 km" +Alpena,Miami,,23 hours 19 mins,"2,579 km" +Iron Mountain,Miami,,, +Kalamazoo,Miami,,20 hours 48 mins,"2,291 km" +Saginaw,Miami,,21 hours 1 min,"2,346 km" +Grand Rapids,Miami,,21 hours 14 mins,"2,338 km" +Lansing,Miami,,20 hours 42 mins,"2,312 km" +Muskegon,Miami,,21 hours 31 mins,"2,349 km" +Hancock,Miami,,, +Detroit,Miami,,20 hours 0 mins,"2,228 km" +Escanaba,Miami,,1 day 1 hour,"2,734 km" +Punta Gorda,Cedar Rapids,,20 hours 8 mins,"2,237 km" +Punta Gorda,Sioux City,,23 hours 24 mins,"2,623 km" +Punta Gorda,Dubuque,,20 hours 23 mins,"2,268 km" +Punta Gorda,Des Moines,,21 hours 14 mins,"2,343 km" +Punta Gorda,Fort Dodge,,22 hours 23 mins,"2,479 km" +Punta Gorda,Mason City,,22 hours 16 mins,"2,453 km" +Cedar Rapids,Punta Gorda,,20 hours 9 mins,"2,233 km" +Cedar Rapids,Sioux City,,4 hours 7 mins,425 km +Cedar Rapids,Dubuque,,1 hour 20 mins,119 km +Cedar Rapids,Des Moines,,2 hours 1 min,206 km +Cedar Rapids,Fort Dodge,,2 hours 19 mins,243 km +Cedar Rapids,Mason City,,2 hours 13 mins,216 km +Sioux City,Punta Gorda,,23 hours 28 mins,"2,622 km" +Sioux City,Cedar Rapids,,4 hours 5 mins,425 km +Sioux City,Dubuque,,4 hours 43 mins,483 km +Sioux City,Des Moines,,2 hours 55 mins,319 km +Sioux City,Fort Dodge,,2 hours 1 min,189 km +Sioux City,Mason City,,3 hours 17 mins,332 km +Dubuque,Punta Gorda,,20 hours 26 mins,"2,267 km" +Dubuque,Cedar Rapids,,1 hour 19 mins,118 km +Dubuque,Sioux City,,4 hours 44 mins,483 km +Dubuque,Des Moines,,3 hours 13 mins,317 km +Dubuque,Fort Dodge,,2 hours 56 mins,301 km +Dubuque,Mason City,,2 hours 50 mins,274 km +Des Moines,Punta Gorda,,21 hours 14 mins,"2,339 km" +Des Moines,Cedar Rapids,,1 hour 55 mins,206 km +Des Moines,Sioux City,,2 hours 54 mins,318 km +Des Moines,Dubuque,,3 hours 5 mins,325 km +Des Moines,Fort Dodge,,1 hour 30 mins,154 km +Des Moines,Mason City,,1 hour 52 mins,195 km +Fort Dodge,Punta Gorda,,22 hours 24 mins,"2,476 km" +Fort Dodge,Cedar Rapids,,2 hours 20 mins,243 km +Fort Dodge,Sioux City,,2 hours 3 mins,189 km +Fort Dodge,Dubuque,,2 hours 58 mins,301 km +Fort Dodge,Des Moines,,1 hour 31 mins,154 km +Fort Dodge,Mason City,,1 hour 32 mins,150 km +Mason City,Punta Gorda,,22 hours 17 mins,"2,454 km" +Mason City,Cedar Rapids,,2 hours 13 mins,221 km +Mason City,Sioux City,,3 hours 19 mins,331 km +Mason City,Dubuque,,2 hours 51 mins,279 km +Mason City,Des Moines,,1 hour 53 mins,196 km +Mason City,Fort Dodge,,1 hour 32 mins,149 km +Knoxville,Abilene,,14 hours 57 mins,"1,646 km" +Knoxville,Amarillo,,16 hours 3 mins,"1,794 km" +Knoxville,Harlingen,,18 hours 14 mins,"2,013 km" +Knoxville,Lubbock,,17 hours 20 mins,"1,911 km" +Knoxville,College Station,,14 hours 7 mins,"1,511 km" +Knoxville,Corpus Christi,,16 hours 29 mins,"1,818 km" +Knoxville,Wichita Falls,,14 hours 11 mins,"1,591 km" +Knoxville,Waco,,13 hours 43 mins,"1,512 km" +Knoxville,San Angelo,,16 hours 10 mins,"1,770 km" +Knoxville,Houston,,13 hours 22 mins,"1,485 km" +Knoxville,San Antonio,,16 hours 14 mins,"1,799 km" +Knoxville,Del Rio,,18 hours 36 mins,"2,023 km" +Knoxville,Mission,,, +Knoxville,Beaumont,,, +Knoxville,Longview,,11 hours 13 mins,"1,244 km" +Knoxville,Midland,,17 hours 5 mins,"1,887 km" +Knoxville,El Paso,,21 hours 23 mins,"2,377 km" +Knoxville,Brownsville,,18 hours 36 mins,"2,052 km" +Knoxville,Austin,,15 hours 7 mins,"1,671 km" +Knoxville,Dallas,,12 hours 19 mins,"1,357 km" +Knoxville,Killeen,,14 hours 31 mins,"1,605 km" +Knoxville,Laredo,,18 hours 21 mins,"1,991 km" +Knoxville,Texarkana,,9 hours 50 mins,"1,077 km" +Abilene,Knoxville,,14 hours 55 mins,"1,646 km" +Amarillo,Knoxville,,16 hours 2 mins,"1,794 km" +Harlingen,Knoxville,,18 hours 10 mins,"2,013 km" +Lubbock,Knoxville,,17 hours 3 mins,"1,837 km" +College Station,Knoxville,,14 hours 1 min,"1,505 km" +Corpus Christi,Knoxville,,16 hours 32 mins,"1,823 km" +Wichita Falls,Knoxville,,14 hours 1 min,"1,504 km" +Waco,Knoxville,,13 hours 40 mins,"1,508 km" +San Angelo,Knoxville,,16 hours 7 mins,"1,770 km" +Houston,Knoxville,,13 hours 22 mins,"1,485 km" +San Antonio,Knoxville,,16 hours 15 mins,"1,795 km" +Del Rio,Knoxville,,18 hours 30 mins,"2,024 km" +Mission,Knoxville,,, +Beaumont,Knoxville,,, +Longview,Knoxville,,11 hours 11 mins,"1,239 km" +Midland,Knoxville,,17 hours 1 min,"1,886 km" +El Paso,Knoxville,,21 hours 19 mins,"2,376 km" +Brownsville,Knoxville,,18 hours 34 mins,"2,053 km" +Austin,Knoxville,,15 hours 4 mins,"1,669 km" +Dallas,Knoxville,,12 hours 18 mins,"1,356 km" +Killeen,Knoxville,,14 hours 29 mins,"1,604 km" +Laredo,Knoxville,,18 hours 18 mins,"1,991 km" +Texarkana,Knoxville,,9 hours 49 mins,"1,075 km" +Grand Rapids,Greensboro,,11 hours 11 mins,"1,162 km" +Grand Rapids,Wilmington,,14 hours 5 mins,"1,488 km" +Grand Rapids,New Bern,,14 hours 5 mins,"1,467 km" +Grand Rapids,Charlotte,,11 hours 30 mins,"1,197 km" +Grand Rapids,Raleigh,,12 hours 21 mins,"1,281 km" +Grand Rapids,Asheville,,10 hours 51 mins,"1,157 km" +Grand Rapids,Fayetteville,,12 hours 42 mins,"1,306 km" +Greensboro,Grand Rapids,,11 hours 10 mins,"1,167 km" +Wilmington,Grand Rapids,,14 hours 3 mins,"1,494 km" +New Bern,Grand Rapids,,14 hours 3 mins,"1,472 km" +Charlotte,Grand Rapids,,11 hours 30 mins,"1,205 km" +Raleigh,Grand Rapids,,12 hours 18 mins,"1,287 km" +Asheville,Grand Rapids,,10 hours 53 mins,"1,156 km" +Fayetteville,Grand Rapids,,12 hours 41 mins,"1,313 km" +Charlotte,Buffalo,,10 hours 0 mins,"1,061 km" +Charlotte,Manhattan,,9 hours 42 mins,"1,012 km" +Charlotte,Niagara Falls,,10 hours 21 mins,"1,092 km" +Charlotte,Islip,,10 hours 22 mins,"1,083 km" +Charlotte,New York,,9 hours 33 mins,"1,006 km" +Charlotte,Watertown,,11 hours 58 mins,"1,281 km" +Charlotte,Newburgh,,10 hours 22 mins,"1,104 km" +Charlotte,Syracuse,,10 hours 55 mins,"1,168 km" +Charlotte,Plattsburgh,,13 hours 48 mins,"1,492 km" +Charlotte,Ogdensburg,,12 hours 56 mins,"1,374 km" +Charlotte,Ithaca,,10 hours 35 mins,"1,104 km" +Charlotte,Elmira,,9 hours 57 mins,"1,032 km" +Charlotte,White Plains,,10 hours 0 mins,"1,056 km" +Charlotte,Albany,,, +Charlotte,Binghamton,,9 hours 55 mins,"1,056 km" +Charlotte,Rochester,,10 hours 57 mins,"1,166 km" +Buffalo,Charlotte,,10 hours 1 min,"1,062 km" +Manhattan,Charlotte,,9 hours 43 mins,"1,022 km" +Niagara Falls,Charlotte,,10 hours 22 mins,"1,093 km" +Islip,Charlotte,,10 hours 25 mins,"1,091 km" +New York,Charlotte,,9 hours 35 mins,"1,016 km" +Watertown,Charlotte,,11 hours 58 mins,"1,283 km" +Newburgh,Charlotte,,10 hours 23 mins,"1,105 km" +Syracuse,Charlotte,,10 hours 54 mins,"1,170 km" +Plattsburgh,Charlotte,,13 hours 48 mins,"1,493 km" +Ogdensburg,Charlotte,,12 hours 57 mins,"1,376 km" +Ithaca,Charlotte,,10 hours 35 mins,"1,105 km" +Elmira,Charlotte,,9 hours 58 mins,"1,035 km" +White Plains,Charlotte,,10 hours 1 min,"1,065 km" +Albany,Charlotte,,, +Binghamton,Charlotte,,9 hours 53 mins,"1,057 km" +Rochester,Charlotte,,10 hours 59 mins,"1,167 km" +Prescott,Alamosa,,9 hours 21 mins,891 km +Prescott,Grand Junction,,8 hours 30 mins,854 km +Prescott,Durango,,6 hours 35 mins,652 km +Prescott,Colorado Springs,,11 hours 24 mins,"1,274 km" +Prescott,Gunnison,,9 hours 44 mins,899 km +Prescott,Denver,,12 hours 8 mins,"1,242 km" +Alamosa,Prescott,,9 hours 26 mins,889 km +Grand Junction,Prescott,,8 hours 38 mins,854 km +Durango,Prescott,,6 hours 39 mins,651 km +Colorado Springs,Prescott,,11 hours 29 mins,"1,276 km" +Gunnison,Prescott,,9 hours 43 mins,898 km +Denver,Prescott,,12 hours 17 mins,"1,242 km" +Philadelphia,Pellston,,12 hours 21 mins,"1,364 km" +Philadelphia,Traverse City,,12 hours 21 mins,"1,323 km" +Philadelphia,Alpena,,12 hours 20 mins,"1,312 km" +Philadelphia,Iron Mountain,,, +Philadelphia,Kalamazoo,,10 hours 12 mins,"1,084 km" +Philadelphia,Saginaw,,10 hours 2 mins,"1,077 km" +Philadelphia,Grand Rapids,,10 hours 39 mins,"1,151 km" +Philadelphia,Lansing,,9 hours 41 mins,"1,043 km" +Philadelphia,Muskegon,,11 hours 12 mins,"1,214 km" +Philadelphia,Hancock,,, +Philadelphia,Detroit,,8 hours 49 mins,940 km +Philadelphia,Escanaba,,14 hours 51 mins,"1,612 km" +Pellston,Philadelphia,,12 hours 20 mins,"1,364 km" +Traverse City,Philadelphia,,12 hours 21 mins,"1,323 km" +Alpena,Philadelphia,,12 hours 18 mins,"1,310 km" +Iron Mountain,Philadelphia,,, +Kalamazoo,Philadelphia,,10 hours 9 mins,"1,082 km" +Saginaw,Philadelphia,,9 hours 59 mins,"1,076 km" +Grand Rapids,Philadelphia,,10 hours 36 mins,"1,150 km" +Lansing,Philadelphia,,9 hours 40 mins,"1,042 km" +Muskegon,Philadelphia,,11 hours 11 mins,"1,214 km" +Hancock,Philadelphia,,, +Detroit,Philadelphia,,8 hours 47 mins,939 km +Escanaba,Philadelphia,,14 hours 49 mins,"1,612 km" +Panama City,Baltimore,,14 hours 57 mins,"1,623 km" +Baltimore,Panama City,,14 hours 55 mins,"1,629 km" +Charlotte,Sarasota,,9 hours 21 mins,"1,017 km" +Charlotte,Fort Myers,,10 hours 19 mins,"1,123 km" +Charlotte,Gainesville,,6 hours 41 mins,727 km +Charlotte,Orlando,,7 hours 34 mins,845 km +Charlotte,Daytona Beach,,6 hours 56 mins,770 km +Charlotte,Jacksonville,,5 hours 31 mins,617 km +Charlotte,Tampa,,8 hours 34 mins,933 km +Charlotte,Panama City,,8 hours 36 mins,856 km +Charlotte,Key West,,13 hours 30 mins,"1,427 km" +Charlotte,West Palm Beach,,9 hours 29 mins,"1,075 km" +Charlotte,Miami,,10 hours 30 mins,"1,174 km" +Charlotte,Tallahassee,,7 hours 41 mins,714 km +Charlotte,Punta Gorda,,9 hours 53 mins,"1,088 km" +Charlotte,Fort Lauderdale,,10 hours 7 mins,"1,143 km" +Charlotte,Pensacola,,8 hours 39 mins,913 km +Sarasota,Charlotte,,9 hours 23 mins,"1,019 km" +Fort Myers,Charlotte,,10 hours 19 mins,"1,125 km" +Gainesville,Charlotte,,6 hours 44 mins,729 km +Orlando,Charlotte,,7 hours 30 mins,843 km +Daytona Beach,Charlotte,,6 hours 55 mins,759 km +Jacksonville,Charlotte,,5 hours 32 mins,617 km +Tampa,Charlotte,,8 hours 34 mins,934 km +Panama City,Charlotte,,8 hours 34 mins,858 km +Key West,Charlotte,,13 hours 29 mins,"1,426 km" +West Palm Beach,Charlotte,,9 hours 27 mins,"1,073 km" +Miami,Charlotte,,10 hours 26 mins,"1,174 km" +Tallahassee,Charlotte,,7 hours 44 mins,714 km +Punta Gorda,Charlotte,,9 hours 54 mins,"1,088 km" +Fort Lauderdale,Charlotte,,10 hours 5 mins,"1,141 km" +Pensacola,Charlotte,,8 hours 35 mins,915 km +Los Angeles,Reno,,7 hours 59 mins,761 km +Reno,Los Angeles,,7 hours 58 mins,831 km +Santa Fe,Abilene,,7 hours 27 mins,770 km +Santa Fe,Amarillo,,4 hours 10 mins,450 km +Santa Fe,Harlingen,,14 hours 11 mins,"1,555 km" +Santa Fe,Lubbock,,5 hours 4 mins,504 km +Santa Fe,College Station,,11 hours 42 mins,"1,194 km" +Santa Fe,Corpus Christi,,12 hours 33 mins,"1,379 km" +Santa Fe,Wichita Falls,,7 hours 27 mins,804 km +Santa Fe,Waco,,10 hours 23 mins,"1,071 km" +Santa Fe,San Angelo,,7 hours 31 mins,804 km +Santa Fe,Houston,,12 hours 49 mins,"1,407 km" +Santa Fe,San Antonio,,10 hours 35 mins,"1,147 km" +Santa Fe,Del Rio,,9 hours 40 mins,961 km +Santa Fe,Mission,,, +Santa Fe,Beaumont,,, +Santa Fe,Longview,,11 hours 21 mins,"1,231 km" +Santa Fe,Midland,,6 hours 9 mins,637 km +Santa Fe,El Paso,,4 hours 45 mins,529 km +Santa Fe,Brownsville,,14 hours 33 mins,"1,594 km" +Santa Fe,Austin,,10 hours 53 mins,"1,108 km" +Santa Fe,Dallas,,9 hours 29 mins,"1,031 km" +Santa Fe,Killeen,,10 hours 14 mins,"1,043 km" +Santa Fe,Laredo,,12 hours 36 mins,"1,251 km" +Santa Fe,Texarkana,,11 hours 47 mins,"1,241 km" +Abilene,Santa Fe,,7 hours 28 mins,769 km +Amarillo,Santa Fe,,4 hours 12 mins,449 km +Harlingen,Santa Fe,,14 hours 6 mins,"1,550 km" +Lubbock,Santa Fe,,5 hours 5 mins,503 km +College Station,Santa Fe,,11 hours 42 mins,"1,196 km" +Corpus Christi,Santa Fe,,12 hours 30 mins,"1,374 km" +Wichita Falls,Santa Fe,,7 hours 29 mins,804 km +Waco,Santa Fe,,10 hours 25 mins,"1,128 km" +San Angelo,Santa Fe,,7 hours 30 mins,802 km +Houston,Santa Fe,,12 hours 51 mins,"1,407 km" +San Antonio,Santa Fe,,10 hours 34 mins,"1,142 km" +Del Rio,Santa Fe,,9 hours 40 mins,952 km +Mission,Santa Fe,,, +Beaumont,Santa Fe,,, +Longview,Santa Fe,,11 hours 22 mins,"1,237 km" +Midland,Santa Fe,,6 hours 9 mins,636 km +El Paso,Santa Fe,,4 hours 46 mins,529 km +Brownsville,Santa Fe,,14 hours 30 mins,"1,590 km" +Austin,Santa Fe,,10 hours 52 mins,"1,133 km" +Dallas,Santa Fe,,9 hours 31 mins,"1,030 km" +Killeen,Santa Fe,,10 hours 16 mins,"1,042 km" +Laredo,Santa Fe,,12 hours 36 mins,"1,242 km" +Texarkana,Santa Fe,,11 hours 58 mins,"1,253 km" +Dallas,Moline,,13 hours 4 mins,"1,316 km" +Moline,Dallas,,13 hours 3 mins,"1,316 km" +Charleston,Indianapolis,,10 hours 56 mins,"1,171 km" +Indianapolis,Charleston,,10 hours 55 mins,"1,171 km" +South Bend,Sarasota,,17 hours 26 mins,"1,905 km" +South Bend,Fort Myers,,18 hours 23 mins,"2,010 km" +South Bend,Gainesville,,15 hours 2 mins,"1,620 km" +South Bend,Orlando,,16 hours 26 mins,"1,793 km" +South Bend,Daytona Beach,,16 hours 30 mins,"1,792 km" +South Bend,Jacksonville,,15 hours 7 mins,"1,643 km" +South Bend,Tampa,,16 hours 39 mins,"1,820 km" +South Bend,Panama City,,13 hours 53 mins,"1,427 km" +South Bend,Key West,,22 hours 38 mins,"2,406 km" +South Bend,West Palm Beach,,18 hours 39 mins,"2,048 km" +South Bend,Miami,,19 hours 38 mins,"2,153 km" +South Bend,Tallahassee,,14 hours 10 mins,"1,482 km" +South Bend,Punta Gorda,,17 hours 58 mins,"1,975 km" +South Bend,Fort Lauderdale,,19 hours 17 mins,"2,116 km" +South Bend,Pensacola,,13 hours 5 mins,"1,404 km" +Sarasota,South Bend,,17 hours 25 mins,"1,907 km" +Fort Myers,South Bend,,18 hours 21 mins,"2,012 km" +Gainesville,South Bend,,15 hours 0 mins,"1,621 km" +Orlando,South Bend,,16 hours 22 mins,"1,792 km" +Daytona Beach,South Bend,,16 hours 28 mins,"1,784 km" +Jacksonville,South Bend,,15 hours 8 mins,"1,644 km" +Tampa,South Bend,,16 hours 36 mins,"1,822 km" +Panama City,South Bend,,13 hours 54 mins,"1,422 km" +Key West,South Bend,,22 hours 37 mins,"2,408 km" +West Palm Beach,South Bend,,18 hours 37 mins,"2,050 km" +Miami,South Bend,,19 hours 34 mins,"2,156 km" +Tallahassee,South Bend,,14 hours 11 mins,"1,477 km" +Punta Gorda,South Bend,,17 hours 56 mins,"1,976 km" +Fort Lauderdale,South Bend,,19 hours 15 mins,"2,118 km" +Pensacola,South Bend,,13 hours 1 min,"1,403 km" +Detroit,Sarasota,,17 hours 48 mins,"1,980 km" +Detroit,Fort Myers,,18 hours 46 mins,"2,086 km" +Detroit,Gainesville,,15 hours 25 mins,"1,696 km" +Detroit,Orlando,,16 hours 49 mins,"1,868 km" +Detroit,Daytona Beach,,16 hours 39 mins,"1,774 km" +Detroit,Jacksonville,,15 hours 13 mins,"1,620 km" +Detroit,Tampa,,17 hours 1 min,"1,896 km" +Detroit,Panama City,,15 hours 13 mins,"1,595 km" +Detroit,Key West,,23 hours 0 mins,"2,482 km" +Detroit,West Palm Beach,,19 hours 2 mins,"2,124 km" +Detroit,Miami,,20 hours 0 mins,"2,228 km" +Detroit,Tallahassee,,14 hours 50 mins,"1,594 km" +Detroit,Punta Gorda,,18 hours 20 mins,"2,050 km" +Detroit,Fort Lauderdale,,19 hours 39 mins,"2,192 km" +Detroit,Pensacola,,14 hours 25 mins,"1,572 km" +Sarasota,Detroit,,17 hours 47 mins,"1,981 km" +Fort Myers,Detroit,,18 hours 43 mins,"2,086 km" +Gainesville,Detroit,,15 hours 22 mins,"1,695 km" +Orlando,Detroit,,16 hours 44 mins,"1,867 km" +Daytona Beach,Detroit,,16 hours 34 mins,"1,768 km" +Jacksonville,Detroit,,15 hours 12 mins,"1,626 km" +Tampa,Detroit,,16 hours 58 mins,"1,896 km" +Panama City,Detroit,,15 hours 13 mins,"1,589 km" +Key West,Detroit,,23 hours 0 mins,"2,482 km" +West Palm Beach,Detroit,,18 hours 59 mins,"2,125 km" +Miami,Detroit,,19 hours 56 mins,"2,230 km" +Tallahassee,Detroit,,14 hours 49 mins,"1,593 km" +Punta Gorda,Detroit,,18 hours 18 mins,"2,050 km" +Fort Lauderdale,Detroit,,19 hours 37 mins,"2,193 km" +Pensacola,Detroit,,14 hours 20 mins,"1,570 km" +Cedar Rapids,Pellston,,9 hours 16 mins,924 km +Cedar Rapids,Traverse City,,8 hours 14 mins,884 km +Cedar Rapids,Alpena,,9 hours 53 mins,"1,039 km" +Cedar Rapids,Iron Mountain,,, +Cedar Rapids,Kalamazoo,,5 hours 42 mins,607 km +Cedar Rapids,Saginaw,,7 hours 54 mins,841 km +Cedar Rapids,Grand Rapids,,6 hours 8 mins,656 km +Cedar Rapids,Lansing,,6 hours 43 mins,721 km +Cedar Rapids,Muskegon,,6 hours 24 mins,670 km +Cedar Rapids,Hancock,,, +Cedar Rapids,Detroit,,7 hours 36 mins,825 km +Cedar Rapids,Escanaba,,6 hours 37 mins,664 km +Pellston,Cedar Rapids,,9 hours 18 mins,924 km +Traverse City,Cedar Rapids,,8 hours 15 mins,884 km +Alpena,Cedar Rapids,,9 hours 48 mins,"1,036 km" +Iron Mountain,Cedar Rapids,,, +Kalamazoo,Cedar Rapids,,5 hours 42 mins,605 km +Saginaw,Cedar Rapids,,7 hours 49 mins,837 km +Grand Rapids,Cedar Rapids,,6 hours 5 mins,657 km +Lansing,Cedar Rapids,,6 hours 41 mins,720 km +Muskegon,Cedar Rapids,,6 hours 22 mins,668 km +Hancock,Cedar Rapids,,, +Detroit,Cedar Rapids,,7 hours 38 mins,824 km +Escanaba,Cedar Rapids,,6 hours 38 mins,663 km +Nashville,Lynchburg,,7 hours 29 mins,790 km +Nashville,Richmond,,9 hours 1 min,988 km +Nashville,Petersburg,,9 hours 17 mins,967 km +Nashville,Newport News,,10 hours 0 mins,"1,095 km" +Nashville,Charlottesville,,8 hours 5 mins,879 km +Nashville,Staunton,,7 hours 37 mins,824 km +Nashville,Jamestown,,9 hours 55 mins,"1,077 km" +Nashville,Norfolk,,10 hours 29 mins,"1,135 km" +Nashville,Roanoke,,6 hours 30 mins,705 km +Lynchburg,Nashville,,7 hours 30 mins,794 km +Richmond,Nashville,,9 hours 3 mins,989 km +Petersburg,Nashville,,9 hours 19 mins,967 km +Newport News,Nashville,,9 hours 59 mins,"1,098 km" +Charlottesville,Nashville,,8 hours 4 mins,878 km +Staunton,Nashville,,7 hours 36 mins,824 km +Jamestown,Nashville,,9 hours 55 mins,"1,080 km" +Norfolk,Nashville,,10 hours 29 mins,"1,136 km" +Roanoke,Nashville,,6 hours 31 mins,706 km +Rochester,Pellston,,8 hours 15 mins,898 km +Rochester,Traverse City,,8 hours 15 mins,857 km +Rochester,Alpena,,8 hours 13 mins,846 km +Rochester,Iron Mountain,,, +Rochester,Kalamazoo,,7 hours 48 mins,831 km +Rochester,Saginaw,,5 hours 55 mins,611 km +Rochester,Grand Rapids,,6 hours 57 mins,733 km +Rochester,Lansing,,6 hours 8 mins,642 km +Rochester,Muskegon,,7 hours 30 mins,796 km +Rochester,Hancock,,, +Rochester,Detroit,,5 hours 14 mins,524 km +Rochester,Escanaba,,10 hours 45 mins,"1,146 km" +Pellston,Rochester,,8 hours 10 mins,898 km +Traverse City,Rochester,,8 hours 12 mins,857 km +Alpena,Rochester,,8 hours 8 mins,844 km +Iron Mountain,Rochester,,, +Kalamazoo,Rochester,,7 hours 46 mins,830 km +Saginaw,Rochester,,5 hours 50 mins,611 km +Grand Rapids,Rochester,,6 hours 51 mins,733 km +Lansing,Rochester,,6 hours 3 mins,640 km +Muskegon,Rochester,,7 hours 25 mins,797 km +Hancock,Rochester,,, +Detroit,Rochester,,5 hours 9 mins,524 km +Escanaba,Rochester,,10 hours 39 mins,"1,146 km" +Bemidji,Minneapolis,,3 hours 34 mins,347 km +Bemidji,Duluth,,2 hours 44 mins,239 km +Bemidji,Brainerd,,1 hour 49 mins,154 km +Bemidji,Gustavus,,4 hours 25 mins,404 km +Bemidji,St. Cloud,,2 hours 32 mins,245 km +Bemidji,Hibbing,,1 hour 56 mins,166 km +Bemidji,International Falls,,1 hour 58 mins,181 km +Minneapolis,Bemidji,,3 hours 37 mins,347 km +Duluth,Bemidji,,2 hours 45 mins,239 km +Brainerd,Bemidji,,1 hour 50 mins,154 km +Gustavus,Bemidji,,4 hours 25 mins,404 km +St. Cloud,Bemidji,,2 hours 34 mins,246 km +Hibbing,Bemidji,,1 hour 55 mins,166 km +International Falls,Bemidji,,1 hour 58 mins,180 km +Philadelphia,Cleveland,,6 hours 40 mins,694 km +Cleveland,Philadelphia,,6 hours 38 mins,693 km +New Orleans,Sarasota,,10 hours 4 mins,"1,141 km" +New Orleans,Fort Myers,,11 hours 2 mins,"1,246 km" +New Orleans,Gainesville,,7 hours 41 mins,857 km +New Orleans,Orlando,,9 hours 5 mins,"1,029 km" +New Orleans,Daytona Beach,,9 hours 9 mins,"1,029 km" +New Orleans,Jacksonville,,7 hours 46 mins,879 km +New Orleans,Tampa,,9 hours 17 mins,"1,057 km" +New Orleans,Panama City,,5 hours 4 mins,527 km +New Orleans,Key West,,15 hours 17 mins,"1,643 km" +New Orleans,West Palm Beach,,11 hours 18 mins,"1,285 km" +New Orleans,Miami,,12 hours 16 mins,"1,389 km" +New Orleans,Tallahassee,,5 hours 36 mins,620 km +New Orleans,Punta Gorda,,10 hours 36 mins,"1,211 km" +New Orleans,Fort Lauderdale,,11 hours 56 mins,"1,353 km" +New Orleans,Pensacola,,2 hours 59 mins,323 km +Sarasota,New Orleans,,10 hours 4 mins,"1,144 km" +Fort Myers,New Orleans,,11 hours 1 min,"1,250 km" +Gainesville,New Orleans,,7 hours 39 mins,859 km +Orlando,New Orleans,,9 hours 1 min,"1,030 km" +Daytona Beach,New Orleans,,9 hours 7 mins,"1,022 km" +Jacksonville,New Orleans,,7 hours 47 mins,882 km +Tampa,New Orleans,,9 hours 15 mins,"1,059 km" +Panama City,New Orleans,,5 hours 2 mins,529 km +Key West,New Orleans,,15 hours 17 mins,"1,646 km" +West Palm Beach,New Orleans,,11 hours 16 mins,"1,288 km" +Miami,New Orleans,,12 hours 13 mins,"1,394 km" +Tallahassee,New Orleans,,5 hours 35 mins,623 km +Punta Gorda,New Orleans,,10 hours 35 mins,"1,214 km" +Fort Lauderdale,New Orleans,,11 hours 54 mins,"1,356 km" +Pensacola,New Orleans,,2 hours 57 mins,326 km +Denver,Laramie,,2 hours 11 mins,212 km +Laramie,Denver,,2 hours 9 mins,208 km +Denver,Cheyenne,,1 hour 38 mins,164 km +Cheyenne,Denver,,1 hour 37 mins,161 km +New York,Reno,,1 day 15 hours,"4,320 km" +Reno,New York,,1 day 15 hours,"4,327 km" +Memphis,Los Angeles,,1 day 2 hours,"2,886 km" +Los Angeles,Memphis,,1 day 2 hours,"2,884 km" +Atlanta,Bemidji,,19 hours 53 mins,"2,166 km" +Atlanta,Minneapolis,,16 hours 26 mins,"1,821 km" +Atlanta,Duluth,,17 hours 24 mins,"1,917 km" +Atlanta,Brainerd,,18 hours 22 mins,"2,022 km" +Atlanta,Gustavus,,16 hours 17 mins,"1,754 km" +Atlanta,St. Cloud,,17 hours 23 mins,"1,924 km" +Atlanta,Hibbing,,18 hours 41 mins,"2,037 km" +Atlanta,International Falls,,20 hours 5 mins,"2,178 km" +Bemidji,Atlanta,,19 hours 48 mins,"2,160 km" +Minneapolis,Atlanta,,16 hours 20 mins,"1,814 km" +Duluth,Atlanta,,17 hours 20 mins,"1,911 km" +Brainerd,Atlanta,,18 hours 18 mins,"2,017 km" +Gustavus,Atlanta,,16 hours 18 mins,"1,751 km" +St. Cloud,Atlanta,,17 hours 19 mins,"1,919 km" +Hibbing,Atlanta,,18 hours 37 mins,"2,031 km" +International Falls,Atlanta,,20 hours 0 mins,"2,172 km" +La Crosse,Moline,,3 hours 34 mins,310 km +La Crosse,Belleville,,7 hours 17 mins,791 km +La Crosse,Bloomington,,7 hours 46 mins,826 km +La Crosse,Champaign,,5 hours 35 mins,619 km +La Crosse,Chicago,,4 hours 16 mins,453 km +La Crosse,Rockford,,3 hours 11 mins,334 km +La Crosse,Peoria,,4 hours 53 mins,458 km +Moline,La Crosse,,3 hours 35 mins,311 km +Belleville,La Crosse,,7 hours 19 mins,792 km +Bloomington,La Crosse,,7 hours 48 mins,828 km +Champaign,La Crosse,,5 hours 38 mins,620 km +Chicago,La Crosse,,4 hours 14 mins,454 km +Rockford,La Crosse,,3 hours 13 mins,335 km +Peoria,La Crosse,,4 hours 55 mins,459 km +Tulsa,Augusta,,13 hours 32 mins,"1,493 km" +Tulsa,Decatur,,11 hours 40 mins,"1,273 km" +Tulsa,Atlanta,,11 hours 26 mins,"1,261 km" +Tulsa,Valdosta,,14 hours 40 mins,"1,627 km" +Tulsa,Savannah,,14 hours 58 mins,"1,659 km" +Augusta,Tulsa,,13 hours 32 mins,"1,509 km" +Decatur,Tulsa,,11 hours 39 mins,"1,287 km" +Atlanta,Tulsa,,11 hours 24 mins,"1,275 km" +Valdosta,Tulsa,,14 hours 37 mins,"1,641 km" +Savannah,Tulsa,,14 hours 58 mins,"1,673 km" +Houston,Moline,,15 hours 50 mins,"1,673 km" +Houston,Belleville,,12 hours 18 mins,"1,275 km" +Houston,Bloomington,,14 hours 49 mins,"1,585 km" +Houston,Champaign,,14 hours 16 mins,"1,529 km" +Houston,Chicago,,16 hours 12 mins,"1,743 km" +Houston,Rockford,,16 hours 20 mins,"1,726 km" +Houston,Peoria,,14 hours 26 mins,"1,523 km" +Moline,Houston,,15 hours 47 mins,"1,668 km" +Belleville,Houston,,12 hours 18 mins,"1,273 km" +Bloomington,Houston,,14 hours 53 mins,"1,570 km" +Champaign,Houston,,14 hours 20 mins,"1,515 km" +Chicago,Houston,,16 hours 14 mins,"1,728 km" +Rockford,Houston,,16 hours 17 mins,"1,722 km" +Peoria,Houston,,14 hours 25 mins,"1,520 km" +Peoria,Dallas,,12 hours 7 mins,"1,283 km" +Dallas,Peoria,,12 hours 8 mins,"1,285 km" +Baton Rouge,Abilene,,8 hours 50 mins,976 km +Baton Rouge,Amarillo,,11 hours 40 mins,"1,274 km" +Baton Rouge,Harlingen,,8 hours 52 mins,959 km +Baton Rouge,Lubbock,,11 hours 13 mins,"1,240 km" +Baton Rouge,College Station,,5 hours 24 mins,554 km +Baton Rouge,Corpus Christi,,7 hours 7 mins,764 km +Baton Rouge,Wichita Falls,,8 hours 16 mins,914 km +Baton Rouge,Waco,,6 hours 44 mins,687 km +Baton Rouge,San Angelo,,9 hours 42 mins,"1,015 km" +Baton Rouge,Houston,,4 hours 0 mins,431 km +Baton Rouge,San Antonio,,6 hours 52 mins,745 km +Baton Rouge,Del Rio,,9 hours 16 mins,992 km +Baton Rouge,Mission,,, +Baton Rouge,Beaumont,,, +Baton Rouge,Longview,,4 hours 32 mins,487 km +Baton Rouge,Midland,,10 hours 58 mins,"1,216 km" +Baton Rouge,El Paso,,14 hours 35 mins,"1,630 km" +Baton Rouge,Brownsville,,9 hours 14 mins,998 km +Baton Rouge,Austin,,6 hours 28 mins,694 km +Baton Rouge,Dallas,,6 hours 15 mins,687 km +Baton Rouge,Killeen,,7 hours 3 mins,727 km +Baton Rouge,Laredo,,8 hours 59 mins,937 km +Baton Rouge,Texarkana,,4 hours 46 mins,519 km +Abilene,Baton Rouge,,8 hours 51 mins,978 km +Amarillo,Baton Rouge,,11 hours 42 mins,"1,270 km" +Harlingen,Baton Rouge,,8 hours 47 mins,960 km +Lubbock,Baton Rouge,,11 hours 10 mins,"1,244 km" +College Station,Baton Rouge,,5 hours 22 mins,581 km +Corpus Christi,Baton Rouge,,7 hours 9 mins,771 km +Wichita Falls,Baton Rouge,,8 hours 20 mins,908 km +Waco,Baton Rouge,,6 hours 42 mins,688 km +San Angelo,Baton Rouge,,9 hours 41 mins,"1,016 km" +Houston,Baton Rouge,,3 hours 59 mins,433 km +San Antonio,Baton Rouge,,6 hours 52 mins,746 km +Del Rio,Baton Rouge,,9 hours 18 mins,994 km +Mission,Baton Rouge,,, +Beaumont,Baton Rouge,,, +Longview,Baton Rouge,,4 hours 33 mins,488 km +Midland,Baton Rouge,,10 hours 57 mins,"1,218 km" +El Paso,Baton Rouge,,14 hours 34 mins,"1,631 km" +Brownsville,Baton Rouge,,9 hours 11 mins,"1,000 km" +Austin,Baton Rouge,,6 hours 26 mins,696 km +Dallas,Baton Rouge,,6 hours 17 mins,687 km +Killeen,Baton Rouge,,7 hours 1 min,745 km +Laredo,Baton Rouge,,8 hours 55 mins,938 km +Texarkana,Baton Rouge,,4 hours 47 mins,521 km +Dallas,Pensacola,,9 hours 45 mins,"1,041 km" +Pensacola,Dallas,,9 hours 44 mins,"1,049 km" +New Orleans,Paducah,,8 hours 53 mins,916 km +New Orleans,Owensboro,,9 hours 38 mins,"1,070 km" +New Orleans,Lexington,,10 hours 51 mins,"1,198 km" +New Orleans,Louisville,,10 hours 14 mins,"1,136 km" +Paducah,New Orleans,,8 hours 54 mins,918 km +Paducah,Owensboro,,2 hours 10 mins,205 km +Paducah,Lexington,,3 hours 54 mins,411 km +Paducah,Louisville,,3 hours 17 mins,349 km +Owensboro,New Orleans,,9 hours 39 mins,"1,072 km" +Owensboro,Paducah,,2 hours 9 mins,205 km +Owensboro,Lexington,,2 hours 47 mins,286 km +Owensboro,Louisville,,1 hour 43 mins,171 km +Lexington,New Orleans,,10 hours 53 mins,"1,201 km" +Lexington,Paducah,,3 hours 54 mins,410 km +Lexington,Owensboro,,2 hours 46 mins,284 km +Lexington,Louisville,,1 hour 20 mins,127 km +Louisville,New Orleans,,10 hours 15 mins,"1,139 km" +Louisville,Paducah,,3 hours 16 mins,347 km +Louisville,Owensboro,,1 hour 48 mins,173 km +Louisville,Lexington,,1 hour 22 mins,125 km +Houston,Twin Falls,,1 day 1 hour,"2,775 km" +Houston,Pocatello,,23 hours 55 mins,"2,593 km" +Houston,Idaho Falls,,1 day 0 hours,"2,612 km" +Houston,Sun Valley,,1 day 3 hours,"2,896 km" +Houston,Boise,,1 day 3 hours,"2,969 km" +Houston,Lewiston,,1 day 5 hours,"3,182 km" +Twin Falls,Houston,,1 day 1 hour,"2,742 km" +Pocatello,Houston,,23 hours 52 mins,"2,560 km" +Idaho Falls,Houston,,1 day 0 hours,"2,579 km" +Sun Valley,Houston,,1 day 3 hours,"2,865 km" +Boise,Houston,,1 day 3 hours,"2,937 km" +Lewiston,Houston,,1 day 5 hours,"3,184 km" +Pittsburgh,Sarasota,,16 hours 8 mins,"1,736 km" +Pittsburgh,Fort Myers,,17 hours 5 mins,"1,841 km" +Pittsburgh,Gainesville,,13 hours 28 mins,"1,445 km" +Pittsburgh,Orlando,,14 hours 21 mins,"1,563 km" +Pittsburgh,Daytona Beach,,13 hours 43 mins,"1,489 km" +Pittsburgh,Jacksonville,,12 hours 17 mins,"1,335 km" +Pittsburgh,Tampa,,15 hours 20 mins,"1,651 km" +Pittsburgh,Panama City,,15 hours 16 mins,"1,565 km" +Pittsburgh,Key West,,20 hours 16 mins,"2,145 km" +Pittsburgh,West Palm Beach,,16 hours 16 mins,"1,793 km" +Pittsburgh,Miami,,17 hours 16 mins,"1,892 km" +Pittsburgh,Tallahassee,,14 hours 28 mins,"1,432 km" +Pittsburgh,Punta Gorda,,16 hours 40 mins,"1,806 km" +Pittsburgh,Fort Lauderdale,,16 hours 54 mins,"1,861 km" +Pittsburgh,Pensacola,,14 hours 55 mins,"1,616 km" +Sarasota,Pittsburgh,,16 hours 10 mins,"1,736 km" +Fort Myers,Pittsburgh,,17 hours 7 mins,"1,842 km" +Gainesville,Pittsburgh,,13 hours 31 mins,"1,446 km" +Orlando,Pittsburgh,,14 hours 17 mins,"1,559 km" +Daytona Beach,Pittsburgh,,13 hours 42 mins,"1,476 km" +Jacksonville,Pittsburgh,,12 hours 20 mins,"1,334 km" +Tampa,Pittsburgh,,15 hours 22 mins,"1,651 km" +Panama City,Pittsburgh,,15 hours 15 mins,"1,566 km" +Key West,Pittsburgh,,20 hours 17 mins,"2,143 km" +West Palm Beach,Pittsburgh,,16 hours 14 mins,"1,790 km" +Miami,Pittsburgh,,17 hours 13 mins,"1,891 km" +Tallahassee,Pittsburgh,,14 hours 31 mins,"1,431 km" +Punta Gorda,Pittsburgh,,16 hours 41 mins,"1,805 km" +Fort Lauderdale,Pittsburgh,,16 hours 53 mins,"1,858 km" +Pensacola,Pittsburgh,,14 hours 49 mins,"1,612 km" +Asheville,Buffalo,,10 hours 26 mins,"1,109 km" +Asheville,Manhattan,,10 hours 44 mins,"1,118 km" +Asheville,Niagara Falls,,10 hours 48 mins,"1,139 km" +Asheville,Islip,,11 hours 25 mins,"1,196 km" +Asheville,New York,,10 hours 34 mins,"1,112 km" +Asheville,Watertown,,12 hours 39 mins,"1,356 km" +Asheville,Newburgh,,11 hours 3 mins,"1,180 km" +Asheville,Syracuse,,11 hours 36 mins,"1,244 km" +Asheville,Plattsburgh,,14 hours 30 mins,"1,568 km" +Asheville,Ogdensburg,,13 hours 38 mins,"1,449 km" +Asheville,Ithaca,,11 hours 17 mins,"1,180 km" +Asheville,Elmira,,10 hours 39 mins,"1,107 km" +Asheville,White Plains,,10 hours 54 mins,"1,165 km" +Asheville,Albany,,, +Asheville,Binghamton,,10 hours 36 mins,"1,132 km" +Asheville,Rochester,,11 hours 24 mins,"1,213 km" +Buffalo,Asheville,,10 hours 29 mins,"1,110 km" +Manhattan,Asheville,,10 hours 44 mins,"1,119 km" +Niagara Falls,Asheville,,10 hours 50 mins,"1,140 km" +Islip,Asheville,,11 hours 26 mins,"1,196 km" +New York,Asheville,,10 hours 34 mins,"1,110 km" +Watertown,Asheville,,12 hours 41 mins,"1,358 km" +Newburgh,Asheville,,11 hours 6 mins,"1,180 km" +Syracuse,Asheville,,11 hours 37 mins,"1,244 km" +Plattsburgh,Asheville,,14 hours 31 mins,"1,568 km" +Ogdensburg,Asheville,,13 hours 39 mins,"1,450 km" +Ithaca,Asheville,,11 hours 18 mins,"1,180 km" +Elmira,Asheville,,10 hours 41 mins,"1,109 km" +White Plains,Asheville,,10 hours 56 mins,"1,163 km" +Albany,Asheville,,, +Binghamton,Asheville,,10 hours 36 mins,"1,131 km" +Rochester,Asheville,,11 hours 27 mins,"1,215 km" +Cleveland,Pellston,,6 hours 10 mins,696 km +Cleveland,Traverse City,,6 hours 10 mins,655 km +Cleveland,Alpena,,6 hours 8 mins,643 km +Cleveland,Iron Mountain,,, +Cleveland,Kalamazoo,,4 hours 1 min,416 km +Cleveland,Saginaw,,3 hours 50 mins,409 km +Cleveland,Grand Rapids,,4 hours 28 mins,482 km +Cleveland,Lansing,,3 hours 30 mins,374 km +Cleveland,Muskegon,,5 hours 1 min,545 km +Cleveland,Hancock,,, +Cleveland,Detroit,,2 hours 37 mins,271 km +Cleveland,Escanaba,,8 hours 40 mins,944 km +Pellston,Cleveland,,6 hours 12 mins,698 km +Traverse City,Cleveland,,6 hours 13 mins,657 km +Alpena,Cleveland,,6 hours 10 mins,644 km +Iron Mountain,Cleveland,,, +Kalamazoo,Cleveland,,4 hours 1 min,416 km +Saginaw,Cleveland,,3 hours 51 mins,410 km +Grand Rapids,Cleveland,,4 hours 28 mins,484 km +Lansing,Cleveland,,3 hours 32 mins,376 km +Muskegon,Cleveland,,5 hours 3 mins,548 km +Hancock,Cleveland,,, +Detroit,Cleveland,,2 hours 39 mins,273 km +Escanaba,Cleveland,,8 hours 41 mins,945 km +Charlotte,Newark,,9 hours 20 mins,992 km +Charlotte,Atlantic City,,8 hours 53 mins,945 km +Charlotte,Trenton,,8 hours 38 mins,915 km +Newark,Charlotte,,9 hours 23 mins,"1,002 km" +Newark,Atlantic City,,1 hour 56 mins,190 km +Newark,Trenton,,1 hour 5 mins,93.8 km +Atlantic City,Charlotte,,8 hours 56 mins,955 km +Atlantic City,Newark,,1 hour 57 mins,192 km +Atlantic City,Trenton,,1 hour 31 mins,147 km +Trenton,Charlotte,,8 hours 40 mins,924 km +Trenton,Newark,,1 hour 3 mins,93.0 km +Trenton,Atlantic City,,1 hour 29 mins,146 km +Houston,Boise,,1 day 3 hours,"2,969 km" +Boise,Houston,,1 day 3 hours,"2,937 km" +Memphis,Houston,,8 hours 44 mins,913 km +Houston,Memphis,,8 hours 42 mins,913 km +Fort Lauderdale,State College,,17 hours 56 mins,"1,993 km" +Fort Lauderdale,Johnstown,,17 hours 25 mins,"1,912 km" +Fort Lauderdale,Harrisburg,,16 hours 28 mins,"1,839 km" +Fort Lauderdale,Erie,,18 hours 36 mins,"2,053 km" +Fort Lauderdale,Pittsburgh,,16 hours 53 mins,"1,858 km" +Fort Lauderdale,Latrobe,,17 hours 5 mins,"1,844 km" +Fort Lauderdale,Philadelphia,,16 hours 55 mins,"1,886 km" +Fort Lauderdale,Lewisburg,,17 hours 36 mins,"1,938 km" +Fort Lauderdale,Scranton,,18 hours 19 mins,"2,036 km" +State College,Fort Lauderdale,,18 hours 6 mins,"2,004 km" +Johnstown,Fort Lauderdale,,17 hours 26 mins,"1,914 km" +Harrisburg,Fort Lauderdale,,16 hours 40 mins,"1,843 km" +Erie,Fort Lauderdale,,18 hours 40 mins,"2,055 km" +Pittsburgh,Fort Lauderdale,,16 hours 54 mins,"1,861 km" +Latrobe,Fort Lauderdale,,17 hours 4 mins,"1,846 km" +Philadelphia,Fort Lauderdale,,17 hours 2 mins,"1,895 km" +Lewisburg,Fort Lauderdale,,17 hours 47 mins,"1,947 km" +Scranton,Fort Lauderdale,,18 hours 31 mins,"2,040 km" +Harrisburg,Greensboro,,6 hours 13 mins,633 km +Harrisburg,Wilmington,,7 hours 22 mins,767 km +Harrisburg,New Bern,,6 hours 57 mins,702 km +Harrisburg,Charlotte,,7 hours 12 mins,771 km +Harrisburg,Raleigh,,6 hours 6 mins,628 km +Harrisburg,Asheville,,7 hours 55 mins,846 km +Harrisburg,Fayetteville,,6 hours 38 mins,689 km +Greensboro,Harrisburg,,6 hours 9 mins,632 km +Wilmington,Harrisburg,,7 hours 13 mins,764 km +New Bern,Harrisburg,,6 hours 47 mins,712 km +Charlotte,Harrisburg,,7 hours 10 mins,769 km +Raleigh,Harrisburg,,5 hours 58 mins,626 km +Asheville,Harrisburg,,7 hours 52 mins,845 km +Fayetteville,Harrisburg,,6 hours 30 mins,687 km +South Bend,Greensboro,,10 hours 34 mins,"1,065 km" +South Bend,Wilmington,,13 hours 28 mins,"1,392 km" +South Bend,New Bern,,13 hours 27 mins,"1,370 km" +South Bend,Charlotte,,10 hours 52 mins,"1,101 km" +South Bend,Raleigh,,11 hours 44 mins,"1,185 km" +South Bend,Asheville,,9 hours 18 mins,979 km +South Bend,Fayetteville,,12 hours 4 mins,"1,210 km" +Greensboro,South Bend,,10 hours 33 mins,"1,063 km" +Wilmington,South Bend,,13 hours 26 mins,"1,390 km" +New Bern,South Bend,,13 hours 26 mins,"1,367 km" +Charlotte,South Bend,,10 hours 53 mins,"1,101 km" +Raleigh,South Bend,,11 hours 41 mins,"1,183 km" +Asheville,South Bend,,9 hours 20 mins,978 km +Fayetteville,South Bend,,12 hours 4 mins,"1,209 km" +Fresno,Flagstaff,,8 hours 54 mins,949 km +Fresno,Yuma,,7 hours 30 mins,788 km +Fresno,Phoenix,,8 hours 54 mins,950 km +Fresno,Prescott,,9 hours 4 mins,950 km +Fresno,Tucson,,10 hours 25 mins,"1,127 km" +Flagstaff,Fresno,,8 hours 47 mins,948 km +Yuma,Fresno,,7 hours 35 mins,788 km +Phoenix,Fresno,,8 hours 56 mins,949 km +Prescott,Fresno,,8 hours 58 mins,951 km +Tucson,Fresno,,10 hours 27 mins,"1,129 km" +Ithaca,Pellston,,9 hours 39 mins,"1,023 km" +Ithaca,Traverse City,,9 hours 39 mins,982 km +Ithaca,Alpena,,9 hours 37 mins,971 km +Ithaca,Iron Mountain,,, +Ithaca,Kalamazoo,,8 hours 59 mins,945 km +Ithaca,Saginaw,,7 hours 19 mins,736 km +Ithaca,Grand Rapids,,8 hours 21 mins,858 km +Ithaca,Lansing,,7 hours 32 mins,767 km +Ithaca,Muskegon,,8 hours 54 mins,922 km +Ithaca,Hancock,,, +Ithaca,Detroit,,6 hours 38 mins,649 km +Ithaca,Escanaba,,12 hours 9 mins,"1,271 km" +Pellston,Ithaca,,9 hours 36 mins,"1,025 km" +Traverse City,Ithaca,,9 hours 37 mins,984 km +Alpena,Ithaca,,9 hours 34 mins,970 km +Iron Mountain,Ithaca,,, +Kalamazoo,Ithaca,,8 hours 59 mins,945 km +Saginaw,Ithaca,,7 hours 15 mins,737 km +Grand Rapids,Ithaca,,8 hours 16 mins,859 km +Lansing,Ithaca,,7 hours 29 mins,767 km +Muskegon,Ithaca,,8 hours 50 mins,923 km +Hancock,Ithaca,,, +Detroit,Ithaca,,6 hours 34 mins,650 km +Escanaba,Ithaca,,12 hours 5 mins,"1,272 km" +Las Vegas,Minneapolis,,23 hours 37 mins,"2,667 km" +Minneapolis,Las Vegas,,23 hours 40 mins,"2,669 km" +Oakland,Salt Lake City,,10 hours 41 mins,"1,175 km" +Oakland,Moab,,14 hours 15 mins,"1,546 km" +Oakland,Ogden,,11 hours 9 mins,"1,229 km" +Oakland,Vernal,,13 hours 30 mins,"1,448 km" +Oakland,Provo,,11 hours 18 mins,"1,243 km" +Oakland,Cedar City,,10 hours 54 mins,"1,170 km" +Salt Lake City,Oakland,,10 hours 42 mins,"1,174 km" +Moab,Oakland,,14 hours 16 mins,"1,467 km" +Ogden,Oakland,,11 hours 11 mins,"1,228 km" +Vernal,Oakland,,13 hours 35 mins,"1,443 km" +Provo,Oakland,,11 hours 20 mins,"1,237 km" +Cedar City,Oakland,,10 hours 51 mins,"1,168 km" +Portland,Abilene,,1 day 4 hours,"2,969 km" +Portland,Amarillo,,1 day 0 hours,"2,660 km" +Portland,Harlingen,,1 day 11 hours,"3,754 km" +Portland,Lubbock,,1 day 2 hours,"2,703 km" +Portland,College Station,,1 day 8 hours,"3,484 km" +Portland,Corpus Christi,,1 day 9 hours,"3,579 km" +Portland,Wichita Falls,,1 day 4 hours,"3,021 km" +Portland,Waco,,1 day 7 hours,"3,348 km" +Portland,San Angelo,,1 day 4 hours,"3,003 km" +Portland,Houston,,1 day 9 hours,"3,623 km" +Portland,San Antonio,,1 day 7 hours,"3,346 km" +Portland,Del Rio,,1 day 6 hours,"3,160 km" +Portland,Mission,,, +Portland,Beaumont,,, +Portland,Longview,,1 day 8 hours,"3,448 km" +Portland,Midland,,1 day 3 hours,"2,836 km" +Portland,El Paso,,1 day 0 hours,"2,620 km" +Portland,Brownsville,,1 day 11 hours,"3,793 km" +Portland,Austin,,1 day 7 hours,"3,307 km" +Portland,Dallas,,1 day 6 hours,"3,248 km" +Portland,Killeen,,1 day 7 hours,"3,242 km" +Portland,Laredo,,1 day 9 hours,"3,450 km" +Portland,Texarkana,,1 day 8 hours,"3,536 km" +Abilene,Portland,,1 day 4 hours,"2,967 km" +Amarillo,Portland,,1 day 0 hours,"2,660 km" +Harlingen,Portland,,1 day 11 hours,"3,749 km" +Lubbock,Portland,,1 day 2 hours,"2,701 km" +College Station,Portland,,1 day 8 hours,"3,516 km" +Corpus Christi,Portland,,1 day 9 hours,"3,573 km" +Wichita Falls,Portland,,1 day 4 hours,"3,053 km" +Waco,Portland,,1 day 7 hours,"3,378 km" +San Angelo,Portland,,1 day 4 hours,"3,001 km" +Houston,Portland,,1 day 9 hours,"3,656 km" +San Antonio,Portland,,1 day 7 hours,"3,341 km" +Del Rio,Portland,,1 day 6 hours,"3,151 km" +Mission,Portland,,, +Beaumont,Portland,,, +Longview,Portland,,1 day 8 hours,"3,486 km" +Midland,Portland,,1 day 3 hours,"2,835 km" +El Paso,Portland,,1 day 0 hours,"2,619 km" +Brownsville,Portland,,1 day 11 hours,"3,789 km" +Austin,Portland,,1 day 7 hours,"3,332 km" +Dallas,Portland,,1 day 6 hours,"3,279 km" +Killeen,Portland,,1 day 7 hours,"3,241 km" +Laredo,Portland,,1 day 9 hours,"3,440 km" +Texarkana,Portland,,1 day 8 hours,"3,542 km" +Minneapolis,Seattle,,23 hours 48 mins,"2,666 km" +Seattle,Minneapolis,,23 hours 47 mins,"2,665 km" +New York,Augusta,,11 hours 44 mins,"1,256 km" +New York,Decatur,,13 hours 8 mins,"1,393 km" +New York,Atlanta,,13 hours 8 mins,"1,401 km" +New York,Valdosta,,14 hours 54 mins,"1,582 km" +New York,Savannah,,12 hours 4 mins,"1,298 km" +Augusta,New York,,11 hours 41 mins,"1,250 km" +Decatur,New York,,13 hours 6 mins,"1,383 km" +Atlanta,New York,,13 hours 5 mins,"1,391 km" +Valdosta,New York,,14 hours 51 mins,"1,574 km" +Savannah,New York,,12 hours 0 mins,"1,288 km" +Dallas,Nashville,,9 hours 44 mins,"1,068 km" +Dallas,Bristol,,, +Dallas,Knoxville,,12 hours 18 mins,"1,356 km" +Dallas,Chattanooga,,11 hours 19 mins,"1,261 km" +Dallas,Memphis,,6 hours 36 mins,728 km +Nashville,Dallas,,9 hours 45 mins,"1,069 km" +Bristol,Dallas,,, +Knoxville,Dallas,,12 hours 19 mins,"1,357 km" +Chattanooga,Dallas,,11 hours 20 mins,"1,268 km" +Memphis,Dallas,,6 hours 39 mins,729 km +Everett,North Bend,,54 mins,83.0 km +Everett,Portland,,3 hours 12 mins,325 km +Everett,Medford,,7 hours 22 mins,762 km +Everett,Bend,,6 hours 7 mins,573 km +Everett,Eugene,,4 hours 53 mins,500 km +North Bend,Everett,,54 mins,83.1 km +North Bend,Portland,,2 hours 57 mins,296 km +North Bend,Medford,,7 hours 6 mins,733 km +North Bend,Bend,,5 hours 40 mins,535 km +North Bend,Eugene,,4 hours 37 mins,471 km +Portland,Everett,,3 hours 14 mins,325 km +Portland,North Bend,,2 hours 56 mins,295 km +Portland,Medford,,4 hours 17 mins,439 km +Portland,Bend,,3 hours 11 mins,262 km +Portland,Eugene,,1 hour 48 mins,177 km +Medford,Everett,,7 hours 24 mins,763 km +Medford,North Bend,,7 hours 5 mins,733 km +Medford,Portland,,4 hours 16 mins,439 km +Medford,Bend,,3 hours 11 mins,279 km +Medford,Eugene,,2 hours 40 mins,268 km +Bend,Everett,,6 hours 9 mins,573 km +Bend,North Bend,,5 hours 40 mins,535 km +Bend,Portland,,3 hours 12 mins,262 km +Bend,Medford,,3 hours 11 mins,279 km +Bend,Eugene,,2 hours 31 mins,208 km +Eugene,Everett,,4 hours 52 mins,500 km +Eugene,North Bend,,4 hours 33 mins,470 km +Eugene,Portland,,1 hour 44 mins,176 km +Eugene,Medford,,2 hours 39 mins,270 km +Eugene,Bend,,2 hours 27 mins,207 km +Washington,San Diego,,1 day 15 hours,"4,270 km" +Washington,Redding,,1 day 17 hours,"4,482 km" +Washington,Sacramento,,1 day 16 hours,"4,379 km" +Washington,Fresno,,1 day 16 hours,"4,496 km" +Washington,San Luis Obispo,,1 day 17 hours,"4,539 km" +Washington,Oakland,,1 day 17 hours,"4,509 km" +Washington,Santa Barbara,,1 day 16 hours,"4,438 km" +Washington,Stockton,,1 day 17 hours,"4,456 km" +Washington,Santa Rosa,,1 day 17 hours,"4,534 km" +Washington,Bakersfield,,1 day 15 hours,"4,320 km" +Washington,Santa Ana,,1 day 15 hours,"4,295 km" +Washington,Santa Maria,,1 day 17 hours,"4,494 km" +Washington,San Jose,,1 day 18 hours,"4,572 km" +Washington,Burbank,,1 day 15 hours,"4,305 km" +Washington,Arcata,,1 day 20 hours,"4,706 km" +Washington,Butte,,1 day 17 hours,"4,419 km" +Washington,Palm Springs,,1 day 14 hours,"4,131 km" +Washington,Los Angeles,,1 day 15 hours,"4,295 km" +Washington,Long Beach,,1 day 15 hours,"4,317 km" +Washington,San Francisco,,1 day 17 hours,"4,519 km" +Washington,Monterey,,1 day 18 hours,"4,674 km" +San Diego,Washington,,1 day 15 hours,"4,268 km" +Redding,Washington,,1 day 17 hours,"4,489 km" +Sacramento,Washington,,1 day 16 hours,"4,387 km" +Fresno,Washington,,1 day 16 hours,"4,495 km" +San Luis Obispo,Washington,,1 day 17 hours,"4,540 km" +Oakland,Washington,,1 day 17 hours,"4,516 km" +Santa Barbara,Washington,,1 day 16 hours,"4,437 km" +Stockton,Washington,,1 day 17 hours,"4,463 km" +Santa Rosa,Washington,,1 day 18 hours,"4,542 km" +Bakersfield,Washington,,1 day 15 hours,"4,320 km" +Santa Ana,Washington,,1 day 15 hours,"4,291 km" +Santa Maria,Washington,,1 day 17 hours,"4,496 km" +San Jose,Washington,,1 day 18 hours,"4,578 km" +Burbank,Washington,,1 day 15 hours,"4,298 km" +Arcata,Washington,,1 day 20 hours,"4,713 km" +Butte,Washington,,1 day 17 hours,"4,426 km" +Palm Springs,Washington,,1 day 13 hours,"4,130 km" +Los Angeles,Washington,,1 day 15 hours,"4,294 km" +Long Beach,Washington,,1 day 15 hours,"4,321 km" +San Francisco,Washington,,1 day 17 hours,"4,526 km" +Monterey,Washington,,1 day 18 hours,"4,675 km" +Savannah,Indianapolis,,11 hours 30 mins,"1,240 km" +Indianapolis,Savannah,,11 hours 31 mins,"1,242 km" +Louisville,Sarasota,,13 hours 29 mins,"1,493 km" +Louisville,Fort Myers,,14 hours 26 mins,"1,598 km" +Louisville,Gainesville,,11 hours 5 mins,"1,209 km" +Louisville,Orlando,,12 hours 29 mins,"1,381 km" +Louisville,Daytona Beach,,12 hours 33 mins,"1,381 km" +Louisville,Jacksonville,,11 hours 10 mins,"1,231 km" +Louisville,Tampa,,12 hours 41 mins,"1,409 km" +Louisville,Panama City,,9 hours 56 mins,"1,015 km" +Louisville,Key West,,18 hours 41 mins,"1,995 km" +Louisville,West Palm Beach,,14 hours 42 mins,"1,637 km" +Louisville,Miami,,15 hours 41 mins,"1,741 km" +Louisville,Tallahassee,,10 hours 13 mins,"1,070 km" +Louisville,Punta Gorda,,14 hours 1 min,"1,563 km" +Louisville,Fort Lauderdale,,15 hours 20 mins,"1,705 km" +Louisville,Pensacola,,9 hours 8 mins,993 km +Sarasota,Louisville,,13 hours 28 mins,"1,496 km" +Fort Myers,Louisville,,14 hours 25 mins,"1,602 km" +Gainesville,Louisville,,11 hours 4 mins,"1,211 km" +Orlando,Louisville,,12 hours 26 mins,"1,382 km" +Daytona Beach,Louisville,,12 hours 32 mins,"1,374 km" +Jacksonville,Louisville,,11 hours 11 mins,"1,234 km" +Tampa,Louisville,,12 hours 40 mins,"1,411 km" +Panama City,Louisville,,9 hours 58 mins,"1,012 km" +Key West,Louisville,,18 hours 41 mins,"1,997 km" +West Palm Beach,Louisville,,14 hours 41 mins,"1,640 km" +Miami,Louisville,,15 hours 38 mins,"1,746 km" +Tallahassee,Louisville,,10 hours 15 mins,"1,067 km" +Punta Gorda,Louisville,,14 hours 0 mins,"1,566 km" +Fort Lauderdale,Louisville,,15 hours 19 mins,"1,708 km" +Pensacola,Louisville,,9 hours 5 mins,993 km +Panama City,Nashville,,7 hours 25 mins,731 km +Nashville,Panama City,,7 hours 23 mins,735 km +White Plains,Moline,,14 hours 23 mins,"1,544 km" +White Plains,Belleville,,15 hours 3 mins,"1,579 km" +White Plains,Bloomington,,12 hours 13 mins,"1,272 km" +White Plains,Champaign,,13 hours 13 mins,"1,388 km" +White Plains,Chicago,,12 hours 15 mins,"1,309 km" +White Plains,Rockford,,13 hours 40 mins,"1,449 km" +White Plains,Peoria,,14 hours 10 mins,"1,530 km" +Moline,White Plains,,14 hours 17 mins,"1,545 km" +Belleville,White Plains,,14 hours 58 mins,"1,608 km" +Bloomington,White Plains,,12 hours 7 mins,"1,301 km" +Champaign,White Plains,,13 hours 9 mins,"1,415 km" +Chicago,White Plains,,12 hours 8 mins,"1,309 km" +Rockford,White Plains,,13 hours 33 mins,"1,459 km" +Peoria,White Plains,,14 hours 6 mins,"1,532 km" +Mosinee,Moline,,4 hours 26 mins,457 km +Mosinee,Belleville,,7 hours 1 min,771 km +Mosinee,Bloomington,,7 hours 30 mins,806 km +Mosinee,Champaign,,5 hours 19 mins,598 km +Mosinee,Chicago,,4 hours 0 mins,433 km +Mosinee,Rockford,,2 hours 55 mins,314 km +Mosinee,Peoria,,4 hours 50 mins,520 km +Moline,Mosinee,,4 hours 28 mins,451 km +Belleville,Mosinee,,7 hours 2 mins,771 km +Bloomington,Mosinee,,7 hours 32 mins,808 km +Champaign,Mosinee,,5 hours 22 mins,599 km +Chicago,Mosinee,,3 hours 58 mins,433 km +Rockford,Mosinee,,2 hours 57 mins,314 km +Peoria,Mosinee,,4 hours 50 mins,517 km +Indianapolis,Pellston,,6 hours 51 mins,765 km +Indianapolis,Traverse City,,6 hours 15 mins,648 km +Indianapolis,Alpena,,7 hours 21 mins,780 km +Indianapolis,Iron Mountain,,, +Indianapolis,Kalamazoo,,3 hours 43 mins,370 km +Indianapolis,Saginaw,,5 hours 1 min,529 km +Indianapolis,Grand Rapids,,4 hours 9 mins,419 km +Indianapolis,Lansing,,3 hours 51 mins,409 km +Indianapolis,Muskegon,,4 hours 25 mins,433 km +Indianapolis,Hancock,,, +Indianapolis,Detroit,,4 hours 21 mins,461 km +Indianapolis,Escanaba,,7 hours 46 mins,810 km +Pellston,Indianapolis,,6 hours 48 mins,764 km +Traverse City,Indianapolis,,6 hours 18 mins,654 km +Alpena,Indianapolis,,7 hours 18 mins,779 km +Iron Mountain,Indianapolis,,, +Kalamazoo,Indianapolis,,3 hours 45 mins,375 km +Saginaw,Indianapolis,,4 hours 58 mins,528 km +Grand Rapids,Indianapolis,,4 hours 8 mins,426 km +Lansing,Indianapolis,,3 hours 51 mins,410 km +Muskegon,Indianapolis,,4 hours 25 mins,438 km +Hancock,Indianapolis,,, +Detroit,Indianapolis,,4 hours 24 mins,462 km +Escanaba,Indianapolis,,7 hours 47 mins,810 km +Denver,Flagstaff,,10 hours 45 mins,"1,091 km" +Denver,Yuma,,15 hours 19 mins,"1,593 km" +Denver,Phoenix,,12 hours 47 mins,"1,391 km" +Denver,Prescott,,12 hours 17 mins,"1,242 km" +Denver,Tucson,,12 hours 53 mins,"1,447 km" +Flagstaff,Denver,,10 hours 37 mins,"1,089 km" +Yuma,Denver,,15 hours 14 mins,"1,601 km" +Phoenix,Denver,,12 hours 41 mins,"1,321 km" +Prescott,Denver,,12 hours 8 mins,"1,242 km" +Tucson,Denver,,12 hours 51 mins,"1,448 km" +Valparaiso,Abilene,,, +Valparaiso,Amarillo,,, +Valparaiso,Harlingen,,, +Valparaiso,Lubbock,,, +Valparaiso,College Station,,, +Valparaiso,Corpus Christi,,, +Valparaiso,Wichita Falls,,, +Valparaiso,Waco,,, +Valparaiso,San Angelo,,, +Valparaiso,Houston,,, +Valparaiso,San Antonio,,, +Valparaiso,Del Rio,,, +Valparaiso,Mission,,, +Valparaiso,Beaumont,,, +Valparaiso,Longview,,, +Valparaiso,Midland,,, +Valparaiso,El Paso,,, +Valparaiso,Brownsville,,, +Valparaiso,Austin,,, +Valparaiso,Dallas,,, +Valparaiso,Killeen,,, +Valparaiso,Laredo,,, +Valparaiso,Texarkana,,, +Abilene,Valparaiso,,, +Amarillo,Valparaiso,,, +Harlingen,Valparaiso,,, +Lubbock,Valparaiso,,, +College Station,Valparaiso,,, +Corpus Christi,Valparaiso,,, +Wichita Falls,Valparaiso,,, +Waco,Valparaiso,,, +San Angelo,Valparaiso,,, +Houston,Valparaiso,,, +San Antonio,Valparaiso,,, +Del Rio,Valparaiso,,, +Mission,Valparaiso,,, +Beaumont,Valparaiso,,, +Longview,Valparaiso,,, +Midland,Valparaiso,,, +El Paso,Valparaiso,,, +Brownsville,Valparaiso,,, +Austin,Valparaiso,,, +Dallas,Valparaiso,,, +Killeen,Valparaiso,,, +Laredo,Valparaiso,,, +Texarkana,Valparaiso,,, +Louisville,Greensboro,,7 hours 30 mins,785 km +Louisville,Wilmington,,10 hours 24 mins,"1,112 km" +Louisville,New Bern,,10 hours 24 mins,"1,090 km" +Louisville,Charlotte,,7 hours 23 mins,763 km +Louisville,Raleigh,,8 hours 40 mins,905 km +Louisville,Asheville,,5 hours 30 mins,579 km +Louisville,Fayetteville,,9 hours 1 min,930 km +Greensboro,Louisville,,7 hours 29 mins,784 km +Wilmington,Louisville,,10 hours 22 mins,"1,112 km" +New Bern,Louisville,,10 hours 21 mins,"1,089 km" +Charlotte,Louisville,,7 hours 21 mins,762 km +Raleigh,Louisville,,8 hours 36 mins,905 km +Asheville,Louisville,,5 hours 28 mins,579 km +Fayetteville,Louisville,,9 hours 0 mins,931 km +Denver,Philadelphia,,1 day 1 hour,"2,781 km" +Philadelphia,Denver,,1 day 1 hour,"2,779 km" +Fayetteville,Chicago,,12 hours 50 mins,"1,323 km" +Chicago,Fayetteville,,12 hours 48 mins,"1,323 km" +Atlanta,State College,,11 hours 44 mins,"1,220 km" +Atlanta,Johnstown,,11 hours 1 min,"1,155 km" +Atlanta,Harrisburg,,10 hours 41 mins,"1,151 km" +Atlanta,Erie,,11 hours 49 mins,"1,298 km" +Atlanta,Pittsburgh,,10 hours 28 mins,"1,102 km" +Atlanta,Latrobe,,10 hours 40 mins,"1,088 km" +Atlanta,Philadelphia,,11 hours 44 mins,"1,253 km" +Atlanta,Lewisburg,,11 hours 40 mins,"1,238 km" +Atlanta,Scranton,,12 hours 28 mins,"1,339 km" +State College,Atlanta,,11 hours 43 mins,"1,227 km" +Johnstown,Atlanta,,11 hours 0 mins,"1,154 km" +Harrisburg,Atlanta,,10 hours 43 mins,"1,151 km" +Erie,Atlanta,,11 hours 51 mins,"1,297 km" +Pittsburgh,Atlanta,,10 hours 28 mins,"1,101 km" +Latrobe,Atlanta,,10 hours 38 mins,"1,086 km" +Philadelphia,Atlanta,,11 hours 47 mins,"1,261 km" +Lewisburg,Atlanta,,11 hours 42 mins,"1,238 km" +Scranton,Atlanta,,12 hours 28 mins,"1,339 km" +Elmira,Detroit,,7 hours 7 mins,764 km +Detroit,Elmira,,7 hours 7 mins,764 km +Syracuse,Augusta,,13 hours 17 mins,"1,431 km" +Syracuse,Decatur,,14 hours 25 mins,"1,542 km" +Syracuse,Atlanta,,14 hours 25 mins,"1,550 km" +Syracuse,Valdosta,,16 hours 59 mins,"1,800 km" +Syracuse,Savannah,,14 hours 10 mins,"1,516 km" +Augusta,Syracuse,,13 hours 18 mins,"1,431 km" +Decatur,Syracuse,,14 hours 26 mins,"1,542 km" +Atlanta,Syracuse,,14 hours 25 mins,"1,550 km" +Valdosta,Syracuse,,16 hours 51 mins,"1,797 km" +Savannah,Syracuse,,13 hours 59 mins,"1,511 km" +San Jose,Seattle,,12 hours 53 mins,"1,351 km" +San Jose,Wenatchee,,13 hours 56 mins,"1,374 km" +San Jose,Pasco,,, +San Jose,Yakima,,12 hours 8 mins,"1,194 km" +San Jose,Walla Walla,,12 hours 49 mins,"1,284 km" +San Jose,Everett,,13 hours 22 mins,"1,397 km" +San Jose,Spokane,,14 hours 24 mins,"1,460 km" +Seattle,San Jose,,12 hours 57 mins,"1,353 km" +Wenatchee,San Jose,,14 hours 6 mins,"1,366 km" +Pasco,San Jose,,, +Yakima,San Jose,,12 hours 17 mins,"1,194 km" +Walla Walla,San Jose,,12 hours 59 mins,"1,285 km" +Everett,San Jose,,13 hours 25 mins,"1,398 km" +Spokane,San Jose,,14 hours 33 mins,"1,462 km" +St. Louis,Grand Island,,7 hours 58 mins,866 km +St. Louis,North Platte,,9 hours 47 mins,"1,078 km" +St. Louis,Omaha,,6 hours 21 mins,695 km +St. Louis,Scottsbluff,,12 hours 27 mins,"1,355 km" +Grand Island,St. Louis,,7 hours 58 mins,866 km +Grand Island,North Platte,,2 hours 14 mins,235 km +Grand Island,Omaha,,2 hours 14 mins,240 km +Grand Island,Scottsbluff,,4 hours 54 mins,511 km +North Platte,St. Louis,,9 hours 47 mins,"1,077 km" +North Platte,Grand Island,,2 hours 15 mins,235 km +North Platte,Omaha,,4 hours 3 mins,451 km +North Platte,Scottsbluff,,2 hours 54 mins,284 km +Omaha,St. Louis,,6 hours 22 mins,695 km +Omaha,Grand Island,,2 hours 15 mins,239 km +Omaha,North Platte,,4 hours 4 mins,451 km +Omaha,Scottsbluff,,6 hours 44 mins,728 km +Scottsbluff,St. Louis,,12 hours 25 mins,"1,358 km" +Scottsbluff,Grand Island,,4 hours 53 mins,516 km +Scottsbluff,North Platte,,2 hours 52 mins,288 km +Scottsbluff,Omaha,,6 hours 41 mins,732 km +Wilmington,State College,,8 hours 41 mins,918 km +Wilmington,Johnstown,,8 hours 15 mins,859 km +Wilmington,Harrisburg,,7 hours 13 mins,764 km +Wilmington,Erie,,10 hours 49 mins,"1,162 km" +Wilmington,Pittsburgh,,9 hours 6 mins,964 km +Wilmington,Latrobe,,8 hours 41 mins,889 km +Wilmington,Philadelphia,,7 hours 41 mins,811 km +Wilmington,Lewisburg,,8 hours 21 mins,863 km +Wilmington,Scranton,,9 hours 4 mins,961 km +State College,Wilmington,,8 hours 49 mins,928 km +Johnstown,Wilmington,,8 hours 23 mins,863 km +Harrisburg,Wilmington,,7 hours 22 mins,767 km +Erie,Wilmington,,10 hours 59 mins,"1,164 km" +Pittsburgh,Wilmington,,9 hours 14 mins,968 km +Latrobe,Wilmington,,8 hours 51 mins,889 km +Philadelphia,Wilmington,,7 hours 44 mins,819 km +Lewisburg,Wilmington,,8 hours 30 mins,871 km +Scranton,Wilmington,,9 hours 13 mins,965 km +Burbank,Salt Lake City,,9 hours 55 mins,"1,112 km" +Salt Lake City,Burbank,,9 hours 59 mins,"1,118 km" +Oakland,Honolulu,,, +Honolulu,Oakland,,, +Washington,Charleston,,7 hours 54 mins,856 km +Washington,Hilton Head,,8 hours 30 mins,917 km +Washington,Greer,,7 hours 21 mins,783 km +Washington,Greenville,,7 hours 26 mins,799 km +Washington,Myrtle Beach,,6 hours 47 mins,693 km +Charleston,Washington,,7 hours 55 mins,856 km +Hilton Head,Washington,,8 hours 29 mins,916 km +Greer,Washington,,7 hours 22 mins,784 km +Greenville,Washington,,7 hours 27 mins,798 km +Myrtle Beach,Washington,,6 hours 45 mins,693 km +Pensacola,Greensboro,,9 hours 47 mins,"1,054 km" +Pensacola,Wilmington,,10 hours 48 mins,"1,185 km" +Pensacola,New Bern,,12 hours 3 mins,"1,320 km" +Pensacola,Charlotte,,8 hours 35 mins,915 km +Pensacola,Raleigh,,10 hours 57 mins,"1,173 km" +Pensacola,Asheville,,8 hours 10 mins,839 km +Pensacola,Fayetteville,,10 hours 5 mins,"1,116 km" +Greensboro,Pensacola,,9 hours 51 mins,"1,054 km" +Wilmington,Pensacola,,10 hours 55 mins,"1,187 km" +New Bern,Pensacola,,12 hours 10 mins,"1,321 km" +Charlotte,Pensacola,,8 hours 39 mins,913 km +Raleigh,Pensacola,,10 hours 58 mins,"1,175 km" +Asheville,Pensacola,,8 hours 14 mins,841 km +Fayetteville,Pensacola,,10 hours 11 mins,"1,117 km" +San Antonio,San Diego,,18 hours 10 mins,"2,052 km" +San Antonio,Redding,,1 day 4 hours,"3,052 km" +San Antonio,Sacramento,,1 day 1 hour,"2,793 km" +San Antonio,Fresno,,22 hours 44 mins,"2,527 km" +San Antonio,San Luis Obispo,,22 hours 27 mins,"2,482 km" +San Antonio,Oakland,,1 day 1 hour,"2,771 km" +San Antonio,Santa Barbara,,20 hours 57 mins,"2,331 km" +San Antonio,Stockton,,1 day 0 hours,"2,717 km" +San Antonio,Santa Rosa,,1 day 2 hours,"2,863 km" +San Antonio,Bakersfield,,21 hours 10 mins,"2,354 km" +San Antonio,Santa Ana,,19 hours 20 mins,"2,179 km" +San Antonio,Santa Maria,,22 hours 4 mins,"2,433 km" +San Antonio,San Jose,,1 day 1 hour,"2,721 km" +San Antonio,Burbank,,19 hours 38 mins,"2,198 km" +San Antonio,Arcata,,1 day 6 hours,"3,224 km" +San Antonio,Butte,,1 day 3 hours,"2,926 km" +San Antonio,Palm Springs,,17 hours 57 mins,"2,010 km" +San Antonio,Los Angeles,,19 hours 29 mins,"2,176 km" +San Antonio,Long Beach,,19 hours 40 mins,"2,195 km" +San Antonio,San Francisco,,1 day 1 hour,"2,789 km" +San Antonio,Monterey,,1 day 0 hours,"2,687 km" +San Diego,San Antonio,,18 hours 14 mins,"2,051 km" +Redding,San Antonio,,1 day 3 hours,"3,050 km" +Sacramento,San Antonio,,1 day 1 hour,"2,793 km" +Fresno,San Antonio,,22 hours 44 mins,"2,526 km" +San Luis Obispo,San Antonio,,22 hours 30 mins,"2,482 km" +Oakland,San Antonio,,1 day 1 hour,"2,770 km" +Santa Barbara,San Antonio,,20 hours 59 mins,"2,331 km" +Stockton,San Antonio,,1 day 0 hours,"2,717 km" +Santa Rosa,San Antonio,,1 day 2 hours,"2,863 km" +Bakersfield,San Antonio,,21 hours 10 mins,"2,354 km" +Santa Ana,San Antonio,,19 hours 23 mins,"2,160 km" +Santa Maria,San Antonio,,22 hours 4 mins,"2,432 km" +San Jose,San Antonio,,1 day 1 hour,"2,720 km" +Burbank,San Antonio,,19 hours 36 mins,"2,192 km" +Arcata,San Antonio,,1 day 6 hours,"3,225 km" +Butte,San Antonio,,1 day 3 hours,"2,925 km" +Palm Springs,San Antonio,,17 hours 58 mins,"2,008 km" +Los Angeles,San Antonio,,19 hours 28 mins,"2,175 km" +Long Beach,San Antonio,,19 hours 41 mins,"2,194 km" +San Francisco,San Antonio,,1 day 1 hour,"2,788 km" +Monterey,San Antonio,,1 day 0 hours,"2,687 km" +Pensacola,Abilene,,12 hours 19 mins,"1,337 km" +Pensacola,Amarillo,,15 hours 9 mins,"1,636 km" +Pensacola,Harlingen,,12 hours 29 mins,"1,373 km" +Pensacola,Lubbock,,14 hours 42 mins,"1,602 km" +Pensacola,College Station,,9 hours 1 min,968 km +Pensacola,Corpus Christi,,10 hours 43 mins,"1,178 km" +Pensacola,Wichita Falls,,11 hours 44 mins,"1,275 km" +Pensacola,Waco,,10 hours 20 mins,"1,101 km" +Pensacola,San Angelo,,13 hours 19 mins,"1,429 km" +Pensacola,Houston,,7 hours 37 mins,845 km +Pensacola,San Antonio,,10 hours 29 mins,"1,159 km" +Pensacola,Del Rio,,12 hours 52 mins,"1,406 km" +Pensacola,Mission,,, +Pensacola,Beaumont,,, +Pensacola,Longview,,8 hours 1 min,848 km +Pensacola,Midland,,14 hours 27 mins,"1,578 km" +Pensacola,El Paso,,18 hours 11 mins,"2,043 km" +Pensacola,Brownsville,,12 hours 51 mins,"1,412 km" +Pensacola,Austin,,10 hours 5 mins,"1,108 km" +Pensacola,Dallas,,9 hours 44 mins,"1,049 km" +Pensacola,Killeen,,10 hours 40 mins,"1,141 km" +Pensacola,Laredo,,12 hours 36 mins,"1,351 km" +Pensacola,Texarkana,,8 hours 3 mins,859 km +Abilene,Pensacola,,12 hours 19 mins,"1,332 km" +Amarillo,Pensacola,,15 hours 10 mins,"1,625 km" +Harlingen,Pensacola,,12 hours 27 mins,"1,372 km" +Lubbock,Pensacola,,14 hours 39 mins,"1,598 km" +College Station,Pensacola,,9 hours 1 min,993 km +Corpus Christi,Pensacola,,10 hours 49 mins,"1,183 km" +Wichita Falls,Pensacola,,11 hours 48 mins,"1,262 km" +Waco,Pensacola,,10 hours 22 mins,"1,100 km" +San Angelo,Pensacola,,13 hours 20 mins,"1,428 km" +Houston,Pensacola,,7 hours 38 mins,845 km +San Antonio,Pensacola,,10 hours 31 mins,"1,159 km" +Del Rio,Pensacola,,12 hours 57 mins,"1,406 km" +Mission,Pensacola,,, +Beaumont,Pensacola,,, +Longview,Pensacola,,8 hours 1 min,843 km +Midland,Pensacola,,14 hours 25 mins,"1,572 km" +El Paso,Pensacola,,18 hours 13 mins,"2,043 km" +Brownsville,Pensacola,,12 hours 51 mins,"1,412 km" +Austin,Pensacola,,10 hours 6 mins,"1,108 km" +Dallas,Pensacola,,9 hours 45 mins,"1,041 km" +Killeen,Pensacola,,10 hours 41 mins,"1,157 km" +Laredo,Pensacola,,12 hours 34 mins,"1,350 km" +Texarkana,Pensacola,,8 hours 6 mins,861 km +Albany,Sarasota,,, +Albany,Fort Myers,,, +Albany,Gainesville,,, +Albany,Orlando,,, +Albany,Daytona Beach,,, +Albany,Jacksonville,,, +Albany,Tampa,,, +Albany,Panama City,,, +Albany,Key West,,, +Albany,West Palm Beach,,, +Albany,Miami,,, +Albany,Tallahassee,,, +Albany,Punta Gorda,,, +Albany,Fort Lauderdale,,, +Albany,Pensacola,,, +Sarasota,Albany,,, +Fort Myers,Albany,,, +Gainesville,Albany,,, +Orlando,Albany,,, +Daytona Beach,Albany,,, +Jacksonville,Albany,,, +Tampa,Albany,,, +Panama City,Albany,,, +Key West,Albany,,, +West Palm Beach,Albany,,, +Miami,Albany,,, +Tallahassee,Albany,,, +Punta Gorda,Albany,,, +Fort Lauderdale,Albany,,, +Pensacola,Albany,,, +Evansville,Abilene,,13 hours 51 mins,"1,459 km" +Evansville,Amarillo,,13 hours 30 mins,"1,486 km" +Evansville,Harlingen,,18 hours 11 mins,"1,882 km" +Evansville,Lubbock,,14 hours 53 mins,"1,625 km" +Evansville,College Station,,13 hours 19 mins,"1,327 km" +Evansville,Corpus Christi,,16 hours 26 mins,"1,687 km" +Evansville,Wichita Falls,,11 hours 46 mins,"1,290 km" +Evansville,Waco,,12 hours 37 mins,"1,325 km" +Evansville,San Angelo,,15 hours 5 mins,"1,583 km" +Evansville,Houston,,13 hours 19 mins,"1,354 km" +Evansville,San Antonio,,15 hours 13 mins,"1,610 km" +Evansville,Del Rio,,17 hours 30 mins,"1,836 km" +Evansville,Mission,,, +Evansville,Beaumont,,, +Evansville,Longview,,10 hours 11 mins,"1,030 km" +Evansville,Midland,,15 hours 51 mins,"1,736 km" +Evansville,El Paso,,20 hours 6 mins,"2,184 km" +Evansville,Brownsville,,18 hours 33 mins,"1,921 km" +Evansville,Austin,,14 hours 1 min,"1,483 km" +Evansville,Dallas,,11 hours 14 mins,"1,169 km" +Evansville,Killeen,,13 hours 25 mins,"1,418 km" +Evansville,Laredo,,17 hours 29 mins,"1,860 km" +Evansville,Texarkana,,8 hours 45 mins,889 km +Abilene,Evansville,,13 hours 46 mins,"1,475 km" +Amarillo,Evansville,,13 hours 31 mins,"1,482 km" +Harlingen,Evansville,,18 hours 4 mins,"1,898 km" +Lubbock,Evansville,,14 hours 50 mins,"1,622 km" +College Station,Evansville,,13 hours 13 mins,"1,339 km" +Corpus Christi,Evansville,,16 hours 26 mins,"1,708 km" +Wichita Falls,Evansville,,11 hours 45 mins,"1,287 km" +Waco,Evansville,,12 hours 31 mins,"1,336 km" +San Angelo,Evansville,,14 hours 59 mins,"1,599 km" +Houston,Evansville,,13 hours 16 mins,"1,370 km" +San Antonio,Evansville,,15 hours 7 mins,"1,624 km" +Del Rio,Evansville,,17 hours 22 mins,"1,852 km" +Mission,Evansville,,, +Beaumont,Evansville,,, +Longview,Evansville,,10 hours 8 mins,"1,045 km" +Midland,Evansville,,15 hours 52 mins,"1,714 km" +El Paso,Evansville,,20 hours 3 mins,"2,179 km" +Brownsville,Evansville,,18 hours 28 mins,"1,938 km" +Austin,Evansville,,13 hours 56 mins,"1,498 km" +Dallas,Evansville,,11 hours 10 mins,"1,184 km" +Killeen,Evansville,,13 hours 21 mins,"1,433 km" +Laredo,Evansville,,17 hours 24 mins,"1,875 km" +Texarkana,Evansville,,8 hours 41 mins,903 km +Fort Myers,Toledo,,17 hours 48 mins,"1,989 km" +Fort Myers,Cleveland,,18 hours 0 mins,"1,951 km" +Fort Myers,Dayton,,15 hours 42 mins,"1,751 km" +Fort Myers,Columbus,,16 hours 28 mins,"1,837 km" +Fort Myers,Akron,,17 hours 25 mins,"1,892 km" +Fort Myers,Cincinnati,,14 hours 54 mins,"1,665 km" +Toledo,Fort Myers,,17 hours 50 mins,"1,988 km" +Cleveland,Fort Myers,,17 hours 57 mins,"1,948 km" +Dayton,Fort Myers,,15 hours 45 mins,"1,749 km" +Columbus,Fort Myers,,16 hours 29 mins,"1,836 km" +Akron,Fort Myers,,17 hours 22 mins,"1,891 km" +Cincinnati,Fort Myers,,14 hours 56 mins,"1,664 km" +Monterey,Seattle,,13 hours 54 mins,"1,458 km" +Monterey,Wenatchee,,14 hours 57 mins,"1,481 km" +Monterey,Pasco,,, +Monterey,Yakima,,13 hours 9 mins,"1,301 km" +Monterey,Walla Walla,,13 hours 50 mins,"1,391 km" +Monterey,Everett,,14 hours 23 mins,"1,504 km" +Monterey,Spokane,,15 hours 26 mins,"1,567 km" +Seattle,Monterey,,13 hours 59 mins,"1,460 km" +Wenatchee,Monterey,,15 hours 7 mins,"1,473 km" +Pasco,Monterey,,, +Yakima,Monterey,,13 hours 18 mins,"1,302 km" +Walla Walla,Monterey,,14 hours 0 mins,"1,393 km" +Everett,Monterey,,14 hours 26 mins,"1,505 km" +Spokane,Monterey,,15 hours 35 mins,"1,569 km" +St. Louis,Sarasota,,15 hours 21 mins,"1,709 km" +St. Louis,Fort Myers,,16 hours 19 mins,"1,814 km" +St. Louis,Gainesville,,12 hours 58 mins,"1,424 km" +St. Louis,Orlando,,14 hours 22 mins,"1,597 km" +St. Louis,Daytona Beach,,14 hours 26 mins,"1,596 km" +St. Louis,Jacksonville,,13 hours 3 mins,"1,447 km" +St. Louis,Tampa,,14 hours 34 mins,"1,624 km" +St. Louis,Panama City,,11 hours 49 mins,"1,231 km" +St. Louis,Key West,,20 hours 34 mins,"2,210 km" +St. Louis,West Palm Beach,,16 hours 35 mins,"1,852 km" +St. Louis,Miami,,17 hours 33 mins,"1,957 km" +St. Louis,Tallahassee,,12 hours 6 mins,"1,286 km" +St. Louis,Punta Gorda,,15 hours 53 mins,"1,779 km" +St. Louis,Fort Lauderdale,,17 hours 13 mins,"1,920 km" +St. Louis,Pensacola,,10 hours 52 mins,"1,132 km" +Sarasota,St. Louis,,15 hours 19 mins,"1,711 km" +Fort Myers,St. Louis,,16 hours 16 mins,"1,817 km" +Gainesville,St. Louis,,12 hours 55 mins,"1,425 km" +Orlando,St. Louis,,14 hours 16 mins,"1,597 km" +Daytona Beach,St. Louis,,14 hours 23 mins,"1,588 km" +Jacksonville,St. Louis,,13 hours 2 mins,"1,449 km" +Tampa,St. Louis,,14 hours 31 mins,"1,626 km" +Panama City,St. Louis,,11 hours 49 mins,"1,227 km" +Key West,St. Louis,,20 hours 32 mins,"2,212 km" +West Palm Beach,St. Louis,,16 hours 31 mins,"1,855 km" +Miami,St. Louis,,17 hours 28 mins,"1,961 km" +Tallahassee,St. Louis,,12 hours 6 mins,"1,282 km" +Punta Gorda,St. Louis,,15 hours 50 mins,"1,781 km" +Fort Lauderdale,St. Louis,,17 hours 10 mins,"1,923 km" +Pensacola,St. Louis,,10 hours 53 mins,"1,132 km" +Fort Myers,Buffalo,,20 hours 9 mins,"2,183 km" +Fort Myers,Manhattan,,18 hours 41 mins,"2,014 km" +Fort Myers,Niagara Falls,,20 hours 30 mins,"2,214 km" +Fort Myers,Islip,,19 hours 21 mins,"2,084 km" +Fort Myers,New York,,18 hours 31 mins,"2,008 km" +Fort Myers,Watertown,,21 hours 34 mins,"2,343 km" +Fort Myers,Newburgh,,19 hours 21 mins,"2,099 km" +Fort Myers,Syracuse,,20 hours 31 mins,"2,231 km" +Fort Myers,Plattsburgh,,22 hours 47 mins,"2,488 km" +Fort Myers,Ogdensburg,,22 hours 32 mins,"2,436 km" +Fort Myers,Ithaca,,20 hours 15 mins,"2,170 km" +Fort Myers,Elmira,,19 hours 38 mins,"2,097 km" +Fort Myers,White Plains,,18 hours 58 mins,"2,058 km" +Fort Myers,Albany,,, +Fort Myers,Binghamton,,19 hours 31 mins,"2,119 km" +Fort Myers,Rochester,,20 hours 54 mins,"2,259 km" +Buffalo,Fort Myers,,20 hours 9 mins,"2,182 km" +Manhattan,Fort Myers,,18 hours 43 mins,"2,020 km" +Niagara Falls,Fort Myers,,20 hours 31 mins,"2,213 km" +Islip,Fort Myers,,19 hours 24 mins,"2,089 km" +New York,Fort Myers,,18 hours 35 mins,"2,014 km" +Watertown,Fort Myers,,21 hours 44 mins,"2,345 km" +Newburgh,Fort Myers,,19 hours 27 mins,"2,107 km" +Syracuse,Fort Myers,,20 hours 40 mins,"2,232 km" +Plattsburgh,Fort Myers,,22 hours 51 mins,"2,495 km" +Ogdensburg,Fort Myers,,22 hours 43 mins,"2,438 km" +Ithaca,Fort Myers,,20 hours 24 mins,"2,174 km" +Elmira,Fort Myers,,19 hours 47 mins,"2,104 km" +White Plains,Fort Myers,,19 hours 1 min,"2,063 km" +Albany,Fort Myers,,, +Binghamton,Fort Myers,,19 hours 40 mins,"2,119 km" +Rochester,Fort Myers,,21 hours 2 mins,"2,265 km" +State College,Moline,,10 hours 50 mins,"1,154 km" +State College,Belleville,,11 hours 27 mins,"1,192 km" +State College,Bloomington,,8 hours 37 mins,885 km +State College,Champaign,,9 hours 36 mins,"1,001 km" +State College,Chicago,,8 hours 42 mins,918 km +State College,Rockford,,10 hours 7 mins,"1,058 km" +State College,Peoria,,10 hours 37 mins,"1,140 km" +Moline,State College,,10 hours 52 mins,"1,148 km" +Belleville,State College,,11 hours 27 mins,"1,186 km" +Bloomington,State College,,8 hours 36 mins,880 km +Champaign,State College,,9 hours 37 mins,994 km +Chicago,State College,,8 hours 43 mins,913 km +Rockford,State College,,10 hours 8 mins,"1,062 km" +Peoria,State College,,10 hours 41 mins,"1,136 km" +Detroit,Greensboro,,9 hours 34 mins,970 km +Detroit,Wilmington,,12 hours 28 mins,"1,297 km" +Detroit,New Bern,,12 hours 27 mins,"1,275 km" +Detroit,Charlotte,,9 hours 52 mins,"1,006 km" +Detroit,Raleigh,,10 hours 44 mins,"1,090 km" +Detroit,Asheville,,9 hours 22 mins,"1,008 km" +Detroit,Fayetteville,,11 hours 4 mins,"1,115 km" +Greensboro,Detroit,,9 hours 30 mins,974 km +Wilmington,Detroit,,12 hours 23 mins,"1,301 km" +New Bern,Detroit,,12 hours 22 mins,"1,279 km" +Charlotte,Detroit,,9 hours 50 mins,"1,012 km" +Raleigh,Detroit,,10 hours 37 mins,"1,094 km" +Asheville,Detroit,,9 hours 22 mins,"1,007 km" +Fayetteville,Detroit,,11 hours 1 min,"1,120 km" +St. Petersburg,State College,,, +St. Petersburg,Johnstown,,, +St. Petersburg,Harrisburg,,, +St. Petersburg,Erie,,, +St. Petersburg,Pittsburgh,,, +St. Petersburg,Latrobe,,, +St. Petersburg,Philadelphia,,, +St. Petersburg,Lewisburg,,, +St. Petersburg,Scranton,,, +State College,St. Petersburg,,, +Johnstown,St. Petersburg,,, +Harrisburg,St. Petersburg,,, +Erie,St. Petersburg,,, +Pittsburgh,St. Petersburg,,, +Latrobe,St. Petersburg,,, +Philadelphia,St. Petersburg,,, +Lewisburg,St. Petersburg,,, +Scranton,St. Petersburg,,, +Bakersfield,Abilene,,19 hours 6 mins,"2,072 km" +Bakersfield,Amarillo,,15 hours 49 mins,"1,752 km" +Bakersfield,Harlingen,,1 day 1 hour,"2,762 km" +Bakersfield,Lubbock,,16 hours 44 mins,"1,806 km" +Bakersfield,College Station,,23 hours 21 mins,"2,496 km" +Bakersfield,Corpus Christi,,23 hours 8 mins,"2,587 km" +Bakersfield,Wichita Falls,,19 hours 6 mins,"2,106 km" +Bakersfield,Waco,,22 hours 2 mins,"2,373 km" +Bakersfield,San Angelo,,19 hours 11 mins,"2,106 km" +Bakersfield,Houston,,23 hours 59 mins,"2,669 km" +Bakersfield,San Antonio,,21 hours 10 mins,"2,354 km" +Bakersfield,Del Rio,,19 hours 44 mins,"2,150 km" +Bakersfield,Mission,,, +Bakersfield,Beaumont,,, +Bakersfield,Longview,,23 hours 0 mins,"2,533 km" +Bakersfield,Midland,,17 hours 48 mins,"1,959 km" +Bakersfield,El Paso,,13 hours 25 mins,"1,468 km" +Bakersfield,Brownsville,,1 day 1 hour,"2,802 km" +Bakersfield,Austin,,22 hours 0 mins,"2,394 km" +Bakersfield,Dallas,,21 hours 9 mins,"2,333 km" +Bakersfield,Killeen,,21 hours 49 mins,"2,388 km" +Bakersfield,Laredo,,22 hours 40 mins,"2,440 km" +Bakersfield,Texarkana,,23 hours 27 mins,"2,543 km" +Abilene,Bakersfield,,19 hours 2 mins,"2,071 km" +Amarillo,Bakersfield,,15 hours 45 mins,"1,751 km" +Harlingen,Bakersfield,,1 day 1 hour,"2,762 km" +Lubbock,Bakersfield,,16 hours 39 mins,"1,805 km" +College Station,Bakersfield,,23 hours 16 mins,"2,499 km" +Corpus Christi,Bakersfield,,23 hours 7 mins,"2,586 km" +Wichita Falls,Bakersfield,,19 hours 3 mins,"2,106 km" +Waco,Bakersfield,,21 hours 59 mins,"2,431 km" +San Angelo,Bakersfield,,19 hours 5 mins,"2,104 km" +Houston,Bakersfield,,23 hours 58 mins,"2,668 km" +San Antonio,Bakersfield,,21 hours 10 mins,"2,354 km" +Del Rio,Bakersfield,,19 hours 45 mins,"2,151 km" +Mission,Bakersfield,,, +Beaumont,Bakersfield,,, +Longview,Bakersfield,,22 hours 55 mins,"2,539 km" +Midland,Bakersfield,,17 hours 44 mins,"1,938 km" +El Paso,Bakersfield,,13 hours 27 mins,"1,468 km" +Brownsville,Bakersfield,,1 day 1 hour,"2,802 km" +Austin,Bakersfield,,22 hours 0 mins,"2,395 km" +Dallas,Bakersfield,,21 hours 5 mins,"2,332 km" +Killeen,Bakersfield,,21 hours 49 mins,"2,387 km" +Laredo,Bakersfield,,22 hours 41 mins,"2,440 km" +Texarkana,Bakersfield,,23 hours 31 mins,"2,555 km" +Los Angeles,Sarasota,,1 day 13 hours,"4,150 km" +Los Angeles,Fort Myers,,1 day 14 hours,"4,255 km" +Los Angeles,Gainesville,,1 day 11 hours,"3,865 km" +Los Angeles,Orlando,,1 day 12 hours,"4,037 km" +Los Angeles,Daytona Beach,,1 day 12 hours,"4,037 km" +Los Angeles,Jacksonville,,1 day 11 hours,"3,887 km" +Los Angeles,Tampa,,1 day 12 hours,"4,065 km" +Los Angeles,Panama City,,1 day 8 hours,"3,535 km" +Los Angeles,Key West,,1 day 18 hours,"4,651 km" +Los Angeles,West Palm Beach,,1 day 14 hours,"4,293 km" +Los Angeles,Miami,,1 day 15 hours,"4,398 km" +Los Angeles,Tallahassee,,1 day 8 hours,"3,628 km" +Los Angeles,Punta Gorda,,1 day 13 hours,"4,220 km" +Los Angeles,Fort Lauderdale,,1 day 15 hours,"4,361 km" +Los Angeles,Pensacola,,1 day 6 hours,"3,332 km" +Sarasota,Los Angeles,,1 day 13 hours,"4,151 km" +Fort Myers,Los Angeles,,1 day 14 hours,"4,257 km" +Gainesville,Los Angeles,,1 day 11 hours,"3,865 km" +Orlando,Los Angeles,,1 day 12 hours,"4,037 km" +Daytona Beach,Los Angeles,,1 day 12 hours,"4,028 km" +Jacksonville,Los Angeles,,1 day 11 hours,"3,889 km" +Tampa,Los Angeles,,1 day 12 hours,"4,066 km" +Panama City,Los Angeles,,1 day 8 hours,"3,536 km" +Key West,Los Angeles,,1 day 18 hours,"4,652 km" +West Palm Beach,Los Angeles,,1 day 14 hours,"4,295 km" +Miami,Los Angeles,,1 day 15 hours,"4,400 km" +Tallahassee,Los Angeles,,1 day 8 hours,"3,629 km" +Punta Gorda,Los Angeles,,1 day 13 hours,"4,220 km" +Fort Lauderdale,Los Angeles,,1 day 15 hours,"4,363 km" +Pensacola,Los Angeles,,1 day 6 hours,"3,333 km" +Milwaukee,New York,,13 hours 29 mins,"1,417 km" +New York,Milwaukee,,13 hours 28 mins,"1,417 km" +Knoxville,State College,,9 hours 1 min,940 km +Knoxville,Johnstown,,8 hours 3 mins,847 km +Knoxville,Harrisburg,,7 hours 58 mins,871 km +Knoxville,Erie,,8 hours 46 mins,960 km +Knoxville,Pittsburgh,,7 hours 30 mins,793 km +Knoxville,Latrobe,,7 hours 42 mins,779 km +Knoxville,Philadelphia,,9 hours 20 mins,"1,007 km" +Knoxville,Lewisburg,,8 hours 57 mins,957 km +Knoxville,Scranton,,9 hours 45 mins,"1,058 km" +State College,Knoxville,,9 hours 1 min,947 km +Johnstown,Knoxville,,8 hours 3 mins,846 km +Harrisburg,Knoxville,,8 hours 1 min,871 km +Erie,Knoxville,,8 hours 48 mins,959 km +Pittsburgh,Knoxville,,7 hours 31 mins,794 km +Latrobe,Knoxville,,7 hours 41 mins,779 km +Philadelphia,Knoxville,,9 hours 21 mins,"1,007 km" +Lewisburg,Knoxville,,9 hours 0 mins,957 km +Scranton,Knoxville,,9 hours 45 mins,"1,058 km" +Santa Ana,Twin Falls,,11 hours 31 mins,"1,223 km" +Santa Ana,Pocatello,,12 hours 7 mins,"1,365 km" +Santa Ana,Idaho Falls,,12 hours 46 mins,"1,444 km" +Santa Ana,Sun Valley,,13 hours 11 mins,"1,359 km" +Santa Ana,Boise,,13 hours 27 mins,"1,433 km" +Santa Ana,Lewiston,,1 day 21 hours,"5,005 km" +Twin Falls,Santa Ana,,11 hours 37 mins,"1,227 km" +Pocatello,Santa Ana,,12 hours 9 mins,"1,368 km" +Idaho Falls,Santa Ana,,12 hours 49 mins,"1,448 km" +Sun Valley,Santa Ana,,13 hours 17 mins,"1,362 km" +Boise,Santa Ana,,13 hours 32 mins,"1,434 km" +Lewiston,Santa Ana,,1 day 21 hours,"5,010 km" +Nashville,Austin,,12 hours 33 mins,"1,383 km" +Austin,Nashville,,12 hours 31 mins,"1,382 km" +San Luis Obispo,Phoenix,,8 hours 41 mins,907 km +Phoenix,San Luis Obispo,,8 hours 40 mins,905 km +Missoula,Las Vegas,,13 hours 6 mins,"1,517 km" +Las Vegas,Missoula,,13 hours 8 mins,"1,517 km" +Charleston,Nashville,,8 hours 22 mins,888 km +Charleston,Bristol,,, +Charleston,Knoxville,,5 hours 45 mins,601 km +Charleston,Chattanooga,,6 hours 31 mins,671 km +Charleston,Memphis,,10 hours 23 mins,"1,110 km" +Nashville,Charleston,,8 hours 20 mins,887 km +Bristol,Charleston,,, +Knoxville,Charleston,,5 hours 41 mins,600 km +Chattanooga,Charleston,,6 hours 30 mins,681 km +Memphis,Charleston,,10 hours 21 mins,"1,108 km" +Baltimore,Buffalo,,6 hours 9 mins,594 km +Baltimore,Manhattan,,3 hours 17 mins,314 km +Baltimore,Niagara Falls,,6 hours 30 mins,631 km +Baltimore,Islip,,3 hours 57 mins,385 km +Baltimore,New York,,3 hours 7 mins,308 km +Baltimore,Watertown,,6 hours 13 mins,647 km +Baltimore,Newburgh,,3 hours 57 mins,400 km +Baltimore,Syracuse,,5 hours 10 mins,534 km +Baltimore,Plattsburgh,,7 hours 23 mins,788 km +Baltimore,Ogdensburg,,7 hours 12 mins,740 km +Baltimore,Ithaca,,4 hours 55 mins,473 km +Baltimore,Elmira,,4 hours 17 mins,401 km +Baltimore,White Plains,,3 hours 34 mins,359 km +Baltimore,Albany,,, +Baltimore,Binghamton,,4 hours 10 mins,422 km +Baltimore,Rochester,,5 hours 33 mins,563 km +Buffalo,Baltimore,,6 hours 10 mins,596 km +Manhattan,Baltimore,,3 hours 18 mins,307 km +Niagara Falls,Baltimore,,6 hours 31 mins,633 km +Islip,Baltimore,,3 hours 59 mins,376 km +New York,Baltimore,,3 hours 10 mins,302 km +Watertown,Baltimore,,6 hours 12 mins,648 km +Newburgh,Baltimore,,4 hours 1 min,394 km +Syracuse,Baltimore,,5 hours 8 mins,535 km +Plattsburgh,Baltimore,,7 hours 26 mins,783 km +Ogdensburg,Baltimore,,7 hours 11 mins,741 km +Ithaca,Baltimore,,4 hours 54 mins,474 km +Elmira,Baltimore,,4 hours 17 mins,404 km +White Plains,Baltimore,,3 hours 36 mins,351 km +Albany,Baltimore,,, +Binghamton,Baltimore,,4 hours 8 mins,422 km +Rochester,Baltimore,,5 hours 32 mins,565 km +Bloomington,Pellston,,7 hours 40 mins,845 km +Bloomington,Traverse City,,7 hours 4 mins,727 km +Bloomington,Alpena,,8 hours 11 mins,860 km +Bloomington,Iron Mountain,,, +Bloomington,Kalamazoo,,4 hours 33 mins,450 km +Bloomington,Saginaw,,5 hours 51 mins,609 km +Bloomington,Grand Rapids,,4 hours 58 mins,499 km +Bloomington,Lansing,,4 hours 40 mins,489 km +Bloomington,Muskegon,,5 hours 14 mins,513 km +Bloomington,Hancock,,, +Bloomington,Detroit,,5 hours 10 mins,541 km +Bloomington,Escanaba,,8 hours 36 mins,889 km +Pellston,Bloomington,,7 hours 39 mins,844 km +Traverse City,Bloomington,,7 hours 8 mins,733 km +Alpena,Bloomington,,8 hours 8 mins,859 km +Iron Mountain,Bloomington,,, +Kalamazoo,Bloomington,,4 hours 35 mins,454 km +Saginaw,Bloomington,,5 hours 49 mins,608 km +Grand Rapids,Bloomington,,4 hours 58 mins,505 km +Lansing,Bloomington,,4 hours 41 mins,491 km +Muskegon,Bloomington,,5 hours 15 mins,517 km +Hancock,Bloomington,,, +Detroit,Bloomington,,5 hours 14 mins,543 km +Escanaba,Bloomington,,8 hours 37 mins,889 km +Denver,Seattle,,19 hours 14 mins,"2,103 km" +Denver,Wenatchee,,18 hours 16 mins,"2,030 km" +Denver,Pasco,,, +Denver,Yakima,,17 hours 6 mins,"1,875 km" +Denver,Walla Walla,,15 hours 42 mins,"1,717 km" +Denver,Everett,,19 hours 35 mins,"2,138 km" +Denver,Spokane,,15 hours 42 mins,"1,759 km" +Seattle,Denver,,19 hours 11 mins,"2,100 km" +Wenatchee,Denver,,18 hours 10 mins,"2,027 km" +Pasco,Denver,,, +Yakima,Denver,,17 hours 4 mins,"1,872 km" +Walla Walla,Denver,,15 hours 42 mins,"1,714 km" +Everett,Denver,,19 hours 32 mins,"2,135 km" +Spokane,Denver,,15 hours 37 mins,"1,757 km" +Las Vegas,Milwaukee,,1 day 2 hours,"2,879 km" +Milwaukee,Las Vegas,,1 day 2 hours,"2,877 km" +Phoenix,New Orleans,,21 hours 57 mins,"2,451 km" +New Orleans,Phoenix,,21 hours 55 mins,"2,449 km" +Baton Rouge,Dallas,,6 hours 15 mins,687 km +Dallas,Baton Rouge,,6 hours 17 mins,687 km +Anchorage,Seattle,,1 day 17 hours,"3,644 km" +Seattle,Anchorage,,1 day 16 hours,"3,642 km" +St. Louis,Pellston,,9 hours 47 mins,"1,041 km" +St. Louis,Traverse City,,8 hours 41 mins,945 km +St. Louis,Alpena,,10 hours 20 mins,"1,099 km" +St. Louis,Iron Mountain,,, +St. Louis,Kalamazoo,,6 hours 10 mins,667 km +St. Louis,Saginaw,,8 hours 21 mins,901 km +St. Louis,Grand Rapids,,6 hours 35 mins,716 km +St. Louis,Lansing,,7 hours 10 mins,782 km +St. Louis,Muskegon,,6 hours 51 mins,730 km +St. Louis,Hancock,,, +St. Louis,Detroit,,7 hours 53 mins,852 km +St. Louis,Escanaba,,8 hours 55 mins,958 km +Pellston,St. Louis,,9 hours 48 mins,"1,041 km" +Traverse City,St. Louis,,8 hours 43 mins,946 km +Alpena,St. Louis,,10 hours 17 mins,"1,098 km" +Iron Mountain,St. Louis,,, +Kalamazoo,St. Louis,,6 hours 10 mins,667 km +Saginaw,St. Louis,,8 hours 17 mins,899 km +Grand Rapids,St. Louis,,6 hours 33 mins,719 km +Lansing,St. Louis,,7 hours 9 mins,782 km +Muskegon,St. Louis,,6 hours 50 mins,730 km +Hancock,St. Louis,,, +Detroit,St. Louis,,7 hours 55 mins,852 km +Escanaba,St. Louis,,8 hours 55 mins,957 km +State College,Pellston,,9 hours 35 mins,"1,060 km" +State College,Traverse City,,9 hours 35 mins,"1,019 km" +State College,Alpena,,9 hours 33 mins,"1,007 km" +State College,Iron Mountain,,, +State College,Kalamazoo,,7 hours 25 mins,780 km +State College,Saginaw,,7 hours 15 mins,773 km +State College,Grand Rapids,,7 hours 53 mins,847 km +State College,Lansing,,6 hours 54 mins,739 km +State College,Muskegon,,8 hours 26 mins,910 km +State College,Hancock,,, +State College,Detroit,,6 hours 2 mins,636 km +State College,Escanaba,,12 hours 4 mins,"1,308 km" +Pellston,State College,,9 hours 37 mins,"1,055 km" +Traverse City,State College,,9 hours 39 mins,"1,014 km" +Alpena,State College,,9 hours 35 mins,"1,001 km" +Iron Mountain,State College,,, +Kalamazoo,State College,,7 hours 26 mins,774 km +Saginaw,State College,,7 hours 16 mins,768 km +Grand Rapids,State College,,7 hours 53 mins,841 km +Lansing,State College,,6 hours 57 mins,734 km +Muskegon,State College,,8 hours 28 mins,905 km +Hancock,State College,,, +Detroit,State College,,6 hours 4 mins,631 km +Escanaba,State College,,12 hours 6 mins,"1,303 km" +Chicago,Greensboro,,11 hours 18 mins,"1,179 km" +Chicago,Wilmington,,14 hours 11 mins,"1,505 km" +Chicago,New Bern,,14 hours 11 mins,"1,484 km" +Chicago,Charlotte,,11 hours 36 mins,"1,215 km" +Chicago,Raleigh,,12 hours 28 mins,"1,298 km" +Chicago,Asheville,,9 hours 54 mins,"1,053 km" +Chicago,Fayetteville,,12 hours 48 mins,"1,323 km" +Greensboro,Chicago,,11 hours 20 mins,"1,177 km" +Wilmington,Chicago,,14 hours 12 mins,"1,504 km" +New Bern,Chicago,,14 hours 12 mins,"1,482 km" +Charlotte,Chicago,,11 hours 39 mins,"1,215 km" +Raleigh,Chicago,,12 hours 27 mins,"1,297 km" +Asheville,Chicago,,9 hours 54 mins,"1,051 km" +Fayetteville,Chicago,,12 hours 50 mins,"1,323 km" +Detroit,Cedar Rapids,,7 hours 38 mins,824 km +Detroit,Sioux City,,11 hours 40 mins,"1,248 km" +Detroit,Dubuque,,7 hours 18 mins,749 km +Detroit,Des Moines,,8 hours 59 mins,965 km +Detroit,Fort Dodge,,9 hours 52 mins,"1,066 km" +Detroit,Mason City,,9 hours 46 mins,"1,040 km" +Cedar Rapids,Detroit,,7 hours 36 mins,825 km +Sioux City,Detroit,,11 hours 36 mins,"1,249 km" +Dubuque,Detroit,,7 hours 12 mins,746 km +Des Moines,Detroit,,8 hours 49 mins,964 km +Fort Dodge,Detroit,,9 hours 51 mins,"1,067 km" +Mason City,Detroit,,9 hours 44 mins,"1,045 km" +San Jose,Las Vegas,,8 hours 5 mins,849 km +Las Vegas,San Jose,,8 hours 4 mins,847 km +Houston,Atlanta,,11 hours 23 mins,"1,276 km" +Atlanta,Houston,,11 hours 23 mins,"1,276 km" +Dallas,Helena,,23 hours 7 mins,"2,553 km" +Dallas,Billings,,19 hours 36 mins,"2,171 km" +Dallas,Missoula,,1 day 0 hours,"2,721 km" +Dallas,Kalispell,,1 day 2 hours,"2,891 km" +Dallas,Great Falls,,23 hours 5 mins,"2,520 km" +Dallas,Bozeman,,21 hours 36 mins,"2,397 km" +Dallas,West Yellowstone,,21 hours 56 mins,"2,305 km" +Helena,Dallas,,22 hours 59 mins,"2,522 km" +Helena,Billings,,3 hours 37 mins,384 km +Helena,Missoula,,1 hour 46 mins,182 km +Helena,Kalispell,,3 hours 19 mins,311 km +Helena,Great Falls,,1 hour 29 mins,146 km +Helena,Bozeman,,1 hour 39 mins,158 km +Helena,West Yellowstone,,2 hours 59 mins,284 km +Billings,Dallas,,19 hours 29 mins,"2,137 km" +Billings,Helena,,3 hours 39 mins,388 km +Billings,Missoula,,4 hours 58 mins,555 km +Billings,Kalispell,,6 hours 56 mins,726 km +Billings,Great Falls,,3 hours 35 mins,352 km +Billings,Bozeman,,2 hours 9 mins,231 km +Billings,West Yellowstone,,3 hours 48 mins,372 km +Missoula,Dallas,,1 day 0 hours,"2,689 km" +Missoula,Helena,,1 hour 45 mins,182 km +Missoula,Billings,,4 hours 56 mins,551 km +Missoula,Kalispell,,2 hours 13 mins,188 km +Missoula,Great Falls,,2 hours 41 mins,266 km +Missoula,Bozeman,,2 hours 59 mins,325 km +Missoula,West Yellowstone,,4 hours 7 mins,425 km +Kalispell,Dallas,,1 day 2 hours,"2,832 km" +Kalispell,Helena,,3 hours 19 mins,310 km +Kalispell,Billings,,6 hours 54 mins,695 km +Kalispell,Missoula,,2 hours 13 mins,195 km +Kalispell,Great Falls,,3 hours 42 mins,365 km +Kalispell,Bozeman,,4 hours 56 mins,468 km +Kalispell,West Yellowstone,,6 hours 5 mins,595 km +Great Falls,Dallas,,22 hours 58 mins,"2,489 km" +Great Falls,Helena,,1 hour 28 mins,145 km +Great Falls,Billings,,3 hours 32 mins,352 km +Great Falls,Missoula,,2 hours 42 mins,266 km +Great Falls,Kalispell,,3 hours 45 mins,365 km +Great Falls,Bozeman,,2 hours 55 mins,299 km +Great Falls,West Yellowstone,,4 hours 14 mins,425 km +Bozeman,Dallas,,21 hours 28 mins,"2,365 km" +Bozeman,Helena,,1 hour 40 mins,158 km +Bozeman,Billings,,2 hours 6 mins,227 km +Bozeman,Missoula,,2 hours 59 mins,326 km +Bozeman,Kalispell,,4 hours 57 mins,496 km +Bozeman,Great Falls,,2 hours 55 mins,299 km +Bozeman,West Yellowstone,,1 hour 42 mins,144 km +West Yellowstone,Dallas,,21 hours 55 mins,"2,273 km" +West Yellowstone,Helena,,2 hours 58 mins,285 km +West Yellowstone,Billings,,3 hours 44 mins,368 km +West Yellowstone,Missoula,,4 hours 4 mins,425 km +West Yellowstone,Kalispell,,6 hours 2 mins,596 km +West Yellowstone,Great Falls,,4 hours 12 mins,425 km +West Yellowstone,Bozeman,,1 hour 41 mins,144 km +Jacksonville,Evansville,,10 hours 51 mins,"1,198 km" +Jacksonville,South Bend,,15 hours 8 mins,"1,644 km" +Jacksonville,Fort Wayne,,14 hours 40 mins,"1,567 km" +Jacksonville,Valparaiso,,, +Jacksonville,Indianapolis,,12 hours 50 mins,"1,416 km" +Evansville,Jacksonville,,10 hours 50 mins,"1,194 km" +Evansville,South Bend,,5 hours 1 min,512 km +Evansville,Fort Wayne,,4 hours 34 mins,476 km +Evansville,Valparaiso,,, +Evansville,Indianapolis,,2 hours 44 mins,277 km +South Bend,Jacksonville,,15 hours 7 mins,"1,643 km" +South Bend,Evansville,,5 hours 1 min,515 km +South Bend,Fort Wayne,,1 hour 46 mins,145 km +South Bend,Valparaiso,,, +South Bend,Indianapolis,,2 hours 33 mins,241 km +Fort Wayne,Jacksonville,,14 hours 36 mins,"1,566 km" +Fort Wayne,Evansville,,4 hours 32 mins,478 km +Fort Wayne,South Bend,,1 hour 46 mins,146 km +Fort Wayne,Valparaiso,,, +Fort Wayne,Indianapolis,,2 hours 3 mins,203 km +Valparaiso,Jacksonville,,, +Valparaiso,Evansville,,, +Valparaiso,South Bend,,, +Valparaiso,Fort Wayne,,, +Valparaiso,Indianapolis,,, +Indianapolis,Jacksonville,,12 hours 51 mins,"1,414 km" +Indianapolis,Evansville,,2 hours 44 mins,277 km +Indianapolis,South Bend,,2 hours 32 mins,237 km +Indianapolis,Fort Wayne,,2 hours 5 mins,201 km +Indianapolis,Valparaiso,,, +Dallas,Cedar Rapids,,12 hours 26 mins,"1,328 km" +Dallas,Sioux City,,11 hours 2 mins,"1,214 km" +Dallas,Dubuque,,13 hours 36 mins,"1,448 km" +Dallas,Des Moines,,10 hours 37 mins,"1,123 km" +Dallas,Fort Dodge,,11 hours 56 mins,"1,243 km" +Dallas,Mason City,,12 hours 24 mins,"1,316 km" +Cedar Rapids,Dallas,,12 hours 26 mins,"1,324 km" +Sioux City,Dallas,,11 hours 6 mins,"1,216 km" +Dubuque,Dallas,,13 hours 37 mins,"1,435 km" +Des Moines,Dallas,,10 hours 38 mins,"1,121 km" +Fort Dodge,Dallas,,11 hours 57 mins,"1,238 km" +Mason City,Dallas,,12 hours 23 mins,"1,314 km" +Los Angeles,Eugene,,13 hours 7 mins,"1,377 km" +Eugene,Los Angeles,,13 hours 7 mins,"1,380 km" +Denver,Green Bay,,16 hours 2 mins,"1,779 km" +Denver,Rhinelander,,16 hours 25 mins,"1,844 km" +Denver,Marquette,,14 hours 51 mins,"1,681 km" +Denver,Madison,,14 hours 0 mins,"1,551 km" +Denver,La Crosse,,13 hours 23 mins,"1,517 km" +Denver,Devils Lake,,14 hours 11 mins,"1,566 km" +Denver,Appleton,,15 hours 36 mins,"1,728 km" +Denver,Mosinee,,15 hours 30 mins,"1,716 km" +Denver,Milwaukee,,14 hours 55 mins,"1,684 km" +Denver,Eau Claire,,14 hours 15 mins,"1,603 km" +Green Bay,Denver,,16 hours 6 mins,"1,766 km" +Green Bay,Rhinelander,,2 hours 23 mins,219 km +Green Bay,Marquette,,1 hour 46 mins,186 km +Green Bay,Madison,,2 hours 22 mins,222 km +Green Bay,La Crosse,,3 hours 29 mins,325 km +Green Bay,Devils Lake,,2 hours 40 mins,235 km +Green Bay,Appleton,,38 mins,52.5 km +Green Bay,Mosinee,,1 hour 35 mins,162 km +Green Bay,Milwaukee,,1 hour 49 mins,188 km +Green Bay,Eau Claire,,2 hours 59 mins,313 km +Rhinelander,Denver,,16 hours 26 mins,"1,843 km" +Rhinelander,Green Bay,,2 hours 26 mins,215 km +Rhinelander,Marquette,,3 hours 40 mins,393 km +Rhinelander,Madison,,3 hours 6 mins,321 km +Rhinelander,La Crosse,,3 hours 25 mins,325 km +Rhinelander,Devils Lake,,2 hours 52 mins,294 km +Rhinelander,Appleton,,2 hours 31 mins,257 km +Rhinelander,Mosinee,,1 hour 11 mins,116 km +Rhinelander,Milwaukee,,3 hours 42 mins,395 km +Rhinelander,Eau Claire,,2 hours 28 mins,253 km +Marquette,Denver,,14 hours 51 mins,"1,675 km" +Marquette,Green Bay,,1 hour 46 mins,185 km +Marquette,Rhinelander,,3 hours 39 mins,393 km +Marquette,Madison,,1 hour 17 mins,126 km +Marquette,La Crosse,,3 hours 4 mins,336 km +Marquette,Devils Lake,,1 hour 53 mins,188 km +Marquette,Appleton,,1 hour 37 mins,170 km +Marquette,Mosinee,,2 hours 36 mins,280 km +Marquette,Milwaukee,,6 mins,2.0 km +Marquette,Eau Claire,,3 hours 34 mins,393 km +Madison,Denver,,14 hours 0 mins,"1,539 km" +Madison,Green Bay,,2 hours 20 mins,226 km +Madison,Rhinelander,,3 hours 6 mins,321 km +Madison,Marquette,,1 hour 17 mins,126 km +Madison,La Crosse,,2 hours 19 mins,229 km +Madison,Devils Lake,,56 mins,70.7 km +Madison,Appleton,,1 hour 53 mins,175 km +Madison,Mosinee,,2 hours 3 mins,209 km +Madison,Milwaukee,,1 hour 19 mins,128 km +Madison,Eau Claire,,2 hours 49 mins,287 km +La Crosse,Denver,,13 hours 23 mins,"1,515 km" +La Crosse,Green Bay,,3 hours 29 mins,323 km +La Crosse,Rhinelander,,3 hours 26 mins,323 km +La Crosse,Marquette,,3 hours 3 mins,336 km +La Crosse,Madison,,2 hours 18 mins,228 km +La Crosse,Devils Lake,,1 hour 40 mins,170 km +La Crosse,Appleton,,3 hours 2 mins,273 km +La Crosse,Mosinee,,2 hours 23 mins,209 km +La Crosse,Milwaukee,,3 hours 6 mins,338 km +La Crosse,Eau Claire,,1 hour 42 mins,143 km +Devils Lake,Denver,,14 hours 14 mins,"1,553 km" +Devils Lake,Green Bay,,2 hours 42 mins,234 km +Devils Lake,Rhinelander,,2 hours 54 mins,294 km +Devils Lake,Marquette,,1 hour 54 mins,187 km +Devils Lake,Madison,,1 hour 0 mins,63.4 km +Devils Lake,La Crosse,,1 hour 42 mins,171 km +Devils Lake,Appleton,,2 hours 15 mins,183 km +Devils Lake,Mosinee,,1 hour 51 mins,182 km +Devils Lake,Milwaukee,,1 hour 56 mins,189 km +Devils Lake,Eau Claire,,2 hours 12 mins,229 km +Appleton,Denver,,15 hours 37 mins,"1,714 km" +Appleton,Green Bay,,36 mins,51.0 km +Appleton,Rhinelander,,2 hours 28 mins,256 km +Appleton,Marquette,,1 hour 35 mins,170 km +Appleton,Madison,,1 hour 53 mins,169 km +Appleton,La Crosse,,3 hours 1 min,273 km +Appleton,Devils Lake,,2 hours 12 mins,182 km +Appleton,Mosinee,,1 hour 25 mins,144 km +Appleton,Milwaukee,,1 hour 38 mins,172 km +Appleton,Eau Claire,,3 hours 0 mins,293 km +Mosinee,Denver,,15 hours 30 mins,"1,716 km" +Mosinee,Green Bay,,1 hour 36 mins,160 km +Mosinee,Rhinelander,,1 hour 11 mins,116 km +Mosinee,Marquette,,2 hours 35 mins,280 km +Mosinee,Madison,,2 hours 2 mins,208 km +Mosinee,La Crosse,,2 hours 22 mins,211 km +Mosinee,Devils Lake,,1 hour 48 mins,181 km +Mosinee,Appleton,,1 hour 26 mins,144 km +Mosinee,Milwaukee,,2 hours 38 mins,282 km +Mosinee,Eau Claire,,1 hour 41 mins,167 km +Milwaukee,Denver,,14 hours 54 mins,"1,677 km" +Milwaukee,Green Bay,,1 hour 48 mins,188 km +Milwaukee,Rhinelander,,3 hours 42 mins,395 km +Milwaukee,Marquette,,7 mins,1.6 km +Milwaukee,Madison,,1 hour 20 mins,128 km +Milwaukee,La Crosse,,3 hours 7 mins,338 km +Milwaukee,Devils Lake,,1 hour 55 mins,190 km +Milwaukee,Appleton,,1 hour 39 mins,172 km +Milwaukee,Mosinee,,2 hours 38 mins,282 km +Milwaukee,Eau Claire,,3 hours 36 mins,395 km +Eau Claire,Denver,,14 hours 15 mins,"1,563 km" +Eau Claire,Green Bay,,3 hours 0 mins,309 km +Eau Claire,Rhinelander,,2 hours 27 mins,251 km +Eau Claire,Marquette,,3 hours 34 mins,394 km +Eau Claire,Madison,,2 hours 48 mins,286 km +Eau Claire,La Crosse,,1 hour 43 mins,138 km +Eau Claire,Devils Lake,,2 hours 11 mins,228 km +Eau Claire,Appleton,,3 hours 3 mins,294 km +Eau Claire,Mosinee,,1 hour 40 mins,165 km +Eau Claire,Milwaukee,,3 hours 36 mins,396 km +Newark,Charleston,,11 hours 17 mins,"1,214 km" +Charleston,Newark,,11 hours 13 mins,"1,206 km" +Gainesville,Augusta,,5 hours 18 mins,524 km +Gainesville,Decatur,,5 hours 1 min,541 km +Gainesville,Atlanta,,4 hours 50 mins,533 km +Gainesville,Valdosta,,1 hour 43 mins,171 km +Gainesville,Savannah,,3 hours 16 mins,336 km +Augusta,Gainesville,,5 hours 15 mins,522 km +Decatur,Gainesville,,5 hours 3 mins,535 km +Atlanta,Gainesville,,4 hours 52 mins,534 km +Valdosta,Gainesville,,1 hour 44 mins,172 km +Savannah,Gainesville,,3 hours 15 mins,335 km +St. Petersburg,Rockford,,, +Rockford,St. Petersburg,,, +Dallas,Huntsville,,10 hours 10 mins,"1,071 km" +Huntsville,Dallas,,10 hours 13 mins,"1,072 km" +Kansas City,Bemidji,,9 hours 50 mins,"1,046 km" +Kansas City,Minneapolis,,6 hours 22 mins,701 km +Kansas City,Duluth,,8 hours 28 mins,945 km +Kansas City,Brainerd,,8 hours 19 mins,902 km +Kansas City,Gustavus,,6 hours 7 mins,663 km +Kansas City,St. Cloud,,7 hours 19 mins,805 km +Kansas City,Hibbing,,9 hours 21 mins,"1,008 km" +Kansas City,International Falls,,10 hours 47 mins,"1,172 km" +Bemidji,Kansas City,,9 hours 48 mins,"1,047 km" +Minneapolis,Kansas City,,6 hours 21 mins,702 km +Duluth,Kansas City,,8 hours 28 mins,945 km +Brainerd,Kansas City,,8 hours 18 mins,904 km +Gustavus,Kansas City,,6 hours 6 mins,663 km +St. Cloud,Kansas City,,7 hours 19 mins,805 km +Hibbing,Kansas City,,9 hours 20 mins,"1,008 km" +International Falls,Kansas City,,10 hours 46 mins,"1,172 km" +Buffalo,Abilene,,22 hours 19 mins,"2,465 km" +Buffalo,Amarillo,,21 hours 50 mins,"2,417 km" +Buffalo,Harlingen,,1 day 3 hours,"2,918 km" +Buffalo,Lubbock,,23 hours 13 mins,"2,555 km" +Buffalo,College Station,,22 hours 11 mins,"2,363 km" +Buffalo,Corpus Christi,,1 day 1 hour,"2,723 km" +Buffalo,Wichita Falls,,20 hours 5 mins,"2,221 km" +Buffalo,Waco,,21 hours 28 mins,"2,361 km" +Buffalo,San Angelo,,23 hours 35 mins,"2,599 km" +Buffalo,Houston,,22 hours 10 mins,"2,390 km" +Buffalo,San Antonio,,1 day 0 hours,"2,646 km" +Buffalo,Del Rio,,1 day 2 hours,"2,852 km" +Buffalo,Mission,,, +Buffalo,Beaumont,,, +Buffalo,Longview,,19 hours 2 mins,"2,066 km" +Buffalo,Midland,,1 day 0 hours,"2,666 km" +Buffalo,El Paso,,1 day 4 hours,"3,115 km" +Buffalo,Brownsville,,1 day 3 hours,"2,957 km" +Buffalo,Austin,,22 hours 53 mins,"2,519 km" +Buffalo,Dallas,,20 hours 5 mins,"2,205 km" +Buffalo,Killeen,,22 hours 16 mins,"2,454 km" +Buffalo,Laredo,,1 day 2 hours,"2,897 km" +Buffalo,Texarkana,,17 hours 36 mins,"1,925 km" +Abilene,Buffalo,,22 hours 20 mins,"2,467 km" +Amarillo,Buffalo,,21 hours 50 mins,"2,417 km" +Harlingen,Buffalo,,1 day 3 hours,"2,916 km" +Lubbock,Buffalo,,23 hours 10 mins,"2,556 km" +College Station,Buffalo,,22 hours 3 mins,"2,357 km" +Corpus Christi,Buffalo,,1 day 1 hour,"2,727 km" +Wichita Falls,Buffalo,,20 hours 5 mins,"2,222 km" +Waco,Buffalo,,21 hours 22 mins,"2,355 km" +San Angelo,Buffalo,,23 hours 34 mins,"2,600 km" +Houston,Buffalo,,22 hours 6 mins,"2,388 km" +San Antonio,Buffalo,,23 hours 57 mins,"2,642 km" +Del Rio,Buffalo,,1 day 2 hours,"2,853 km" +Mission,Buffalo,,, +Beaumont,Buffalo,,, +Longview,Buffalo,,18 hours 58 mins,"2,063 km" +Midland,Buffalo,,1 day 0 hours,"2,669 km" +El Paso,Buffalo,,1 day 4 hours,"3,114 km" +Brownsville,Buffalo,,1 day 3 hours,"2,956 km" +Austin,Buffalo,,22 hours 46 mins,"2,516 km" +Dallas,Buffalo,,20 hours 0 mins,"2,203 km" +Killeen,Buffalo,,22 hours 11 mins,"2,451 km" +Laredo,Buffalo,,1 day 2 hours,"2,893 km" +Texarkana,Buffalo,,17 hours 31 mins,"1,922 km" +Dallas,Bismarck,,, +Dallas,Grand Forks,,16 hours 32 mins,"1,857 km" +Dallas,Minot,,18 hours 58 mins,"1,986 km" +Dallas,Williston,,20 hours 41 mins,"2,171 km" +Bismarck,Dallas,,, +Bismarck,Grand Forks,,, +Bismarck,Minot,,, +Bismarck,Williston,,, +Grand Forks,Dallas,,16 hours 34 mins,"1,858 km" +Grand Forks,Bismarck,,, +Grand Forks,Minot,,3 hours 17 mins,338 km +Grand Forks,Williston,,5 hours 12 mins,535 km +Minot,Dallas,,18 hours 57 mins,"1,972 km" +Minot,Bismarck,,, +Minot,Grand Forks,,3 hours 17 mins,338 km +Minot,Williston,,2 hours 1 min,196 km +Williston,Dallas,,20 hours 38 mins,"2,172 km" +Williston,Bismarck,,, +Williston,Grand Forks,,5 hours 11 mins,535 km +Williston,Minot,,2 hours 1 min,196 km +Raleigh,Abilene,,19 hours 57 mins,"2,207 km" +Raleigh,Amarillo,,21 hours 28 mins,"2,371 km" +Raleigh,Harlingen,,22 hours 19 mins,"2,458 km" +Raleigh,Lubbock,,22 hours 20 mins,"2,472 km" +Raleigh,College Station,,18 hours 33 mins,"1,985 km" +Raleigh,Corpus Christi,,20 hours 34 mins,"2,263 km" +Raleigh,Wichita Falls,,19 hours 22 mins,"2,145 km" +Raleigh,Waco,,18 hours 25 mins,"1,994 km" +Raleigh,San Angelo,,21 hours 11 mins,"2,331 km" +Raleigh,Houston,,17 hours 27 mins,"1,930 km" +Raleigh,San Antonio,,20 hours 19 mins,"2,244 km" +Raleigh,Del Rio,,22 hours 43 mins,"2,491 km" +Raleigh,Mission,,, +Raleigh,Beaumont,,, +Raleigh,Longview,,15 hours 39 mins,"1,718 km" +Raleigh,Midland,,22 hours 5 mins,"2,448 km" +Raleigh,El Paso,,1 day 2 hours,"2,938 km" +Raleigh,Brownsville,,22 hours 41 mins,"2,497 km" +Raleigh,Austin,,19 hours 49 mins,"2,155 km" +Raleigh,Dallas,,17 hours 22 mins,"1,919 km" +Raleigh,Killeen,,19 hours 13 mins,"2,089 km" +Raleigh,Laredo,,22 hours 26 mins,"2,436 km" +Raleigh,Texarkana,,15 hours 16 mins,"1,654 km" +Abilene,Raleigh,,19 hours 58 mins,"2,201 km" +Amarillo,Raleigh,,21 hours 30 mins,"2,372 km" +Harlingen,Raleigh,,22 hours 17 mins,"2,456 km" +Lubbock,Raleigh,,22 hours 17 mins,"2,467 km" +College Station,Raleigh,,18 hours 30 mins,"1,978 km" +Corpus Christi,Raleigh,,20 hours 39 mins,"2,266 km" +Wichita Falls,Raleigh,,19 hours 26 mins,"2,131 km" +Waco,Raleigh,,18 hours 23 mins,"1,987 km" +San Angelo,Raleigh,,21 hours 10 mins,"2,325 km" +Houston,Raleigh,,17 hours 29 mins,"1,928 km" +San Antonio,Raleigh,,20 hours 21 mins,"2,242 km" +Del Rio,Raleigh,,22 hours 47 mins,"2,489 km" +Mission,Raleigh,,, +Beaumont,Raleigh,,, +Longview,Raleigh,,15 hours 39 mins,"1,711 km" +Midland,Raleigh,,22 hours 3 mins,"2,441 km" +El Paso,Raleigh,,1 day 2 hours,"2,931 km" +Brownsville,Raleigh,,22 hours 41 mins,"2,496 km" +Austin,Raleigh,,19 hours 49 mins,"2,149 km" +Dallas,Raleigh,,17 hours 23 mins,"1,910 km" +Killeen,Raleigh,,19 hours 14 mins,"2,083 km" +Laredo,Raleigh,,22 hours 25 mins,"2,434 km" +Texarkana,Raleigh,,15 hours 17 mins,"1,652 km" +Bozeman,San Diego,,17 hours 1 min,"1,863 km" +Bozeman,Redding,,15 hours 34 mins,"1,613 km" +Bozeman,Sacramento,,14 hours 24 mins,"1,511 km" +Bozeman,Fresno,,16 hours 58 mins,"1,779 km" +Bozeman,San Luis Obispo,,18 hours 33 mins,"2,008 km" +Bozeman,Oakland,,15 hours 38 mins,"1,641 km" +Bozeman,Santa Barbara,,17 hours 31 mins,"1,907 km" +Bozeman,Stockton,,15 hours 7 mins,"1,587 km" +Bozeman,Santa Rosa,,15 hours 57 mins,"1,666 km" +Bozeman,Bakersfield,,16 hours 20 mins,"1,788 km" +Bozeman,Santa Ana,,16 hours 9 mins,"1,764 km" +Bozeman,Santa Maria,,18 hours 20 mins,"1,963 km" +Bozeman,San Jose,,16 hours 16 mins,"1,703 km" +Bozeman,Burbank,,16 hours 12 mins,"1,774 km" +Bozeman,Arcata,,18 hours 10 mins,"1,856 km" +Bozeman,Butte,,15 hours 6 mins,"1,550 km" +Bozeman,Palm Springs,,16 hours 14 mins,"1,779 km" +Bozeman,Los Angeles,,16 hours 8 mins,"1,764 km" +Bozeman,Long Beach,,16 hours 21 mins,"1,786 km" +Bozeman,San Francisco,,15 hours 47 mins,"1,650 km" +Bozeman,Monterey,,17 hours 17 mins,"1,811 km" +San Diego,Bozeman,,17 hours 0 mins,"1,862 km" +Redding,Bozeman,,15 hours 27 mins,"1,613 km" +Sacramento,Bozeman,,14 hours 21 mins,"1,510 km" +Fresno,Bozeman,,16 hours 50 mins,"1,778 km" +San Luis Obispo,Bozeman,,18 hours 31 mins,"2,009 km" +Oakland,Bozeman,,15 hours 32 mins,"1,640 km" +Santa Barbara,Bozeman,,17 hours 28 mins,"1,905 km" +Stockton,Bozeman,,15 hours 3 mins,"1,587 km" +Santa Rosa,Bozeman,,15 hours 53 mins,"1,665 km" +Bakersfield,Bozeman,,16 hours 21 mins,"1,788 km" +Santa Ana,Bozeman,,16 hours 3 mins,"1,759 km" +Santa Maria,Bozeman,,18 hours 20 mins,"1,964 km" +San Jose,Bozeman,,16 hours 7 mins,"1,701 km" +Burbank,Bozeman,,16 hours 4 mins,"1,766 km" +Arcata,Bozeman,,18 hours 5 mins,"1,853 km" +Butte,Bozeman,,15 hours 0 mins,"1,549 km" +Palm Springs,Bozeman,,16 hours 9 mins,"1,776 km" +Los Angeles,Bozeman,,16 hours 3 mins,"1,762 km" +Long Beach,Bozeman,,16 hours 21 mins,"1,790 km" +San Francisco,Bozeman,,15 hours 39 mins,"1,649 km" +Monterey,Bozeman,,17 hours 8 mins,"1,808 km" +Atlantic City,Miami,,18 hours 7 mins,"2,004 km" +Miami,Atlantic City,,17 hours 59 mins,"1,997 km" +Greer,State College,,9 hours 32 mins,977 km +Greer,Johnstown,,8 hours 49 mins,912 km +Greer,Harrisburg,,8 hours 29 mins,908 km +Greer,Erie,,10 hours 0 mins,"1,053 km" +Greer,Pittsburgh,,8 hours 17 mins,858 km +Greer,Latrobe,,8 hours 28 mins,844 km +Greer,Philadelphia,,9 hours 32 mins,"1,009 km" +Greer,Lewisburg,,9 hours 28 mins,994 km +Greer,Scranton,,10 hours 16 mins,"1,095 km" +State College,Greer,,9 hours 30 mins,982 km +Johnstown,Greer,,8 hours 48 mins,909 km +Harrisburg,Greer,,8 hours 31 mins,906 km +Erie,Greer,,10 hours 2 mins,"1,050 km" +Pittsburgh,Greer,,8 hours 15 mins,856 km +Latrobe,Greer,,8 hours 25 mins,841 km +Philadelphia,Greer,,9 hours 34 mins,"1,016 km" +Lewisburg,Greer,,9 hours 29 mins,992 km +Scranton,Greer,,10 hours 15 mins,"1,093 km" +Bend,Los Angeles,,12 hours 48 mins,"1,319 km" +Los Angeles,Bend,,12 hours 46 mins,"1,318 km" +Denver,Oklahoma City,,9 hours 39 mins,"1,093 km" +Oklahoma City,Denver,,9 hours 43 mins,"1,091 km" +Washington,Lynchburg,,3 hours 19 mins,290 km +Washington,Richmond,,1 hour 49 mins,175 km +Washington,Petersburg,,2 hours 8 mins,211 km +Washington,Newport News,,2 hours 41 mins,274 km +Washington,Charlottesville,,2 hours 19 mins,188 km +Washington,Staunton,,2 hours 31 mins,253 km +Washington,Jamestown,,2 hours 36 mins,256 km +Washington,Norfolk,,3 hours 10 mins,313 km +Washington,Roanoke,,3 hours 42 mins,387 km +Lynchburg,Washington,,3 hours 19 mins,291 km +Richmond,Washington,,1 hour 51 mins,176 km +Petersburg,Washington,,2 hours 11 mins,212 km +Newport News,Washington,,2 hours 43 mins,275 km +Charlottesville,Washington,,2 hours 18 mins,188 km +Staunton,Washington,,2 hours 30 mins,253 km +Jamestown,Washington,,2 hours 39 mins,257 km +Norfolk,Washington,,3 hours 13 mins,314 km +Roanoke,Washington,,3 hours 42 mins,387 km +Orlando,Moline,,17 hours 42 mins,"1,966 km" +Orlando,Belleville,,14 hours 12 mins,"1,579 km" +Orlando,Bloomington,,13 hours 49 mins,"1,533 km" +Orlando,Champaign,,15 hours 15 mins,"1,705 km" +Orlando,Chicago,,16 hours 53 mins,"1,858 km" +Orlando,Rockford,,17 hours 56 mins,"2,000 km" +Orlando,Peoria,,16 hours 19 mins,"1,816 km" +Moline,Orlando,,17 hours 46 mins,"1,964 km" +Belleville,Orlando,,14 hours 16 mins,"1,576 km" +Bloomington,Orlando,,13 hours 55 mins,"1,534 km" +Champaign,Orlando,,15 hours 20 mins,"1,705 km" +Chicago,Orlando,,16 hours 56 mins,"1,858 km" +Rockford,Orlando,,17 hours 55 mins,"1,994 km" +Peoria,Orlando,,16 hours 25 mins,"1,816 km" +Boston,New Orleans,,22 hours 37 mins,"2,456 km" +New Orleans,Boston,,22 hours 36 mins,"2,454 km" +Appleton,Moline,,4 hours 19 mins,443 km +Appleton,Belleville,,6 hours 51 mins,731 km +Appleton,Bloomington,,6 hours 36 mins,693 km +Appleton,Champaign,,4 hours 54 mins,525 km +Appleton,Chicago,,3 hours 4 mins,314 km +Appleton,Rockford,,2 hours 45 mins,274 km +Appleton,Peoria,,4 hours 39 mins,480 km +Moline,Appleton,,4 hours 19 mins,444 km +Belleville,Appleton,,6 hours 52 mins,731 km +Bloomington,Appleton,,6 hours 38 mins,694 km +Champaign,Appleton,,4 hours 57 mins,526 km +Chicago,Appleton,,3 hours 1 min,314 km +Rockford,Appleton,,2 hours 47 mins,274 km +Peoria,Appleton,,4 hours 41 mins,477 km +Norfolk,Buffalo,,9 hours 39 mins,915 km +Norfolk,Manhattan,,6 hours 32 mins,590 km +Norfolk,Niagara Falls,,10 hours 0 mins,946 km +Norfolk,Islip,,7 hours 12 mins,660 km +Norfolk,New York,,6 hours 23 mins,583 km +Norfolk,Watertown,,9 hours 39 mins,942 km +Norfolk,Newburgh,,7 hours 12 mins,675 km +Norfolk,Syracuse,,8 hours 36 mins,830 km +Norfolk,Plattsburgh,,10 hours 39 mins,"1,064 km" +Norfolk,Ogdensburg,,10 hours 38 mins,"1,035 km" +Norfolk,Ithaca,,8 hours 30 mins,791 km +Norfolk,Elmira,,7 hours 51 mins,767 km +Norfolk,White Plains,,6 hours 50 mins,634 km +Norfolk,Albany,,, +Norfolk,Binghamton,,7 hours 36 mins,718 km +Norfolk,Rochester,,9 hours 7 mins,929 km +Buffalo,Norfolk,,9 hours 44 mins,915 km +Manhattan,Norfolk,,6 hours 31 mins,590 km +Niagara Falls,Norfolk,,10 hours 6 mins,945 km +Islip,Norfolk,,7 hours 12 mins,659 km +New York,Norfolk,,6 hours 23 mins,584 km +Watertown,Norfolk,,9 hours 38 mins,941 km +Newburgh,Norfolk,,7 hours 14 mins,677 km +Syracuse,Norfolk,,8 hours 34 mins,828 km +Plattsburgh,Norfolk,,10 hours 39 mins,"1,065 km" +Ogdensburg,Norfolk,,10 hours 37 mins,"1,034 km" +Ithaca,Norfolk,,8 hours 28 mins,790 km +Elmira,Norfolk,,7 hours 57 mins,775 km +White Plains,Norfolk,,6 hours 49 mins,634 km +Albany,Norfolk,,, +Binghamton,Norfolk,,7 hours 34 mins,715 km +Rochester,Norfolk,,9 hours 12 mins,936 km +Richmond,Moline,,14 hours 2 mins,"1,495 km" +Richmond,Belleville,,12 hours 9 mins,"1,305 km" +Richmond,Bloomington,,10 hours 13 mins,"1,070 km" +Richmond,Champaign,,11 hours 25 mins,"1,205 km" +Richmond,Chicago,,12 hours 7 mins,"1,286 km" +Richmond,Rockford,,13 hours 32 mins,"1,426 km" +Richmond,Peoria,,12 hours 38 mins,"1,345 km" +Moline,Richmond,,13 hours 58 mins,"1,493 km" +Belleville,Richmond,,12 hours 7 mins,"1,302 km" +Bloomington,Richmond,,10 hours 13 mins,"1,070 km" +Champaign,Richmond,,11 hours 24 mins,"1,201 km" +Chicago,Richmond,,12 hours 12 mins,"1,288 km" +Rockford,Richmond,,13 hours 36 mins,"1,442 km" +Peoria,Richmond,,12 hours 37 mins,"1,344 km" +Myrtle Beach,Baltimore,,7 hours 28 mins,757 km +Baltimore,Myrtle Beach,,7 hours 28 mins,766 km +Houston,Pensacola,,7 hours 38 mins,845 km +Pensacola,Houston,,7 hours 37 mins,845 km +Omaha,Seattle,,1 day 0 hours,"2,663 km" +Seattle,Omaha,,1 day 0 hours,"2,662 km" +Denver,Fort Lauderdale,,1 day 5 hours,"3,288 km" +Fort Lauderdale,Denver,,1 day 5 hours,"3,287 km" +Pensacola,Kansas City,,14 hours 0 mins,"1,447 km" +Kansas City,Pensacola,,14 hours 4 mins,"1,433 km" +Panama City,Atlanta,,4 hours 50 mins,465 km +Atlanta,Panama City,,4 hours 51 mins,464 km +Fort Lauderdale,Abilene,,21 hours 16 mins,"2,367 km" +Fort Lauderdale,Amarillo,,1 day 0 hours,"2,666 km" +Fort Lauderdale,Harlingen,,21 hours 27 mins,"2,403 km" +Fort Lauderdale,Lubbock,,23 hours 40 mins,"2,632 km" +Fort Lauderdale,College Station,,17 hours 59 mins,"1,998 km" +Fort Lauderdale,Corpus Christi,,19 hours 41 mins,"2,209 km" +Fort Lauderdale,Wichita Falls,,20 hours 42 mins,"2,305 km" +Fort Lauderdale,Waco,,19 hours 18 mins,"2,131 km" +Fort Lauderdale,San Angelo,,22 hours 16 mins,"2,459 km" +Fort Lauderdale,Houston,,16 hours 34 mins,"1,875 km" +Fort Lauderdale,San Antonio,,19 hours 26 mins,"2,189 km" +Fort Lauderdale,Del Rio,,21 hours 50 mins,"2,436 km" +Fort Lauderdale,Mission,,, +Fort Lauderdale,Beaumont,,, +Fort Lauderdale,Longview,,16 hours 59 mins,"1,879 km" +Fort Lauderdale,Midland,,23 hours 24 mins,"2,608 km" +Fort Lauderdale,El Paso,,1 day 3 hours,"3,074 km" +Fort Lauderdale,Brownsville,,21 hours 48 mins,"2,442 km" +Fort Lauderdale,Austin,,19 hours 2 mins,"2,138 km" +Fort Lauderdale,Dallas,,18 hours 41 mins,"2,079 km" +Fort Lauderdale,Killeen,,19 hours 37 mins,"2,171 km" +Fort Lauderdale,Laredo,,21 hours 33 mins,"2,381 km" +Fort Lauderdale,Texarkana,,17 hours 0 mins,"1,889 km" +Abilene,Fort Lauderdale,,21 hours 16 mins,"2,361 km" +Amarillo,Fort Lauderdale,,1 day 0 hours,"2,654 km" +Harlingen,Fort Lauderdale,,21 hours 24 mins,"2,402 km" +Lubbock,Fort Lauderdale,,23 hours 36 mins,"2,627 km" +College Station,Fort Lauderdale,,17 hours 58 mins,"2,022 km" +Corpus Christi,Fort Lauderdale,,19 hours 46 mins,"2,212 km" +Wichita Falls,Fort Lauderdale,,20 hours 45 mins,"2,291 km" +Waco,Fort Lauderdale,,19 hours 19 mins,"2,129 km" +San Angelo,Fort Lauderdale,,22 hours 17 mins,"2,457 km" +Houston,Fort Lauderdale,,16 hours 35 mins,"1,874 km" +San Antonio,Fort Lauderdale,,19 hours 28 mins,"2,188 km" +Del Rio,Fort Lauderdale,,21 hours 54 mins,"2,435 km" +Mission,Fort Lauderdale,,, +Beaumont,Fort Lauderdale,,, +Longview,Fort Lauderdale,,16 hours 58 mins,"1,872 km" +Midland,Fort Lauderdale,,23 hours 22 mins,"2,601 km" +El Paso,Fort Lauderdale,,1 day 3 hours,"3,072 km" +Brownsville,Fort Lauderdale,,21 hours 48 mins,"2,442 km" +Austin,Fort Lauderdale,,19 hours 3 mins,"2,137 km" +Dallas,Fort Lauderdale,,18 hours 42 mins,"2,070 km" +Killeen,Fort Lauderdale,,19 hours 37 mins,"2,186 km" +Laredo,Fort Lauderdale,,21 hours 31 mins,"2,380 km" +Texarkana,Fort Lauderdale,,17 hours 3 mins,"1,890 km" +Missoula,San Diego,,18 hours 0 mins,"2,047 km" +Missoula,Redding,,13 hours 48 mins,"1,382 km" +Missoula,Sacramento,,15 hours 12 mins,"1,435 km" +Missoula,Fresno,,17 hours 46 mins,"1,703 km" +Missoula,San Luis Obispo,,19 hours 39 mins,"1,906 km" +Missoula,Oakland,,16 hours 26 mins,"1,565 km" +Missoula,Santa Barbara,,18 hours 30 mins,"2,090 km" +Missoula,Stockton,,15 hours 55 mins,"1,512 km" +Missoula,Santa Rosa,,16 hours 45 mins,"1,590 km" +Missoula,Bakersfield,,17 hours 19 mins,"1,972 km" +Missoula,Santa Ana,,17 hours 8 mins,"1,947 km" +Missoula,Santa Maria,,19 hours 19 mins,"2,146 km" +Missoula,San Jose,,17 hours 4 mins,"1,628 km" +Missoula,Burbank,,17 hours 11 mins,"1,957 km" +Missoula,Arcata,,15 hours 16 mins,"1,532 km" +Missoula,Butte,,15 hours 26 mins,"1,533 km" +Missoula,Palm Springs,,17 hours 13 mins,"1,962 km" +Missoula,Los Angeles,,17 hours 8 mins,"1,947 km" +Missoula,Long Beach,,17 hours 20 mins,"1,970 km" +Missoula,San Francisco,,16 hours 35 mins,"1,575 km" +Missoula,Monterey,,18 hours 5 mins,"1,735 km" +San Diego,Missoula,,18 hours 3 mins,"2,047 km" +Redding,Missoula,,13 hours 44 mins,"1,381 km" +Sacramento,Missoula,,15 hours 17 mins,"1,436 km" +Fresno,Missoula,,17 hours 46 mins,"1,703 km" +San Luis Obispo,Missoula,,19 hours 39 mins,"1,915 km" +Oakland,Missoula,,16 hours 28 mins,"1,565 km" +Santa Barbara,Missoula,,18 hours 30 mins,"2,091 km" +Stockton,Missoula,,15 hours 59 mins,"1,512 km" +Santa Rosa,Missoula,,16 hours 49 mins,"1,591 km" +Bakersfield,Missoula,,17 hours 23 mins,"1,974 km" +Santa Ana,Missoula,,17 hours 6 mins,"1,945 km" +Santa Maria,Missoula,,19 hours 22 mins,"2,150 km" +San Jose,Missoula,,17 hours 3 mins,"1,626 km" +Burbank,Missoula,,17 hours 6 mins,"1,952 km" +Arcata,Missoula,,15 hours 12 mins,"1,529 km" +Butte,Missoula,,15 hours 20 mins,"1,526 km" +Palm Springs,Missoula,,17 hours 11 mins,"1,962 km" +Los Angeles,Missoula,,17 hours 5 mins,"1,948 km" +Long Beach,Missoula,,17 hours 23 mins,"1,975 km" +San Francisco,Missoula,,16 hours 35 mins,"1,575 km" +Monterey,Missoula,,18 hours 4 mins,"1,733 km" +Pittsburgh,Buffalo,,3 hours 14 mins,352 km +Pittsburgh,Manhattan,,6 hours 9 mins,608 km +Pittsburgh,Niagara Falls,,3 hours 35 mins,383 km +Pittsburgh,Islip,,6 hours 53 mins,702 km +Pittsburgh,New York,,6 hours 1 min,598 km +Pittsburgh,Watertown,,6 hours 13 mins,681 km +Pittsburgh,Newburgh,,6 hours 3 mins,608 km +Pittsburgh,Syracuse,,5 hours 17 mins,578 km +Pittsburgh,Plattsburgh,,9 hours 6 mins,939 km +Pittsburgh,Ogdensburg,,7 hours 12 mins,774 km +Pittsburgh,Ithaca,,5 hours 15 mins,511 km +Pittsburgh,Elmira,,4 hours 38 mins,438 km +Pittsburgh,White Plains,,6 hours 14 mins,633 km +Pittsburgh,Albany,,, +Pittsburgh,Binghamton,,5 hours 25 mins,504 km +Pittsburgh,Rochester,,4 hours 11 mins,457 km +Buffalo,Pittsburgh,,3 hours 15 mins,353 km +Manhattan,Pittsburgh,,6 hours 8 mins,603 km +Niagara Falls,Pittsburgh,,3 hours 37 mins,383 km +Islip,Pittsburgh,,6 hours 53 mins,700 km +New York,Pittsburgh,,5 hours 57 mins,594 km +Watertown,Pittsburgh,,6 hours 15 mins,681 km +Newburgh,Pittsburgh,,6 hours 6 mins,607 km +Syracuse,Pittsburgh,,5 hours 19 mins,579 km +Plattsburgh,Pittsburgh,,9 hours 8 mins,941 km +Ogdensburg,Pittsburgh,,7 hours 14 mins,774 km +Ithaca,Pittsburgh,,5 hours 14 mins,503 km +Elmira,Pittsburgh,,4 hours 37 mins,432 km +White Plains,Pittsburgh,,6 hours 19 mins,648 km +Albany,Pittsburgh,,, +Binghamton,Pittsburgh,,5 hours 27 mins,497 km +Rochester,Pittsburgh,,4 hours 13 mins,458 km +Atlanta,San Diego,,1 day 7 hours,"3,448 km" +San Diego,Atlanta,,1 day 7 hours,"3,443 km" +Austin,Bemidji,,20 hours 14 mins,"2,226 km" +Austin,Minneapolis,,16 hours 46 mins,"1,882 km" +Austin,Duluth,,18 hours 53 mins,"2,125 km" +Austin,Brainerd,,18 hours 43 mins,"2,083 km" +Austin,Gustavus,,16 hours 31 mins,"1,844 km" +Austin,St. Cloud,,17 hours 43 mins,"1,985 km" +Austin,Hibbing,,19 hours 46 mins,"2,188 km" +Austin,International Falls,,21 hours 11 mins,"2,352 km" +Bemidji,Austin,,20 hours 14 mins,"2,231 km" +Minneapolis,Austin,,16 hours 47 mins,"1,886 km" +Duluth,Austin,,18 hours 55 mins,"2,130 km" +Brainerd,Austin,,18 hours 45 mins,"2,088 km" +Gustavus,Austin,,16 hours 33 mins,"1,847 km" +St. Cloud,Austin,,17 hours 45 mins,"1,989 km" +Hibbing,Austin,,19 hours 47 mins,"2,192 km" +International Falls,Austin,,21 hours 12 mins,"2,357 km" +South Bend,Moline,,3 hours 47 mins,380 km +South Bend,Belleville,,5 hours 38 mins,574 km +South Bend,Bloomington,,3 hours 22 mins,320 km +South Bend,Champaign,,3 hours 5 mins,307 km +South Bend,Chicago,,1 hour 40 mins,154 km +South Bend,Rockford,,3 hours 4 mins,294 km +South Bend,Peoria,,3 hours 34 mins,367 km +Moline,South Bend,,3 hours 46 mins,379 km +Belleville,South Bend,,5 hours 37 mins,572 km +Bloomington,South Bend,,3 hours 21 mins,317 km +Champaign,South Bend,,3 hours 5 mins,305 km +Chicago,South Bend,,1 hour 39 mins,154 km +Rockford,South Bend,,3 hours 2 mins,293 km +Peoria,South Bend,,3 hours 35 mins,367 km +Johnstown,Moline,,10 hours 17 mins,"1,075 km" +Johnstown,Belleville,,10 hours 23 mins,"1,072 km" +Johnstown,Bloomington,,7 hours 33 mins,766 km +Johnstown,Champaign,,8 hours 32 mins,881 km +Johnstown,Chicago,,8 hours 9 mins,839 km +Johnstown,Rockford,,9 hours 34 mins,979 km +Johnstown,Peoria,,9 hours 46 mins,"1,021 km" +Moline,Johnstown,,10 hours 15 mins,"1,076 km" +Belleville,Johnstown,,10 hours 23 mins,"1,074 km" +Bloomington,Johnstown,,7 hours 32 mins,768 km +Champaign,Johnstown,,8 hours 33 mins,882 km +Chicago,Johnstown,,8 hours 6 mins,841 km +Rockford,Johnstown,,9 hours 31 mins,990 km +Peoria,Johnstown,,9 hours 46 mins,"1,024 km" +Louisville,Abilene,,14 hours 54 mins,"1,635 km" +Louisville,Amarillo,,14 hours 46 mins,"1,636 km" +Louisville,Harlingen,,19 hours 14 mins,"2,058 km" +Louisville,Lubbock,,16 hours 8 mins,"1,775 km" +Louisville,College Station,,14 hours 22 mins,"1,503 km" +Louisville,Corpus Christi,,17 hours 29 mins,"1,864 km" +Louisville,Wichita Falls,,13 hours 1 min,"1,440 km" +Louisville,Waco,,13 hours 40 mins,"1,501 km" +Louisville,San Angelo,,16 hours 8 mins,"1,759 km" +Louisville,Houston,,14 hours 22 mins,"1,530 km" +Louisville,San Antonio,,16 hours 16 mins,"1,786 km" +Louisville,Del Rio,,18 hours 33 mins,"2,012 km" +Louisville,Mission,,, +Louisville,Beaumont,,, +Louisville,Longview,,11 hours 14 mins,"1,206 km" +Louisville,Midland,,17 hours 2 mins,"1,876 km" +Louisville,El Paso,,21 hours 20 mins,"2,366 km" +Louisville,Brownsville,,19 hours 36 mins,"2,098 km" +Louisville,Austin,,15 hours 4 mins,"1,659 km" +Louisville,Dallas,,12 hours 17 mins,"1,345 km" +Louisville,Killeen,,14 hours 28 mins,"1,594 km" +Louisville,Laredo,,18 hours 32 mins,"2,037 km" +Louisville,Texarkana,,9 hours 48 mins,"1,065 km" +Abilene,Louisville,,14 hours 52 mins,"1,635 km" +Amarillo,Louisville,,14 hours 42 mins,"1,635 km" +Harlingen,Louisville,,19 hours 9 mins,"2,058 km" +Lubbock,Louisville,,16 hours 2 mins,"1,774 km" +College Station,Louisville,,14 hours 18 mins,"1,499 km" +Corpus Christi,Louisville,,17 hours 31 mins,"1,869 km" +Wichita Falls,Louisville,,12 hours 57 mins,"1,440 km" +Waco,Louisville,,13 hours 37 mins,"1,497 km" +San Angelo,Louisville,,16 hours 4 mins,"1,759 km" +Houston,Louisville,,14 hours 21 mins,"1,530 km" +San Antonio,Louisville,,16 hours 12 mins,"1,784 km" +Del Rio,Louisville,,18 hours 27 mins,"2,013 km" +Mission,Louisville,,, +Beaumont,Louisville,,, +Longview,Louisville,,11 hours 13 mins,"1,205 km" +Midland,Louisville,,16 hours 57 mins,"1,875 km" +El Paso,Louisville,,21 hours 15 mins,"2,365 km" +Brownsville,Louisville,,19 hours 33 mins,"2,098 km" +Austin,Louisville,,15 hours 1 min,"1,659 km" +Dallas,Louisville,,12 hours 15 mins,"1,345 km" +Killeen,Louisville,,14 hours 26 mins,"1,593 km" +Laredo,Louisville,,18 hours 30 mins,"2,036 km" +Texarkana,Louisville,,9 hours 46 mins,"1,064 km" +Fort Lauderdale,Milwaukee,,21 hours 8 mins,"2,340 km" +Milwaukee,Fort Lauderdale,,21 hours 9 mins,"2,336 km" +Philadelphia,Bemidji,,20 hours 53 mins,"2,222 km" +Philadelphia,Minneapolis,,17 hours 26 mins,"1,878 km" +Philadelphia,Duluth,,18 hours 24 mins,"1,973 km" +Philadelphia,Brainerd,,19 hours 22 mins,"2,078 km" +Philadelphia,Gustavus,,17 hours 53 mins,"1,924 km" +Philadelphia,St. Cloud,,18 hours 22 mins,"1,980 km" +Philadelphia,Hibbing,,19 hours 41 mins,"2,093 km" +Philadelphia,International Falls,,21 hours 5 mins,"2,234 km" +Bemidji,Philadelphia,,20 hours 49 mins,"2,231 km" +Minneapolis,Philadelphia,,17 hours 22 mins,"1,885 km" +Duluth,Philadelphia,,18 hours 22 mins,"1,982 km" +Brainerd,Philadelphia,,19 hours 20 mins,"2,088 km" +Gustavus,Philadelphia,,17 hours 50 mins,"1,932 km" +St. Cloud,Philadelphia,,18 hours 20 mins,"1,990 km" +Hibbing,Philadelphia,,19 hours 38 mins,"2,102 km" +International Falls,Philadelphia,,21 hours 2 mins,"2,244 km" +Memphis,State College,,13 hours 42 mins,"1,459 km" +Memphis,Johnstown,,12 hours 37 mins,"1,347 km" +Memphis,Harrisburg,,13 hours 39 mins,"1,497 km" +Memphis,Erie,,12 hours 9 mins,"1,330 km" +Memphis,Pittsburgh,,11 hours 26 mins,"1,237 km" +Memphis,Latrobe,,12 hours 4 mins,"1,284 km" +Memphis,Philadelphia,,15 hours 1 min,"1,634 km" +Memphis,Lewisburg,,14 hours 28 mins,"1,583 km" +Memphis,Scranton,,15 hours 26 mins,"1,685 km" +State College,Memphis,,13 hours 44 mins,"1,468 km" +Johnstown,Memphis,,12 hours 40 mins,"1,348 km" +Harrisburg,Memphis,,13 hours 40 mins,"1,497 km" +Erie,Memphis,,12 hours 13 mins,"1,331 km" +Pittsburgh,Memphis,,11 hours 28 mins,"1,241 km" +Latrobe,Memphis,,12 hours 4 mins,"1,287 km" +Philadelphia,Memphis,,15 hours 1 min,"1,634 km" +Lewisburg,Memphis,,14 hours 29 mins,"1,584 km" +Scranton,Memphis,,15 hours 25 mins,"1,685 km" +Denver,Savannah,,23 hours 49 mins,"2,658 km" +Savannah,Denver,,23 hours 53 mins,"2,656 km" +Atlanta,Abilene,,13 hours 53 mins,"1,553 km" +Atlanta,Amarillo,,16 hours 0 mins,"1,795 km" +Atlanta,Harlingen,,16 hours 15 mins,"1,804 km" +Atlanta,Lubbock,,16 hours 16 mins,"1,818 km" +Atlanta,College Station,,12 hours 29 mins,"1,331 km" +Atlanta,Corpus Christi,,14 hours 30 mins,"1,609 km" +Atlanta,Wichita Falls,,13 hours 19 mins,"1,491 km" +Atlanta,Waco,,12 hours 21 mins,"1,340 km" +Atlanta,San Angelo,,15 hours 7 mins,"1,677 km" +Atlanta,Houston,,11 hours 23 mins,"1,276 km" +Atlanta,San Antonio,,14 hours 15 mins,"1,590 km" +Atlanta,Del Rio,,16 hours 38 mins,"1,837 km" +Atlanta,Mission,,, +Atlanta,Beaumont,,, +Atlanta,Longview,,9 hours 35 mins,"1,064 km" +Atlanta,Midland,,16 hours 1 min,"1,794 km" +Atlanta,El Paso,,20 hours 19 mins,"2,284 km" +Atlanta,Brownsville,,16 hours 37 mins,"1,843 km" +Atlanta,Austin,,13 hours 46 mins,"1,501 km" +Atlanta,Dallas,,11 hours 18 mins,"1,265 km" +Atlanta,Killeen,,13 hours 9 mins,"1,435 km" +Atlanta,Laredo,,16 hours 22 mins,"1,782 km" +Atlanta,Texarkana,,9 hours 37 mins,"1,075 km" +Abilene,Atlanta,,13 hours 53 mins,"1,549 km" +Amarillo,Atlanta,,16 hours 0 mins,"1,781 km" +Harlingen,Atlanta,,16 hours 12 mins,"1,804 km" +Lubbock,Atlanta,,16 hours 12 mins,"1,815 km" +College Station,Atlanta,,12 hours 25 mins,"1,326 km" +Corpus Christi,Atlanta,,14 hours 33 mins,"1,614 km" +Wichita Falls,Atlanta,,13 hours 21 mins,"1,478 km" +Waco,Atlanta,,12 hours 19 mins,"1,335 km" +San Angelo,Atlanta,,15 hours 5 mins,"1,673 km" +Houston,Atlanta,,11 hours 23 mins,"1,276 km" +San Antonio,Atlanta,,14 hours 16 mins,"1,590 km" +Del Rio,Atlanta,,16 hours 42 mins,"1,837 km" +Mission,Atlanta,,, +Beaumont,Atlanta,,, +Longview,Atlanta,,9 hours 34 mins,"1,059 km" +Midland,Atlanta,,15 hours 58 mins,"1,789 km" +El Paso,Atlanta,,20 hours 16 mins,"2,279 km" +Brownsville,Atlanta,,16 hours 35 mins,"1,844 km" +Austin,Atlanta,,13 hours 44 mins,"1,496 km" +Dallas,Atlanta,,11 hours 18 mins,"1,258 km" +Killeen,Atlanta,,13 hours 9 mins,"1,431 km" +Laredo,Atlanta,,16 hours 19 mins,"1,782 km" +Texarkana,Atlanta,,9 hours 40 mins,"1,077 km" +Peoria,Moline,,1 hour 27 mins,151 km +Peoria,Belleville,,2 hours 38 mins,268 km +Peoria,Bloomington,,3 hours 57 mins,412 km +Peoria,Champaign,,1 hour 22 mins,144 km +Peoria,Chicago,,2 hours 34 mins,269 km +Peoria,Rockford,,2 hours 18 mins,217 km +Moline,Peoria,,1 hour 24 mins,149 km +Belleville,Peoria,,2 hours 37 mins,267 km +Bloomington,Peoria,,3 hours 56 mins,412 km +Champaign,Peoria,,1 hour 23 mins,145 km +Chicago,Peoria,,2 hours 31 mins,267 km +Rockford,Peoria,,2 hours 17 mins,219 km +Fort Wayne,Pellston,,5 hours 3 mins,567 km +Fort Wayne,Traverse City,,4 hours 47 mins,509 km +Fort Wayne,Alpena,,5 hours 34 mins,581 km +Fort Wayne,Iron Mountain,,, +Fort Wayne,Kalamazoo,,1 hour 58 mins,195 km +Fort Wayne,Saginaw,,3 hours 14 mins,330 km +Fort Wayne,Grand Rapids,,2 hours 39 mins,280 km +Fort Wayne,Lansing,,2 hours 3 mins,211 km +Fort Wayne,Muskegon,,3 hours 15 mins,346 km +Fort Wayne,Hancock,,, +Fort Wayne,Detroit,,2 hours 36 mins,261 km +Fort Wayne,Escanaba,,7 hours 33 mins,815 km +Pellston,Fort Wayne,,5 hours 1 min,567 km +Traverse City,Fort Wayne,,4 hours 49 mins,512 km +Alpena,Fort Wayne,,5 hours 30 mins,582 km +Iron Mountain,Fort Wayne,,, +Kalamazoo,Fort Wayne,,1 hour 56 mins,195 km +Saginaw,Fort Wayne,,3 hours 11 mins,331 km +Grand Rapids,Fort Wayne,,2 hours 38 mins,282 km +Lansing,Fort Wayne,,2 hours 3 mins,213 km +Muskegon,Fort Wayne,,3 hours 14 mins,348 km +Hancock,Fort Wayne,,, +Detroit,Fort Wayne,,2 hours 36 mins,262 km +Escanaba,Fort Wayne,,7 hours 30 mins,814 km +Great Falls,Seattle,,9 hours 45 mins,"1,030 km" +Great Falls,Wenatchee,,8 hours 15 mins,854 km +Great Falls,Pasco,,, +Great Falls,Yakima,,8 hours 38 mins,908 km +Great Falls,Walla Walla,,8 hours 18 mins,828 km +Great Falls,Everett,,10 hours 6 mins,"1,065 km" +Great Falls,Spokane,,5 hours 40 mins,583 km +Seattle,Great Falls,,9 hours 45 mins,"1,030 km" +Wenatchee,Great Falls,,8 hours 15 mins,854 km +Pasco,Great Falls,,, +Yakima,Great Falls,,8 hours 36 mins,906 km +Walla Walla,Great Falls,,8 hours 19 mins,827 km +Everett,Great Falls,,10 hours 5 mins,"1,065 km" +Spokane,Great Falls,,5 hours 42 mins,583 km +Fort Smith,Dallas,,4 hours 19 mins,447 km +Dallas,Fort Smith,,4 hours 18 mins,446 km +Chattanooga,Augusta,,3 hours 57 mins,423 km +Chattanooga,Decatur,,2 hours 3 mins,198 km +Chattanooga,Atlanta,,1 hour 48 mins,190 km +Chattanooga,Valdosta,,5 hours 5 mins,557 km +Chattanooga,Savannah,,5 hours 23 mins,589 km +Augusta,Chattanooga,,3 hours 58 mins,424 km +Decatur,Chattanooga,,2 hours 3 mins,197 km +Atlanta,Chattanooga,,1 hour 47 mins,190 km +Valdosta,Chattanooga,,5 hours 2 mins,556 km +Savannah,Chattanooga,,5 hours 23 mins,588 km +Escanaba,Bemidji,,7 hours 40 mins,688 km +Escanaba,Minneapolis,,5 hours 51 mins,590 km +Escanaba,Duluth,,5 hours 5 mins,451 km +Escanaba,Brainerd,,6 hours 58 mins,626 km +Escanaba,Gustavus,,6 hours 48 mins,691 km +Escanaba,St. Cloud,,6 hours 48 mins,692 km +Escanaba,Hibbing,,6 hours 22 mins,571 km +Escanaba,International Falls,,7 hours 46 mins,712 km +Bemidji,Escanaba,,7 hours 40 mins,688 km +Minneapolis,Escanaba,,5 hours 51 mins,589 km +Duluth,Escanaba,,5 hours 8 mins,451 km +Brainerd,Escanaba,,7 hours 0 mins,626 km +Gustavus,Escanaba,,6 hours 49 mins,691 km +St. Cloud,Escanaba,,6 hours 50 mins,694 km +Hibbing,Escanaba,,6 hours 24 mins,571 km +International Falls,Escanaba,,7 hours 48 mins,713 km +St. Louis,San Diego,,1 day 2 hours,"2,913 km" +St. Louis,Redding,,1 day 6 hours,"3,269 km" +St. Louis,Sacramento,,1 day 5 hours,"3,166 km" +St. Louis,Fresno,,1 day 4 hours,"3,139 km" +St. Louis,San Luis Obispo,,1 day 5 hours,"3,182 km" +St. Louis,Oakland,,1 day 6 hours,"3,296 km" +St. Louis,Santa Barbara,,1 day 4 hours,"3,081 km" +St. Louis,Stockton,,1 day 5 hours,"3,243 km" +St. Louis,Santa Rosa,,1 day 6 hours,"3,321 km" +St. Louis,Bakersfield,,1 day 3 hours,"2,963 km" +St. Louis,Santa Ana,,1 day 2 hours,"2,938 km" +St. Louis,Santa Maria,,1 day 5 hours,"3,138 km" +St. Louis,San Jose,,1 day 6 hours,"3,351 km" +St. Louis,Burbank,,1 day 2 hours,"2,948 km" +St. Louis,Arcata,,1 day 8 hours,"3,493 km" +St. Louis,Butte,,1 day 5 hours,"3,205 km" +St. Louis,Palm Springs,,1 day 1 hour,"2,774 km" +St. Louis,Los Angeles,,1 day 2 hours,"2,939 km" +St. Louis,Long Beach,,1 day 3 hours,"2,961 km" +St. Louis,San Francisco,,1 day 6 hours,"3,306 km" +St. Louis,Monterey,,1 day 6 hours,"3,317 km" +San Diego,St. Louis,,1 day 2 hours,"2,911 km" +Redding,St. Louis,,1 day 6 hours,"3,274 km" +Sacramento,St. Louis,,1 day 4 hours,"3,172 km" +Fresno,St. Louis,,1 day 4 hours,"3,138 km" +San Luis Obispo,St. Louis,,1 day 5 hours,"3,184 km" +Oakland,St. Louis,,1 day 6 hours,"3,301 km" +Santa Barbara,St. Louis,,1 day 4 hours,"3,080 km" +Stockton,St. Louis,,1 day 5 hours,"3,248 km" +Santa Rosa,St. Louis,,1 day 6 hours,"3,327 km" +Bakersfield,St. Louis,,1 day 3 hours,"2,963 km" +Santa Ana,St. Louis,,1 day 2 hours,"2,934 km" +Santa Maria,St. Louis,,1 day 5 hours,"3,139 km" +San Jose,St. Louis,,1 day 6 hours,"3,362 km" +Burbank,St. Louis,,1 day 2 hours,"2,941 km" +Arcata,St. Louis,,1 day 8 hours,"3,497 km" +Butte,St. Louis,,1 day 5 hours,"3,210 km" +Palm Springs,St. Louis,,1 day 1 hour,"2,773 km" +Los Angeles,St. Louis,,1 day 2 hours,"2,937 km" +Long Beach,St. Louis,,1 day 3 hours,"2,964 km" +San Francisco,St. Louis,,1 day 6 hours,"3,311 km" +Monterey,St. Louis,,1 day 6 hours,"3,318 km" +Salt Lake City,Green Bay,,21 hours 47 mins,"2,413 km" +Salt Lake City,Rhinelander,,21 hours 31 mins,"2,365 km" +Salt Lake City,Marquette,,20 hours 36 mins,"2,316 km" +Salt Lake City,Madison,,19 hours 45 mins,"2,186 km" +Salt Lake City,La Crosse,,18 hours 39 mins,"2,084 km" +Salt Lake City,Devils Lake,,19 hours 56 mins,"2,201 km" +Salt Lake City,Appleton,,21 hours 20 mins,"2,362 km" +Salt Lake City,Mosinee,,20 hours 44 mins,"2,279 km" +Salt Lake City,Milwaukee,,20 hours 39 mins,"2,318 km" +Salt Lake City,Eau Claire,,19 hours 21 mins,"2,124 km" +Green Bay,Salt Lake City,,21 hours 53 mins,"2,402 km" +Rhinelander,Salt Lake City,,21 hours 41 mins,"2,381 km" +Marquette,Salt Lake City,,20 hours 39 mins,"2,311 km" +Madison,Salt Lake City,,19 hours 47 mins,"2,175 km" +La Crosse,Salt Lake City,,18 hours 48 mins,"2,100 km" +Devils Lake,Salt Lake City,,20 hours 2 mins,"2,189 km" +Appleton,Salt Lake City,,21 hours 25 mins,"2,349 km" +Mosinee,Salt Lake City,,20 hours 55 mins,"2,295 km" +Milwaukee,Salt Lake City,,20 hours 41 mins,"2,313 km" +Eau Claire,Salt Lake City,,19 hours 32 mins,"2,141 km" +Denver,Oakland,,18 hours 23 mins,"2,004 km" +Oakland,Denver,,18 hours 19 mins,"2,006 km" +El Paso,Phoenix,,6 hours 15 mins,692 km +Phoenix,El Paso,,6 hours 17 mins,694 km +Milwaukee,Pellston,,6 hours 14 mins,625 km +Milwaukee,Traverse City,,6 hours 18 mins,674 km +Milwaukee,Alpena,,7 hours 37 mins,749 km +Milwaukee,Iron Mountain,,, +Milwaukee,Kalamazoo,,3 hours 46 mins,396 km +Milwaukee,Saginaw,,5 hours 57 mins,631 km +Milwaukee,Grand Rapids,,4 hours 12 mins,445 km +Milwaukee,Lansing,,4 hours 47 mins,511 km +Milwaukee,Muskegon,,4 hours 28 mins,460 km +Milwaukee,Hancock,,, +Milwaukee,Detroit,,5 hours 40 mins,614 km +Milwaukee,Escanaba,,3 hours 35 mins,365 km +Pellston,Milwaukee,,6 hours 17 mins,626 km +Traverse City,Milwaukee,,6 hours 18 mins,661 km +Alpena,Milwaukee,,7 hours 39 mins,750 km +Iron Mountain,Milwaukee,,, +Kalamazoo,Milwaukee,,3 hours 45 mins,382 km +Saginaw,Milwaukee,,5 hours 52 mins,614 km +Grand Rapids,Milwaukee,,4 hours 8 mins,433 km +Lansing,Milwaukee,,4 hours 44 mins,497 km +Muskegon,Milwaukee,,4 hours 25 mins,444 km +Hancock,Milwaukee,,, +Detroit,Milwaukee,,5 hours 41 mins,600 km +Escanaba,Milwaukee,,3 hours 37 mins,365 km +Greensboro,Buffalo,,9 hours 40 mins,"1,023 km" +Greensboro,Manhattan,,8 hours 26 mins,868 km +Greensboro,Niagara Falls,,10 hours 1 min,"1,054 km" +Greensboro,Islip,,9 hours 6 mins,939 km +Greensboro,New York,,8 hours 16 mins,862 km +Greensboro,Watertown,,10 hours 57 mins,"1,144 km" +Greensboro,Newburgh,,9 hours 6 mins,954 km +Greensboro,Syracuse,,9 hours 54 mins,"1,031 km" +Greensboro,Plattsburgh,,12 hours 32 mins,"1,342 km" +Greensboro,Ogdensburg,,11 hours 55 mins,"1,237 km" +Greensboro,Ithaca,,9 hours 34 mins,967 km +Greensboro,Elmira,,8 hours 56 mins,895 km +Greensboro,White Plains,,8 hours 43 mins,912 km +Greensboro,Albany,,, +Greensboro,Binghamton,,8 hours 54 mins,919 km +Greensboro,Rochester,,10 hours 12 mins,"1,057 km" +Buffalo,Greensboro,,9 hours 42 mins,"1,027 km" +Manhattan,Greensboro,,8 hours 27 mins,876 km +Niagara Falls,Greensboro,,10 hours 4 mins,"1,057 km" +Islip,Greensboro,,9 hours 9 mins,945 km +New York,Greensboro,,8 hours 19 mins,870 km +Watertown,Greensboro,,10 hours 59 mins,"1,145 km" +Newburgh,Greensboro,,9 hours 11 mins,963 km +Syracuse,Greensboro,,9 hours 56 mins,"1,032 km" +Plattsburgh,Greensboro,,12 hours 36 mins,"1,351 km" +Ogdensburg,Greensboro,,11 hours 58 mins,"1,238 km" +Ithaca,Greensboro,,9 hours 36 mins,967 km +Elmira,Greensboro,,9 hours 0 mins,897 km +White Plains,Greensboro,,8 hours 45 mins,920 km +Albany,Greensboro,,, +Binghamton,Greensboro,,8 hours 55 mins,919 km +Rochester,Greensboro,,10 hours 15 mins,"1,058 km" +Sun Valley,Salt Lake City,,4 hours 39 mins,474 km +Sun Valley,Moab,,8 hours 13 mins,847 km +Sun Valley,Ogden,,4 hours 9 mins,418 km +Sun Valley,Vernal,,7 hours 28 mins,748 km +Sun Valley,Provo,,5 hours 16 mins,543 km +Sun Valley,Cedar City,,8 hours 3 mins,876 km +Salt Lake City,Sun Valley,,4 hours 36 mins,473 km +Moab,Sun Valley,,8 hours 11 mins,846 km +Ogden,Sun Valley,,4 hours 8 mins,417 km +Vernal,Sun Valley,,7 hours 30 mins,747 km +Provo,Sun Valley,,5 hours 14 mins,542 km +Cedar City,Sun Valley,,8 hours 1 min,874 km +El Paso,Los Angeles,,11 hours 46 mins,"1,290 km" +Los Angeles,El Paso,,11 hours 43 mins,"1,289 km" +Newark,Savannah,,11 hours 52 mins,"1,284 km" +Savannah,Newark,,11 hours 47 mins,"1,275 km" +Albany,Newark,,, +Newark,Albany,,, +Portland,Hilo,,, +Portland,Kahului,,, +Portland,Kona,,, +Portland,Lihue,,, +Portland,Honolulu,,, +Hilo,Portland,,, +Kahului,Portland,,, +Kona,Portland,,, +Lihue,Portland,,, +Honolulu,Portland,,, +Washington,Syracuse,,5 hours 58 mins,597 km +Syracuse,Washington,,5 hours 59 mins,600 km +Chicago,Cincinnati,,4 hours 34 mins,477 km +Cincinnati,Chicago,,4 hours 34 mins,475 km +Punta Gorda,Plattsburgh,,22 hours 22 mins,"2,451 km" +Plattsburgh,Punta Gorda,,22 hours 26 mins,"2,460 km" +Atlanta,Knoxville,,3 hours 8 mins,344 km +Knoxville,Atlanta,,3 hours 9 mins,344 km +Fort Myers,Atlantic City,,17 hours 52 mins,"1,947 km" +Atlantic City,Fort Myers,,17 hours 56 mins,"1,953 km" +Atlanta,Chattanooga,,1 hour 47 mins,190 km +Chattanooga,Atlanta,,1 hour 48 mins,190 km +Islip,State College,,4 hours 52 mins,464 km +Islip,Johnstown,,6 hours 1 min,593 km +Islip,Harrisburg,,3 hours 53 mins,365 km +Islip,Erie,,7 hours 37 mins,777 km +Islip,Pittsburgh,,6 hours 53 mins,700 km +Islip,Latrobe,,6 hours 28 mins,625 km +Islip,Philadelphia,,2 hours 30 mins,226 km +Islip,Lewisburg,,3 hours 56 mins,362 km +Islip,Scranton,,3 hours 6 mins,277 km +State College,Islip,,4 hours 44 mins,464 km +Johnstown,Islip,,5 hours 57 mins,590 km +Harrisburg,Islip,,3 hours 54 mins,368 km +Erie,Islip,,7 hours 33 mins,779 km +Pittsburgh,Islip,,6 hours 53 mins,702 km +Latrobe,Islip,,6 hours 25 mins,633 km +Philadelphia,Islip,,2 hours 31 mins,228 km +Lewisburg,Islip,,3 hours 49 mins,361 km +Scranton,Islip,,3 hours 1 min,278 km +Bloomington,Augusta,,9 hours 52 mins,"1,062 km" +Bloomington,Decatur,,7 hours 58 mins,836 km +Bloomington,Atlanta,,7 hours 43 mins,828 km +Bloomington,Valdosta,,11 hours 0 mins,"1,196 km" +Bloomington,Savannah,,11 hours 18 mins,"1,227 km" +Augusta,Bloomington,,9 hours 51 mins,"1,063 km" +Decatur,Bloomington,,7 hours 57 mins,837 km +Atlanta,Bloomington,,7 hours 41 mins,829 km +Valdosta,Bloomington,,10 hours 56 mins,"1,196 km" +Savannah,Bloomington,,11 hours 17 mins,"1,228 km" +Milwaukee,Greensboro,,12 hours 40 mins,"1,333 km" +Milwaukee,Wilmington,,15 hours 33 mins,"1,660 km" +Milwaukee,New Bern,,15 hours 33 mins,"1,639 km" +Milwaukee,Charlotte,,12 hours 58 mins,"1,369 km" +Milwaukee,Raleigh,,13 hours 50 mins,"1,453 km" +Milwaukee,Asheville,,11 hours 15 mins,"1,208 km" +Milwaukee,Fayetteville,,14 hours 10 mins,"1,478 km" +Greensboro,Milwaukee,,12 hours 41 mins,"1,332 km" +Wilmington,Milwaukee,,15 hours 34 mins,"1,660 km" +New Bern,Milwaukee,,15 hours 34 mins,"1,637 km" +Charlotte,Milwaukee,,13 hours 1 min,"1,370 km" +Raleigh,Milwaukee,,13 hours 49 mins,"1,452 km" +Asheville,Milwaukee,,11 hours 16 mins,"1,207 km" +Fayetteville,Milwaukee,,14 hours 12 mins,"1,478 km" +Fort Lauderdale,Charlotte Amalie,,, +Charlotte Amalie,Fort Lauderdale,,, +Boise,Moline,,21 hours 50 mins,"2,467 km" +Boise,Belleville,,23 hours 32 mins,"2,632 km" +Boise,Bloomington,,1 day 3 hours,"2,958 km" +Boise,Champaign,,1 day 0 hours,"2,726 km" +Boise,Chicago,,1 day 0 hours,"2,726 km" +Boise,Rockford,,23 hours 36 mins,"2,655 km" +Boise,Peoria,,23 hours 9 mins,"2,615 km" +Moline,Boise,,21 hours 53 mins,"2,466 km" +Belleville,Boise,,23 hours 36 mins,"2,631 km" +Bloomington,Boise,,1 day 3 hours,"2,954 km" +Champaign,Boise,,1 day 0 hours,"2,727 km" +Chicago,Boise,,1 day 0 hours,"2,724 km" +Rockford,Boise,,23 hours 36 mins,"2,650 km" +Peoria,Boise,,23 hours 13 mins,"2,614 km" +Indianapolis,Alamosa,,17 hours 30 mins,"1,886 km" +Indianapolis,Grand Junction,,19 hours 23 mins,"2,132 km" +Indianapolis,Durango,,20 hours 22 mins,"2,126 km" +Indianapolis,Colorado Springs,,15 hours 40 mins,"1,718 km" +Indianapolis,Gunnison,,18 hours 51 mins,"1,993 km" +Indianapolis,Denver,,15 hours 44 mins,"1,744 km" +Alamosa,Indianapolis,,17 hours 24 mins,"1,886 km" +Grand Junction,Indianapolis,,19 hours 16 mins,"2,132 km" +Durango,Indianapolis,,20 hours 15 mins,"2,126 km" +Colorado Springs,Indianapolis,,15 hours 35 mins,"1,718 km" +Gunnison,Indianapolis,,18 hours 42 mins,"1,984 km" +Denver,Indianapolis,,15 hours 40 mins,"1,747 km" +Salt Lake City,Bozeman,,6 hours 17 mins,658 km +Bozeman,Salt Lake City,,6 hours 20 mins,660 km +Washington,Myrtle Beach,,6 hours 47 mins,693 km +Myrtle Beach,Washington,,6 hours 45 mins,693 km +Oakland,North Bend,,12 hours 29 mins,"1,305 km" +Oakland,Portland,,9 hours 39 mins,"1,012 km" +Oakland,Medford,,5 hours 35 mins,575 km +Oakland,Bend,,7 hours 42 mins,782 km +Oakland,Eugene,,8 hours 3 mins,840 km +North Bend,Oakland,,12 hours 31 mins,"1,305 km" +Portland,Oakland,,9 hours 42 mins,"1,012 km" +Medford,Oakland,,5 hours 36 mins,574 km +Bend,Oakland,,7 hours 45 mins,781 km +Eugene,Oakland,,8 hours 4 mins,843 km +Austin,Pellston,,22 hours 7 mins,"2,424 km" +Austin,Traverse City,,21 hours 1 min,"2,327 km" +Austin,Alpena,,22 hours 40 mins,"2,482 km" +Austin,Iron Mountain,,, +Austin,Kalamazoo,,18 hours 30 mins,"2,050 km" +Austin,Saginaw,,20 hours 41 mins,"2,284 km" +Austin,Grand Rapids,,18 hours 55 mins,"2,099 km" +Austin,Lansing,,19 hours 31 mins,"2,165 km" +Austin,Muskegon,,19 hours 11 mins,"2,113 km" +Austin,Hancock,,, +Austin,Detroit,,20 hours 9 mins,"2,221 km" +Austin,Escanaba,,21 hours 21 mins,"2,283 km" +Pellston,Austin,,22 hours 13 mins,"2,410 km" +Traverse City,Austin,,21 hours 8 mins,"2,315 km" +Alpena,Austin,,22 hours 42 mins,"2,467 km" +Iron Mountain,Austin,,, +Kalamazoo,Austin,,18 hours 35 mins,"2,036 km" +Saginaw,Austin,,20 hours 42 mins,"2,268 km" +Grand Rapids,Austin,,18 hours 58 mins,"2,088 km" +Lansing,Austin,,19 hours 35 mins,"2,151 km" +Muskegon,Austin,,19 hours 15 mins,"2,099 km" +Hancock,Austin,,, +Detroit,Austin,,20 hours 16 mins,"2,208 km" +Escanaba,Austin,,21 hours 22 mins,"2,282 km" +Minneapolis,Nashville,,12 hours 45 mins,"1,420 km" +Minneapolis,Bristol,,, +Minneapolis,Knoxville,,13 hours 55 mins,"1,527 km" +Minneapolis,Chattanooga,,14 hours 38 mins,"1,628 km" +Minneapolis,Memphis,,12 hours 18 mins,"1,333 km" +Nashville,Minneapolis,,12 hours 50 mins,"1,426 km" +Bristol,Minneapolis,,, +Knoxville,Minneapolis,,13 hours 58 mins,"1,529 km" +Chattanooga,Minneapolis,,14 hours 45 mins,"1,636 km" +Memphis,Minneapolis,,12 hours 18 mins,"1,333 km" +Chicago,Sacramento,,1 day 5 hours,"3,284 km" +Sacramento,Chicago,,1 day 6 hours,"3,292 km" +Miami,Abilene,,21 hours 35 mins,"2,405 km" +Miami,Amarillo,,1 day 0 hours,"2,703 km" +Miami,Harlingen,,21 hours 45 mins,"2,441 km" +Miami,Lubbock,,23 hours 58 mins,"2,670 km" +Miami,College Station,,18 hours 17 mins,"2,036 km" +Miami,Corpus Christi,,20 hours 0 mins,"2,246 km" +Miami,Wichita Falls,,21 hours 1 min,"2,343 km" +Miami,Waco,,19 hours 37 mins,"2,168 km" +Miami,San Angelo,,22 hours 35 mins,"2,497 km" +Miami,Houston,,16 hours 53 mins,"1,913 km" +Miami,San Antonio,,19 hours 45 mins,"2,227 km" +Miami,Del Rio,,22 hours 9 mins,"2,474 km" +Miami,Mission,,, +Miami,Beaumont,,, +Miami,Longview,,17 hours 17 mins,"1,916 km" +Miami,Midland,,23 hours 43 mins,"2,646 km" +Miami,El Paso,,1 day 3 hours,"3,111 km" +Miami,Brownsville,,22 hours 7 mins,"2,480 km" +Miami,Austin,,19 hours 21 mins,"2,176 km" +Miami,Dallas,,19 hours 0 mins,"2,117 km" +Miami,Killeen,,19 hours 56 mins,"2,209 km" +Miami,Laredo,,21 hours 52 mins,"2,419 km" +Miami,Texarkana,,17 hours 19 mins,"1,927 km" +Abilene,Miami,,21 hours 37 mins,"2,398 km" +Amarillo,Miami,,1 day 0 hours,"2,690 km" +Harlingen,Miami,,21 hours 45 mins,"2,438 km" +Lubbock,Miami,,23 hours 56 mins,"2,664 km" +College Station,Miami,,18 hours 19 mins,"2,059 km" +Corpus Christi,Miami,,20 hours 6 mins,"2,249 km" +Wichita Falls,Miami,,21 hours 6 mins,"2,328 km" +Waco,Miami,,19 hours 40 mins,"2,166 km" +San Angelo,Miami,,22 hours 38 mins,"2,494 km" +Houston,Miami,,16 hours 56 mins,"1,911 km" +San Antonio,Miami,,19 hours 49 mins,"2,224 km" +Del Rio,Miami,,22 hours 15 mins,"2,472 km" +Mission,Miami,,, +Beaumont,Miami,,, +Longview,Miami,,17 hours 19 mins,"1,909 km" +Midland,Miami,,23 hours 43 mins,"2,638 km" +El Paso,Miami,,1 day 4 hours,"3,109 km" +Brownsville,Miami,,22 hours 8 mins,"2,478 km" +Austin,Miami,,19 hours 23 mins,"2,174 km" +Dallas,Miami,,19 hours 2 mins,"2,107 km" +Killeen,Miami,,19 hours 58 mins,"2,223 km" +Laredo,Miami,,21 hours 52 mins,"2,416 km" +Texarkana,Miami,,17 hours 24 mins,"1,926 km" +Des Moines,Dallas,,10 hours 38 mins,"1,121 km" +Dallas,Des Moines,,10 hours 37 mins,"1,123 km" +Dallas,Kansas City,,7 hours 56 mins,818 km +Dallas,Cape Girardeau,,8 hours 52 mins,977 km +Dallas,Branson,,6 hours 47 mins,687 km +Dallas,Fort Leonard Wood,,8 hours 0 mins,816 km +Dallas,St. Louis,,9 hours 46 mins,"1,016 km" +Kansas City,Dallas,,7 hours 55 mins,814 km +Kansas City,Cape Girardeau,,5 hours 12 mins,563 km +Kansas City,Branson,,3 hours 16 mins,337 km +Kansas City,Fort Leonard Wood,,3 hours 38 mins,334 km +Kansas City,St. Louis,,3 hours 42 mins,399 km +Cape Girardeau,Dallas,,8 hours 56 mins,978 km +Cape Girardeau,Kansas City,,5 hours 13 mins,562 km +Cape Girardeau,Branson,,4 hours 36 mins,475 km +Cape Girardeau,Fort Leonard Wood,,3 hours 55 mins,293 km +Cape Girardeau,St. Louis,,1 hour 51 mins,186 km +Branson,Dallas,,6 hours 54 mins,690 km +Branson,Kansas City,,3 hours 14 mins,337 km +Branson,Cape Girardeau,,4 hours 34 mins,475 km +Branson,Fort Leonard Wood,,2 hours 3 mins,205 km +Branson,St. Louis,,3 hours 49 mins,405 km +Fort Leonard Wood,Dallas,,8 hours 0 mins,815 km +Fort Leonard Wood,Kansas City,,3 hours 36 mins,334 km +Fort Leonard Wood,Cape Girardeau,,3 hours 55 mins,293 km +Fort Leonard Wood,Branson,,2 hours 4 mins,206 km +Fort Leonard Wood,St. Louis,,2 hours 19 mins,225 km +St. Louis,Dallas,,9 hours 44 mins,"1,014 km" +St. Louis,Kansas City,,3 hours 41 mins,399 km +St. Louis,Cape Girardeau,,1 hour 51 mins,188 km +St. Louis,Branson,,3 hours 48 mins,405 km +St. Louis,Fort Leonard Wood,,2 hours 19 mins,224 km +Harrisburg,Sarasota,,15 hours 54 mins,"1,717 km" +Harrisburg,Fort Myers,,16 hours 51 mins,"1,823 km" +Harrisburg,Gainesville,,13 hours 14 mins,"1,427 km" +Harrisburg,Orlando,,14 hours 7 mins,"1,544 km" +Harrisburg,Daytona Beach,,13 hours 29 mins,"1,470 km" +Harrisburg,Jacksonville,,12 hours 4 mins,"1,317 km" +Harrisburg,Tampa,,15 hours 7 mins,"1,633 km" +Harrisburg,Panama City,,15 hours 31 mins,"1,615 km" +Harrisburg,Key West,,20 hours 3 mins,"2,127 km" +Harrisburg,West Palm Beach,,16 hours 2 mins,"1,775 km" +Harrisburg,Miami,,17 hours 2 mins,"1,874 km" +Harrisburg,Tallahassee,,14 hours 27 mins,"1,576 km" +Harrisburg,Punta Gorda,,16 hours 26 mins,"1,787 km" +Harrisburg,Fort Lauderdale,,16 hours 40 mins,"1,843 km" +Harrisburg,Pensacola,,15 hours 26 mins,"1,681 km" +Sarasota,Harrisburg,,15 hours 45 mins,"1,717 km" +Fort Myers,Harrisburg,,16 hours 42 mins,"1,822 km" +Gainesville,Harrisburg,,13 hours 7 mins,"1,427 km" +Orlando,Harrisburg,,13 hours 52 mins,"1,540 km" +Daytona Beach,Harrisburg,,13 hours 18 mins,"1,457 km" +Jacksonville,Harrisburg,,11 hours 55 mins,"1,315 km" +Tampa,Harrisburg,,14 hours 57 mins,"1,632 km" +Panama City,Harrisburg,,15 hours 27 mins,"1,616 km" +Key West,Harrisburg,,19 hours 52 mins,"2,124 km" +West Palm Beach,Harrisburg,,15 hours 50 mins,"1,771 km" +Miami,Harrisburg,,16 hours 49 mins,"1,872 km" +Tallahassee,Harrisburg,,14 hours 19 mins,"1,580 km" +Punta Gorda,Harrisburg,,16 hours 17 mins,"1,786 km" +Fort Lauderdale,Harrisburg,,16 hours 28 mins,"1,839 km" +Pensacola,Harrisburg,,15 hours 20 mins,"1,680 km" +Washington,Evansville,,10 hours 59 mins,"1,168 km" +Washington,South Bend,,9 hours 22 mins,978 km +Washington,Fort Wayne,,8 hours 40 mins,894 km +Washington,Valparaiso,,, +Washington,Indianapolis,,8 hours 59 mins,922 km +Evansville,Washington,,11 hours 3 mins,"1,135 km" +South Bend,Washington,,9 hours 33 mins,977 km +Fort Wayne,Washington,,8 hours 52 mins,893 km +Valparaiso,Washington,,, +Indianapolis,Washington,,9 hours 11 mins,919 km +Gulfport,Charlotte,,9 hours 30 mins,"1,037 km" +Charlotte,Gulfport,,9 hours 31 mins,"1,036 km" +Phoenix,Kansas City,,18 hours 31 mins,"1,939 km" +Phoenix,Cape Girardeau,,22 hours 13 mins,"2,430 km" +Phoenix,Branson,,18 hours 45 mins,"2,064 km" +Phoenix,Fort Leonard Wood,,19 hours 33 mins,"2,146 km" +Phoenix,St. Louis,,21 hours 19 mins,"2,346 km" +Kansas City,Phoenix,,18 hours 33 mins,"1,938 km" +Cape Girardeau,Phoenix,,22 hours 17 mins,"2,429 km" +Branson,Phoenix,,18 hours 48 mins,"2,066 km" +Fort Leonard Wood,Phoenix,,19 hours 36 mins,"2,146 km" +St. Louis,Phoenix,,21 hours 20 mins,"2,345 km" +San Antonio,Pellston,,23 hours 18 mins,"2,550 km" +San Antonio,Traverse City,,22 hours 12 mins,"2,453 km" +San Antonio,Alpena,,23 hours 51 mins,"2,608 km" +San Antonio,Iron Mountain,,, +San Antonio,Kalamazoo,,19 hours 41 mins,"2,176 km" +San Antonio,Saginaw,,21 hours 52 mins,"2,410 km" +San Antonio,Grand Rapids,,20 hours 6 mins,"2,225 km" +San Antonio,Lansing,,20 hours 41 mins,"2,290 km" +San Antonio,Muskegon,,20 hours 22 mins,"2,239 km" +San Antonio,Hancock,,, +San Antonio,Detroit,,21 hours 19 mins,"2,347 km" +San Antonio,Escanaba,,22 hours 32 mins,"2,409 km" +Pellston,San Antonio,,23 hours 24 mins,"2,537 km" +Traverse City,San Antonio,,22 hours 19 mins,"2,442 km" +Alpena,San Antonio,,23 hours 53 mins,"2,594 km" +Iron Mountain,San Antonio,,, +Kalamazoo,San Antonio,,19 hours 47 mins,"2,163 km" +Saginaw,San Antonio,,21 hours 54 mins,"2,395 km" +Grand Rapids,San Antonio,,20 hours 10 mins,"2,214 km" +Lansing,San Antonio,,20 hours 46 mins,"2,277 km" +Muskegon,San Antonio,,20 hours 27 mins,"2,225 km" +Hancock,San Antonio,,, +Detroit,San Antonio,,21 hours 28 mins,"2,335 km" +Escanaba,San Antonio,,22 hours 34 mins,"2,409 km" +Tucson,Abilene,,11 hours 10 mins,"1,244 km" +Tucson,Amarillo,,10 hours 30 mins,"1,117 km" +Tucson,Harlingen,,16 hours 3 mins,"1,810 km" +Tucson,Lubbock,,9 hours 53 mins,"1,019 km" +Tucson,College Station,,14 hours 48 mins,"1,603 km" +Tucson,Corpus Christi,,14 hours 25 mins,"1,635 km" +Tucson,Wichita Falls,,12 hours 56 mins,"1,353 km" +Tucson,Waco,,13 hours 49 mins,"1,505 km" +Tucson,San Angelo,,10 hours 34 mins,"1,166 km" +Tucson,Houston,,15 hours 16 mins,"1,717 km" +Tucson,San Antonio,,12 hours 27 mins,"1,402 km" +Tucson,Del Rio,,11 hours 1 min,"1,198 km" +Tucson,Mission,,, +Tucson,Beaumont,,, +Tucson,Longview,,15 hours 31 mins,"1,743 km" +Tucson,Midland,,9 hours 5 mins,"1,007 km" +Tucson,El Paso,,4 hours 42 mins,516 km +Tucson,Brownsville,,16 hours 25 mins,"1,850 km" +Tucson,Austin,,13 hours 17 mins,"1,442 km" +Tucson,Dallas,,13 hours 44 mins,"1,537 km" +Tucson,Killeen,,13 hours 6 mins,"1,436 km" +Tucson,Laredo,,13 hours 57 mins,"1,488 km" +Tucson,Texarkana,,16 hours 20 mins,"1,823 km" +Abilene,Tucson,,11 hours 9 mins,"1,243 km" +Amarillo,Tucson,,10 hours 28 mins,"1,126 km" +Harlingen,Tucson,,15 hours 58 mins,"1,809 km" +Lubbock,Tucson,,9 hours 47 mins,"1,028 km" +College Station,Tucson,,14 hours 47 mins,"1,608 km" +Corpus Christi,Tucson,,14 hours 22 mins,"1,634 km" +Wichita Falls,Tucson,,12 hours 54 mins,"1,362 km" +Waco,Tucson,,13 hours 49 mins,"1,504 km" +San Angelo,Tucson,,10 hours 32 mins,"1,164 km" +Houston,Tucson,,15 hours 14 mins,"1,715 km" +San Antonio,Tucson,,12 hours 25 mins,"1,401 km" +Del Rio,Tucson,,11 hours 0 mins,"1,198 km" +Mission,Tucson,,, +Beaumont,Tucson,,, +Longview,Tucson,,15 hours 31 mins,"1,741 km" +Midland,Tucson,,9 hours 3 mins,"1,005 km" +El Paso,Tucson,,4 hours 42 mins,515 km +Brownsville,Tucson,,16 hours 22 mins,"1,849 km" +Austin,Tucson,,13 hours 15 mins,"1,442 km" +Dallas,Tucson,,13 hours 43 mins,"1,536 km" +Killeen,Tucson,,13 hours 4 mins,"1,434 km" +Laredo,Tucson,,13 hours 56 mins,"1,487 km" +Texarkana,Tucson,,16 hours 21 mins,"1,823 km" +Billings,Abilene,,18 hours 11 mins,"2,010 km" +Billings,Amarillo,,14 hours 1 min,"1,549 km" +Billings,Harlingen,,1 day 1 hour,"2,774 km" +Billings,Lubbock,,15 hours 47 mins,"1,746 km" +Billings,College Station,,21 hours 40 mins,"2,373 km" +Billings,Corpus Christi,,23 hours 28 mins,"2,599 km" +Billings,Wichita Falls,,17 hours 26 mins,"1,910 km" +Billings,Waco,,20 hours 22 mins,"2,238 km" +Billings,San Angelo,,18 hours 35 mins,"2,041 km" +Billings,Houston,,22 hours 48 mins,"2,513 km" +Billings,San Antonio,,21 hours 30 mins,"2,366 km" +Billings,Del Rio,,21 hours 2 mins,"2,292 km" +Billings,Mission,,, +Billings,Beaumont,,, +Billings,Longview,,21 hours 20 mins,"2,337 km" +Billings,Midland,,17 hours 33 mins,"1,936 km" +Billings,El Paso,,17 hours 12 mins,"1,910 km" +Billings,Brownsville,,1 day 1 hour,"2,814 km" +Billings,Austin,,21 hours 37 mins,"2,347 km" +Billings,Dallas,,19 hours 29 mins,"2,137 km" +Billings,Killeen,,20 hours 58 mins,"2,283 km" +Billings,Laredo,,23 hours 38 mins,"2,556 km" +Billings,Texarkana,,21 hours 34 mins,"2,425 km" +Abilene,Billings,,18 hours 17 mins,"2,018 km" +Amarillo,Billings,,14 hours 9 mins,"1,552 km" +Harlingen,Billings,,1 day 1 hour,"2,783 km" +Lubbock,Billings,,15 hours 54 mins,"1,769 km" +College Station,Billings,,21 hours 47 mins,"2,407 km" +Corpus Christi,Billings,,23 hours 31 mins,"2,607 km" +Wichita Falls,Billings,,17 hours 34 mins,"1,945 km" +Waco,Billings,,20 hours 30 mins,"2,269 km" +San Angelo,Billings,,18 hours 41 mins,"2,083 km" +Houston,Billings,,22 hours 56 mins,"2,548 km" +San Antonio,Billings,,21 hours 34 mins,"2,374 km" +Del Rio,Billings,,21 hours 6 mins,"2,326 km" +Mission,Billings,,, +Beaumont,Billings,,, +Longview,Billings,,21 hours 26 mins,"2,378 km" +Midland,Billings,,17 hours 39 mins,"1,959 km" +El Paso,Billings,,17 hours 14 mins,"1,913 km" +Brownsville,Billings,,1 day 2 hours,"2,823 km" +Austin,Billings,,21 hours 43 mins,"2,355 km" +Dallas,Billings,,19 hours 36 mins,"2,171 km" +Killeen,Billings,,21 hours 4 mins,"2,292 km" +Laredo,Billings,,23 hours 44 mins,"2,565 km" +Texarkana,Billings,,21 hours 43 mins,"2,434 km" +Tampa,Augusta,,7 hours 8 mins,729 km +Tampa,Decatur,,6 hours 37 mins,742 km +Tampa,Atlanta,,6 hours 26 mins,734 km +Tampa,Valdosta,,3 hours 19 mins,372 km +Tampa,Savannah,,5 hours 6 mins,540 km +Augusta,Tampa,,7 hours 7 mins,728 km +Decatur,Tampa,,6 hours 39 mins,735 km +Atlanta,Tampa,,6 hours 28 mins,734 km +Valdosta,Tampa,,3 hours 21 mins,372 km +Savannah,Tampa,,5 hours 7 mins,540 km +Milwaukee,Bemidji,,8 hours 24 mins,887 km +Milwaukee,Minneapolis,,4 hours 57 mins,543 km +Milwaukee,Duluth,,5 hours 55 mins,638 km +Milwaukee,Brainerd,,6 hours 53 mins,743 km +Milwaukee,Gustavus,,5 hours 24 mins,589 km +Milwaukee,St. Cloud,,5 hours 53 mins,645 km +Milwaukee,Hibbing,,7 hours 11 mins,758 km +Milwaukee,International Falls,,8 hours 36 mins,899 km +Bemidji,Milwaukee,,8 hours 23 mins,888 km +Minneapolis,Milwaukee,,4 hours 56 mins,542 km +Duluth,Milwaukee,,5 hours 55 mins,639 km +Brainerd,Milwaukee,,6 hours 53 mins,745 km +Gustavus,Milwaukee,,5 hours 23 mins,588 km +St. Cloud,Milwaukee,,5 hours 54 mins,647 km +Hibbing,Milwaukee,,7 hours 12 mins,759 km +International Falls,Milwaukee,,8 hours 36 mins,900 km +Seattle,Sarasota,,1 day 22 hours,"5,060 km" +Seattle,Fort Myers,,1 day 22 hours,"5,165 km" +Seattle,Gainesville,,1 day 19 hours,"4,775 km" +Seattle,Orlando,,1 day 21 hours,"4,948 km" +Seattle,Daytona Beach,,1 day 21 hours,"4,947 km" +Seattle,Jacksonville,,1 day 19 hours,"4,798 km" +Seattle,Tampa,,1 day 21 hours,"4,975 km" +Seattle,Panama City,,1 day 18 hours,"4,486 km" +Seattle,Key West,,2 days 3 hours,"5,561 km" +Seattle,West Palm Beach,,1 day 23 hours,"5,203 km" +Seattle,Miami,,2 days 0 hours,"5,308 km" +Seattle,Tallahassee,,1 day 18 hours,"4,541 km" +Seattle,Punta Gorda,,1 day 22 hours,"5,130 km" +Seattle,Fort Lauderdale,,1 day 23 hours,"5,271 km" +Seattle,Pensacola,,1 day 16 hours,"4,445 km" +Sarasota,Seattle,,1 day 22 hours,"5,061 km" +Fort Myers,Seattle,,1 day 22 hours,"5,167 km" +Gainesville,Seattle,,1 day 19 hours,"4,776 km" +Orlando,Seattle,,1 day 20 hours,"4,947 km" +Daytona Beach,Seattle,,1 day 21 hours,"4,939 km" +Jacksonville,Seattle,,1 day 19 hours,"4,799 km" +Tampa,Seattle,,1 day 21 hours,"4,976 km" +Panama City,Seattle,,1 day 18 hours,"4,497 km" +Key West,Seattle,,2 days 3 hours,"5,562 km" +West Palm Beach,Seattle,,1 day 23 hours,"5,205 km" +Miami,Seattle,,2 days 0 hours,"5,311 km" +Tallahassee,Seattle,,1 day 18 hours,"4,552 km" +Punta Gorda,Seattle,,1 day 22 hours,"5,131 km" +Fort Lauderdale,Seattle,,1 day 23 hours,"5,273 km" +Pensacola,Seattle,,1 day 17 hours,"4,452 km" +Austin,Buffalo,,22 hours 46 mins,"2,516 km" +Austin,Manhattan,,1 day 2 hours,"2,811 km" +Austin,Niagara Falls,,23 hours 7 mins,"2,547 km" +Austin,Islip,,1 day 3 hours,"2,889 km" +Austin,New York,,1 day 2 hours,"2,805 km" +Austin,Watertown,,1 day 2 hours,"2,845 km" +Austin,Newburgh,,1 day 2 hours,"2,873 km" +Austin,Syracuse,,1 day 1 hour,"2,742 km" +Austin,Plattsburgh,,1 day 5 hours,"3,103 km" +Austin,Ogdensburg,,1 day 3 hours,"2,938 km" +Austin,Ithaca,,1 day 1 hour,"2,736 km" +Austin,Elmira,,1 day 0 hours,"2,698 km" +Austin,White Plains,,1 day 2 hours,"2,858 km" +Austin,Albany,,, +Austin,Binghamton,,1 day 1 hour,"2,786 km" +Austin,Rochester,,23 hours 44 mins,"2,621 km" +Buffalo,Austin,,22 hours 53 mins,"2,519 km" +Manhattan,Austin,,1 day 2 hours,"2,812 km" +Niagara Falls,Austin,,23 hours 14 mins,"2,550 km" +Islip,Austin,,1 day 3 hours,"2,889 km" +New York,Austin,,1 day 2 hours,"2,804 km" +Watertown,Austin,,1 day 2 hours,"2,848 km" +Newburgh,Austin,,1 day 2 hours,"2,873 km" +Syracuse,Austin,,1 day 1 hour,"2,745 km" +Plattsburgh,Austin,,1 day 5 hours,"3,108 km" +Ogdensburg,Austin,,1 day 3 hours,"2,940 km" +Ithaca,Austin,,1 day 1 hour,"2,738 km" +Elmira,Austin,,1 day 1 hour,"2,702 km" +White Plains,Austin,,1 day 2 hours,"2,857 km" +Albany,Austin,,, +Binghamton,Austin,,1 day 1 hour,"2,789 km" +Rochester,Austin,,23 hours 51 mins,"2,624 km" +Las Vegas,Denver,,10 hours 54 mins,"1,204 km" +Denver,Las Vegas,,10 hours 57 mins,"1,205 km" +Kansas City,Seattle,,1 day 3 hours,"2,956 km" +Kansas City,Wenatchee,,1 day 1 hour,"2,780 km" +Kansas City,Pasco,,, +Kansas City,Yakima,,1 day 1 hour,"2,770 km" +Kansas City,Walla Walla,,23 hours 29 mins,"2,611 km" +Kansas City,Everett,,1 day 3 hours,"2,991 km" +Kansas City,Spokane,,22 hours 39 mins,"2,509 km" +Seattle,Kansas City,,1 day 3 hours,"2,955 km" +Wenatchee,Kansas City,,1 day 1 hour,"2,779 km" +Pasco,Kansas City,,, +Yakima,Kansas City,,1 day 1 hour,"2,770 km" +Walla Walla,Kansas City,,23 hours 25 mins,"2,611 km" +Everett,Kansas City,,1 day 3 hours,"2,990 km" +Spokane,Kansas City,,22 hours 35 mins,"2,508 km" +Memphis,Bemidji,,15 hours 47 mins,"1,678 km" +Memphis,Minneapolis,,12 hours 18 mins,"1,333 km" +Memphis,Duluth,,14 hours 0 mins,"1,550 km" +Memphis,Brainerd,,14 hours 15 mins,"1,534 km" +Memphis,Gustavus,,12 hours 3 mins,"1,295 km" +Memphis,St. Cloud,,13 hours 16 mins,"1,436 km" +Memphis,Hibbing,,15 hours 12 mins,"1,588 km" +Memphis,International Falls,,16 hours 38 mins,"1,752 km" +Bemidji,Memphis,,15 hours 45 mins,"1,678 km" +Minneapolis,Memphis,,12 hours 18 mins,"1,333 km" +Duluth,Memphis,,14 hours 1 min,"1,550 km" +Brainerd,Memphis,,14 hours 15 mins,"1,535 km" +Gustavus,Memphis,,12 hours 3 mins,"1,294 km" +St. Cloud,Memphis,,13 hours 16 mins,"1,436 km" +Hibbing,Memphis,,15 hours 10 mins,"1,585 km" +International Falls,Memphis,,16 hours 36 mins,"1,750 km" +Chicago,Roanoke,,10 hours 30 mins,"1,080 km" +Roanoke,Chicago,,10 hours 32 mins,"1,079 km" +Cincinnati,Buffalo,,6 hours 25 mins,702 km +Cincinnati,Manhattan,,10 hours 10 mins,"1,035 km" +Cincinnati,Niagara Falls,,6 hours 46 mins,733 km +Cincinnati,Islip,,10 hours 52 mins,"1,132 km" +Cincinnati,New York,,10 hours 0 mins,"1,029 km" +Cincinnati,Watertown,,9 hours 25 mins,"1,031 km" +Cincinnati,Newburgh,,10 hours 5 mins,"1,088 km" +Cincinnati,Syracuse,,8 hours 29 mins,928 km +Cincinnati,Plattsburgh,,12 hours 17 mins,"1,289 km" +Cincinnati,Ogdensburg,,10 hours 24 mins,"1,124 km" +Cincinnati,Ithaca,,8 hours 36 mins,922 km +Cincinnati,Elmira,,8 hours 5 mins,884 km +Cincinnati,White Plains,,10 hours 16 mins,"1,113 km" +Cincinnati,Albany,,, +Cincinnati,Binghamton,,8 hours 54 mins,972 km +Cincinnati,Rochester,,7 hours 23 mins,807 km +Buffalo,Cincinnati,,6 hours 27 mins,702 km +Manhattan,Cincinnati,,10 hours 7 mins,"1,034 km" +Niagara Falls,Cincinnati,,6 hours 48 mins,732 km +Islip,Cincinnati,,10 hours 52 mins,"1,131 km" +New York,Cincinnati,,9 hours 57 mins,"1,026 km" +Watertown,Cincinnati,,9 hours 27 mins,"1,030 km" +Newburgh,Cincinnati,,10 hours 6 mins,"1,086 km" +Syracuse,Cincinnati,,8 hours 30 mins,928 km +Plattsburgh,Cincinnati,,12 hours 19 mins,"1,290 km" +Ogdensburg,Cincinnati,,10 hours 26 mins,"1,123 km" +Ithaca,Cincinnati,,8 hours 36 mins,921 km +Elmira,Cincinnati,,8 hours 6 mins,884 km +White Plains,Cincinnati,,10 hours 18 mins,"1,079 km" +Albany,Cincinnati,,, +Binghamton,Cincinnati,,8 hours 56 mins,972 km +Rochester,Cincinnati,,7 hours 25 mins,807 km +St. Louis,Washington,,12 hours 44 mins,"1,310 km" +Washington,St. Louis,,12 hours 31 mins,"1,311 km" +Panama City,Chicago,,14 hours 25 mins,"1,488 km" +Chicago,Panama City,,14 hours 23 mins,"1,492 km" +Myrtle Beach,Syracuse,,12 hours 16 mins,"1,280 km" +Syracuse,Myrtle Beach,,12 hours 27 mins,"1,283 km" +Philadelphia,Lynchburg,,5 hours 25 mins,513 km +Philadelphia,Richmond,,4 hours 2 mins,407 km +Philadelphia,Petersburg,,4 hours 21 mins,443 km +Philadelphia,Newport News,,4 hours 54 mins,507 km +Philadelphia,Charlottesville,,4 hours 25 mins,411 km +Philadelphia,Staunton,,4 hours 37 mins,476 km +Philadelphia,Jamestown,,4 hours 50 mins,489 km +Philadelphia,Norfolk,,5 hours 1 min,445 km +Philadelphia,Roanoke,,5 hours 48 mins,610 km +Lynchburg,Philadelphia,,5 hours 25 mins,515 km +Richmond,Philadelphia,,4 hours 1 min,402 km +Petersburg,Philadelphia,,4 hours 21 mins,438 km +Newport News,Philadelphia,,4 hours 53 mins,501 km +Charlottesville,Philadelphia,,4 hours 24 mins,411 km +Staunton,Philadelphia,,4 hours 36 mins,477 km +Jamestown,Philadelphia,,4 hours 48 mins,483 km +Norfolk,Philadelphia,,5 hours 1 min,445 km +Roanoke,Philadelphia,,5 hours 49 mins,611 km +Richmond,Nashville,,9 hours 3 mins,989 km +Richmond,Bristol,,, +Richmond,Knoxville,,6 hours 26 mins,702 km +Richmond,Chattanooga,,8 hours 2 mins,879 km +Richmond,Memphis,,12 hours 5 mins,"1,328 km" +Nashville,Richmond,,9 hours 1 min,988 km +Bristol,Richmond,,, +Knoxville,Richmond,,6 hours 23 mins,701 km +Chattanooga,Richmond,,8 hours 1 min,879 km +Memphis,Richmond,,12 hours 4 mins,"1,327 km" +Huntsville,Pellston,,12 hours 44 mins,"1,397 km" +Huntsville,Traverse City,,12 hours 9 mins,"1,279 km" +Huntsville,Alpena,,13 hours 5 mins,"1,389 km" +Huntsville,Iron Mountain,,, +Huntsville,Kalamazoo,,9 hours 37 mins,"1,002 km" +Huntsville,Saginaw,,10 hours 47 mins,"1,155 km" +Huntsville,Grand Rapids,,10 hours 2 mins,"1,051 km" +Huntsville,Lansing,,9 hours 44 mins,"1,041 km" +Huntsville,Muskegon,,10 hours 19 mins,"1,065 km" +Huntsville,Hancock,,, +Huntsville,Detroit,,9 hours 44 mins,"1,035 km" +Huntsville,Escanaba,,13 hours 46 mins,"1,451 km" +Pellston,Huntsville,,12 hours 42 mins,"1,404 km" +Traverse City,Huntsville,,12 hours 10 mins,"1,290 km" +Alpena,Huntsville,,13 hours 4 mins,"1,396 km" +Iron Mountain,Huntsville,,, +Kalamazoo,Huntsville,,9 hours 37 mins,"1,033 km" +Saginaw,Huntsville,,10 hours 46 mins,"1,163 km" +Grand Rapids,Huntsville,,10 hours 1 min,"1,063 km" +Lansing,Huntsville,,9 hours 44 mins,"1,051 km" +Muskegon,Huntsville,,10 hours 18 mins,"1,074 km" +Hancock,Huntsville,,, +Detroit,Huntsville,,9 hours 45 mins,"1,046 km" +Escanaba,Huntsville,,13 hours 46 mins,"1,459 km" +Salt Lake City,San Diego,,10 hours 48 mins,"1,207 km" +Salt Lake City,Redding,,10 hours 38 mins,"1,147 km" +Salt Lake City,Sacramento,,9 hours 28 mins,"1,045 km" +Salt Lake City,Fresno,,11 hours 44 mins,"1,309 km" +Salt Lake City,San Luis Obispo,,12 hours 20 mins,"1,352 km" +Salt Lake City,Oakland,,10 hours 42 mins,"1,174 km" +Salt Lake City,Santa Barbara,,11 hours 19 mins,"1,251 km" +Salt Lake City,Stockton,,10 hours 11 mins,"1,121 km" +Salt Lake City,Santa Rosa,,11 hours 2 mins,"1,200 km" +Salt Lake City,Bakersfield,,10 hours 7 mins,"1,133 km" +Salt Lake City,Santa Ana,,9 hours 56 mins,"1,108 km" +Salt Lake City,Santa Maria,,12 hours 7 mins,"1,307 km" +Salt Lake City,San Jose,,11 hours 20 mins,"1,237 km" +Salt Lake City,Burbank,,9 hours 59 mins,"1,118 km" +Salt Lake City,Arcata,,13 hours 25 mins,"1,372 km" +Salt Lake City,Butte,,10 hours 11 mins,"1,084 km" +Salt Lake City,Palm Springs,,10 hours 1 min,"1,123 km" +Salt Lake City,Los Angeles,,9 hours 56 mins,"1,108 km" +Salt Lake City,Long Beach,,10 hours 8 mins,"1,130 km" +Salt Lake City,San Francisco,,10 hours 51 mins,"1,184 km" +Salt Lake City,Monterey,,12 hours 22 mins,"1,344 km" +San Diego,Salt Lake City,,10 hours 51 mins,"1,207 km" +Redding,Salt Lake City,,10 hours 36 mins,"1,148 km" +Sacramento,Salt Lake City,,9 hours 30 mins,"1,045 km" +Fresno,Salt Lake City,,11 hours 47 mins,"1,309 km" +San Luis Obispo,Salt Lake City,,12 hours 22 mins,"1,354 km" +Oakland,Salt Lake City,,10 hours 41 mins,"1,175 km" +Santa Barbara,Salt Lake City,,11 hours 18 mins,"1,251 km" +Stockton,Salt Lake City,,10 hours 12 mins,"1,122 km" +Santa Rosa,Salt Lake City,,11 hours 2 mins,"1,200 km" +Bakersfield,Salt Lake City,,10 hours 11 mins,"1,134 km" +Santa Ana,Salt Lake City,,9 hours 54 mins,"1,105 km" +Santa Maria,Salt Lake City,,12 hours 10 mins,"1,310 km" +San Jose,Salt Lake City,,11 hours 16 mins,"1,236 km" +Burbank,Salt Lake City,,9 hours 55 mins,"1,112 km" +Arcata,Salt Lake City,,13 hours 21 mins,"1,371 km" +Butte,Salt Lake City,,10 hours 9 mins,"1,084 km" +Palm Springs,Salt Lake City,,10 hours 0 mins,"1,122 km" +Los Angeles,Salt Lake City,,9 hours 53 mins,"1,108 km" +Long Beach,Salt Lake City,,10 hours 11 mins,"1,135 km" +San Francisco,Salt Lake City,,10 hours 48 mins,"1,184 km" +Monterey,Salt Lake City,,12 hours 17 mins,"1,343 km" +Cleveland,Baltimore,,5 hours 52 mins,603 km +Baltimore,Cleveland,,5 hours 51 mins,601 km +Las Vegas,North Bend,,16 hours 21 mins,"1,748 km" +Las Vegas,Portland,,15 hours 21 mins,"1,562 km" +Las Vegas,Medford,,11 hours 54 mins,"1,190 km" +Las Vegas,Bend,,12 hours 32 mins,"1,318 km" +Las Vegas,Eugene,,13 hours 56 mins,"1,383 km" +North Bend,Las Vegas,,16 hours 20 mins,"1,747 km" +Portland,Las Vegas,,15 hours 20 mins,"1,561 km" +Medford,Las Vegas,,11 hours 54 mins,"1,192 km" +Bend,Las Vegas,,12 hours 29 mins,"1,318 km" +Eugene,Las Vegas,,13 hours 55 mins,"1,386 km" +Seattle,Salt Lake City,,12 hours 11 mins,"1,336 km" +Seattle,Moab,,15 hours 45 mins,"1,708 km" +Seattle,Ogden,,11 hours 41 mins,"1,280 km" +Seattle,Vernal,,15 hours 0 mins,"1,610 km" +Seattle,Provo,,12 hours 48 mins,"1,405 km" +Seattle,Cedar City,,15 hours 35 mins,"1,737 km" +Salt Lake City,Seattle,,12 hours 9 mins,"1,334 km" +Moab,Seattle,,15 hours 44 mins,"1,707 km" +Ogden,Seattle,,11 hours 41 mins,"1,278 km" +Vernal,Seattle,,15 hours 3 mins,"1,609 km" +Provo,Seattle,,12 hours 47 mins,"1,403 km" +Cedar City,Seattle,,15 hours 34 mins,"1,736 km" +Washington,Savannah,,8 hours 29 mins,925 km +Savannah,Washington,,8 hours 28 mins,924 km +San Diego,North Bend,,19 hours 28 mins,"2,035 km" +San Diego,Portland,,16 hours 38 mins,"1,741 km" +San Diego,Medford,,12 hours 34 mins,"1,304 km" +San Diego,Bend,,14 hours 41 mins,"1,511 km" +San Diego,Eugene,,15 hours 2 mins,"1,570 km" +North Bend,San Diego,,19 hours 25 mins,"2,035 km" +Portland,San Diego,,16 hours 36 mins,"1,742 km" +Medford,San Diego,,12 hours 31 mins,"1,304 km" +Bend,San Diego,,14 hours 39 mins,"1,511 km" +Eugene,San Diego,,14 hours 58 mins,"1,572 km" +Huntsville,Indianapolis,,6 hours 8 mins,640 km +Indianapolis,Huntsville,,6 hours 8 mins,648 km +Twin Falls,Salt Lake City,,3 hours 14 mins,351 km +Twin Falls,Moab,,6 hours 48 mins,724 km +Twin Falls,Ogden,,2 hours 44 mins,295 km +Twin Falls,Vernal,,6 hours 3 mins,625 km +Twin Falls,Provo,,3 hours 51 mins,420 km +Twin Falls,Cedar City,,6 hours 38 mins,753 km +Salt Lake City,Twin Falls,,3 hours 13 mins,351 km +Moab,Twin Falls,,6 hours 48 mins,724 km +Ogden,Twin Falls,,2 hours 45 mins,295 km +Vernal,Twin Falls,,6 hours 7 mins,626 km +Provo,Twin Falls,,3 hours 51 mins,420 km +Cedar City,Twin Falls,,6 hours 38 mins,753 km +Columbus,Augusta,,9 hours 5 mins,944 km +Columbus,Decatur,,8 hours 34 mins,921 km +Columbus,Atlanta,,8 hours 19 mins,913 km +Columbus,Valdosta,,11 hours 36 mins,"1,280 km" +Columbus,Savannah,,10 hours 20 mins,"1,087 km" +Augusta,Columbus,,9 hours 4 mins,947 km +Decatur,Columbus,,8 hours 36 mins,921 km +Atlanta,Columbus,,8 hours 20 mins,913 km +Valdosta,Columbus,,11 hours 35 mins,"1,280 km" +Savannah,Columbus,,10 hours 19 mins,"1,087 km" +Knoxville,Buffalo,,10 hours 4 mins,"1,105 km" +Knoxville,Manhattan,,10 hours 50 mins,"1,144 km" +Knoxville,Niagara Falls,,10 hours 25 mins,"1,136 km" +Knoxville,Islip,,11 hours 31 mins,"1,222 km" +Knoxville,New York,,10 hours 40 mins,"1,138 km" +Knoxville,Watertown,,12 hours 46 mins,"1,382 km" +Knoxville,Newburgh,,11 hours 9 mins,"1,205 km" +Knoxville,Syracuse,,11 hours 42 mins,"1,270 km" +Knoxville,Plattsburgh,,14 hours 36 mins,"1,594 km" +Knoxville,Ogdensburg,,13 hours 44 mins,"1,475 km" +Knoxville,Ithaca,,11 hours 23 mins,"1,205 km" +Knoxville,Elmira,,10 hours 45 mins,"1,133 km" +Knoxville,White Plains,,11 hours 0 mins,"1,191 km" +Knoxville,Albany,,, +Knoxville,Binghamton,,10 hours 42 mins,"1,158 km" +Knoxville,Rochester,,11 hours 1 min,"1,210 km" +Buffalo,Knoxville,,10 hours 5 mins,"1,106 km" +Manhattan,Knoxville,,10 hours 51 mins,"1,144 km" +Niagara Falls,Knoxville,,10 hours 27 mins,"1,136 km" +Islip,Knoxville,,11 hours 32 mins,"1,221 km" +New York,Knoxville,,10 hours 40 mins,"1,136 km" +Watertown,Knoxville,,12 hours 47 mins,"1,383 km" +Newburgh,Knoxville,,11 hours 13 mins,"1,205 km" +Syracuse,Knoxville,,11 hours 43 mins,"1,270 km" +Plattsburgh,Knoxville,,14 hours 37 mins,"1,594 km" +Ogdensburg,Knoxville,,13 hours 46 mins,"1,476 km" +Ithaca,Knoxville,,11 hours 24 mins,"1,205 km" +Elmira,Knoxville,,10 hours 47 mins,"1,135 km" +White Plains,Knoxville,,11 hours 2 mins,"1,189 km" +Albany,Knoxville,,, +Binghamton,Knoxville,,10 hours 43 mins,"1,157 km" +Rochester,Knoxville,,11 hours 3 mins,"1,211 km" +Boston,Pellston,,13 hours 51 mins,"1,511 km" +Boston,Traverse City,,13 hours 51 mins,"1,470 km" +Boston,Alpena,,13 hours 50 mins,"1,459 km" +Boston,Iron Mountain,,, +Boston,Kalamazoo,,13 hours 25 mins,"1,445 km" +Boston,Saginaw,,11 hours 32 mins,"1,225 km" +Boston,Grand Rapids,,12 hours 34 mins,"1,347 km" +Boston,Lansing,,11 hours 45 mins,"1,255 km" +Boston,Muskegon,,13 hours 7 mins,"1,410 km" +Boston,Hancock,,, +Boston,Detroit,,10 hours 51 mins,"1,138 km" +Boston,Escanaba,,16 hours 21 mins,"1,759 km" +Pellston,Boston,,13 hours 47 mins,"1,512 km" +Traverse City,Boston,,13 hours 49 mins,"1,471 km" +Alpena,Boston,,13 hours 45 mins,"1,457 km" +Iron Mountain,Boston,,, +Kalamazoo,Boston,,13 hours 23 mins,"1,444 km" +Saginaw,Boston,,11 hours 26 mins,"1,224 km" +Grand Rapids,Boston,,12 hours 27 mins,"1,347 km" +Lansing,Boston,,11 hours 40 mins,"1,254 km" +Muskegon,Boston,,13 hours 2 mins,"1,411 km" +Hancock,Boston,,, +Detroit,Boston,,10 hours 46 mins,"1,137 km" +Escanaba,Boston,,16 hours 16 mins,"1,759 km" +Flagstaff,Abilene,,11 hours 58 mins,"1,299 km" +Flagstaff,Amarillo,,8 hours 41 mins,979 km +Flagstaff,Harlingen,,18 hours 43 mins,"2,084 km" +Flagstaff,Lubbock,,9 hours 36 mins,"1,032 km" +Flagstaff,College Station,,16 hours 13 mins,"1,723 km" +Flagstaff,Corpus Christi,,17 hours 5 mins,"1,908 km" +Flagstaff,Wichita Falls,,11 hours 58 mins,"1,333 km" +Flagstaff,Waco,,14 hours 55 mins,"1,599 km" +Flagstaff,San Angelo,,12 hours 3 mins,"1,333 km" +Flagstaff,Houston,,17 hours 20 mins,"1,936 km" +Flagstaff,San Antonio,,15 hours 7 mins,"1,676 km" +Flagstaff,Del Rio,,14 hours 12 mins,"1,445 km" +Flagstaff,Mission,,, +Flagstaff,Beaumont,,, +Flagstaff,Longview,,15 hours 52 mins,"1,760 km" +Flagstaff,Midland,,10 hours 41 mins,"1,166 km" +Flagstaff,El Paso,,7 hours 53 mins,763 km +Flagstaff,Brownsville,,19 hours 5 mins,"2,123 km" +Flagstaff,Austin,,15 hours 24 mins,"1,635 km" +Flagstaff,Dallas,,14 hours 1 min,"1,560 km" +Flagstaff,Killeen,,14 hours 45 mins,"1,572 km" +Flagstaff,Laredo,,17 hours 7 mins,"1,735 km" +Flagstaff,Texarkana,,16 hours 19 mins,"1,769 km" +Abilene,Flagstaff,,12 hours 2 mins,"1,298 km" +Amarillo,Flagstaff,,8 hours 46 mins,978 km +Harlingen,Flagstaff,,18 hours 41 mins,"2,080 km" +Lubbock,Flagstaff,,9 hours 39 mins,"1,033 km" +College Station,Flagstaff,,16 hours 16 mins,"1,726 km" +Corpus Christi,Flagstaff,,17 hours 5 mins,"1,904 km" +Wichita Falls,Flagstaff,,12 hours 3 mins,"1,334 km" +Waco,Flagstaff,,14 hours 59 mins,"1,658 km" +San Angelo,Flagstaff,,12 hours 5 mins,"1,332 km" +Houston,Flagstaff,,17 hours 25 mins,"1,936 km" +San Antonio,Flagstaff,,15 hours 8 mins,"1,672 km" +Del Rio,Flagstaff,,14 hours 12 mins,"1,446 km" +Mission,Flagstaff,,, +Beaumont,Flagstaff,,, +Longview,Flagstaff,,15 hours 56 mins,"1,767 km" +Midland,Flagstaff,,10 hours 44 mins,"1,166 km" +El Paso,Flagstaff,,7 hours 54 mins,763 km +Brownsville,Flagstaff,,19 hours 5 mins,"2,120 km" +Austin,Flagstaff,,15 hours 27 mins,"1,663 km" +Dallas,Flagstaff,,14 hours 5 mins,"1,560 km" +Killeen,Flagstaff,,14 hours 50 mins,"1,572 km" +Laredo,Flagstaff,,17 hours 8 mins,"1,735 km" +Texarkana,Flagstaff,,16 hours 32 mins,"1,783 km" +Las Vegas,Sarasota,,1 day 10 hours,"3,821 km" +Las Vegas,Fort Myers,,1 day 11 hours,"3,926 km" +Las Vegas,Gainesville,,1 day 8 hours,"3,536 km" +Las Vegas,Orlando,,1 day 9 hours,"3,709 km" +Las Vegas,Daytona Beach,,1 day 10 hours,"3,708 km" +Las Vegas,Jacksonville,,1 day 8 hours,"3,559 km" +Las Vegas,Tampa,,1 day 10 hours,"3,736 km" +Las Vegas,Panama City,,1 day 5 hours,"3,206 km" +Las Vegas,Key West,,1 day 16 hours,"4,323 km" +Las Vegas,West Palm Beach,,1 day 12 hours,"3,964 km" +Las Vegas,Miami,,1 day 13 hours,"4,069 km" +Las Vegas,Tallahassee,,1 day 6 hours,"3,300 km" +Las Vegas,Punta Gorda,,1 day 11 hours,"3,891 km" +Las Vegas,Fort Lauderdale,,1 day 12 hours,"4,032 km" +Las Vegas,Pensacola,,1 day 3 hours,"3,003 km" +Sarasota,Las Vegas,,1 day 10 hours,"3,833 km" +Fort Myers,Las Vegas,,1 day 11 hours,"3,939 km" +Gainesville,Las Vegas,,1 day 8 hours,"3,547 km" +Orlando,Las Vegas,,1 day 9 hours,"3,719 km" +Daytona Beach,Las Vegas,,1 day 9 hours,"3,710 km" +Jacksonville,Las Vegas,,1 day 8 hours,"3,571 km" +Tampa,Las Vegas,,1 day 10 hours,"3,748 km" +Panama City,Las Vegas,,1 day 5 hours,"3,213 km" +Key West,Las Vegas,,1 day 16 hours,"4,334 km" +West Palm Beach,Las Vegas,,1 day 12 hours,"3,977 km" +Miami,Las Vegas,,1 day 13 hours,"4,082 km" +Tallahassee,Las Vegas,,1 day 6 hours,"3,311 km" +Punta Gorda,Las Vegas,,1 day 11 hours,"3,902 km" +Fort Lauderdale,Las Vegas,,1 day 12 hours,"4,045 km" +Pensacola,Las Vegas,,1 day 3 hours,"3,015 km" +St. Louis,Moline,,3 hours 52 mins,422 km +St. Louis,Belleville,,26 mins,28.1 km +St. Louis,Bloomington,,3 hours 46 mins,366 km +St. Louis,Champaign,,2 hours 41 mins,291 km +St. Louis,Chicago,,4 hours 28 mins,478 km +St. Louis,Rockford,,4 hours 22 mins,475 km +St. Louis,Peoria,,2 hours 29 mins,272 km +Moline,St. Louis,,3 hours 50 mins,420 km +Belleville,St. Louis,,26 mins,28.0 km +Bloomington,St. Louis,,3 hours 44 mins,362 km +Champaign,St. Louis,,2 hours 42 mins,291 km +Chicago,St. Louis,,4 hours 25 mins,477 km +Rockford,St. Louis,,4 hours 20 mins,473 km +Peoria,St. Louis,,2 hours 29 mins,271 km +Boston,Buffalo,,6 hours 50 mins,733 km +Boston,Manhattan,,3 hours 34 mins,340 km +Boston,Niagara Falls,,7 hours 2 mins,752 km +Boston,Islip,,4 hours 4 mins,391 km +Boston,New York,,3 hours 46 mins,347 km +Boston,Watertown,,5 hours 29 mins,544 km +Boston,Newburgh,,3 hours 14 mins,318 km +Boston,Syracuse,,4 hours 43 mins,502 km +Boston,Plattsburgh,,4 hours 20 mins,393 km +Boston,Ogdensburg,,6 hours 27 mins,625 km +Boston,Ithaca,,5 hours 29 mins,535 km +Boston,Elmira,,5 hours 30 mins,581 km +Boston,White Plains,,3 hours 3 mins,304 km +Boston,Albany,,, +Boston,Binghamton,,4 hours 42 mins,493 km +Boston,Rochester,,5 hours 54 mins,631 km +Buffalo,Boston,,6 hours 50 mins,737 km +Manhattan,Boston,,3 hours 32 mins,340 km +Niagara Falls,Boston,,7 hours 2 mins,752 km +Islip,Boston,,4 hours 3 mins,390 km +New York,Boston,,3 hours 41 mins,346 km +Watertown,Boston,,5 hours 28 mins,546 km +Newburgh,Boston,,3 hours 12 mins,317 km +Syracuse,Boston,,4 hours 43 mins,502 km +Plattsburgh,Boston,,4 hours 22 mins,392 km +Ogdensburg,Boston,,6 hours 26 mins,627 km +Ithaca,Boston,,5 hours 28 mins,535 km +Elmira,Boston,,5 hours 28 mins,580 km +White Plains,Boston,,3 hours 4 mins,304 km +Albany,Boston,,, +Binghamton,Boston,,4 hours 40 mins,492 km +Rochester,Boston,,5 hours 53 mins,631 km +San Diego,Austin,,19 hours 4 mins,"2,091 km" +Austin,San Diego,,19 hours 0 mins,"2,092 km" +Oklahoma City,Greensboro,,16 hours 41 mins,"1,836 km" +Oklahoma City,Wilmington,,18 hours 21 mins,"2,038 km" +Oklahoma City,New Bern,,19 hours 34 mins,"2,141 km" +Oklahoma City,Charlotte,,16 hours 5 mins,"1,747 km" +Oklahoma City,Raleigh,,17 hours 51 mins,"1,956 km" +Oklahoma City,Asheville,,14 hours 12 mins,"1,563 km" +Oklahoma City,Fayetteville,,17 hours 39 mins,"1,969 km" +Greensboro,Oklahoma City,,16 hours 39 mins,"1,835 km" +Wilmington,Oklahoma City,,18 hours 22 mins,"2,053 km" +New Bern,Oklahoma City,,19 hours 31 mins,"2,140 km" +Charlotte,Oklahoma City,,16 hours 4 mins,"1,745 km" +Raleigh,Oklahoma City,,17 hours 46 mins,"1,955 km" +Asheville,Oklahoma City,,14 hours 10 mins,"1,562 km" +Fayetteville,Oklahoma City,,17 hours 39 mins,"1,982 km" +Kansas City,Abilene,,9 hours 13 mins,"1,028 km" +Kansas City,Amarillo,,8 hours 44 mins,980 km +Kansas City,Harlingen,,15 hours 13 mins,"1,705 km" +Kansas City,Lubbock,,10 hours 7 mins,"1,118 km" +Kansas City,College Station,,10 hours 26 mins,"1,158 km" +Kansas City,Corpus Christi,,13 hours 35 mins,"1,529 km" +Kansas City,Wichita Falls,,6 hours 59 mins,784 km +Kansas City,Waco,,9 hours 8 mins,"1,022 km" +Kansas City,San Angelo,,10 hours 29 mins,"1,162 km" +Kansas City,Houston,,11 hours 15 mins,"1,195 km" +Kansas City,San Antonio,,11 hours 44 mins,"1,308 km" +Kansas City,Del Rio,,12 hours 54 mins,"1,415 km" +Kansas City,Mission,,, +Kansas City,Beaumont,,, +Kansas City,Longview,,8 hours 33 mins,859 km +Kansas City,Midland,,11 hours 5 mins,"1,229 km" +Kansas City,El Paso,,14 hours 46 mins,"1,509 km" +Kansas City,Brownsville,,15 hours 35 mins,"1,744 km" +Kansas City,Austin,,10 hours 32 mins,"1,181 km" +Kansas City,Dallas,,7 hours 55 mins,814 km +Kansas City,Killeen,,9 hours 56 mins,"1,116 km" +Kansas City,Laredo,,14 hours 0 mins,"1,558 km" +Kansas City,Texarkana,,7 hours 48 mins,771 km +Abilene,Kansas City,,9 hours 12 mins,"1,028 km" +Amarillo,Kansas City,,8 hours 42 mins,978 km +Harlingen,Kansas City,,15 hours 6 mins,"1,704 km" +Lubbock,Kansas City,,10 hours 2 mins,"1,118 km" +College Station,Kansas City,,10 hours 22 mins,"1,157 km" +Corpus Christi,Kansas City,,13 hours 30 mins,"1,528 km" +Wichita Falls,Kansas City,,6 hours 57 mins,783 km +Waco,Kansas City,,9 hours 6 mins,"1,019 km" +San Angelo,Kansas City,,10 hours 26 mins,"1,161 km" +Houston,Kansas City,,11 hours 14 mins,"1,198 km" +San Antonio,Kansas City,,11 hours 41 mins,"1,307 km" +Del Rio,Kansas City,,12 hours 50 mins,"1,414 km" +Mission,Kansas City,,, +Beaumont,Kansas City,,, +Longview,Kansas City,,8 hours 31 mins,861 km +Midland,Kansas City,,11 hours 2 mins,"1,230 km" +El Paso,Kansas City,,14 hours 42 mins,"1,509 km" +Brownsville,Kansas City,,15 hours 30 mins,"1,744 km" +Austin,Kansas City,,10 hours 31 mins,"1,181 km" +Dallas,Kansas City,,7 hours 56 mins,818 km +Killeen,Kansas City,,9 hours 55 mins,"1,115 km" +Laredo,Kansas City,,13 hours 59 mins,"1,558 km" +Texarkana,Kansas City,,7 hours 42 mins,767 km +St. Petersburg,Appleton,,, +Appleton,St. Petersburg,,, +Charlotte,Charlottesville,,4 hours 20 mins,437 km +Charlottesville,Charlotte,,4 hours 20 mins,438 km +Denver,Buffalo,,22 hours 7 mins,"2,457 km" +Denver,Manhattan,,1 day 2 hours,"2,877 km" +Denver,Niagara Falls,,22 hours 28 mins,"2,487 km" +Denver,Islip,,1 day 3 hours,"2,947 km" +Denver,New York,,1 day 2 hours,"2,863 km" +Denver,Watertown,,1 day 1 hour,"2,785 km" +Denver,Newburgh,,1 day 2 hours,"2,876 km" +Denver,Syracuse,,1 day 0 hours,"2,683 km" +Denver,Plattsburgh,,1 day 3 hours,"2,961 km" +Denver,Ogdensburg,,1 day 1 hour,"2,773 km" +Denver,Ithaca,,1 day 0 hours,"2,676 km" +Denver,Elmira,,23 hours 47 mins,"2,638 km" +Denver,White Plains,,1 day 2 hours,"2,901 km" +Denver,Albany,,, +Denver,Binghamton,,1 day 1 hour,"2,726 km" +Denver,Rochester,,23 hours 5 mins,"2,561 km" +Buffalo,Denver,,22 hours 8 mins,"2,452 km" +Manhattan,Denver,,1 day 2 hours,"2,872 km" +Niagara Falls,Denver,,22 hours 30 mins,"2,482 km" +Islip,Denver,,1 day 3 hours,"2,941 km" +New York,Denver,,1 day 2 hours,"2,859 km" +Watertown,Denver,,1 day 1 hour,"2,780 km" +Newburgh,Denver,,1 day 2 hours,"2,871 km" +Syracuse,Denver,,1 day 0 hours,"2,678 km" +Plattsburgh,Denver,,1 day 3 hours,"2,957 km" +Ogdensburg,Denver,,1 day 1 hour,"2,769 km" +Ithaca,Denver,,1 day 0 hours,"2,670 km" +Elmira,Denver,,23 hours 48 mins,"2,634 km" +White Plains,Denver,,1 day 2 hours,"2,896 km" +Albany,Denver,,, +Binghamton,Denver,,1 day 1 hour,"2,721 km" +Rochester,Denver,,23 hours 6 mins,"2,556 km" +Plattsburgh,Fort Lauderdale,,22 hours 40 mins,"2,515 km" +Fort Lauderdale,Plattsburgh,,22 hours 33 mins,"2,504 km" +Punta Gorda,Green Bay,,21 hours 29 mins,"2,381 km" +Punta Gorda,Rhinelander,,23 hours 5 mins,"2,596 km" +Punta Gorda,Marquette,,19 hours 48 mins,"2,198 km" +Punta Gorda,Madison,,20 hours 27 mins,"2,288 km" +Punta Gorda,La Crosse,,22 hours 18 mins,"2,505 km" +Punta Gorda,Devils Lake,,21 hours 6 mins,"2,353 km" +Punta Gorda,Appleton,,21 hours 19 mins,"2,363 km" +Punta Gorda,Mosinee,,22 hours 2 mins,"2,484 km" +Punta Gorda,Milwaukee,,19 hours 49 mins,"2,197 km" +Punta Gorda,Eau Claire,,22 hours 48 mins,"2,562 km" +Green Bay,Punta Gorda,,21 hours 31 mins,"2,379 km" +Rhinelander,Punta Gorda,,23 hours 3 mins,"2,590 km" +Marquette,Punta Gorda,,19 hours 48 mins,"2,194 km" +Madison,Punta Gorda,,20 hours 21 mins,"2,281 km" +La Crosse,Punta Gorda,,22 hours 14 mins,"2,498 km" +Devils Lake,Punta Gorda,,21 hours 4 mins,"2,346 km" +Appleton,Punta Gorda,,21 hours 18 mins,"2,360 km" +Mosinee,Punta Gorda,,21 hours 58 mins,"2,477 km" +Milwaukee,Punta Gorda,,19 hours 49 mins,"2,195 km" +Eau Claire,Punta Gorda,,22 hours 45 mins,"2,556 km" +Charleston,St. Louis,,12 hours 43 mins,"1,379 km" +St. Louis,Charleston,,12 hours 43 mins,"1,379 km" +Santa Ana,Houston,,22 hours 12 mins,"2,475 km" +Houston,Santa Ana,,22 hours 8 mins,"2,494 km" +Cincinnati,Bemidji,,13 hours 54 mins,"1,479 km" +Cincinnati,Minneapolis,,10 hours 26 mins,"1,135 km" +Cincinnati,Duluth,,11 hours 24 mins,"1,230 km" +Cincinnati,Brainerd,,12 hours 22 mins,"1,336 km" +Cincinnati,Gustavus,,10 hours 53 mins,"1,182 km" +Cincinnati,St. Cloud,,11 hours 23 mins,"1,238 km" +Cincinnati,Hibbing,,12 hours 41 mins,"1,350 km" +Cincinnati,International Falls,,14 hours 5 mins,"1,492 km" +Bemidji,Cincinnati,,13 hours 51 mins,"1,480 km" +Minneapolis,Cincinnati,,10 hours 24 mins,"1,133 km" +Duluth,Cincinnati,,11 hours 23 mins,"1,231 km" +Brainerd,Cincinnati,,12 hours 21 mins,"1,337 km" +Gustavus,Cincinnati,,10 hours 52 mins,"1,180 km" +St. Cloud,Cincinnati,,11 hours 22 mins,"1,238 km" +Hibbing,Cincinnati,,12 hours 40 mins,"1,351 km" +International Falls,Cincinnati,,14 hours 4 mins,"1,492 km" +Valparaiso,Chicago,,, +Chicago,Valparaiso,,, +Everett,Boise,,7 hours 52 mins,830 km +Boise,Everett,,7 hours 53 mins,830 km +Spokane,San Francisco,,14 hours 5 mins,"1,409 km" +San Francisco,Spokane,,13 hours 57 mins,"1,409 km" +Atlanta,Pellston,,13 hours 58 mins,"1,569 km" +Atlanta,Traverse City,,13 hours 57 mins,"1,499 km" +Atlanta,Alpena,,13 hours 57 mins,"1,516 km" +Atlanta,Iron Mountain,,, +Atlanta,Kalamazoo,,11 hours 25 mins,"1,221 km" +Atlanta,Saginaw,,11 hours 38 mins,"1,282 km" +Atlanta,Grand Rapids,,11 hours 51 mins,"1,270 km" +Atlanta,Lansing,,11 hours 18 mins,"1,247 km" +Atlanta,Muskegon,,12 hours 7 mins,"1,285 km" +Atlanta,Hancock,,, +Atlanta,Detroit,,10 hours 36 mins,"1,162 km" +Atlanta,Escanaba,,15 hours 35 mins,"1,670 km" +Pellston,Atlanta,,13 hours 58 mins,"1,568 km" +Traverse City,Atlanta,,13 hours 59 mins,"1,527 km" +Alpena,Atlanta,,13 hours 56 mins,"1,513 km" +Iron Mountain,Atlanta,,, +Kalamazoo,Atlanta,,11 hours 24 mins,"1,225 km" +Saginaw,Atlanta,,11 hours 37 mins,"1,280 km" +Grand Rapids,Atlanta,,11 hours 50 mins,"1,272 km" +Lansing,Atlanta,,11 hours 18 mins,"1,246 km" +Muskegon,Atlanta,,12 hours 7 mins,"1,284 km" +Hancock,Atlanta,,, +Detroit,Atlanta,,10 hours 37 mins,"1,163 km" +Escanaba,Atlanta,,15 hours 35 mins,"1,668 km" +Baltimore,Syracuse,,5 hours 10 mins,534 km +Syracuse,Baltimore,,5 hours 8 mins,535 km +Fort Myers,Abilene,,20 hours 22 mins,"2,261 km" +Fort Myers,Amarillo,,23 hours 13 mins,"2,560 km" +Fort Myers,Harlingen,,20 hours 33 mins,"2,297 km" +Fort Myers,Lubbock,,22 hours 46 mins,"2,526 km" +Fort Myers,College Station,,17 hours 5 mins,"1,892 km" +Fort Myers,Corpus Christi,,18 hours 47 mins,"2,102 km" +Fort Myers,Wichita Falls,,19 hours 48 mins,"2,199 km" +Fort Myers,Waco,,18 hours 24 mins,"2,025 km" +Fort Myers,San Angelo,,21 hours 23 mins,"2,353 km" +Fort Myers,Houston,,15 hours 41 mins,"1,769 km" +Fort Myers,San Antonio,,18 hours 33 mins,"2,083 km" +Fort Myers,Del Rio,,20 hours 56 mins,"2,330 km" +Fort Myers,Mission,,, +Fort Myers,Beaumont,,, +Fort Myers,Longview,,16 hours 5 mins,"1,772 km" +Fort Myers,Midland,,22 hours 30 mins,"2,502 km" +Fort Myers,El Paso,,1 day 2 hours,"2,967 km" +Fort Myers,Brownsville,,20 hours 54 mins,"2,336 km" +Fort Myers,Austin,,18 hours 8 mins,"2,032 km" +Fort Myers,Dallas,,17 hours 47 mins,"1,973 km" +Fort Myers,Killeen,,18 hours 43 mins,"2,065 km" +Fort Myers,Laredo,,20 hours 39 mins,"2,275 km" +Fort Myers,Texarkana,,16 hours 7 mins,"1,783 km" +Abilene,Fort Myers,,20 hours 23 mins,"2,255 km" +Amarillo,Fort Myers,,23 hours 13 mins,"2,548 km" +Harlingen,Fort Myers,,20 hours 30 mins,"2,295 km" +Lubbock,Fort Myers,,22 hours 42 mins,"2,521 km" +College Station,Fort Myers,,17 hours 5 mins,"1,916 km" +Corpus Christi,Fort Myers,,18 hours 52 mins,"2,106 km" +Wichita Falls,Fort Myers,,19 hours 52 mins,"2,185 km" +Waco,Fort Myers,,18 hours 25 mins,"2,023 km" +San Angelo,Fort Myers,,21 hours 24 mins,"2,351 km" +Houston,Fort Myers,,15 hours 42 mins,"1,768 km" +San Antonio,Fort Myers,,18 hours 35 mins,"2,082 km" +Del Rio,Fort Myers,,21 hours 0 mins,"2,329 km" +Mission,Fort Myers,,, +Beaumont,Fort Myers,,, +Longview,Fort Myers,,16 hours 4 mins,"1,766 km" +Midland,Fort Myers,,22 hours 28 mins,"2,495 km" +El Paso,Fort Myers,,1 day 2 hours,"2,966 km" +Brownsville,Fort Myers,,20 hours 54 mins,"2,335 km" +Austin,Fort Myers,,18 hours 9 mins,"2,031 km" +Dallas,Fort Myers,,17 hours 48 mins,"1,964 km" +Killeen,Fort Myers,,18 hours 44 mins,"2,080 km" +Laredo,Fort Myers,,20 hours 38 mins,"2,274 km" +Texarkana,Fort Myers,,16 hours 10 mins,"1,784 km" +Madison,State College,,10 hours 56 mins,"1,156 km" +Madison,Johnstown,,10 hours 20 mins,"1,084 km" +Madison,Harrisburg,,12 hours 10 mins,"1,303 km" +Madison,Erie,,9 hours 2 mins,963 km +Madison,Pittsburgh,,9 hours 9 mins,986 km +Madison,Latrobe,,9 hours 48 mins,"1,040 km" +Madison,Philadelphia,,13 hours 39 mins,"1,465 km" +Madison,Lewisburg,,11 hours 33 mins,"1,249 km" +Madison,Scranton,,12 hours 43 mins,"1,375 km" +State College,Madison,,10 hours 57 mins,"1,153 km" +Johnstown,Madison,,10 hours 24 mins,"1,073 km" +Harrisburg,Madison,,12 hours 12 mins,"1,293 km" +Erie,Madison,,9 hours 5 mins,952 km +Pittsburgh,Madison,,9 hours 11 mins,976 km +Latrobe,Madison,,9 hours 55 mins,"1,033 km" +Philadelphia,Madison,,13 hours 44 mins,"1,457 km" +Lewisburg,Madison,,11 hours 35 mins,"1,240 km" +Scranton,Madison,,12 hours 45 mins,"1,365 km" +Miami,Atlanta,,9 hours 24 mins,"1,068 km" +Atlanta,Miami,,9 hours 27 mins,"1,066 km" +Cincinnati,Sarasota,,13 hours 58 mins,"1,559 km" +Cincinnati,Fort Myers,,14 hours 56 mins,"1,664 km" +Cincinnati,Gainesville,,11 hours 34 mins,"1,274 km" +Cincinnati,Orlando,,12 hours 58 mins,"1,447 km" +Cincinnati,Daytona Beach,,13 hours 4 mins,"1,434 km" +Cincinnati,Jacksonville,,11 hours 39 mins,"1,280 km" +Cincinnati,Tampa,,13 hours 11 mins,"1,474 km" +Cincinnati,Panama City,,11 hours 23 mins,"1,173 km" +Cincinnati,Key West,,19 hours 10 mins,"2,061 km" +Cincinnati,West Palm Beach,,15 hours 12 mins,"1,702 km" +Cincinnati,Miami,,16 hours 10 mins,"1,807 km" +Cincinnati,Tallahassee,,11 hours 0 mins,"1,173 km" +Cincinnati,Punta Gorda,,14 hours 30 mins,"1,629 km" +Cincinnati,Fort Lauderdale,,15 hours 49 mins,"1,770 km" +Cincinnati,Pensacola,,10 hours 35 mins,"1,151 km" +Sarasota,Cincinnati,,13 hours 57 mins,"1,560 km" +Fort Myers,Cincinnati,,14 hours 54 mins,"1,665 km" +Gainesville,Cincinnati,,11 hours 33 mins,"1,274 km" +Orlando,Cincinnati,,12 hours 55 mins,"1,446 km" +Daytona Beach,Cincinnati,,13 hours 1 min,"1,437 km" +Jacksonville,Cincinnati,,11 hours 42 mins,"1,280 km" +Tampa,Cincinnati,,13 hours 9 mins,"1,475 km" +Panama City,Cincinnati,,11 hours 24 mins,"1,168 km" +Key West,Cincinnati,,19 hours 10 mins,"2,061 km" +West Palm Beach,Cincinnati,,15 hours 9 mins,"1,704 km" +Miami,Cincinnati,,16 hours 6 mins,"1,809 km" +Tallahassee,Cincinnati,,11 hours 0 mins,"1,172 km" +Punta Gorda,Cincinnati,,14 hours 28 mins,"1,629 km" +Fort Lauderdale,Cincinnati,,15 hours 48 mins,"1,772 km" +Pensacola,Cincinnati,,10 hours 30 mins,"1,149 km" +Jacksonville,Pellston,,18 hours 34 mins,"2,032 km" +Jacksonville,Traverse City,,18 hours 34 mins,"1,991 km" +Jacksonville,Alpena,,18 hours 33 mins,"1,980 km" +Jacksonville,Iron Mountain,,, +Jacksonville,Kalamazoo,,16 hours 19 mins,"1,777 km" +Jacksonville,Saginaw,,16 hours 14 mins,"1,746 km" +Jacksonville,Grand Rapids,,16 hours 45 mins,"1,826 km" +Jacksonville,Lansing,,15 hours 54 mins,"1,711 km" +Jacksonville,Muskegon,,17 hours 1 min,"1,841 km" +Jacksonville,Hancock,,, +Jacksonville,Detroit,,15 hours 12 mins,"1,626 km" +Jacksonville,Escanaba,,20 hours 29 mins,"2,226 km" +Pellston,Jacksonville,,18 hours 35 mins,"2,025 km" +Traverse City,Jacksonville,,18 hours 36 mins,"1,984 km" +Alpena,Jacksonville,,18 hours 32 mins,"1,971 km" +Iron Mountain,Jacksonville,,, +Kalamazoo,Jacksonville,,16 hours 16 mins,"1,765 km" +Saginaw,Jacksonville,,16 hours 14 mins,"1,738 km" +Grand Rapids,Jacksonville,,16 hours 43 mins,"1,828 km" +Lansing,Jacksonville,,15 hours 55 mins,"1,704 km" +Muskegon,Jacksonville,,17 hours 0 mins,"1,839 km" +Hancock,Jacksonville,,, +Detroit,Jacksonville,,15 hours 13 mins,"1,620 km" +Escanaba,Jacksonville,,20 hours 28 mins,"2,224 km" +Wilmington,Newark,,8 hours 50 mins,936 km +Newark,Wilmington,,8 hours 53 mins,944 km +Chicago,Johnstown,,8 hours 6 mins,841 km +Johnstown,Chicago,,8 hours 9 mins,839 km +Denver,Lake Charles,,17 hours 5 mins,"1,828 km" +Denver,Baton Rouge,,18 hours 9 mins,"1,967 km" +Denver,New Orleans,,19 hours 20 mins,"2,094 km" +Denver,Shreveport,,14 hours 39 mins,"1,583 km" +Lake Charles,Denver,,17 hours 5 mins,"1,825 km" +Baton Rouge,Denver,,18 hours 6 mins,"1,969 km" +New Orleans,Denver,,19 hours 18 mins,"2,097 km" +Shreveport,Denver,,14 hours 38 mins,"1,586 km" +Providence,Orlando,,18 hours 43 mins,"2,025 km" +Orlando,Providence,,18 hours 32 mins,"2,015 km" +New York,Evansville,,13 hours 12 mins,"1,381 km" +New York,South Bend,,10 hours 44 mins,"1,130 km" +New York,Fort Wayne,,10 hours 1 min,"1,040 km" +New York,Valparaiso,,, +New York,Indianapolis,,11 hours 1 min,"1,139 km" +Evansville,New York,,13 hours 15 mins,"1,384 km" +South Bend,New York,,10 hours 40 mins,"1,128 km" +Fort Wayne,New York,,9 hours 59 mins,"1,044 km" +Valparaiso,New York,,, +Indianapolis,New York,,11 hours 6 mins,"1,143 km" +Baton Rouge,Greensboro,,12 hours 26 mins,"1,380 km" +Baton Rouge,Wilmington,,13 hours 27 mins,"1,511 km" +Baton Rouge,New Bern,,14 hours 42 mins,"1,645 km" +Baton Rouge,Charlotte,,11 hours 14 mins,"1,241 km" +Baton Rouge,Raleigh,,13 hours 35 mins,"1,499 km" +Baton Rouge,Asheville,,10 hours 49 mins,"1,165 km" +Baton Rouge,Fayetteville,,12 hours 44 mins,"1,442 km" +Greensboro,Baton Rouge,,12 hours 26 mins,"1,380 km" +Wilmington,Baton Rouge,,13 hours 29 mins,"1,513 km" +New Bern,Baton Rouge,,14 hours 45 mins,"1,646 km" +Charlotte,Baton Rouge,,11 hours 13 mins,"1,239 km" +Raleigh,Baton Rouge,,13 hours 33 mins,"1,501 km" +Asheville,Baton Rouge,,10 hours 49 mins,"1,166 km" +Fayetteville,Baton Rouge,,12 hours 46 mins,"1,442 km" +Atlanta,Minneapolis,,16 hours 26 mins,"1,821 km" +Minneapolis,Atlanta,,16 hours 20 mins,"1,814 km" +Raleigh,San Diego,,1 day 13 hours,"4,102 km" +Raleigh,Redding,,1 day 18 hours,"4,586 km" +Raleigh,Sacramento,,1 day 17 hours,"4,484 km" +Raleigh,Fresno,,1 day 15 hours,"4,291 km" +Raleigh,San Luis Obispo,,1 day 15 hours,"4,334 km" +Raleigh,Oakland,,1 day 17 hours,"4,552 km" +Raleigh,Santa Barbara,,1 day 14 hours,"4,233 km" +Raleigh,Stockton,,1 day 17 hours,"4,490 km" +Raleigh,Santa Rosa,,1 day 18 hours,"4,645 km" +Raleigh,Bakersfield,,1 day 13 hours,"4,115 km" +Raleigh,Santa Ana,,1 day 13 hours,"4,090 km" +Raleigh,Santa Maria,,1 day 15 hours,"4,290 km" +Raleigh,San Jose,,1 day 17 hours,"4,503 km" +Raleigh,Burbank,,1 day 13 hours,"4,100 km" +Raleigh,Arcata,,1 day 21 hours,"4,811 km" +Raleigh,Butte,,1 day 17 hours,"4,523 km" +Raleigh,Palm Springs,,1 day 12 hours,"3,926 km" +Raleigh,Los Angeles,,1 day 13 hours,"4,091 km" +Raleigh,Long Beach,,1 day 13 hours,"4,113 km" +Raleigh,San Francisco,,1 day 17 hours,"4,571 km" +Raleigh,Monterey,,1 day 17 hours,"4,469 km" +San Diego,Raleigh,,1 day 13 hours,"4,095 km" +Redding,Raleigh,,1 day 18 hours,"4,594 km" +Sacramento,Raleigh,,1 day 17 hours,"4,492 km" +Fresno,Raleigh,,1 day 15 hours,"4,291 km" +San Luis Obispo,Raleigh,,1 day 15 hours,"4,336 km" +Oakland,Raleigh,,1 day 17 hours,"4,555 km" +Santa Barbara,Raleigh,,1 day 14 hours,"4,233 km" +Stockton,Raleigh,,1 day 17 hours,"4,491 km" +Santa Rosa,Raleigh,,1 day 18 hours,"4,647 km" +Bakersfield,Raleigh,,1 day 13 hours,"4,116 km" +Santa Ana,Raleigh,,1 day 13 hours,"4,087 km" +Santa Maria,Raleigh,,1 day 15 hours,"4,292 km" +San Jose,Raleigh,,1 day 17 hours,"4,504 km" +Burbank,Raleigh,,1 day 13 hours,"4,094 km" +Arcata,Raleigh,,1 day 21 hours,"4,818 km" +Butte,Raleigh,,1 day 17 hours,"4,530 km" +Palm Springs,Raleigh,,1 day 12 hours,"3,926 km" +Los Angeles,Raleigh,,1 day 13 hours,"4,090 km" +Long Beach,Raleigh,,1 day 13 hours,"4,117 km" +San Francisco,Raleigh,,1 day 17 hours,"4,573 km" +Monterey,Raleigh,,1 day 17 hours,"4,471 km" +Moab,Alamosa,,5 hours 30 mins,492 km +Moab,Grand Junction,,1 hour 45 mins,182 km +Moab,Durango,,2 hours 45 mins,254 km +Moab,Colorado Springs,,6 hours 18 mins,677 km +Moab,Gunnison,,4 hours 6 mins,379 km +Moab,Denver,,5 hours 23 mins,570 km +Alamosa,Moab,,5 hours 29 mins,492 km +Grand Junction,Moab,,1 hour 46 mins,182 km +Durango,Moab,,2 hours 42 mins,254 km +Colorado Springs,Moab,,6 hours 18 mins,679 km +Gunnison,Moab,,4 hours 1 min,380 km +Denver,Moab,,5 hours 25 mins,571 km +Austin,Nashville,,12 hours 31 mins,"1,382 km" +Austin,Bristol,,, +Austin,Knoxville,,15 hours 4 mins,"1,669 km" +Austin,Chattanooga,,13 hours 45 mins,"1,500 km" +Austin,Memphis,,9 hours 22 mins,"1,041 km" +Nashville,Austin,,12 hours 33 mins,"1,383 km" +Bristol,Austin,,, +Knoxville,Austin,,15 hours 7 mins,"1,671 km" +Chattanooga,Austin,,13 hours 48 mins,"1,505 km" +Memphis,Austin,,9 hours 26 mins,"1,043 km" +Albuquerque,Alamosa,,3 hours 28 mins,327 km +Albuquerque,Grand Junction,,7 hours 3 mins,614 km +Albuquerque,Durango,,3 hours 36 mins,346 km +Albuquerque,Colorado Springs,,5 hours 23 mins,609 km +Albuquerque,Gunnison,,5 hours 34 mins,519 km +Albuquerque,Denver,,6 hours 26 mins,722 km +Alamosa,Albuquerque,,3 hours 24 mins,325 km +Grand Junction,Albuquerque,,7 hours 5 mins,615 km +Durango,Albuquerque,,3 hours 35 mins,345 km +Colorado Springs,Albuquerque,,5 hours 25 mins,611 km +Gunnison,Albuquerque,,5 hours 30 mins,518 km +Denver,Albuquerque,,6 hours 28 mins,722 km +Tampa,Austin,,16 hours 23 mins,"1,841 km" +Austin,Tampa,,16 hours 24 mins,"1,841 km" +Dallas,Grand Island,,9 hours 18 mins,"1,023 km" +Dallas,North Platte,,11 hours 1 min,"1,191 km" +Dallas,Omaha,,9 hours 43 mins,"1,058 km" +Dallas,Scottsbluff,,13 hours 41 mins,"1,468 km" +Grand Island,Dallas,,9 hours 18 mins,"1,025 km" +North Platte,Dallas,,11 hours 2 mins,"1,199 km" +Omaha,Dallas,,9 hours 46 mins,"1,059 km" +Scottsbluff,Dallas,,13 hours 40 mins,"1,480 km" +Grand Rapids,Moline,,4 hours 51 mins,522 km +Grand Rapids,Belleville,,6 hours 42 mins,716 km +Grand Rapids,Bloomington,,4 hours 58 mins,505 km +Grand Rapids,Champaign,,4 hours 9 mins,448 km +Grand Rapids,Chicago,,2 hours 45 mins,288 km +Grand Rapids,Rockford,,4 hours 8 mins,437 km +Grand Rapids,Peoria,,4 hours 38 mins,508 km +Moline,Grand Rapids,,4 hours 52 mins,519 km +Belleville,Grand Rapids,,6 hours 43 mins,711 km +Bloomington,Grand Rapids,,4 hours 58 mins,499 km +Champaign,Grand Rapids,,4 hours 11 mins,445 km +Chicago,Grand Rapids,,2 hours 46 mins,286 km +Rockford,Grand Rapids,,4 hours 8 mins,433 km +Peoria,Grand Rapids,,4 hours 41 mins,507 km +San Francisco,Tucson,,12 hours 50 mins,"1,390 km" +Tucson,San Francisco,,12 hours 55 mins,"1,391 km" +Knoxville,Sarasota,,10 hours 21 mins,"1,161 km" +Knoxville,Fort Myers,,11 hours 18 mins,"1,267 km" +Knoxville,Gainesville,,7 hours 57 mins,877 km +Knoxville,Orlando,,9 hours 21 mins,"1,049 km" +Knoxville,Daytona Beach,,9 hours 25 mins,"1,034 km" +Knoxville,Jacksonville,,8 hours 0 mins,880 km +Knoxville,Tampa,,9 hours 33 mins,"1,077 km" +Knoxville,Panama City,,7 hours 52 mins,801 km +Knoxville,Key West,,15 hours 33 mins,"1,663 km" +Knoxville,West Palm Beach,,11 hours 34 mins,"1,305 km" +Knoxville,Miami,,12 hours 33 mins,"1,410 km" +Knoxville,Tallahassee,,7 hours 23 mins,775 km +Knoxville,Punta Gorda,,10 hours 53 mins,"1,231 km" +Knoxville,Fort Lauderdale,,12 hours 12 mins,"1,373 km" +Knoxville,Pensacola,,7 hours 29 mins,813 km +Sarasota,Knoxville,,10 hours 19 mins,"1,162 km" +Fort Myers,Knoxville,,11 hours 16 mins,"1,268 km" +Gainesville,Knoxville,,7 hours 55 mins,876 km +Orlando,Knoxville,,9 hours 16 mins,"1,048 km" +Daytona Beach,Knoxville,,9 hours 23 mins,"1,039 km" +Jacksonville,Knoxville,,8 hours 4 mins,881 km +Tampa,Knoxville,,9 hours 31 mins,"1,077 km" +Panama City,Knoxville,,7 hours 50 mins,802 km +Key West,Knoxville,,15 hours 32 mins,"1,663 km" +West Palm Beach,Knoxville,,11 hours 31 mins,"1,306 km" +Miami,Knoxville,,12 hours 28 mins,"1,411 km" +Tallahassee,Knoxville,,7 hours 22 mins,775 km +Punta Gorda,Knoxville,,10 hours 50 mins,"1,231 km" +Fort Lauderdale,Knoxville,,12 hours 10 mins,"1,374 km" +Pensacola,Knoxville,,7 hours 26 mins,811 km +Dallas,Paducah,,9 hours 36 mins,"1,027 km" +Dallas,Owensboro,,11 hours 17 mins,"1,212 km" +Dallas,Lexington,,12 hours 51 mins,"1,407 km" +Dallas,Louisville,,12 hours 15 mins,"1,345 km" +Paducah,Dallas,,9 hours 42 mins,"1,013 km" +Owensboro,Dallas,,11 hours 18 mins,"1,212 km" +Lexington,Dallas,,12 hours 55 mins,"1,408 km" +Louisville,Dallas,,12 hours 17 mins,"1,345 km" +St. Louis,Detroit,,7 hours 53 mins,852 km +Detroit,St. Louis,,7 hours 55 mins,852 km +Detroit,Kansas City,,11 hours 17 mins,"1,229 km" +Detroit,Cape Girardeau,,9 hours 2 mins,952 km +Detroit,Branson,,11 hours 38 mins,"1,256 km" +Detroit,Fort Leonard Wood,,10 hours 8 mins,"1,075 km" +Detroit,St. Louis,,7 hours 55 mins,852 km +Kansas City,Detroit,,11 hours 13 mins,"1,227 km" +Cape Girardeau,Detroit,,9 hours 1 min,951 km +Branson,Detroit,,11 hours 35 mins,"1,254 km" +Fort Leonard Wood,Detroit,,10 hours 5 mins,"1,073 km" +St. Louis,Detroit,,7 hours 53 mins,852 km +Nashville,Salt Lake City,,23 hours 37 mins,"2,624 km" +Nashville,Moab,,21 hours 51 mins,"2,429 km" +Nashville,Ogden,,23 hours 28 mins,"2,616 km" +Nashville,Vernal,,21 hours 59 mins,"2,387 km" +Nashville,Provo,,23 hours 51 mins,"2,633 km" +Nashville,Cedar City,,1 day 1 hour,"2,792 km" +Salt Lake City,Nashville,,23 hours 34 mins,"2,626 km" +Moab,Nashville,,21 hours 47 mins,"2,429 km" +Ogden,Nashville,,23 hours 27 mins,"2,616 km" +Vernal,Nashville,,21 hours 56 mins,"2,371 km" +Provo,Nashville,,23 hours 50 mins,"2,634 km" +Cedar City,Nashville,,1 day 1 hour,"2,791 km" +Charlotte,State College,,8 hours 14 mins,839 km +Charlotte,Johnstown,,7 hours 31 mins,773 km +Charlotte,Harrisburg,,7 hours 10 mins,769 km +Charlotte,Erie,,8 hours 42 mins,915 km +Charlotte,Pittsburgh,,6 hours 58 mins,720 km +Charlotte,Latrobe,,7 hours 10 mins,706 km +Charlotte,Philadelphia,,8 hours 11 mins,868 km +Charlotte,Lewisburg,,8 hours 9 mins,856 km +Charlotte,Scranton,,8 hours 57 mins,957 km +State College,Charlotte,,8 hours 11 mins,847 km +Johnstown,Charlotte,,7 hours 29 mins,774 km +Harrisburg,Charlotte,,7 hours 12 mins,771 km +Erie,Charlotte,,8 hours 43 mins,915 km +Pittsburgh,Charlotte,,6 hours 56 mins,721 km +Latrobe,Charlotte,,7 hours 7 mins,706 km +Philadelphia,Charlotte,,8 hours 14 mins,876 km +Lewisburg,Charlotte,,8 hours 10 mins,857 km +Scranton,Charlotte,,8 hours 56 mins,958 km +Kansas City,Orlando,,17 hours 58 mins,"1,994 km" +Orlando,Kansas City,,17 hours 52 mins,"1,993 km" +Washington,Abilene,,22 hours 7 mins,"2,428 km" +Washington,Amarillo,,23 hours 13 mins,"2,576 km" +Washington,Harlingen,,1 day 1 hour,"2,794 km" +Washington,Lubbock,,1 day 1 hour,"2,693 km" +Washington,College Station,,21 hours 17 mins,"2,292 km" +Washington,Corpus Christi,,23 hours 39 mins,"2,600 km" +Washington,Wichita Falls,,21 hours 22 mins,"2,373 km" +Washington,Waco,,20 hours 53 mins,"2,294 km" +Washington,San Angelo,,23 hours 21 mins,"2,552 km" +Washington,Houston,,20 hours 33 mins,"2,267 km" +Washington,San Antonio,,23 hours 25 mins,"2,580 km" +Washington,Del Rio,,1 day 2 hours,"2,805 km" +Washington,Mission,,, +Washington,Beaumont,,, +Washington,Longview,,18 hours 23 mins,"2,026 km" +Washington,Midland,,1 day 0 hours,"2,669 km" +Washington,El Paso,,1 day 5 hours,"3,159 km" +Washington,Brownsville,,1 day 2 hours,"2,834 km" +Washington,Austin,,22 hours 18 mins,"2,452 km" +Washington,Dallas,,19 hours 30 mins,"2,138 km" +Washington,Killeen,,21 hours 42 mins,"2,387 km" +Washington,Laredo,,1 day 2 hours,"2,772 km" +Washington,Texarkana,,17 hours 1 min,"1,858 km" +Abilene,Washington,,22 hours 5 mins,"2,428 km" +Amarillo,Washington,,23 hours 12 mins,"2,576 km" +Harlingen,Washington,,1 day 1 hour,"2,794 km" +Lubbock,Washington,,1 day 0 hours,"2,619 km" +College Station,Washington,,21 hours 11 mins,"2,287 km" +Corpus Christi,Washington,,23 hours 42 mins,"2,605 km" +Wichita Falls,Washington,,21 hours 11 mins,"2,286 km" +Waco,Washington,,20 hours 50 mins,"2,289 km" +San Angelo,Washington,,23 hours 17 mins,"2,552 km" +Houston,Washington,,20 hours 32 mins,"2,267 km" +San Antonio,Washington,,23 hours 25 mins,"2,577 km" +Del Rio,Washington,,1 day 2 hours,"2,805 km" +Mission,Washington,,, +Beaumont,Washington,,, +Longview,Washington,,18 hours 21 mins,"2,020 km" +Midland,Washington,,1 day 0 hours,"2,668 km" +El Paso,Washington,,1 day 4 hours,"3,158 km" +Brownsville,Washington,,1 day 2 hours,"2,834 km" +Austin,Washington,,22 hours 14 mins,"2,451 km" +Dallas,Washington,,19 hours 28 mins,"2,137 km" +Killeen,Washington,,21 hours 39 mins,"2,386 km" +Laredo,Washington,,1 day 1 hour,"2,772 km" +Texarkana,Washington,,16 hours 59 mins,"1,856 km" +Minneapolis,Moline,,5 hours 27 mins,582 km +Minneapolis,Belleville,,8 hours 48 mins,927 km +Minneapolis,Bloomington,,9 hours 36 mins,"1,030 km" +Minneapolis,Champaign,,7 hours 25 mins,822 km +Minneapolis,Chicago,,6 hours 5 mins,657 km +Minneapolis,Rockford,,5 hours 1 min,538 km +Minneapolis,Peoria,,6 hours 46 mins,730 km +Moline,Minneapolis,,5 hours 26 mins,580 km +Belleville,Minneapolis,,8 hours 50 mins,927 km +Bloomington,Minneapolis,,9 hours 38 mins,"1,033 km" +Champaign,Minneapolis,,7 hours 28 mins,825 km +Chicago,Minneapolis,,6 hours 5 mins,658 km +Rockford,Minneapolis,,5 hours 3 mins,540 km +Peoria,Minneapolis,,6 hours 46 mins,729 km +Norfolk,State College,,6 hours 23 mins,646 km +Norfolk,Johnstown,,5 hours 57 mins,588 km +Norfolk,Harrisburg,,4 hours 55 mins,492 km +Norfolk,Erie,,8 hours 31 mins,890 km +Norfolk,Pittsburgh,,6 hours 48 mins,693 km +Norfolk,Latrobe,,6 hours 23 mins,617 km +Norfolk,Philadelphia,,5 hours 1 min,445 km +Norfolk,Lewisburg,,6 hours 3 mins,591 km +Norfolk,Scranton,,6 hours 41 mins,622 km +State College,Norfolk,,6 hours 28 mins,655 km +Johnstown,Norfolk,,6 hours 2 mins,590 km +Harrisburg,Norfolk,,5 hours 1 min,494 km +Erie,Norfolk,,8 hours 38 mins,892 km +Pittsburgh,Norfolk,,6 hours 53 mins,695 km +Latrobe,Norfolk,,6 hours 30 mins,616 km +Philadelphia,Norfolk,,5 hours 1 min,445 km +Lewisburg,Norfolk,,6 hours 9 mins,598 km +Scranton,Norfolk,,6 hours 40 mins,621 km +Minneapolis,Miami,,1 day 2 hours,"2,880 km" +Miami,Minneapolis,,1 day 2 hours,"2,889 km" +Chicago,Bemidji,,9 hours 32 mins,"1,002 km" +Chicago,Minneapolis,,6 hours 5 mins,658 km +Chicago,Duluth,,7 hours 2 mins,754 km +Chicago,Brainerd,,8 hours 1 min,859 km +Chicago,Gustavus,,6 hours 31 mins,705 km +Chicago,St. Cloud,,7 hours 1 min,761 km +Chicago,Hibbing,,8 hours 19 mins,873 km +Chicago,International Falls,,9 hours 43 mins,"1,015 km" +Bemidji,Chicago,,9 hours 33 mins,"1,004 km" +Minneapolis,Chicago,,6 hours 5 mins,657 km +Duluth,Chicago,,7 hours 5 mins,755 km +Brainerd,Chicago,,8 hours 3 mins,861 km +Gustavus,Chicago,,6 hours 33 mins,704 km +St. Cloud,Chicago,,7 hours 4 mins,762 km +Hibbing,Chicago,,8 hours 21 mins,875 km +International Falls,Chicago,,9 hours 45 mins,"1,016 km" +Columbus,Newark,,8 hours 14 mins,844 km +Newark,Columbus,,8 hours 11 mins,844 km +San Juan,Sarasota,,, +San Juan,Fort Myers,,, +San Juan,Gainesville,,, +San Juan,Orlando,,, +San Juan,Daytona Beach,,, +San Juan,Jacksonville,,, +San Juan,Tampa,,, +San Juan,Panama City,,, +San Juan,Key West,,, +San Juan,West Palm Beach,,, +San Juan,Miami,,, +San Juan,Tallahassee,,, +San Juan,Punta Gorda,,, +San Juan,Fort Lauderdale,,, +San Juan,Pensacola,,, +Sarasota,San Juan,,, +Fort Myers,San Juan,,, +Gainesville,San Juan,,, +Orlando,San Juan,,, +Daytona Beach,San Juan,,, +Jacksonville,San Juan,,, +Tampa,San Juan,,, +Panama City,San Juan,,, +Key West,San Juan,,, +West Palm Beach,San Juan,,, +Miami,San Juan,,, +Tallahassee,San Juan,,, +Punta Gorda,San Juan,,, +Fort Lauderdale,San Juan,,, +Pensacola,San Juan,,, +Pittsburgh,Abilene,,20 hours 22 mins,"2,234 km" +Pittsburgh,Amarillo,,19 hours 53 mins,"2,186 km" +Pittsburgh,Harlingen,,1 day 1 hour,"2,681 km" +Pittsburgh,Lubbock,,21 hours 16 mins,"2,325 km" +Pittsburgh,College Station,,20 hours 9 mins,"2,126 km" +Pittsburgh,Corpus Christi,,23 hours 16 mins,"2,487 km" +Pittsburgh,Wichita Falls,,18 hours 8 mins,"1,990 km" +Pittsburgh,Waco,,19 hours 27 mins,"2,124 km" +Pittsburgh,San Angelo,,21 hours 38 mins,"2,368 km" +Pittsburgh,Houston,,20 hours 9 mins,"2,153 km" +Pittsburgh,San Antonio,,22 hours 3 mins,"2,409 km" +Pittsburgh,Del Rio,,1 day 0 hours,"2,621 km" +Pittsburgh,Mission,,, +Pittsburgh,Beaumont,,, +Pittsburgh,Longview,,17 hours 1 min,"1,829 km" +Pittsburgh,Midland,,22 hours 14 mins,"2,436 km" +Pittsburgh,El Paso,,1 day 2 hours,"2,884 km" +Pittsburgh,Brownsville,,1 day 1 hour,"2,721 km" +Pittsburgh,Austin,,20 hours 51 mins,"2,283 km" +Pittsburgh,Dallas,,18 hours 4 mins,"1,968 km" +Pittsburgh,Killeen,,20 hours 15 mins,"2,217 km" +Pittsburgh,Laredo,,1 day 0 hours,"2,660 km" +Pittsburgh,Texarkana,,15 hours 35 mins,"1,689 km" +Abilene,Pittsburgh,,20 hours 23 mins,"2,234 km" +Amarillo,Pittsburgh,,19 hours 53 mins,"2,185 km" +Harlingen,Pittsburgh,,1 day 1 hour,"2,677 km" +Lubbock,Pittsburgh,,21 hours 13 mins,"2,324 km" +College Station,Pittsburgh,,20 hours 3 mins,"2,118 km" +Corpus Christi,Pittsburgh,,23 hours 15 mins,"2,488 km" +Wichita Falls,Pittsburgh,,18 hours 8 mins,"1,990 km" +Waco,Pittsburgh,,19 hours 21 mins,"2,116 km" +San Angelo,Pittsburgh,,21 hours 37 mins,"2,368 km" +Houston,Pittsburgh,,20 hours 5 mins,"2,149 km" +San Antonio,Pittsburgh,,21 hours 56 mins,"2,404 km" +Del Rio,Pittsburgh,,1 day 0 hours,"2,621 km" +Mission,Pittsburgh,,, +Beaumont,Pittsburgh,,, +Longview,Pittsburgh,,16 hours 58 mins,"1,824 km" +Midland,Pittsburgh,,22 hours 13 mins,"2,437 km" +El Paso,Pittsburgh,,1 day 2 hours,"2,881 km" +Brownsville,Pittsburgh,,1 day 1 hour,"2,717 km" +Austin,Pittsburgh,,20 hours 45 mins,"2,278 km" +Dallas,Pittsburgh,,17 hours 59 mins,"1,964 km" +Killeen,Pittsburgh,,20 hours 10 mins,"2,212 km" +Laredo,Pittsburgh,,1 day 0 hours,"2,655 km" +Texarkana,Pittsburgh,,15 hours 30 mins,"1,683 km" +Cincinnati,State College,,6 hours 40 mins,686 km +Cincinnati,Johnstown,,5 hours 36 mins,574 km +Cincinnati,Harrisburg,,7 hours 16 mins,759 km +Cincinnati,Erie,,5 hours 8 mins,557 km +Cincinnati,Pittsburgh,,4 hours 24 mins,464 km +Cincinnati,Latrobe,,5 hours 2 mins,510 km +Cincinnati,Philadelphia,,8 hours 44 mins,921 km +Cincinnati,Lewisburg,,7 hours 27 mins,810 km +Cincinnati,Scranton,,8 hours 37 mins,936 km +State College,Cincinnati,,6 hours 42 mins,692 km +Johnstown,Cincinnati,,5 hours 38 mins,572 km +Harrisburg,Cincinnati,,7 hours 15 mins,758 km +Erie,Cincinnati,,5 hours 10 mins,556 km +Pittsburgh,Cincinnati,,4 hours 26 mins,465 km +Latrobe,Cincinnati,,5 hours 1 min,511 km +Philadelphia,Cincinnati,,8 hours 47 mins,922 km +Lewisburg,Cincinnati,,7 hours 26 mins,808 km +Scranton,Cincinnati,,8 hours 36 mins,933 km +Reno,Austin,,1 day 2 hours,"2,749 km" +Austin,Reno,,1 day 2 hours,"2,775 km" +Durango,Abilene,,10 hours 53 mins,"1,122 km" +Durango,Amarillo,,7 hours 36 mins,802 km +Durango,Harlingen,,17 hours 38 mins,"1,907 km" +Durango,Lubbock,,8 hours 31 mins,856 km +Durango,College Station,,15 hours 8 mins,"1,546 km" +Durango,Corpus Christi,,15 hours 59 mins,"1,732 km" +Durango,Wichita Falls,,10 hours 53 mins,"1,157 km" +Durango,Waco,,13 hours 49 mins,"1,423 km" +Durango,San Angelo,,10 hours 58 mins,"1,156 km" +Durango,Houston,,16 hours 15 mins,"1,759 km" +Durango,San Antonio,,14 hours 2 mins,"1,499 km" +Durango,Del Rio,,13 hours 7 mins,"1,313 km" +Durango,Mission,,, +Durango,Beaumont,,, +Durango,Longview,,14 hours 47 mins,"1,584 km" +Durango,Midland,,9 hours 36 mins,989 km +Durango,El Paso,,7 hours 17 mins,771 km +Durango,Brownsville,,17 hours 59 mins,"1,946 km" +Durango,Austin,,14 hours 19 mins,"1,460 km" +Durango,Dallas,,12 hours 56 mins,"1,384 km" +Durango,Killeen,,13 hours 40 mins,"1,395 km" +Durango,Laredo,,16 hours 2 mins,"1,603 km" +Durango,Texarkana,,15 hours 13 mins,"1,593 km" +Abilene,Durango,,10 hours 55 mins,"1,121 km" +Amarillo,Durango,,7 hours 38 mins,801 km +Harlingen,Durango,,17 hours 33 mins,"1,903 km" +Lubbock,Durango,,8 hours 32 mins,855 km +College Station,Durango,,15 hours 8 mins,"1,549 km" +Corpus Christi,Durango,,15 hours 57 mins,"1,727 km" +Wichita Falls,Durango,,10 hours 56 mins,"1,157 km" +Waco,Durango,,13 hours 52 mins,"1,481 km" +San Angelo,Durango,,10 hours 57 mins,"1,155 km" +Houston,Durango,,16 hours 18 mins,"1,759 km" +San Antonio,Durango,,14 hours 1 min,"1,495 km" +Del Rio,Durango,,13 hours 7 mins,"1,304 km" +Mission,Durango,,, +Beaumont,Durango,,, +Longview,Durango,,14 hours 48 mins,"1,589 km" +Midland,Durango,,9 hours 36 mins,989 km +El Paso,Durango,,7 hours 18 mins,771 km +Brownsville,Durango,,17 hours 57 mins,"1,943 km" +Austin,Durango,,14 hours 19 mins,"1,486 km" +Dallas,Durango,,12 hours 57 mins,"1,382 km" +Killeen,Durango,,13 hours 43 mins,"1,394 km" +Laredo,Durango,,16 hours 3 mins,"1,594 km" +Texarkana,Durango,,15 hours 24 mins,"1,606 km" +Manchester,Baltimore,,, +Baltimore,Manchester,,, +Appleton,Greensboro,,14 hours 8 mins,"1,498 km" +Appleton,Wilmington,,17 hours 2 mins,"1,825 km" +Appleton,New Bern,,17 hours 1 min,"1,803 km" +Appleton,Charlotte,,14 hours 27 mins,"1,534 km" +Appleton,Raleigh,,15 hours 18 mins,"1,618 km" +Appleton,Asheville,,12 hours 44 mins,"1,373 km" +Appleton,Fayetteville,,15 hours 38 mins,"1,643 km" +Greensboro,Appleton,,14 hours 12 mins,"1,498 km" +Wilmington,Appleton,,17 hours 5 mins,"1,825 km" +New Bern,Appleton,,17 hours 4 mins,"1,803 km" +Charlotte,Appleton,,14 hours 32 mins,"1,536 km" +Raleigh,Appleton,,15 hours 19 mins,"1,618 km" +Asheville,Appleton,,12 hours 46 mins,"1,372 km" +Fayetteville,Appleton,,15 hours 42 mins,"1,644 km" +Fort Wayne,Charlotte,,9 hours 15 mins,938 km +Charlotte,Fort Wayne,,9 hours 18 mins,939 km +Memphis,Baltimore,,13 hours 30 mins,"1,471 km" +Baltimore,Memphis,,13 hours 28 mins,"1,471 km" +Spokane,Bemidji,,18 hours 39 mins,"2,056 km" +Spokane,Minneapolis,,19 hours 44 mins,"2,218 km" +Spokane,Duluth,,20 hours 43 mins,"2,238 km" +Spokane,Brainerd,,18 hours 44 mins,"2,070 km" +Spokane,Gustavus,,19 hours 54 mins,"2,188 km" +Spokane,St. Cloud,,18 hours 56 mins,"2,117 km" +Spokane,Hibbing,,20 hours 11 mins,"2,183 km" +Spokane,International Falls,,20 hours 31 mins,"2,230 km" +Bemidji,Spokane,,18 hours 37 mins,"2,055 km" +Minneapolis,Spokane,,19 hours 44 mins,"2,218 km" +Duluth,Spokane,,20 hours 43 mins,"2,238 km" +Brainerd,Spokane,,18 hours 43 mins,"2,070 km" +Gustavus,Spokane,,19 hours 56 mins,"2,187 km" +St. Cloud,Spokane,,18 hours 54 mins,"2,124 km" +Hibbing,Spokane,,20 hours 9 mins,"2,182 km" +International Falls,Spokane,,20 hours 30 mins,"2,228 km" +Seattle,San Francisco,,12 hours 28 mins,"1,300 km" +San Francisco,Seattle,,12 hours 25 mins,"1,300 km" +Lawton,Abilene,,3 hours 6 mins,328 km +Lawton,Amarillo,,3 hours 30 mins,345 km +Lawton,Harlingen,,9 hours 53 mins,"1,094 km" +Lawton,Lubbock,,3 hours 59 mins,419 km +Lawton,College Station,,5 hours 6 mins,547 km +Lawton,Corpus Christi,,8 hours 15 mins,919 km +Lawton,Wichita Falls,,52 mins,84.3 km +Lawton,Waco,,3 hours 48 mins,412 km +Lawton,San Angelo,,4 hours 21 mins,463 km +Lawton,Houston,,6 hours 14 mins,687 km +Lawton,San Antonio,,6 hours 24 mins,697 km +Lawton,Del Rio,,6 hours 47 mins,716 km +Lawton,Mission,,, +Lawton,Beaumont,,, +Lawton,Longview,,4 hours 45 mins,511 km +Lawton,Midland,,4 hours 57 mins,530 km +Lawton,El Paso,,9 hours 15 mins,"1,020 km" +Lawton,Brownsville,,10 hours 15 mins,"1,134 km" +Lawton,Austin,,5 hours 13 mins,571 km +Lawton,Dallas,,2 hours 54 mins,311 km +Lawton,Killeen,,4 hours 36 mins,505 km +Lawton,Laredo,,8 hours 40 mins,948 km +Lawton,Texarkana,,5 hours 12 mins,521 km +Abilene,Lawton,,3 hours 7 mins,329 km +Amarillo,Lawton,,3 hours 30 mins,346 km +Harlingen,Lawton,,9 hours 48 mins,"1,094 km" +Lubbock,Lawton,,3 hours 57 mins,419 km +College Station,Lawton,,5 hours 4 mins,547 km +Corpus Christi,Lawton,,8 hours 12 mins,918 km +Wichita Falls,Lawton,,52 mins,84.9 km +Waco,Lawton,,3 hours 48 mins,409 km +San Angelo,Lawton,,4 hours 22 mins,463 km +Houston,Lawton,,6 hours 14 mins,687 km +San Antonio,Lawton,,6 hours 23 mins,697 km +Del Rio,Lawton,,6 hours 45 mins,716 km +Mission,Lawton,,, +Beaumont,Lawton,,, +Longview,Lawton,,4 hours 44 mins,518 km +Midland,Lawton,,4 hours 57 mins,532 km +El Paso,Lawton,,9 hours 15 mins,"1,022 km" +Brownsville,Lawton,,10 hours 12 mins,"1,134 km" +Austin,Lawton,,5 hours 12 mins,571 km +Dallas,Lawton,,2 hours 54 mins,311 km +Killeen,Lawton,,4 hours 37 mins,506 km +Laredo,Lawton,,8 hours 41 mins,948 km +Texarkana,Lawton,,5 hours 15 mins,525 km +Nashville,Detroit,,7 hours 56 mins,859 km +Detroit,Nashville,,7 hours 59 mins,861 km +Austin,Lake Charles,,4 hours 37 mins,494 km +Austin,Baton Rouge,,6 hours 26 mins,696 km +Austin,New Orleans,,7 hours 37 mins,823 km +Austin,Shreveport,,5 hours 13 mins,541 km +Lake Charles,Austin,,4 hours 39 mins,494 km +Baton Rouge,Austin,,6 hours 28 mins,694 km +New Orleans,Austin,,7 hours 39 mins,823 km +Shreveport,Austin,,5 hours 15 mins,541 km +Nashville,State College,,10 hours 42 mins,"1,124 km" +Nashville,Johnstown,,9 hours 37 mins,"1,012 km" +Nashville,Harrisburg,,10 hours 37 mins,"1,158 km" +Nashville,Erie,,9 hours 9 mins,995 km +Nashville,Pittsburgh,,8 hours 25 mins,902 km +Nashville,Latrobe,,9 hours 3 mins,948 km +Nashville,Philadelphia,,11 hours 59 mins,"1,295 km" +Nashville,Lewisburg,,11 hours 28 mins,"1,248 km" +Nashville,Scranton,,12 hours 24 mins,"1,346 km" +State College,Nashville,,10 hours 45 mins,"1,131 km" +Johnstown,Nashville,,9 hours 41 mins,"1,012 km" +Harrisburg,Nashville,,10 hours 38 mins,"1,158 km" +Erie,Nashville,,9 hours 13 mins,995 km +Pittsburgh,Nashville,,8 hours 29 mins,905 km +Latrobe,Nashville,,9 hours 4 mins,950 km +Philadelphia,Nashville,,11 hours 59 mins,"1,294 km" +Lewisburg,Nashville,,11 hours 30 mins,"1,248 km" +Scranton,Nashville,,12 hours 23 mins,"1,345 km" +Charlotte,Charleston,,3 hours 12 mins,336 km +Charlotte,Hilton Head,,3 hours 49 mins,398 km +Charlotte,Greer,,1 hour 36 mins,147 km +Charlotte,Greenville,,1 hour 41 mins,163 km +Charlotte,Myrtle Beach,,3 hours 28 mins,282 km +Charleston,Charlotte,,3 hours 13 mins,336 km +Hilton Head,Charlotte,,3 hours 49 mins,397 km +Greer,Charlotte,,1 hour 36 mins,150 km +Greenville,Charlotte,,1 hour 41 mins,165 km +Myrtle Beach,Charlotte,,3 hours 26 mins,282 km +Houston,Gunnison,,16 hours 5 mins,"1,677 km" +Gunnison,Houston,,16 hours 2 mins,"1,679 km" +Midland,Las Vegas,,14 hours 18 mins,"1,573 km" +Las Vegas,Midland,,14 hours 20 mins,"1,573 km" +El Paso,Alamosa,,7 hours 11 mins,753 km +El Paso,Grand Junction,,10 hours 46 mins,"1,040 km" +El Paso,Durango,,7 hours 18 mins,771 km +El Paso,Colorado Springs,,8 hours 31 mins,911 km +El Paso,Gunnison,,9 hours 16 mins,945 km +El Paso,Denver,,9 hours 34 mins,"1,025 km" +Alamosa,El Paso,,7 hours 7 mins,751 km +Grand Junction,El Paso,,10 hours 48 mins,"1,040 km" +Durango,El Paso,,7 hours 17 mins,771 km +Colorado Springs,El Paso,,8 hours 36 mins,914 km +Gunnison,El Paso,,9 hours 13 mins,943 km +Denver,El Paso,,9 hours 39 mins,"1,026 km" +Ontario,San Diego,,, +Ontario,Redding,,, +Ontario,Sacramento,,, +Ontario,Fresno,,, +Ontario,San Luis Obispo,,, +Ontario,Oakland,,, +Ontario,Santa Barbara,,, +Ontario,Stockton,,, +Ontario,Santa Rosa,,, +Ontario,Bakersfield,,, +Ontario,Santa Ana,,, +Ontario,Santa Maria,,, +Ontario,San Jose,,, +Ontario,Burbank,,, +Ontario,Arcata,,, +Ontario,Butte,,, +Ontario,Palm Springs,,, +Ontario,Los Angeles,,, +Ontario,Long Beach,,, +Ontario,San Francisco,,, +Ontario,Monterey,,, +San Diego,Ontario,,, +Redding,Ontario,,, +Sacramento,Ontario,,, +Fresno,Ontario,,, +San Luis Obispo,Ontario,,, +Oakland,Ontario,,, +Santa Barbara,Ontario,,, +Stockton,Ontario,,, +Santa Rosa,Ontario,,, +Bakersfield,Ontario,,, +Santa Ana,Ontario,,, +Santa Maria,Ontario,,, +San Jose,Ontario,,, +Burbank,Ontario,,, +Arcata,Ontario,,, +Butte,Ontario,,, +Palm Springs,Ontario,,, +Los Angeles,Ontario,,, +Long Beach,Ontario,,, +San Francisco,Ontario,,, +Monterey,Ontario,,, +Cleveland,San Diego,,1 day 11 hours,"3,809 km" +Cleveland,Redding,,1 day 12 hours,"3,915 km" +Cleveland,Sacramento,,1 day 10 hours,"3,813 km" +Cleveland,Fresno,,1 day 12 hours,"3,972 km" +Cleveland,San Luis Obispo,,1 day 12 hours,"4,015 km" +Cleveland,Oakland,,1 day 12 hours,"3,943 km" +Cleveland,Santa Barbara,,1 day 11 hours,"3,914 km" +Cleveland,Stockton,,1 day 11 hours,"3,889 km" +Cleveland,Santa Rosa,,1 day 12 hours,"3,968 km" +Cleveland,Bakersfield,,1 day 10 hours,"3,796 km" +Cleveland,Santa Ana,,1 day 10 hours,"3,771 km" +Cleveland,Santa Maria,,1 day 12 hours,"3,970 km" +Cleveland,San Jose,,1 day 12 hours,"4,005 km" +Cleveland,Burbank,,1 day 10 hours,"3,781 km" +Cleveland,Arcata,,1 day 14 hours,"4,140 km" +Cleveland,Butte,,1 day 11 hours,"3,852 km" +Cleveland,Palm Springs,,1 day 9 hours,"3,670 km" +Cleveland,Los Angeles,,1 day 10 hours,"3,772 km" +Cleveland,Long Beach,,1 day 10 hours,"3,794 km" +Cleveland,San Francisco,,1 day 12 hours,"3,953 km" +Cleveland,Monterey,,1 day 13 hours,"4,113 km" +San Diego,Cleveland,,1 day 11 hours,"3,808 km" +Redding,Cleveland,,1 day 12 hours,"3,925 km" +Sacramento,Cleveland,,1 day 10 hours,"3,822 km" +Fresno,Cleveland,,1 day 12 hours,"3,975 km" +San Luis Obispo,Cleveland,,1 day 12 hours,"4,020 km" +Oakland,Cleveland,,1 day 12 hours,"3,952 km" +Santa Barbara,Cleveland,,1 day 11 hours,"3,917 km" +Stockton,Cleveland,,1 day 11 hours,"3,899 km" +Santa Rosa,Cleveland,,1 day 12 hours,"3,977 km" +Bakersfield,Cleveland,,1 day 10 hours,"3,800 km" +Santa Ana,Cleveland,,1 day 10 hours,"3,770 km" +Santa Maria,Cleveland,,1 day 12 hours,"3,975 km" +San Jose,Cleveland,,1 day 12 hours,"4,013 km" +Burbank,Cleveland,,1 day 10 hours,"3,778 km" +Arcata,Cleveland,,1 day 14 hours,"4,148 km" +Butte,Cleveland,,1 day 11 hours,"3,861 km" +Palm Springs,Cleveland,,1 day 9 hours,"3,670 km" +Los Angeles,Cleveland,,1 day 10 hours,"3,774 km" +Long Beach,Cleveland,,1 day 10 hours,"3,801 km" +San Francisco,Cleveland,,1 day 12 hours,"3,962 km" +Monterey,Cleveland,,1 day 13 hours,"4,120 km" +Minneapolis,Abilene,,15 hours 28 mins,"1,732 km" +Minneapolis,Amarillo,,14 hours 59 mins,"1,684 km" +Minneapolis,Harlingen,,21 hours 28 mins,"2,409 km" +Minneapolis,Lubbock,,16 hours 22 mins,"1,823 km" +Minneapolis,College Station,,16 hours 41 mins,"1,863 km" +Minneapolis,Corpus Christi,,19 hours 50 mins,"2,234 km" +Minneapolis,Wichita Falls,,13 hours 14 mins,"1,488 km" +Minneapolis,Waco,,15 hours 23 mins,"1,727 km" +Minneapolis,San Angelo,,16 hours 44 mins,"1,867 km" +Minneapolis,Houston,,17 hours 26 mins,"1,893 km" +Minneapolis,San Antonio,,17 hours 59 mins,"2,013 km" +Minneapolis,Del Rio,,19 hours 9 mins,"2,120 km" +Minneapolis,Mission,,, +Minneapolis,Beaumont,,, +Minneapolis,Longview,,14 hours 44 mins,"1,556 km" +Minneapolis,Midland,,17 hours 20 mins,"1,934 km" +Minneapolis,El Paso,,21 hours 1 min,"2,214 km" +Minneapolis,Brownsville,,21 hours 50 mins,"2,449 km" +Minneapolis,Austin,,16 hours 47 mins,"1,886 km" +Minneapolis,Dallas,,14 hours 6 mins,"1,512 km" +Minneapolis,Killeen,,16 hours 11 mins,"1,820 km" +Minneapolis,Laredo,,20 hours 15 mins,"2,263 km" +Minneapolis,Texarkana,,13 hours 59 mins,"1,469 km" +Abilene,Minneapolis,,15 hours 28 mins,"1,729 km" +Amarillo,Minneapolis,,14 hours 57 mins,"1,679 km" +Harlingen,Minneapolis,,21 hours 22 mins,"2,404 km" +Lubbock,Minneapolis,,16 hours 17 mins,"1,818 km" +College Station,Minneapolis,,16 hours 38 mins,"1,858 km" +Corpus Christi,Minneapolis,,19 hours 46 mins,"2,229 km" +Wichita Falls,Minneapolis,,13 hours 12 mins,"1,484 km" +Waco,Minneapolis,,15 hours 21 mins,"1,720 km" +San Angelo,Minneapolis,,16 hours 42 mins,"1,862 km" +Houston,Minneapolis,,17 hours 26 mins,"1,895 km" +San Antonio,Minneapolis,,17 hours 56 mins,"2,009 km" +Del Rio,Minneapolis,,19 hours 5 mins,"2,115 km" +Mission,Minneapolis,,, +Beaumont,Minneapolis,,, +Longview,Minneapolis,,14 hours 42 mins,"1,558 km" +Midland,Minneapolis,,17 hours 17 mins,"1,932 km" +El Paso,Minneapolis,,20 hours 57 mins,"2,211 km" +Brownsville,Minneapolis,,21 hours 46 mins,"2,444 km" +Austin,Minneapolis,,16 hours 46 mins,"1,882 km" +Dallas,Minneapolis,,14 hours 7 mins,"1,515 km" +Killeen,Minneapolis,,16 hours 11 mins,"1,816 km" +Laredo,Minneapolis,,20 hours 14 mins,"2,259 km" +Texarkana,Minneapolis,,13 hours 53 mins,"1,465 km" +Orlando,San Diego,,1 day 11 hours,"3,912 km" +Orlando,Redding,,1 day 19 hours,"4,790 km" +Orlando,Sacramento,,1 day 17 hours,"4,530 km" +Orlando,Fresno,,1 day 14 hours,"4,260 km" +Orlando,San Luis Obispo,,1 day 15 hours,"4,343 km" +Orlando,Oakland,,1 day 17 hours,"4,521 km" +Orlando,Santa Barbara,,1 day 13 hours,"4,192 km" +Orlando,Stockton,,1 day 16 hours,"4,455 km" +Orlando,Santa Rosa,,1 day 18 hours,"4,609 km" +Orlando,Bakersfield,,1 day 13 hours,"4,084 km" +Orlando,Santa Ana,,1 day 12 hours,"4,040 km" +Orlando,Santa Maria,,1 day 14 hours,"4,294 km" +Orlando,San Jose,,1 day 17 hours,"4,471 km" +Orlando,Burbank,,1 day 12 hours,"4,059 km" +Orlando,Arcata,,1 day 22 hours,"4,974 km" +Orlando,Butte,,1 day 18 hours,"4,669 km" +Orlando,Palm Springs,,1 day 10 hours,"3,870 km" +Orlando,Los Angeles,,1 day 12 hours,"4,037 km" +Orlando,Long Beach,,1 day 12 hours,"4,055 km" +Orlando,San Francisco,,1 day 17 hours,"4,539 km" +Orlando,Monterey,,1 day 16 hours,"4,438 km" +San Diego,Orlando,,1 day 11 hours,"3,913 km" +Redding,Orlando,,1 day 19 hours,"4,780 km" +Sacramento,Orlando,,1 day 17 hours,"4,522 km" +Fresno,Orlando,,1 day 15 hours,"4,250 km" +San Luis Obispo,Orlando,,1 day 15 hours,"4,344 km" +Oakland,Orlando,,1 day 17 hours,"4,513 km" +Santa Barbara,Orlando,,1 day 13 hours,"4,193 km" +Stockton,Orlando,,1 day 16 hours,"4,450 km" +Santa Rosa,Orlando,,1 day 18 hours,"4,606 km" +Bakersfield,Orlando,,1 day 13 hours,"4,075 km" +Santa Ana,Orlando,,1 day 12 hours,"4,023 km" +Santa Maria,Orlando,,1 day 15 hours,"4,295 km" +San Jose,Orlando,,1 day 17 hours,"4,463 km" +Burbank,Orlando,,1 day 12 hours,"4,054 km" +Arcata,Orlando,,1 day 22 hours,"4,967 km" +Butte,Orlando,,1 day 19 hours,"4,655 km" +Palm Springs,Orlando,,1 day 10 hours,"3,871 km" +Los Angeles,Orlando,,1 day 12 hours,"4,037 km" +Long Beach,Orlando,,1 day 12 hours,"4,056 km" +San Francisco,Orlando,,1 day 17 hours,"4,531 km" +Monterey,Orlando,,1 day 17 hours,"4,430 km" +Atlanta,Alamosa,,21 hours 3 mins,"2,298 km" +Atlanta,Grand Junction,,23 hours 56 mins,"2,646 km" +Atlanta,Durango,,23 hours 28 mins,"2,589 km" +Atlanta,Colorado Springs,,20 hours 13 mins,"2,231 km" +Atlanta,Gunnison,,23 hours 1 min,"2,459 km" +Atlanta,Denver,,20 hours 16 mins,"2,257 km" +Alamosa,Atlanta,,21 hours 3 mins,"2,284 km" +Grand Junction,Atlanta,,23 hours 50 mins,"2,644 km" +Durango,Atlanta,,23 hours 26 mins,"2,575 km" +Colorado Springs,Atlanta,,20 hours 10 mins,"2,230 km" +Gunnison,Atlanta,,22 hours 59 mins,"2,445 km" +Denver,Atlanta,,20 hours 14 mins,"2,259 km" +Columbus,Alamosa,,20 hours 2 mins,"2,168 km" +Columbus,Grand Junction,,21 hours 55 mins,"2,415 km" +Columbus,Durango,,22 hours 54 mins,"2,408 km" +Columbus,Colorado Springs,,18 hours 12 mins,"2,000 km" +Columbus,Gunnison,,21 hours 23 mins,"2,276 km" +Columbus,Denver,,18 hours 16 mins,"2,026 km" +Alamosa,Columbus,,19 hours 56 mins,"2,168 km" +Grand Junction,Columbus,,21 hours 47 mins,"2,414 km" +Durango,Columbus,,22 hours 47 mins,"2,408 km" +Colorado Springs,Columbus,,18 hours 6 mins,"2,000 km" +Gunnison,Columbus,,21 hours 14 mins,"2,266 km" +Denver,Columbus,,18 hours 11 mins,"2,029 km" +Dayton,Abilene,,16 hours 46 mins,"1,843 km" +Dayton,Amarillo,,16 hours 17 mins,"1,796 km" +Dayton,Harlingen,,21 hours 30 mins,"2,301 km" +Dayton,Lubbock,,17 hours 39 mins,"1,934 km" +Dayton,College Station,,16 hours 38 mins,"1,746 km" +Dayton,Corpus Christi,,19 hours 45 mins,"2,107 km" +Dayton,Wichita Falls,,14 hours 32 mins,"1,599 km" +Dayton,Waco,,15 hours 56 mins,"1,744 km" +Dayton,San Angelo,,18 hours 2 mins,"1,978 km" +Dayton,Houston,,16 hours 38 mins,"1,773 km" +Dayton,San Antonio,,18 hours 32 mins,"2,029 km" +Dayton,Del Rio,,20 hours 27 mins,"2,231 km" +Dayton,Mission,,, +Dayton,Beaumont,,, +Dayton,Longview,,13 hours 30 mins,"1,449 km" +Dayton,Midland,,18 hours 37 mins,"2,045 km" +Dayton,El Paso,,22 hours 52 mins,"2,493 km" +Dayton,Brownsville,,21 hours 52 mins,"2,341 km" +Dayton,Austin,,17 hours 20 mins,"1,903 km" +Dayton,Dallas,,14 hours 32 mins,"1,588 km" +Dayton,Killeen,,16 hours 44 mins,"1,837 km" +Dayton,Laredo,,20 hours 48 mins,"2,280 km" +Dayton,Texarkana,,12 hours 3 mins,"1,309 km" +Abilene,Dayton,,16 hours 46 mins,"1,845 km" +Amarillo,Dayton,,16 hours 15 mins,"1,795 km" +Harlingen,Dayton,,21 hours 23 mins,"2,299 km" +Lubbock,Dayton,,17 hours 35 mins,"1,935 km" +College Station,Dayton,,16 hours 32 mins,"1,741 km" +Corpus Christi,Dayton,,19 hours 45 mins,"2,110 km" +Wichita Falls,Dayton,,14 hours 30 mins,"1,600 km" +Waco,Dayton,,15 hours 51 mins,"1,738 km" +San Angelo,Dayton,,18 hours 0 mins,"1,978 km" +Houston,Dayton,,16 hours 35 mins,"1,772 km" +San Antonio,Dayton,,18 hours 26 mins,"2,026 km" +Del Rio,Dayton,,20 hours 23 mins,"2,232 km" +Mission,Dayton,,, +Beaumont,Dayton,,, +Longview,Dayton,,13 hours 27 mins,"1,446 km" +Midland,Dayton,,18 hours 35 mins,"2,047 km" +El Paso,Dayton,,22 hours 48 mins,"2,492 km" +Brownsville,Dayton,,21 hours 47 mins,"2,339 km" +Austin,Dayton,,17 hours 15 mins,"1,900 km" +Dallas,Dayton,,14 hours 29 mins,"1,586 km" +Killeen,Dayton,,16 hours 40 mins,"1,834 km" +Laredo,Dayton,,20 hours 44 mins,"2,277 km" +Texarkana,Dayton,,12 hours 0 mins,"1,305 km" +Chicago,Ogdensburg,,11 hours 9 mins,"1,184 km" +Ogdensburg,Chicago,,11 hours 12 mins,"1,184 km" +Reno,Dallas,,1 day 0 hours,"2,673 km" +Dallas,Reno,,1 day 0 hours,"2,672 km" +Omaha,Las Vegas,,18 hours 19 mins,"2,067 km" +Las Vegas,Omaha,,18 hours 14 mins,"2,065 km" +Nashville,Greensboro,,7 hours 0 mins,748 km +Nashville,Wilmington,,9 hours 36 mins,988 km +Nashville,New Bern,,9 hours 54 mins,"1,053 km" +Nashville,Charlotte,,6 hours 25 mins,659 km +Nashville,Raleigh,,8 hours 10 mins,868 km +Nashville,Asheville,,4 hours 31 mins,474 km +Nashville,Fayetteville,,8 hours 31 mins,893 km +Greensboro,Nashville,,7 hours 0 mins,747 km +Wilmington,Nashville,,9 hours 37 mins,989 km +New Bern,Nashville,,9 hours 53 mins,"1,052 km" +Charlotte,Nashville,,6 hours 25 mins,657 km +Raleigh,Nashville,,8 hours 8 mins,867 km +Asheville,Nashville,,4 hours 31 mins,474 km +Fayetteville,Nashville,,8 hours 31 mins,893 km +Salt Lake City,Las Vegas,,5 hours 55 mins,677 km +Las Vegas,Salt Lake City,,5 hours 56 mins,677 km +Houston,Alamosa,,14 hours 7 mins,"1,516 km" +Houston,Grand Junction,,18 hours 24 mins,"1,877 km" +Houston,Durango,,16 hours 18 mins,"1,759 km" +Houston,Colorado Springs,,14 hours 13 mins,"1,546 km" +Houston,Gunnison,,16 hours 5 mins,"1,677 km" +Houston,Denver,,15 hours 16 mins,"1,659 km" +Alamosa,Houston,,14 hours 5 mins,"1,518 km" +Grand Junction,Houston,,18 hours 27 mins,"1,879 km" +Durango,Houston,,16 hours 15 mins,"1,759 km" +Colorado Springs,Houston,,14 hours 13 mins,"1,551 km" +Gunnison,Houston,,16 hours 2 mins,"1,679 km" +Denver,Houston,,15 hours 16 mins,"1,662 km" +Des Moines,Detroit,,8 hours 49 mins,964 km +Detroit,Des Moines,,8 hours 59 mins,965 km +Los Angeles,Abilene,,18 hours 11 mins,"2,017 km" +Los Angeles,Amarillo,,15 hours 31 mins,"1,726 km" +Los Angeles,Harlingen,,23 hours 4 mins,"2,583 km" +Los Angeles,Lubbock,,16 hours 26 mins,"1,780 km" +Los Angeles,College Station,,21 hours 49 mins,"2,376 km" +Los Angeles,Corpus Christi,,21 hours 26 mins,"2,408 km" +Los Angeles,Wichita Falls,,18 hours 48 mins,"2,080 km" +Los Angeles,Waco,,20 hours 50 mins,"2,278 km" +Los Angeles,San Angelo,,17 hours 34 mins,"1,939 km" +Los Angeles,Houston,,22 hours 17 mins,"2,490 km" +Los Angeles,San Antonio,,19 hours 28 mins,"2,175 km" +Los Angeles,Del Rio,,18 hours 2 mins,"1,971 km" +Los Angeles,Mission,,, +Los Angeles,Beaumont,,, +Los Angeles,Longview,,22 hours 32 mins,"2,515 km" +Los Angeles,Midland,,16 hours 6 mins,"1,780 km" +Los Angeles,El Paso,,11 hours 43 mins,"1,289 km" +Los Angeles,Brownsville,,23 hours 26 mins,"2,623 km" +Los Angeles,Austin,,20 hours 18 mins,"2,215 km" +Los Angeles,Dallas,,20 hours 44 mins,"2,310 km" +Los Angeles,Killeen,,20 hours 7 mins,"2,209 km" +Los Angeles,Laredo,,20 hours 58 mins,"2,261 km" +Los Angeles,Texarkana,,23 hours 8 mins,"2,517 km" +Abilene,Los Angeles,,18 hours 13 mins,"2,018 km" +Amarillo,Los Angeles,,15 hours 34 mins,"1,726 km" +Harlingen,Los Angeles,,23 hours 2 mins,"2,585 km" +Lubbock,Los Angeles,,16 hours 27 mins,"1,780 km" +College Station,Los Angeles,,21 hours 51 mins,"2,383 km" +Corpus Christi,Los Angeles,,21 hours 26 mins,"2,409 km" +Wichita Falls,Los Angeles,,18 hours 52 mins,"2,082 km" +Waco,Los Angeles,,20 hours 53 mins,"2,279 km" +San Angelo,Los Angeles,,17 hours 36 mins,"1,939 km" +Houston,Los Angeles,,22 hours 18 mins,"2,491 km" +San Antonio,Los Angeles,,19 hours 29 mins,"2,176 km" +Del Rio,Los Angeles,,18 hours 5 mins,"1,973 km" +Mission,Los Angeles,,, +Beaumont,Los Angeles,,, +Longview,Los Angeles,,22 hours 35 mins,"2,516 km" +Midland,Los Angeles,,16 hours 7 mins,"1,780 km" +El Paso,Los Angeles,,11 hours 46 mins,"1,290 km" +Brownsville,Los Angeles,,23 hours 26 mins,"2,625 km" +Austin,Los Angeles,,20 hours 19 mins,"2,217 km" +Dallas,Los Angeles,,20 hours 48 mins,"2,311 km" +Killeen,Los Angeles,,20 hours 8 mins,"2,209 km" +Laredo,Los Angeles,,21 hours 1 min,"2,262 km" +Texarkana,Los Angeles,,23 hours 20 mins,"2,531 km" +Denver,Miami,,1 day 6 hours,"3,325 km" +Miami,Denver,,1 day 6 hours,"3,325 km" +Milwaukee,Buffalo,,9 hours 33 mins,"1,011 km" +Milwaukee,Manhattan,,13 hours 32 mins,"1,431 km" +Milwaukee,Niagara Falls,,9 hours 54 mins,"1,041 km" +Milwaukee,Islip,,14 hours 19 mins,"1,501 km" +Milwaukee,New York,,13 hours 29 mins,"1,417 km" +Milwaukee,Watertown,,12 hours 33 mins,"1,339 km" +Milwaukee,Newburgh,,13 hours 25 mins,"1,430 km" +Milwaukee,Syracuse,,11 hours 36 mins,"1,237 km" +Milwaukee,Plattsburgh,,14 hours 38 mins,"1,531 km" +Milwaukee,Ogdensburg,,12 hours 34 mins,"1,343 km" +Milwaukee,Ithaca,,11 hours 44 mins,"1,230 km" +Milwaukee,Elmira,,11 hours 13 mins,"1,192 km" +Milwaukee,White Plains,,13 hours 36 mins,"1,455 km" +Milwaukee,Albany,,, +Milwaukee,Binghamton,,12 hours 2 mins,"1,280 km" +Milwaukee,Rochester,,10 hours 31 mins,"1,115 km" +Buffalo,Milwaukee,,9 hours 30 mins,"1,010 km" +Manhattan,Milwaukee,,13 hours 31 mins,"1,430 km" +Niagara Falls,Milwaukee,,9 hours 51 mins,"1,040 km" +Islip,Milwaukee,,14 hours 21 mins,"1,499 km" +New York,Milwaukee,,13 hours 28 mins,"1,417 km" +Watertown,Milwaukee,,12 hours 30 mins,"1,338 km" +Newburgh,Milwaukee,,13 hours 22 mins,"1,429 km" +Syracuse,Milwaukee,,11 hours 33 mins,"1,236 km" +Plattsburgh,Milwaukee,,14 hours 40 mins,"1,516 km" +Ogdensburg,Milwaukee,,12 hours 35 mins,"1,329 km" +Ithaca,Milwaukee,,11 hours 39 mins,"1,229 km" +Elmira,Milwaukee,,11 hours 9 mins,"1,192 km" +White Plains,Milwaukee,,13 hours 38 mins,"1,454 km" +Albany,Milwaukee,,, +Binghamton,Milwaukee,,11 hours 59 mins,"1,279 km" +Rochester,Milwaukee,,10 hours 28 mins,"1,115 km" +Marquette,Pellston,,6 hours 12 mins,622 km +Marquette,Traverse City,,6 hours 17 mins,673 km +Marquette,Alpena,,7 hours 35 mins,747 km +Marquette,Iron Mountain,,, +Marquette,Kalamazoo,,3 hours 45 mins,395 km +Marquette,Saginaw,,5 hours 56 mins,630 km +Marquette,Grand Rapids,,4 hours 11 mins,444 km +Marquette,Lansing,,4 hours 46 mins,510 km +Marquette,Muskegon,,4 hours 27 mins,458 km +Marquette,Hancock,,, +Marquette,Detroit,,5 hours 39 mins,613 km +Marquette,Escanaba,,3 hours 34 mins,362 km +Pellston,Marquette,,6 hours 14 mins,624 km +Traverse City,Marquette,,6 hours 17 mins,662 km +Alpena,Marquette,,7 hours 36 mins,748 km +Iron Mountain,Marquette,,, +Kalamazoo,Marquette,,3 hours 44 mins,383 km +Saginaw,Marquette,,5 hours 51 mins,615 km +Grand Rapids,Marquette,,4 hours 7 mins,434 km +Lansing,Marquette,,4 hours 44 mins,498 km +Muskegon,Marquette,,4 hours 24 mins,446 km +Hancock,Marquette,,, +Detroit,Marquette,,5 hours 40 mins,602 km +Escanaba,Marquette,,3 hours 34 mins,363 km +Montgomery,Abilene,,12 hours 21 mins,"1,338 km" +Montgomery,Amarillo,,15 hours 8 mins,"1,702 km" +Montgomery,Harlingen,,14 hours 0 mins,"1,547 km" +Montgomery,Lubbock,,14 hours 44 mins,"1,602 km" +Montgomery,College Station,,10 hours 32 mins,"1,142 km" +Montgomery,Corpus Christi,,12 hours 14 mins,"1,352 km" +Montgomery,Wichita Falls,,11 hours 47 mins,"1,276 km" +Montgomery,Waco,,10 hours 49 mins,"1,124 km" +Montgomery,San Angelo,,13 hours 33 mins,"1,457 km" +Montgomery,Houston,,9 hours 8 mins,"1,019 km" +Montgomery,San Antonio,,12 hours 0 mins,"1,333 km" +Montgomery,Del Rio,,14 hours 23 mins,"1,580 km" +Montgomery,Mission,,, +Montgomery,Beaumont,,, +Montgomery,Longview,,8 hours 3 mins,849 km +Montgomery,Midland,,14 hours 29 mins,"1,578 km" +Montgomery,El Paso,,18 hours 47 mins,"2,068 km" +Montgomery,Brownsville,,14 hours 22 mins,"1,586 km" +Montgomery,Austin,,11 hours 36 mins,"1,282 km" +Montgomery,Dallas,,9 hours 44 mins,"1,045 km" +Montgomery,Killeen,,11 hours 36 mins,"1,215 km" +Montgomery,Laredo,,14 hours 7 mins,"1,525 km" +Montgomery,Texarkana,,8 hours 5 mins,860 km +Abilene,Montgomery,,12 hours 19 mins,"1,334 km" +Amarillo,Montgomery,,15 hours 8 mins,"1,689 km" +Harlingen,Montgomery,,13 hours 55 mins,"1,547 km" +Lubbock,Montgomery,,14 hours 38 mins,"1,600 km" +College Station,Montgomery,,10 hours 30 mins,"1,168 km" +Corpus Christi,Montgomery,,12 hours 17 mins,"1,358 km" +Wichita Falls,Montgomery,,11 hours 48 mins,"1,264 km" +Waco,Montgomery,,10 hours 45 mins,"1,120 km" +San Angelo,Montgomery,,13 hours 31 mins,"1,458 km" +Houston,Montgomery,,9 hours 7 mins,"1,019 km" +San Antonio,Montgomery,,12 hours 0 mins,"1,333 km" +Del Rio,Montgomery,,14 hours 25 mins,"1,580 km" +Mission,Montgomery,,, +Beaumont,Montgomery,,, +Longview,Montgomery,,8 hours 1 min,844 km +Midland,Montgomery,,14 hours 25 mins,"1,574 km" +El Paso,Montgomery,,18 hours 43 mins,"2,064 km" +Brownsville,Montgomery,,14 hours 19 mins,"1,587 km" +Austin,Montgomery,,11 hours 34 mins,"1,282 km" +Dallas,Montgomery,,9 hours 45 mins,"1,043 km" +Killeen,Montgomery,,11 hours 36 mins,"1,216 km" +Laredo,Montgomery,,14 hours 3 mins,"1,525 km" +Texarkana,Montgomery,,8 hours 6 mins,862 km +Newark,Bemidji,,21 hours 12 mins,"2,255 km" +Newark,Minneapolis,,17 hours 45 mins,"1,911 km" +Newark,Duluth,,18 hours 43 mins,"2,007 km" +Newark,Brainerd,,19 hours 41 mins,"2,112 km" +Newark,Gustavus,,18 hours 12 mins,"1,958 km" +Newark,St. Cloud,,18 hours 41 mins,"2,014 km" +Newark,Hibbing,,20 hours 0 mins,"2,126 km" +Newark,International Falls,,21 hours 24 mins,"2,268 km" +Bemidji,Newark,,21 hours 5 mins,"2,266 km" +Minneapolis,Newark,,17 hours 37 mins,"1,919 km" +Duluth,Newark,,18 hours 37 mins,"2,017 km" +Brainerd,Newark,,19 hours 35 mins,"2,123 km" +Gustavus,Newark,,18 hours 5 mins,"1,966 km" +St. Cloud,Newark,,18 hours 36 mins,"2,024 km" +Hibbing,Newark,,19 hours 54 mins,"2,137 km" +International Falls,Newark,,21 hours 17 mins,"2,278 km" +Key West,State College,,21 hours 20 mins,"2,278 km" +Key West,Johnstown,,20 hours 50 mins,"2,196 km" +Key West,Harrisburg,,19 hours 52 mins,"2,124 km" +Key West,Erie,,22 hours 1 min,"2,338 km" +Key West,Pittsburgh,,20 hours 17 mins,"2,143 km" +Key West,Latrobe,,20 hours 29 mins,"2,129 km" +Key West,Philadelphia,,20 hours 20 mins,"2,171 km" +Key West,Lewisburg,,21 hours 0 mins,"2,223 km" +Key West,Scranton,,21 hours 43 mins,"2,321 km" +State College,Key West,,21 hours 29 mins,"2,288 km" +Johnstown,Key West,,20 hours 49 mins,"2,198 km" +Harrisburg,Key West,,20 hours 3 mins,"2,127 km" +Erie,Key West,,22 hours 3 mins,"2,340 km" +Pittsburgh,Key West,,20 hours 16 mins,"2,145 km" +Latrobe,Key West,,20 hours 27 mins,"2,131 km" +Philadelphia,Key West,,20 hours 25 mins,"2,179 km" +Lewisburg,Key West,,21 hours 10 mins,"2,231 km" +Scranton,Key West,,21 hours 54 mins,"2,325 km" +Cincinnati,Norfolk,,9 hours 33 mins,974 km +Norfolk,Cincinnati,,9 hours 32 mins,976 km +Indianapolis,Abilene,,15 hours 2 mins,"1,656 km" +Indianapolis,Amarillo,,14 hours 33 mins,"1,608 km" +Indianapolis,Harlingen,,20 hours 12 mins,"2,145 km" +Indianapolis,Lubbock,,15 hours 56 mins,"1,746 km" +Indianapolis,College Station,,15 hours 20 mins,"1,590 km" +Indianapolis,Corpus Christi,,18 hours 27 mins,"1,950 km" +Indianapolis,Wichita Falls,,12 hours 48 mins,"1,412 km" +Indianapolis,Waco,,14 hours 38 mins,"1,587 km" +Indianapolis,San Angelo,,16 hours 18 mins,"1,790 km" +Indianapolis,Houston,,15 hours 20 mins,"1,617 km" +Indianapolis,San Antonio,,17 hours 14 mins,"1,873 km" +Indianapolis,Del Rio,,18 hours 43 mins,"2,043 km" +Indianapolis,Mission,,, +Indianapolis,Beaumont,,, +Indianapolis,Longview,,12 hours 12 mins,"1,292 km" +Indianapolis,Midland,,16 hours 54 mins,"1,857 km" +Indianapolis,El Paso,,21 hours 8 mins,"2,305 km" +Indianapolis,Brownsville,,20 hours 34 mins,"2,184 km" +Indianapolis,Austin,,16 hours 2 mins,"1,746 km" +Indianapolis,Dallas,,13 hours 14 mins,"1,432 km" +Indianapolis,Killeen,,15 hours 26 mins,"1,681 km" +Indianapolis,Laredo,,19 hours 30 mins,"2,123 km" +Indianapolis,Texarkana,,10 hours 45 mins,"1,152 km" +Abilene,Indianapolis,,15 hours 2 mins,"1,656 km" +Amarillo,Indianapolis,,14 hours 32 mins,"1,607 km" +Harlingen,Indianapolis,,20 hours 5 mins,"2,160 km" +Lubbock,Indianapolis,,15 hours 52 mins,"1,746 km" +College Station,Indianapolis,,15 hours 14 mins,"1,601 km" +Corpus Christi,Indianapolis,,18 hours 27 mins,"1,970 km" +Wichita Falls,Indianapolis,,12 hours 46 mins,"1,412 km" +Waco,Indianapolis,,14 hours 32 mins,"1,599 km" +San Angelo,Indianapolis,,16 hours 16 mins,"1,790 km" +Houston,Indianapolis,,15 hours 17 mins,"1,632 km" +San Antonio,Indianapolis,,17 hours 8 mins,"1,886 km" +Del Rio,Indianapolis,,18 hours 39 mins,"2,043 km" +Mission,Indianapolis,,, +Beaumont,Indianapolis,,, +Longview,Indianapolis,,12 hours 9 mins,"1,307 km" +Midland,Indianapolis,,16 hours 52 mins,"1,859 km" +El Paso,Indianapolis,,21 hours 4 mins,"2,303 km" +Brownsville,Indianapolis,,20 hours 29 mins,"2,200 km" +Austin,Indianapolis,,15 hours 57 mins,"1,760 km" +Dallas,Indianapolis,,13 hours 10 mins,"1,447 km" +Killeen,Indianapolis,,15 hours 22 mins,"1,695 km" +Laredo,Indianapolis,,19 hours 25 mins,"2,137 km" +Texarkana,Indianapolis,,10 hours 41 mins,"1,166 km" +St. Louis,San Antonio,,13 hours 45 mins,"1,453 km" +San Antonio,St. Louis,,13 hours 44 mins,"1,455 km" +El Paso,San Diego,,10 hours 27 mins,"1,166 km" +El Paso,Redding,,19 hours 48 mins,"2,166 km" +El Paso,Sacramento,,17 hours 28 mins,"1,907 km" +El Paso,Fresno,,15 hours 0 mins,"1,641 km" +El Paso,San Luis Obispo,,14 hours 44 mins,"1,596 km" +El Paso,Oakland,,17 hours 16 mins,"1,885 km" +El Paso,Santa Barbara,,13 hours 14 mins,"1,445 km" +El Paso,Stockton,,16 hours 45 mins,"1,831 km" +El Paso,Santa Rosa,,18 hours 8 mins,"1,977 km" +El Paso,Bakersfield,,13 hours 27 mins,"1,468 km" +El Paso,Santa Ana,,11 hours 36 mins,"1,293 km" +El Paso,Santa Maria,,14 hours 20 mins,"1,547 km" +El Paso,San Jose,,16 hours 55 mins,"1,835 km" +El Paso,Burbank,,11 hours 54 mins,"1,312 km" +El Paso,Arcata,,21 hours 53 mins,"2,338 km" +El Paso,Butte,,18 hours 53 mins,"2,040 km" +El Paso,Palm Springs,,10 hours 13 mins,"1,124 km" +El Paso,Los Angeles,,11 hours 46 mins,"1,290 km" +El Paso,Long Beach,,11 hours 57 mins,"1,309 km" +El Paso,San Francisco,,17 hours 29 mins,"1,903 km" +El Paso,Monterey,,16 hours 44 mins,"1,801 km" +San Diego,El Paso,,10 hours 29 mins,"1,165 km" +Redding,El Paso,,19 hours 45 mins,"2,164 km" +Sacramento,El Paso,,17 hours 25 mins,"1,907 km" +Fresno,El Paso,,14 hours 58 mins,"1,639 km" +San Luis Obispo,El Paso,,14 hours 45 mins,"1,596 km" +Oakland,El Paso,,17 hours 13 mins,"1,884 km" +Santa Barbara,El Paso,,13 hours 14 mins,"1,445 km" +Stockton,El Paso,,16 hours 41 mins,"1,831 km" +Santa Rosa,El Paso,,18 hours 6 mins,"1,977 km" +Bakersfield,El Paso,,13 hours 25 mins,"1,468 km" +Santa Ana,El Paso,,11 hours 38 mins,"1,274 km" +Santa Maria,El Paso,,14 hours 19 mins,"1,546 km" +San Jose,El Paso,,16 hours 51 mins,"1,834 km" +Burbank,El Paso,,11 hours 50 mins,"1,305 km" +Arcata,El Paso,,21 hours 51 mins,"2,338 km" +Butte,El Paso,,18 hours 51 mins,"2,039 km" +Palm Springs,El Paso,,10 hours 13 mins,"1,122 km" +Los Angeles,El Paso,,11 hours 43 mins,"1,289 km" +Long Beach,El Paso,,11 hours 55 mins,"1,308 km" +San Francisco,El Paso,,17 hours 23 mins,"1,902 km" +Monterey,El Paso,,16 hours 41 mins,"1,801 km" +White Plains,Atlanta,,13 hours 34 mins,"1,450 km" +Atlanta,White Plains,,13 hours 32 mins,"1,441 km" +Peoria,Las Vegas,,23 hours 59 mins,"2,702 km" +Las Vegas,Peoria,,23 hours 54 mins,"2,701 km" +Washington,Phoenix,,1 day 10 hours,"3,702 km" +Phoenix,Washington,,1 day 10 hours,"3,702 km" +Bozeman,Abilene,,20 hours 11 mins,"2,238 km" +Bozeman,Amarillo,,16 hours 1 min,"1,777 km" +Bozeman,Harlingen,,1 day 3 hours,"3,002 km" +Bozeman,Lubbock,,17 hours 47 mins,"1,974 km" +Bozeman,College Station,,23 hours 40 mins,"2,601 km" +Bozeman,Corpus Christi,,1 day 1 hour,"2,827 km" +Bozeman,Wichita Falls,,19 hours 25 mins,"2,138 km" +Bozeman,Waco,,22 hours 22 mins,"2,466 km" +Bozeman,San Angelo,,20 hours 34 mins,"2,269 km" +Bozeman,Houston,,1 day 1 hour,"2,741 km" +Bozeman,San Antonio,,23 hours 30 mins,"2,594 km" +Bozeman,Del Rio,,23 hours 1 min,"2,520 km" +Bozeman,Mission,,, +Bozeman,Beaumont,,, +Bozeman,Longview,,23 hours 19 mins,"2,565 km" +Bozeman,Midland,,19 hours 33 mins,"2,164 km" +Bozeman,El Paso,,19 hours 12 mins,"2,138 km" +Bozeman,Brownsville,,1 day 3 hours,"3,041 km" +Bozeman,Austin,,23 hours 37 mins,"2,575 km" +Bozeman,Dallas,,21 hours 28 mins,"2,365 km" +Bozeman,Killeen,,22 hours 58 mins,"2,511 km" +Bozeman,Laredo,,1 day 2 hours,"2,784 km" +Bozeman,Texarkana,,23 hours 34 mins,"2,653 km" +Abilene,Bozeman,,20 hours 17 mins,"2,244 km" +Amarillo,Bozeman,,16 hours 9 mins,"1,778 km" +Harlingen,Bozeman,,1 day 3 hours,"3,009 km" +Lubbock,Bozeman,,17 hours 54 mins,"1,995 km" +College Station,Bozeman,,23 hours 47 mins,"2,633 km" +Corpus Christi,Bozeman,,1 day 2 hours,"2,833 km" +Wichita Falls,Bozeman,,19 hours 34 mins,"2,171 km" +Waco,Bozeman,,22 hours 30 mins,"2,495 km" +San Angelo,Bozeman,,20 hours 41 mins,"2,309 km" +Houston,Bozeman,,1 day 1 hour,"2,773 km" +San Antonio,Bozeman,,23 hours 34 mins,"2,600 km" +Del Rio,Bozeman,,23 hours 6 mins,"2,552 km" +Mission,Bozeman,,, +Beaumont,Bozeman,,, +Longview,Bozeman,,23 hours 26 mins,"2,604 km" +Midland,Bozeman,,19 hours 40 mins,"2,185 km" +El Paso,Bozeman,,19 hours 14 mins,"2,139 km" +Brownsville,Bozeman,,1 day 4 hours,"3,049 km" +Austin,Bozeman,,23 hours 43 mins,"2,581 km" +Dallas,Bozeman,,21 hours 36 mins,"2,397 km" +Killeen,Bozeman,,23 hours 5 mins,"2,518 km" +Laredo,Bozeman,,1 day 2 hours,"2,791 km" +Texarkana,Bozeman,,23 hours 44 mins,"2,660 km" +Atlanta,Greensboro,,4 hours 59 mins,534 km +Atlanta,Wilmington,,6 hours 7 mins,674 km +Atlanta,New Bern,,7 hours 23 mins,808 km +Atlanta,Charlotte,,3 hours 47 mins,394 km +Atlanta,Raleigh,,6 hours 9 mins,653 km +Atlanta,Asheville,,3 hours 22 mins,319 km +Atlanta,Fayetteville,,5 hours 25 mins,605 km +Greensboro,Atlanta,,5 hours 1 min,533 km +Wilmington,Atlanta,,6 hours 8 mins,674 km +New Bern,Atlanta,,7 hours 24 mins,808 km +Charlotte,Atlanta,,3 hours 48 mins,393 km +Raleigh,Atlanta,,6 hours 8 mins,654 km +Asheville,Atlanta,,3 hours 24 mins,320 km +Fayetteville,Atlanta,,5 hours 25 mins,604 km +Los Angeles,Tucson,,7 hours 10 mins,777 km +Tucson,Los Angeles,,7 hours 12 mins,778 km +Savannah,Charlotte,,3 hours 48 mins,405 km +Charlotte,Savannah,,3 hours 48 mins,406 km +Everett,San Francisco,,12 hours 56 mins,"1,345 km" +San Francisco,Everett,,12 hours 54 mins,"1,345 km" +Peoria,Flagstaff,,21 hours 56 mins,"2,461 km" +Peoria,Yuma,,1 day 2 hours,"2,909 km" +Peoria,Phoenix,,23 hours 42 mins,"2,615 km" +Peoria,Prescott,,23 hours 27 mins,"2,611 km" +Peoria,Tucson,,23 hours 38 mins,"2,608 km" +Flagstaff,Peoria,,21 hours 50 mins,"2,458 km" +Yuma,Peoria,,1 day 2 hours,"2,906 km" +Phoenix,Peoria,,23 hours 40 mins,"2,614 km" +Prescott,Peoria,,23 hours 21 mins,"2,610 km" +Tucson,Peoria,,23 hours 39 mins,"2,597 km" +Houston,Punta Gorda,,15 hours 16 mins,"1,732 km" +Punta Gorda,Houston,,15 hours 15 mins,"1,733 km" +Dallas,Toledo,,16 hours 27 mins,"1,810 km" +Dallas,Cleveland,,17 hours 19 mins,"1,901 km" +Dallas,Dayton,,14 hours 29 mins,"1,586 km" +Dallas,Columbus,,15 hours 14 mins,"1,673 km" +Dallas,Akron,,17 hours 4 mins,"1,873 km" +Dallas,Cincinnati,,13 hours 40 mins,"1,501 km" +Toledo,Dallas,,16 hours 34 mins,"1,798 km" +Cleveland,Dallas,,17 hours 22 mins,"1,903 km" +Dayton,Dallas,,14 hours 32 mins,"1,588 km" +Columbus,Dallas,,15 hours 17 mins,"1,675 km" +Akron,Dallas,,17 hours 6 mins,"1,877 km" +Cincinnati,Dallas,,13 hours 43 mins,"1,503 km" +San Antonio,Tampa,,16 hours 50 mins,"1,892 km" +Tampa,San Antonio,,16 hours 48 mins,"1,892 km" +Albany,Pellston,,, +Albany,Traverse City,,, +Albany,Alpena,,, +Albany,Iron Mountain,,, +Albany,Kalamazoo,,, +Albany,Saginaw,,, +Albany,Grand Rapids,,, +Albany,Lansing,,, +Albany,Muskegon,,, +Albany,Hancock,,, +Albany,Detroit,,, +Albany,Escanaba,,, +Pellston,Albany,,, +Traverse City,Albany,,, +Alpena,Albany,,, +Iron Mountain,Albany,,, +Kalamazoo,Albany,,, +Saginaw,Albany,,, +Grand Rapids,Albany,,, +Lansing,Albany,,, +Muskegon,Albany,,, +Hancock,Albany,,, +Detroit,Albany,,, +Escanaba,Albany,,, +Minneapolis,Alamosa,,16 hours 13 mins,"1,727 km" +Minneapolis,Grand Junction,,16 hours 38 mins,"1,855 km" +Minneapolis,Durango,,18 hours 49 mins,"2,005 km" +Minneapolis,Colorado Springs,,13 hours 56 mins,"1,584 km" +Minneapolis,Gunnison,,16 hours 23 mins,"1,786 km" +Minneapolis,Denver,,13 hours 1 min,"1,469 km" +Alamosa,Minneapolis,,16 hours 8 mins,"1,727 km" +Grand Junction,Minneapolis,,16 hours 33 mins,"1,854 km" +Durango,Minneapolis,,18 hours 45 mins,"2,005 km" +Colorado Springs,Minneapolis,,13 hours 52 mins,"1,581 km" +Gunnison,Minneapolis,,16 hours 19 mins,"1,786 km" +Denver,Minneapolis,,13 hours 0 mins,"1,471 km" +Las Vegas,Green Bay,,1 day 3 hours,"2,974 km" +Las Vegas,Rhinelander,,1 day 3 hours,"3,040 km" +Las Vegas,Marquette,,1 day 1 hour,"2,876 km" +Las Vegas,Madison,,1 day 1 hour,"2,746 km" +Las Vegas,La Crosse,,1 day 0 hours,"2,712 km" +Las Vegas,Devils Lake,,1 day 1 hour,"2,761 km" +Las Vegas,Appleton,,1 day 2 hours,"2,923 km" +Las Vegas,Mosinee,,1 day 2 hours,"2,911 km" +Las Vegas,Milwaukee,,1 day 2 hours,"2,879 km" +Las Vegas,Eau Claire,,1 day 1 hour,"2,799 km" +Green Bay,Las Vegas,,1 day 3 hours,"2,974 km" +Rhinelander,Las Vegas,,1 day 3 hours,"3,042 km" +Marquette,Las Vegas,,1 day 2 hours,"2,875 km" +Madison,Las Vegas,,1 day 1 hour,"2,747 km" +La Crosse,Las Vegas,,1 day 0 hours,"2,715 km" +Devils Lake,Las Vegas,,1 day 1 hour,"2,753 km" +Appleton,Las Vegas,,1 day 2 hours,"2,922 km" +Mosinee,Las Vegas,,1 day 2 hours,"2,916 km" +Milwaukee,Las Vegas,,1 day 2 hours,"2,877 km" +Eau Claire,Las Vegas,,1 day 1 hour,"2,762 km" +Harrisburg,Moline,,12 hours 4 mins,"1,294 km" +Harrisburg,Belleville,,12 hours 0 mins,"1,258 km" +Harrisburg,Bloomington,,9 hours 10 mins,952 km +Harrisburg,Champaign,,10 hours 10 mins,"1,068 km" +Harrisburg,Chicago,,9 hours 57 mins,"1,059 km" +Harrisburg,Rockford,,11 hours 21 mins,"1,199 km" +Harrisburg,Peoria,,11 hours 23 mins,"1,208 km" +Moline,Harrisburg,,12 hours 6 mins,"1,295 km" +Belleville,Harrisburg,,12 hours 2 mins,"1,259 km" +Bloomington,Harrisburg,,9 hours 11 mins,953 km +Champaign,Harrisburg,,10 hours 13 mins,"1,066 km" +Chicago,Harrisburg,,9 hours 57 mins,"1,060 km" +Rockford,Harrisburg,,11 hours 22 mins,"1,209 km" +Peoria,Harrisburg,,11 hours 26 mins,"1,209 km" +Chattanooga,Abilene,,13 hours 55 mins,"1,557 km" +Chattanooga,Amarillo,,15 hours 18 mins,"1,711 km" +Chattanooga,Harlingen,,16 hours 39 mins,"1,837 km" +Chattanooga,Lubbock,,16 hours 19 mins,"1,822 km" +Chattanooga,College Station,,12 hours 32 mins,"1,335 km" +Chattanooga,Corpus Christi,,14 hours 53 mins,"1,642 km" +Chattanooga,Wichita Falls,,13 hours 19 mins,"1,490 km" +Chattanooga,Waco,,12 hours 23 mins,"1,343 km" +Chattanooga,San Angelo,,15 hours 9 mins,"1,681 km" +Chattanooga,Houston,,11 hours 47 mins,"1,309 km" +Chattanooga,San Antonio,,14 hours 39 mins,"1,623 km" +Chattanooga,Del Rio,,17 hours 2 mins,"1,870 km" +Chattanooga,Mission,,, +Chattanooga,Beaumont,,, +Chattanooga,Longview,,9 hours 38 mins,"1,068 km" +Chattanooga,Midland,,16 hours 3 mins,"1,797 km" +Chattanooga,El Paso,,20 hours 20 mins,"2,283 km" +Chattanooga,Brownsville,,17 hours 1 min,"1,876 km" +Chattanooga,Austin,,13 hours 48 mins,"1,505 km" +Chattanooga,Dallas,,11 hours 19 mins,"1,264 km" +Chattanooga,Killeen,,13 hours 10 mins,"1,435 km" +Chattanooga,Laredo,,16 hours 46 mins,"1,815 km" +Chattanooga,Texarkana,,9 hours 6 mins,994 km +Abilene,Chattanooga,,13 hours 53 mins,"1,552 km" +Amarillo,Chattanooga,,15 hours 14 mins,"1,707 km" +Harlingen,Chattanooga,,16 hours 34 mins,"1,836 km" +Lubbock,Chattanooga,,16 hours 13 mins,"1,818 km" +College Station,Chattanooga,,12 hours 25 mins,"1,329 km" +Corpus Christi,Chattanooga,,14 hours 56 mins,"1,647 km" +Wichita Falls,Chattanooga,,13 hours 14 mins,"1,418 km" +Waco,Chattanooga,,12 hours 19 mins,"1,338 km" +San Angelo,Chattanooga,,15 hours 5 mins,"1,676 km" +Houston,Chattanooga,,11 hours 46 mins,"1,309 km" +San Antonio,Chattanooga,,14 hours 39 mins,"1,623 km" +Del Rio,Chattanooga,,17 hours 4 mins,"1,870 km" +Mission,Chattanooga,,, +Beaumont,Chattanooga,,, +Longview,Chattanooga,,9 hours 35 mins,"1,062 km" +Midland,Chattanooga,,15 hours 59 mins,"1,792 km" +El Paso,Chattanooga,,20 hours 17 mins,"2,282 km" +Brownsville,Chattanooga,,16 hours 58 mins,"1,876 km" +Austin,Chattanooga,,13 hours 45 mins,"1,500 km" +Dallas,Chattanooga,,11 hours 19 mins,"1,261 km" +Killeen,Chattanooga,,13 hours 10 mins,"1,434 km" +Laredo,Chattanooga,,16 hours 42 mins,"1,814 km" +Texarkana,Chattanooga,,9 hours 2 mins,988 km +Phoenix,Sarasota,,1 day 8 hours,"3,554 km" +Phoenix,Fort Myers,,1 day 8 hours,"3,659 km" +Phoenix,Gainesville,,1 day 5 hours,"3,269 km" +Phoenix,Orlando,,1 day 7 hours,"3,442 km" +Phoenix,Daytona Beach,,1 day 7 hours,"3,441 km" +Phoenix,Jacksonville,,1 day 5 hours,"3,292 km" +Phoenix,Tampa,,1 day 7 hours,"3,469 km" +Phoenix,Panama City,,1 day 3 hours,"2,939 km" +Phoenix,Key West,,1 day 13 hours,"4,056 km" +Phoenix,West Palm Beach,,1 day 9 hours,"3,697 km" +Phoenix,Miami,,1 day 10 hours,"3,802 km" +Phoenix,Tallahassee,,1 day 3 hours,"3,033 km" +Phoenix,Punta Gorda,,1 day 8 hours,"3,624 km" +Phoenix,Fort Lauderdale,,1 day 9 hours,"3,765 km" +Phoenix,Pensacola,,1 day 0 hours,"2,736 km" +Sarasota,Phoenix,,1 day 7 hours,"3,553 km" +Fort Myers,Phoenix,,1 day 8 hours,"3,658 km" +Gainesville,Phoenix,,1 day 5 hours,"3,267 km" +Orlando,Phoenix,,1 day 6 hours,"3,438 km" +Daytona Beach,Phoenix,,1 day 7 hours,"3,430 km" +Jacksonville,Phoenix,,1 day 5 hours,"3,290 km" +Tampa,Phoenix,,1 day 7 hours,"3,468 km" +Panama City,Phoenix,,1 day 2 hours,"2,938 km" +Key West,Phoenix,,1 day 13 hours,"4,054 km" +West Palm Beach,Phoenix,,1 day 9 hours,"3,697 km" +Miami,Phoenix,,1 day 10 hours,"3,802 km" +Tallahassee,Phoenix,,1 day 3 hours,"3,031 km" +Punta Gorda,Phoenix,,1 day 8 hours,"3,622 km" +Fort Lauderdale,Phoenix,,1 day 9 hours,"3,765 km" +Pensacola,Phoenix,,1 day 0 hours,"2,734 km" +Fort Lauderdale,Kansas City,,20 hours 45 mins,"2,319 km" +Kansas City,Fort Lauderdale,,20 hours 48 mins,"2,317 km" +Dallas,Santa Ana,,20 hours 38 mins,"2,314 km" +Santa Ana,Dallas,,20 hours 36 mins,"2,288 km" +Charlotte,Akron,,7 hours 16 mins,771 km +Akron,Charlotte,,7 hours 13 mins,771 km +Roswell,Abilene,,4 hours 40 mins,498 km +Roswell,Amarillo,,3 hours 29 mins,344 km +Roswell,Harlingen,,11 hours 17 mins,"1,246 km" +Roswell,Lubbock,,2 hours 40 mins,275 km +Roswell,College Station,,8 hours 54 mins,922 km +Roswell,Corpus Christi,,9 hours 39 mins,"1,071 km" +Roswell,Wichita Falls,,5 hours 43 mins,610 km +Roswell,Waco,,7 hours 36 mins,799 km +Roswell,San Angelo,,4 hours 37 mins,495 km +Roswell,Houston,,10 hours 12 mins,"1,072 km" +Roswell,San Antonio,,7 hours 41 mins,838 km +Roswell,Del Rio,,6 hours 43 mins,644 km +Roswell,Mission,,, +Roswell,Beaumont,,, +Roswell,Longview,,9 hours 1 min,996 km +Roswell,Midland,,3 hours 15 mins,328 km +Roswell,El Paso,,3 hours 27 mins,331 km +Roswell,Brownsville,,11 hours 38 mins,"1,285 km" +Roswell,Austin,,7 hours 59 mins,829 km +Roswell,Dallas,,7 hours 13 mins,791 km +Roswell,Killeen,,7 hours 26 mins,771 km +Roswell,Laredo,,9 hours 39 mins,934 km +Roswell,Texarkana,,9 hours 50 mins,"1,077 km" +Abilene,Roswell,,4 hours 41 mins,498 km +Amarillo,Roswell,,3 hours 29 mins,345 km +Harlingen,Roswell,,11 hours 12 mins,"1,242 km" +Lubbock,Roswell,,2 hours 39 mins,275 km +College Station,Roswell,,8 hours 54 mins,926 km +Corpus Christi,Roswell,,9 hours 36 mins,"1,066 km" +Wichita Falls,Roswell,,5 hours 45 mins,609 km +Waco,Roswell,,7 hours 40 mins,799 km +San Angelo,Roswell,,4 hours 36 mins,494 km +Houston,Roswell,,10 hours 13 mins,"1,076 km" +San Antonio,Roswell,,7 hours 40 mins,834 km +Del Rio,Roswell,,6 hours 41 mins,644 km +Mission,Roswell,,, +Beaumont,Roswell,,, +Longview,Roswell,,9 hours 3 mins,996 km +Midland,Roswell,,3 hours 15 mins,328 km +El Paso,Roswell,,3 hours 26 mins,330 km +Brownsville,Roswell,,11 hours 36 mins,"1,282 km" +Austin,Roswell,,7 hours 58 mins,825 km +Dallas,Roswell,,7 hours 15 mins,791 km +Killeen,Roswell,,7 hours 28 mins,791 km +Laredo,Roswell,,9 hours 38 mins,934 km +Texarkana,Roswell,,9 hours 53 mins,"1,079 km" +Syracuse,Abilene,,1 day 0 hours,"2,691 km" +Syracuse,Amarillo,,23 hours 54 mins,"2,643 km" +Syracuse,Harlingen,,1 day 5 hours,"3,144 km" +Syracuse,Lubbock,,1 day 1 hour,"2,781 km" +Syracuse,College Station,,1 day 0 hours,"2,589 km" +Syracuse,Corpus Christi,,1 day 3 hours,"2,949 km" +Syracuse,Wichita Falls,,22 hours 9 mins,"2,447 km" +Syracuse,Waco,,23 hours 32 mins,"2,587 km" +Syracuse,San Angelo,,1 day 2 hours,"2,825 km" +Syracuse,Houston,,1 day 0 hours,"2,616 km" +Syracuse,San Antonio,,1 day 2 hours,"2,872 km" +Syracuse,Del Rio,,1 day 4 hours,"3,078 km" +Syracuse,Mission,,, +Syracuse,Beaumont,,, +Syracuse,Longview,,21 hours 6 mins,"2,292 km" +Syracuse,Midland,,1 day 2 hours,"2,892 km" +Syracuse,El Paso,,1 day 6 hours,"3,341 km" +Syracuse,Brownsville,,1 day 5 hours,"3,183 km" +Syracuse,Austin,,1 day 1 hour,"2,745 km" +Syracuse,Dallas,,22 hours 8 mins,"2,431 km" +Syracuse,Killeen,,1 day 0 hours,"2,680 km" +Syracuse,Laredo,,1 day 4 hours,"3,123 km" +Syracuse,Texarkana,,19 hours 39 mins,"2,151 km" +Abilene,Syracuse,,1 day 0 hours,"2,692 km" +Amarillo,Syracuse,,23 hours 53 mins,"2,643 km" +Harlingen,Syracuse,,1 day 5 hours,"3,142 km" +Lubbock,Syracuse,,1 day 1 hour,"2,782 km" +College Station,Syracuse,,1 day 0 hours,"2,583 km" +Corpus Christi,Syracuse,,1 day 3 hours,"2,952 km" +Wichita Falls,Syracuse,,22 hours 8 mins,"2,448 km" +Waco,Syracuse,,23 hours 25 mins,"2,581 km" +San Angelo,Syracuse,,1 day 2 hours,"2,826 km" +Houston,Syracuse,,1 day 0 hours,"2,614 km" +San Antonio,Syracuse,,1 day 2 hours,"2,868 km" +Del Rio,Syracuse,,1 day 4 hours,"3,079 km" +Mission,Syracuse,,, +Beaumont,Syracuse,,, +Longview,Syracuse,,21 hours 2 mins,"2,289 km" +Midland,Syracuse,,1 day 2 hours,"2,895 km" +El Paso,Syracuse,,1 day 6 hours,"3,339 km" +Brownsville,Syracuse,,1 day 5 hours,"3,182 km" +Austin,Syracuse,,1 day 1 hour,"2,742 km" +Dallas,Syracuse,,22 hours 3 mins,"2,429 km" +Killeen,Syracuse,,1 day 0 hours,"2,677 km" +Laredo,Syracuse,,1 day 4 hours,"3,119 km" +Texarkana,Syracuse,,19 hours 34 mins,"2,148 km" +Detroit,Mosinee,,8 hours 7 mins,894 km +Mosinee,Detroit,,8 hours 2 mins,892 km +Omaha,Dallas,,9 hours 46 mins,"1,059 km" +Dallas,Omaha,,9 hours 43 mins,"1,058 km" +Huntsville,Sarasota,,10 hours 28 mins,"1,107 km" +Huntsville,Fort Myers,,11 hours 26 mins,"1,213 km" +Huntsville,Gainesville,,8 hours 4 mins,823 km +Huntsville,Orlando,,9 hours 29 mins,995 km +Huntsville,Daytona Beach,,9 hours 33 mins,995 km +Huntsville,Jacksonville,,8 hours 10 mins,845 km +Huntsville,Tampa,,9 hours 41 mins,"1,023 km" +Huntsville,Panama City,,6 hours 6 mins,590 km +Huntsville,Key West,,15 hours 40 mins,"1,609 km" +Huntsville,West Palm Beach,,11 hours 42 mins,"1,251 km" +Huntsville,Miami,,12 hours 40 mins,"1,356 km" +Huntsville,Tallahassee,,6 hours 23 mins,645 km +Huntsville,Punta Gorda,,11 hours 0 mins,"1,177 km" +Huntsville,Fort Lauderdale,,12 hours 19 mins,"1,319 km" +Huntsville,Pensacola,,5 hours 18 mins,567 km +Sarasota,Huntsville,,10 hours 28 mins,"1,108 km" +Fort Myers,Huntsville,,11 hours 24 mins,"1,214 km" +Gainesville,Huntsville,,8 hours 3 mins,823 km +Orlando,Huntsville,,9 hours 25 mins,994 km +Daytona Beach,Huntsville,,9 hours 31 mins,986 km +Jacksonville,Huntsville,,8 hours 11 mins,846 km +Tampa,Huntsville,,9 hours 39 mins,"1,023 km" +Panama City,Huntsville,,6 hours 6 mins,585 km +Key West,Huntsville,,15 hours 40 mins,"1,609 km" +West Palm Beach,Huntsville,,11 hours 40 mins,"1,252 km" +Miami,Huntsville,,12 hours 37 mins,"1,358 km" +Tallahassee,Huntsville,,6 hours 23 mins,640 km +Punta Gorda,Huntsville,,10 hours 59 mins,"1,178 km" +Fort Lauderdale,Huntsville,,12 hours 18 mins,"1,320 km" +Pensacola,Huntsville,,5 hours 13 mins,566 km +Chicago,Norfolk,,13 hours 33 mins,"1,427 km" +Norfolk,Chicago,,13 hours 29 mins,"1,424 km" +Appleton,Sarasota,,20 hours 46 mins,"2,290 km" +Appleton,Fort Myers,,21 hours 44 mins,"2,395 km" +Appleton,Gainesville,,18 hours 22 mins,"2,005 km" +Appleton,Orlando,,19 hours 46 mins,"2,178 km" +Appleton,Daytona Beach,,19 hours 51 mins,"2,177 km" +Appleton,Jacksonville,,18 hours 27 mins,"2,028 km" +Appleton,Tampa,,19 hours 59 mins,"2,205 km" +Appleton,Panama City,,17 hours 14 mins,"1,812 km" +Appleton,Key West,,1 day 2 hours,"2,791 km" +Appleton,West Palm Beach,,22 hours 0 mins,"2,433 km" +Appleton,Miami,,22 hours 58 mins,"2,538 km" +Appleton,Tallahassee,,17 hours 31 mins,"1,867 km" +Appleton,Punta Gorda,,21 hours 18 mins,"2,360 km" +Appleton,Fort Lauderdale,,22 hours 37 mins,"2,501 km" +Appleton,Pensacola,,16 hours 25 mins,"1,789 km" +Sarasota,Appleton,,20 hours 48 mins,"2,293 km" +Fort Myers,Appleton,,21 hours 44 mins,"2,399 km" +Gainesville,Appleton,,18 hours 23 mins,"2,007 km" +Orlando,Appleton,,19 hours 45 mins,"2,179 km" +Daytona Beach,Appleton,,19 hours 51 mins,"2,170 km" +Jacksonville,Appleton,,18 hours 31 mins,"2,031 km" +Tampa,Appleton,,19 hours 59 mins,"2,208 km" +Panama City,Appleton,,17 hours 17 mins,"1,809 km" +Key West,Appleton,,1 day 2 hours,"2,794 km" +West Palm Beach,Appleton,,22 hours 0 mins,"2,437 km" +Miami,Appleton,,22 hours 57 mins,"2,543 km" +Tallahassee,Appleton,,17 hours 34 mins,"1,864 km" +Punta Gorda,Appleton,,21 hours 19 mins,"2,363 km" +Fort Lauderdale,Appleton,,22 hours 38 mins,"2,505 km" +Pensacola,Appleton,,16 hours 24 mins,"1,790 km" +Moab,Denver,,5 hours 23 mins,570 km +Denver,Moab,,5 hours 25 mins,571 km +Hilton Head,Philadelphia,,10 hours 39 mins,"1,142 km" +Philadelphia,Hilton Head,,10 hours 44 mins,"1,149 km" +Miami,State College,,18 hours 17 mins,"2,026 km" +Miami,Johnstown,,17 hours 46 mins,"1,945 km" +Miami,Harrisburg,,16 hours 49 mins,"1,872 km" +Miami,Erie,,18 hours 57 mins,"2,086 km" +Miami,Pittsburgh,,17 hours 13 mins,"1,891 km" +Miami,Latrobe,,17 hours 25 mins,"1,878 km" +Miami,Philadelphia,,17 hours 16 mins,"1,919 km" +Miami,Lewisburg,,17 hours 57 mins,"1,971 km" +Miami,Scranton,,18 hours 40 mins,"2,069 km" +State College,Miami,,18 hours 28 mins,"2,034 km" +Johnstown,Miami,,17 hours 48 mins,"1,945 km" +Harrisburg,Miami,,17 hours 2 mins,"1,874 km" +Erie,Miami,,19 hours 3 mins,"2,086 km" +Pittsburgh,Miami,,17 hours 16 mins,"1,892 km" +Latrobe,Miami,,17 hours 26 mins,"1,877 km" +Philadelphia,Miami,,17 hours 24 mins,"1,925 km" +Lewisburg,Miami,,18 hours 10 mins,"1,977 km" +Scranton,Miami,,18 hours 53 mins,"2,071 km" +Newark,Paducah,,14 hours 20 mins,"1,516 km" +Newark,Owensboro,,12 hours 49 mins,"1,341 km" +Newark,Lexington,,10 hours 38 mins,"1,118 km" +Newark,Louisville,,11 hours 12 mins,"1,172 km" +Paducah,Newark,,14 hours 20 mins,"1,529 km" +Owensboro,Newark,,12 hours 49 mins,"1,340 km" +Lexington,Newark,,10 hours 38 mins,"1,118 km" +Louisville,Newark,,11 hours 16 mins,"1,170 km" +Miami,Tulsa,,20 hours 42 mins,"2,342 km" +Tulsa,Miami,,20 hours 47 mins,"2,326 km" +Cedar Rapids,Augusta,,14 hours 35 mins,"1,579 km" +Cedar Rapids,Decatur,,12 hours 41 mins,"1,353 km" +Cedar Rapids,Atlanta,,12 hours 26 mins,"1,345 km" +Cedar Rapids,Valdosta,,15 hours 43 mins,"1,713 km" +Cedar Rapids,Savannah,,16 hours 1 min,"1,745 km" +Augusta,Cedar Rapids,,14 hours 36 mins,"1,583 km" +Decatur,Cedar Rapids,,12 hours 42 mins,"1,357 km" +Atlanta,Cedar Rapids,,12 hours 26 mins,"1,349 km" +Valdosta,Cedar Rapids,,15 hours 41 mins,"1,716 km" +Savannah,Cedar Rapids,,16 hours 2 mins,"1,748 km" +New Orleans,Houston,,5 hours 12 mins,560 km +Houston,New Orleans,,5 hours 10 mins,559 km +Shreveport,Abilene,,5 hours 22 mins,593 km +Shreveport,Amarillo,,8 hours 12 mins,892 km +Shreveport,Harlingen,,8 hours 49 mins,912 km +Shreveport,Lubbock,,7 hours 45 mins,858 km +Shreveport,College Station,,3 hours 58 mins,371 km +Shreveport,Corpus Christi,,7 hours 3 mins,717 km +Shreveport,Wichita Falls,,4 hours 48 mins,531 km +Shreveport,Waco,,3 hours 50 mins,380 km +Shreveport,San Angelo,,6 hours 36 mins,717 km +Shreveport,Houston,,3 hours 57 mins,384 km +Shreveport,San Antonio,,6 hours 26 mins,668 km +Shreveport,Del Rio,,8 hours 51 mins,916 km +Shreveport,Mission,,, +Shreveport,Beaumont,,, +Shreveport,Longview,,1 hour 4 mins,104 km +Shreveport,Midland,,7 hours 30 mins,834 km +Shreveport,El Paso,,11 hours 48 mins,"1,324 km" +Shreveport,Brownsville,,9 hours 10 mins,951 km +Shreveport,Austin,,5 hours 15 mins,541 km +Shreveport,Dallas,,2 hours 47 mins,305 km +Shreveport,Killeen,,4 hours 38 mins,476 km +Shreveport,Laredo,,8 hours 42 mins,918 km +Shreveport,Texarkana,,1 hour 8 mins,117 km +Abilene,Shreveport,,5 hours 21 mins,594 km +Amarillo,Shreveport,,8 hours 12 mins,886 km +Harlingen,Shreveport,,8 hours 42 mins,912 km +Lubbock,Shreveport,,7 hours 40 mins,859 km +College Station,Shreveport,,3 hours 53 mins,370 km +Corpus Christi,Shreveport,,7 hours 4 mins,722 km +Wichita Falls,Shreveport,,4 hours 50 mins,523 km +Waco,Shreveport,,3 hours 47 mins,380 km +San Angelo,Shreveport,,6 hours 33 mins,718 km +Houston,Shreveport,,3 hours 54 mins,384 km +San Antonio,Shreveport,,6 hours 24 mins,667 km +Del Rio,Shreveport,,8 hours 52 mins,916 km +Mission,Shreveport,,, +Beaumont,Shreveport,,, +Longview,Shreveport,,1 hour 3 mins,104 km +Midland,Shreveport,,7 hours 27 mins,834 km +El Paso,Shreveport,,11 hours 45 mins,"1,324 km" +Brownsville,Shreveport,,9 hours 6 mins,952 km +Austin,Shreveport,,5 hours 13 mins,541 km +Dallas,Shreveport,,2 hours 46 mins,303 km +Killeen,Shreveport,,4 hours 38 mins,476 km +Laredo,Shreveport,,8 hours 41 mins,918 km +Texarkana,Shreveport,,1 hour 9 mins,118 km +Baton Rouge,Houston,,4 hours 0 mins,431 km +Houston,Baton Rouge,,3 hours 59 mins,433 km +Charlotte Amalie,Atlanta,,, +Atlanta,Charlotte Amalie,,, +Los Angeles,Seattle,,17 hours 22 mins,"1,826 km" +Los Angeles,Wenatchee,,18 hours 25 mins,"1,850 km" +Los Angeles,Pasco,,, +Los Angeles,Yakima,,16 hours 36 mins,"1,669 km" +Los Angeles,Walla Walla,,16 hours 32 mins,"1,675 km" +Los Angeles,Everett,,17 hours 51 mins,"1,872 km" +Los Angeles,Spokane,,18 hours 53 mins,"1,935 km" +Seattle,Los Angeles,,17 hours 22 mins,"1,828 km" +Wenatchee,Los Angeles,,18 hours 31 mins,"1,841 km" +Pasco,Los Angeles,,, +Yakima,Los Angeles,,16 hours 42 mins,"1,670 km" +Walla Walla,Los Angeles,,16 hours 46 mins,"1,679 km" +Everett,Los Angeles,,17 hours 50 mins,"1,873 km" +Spokane,Los Angeles,,18 hours 59 mins,"1,937 km" +Salt Lake City,San Jose,,11 hours 20 mins,"1,237 km" +San Jose,Salt Lake City,,11 hours 16 mins,"1,236 km" +Newark,Lynchburg,,6 hours 34 mins,639 km +Newark,Richmond,,5 hours 11 mins,533 km +Newark,Petersburg,,5 hours 30 mins,569 km +Newark,Newport News,,6 hours 3 mins,632 km +Newark,Charlottesville,,5 hours 34 mins,536 km +Newark,Staunton,,5 hours 42 mins,590 km +Newark,Jamestown,,5 hours 59 mins,614 km +Newark,Norfolk,,6 hours 10 mins,570 km +Newark,Roanoke,,6 hours 53 mins,724 km +Lynchburg,Newark,,6 hours 34 mins,639 km +Richmond,Newark,,5 hours 10 mins,526 km +Petersburg,Newark,,5 hours 30 mins,562 km +Newport News,Newark,,6 hours 2 mins,625 km +Charlottesville,Newark,,5 hours 33 mins,536 km +Staunton,Newark,,5 hours 41 mins,589 km +Jamestown,Newark,,5 hours 57 mins,607 km +Norfolk,Newark,,6 hours 10 mins,570 km +Roanoke,Newark,,6 hours 53 mins,723 km +Cleveland,Nashville,,7 hours 47 mins,839 km +Cleveland,Bristol,,, +Cleveland,Knoxville,,7 hours 22 mins,804 km +Cleveland,Chattanooga,,8 hours 57 mins,978 km +Cleveland,Memphis,,10 hours 46 mins,"1,176 km" +Nashville,Cleveland,,7 hours 45 mins,839 km +Bristol,Cleveland,,, +Knoxville,Cleveland,,7 hours 22 mins,804 km +Chattanooga,Cleveland,,8 hours 58 mins,979 km +Memphis,Cleveland,,10 hours 46 mins,"1,174 km" +Punta Gorda,Appleton,,21 hours 19 mins,"2,363 km" +Appleton,Punta Gorda,,21 hours 18 mins,"2,360 km" +Valparaiso,Moline,,, +Valparaiso,Belleville,,, +Valparaiso,Bloomington,,, +Valparaiso,Champaign,,, +Valparaiso,Chicago,,, +Valparaiso,Rockford,,, +Valparaiso,Peoria,,, +Moline,Valparaiso,,, +Belleville,Valparaiso,,, +Bloomington,Valparaiso,,, +Champaign,Valparaiso,,, +Chicago,Valparaiso,,, +Rockford,Valparaiso,,, +Peoria,Valparaiso,,, +Key West,Greensboro,,14 hours 39 mins,"1,543 km" +Key West,Wilmington,,14 hours 15 mins,"1,511 km" +Key West,New Bern,,15 hours 30 mins,"1,645 km" +Key West,Charlotte,,13 hours 29 mins,"1,426 km" +Key West,Raleigh,,14 hours 26 mins,"1,538 km" +Key West,Asheville,,14 hours 24 mins,"1,521 km" +Key West,Fayetteville,,13 hours 32 mins,"1,442 km" +Greensboro,Key West,,14 hours 42 mins,"1,532 km" +Wilmington,Key West,,14 hours 17 mins,"1,513 km" +New Bern,Key West,,15 hours 33 mins,"1,647 km" +Charlotte,Key West,,13 hours 30 mins,"1,427 km" +Raleigh,Key West,,14 hours 30 mins,"1,542 km" +Asheville,Key West,,14 hours 24 mins,"1,522 km" +Fayetteville,Key West,,13 hours 34 mins,"1,443 km" +Houston,San Diego,,20 hours 58 mins,"2,366 km" +San Diego,Houston,,21 hours 3 mins,"2,365 km" +Washington,Greensboro,,4 hours 45 mins,498 km +Washington,Wilmington,,5 hours 31 mins,586 km +Washington,New Bern,,5 hours 5 mins,521 km +Washington,Charlotte,,6 hours 0 mins,644 km +Washington,Raleigh,,4 hours 15 mins,447 km +Washington,Asheville,,7 hours 9 mins,759 km +Washington,Fayetteville,,4 hours 46 mins,508 km +Greensboro,Washington,,4 hours 45 mins,498 km +Wilmington,Washington,,5 hours 31 mins,585 km +New Bern,Washington,,5 hours 5 mins,534 km +Charlotte,Washington,,6 hours 1 min,642 km +Raleigh,Washington,,4 hours 15 mins,448 km +Asheville,Washington,,7 hours 8 mins,758 km +Fayetteville,Washington,,4 hours 48 mins,509 km +Rochester,Moline,,11 hours 12 mins,"1,205 km" +Rochester,Belleville,,12 hours 6 mins,"1,301 km" +Rochester,Bloomington,,9 hours 16 mins,994 km +Rochester,Champaign,,10 hours 15 mins,"1,110 km" +Rochester,Chicago,,9 hours 5 mins,969 km +Rochester,Rockford,,10 hours 29 mins,"1,109 km" +Rochester,Peoria,,11 hours 0 mins,"1,191 km" +Moline,Rochester,,11 hours 12 mins,"1,205 km" +Belleville,Rochester,,12 hours 5 mins,"1,301 km" +Bloomington,Rochester,,9 hours 14 mins,995 km +Champaign,Rochester,,10 hours 16 mins,"1,109 km" +Chicago,Rochester,,9 hours 3 mins,970 km +Rockford,Rochester,,10 hours 28 mins,"1,119 km" +Peoria,Rochester,,11 hours 1 min,"1,192 km" +Boston,San Diego,,1 day 20 hours,"4,829 km" +Boston,Redding,,1 day 21 hours,"4,944 km" +Boston,Sacramento,,1 day 20 hours,"4,842 km" +Boston,Fresno,,1 day 21 hours,"5,001 km" +Boston,San Luis Obispo,,1 day 22 hours,"5,044 km" +Boston,Oakland,,1 day 21 hours,"4,972 km" +Boston,Santa Barbara,,1 day 21 hours,"4,943 km" +Boston,Stockton,,1 day 21 hours,"4,918 km" +Boston,Santa Rosa,,1 day 21 hours,"4,997 km" +Boston,Bakersfield,,1 day 20 hours,"4,825 km" +Boston,Santa Ana,,1 day 19 hours,"4,800 km" +Boston,Santa Maria,,1 day 22 hours,"4,999 km" +Boston,San Jose,,1 day 22 hours,"5,034 km" +Boston,Burbank,,1 day 19 hours,"4,810 km" +Boston,Arcata,,2 days 0 hours,"5,169 km" +Boston,Butte,,1 day 21 hours,"4,881 km" +Boston,Palm Springs,,1 day 19 hours,"4,691 km" +Boston,Los Angeles,,1 day 19 hours,"4,800 km" +Boston,Long Beach,,1 day 20 hours,"4,823 km" +Boston,San Francisco,,1 day 21 hours,"4,981 km" +Boston,Monterey,,1 day 23 hours,"5,142 km" +San Diego,Boston,,1 day 20 hours,"4,827 km" +Redding,Boston,,1 day 21 hours,"4,952 km" +Sacramento,Boston,,1 day 20 hours,"4,850 km" +Fresno,Boston,,1 day 21 hours,"5,002 km" +San Luis Obispo,Boston,,1 day 22 hours,"5,047 km" +Oakland,Boston,,1 day 21 hours,"4,979 km" +Santa Barbara,Boston,,1 day 21 hours,"4,944 km" +Stockton,Boston,,1 day 20 hours,"4,926 km" +Santa Rosa,Boston,,1 day 21 hours,"5,005 km" +Bakersfield,Boston,,1 day 20 hours,"4,827 km" +Santa Ana,Boston,,1 day 19 hours,"4,798 km" +Santa Maria,Boston,,1 day 22 hours,"5,003 km" +San Jose,Boston,,1 day 22 hours,"5,041 km" +Burbank,Boston,,1 day 19 hours,"4,805 km" +Arcata,Boston,,2 days 0 hours,"5,176 km" +Butte,Boston,,1 day 20 hours,"4,889 km" +Palm Springs,Boston,,1 day 19 hours,"4,689 km" +Los Angeles,Boston,,1 day 19 hours,"4,801 km" +Long Beach,Boston,,1 day 20 hours,"4,828 km" +San Francisco,Boston,,1 day 21 hours,"4,989 km" +Monterey,Boston,,1 day 23 hours,"5,147 km" +Providence,Greensboro,,11 hours 12 mins,"1,159 km" +Providence,Wilmington,,11 hours 59 mins,"1,247 km" +Providence,New Bern,,11 hours 33 mins,"1,182 km" +Providence,Charlotte,,12 hours 28 mins,"1,305 km" +Providence,Raleigh,,10 hours 43 mins,"1,108 km" +Providence,Asheville,,13 hours 24 mins,"1,413 km" +Providence,Fayetteville,,11 hours 14 mins,"1,169 km" +Greensboro,Providence,,11 hours 7 mins,"1,152 km" +Wilmington,Providence,,11 hours 53 mins,"1,239 km" +New Bern,Providence,,11 hours 27 mins,"1,187 km" +Charlotte,Providence,,12 hours 24 mins,"1,296 km" +Raleigh,Providence,,10 hours 38 mins,"1,102 km" +Asheville,Providence,,13 hours 21 mins,"1,415 km" +Fayetteville,Providence,,11 hours 10 mins,"1,163 km" +Des Moines,Punta Gorda,,21 hours 14 mins,"2,339 km" +Punta Gorda,Des Moines,,21 hours 14 mins,"2,343 km" +Moline,Abilene,,14 hours 27 mins,"1,618 km" +Moline,Amarillo,,13 hours 58 mins,"1,570 km" +Moline,Harlingen,,20 hours 27 mins,"2,295 km" +Moline,Lubbock,,15 hours 20 mins,"1,709 km" +Moline,College Station,,15 hours 40 mins,"1,748 km" +Moline,Corpus Christi,,18 hours 49 mins,"2,119 km" +Moline,Wichita Falls,,12 hours 13 mins,"1,374 km" +Moline,Waco,,14 hours 22 mins,"1,613 km" +Moline,San Angelo,,15 hours 43 mins,"1,752 km" +Moline,Houston,,15 hours 47 mins,"1,668 km" +Moline,San Antonio,,16 hours 58 mins,"1,898 km" +Moline,Del Rio,,18 hours 8 mins,"2,005 km" +Moline,Mission,,, +Moline,Beaumont,,, +Moline,Longview,,12 hours 38 mins,"1,344 km" +Moline,Midland,,16 hours 19 mins,"1,819 km" +Moline,El Paso,,20 hours 0 mins,"2,099 km" +Moline,Brownsville,,20 hours 49 mins,"2,334 km" +Moline,Austin,,15 hours 46 mins,"1,771 km" +Moline,Dallas,,13 hours 3 mins,"1,316 km" +Moline,Killeen,,15 hours 10 mins,"1,706 km" +Moline,Laredo,,19 hours 14 mins,"2,149 km" +Moline,Texarkana,,11 hours 12 mins,"1,204 km" +Abilene,Moline,,14 hours 25 mins,"1,614 km" +Amarillo,Moline,,13 hours 55 mins,"1,565 km" +Harlingen,Moline,,20 hours 19 mins,"2,290 km" +Lubbock,Moline,,15 hours 14 mins,"1,704 km" +College Station,Moline,,15 hours 35 mins,"1,743 km" +Corpus Christi,Moline,,18 hours 43 mins,"2,114 km" +Wichita Falls,Moline,,12 hours 9 mins,"1,370 km" +Waco,Moline,,14 hours 18 mins,"1,606 km" +San Angelo,Moline,,15 hours 39 mins,"1,748 km" +Houston,Moline,,15 hours 50 mins,"1,673 km" +San Antonio,Moline,,16 hours 54 mins,"1,893 km" +Del Rio,Moline,,18 hours 2 mins,"2,001 km" +Mission,Moline,,, +Beaumont,Moline,,, +Longview,Moline,,12 hours 42 mins,"1,348 km" +Midland,Moline,,16 hours 15 mins,"1,817 km" +El Paso,Moline,,19 hours 55 mins,"2,095 km" +Brownsville,Moline,,20 hours 43 mins,"2,330 km" +Austin,Moline,,15 hours 43 mins,"1,767 km" +Dallas,Moline,,13 hours 4 mins,"1,316 km" +Killeen,Moline,,15 hours 8 mins,"1,702 km" +Laredo,Moline,,19 hours 11 mins,"2,144 km" +Texarkana,Moline,,11 hours 15 mins,"1,206 km" +Hartford,Sarasota,,19 hours 25 mins,"2,095 km" +Hartford,Fort Myers,,20 hours 23 mins,"2,200 km" +Hartford,Gainesville,,16 hours 45 mins,"1,805 km" +Hartford,Orlando,,17 hours 38 mins,"1,922 km" +Hartford,Daytona Beach,,17 hours 0 mins,"1,848 km" +Hartford,Jacksonville,,15 hours 35 mins,"1,694 km" +Hartford,Tampa,,18 hours 38 mins,"2,010 km" +Hartford,Panama City,,19 hours 36 mins,"2,115 km" +Hartford,Key West,,23 hours 34 mins,"2,505 km" +Hartford,West Palm Beach,,19 hours 33 mins,"2,152 km" +Hartford,Miami,,20 hours 34 mins,"2,251 km" +Hartford,Tallahassee,,17 hours 58 mins,"1,953 km" +Hartford,Punta Gorda,,19 hours 57 mins,"2,165 km" +Hartford,Fort Lauderdale,,20 hours 11 mins,"2,220 km" +Hartford,Pensacola,,19 hours 47 mins,"2,108 km" +Sarasota,Hartford,,19 hours 23 mins,"2,086 km" +Fort Myers,Hartford,,20 hours 19 mins,"2,191 km" +Gainesville,Hartford,,16 hours 44 mins,"1,796 km" +Orlando,Hartford,,17 hours 30 mins,"1,909 km" +Daytona Beach,Hartford,,16 hours 55 mins,"1,826 km" +Jacksonville,Hartford,,15 hours 32 mins,"1,684 km" +Tampa,Hartford,,18 hours 34 mins,"2,001 km" +Panama City,Hartford,,19 hours 34 mins,"2,106 km" +Key West,Hartford,,23 hours 30 mins,"2,493 km" +West Palm Beach,Hartford,,19 hours 27 mins,"2,140 km" +Miami,Hartford,,20 hours 26 mins,"2,241 km" +Tallahassee,Hartford,,17 hours 57 mins,"1,948 km" +Punta Gorda,Hartford,,19 hours 54 mins,"2,155 km" +Fort Lauderdale,Hartford,,20 hours 5 mins,"2,208 km" +Pensacola,Hartford,,19 hours 41 mins,"2,095 km" +Kalispell,San Diego,,19 hours 59 mins,"2,217 km" +Kalispell,Redding,,14 hours 41 mins,"1,446 km" +Kalispell,Sacramento,,17 hours 2 mins,"1,701 km" +Kalispell,Fresno,,19 hours 38 mins,"1,973 km" +Kalispell,San Luis Obispo,,21 hours 0 mins,"2,131 km" +Kalispell,Oakland,,17 hours 45 mins,"1,780 km" +Kalispell,Santa Barbara,,20 hours 29 mins,"2,261 km" +Kalispell,Stockton,,17 hours 44 mins,"1,776 km" +Kalispell,Santa Rosa,,18 hours 7 mins,"1,752 km" +Kalispell,Bakersfield,,19 hours 18 mins,"2,142 km" +Kalispell,Santa Ana,,19 hours 7 mins,"2,118 km" +Kalispell,Santa Maria,,21 hours 18 mins,"2,317 km" +Kalispell,San Jose,,18 hours 23 mins,"1,842 km" +Kalispell,Burbank,,19 hours 10 mins,"2,128 km" +Kalispell,Arcata,,16 hours 8 mins,"1,596 km" +Kalispell,Butte,,16 hours 19 mins,"1,597 km" +Kalispell,Palm Springs,,19 hours 12 mins,"2,133 km" +Kalispell,Los Angeles,,19 hours 6 mins,"2,118 km" +Kalispell,Long Beach,,19 hours 19 mins,"2,140 km" +Kalispell,San Francisco,,17 hours 55 mins,"1,790 km" +Kalispell,Monterey,,19 hours 25 mins,"1,950 km" +San Diego,Kalispell,,20 hours 1 min,"2,218 km" +Redding,Kalispell,,14 hours 37 mins,"1,446 km" +Sacramento,Kalispell,,16 hours 58 mins,"1,700 km" +Fresno,Kalispell,,19 hours 34 mins,"1,978 km" +San Luis Obispo,Kalispell,,20 hours 52 mins,"2,129 km" +Oakland,Kalispell,,17 hours 41 mins,"1,780 km" +Santa Barbara,Kalispell,,20 hours 28 mins,"2,262 km" +Stockton,Kalispell,,17 hours 40 mins,"1,777 km" +Santa Rosa,Kalispell,,18 hours 2 mins,"1,752 km" +Bakersfield,Kalispell,,19 hours 21 mins,"2,145 km" +Santa Ana,Kalispell,,19 hours 4 mins,"2,115 km" +Santa Maria,Kalispell,,21 hours 22 mins,"2,182 km" +San Jose,Kalispell,,18 hours 16 mins,"1,841 km" +Burbank,Kalispell,,19 hours 4 mins,"2,123 km" +Arcata,Kalispell,,16 hours 5 mins,"1,594 km" +Butte,Kalispell,,16 hours 13 mins,"1,591 km" +Palm Springs,Kalispell,,19 hours 9 mins,"2,132 km" +Los Angeles,Kalispell,,19 hours 3 mins,"2,119 km" +Long Beach,Kalispell,,19 hours 21 mins,"2,146 km" +San Francisco,Kalispell,,17 hours 48 mins,"1,789 km" +Monterey,Kalispell,,19 hours 17 mins,"1,948 km" +Greer,Sarasota,,9 hours 29 mins,"1,030 km" +Greer,Fort Myers,,10 hours 27 mins,"1,135 km" +Greer,Gainesville,,6 hours 49 mins,740 km +Greer,Orlando,,7 hours 42 mins,857 km +Greer,Daytona Beach,,7 hours 5 mins,783 km +Greer,Jacksonville,,5 hours 39 mins,629 km +Greer,Tampa,,8 hours 42 mins,946 km +Greer,Panama City,,7 hours 17 mins,720 km +Greer,Key West,,13 hours 38 mins,"1,440 km" +Greer,West Palm Beach,,9 hours 38 mins,"1,088 km" +Greer,Miami,,10 hours 38 mins,"1,186 km" +Greer,Tallahassee,,6 hours 41 mins,669 km +Greer,Punta Gorda,,10 hours 1 min,"1,100 km" +Greer,Fort Lauderdale,,10 hours 15 mins,"1,156 km" +Greer,Pensacola,,7 hours 19 mins,777 km +Sarasota,Greer,,9 hours 34 mins,"1,067 km" +Fort Myers,Greer,,10 hours 31 mins,"1,173 km" +Gainesville,Greer,,6 hours 53 mins,742 km +Orlando,Greer,,7 hours 39 mins,855 km +Daytona Beach,Greer,,7 hours 4 mins,772 km +Jacksonville,Greer,,5 hours 42 mins,630 km +Tampa,Greer,,8 hours 46 mins,982 km +Panama City,Greer,,7 hours 15 mins,721 km +Key West,Greer,,13 hours 39 mins,"1,439 km" +West Palm Beach,Greer,,9 hours 36 mins,"1,086 km" +Miami,Greer,,10 hours 36 mins,"1,187 km" +Tallahassee,Greer,,6 hours 41 mins,668 km +Punta Gorda,Greer,,10 hours 6 mins,"1,136 km" +Fort Lauderdale,Greer,,10 hours 15 mins,"1,154 km" +Pensacola,Greer,,7 hours 16 mins,777 km +Newark,State College,,3 hours 42 mins,366 km +Newark,Johnstown,,4 hours 51 mins,473 km +Newark,Harrisburg,,2 hours 38 mins,258 km +Newark,Erie,,6 hours 27 mins,679 km +Newark,Pittsburgh,,5 hours 43 mins,580 km +Newark,Latrobe,,5 hours 18 mins,505 km +Newark,Philadelphia,,1 hour 28 mins,138 km +Newark,Lewisburg,,2 hours 46 mins,264 km +Newark,Scranton,,1 hour 56 mins,179 km +State College,Newark,,3 hours 34 mins,365 km +Johnstown,Newark,,4 hours 47 mins,491 km +Harrisburg,Newark,,2 hours 38 mins,257 km +Erie,Newark,,6 hours 23 mins,680 km +Pittsburgh,Newark,,5 hours 44 mins,580 km +Latrobe,Newark,,5 hours 15 mins,534 km +Philadelphia,Newark,,1 hour 29 mins,138 km +Lewisburg,Newark,,2 hours 39 mins,262 km +Scranton,Newark,,1 hour 51 mins,179 km +Provo,San Diego,,10 hours 13 mins,"1,137 km" +Provo,Redding,,11 hours 16 mins,"1,210 km" +Provo,Sacramento,,10 hours 6 mins,"1,107 km" +Provo,Fresno,,11 hours 9 mins,"1,239 km" +Provo,San Luis Obispo,,11 hours 45 mins,"1,282 km" +Provo,Oakland,,11 hours 20 mins,"1,237 km" +Provo,Santa Barbara,,10 hours 44 mins,"1,181 km" +Provo,Stockton,,10 hours 49 mins,"1,184 km" +Provo,Santa Rosa,,11 hours 39 mins,"1,262 km" +Provo,Bakersfield,,9 hours 32 mins,"1,063 km" +Provo,Santa Ana,,9 hours 21 mins,"1,038 km" +Provo,Santa Maria,,11 hours 32 mins,"1,237 km" +Provo,San Jose,,11 hours 58 mins,"1,300 km" +Provo,Burbank,,9 hours 24 mins,"1,048 km" +Provo,Arcata,,14 hours 2 mins,"1,434 km" +Provo,Butte,,10 hours 48 mins,"1,146 km" +Provo,Palm Springs,,9 hours 26 mins,"1,053 km" +Provo,Los Angeles,,9 hours 21 mins,"1,038 km" +Provo,Long Beach,,9 hours 33 mins,"1,061 km" +Provo,San Francisco,,11 hours 29 mins,"1,247 km" +Provo,Monterey,,12 hours 59 mins,"1,407 km" +San Diego,Provo,,10 hours 14 mins,"1,137 km" +Redding,Provo,,11 hours 13 mins,"1,216 km" +Sacramento,Provo,,10 hours 7 mins,"1,114 km" +Fresno,Provo,,11 hours 9 mins,"1,239 km" +San Luis Obispo,Provo,,11 hours 44 mins,"1,284 km" +Oakland,Provo,,11 hours 18 mins,"1,243 km" +Santa Barbara,Provo,,10 hours 41 mins,"1,180 km" +Stockton,Provo,,10 hours 49 mins,"1,190 km" +Santa Rosa,Provo,,11 hours 39 mins,"1,269 km" +Bakersfield,Provo,,9 hours 34 mins,"1,063 km" +Santa Ana,Provo,,9 hours 17 mins,"1,034 km" +Santa Maria,Provo,,11 hours 33 mins,"1,239 km" +San Jose,Provo,,11 hours 53 mins,"1,304 km" +Burbank,Provo,,9 hours 17 mins,"1,041 km" +Arcata,Provo,,13 hours 58 mins,"1,440 km" +Butte,Provo,,10 hours 46 mins,"1,152 km" +Palm Springs,Provo,,9 hours 22 mins,"1,051 km" +Los Angeles,Provo,,9 hours 16 mins,"1,038 km" +Long Beach,Provo,,9 hours 34 mins,"1,065 km" +San Francisco,Provo,,11 hours 25 mins,"1,253 km" +Monterey,Provo,,12 hours 54 mins,"1,411 km" +Houston,Pellston,,21 hours 27 mins,"2,296 km" +Houston,Traverse City,,20 hours 21 mins,"2,199 km" +Houston,Alpena,,22 hours 0 mins,"2,354 km" +Houston,Iron Mountain,,, +Houston,Kalamazoo,,17 hours 50 mins,"1,921 km" +Houston,Saginaw,,20 hours 1 min,"2,156 km" +Houston,Grand Rapids,,18 hours 15 mins,"1,970 km" +Houston,Lansing,,18 hours 50 mins,"2,036 km" +Houston,Muskegon,,18 hours 31 mins,"1,985 km" +Houston,Hancock,,, +Houston,Detroit,,19 hours 28 mins,"2,092 km" +Houston,Escanaba,,20 hours 53 mins,"2,209 km" +Pellston,Houston,,21 hours 30 mins,"2,281 km" +Traverse City,Houston,,20 hours 26 mins,"2,186 km" +Alpena,Houston,,21 hours 59 mins,"2,338 km" +Iron Mountain,Houston,,, +Kalamazoo,Houston,,17 hours 53 mins,"1,907 km" +Saginaw,Houston,,20 hours 0 mins,"2,139 km" +Grand Rapids,Houston,,18 hours 16 mins,"1,958 km" +Lansing,Houston,,18 hours 52 mins,"2,022 km" +Muskegon,Houston,,18 hours 33 mins,"1,970 km" +Hancock,Houston,,, +Detroit,Houston,,19 hours 34 mins,"2,079 km" +Escanaba,Houston,,20 hours 52 mins,"2,206 km" +Wilmington,Abilene,,19 hours 55 mins,"2,222 km" +Wilmington,Amarillo,,22 hours 4 mins,"2,468 km" +Wilmington,Harlingen,,22 hours 16 mins,"2,470 km" +Wilmington,Lubbock,,22 hours 19 mins,"2,487 km" +Wilmington,College Station,,18 hours 32 mins,"2,000 km" +Wilmington,Corpus Christi,,20 hours 31 mins,"2,275 km" +Wilmington,Wichita Falls,,19 hours 21 mins,"2,160 km" +Wilmington,Waco,,18 hours 23 mins,"2,009 km" +Wilmington,San Angelo,,21 hours 11 mins,"2,351 km" +Wilmington,Houston,,17 hours 24 mins,"1,942 km" +Wilmington,San Antonio,,20 hours 16 mins,"2,256 km" +Wilmington,Del Rio,,22 hours 39 mins,"2,503 km" +Wilmington,Mission,,, +Wilmington,Beaumont,,, +Wilmington,Longview,,15 hours 39 mins,"1,738 km" +Wilmington,Midland,,22 hours 4 mins,"2,463 km" +Wilmington,El Paso,,1 day 2 hours,"2,953 km" +Wilmington,Brownsville,,22 hours 38 mins,"2,509 km" +Wilmington,Austin,,19 hours 50 mins,"2,175 km" +Wilmington,Dallas,,17 hours 20 mins,"1,934 km" +Wilmington,Killeen,,19 hours 14 mins,"2,109 km" +Wilmington,Laredo,,22 hours 23 mins,"2,447 km" +Wilmington,Texarkana,,15 hours 41 mins,"1,749 km" +Abilene,Wilmington,,19 hours 53 mins,"2,222 km" +Amarillo,Wilmington,,22 hours 0 mins,"2,454 km" +Harlingen,Wilmington,,22 hours 8 mins,"2,468 km" +Lubbock,Wilmington,,22 hours 12 mins,"2,487 km" +College Station,Wilmington,,18 hours 25 mins,"1,998 km" +Corpus Christi,Wilmington,,20 hours 30 mins,"2,279 km" +Wichita Falls,Wilmington,,19 hours 22 mins,"2,151 km" +Waco,Wilmington,,18 hours 19 mins,"2,008 km" +San Angelo,Wilmington,,21 hours 5 mins,"2,346 km" +Houston,Wilmington,,17 hours 20 mins,"1,940 km" +San Antonio,Wilmington,,20 hours 13 mins,"2,254 km" +Del Rio,Wilmington,,22 hours 38 mins,"2,501 km" +Mission,Wilmington,,, +Beaumont,Wilmington,,, +Longview,Wilmington,,15 hours 35 mins,"1,732 km" +Midland,Wilmington,,21 hours 59 mins,"2,462 km" +El Paso,Wilmington,,1 day 2 hours,"2,952 km" +Brownsville,Wilmington,,22 hours 32 mins,"2,508 km" +Austin,Wilmington,,19 hours 45 mins,"2,169 km" +Dallas,Wilmington,,17 hours 18 mins,"1,931 km" +Killeen,Wilmington,,19 hours 9 mins,"2,104 km" +Laredo,Wilmington,,22 hours 16 mins,"2,446 km" +Texarkana,Wilmington,,15 hours 40 mins,"1,750 km" +Burbank,Seattle,,17 hours 9 mins,"1,811 km" +Burbank,Wenatchee,,18 hours 12 mins,"1,834 km" +Burbank,Pasco,,, +Burbank,Yakima,,16 hours 24 mins,"1,653 km" +Burbank,Walla Walla,,16 hours 19 mins,"1,660 km" +Burbank,Everett,,17 hours 38 mins,"1,856 km" +Burbank,Spokane,,18 hours 40 mins,"1,920 km" +Seattle,Burbank,,17 hours 8 mins,"1,812 km" +Wenatchee,Burbank,,18 hours 17 mins,"1,825 km" +Pasco,Burbank,,, +Yakima,Burbank,,16 hours 28 mins,"1,654 km" +Walla Walla,Burbank,,16 hours 32 mins,"1,663 km" +Everett,Burbank,,17 hours 35 mins,"1,857 km" +Spokane,Burbank,,18 hours 44 mins,"1,921 km" +Des Moines,Nashville,,9 hours 55 mins,"1,057 km" +Des Moines,Bristol,,, +Des Moines,Knoxville,,12 hours 8 mins,"1,337 km" +Des Moines,Chattanooga,,11 hours 49 mins,"1,266 km" +Des Moines,Memphis,,9 hours 16 mins,994 km +Nashville,Des Moines,,9 hours 55 mins,"1,060 km" +Bristol,Des Moines,,, +Knoxville,Des Moines,,12 hours 16 mins,"1,339 km" +Chattanooga,Des Moines,,11 hours 51 mins,"1,270 km" +Memphis,Des Moines,,9 hours 18 mins,996 km +Sacramento,North Bend,,11 hours 45 mins,"1,226 km" +Sacramento,Portland,,8 hours 56 mins,932 km +Sacramento,Medford,,4 hours 51 mins,495 km +Sacramento,Bend,,6 hours 59 mins,702 km +Sacramento,Eugene,,7 hours 20 mins,761 km +North Bend,Sacramento,,11 hours 48 mins,"1,226 km" +Portland,Sacramento,,8 hours 59 mins,932 km +Medford,Sacramento,,4 hours 53 mins,495 km +Bend,Sacramento,,7 hours 1 min,702 km +Eugene,Sacramento,,7 hours 21 mins,763 km +Phoenix,Bozeman,,16 hours 20 mins,"1,721 km" +Bozeman,Phoenix,,16 hours 28 mins,"1,723 km" +Austin,State College,,23 hours 2 mins,"2,500 km" +Austin,Johnstown,,21 hours 57 mins,"2,388 km" +Austin,Harrisburg,,22 hours 59 mins,"2,538 km" +Austin,Erie,,21 hours 29 mins,"2,371 km" +Austin,Pittsburgh,,20 hours 45 mins,"2,278 km" +Austin,Latrobe,,21 hours 23 mins,"2,324 km" +Austin,Philadelphia,,1 day 0 hours,"2,674 km" +Austin,Lewisburg,,23 hours 48 mins,"2,624 km" +Austin,Scranton,,1 day 1 hour,"2,726 km" +State College,Austin,,23 hours 8 mins,"2,509 km" +Johnstown,Austin,,22 hours 4 mins,"2,390 km" +Harrisburg,Austin,,23 hours 4 mins,"2,539 km" +Erie,Austin,,21 hours 36 mins,"2,373 km" +Pittsburgh,Austin,,20 hours 51 mins,"2,283 km" +Latrobe,Austin,,21 hours 27 mins,"2,328 km" +Philadelphia,Austin,,1 day 0 hours,"2,675 km" +Lewisburg,Austin,,23 hours 52 mins,"2,626 km" +Scranton,Austin,,1 day 1 hour,"2,726 km" +Washington,Traverse City,,11 hours 36 mins,"1,221 km" +Traverse City,Washington,,11 hours 50 mins,"1,221 km" +Greensboro,Abilene,,18 hours 50 mins,"2,086 km" +Greensboro,Amarillo,,20 hours 21 mins,"2,251 km" +Greensboro,Harlingen,,21 hours 12 mins,"2,337 km" +Greensboro,Lubbock,,21 hours 13 mins,"2,351 km" +Greensboro,College Station,,17 hours 25 mins,"1,859 km" +Greensboro,Corpus Christi,,19 hours 27 mins,"2,142 km" +Greensboro,Wichita Falls,,18 hours 16 mins,"2,024 km" +Greensboro,Waco,,17 hours 16 mins,"1,868 km" +Greensboro,San Angelo,,20 hours 2 mins,"2,206 km" +Greensboro,Houston,,16 hours 20 mins,"1,809 km" +Greensboro,San Antonio,,19 hours 12 mins,"2,123 km" +Greensboro,Del Rio,,21 hours 36 mins,"2,370 km" +Greensboro,Mission,,, +Greensboro,Beaumont,,, +Greensboro,Longview,,14 hours 31 mins,"1,593 km" +Greensboro,Midland,,20 hours 56 mins,"2,322 km" +Greensboro,El Paso,,1 day 1 hour,"2,817 km" +Greensboro,Brownsville,,21 hours 34 mins,"2,376 km" +Greensboro,Austin,,18 hours 43 mins,"2,034 km" +Greensboro,Dallas,,16 hours 15 mins,"1,798 km" +Greensboro,Killeen,,18 hours 6 mins,"1,968 km" +Greensboro,Laredo,,21 hours 19 mins,"2,315 km" +Greensboro,Texarkana,,14 hours 9 mins,"1,533 km" +Abilene,Greensboro,,18 hours 49 mins,"2,082 km" +Amarillo,Greensboro,,20 hours 19 mins,"2,252 km" +Harlingen,Greensboro,,21 hours 7 mins,"2,337 km" +Lubbock,Greensboro,,21 hours 7 mins,"2,348 km" +College Station,Greensboro,,17 hours 20 mins,"1,859 km" +Corpus Christi,Greensboro,,19 hours 29 mins,"2,148 km" +Wichita Falls,Greensboro,,18 hours 17 mins,"2,012 km" +Waco,Greensboro,,17 hours 14 mins,"1,868 km" +San Angelo,Greensboro,,20 hours 0 mins,"2,207 km" +Houston,Greensboro,,16 hours 19 mins,"1,809 km" +San Antonio,Greensboro,,19 hours 12 mins,"2,123 km" +Del Rio,Greensboro,,21 hours 38 mins,"2,370 km" +Mission,Greensboro,,, +Beaumont,Greensboro,,, +Longview,Greensboro,,14 hours 30 mins,"1,593 km" +Midland,Greensboro,,20 hours 54 mins,"2,322 km" +El Paso,Greensboro,,1 day 1 hour,"2,812 km" +Brownsville,Greensboro,,21 hours 31 mins,"2,377 km" +Austin,Greensboro,,18 hours 40 mins,"2,030 km" +Dallas,Greensboro,,16 hours 14 mins,"1,791 km" +Killeen,Greensboro,,18 hours 5 mins,"1,964 km" +Laredo,Greensboro,,21 hours 15 mins,"2,315 km" +Texarkana,Greensboro,,14 hours 7 mins,"1,533 km" +St. Louis,Baltimore,,12 hours 30 mins,"1,321 km" +Baltimore,St. Louis,,12 hours 27 mins,"1,321 km" +Dallas,Charlotte,,15 hours 2 mins,"1,651 km" +Charlotte,Dallas,,15 hours 2 mins,"1,657 km" +Sarasota,Abilene,,19 hours 25 mins,"2,156 km" +Sarasota,Amarillo,,22 hours 16 mins,"2,454 km" +Sarasota,Harlingen,,19 hours 36 mins,"2,191 km" +Sarasota,Lubbock,,21 hours 47 mins,"2,416 km" +Sarasota,College Station,,16 hours 8 mins,"1,809 km" +Sarasota,Corpus Christi,,17 hours 50 mins,"1,997 km" +Sarasota,Wichita Falls,,18 hours 50 mins,"2,089 km" +Sarasota,Waco,,17 hours 27 mins,"1,919 km" +Sarasota,San Angelo,,20 hours 26 mins,"2,247 km" +Sarasota,Houston,,14 hours 44 mins,"1,663 km" +Sarasota,San Antonio,,17 hours 36 mins,"1,977 km" +Sarasota,Del Rio,,19 hours 59 mins,"2,224 km" +Sarasota,Mission,,, +Sarasota,Beaumont,,, +Sarasota,Longview,,15 hours 8 mins,"1,667 km" +Sarasota,Midland,,21 hours 34 mins,"2,396 km" +Sarasota,El Paso,,1 day 1 hour,"2,862 km" +Sarasota,Brownsville,,19 hours 58 mins,"2,231 km" +Sarasota,Austin,,17 hours 11 mins,"1,926 km" +Sarasota,Dallas,,16 hours 50 mins,"1,867 km" +Sarasota,Killeen,,17 hours 47 mins,"1,959 km" +Sarasota,Laredo,,19 hours 43 mins,"2,169 km" +Sarasota,Texarkana,,15 hours 10 mins,"1,678 km" +Abilene,Sarasota,,19 hours 25 mins,"2,150 km" +Amarillo,Sarasota,,22 hours 16 mins,"2,442 km" +Harlingen,Sarasota,,19 hours 33 mins,"2,190 km" +Lubbock,Sarasota,,21 hours 44 mins,"2,416 km" +College Station,Sarasota,,16 hours 7 mins,"1,811 km" +Corpus Christi,Sarasota,,17 hours 55 mins,"2,001 km" +Wichita Falls,Sarasota,,18 hours 54 mins,"2,080 km" +Waco,Sarasota,,17 hours 28 mins,"1,918 km" +San Angelo,Sarasota,,20 hours 26 mins,"2,246 km" +Houston,Sarasota,,14 hours 44 mins,"1,662 km" +San Antonio,Sarasota,,17 hours 37 mins,"1,976 km" +Del Rio,Sarasota,,20 hours 3 mins,"2,223 km" +Mission,Sarasota,,, +Beaumont,Sarasota,,, +Longview,Sarasota,,15 hours 7 mins,"1,660 km" +Midland,Sarasota,,21 hours 31 mins,"2,390 km" +El Paso,Sarasota,,1 day 1 hour,"2,861 km" +Brownsville,Sarasota,,19 hours 56 mins,"2,230 km" +Austin,Sarasota,,17 hours 12 mins,"1,926 km" +Dallas,Sarasota,,16 hours 51 mins,"1,859 km" +Killeen,Sarasota,,17 hours 46 mins,"1,974 km" +Laredo,Sarasota,,19 hours 40 mins,"2,168 km" +Texarkana,Sarasota,,15 hours 12 mins,"1,678 km" +Chicago,Abilene,,15 hours 46 mins,"1,743 km" +Chicago,Amarillo,,15 hours 17 mins,"1,695 km" +Chicago,Harlingen,,21 hours 6 mins,"2,256 km" +Chicago,Lubbock,,16 hours 39 mins,"1,834 km" +Chicago,College Station,,16 hours 15 mins,"1,701 km" +Chicago,Corpus Christi,,19 hours 21 mins,"2,061 km" +Chicago,Wichita Falls,,13 hours 32 mins,"1,499 km" +Chicago,Waco,,15 hours 28 mins,"1,644 km" +Chicago,San Angelo,,17 hours 2 mins,"1,877 km" +Chicago,Houston,,16 hours 14 mins,"1,728 km" +Chicago,San Antonio,,18 hours 4 mins,"1,930 km" +Chicago,Del Rio,,19 hours 27 mins,"2,130 km" +Chicago,Mission,,, +Chicago,Beaumont,,, +Chicago,Longview,,13 hours 6 mins,"1,404 km" +Chicago,Midland,,17 hours 37 mins,"1,945 km" +Chicago,El Paso,,21 hours 52 mins,"2,393 km" +Chicago,Brownsville,,21 hours 28 mins,"2,295 km" +Chicago,Austin,,16 hours 52 mins,"1,803 km" +Chicago,Dallas,,14 hours 4 mins,"1,490 km" +Chicago,Killeen,,16 hours 16 mins,"1,738 km" +Chicago,Laredo,,20 hours 20 mins,"2,180 km" +Chicago,Texarkana,,11 hours 40 mins,"1,263 km" +Abilene,Chicago,,15 hours 48 mins,"1,743 km" +Amarillo,Chicago,,15 hours 18 mins,"1,694 km" +Harlingen,Chicago,,21 hours 1 min,"2,270 km" +Lubbock,Chicago,,16 hours 38 mins,"1,833 km" +College Station,Chicago,,16 hours 10 mins,"1,712 km" +Corpus Christi,Chicago,,19 hours 23 mins,"2,081 km" +Wichita Falls,Chicago,,13 hours 32 mins,"1,499 km" +Waco,Chicago,,15 hours 28 mins,"1,709 km" +San Angelo,Chicago,,17 hours 2 mins,"1,877 km" +Houston,Chicago,,16 hours 12 mins,"1,743 km" +San Antonio,Chicago,,18 hours 4 mins,"1,997 km" +Del Rio,Chicago,,19 hours 25 mins,"2,130 km" +Mission,Chicago,,, +Beaumont,Chicago,,, +Longview,Chicago,,13 hours 5 mins,"1,417 km" +Midland,Chicago,,17 hours 38 mins,"1,946 km" +El Paso,Chicago,,21 hours 50 mins,"2,390 km" +Brownsville,Chicago,,21 hours 25 mins,"2,310 km" +Austin,Chicago,,16 hours 53 mins,"1,871 km" +Dallas,Chicago,,14 hours 6 mins,"1,491 km" +Killeen,Chicago,,16 hours 17 mins,"1,805 km" +Laredo,Chicago,,20 hours 21 mins,"2,248 km" +Texarkana,Chicago,,11 hours 37 mins,"1,276 km" +Sioux Falls,Flagstaff,,20 hours 6 mins,"2,085 km" +Sioux Falls,Yuma,,1 day 1 hour,"2,573 km" +Sioux Falls,Phoenix,,21 hours 58 mins,"2,279 km" +Sioux Falls,Prescott,,21 hours 38 mins,"2,237 km" +Sioux Falls,Tucson,,22 hours 4 mins,"2,334 km" +Flagstaff,Sioux Falls,,19 hours 57 mins,"2,086 km" +Yuma,Sioux Falls,,1 day 1 hour,"2,598 km" +Phoenix,Sioux Falls,,21 hours 53 mins,"2,280 km" +Prescott,Sioux Falls,,21 hours 28 mins,"2,239 km" +Tucson,Sioux Falls,,21 hours 59 mins,"2,335 km" +Dallas,Lynchburg,,17 hours 4 mins,"1,856 km" +Dallas,Richmond,,18 hours 37 mins,"2,054 km" +Dallas,Petersburg,,18 hours 41 mins,"2,075 km" +Dallas,Newport News,,19 hours 35 mins,"2,161 km" +Dallas,Charlottesville,,17 hours 41 mins,"1,945 km" +Dallas,Staunton,,17 hours 12 mins,"1,890 km" +Dallas,Jamestown,,19 hours 31 mins,"2,143 km" +Dallas,Norfolk,,19 hours 52 mins,"2,165 km" +Dallas,Roanoke,,16 hours 5 mins,"1,771 km" +Lynchburg,Dallas,,17 hours 7 mins,"1,861 km" +Richmond,Dallas,,18 hours 40 mins,"2,056 km" +Petersburg,Dallas,,18 hours 42 mins,"2,079 km" +Newport News,Dallas,,19 hours 37 mins,"2,164 km" +Charlottesville,Dallas,,17 hours 42 mins,"1,945 km" +Staunton,Dallas,,17 hours 13 mins,"1,891 km" +Jamestown,Dallas,,19 hours 32 mins,"2,146 km" +Norfolk,Dallas,,19 hours 54 mins,"2,175 km" +Roanoke,Dallas,,16 hours 8 mins,"1,772 km" +Sacramento,Denver,,17 hours 7 mins,"1,876 km" +Denver,Sacramento,,17 hours 9 mins,"1,875 km" +Chicago,Albuquerque,,19 hours 20 mins,"2,153 km" +Albuquerque,Chicago,,19 hours 20 mins,"2,151 km" +Boston,Syracuse,,4 hours 43 mins,502 km +Syracuse,Boston,,4 hours 43 mins,502 km +Rapid City,Bemidji,,9 hours 45 mins,"1,004 km" +Rapid City,Minneapolis,,8 hours 18 mins,927 km +Rapid City,Duluth,,10 hours 28 mins,"1,172 km" +Rapid City,Brainerd,,9 hours 18 mins,988 km +Rapid City,Gustavus,,7 hours 10 mins,815 km +Rapid City,St. Cloud,,8 hours 25 mins,902 km +Rapid City,Hibbing,,11 hours 16 mins,"1,131 km" +Rapid City,International Falls,,11 hours 37 mins,"1,179 km" +Bemidji,Rapid City,,9 hours 46 mins,"1,005 km" +Minneapolis,Rapid City,,8 hours 21 mins,925 km +Duluth,Rapid City,,10 hours 31 mins,"1,172 km" +Brainerd,Rapid City,,9 hours 24 mins,988 km +Gustavus,Rapid City,,7 hours 14 mins,815 km +St. Cloud,Rapid City,,8 hours 31 mins,901 km +Hibbing,Rapid City,,11 hours 18 mins,"1,131 km" +International Falls,Rapid City,,11 hours 39 mins,"1,178 km" +Norfolk,Moline,,15 hours 28 mins,"1,643 km" +Norfolk,Belleville,,13 hours 35 mins,"1,452 km" +Norfolk,Bloomington,,11 hours 39 mins,"1,217 km" +Norfolk,Champaign,,12 hours 51 mins,"1,352 km" +Norfolk,Chicago,,13 hours 29 mins,"1,424 km" +Norfolk,Rockford,,14 hours 53 mins,"1,564 km" +Norfolk,Peoria,,14 hours 5 mins,"1,492 km" +Moline,Norfolk,,15 hours 25 mins,"1,639 km" +Belleville,Norfolk,,13 hours 35 mins,"1,448 km" +Bloomington,Norfolk,,11 hours 40 mins,"1,216 km" +Champaign,Norfolk,,12 hours 51 mins,"1,348 km" +Chicago,Norfolk,,13 hours 33 mins,"1,427 km" +Rockford,Norfolk,,14 hours 58 mins,"1,576 km" +Peoria,Norfolk,,14 hours 4 mins,"1,490 km" +New York,Charlottesville,,5 hours 46 mins,550 km +Charlottesville,New York,,5 hours 46 mins,549 km +Punta Gorda,Abilene,,19 hours 57 mins,"2,225 km" +Punta Gorda,Amarillo,,22 hours 46 mins,"2,519 km" +Punta Gorda,Harlingen,,20 hours 7 mins,"2,261 km" +Punta Gorda,Lubbock,,22 hours 19 mins,"2,485 km" +Punta Gorda,College Station,,16 hours 39 mins,"1,878 km" +Punta Gorda,Corpus Christi,,18 hours 22 mins,"2,066 km" +Punta Gorda,Wichita Falls,,19 hours 23 mins,"2,163 km" +Punta Gorda,Waco,,17 hours 59 mins,"1,988 km" +Punta Gorda,San Angelo,,20 hours 57 mins,"2,317 km" +Punta Gorda,Houston,,15 hours 15 mins,"1,733 km" +Punta Gorda,San Antonio,,18 hours 7 mins,"2,047 km" +Punta Gorda,Del Rio,,20 hours 31 mins,"2,294 km" +Punta Gorda,Mission,,, +Punta Gorda,Beaumont,,, +Punta Gorda,Longview,,15 hours 38 mins,"1,732 km" +Punta Gorda,Midland,,22 hours 5 mins,"2,466 km" +Punta Gorda,El Paso,,1 day 2 hours,"2,931 km" +Punta Gorda,Brownsville,,20 hours 29 mins,"2,300 km" +Punta Gorda,Austin,,17 hours 43 mins,"1,996 km" +Punta Gorda,Dallas,,17 hours 22 mins,"1,937 km" +Punta Gorda,Killeen,,18 hours 18 mins,"2,029 km" +Punta Gorda,Laredo,,20 hours 14 mins,"2,239 km" +Punta Gorda,Texarkana,,15 hours 41 mins,"1,747 km" +Abilene,Punta Gorda,,19 hours 58 mins,"2,220 km" +Amarillo,Punta Gorda,,22 hours 48 mins,"2,512 km" +Harlingen,Punta Gorda,,20 hours 5 mins,"2,260 km" +Lubbock,Punta Gorda,,22 hours 16 mins,"2,486 km" +College Station,Punta Gorda,,16 hours 39 mins,"1,881 km" +Corpus Christi,Punta Gorda,,18 hours 26 mins,"2,071 km" +Wichita Falls,Punta Gorda,,19 hours 26 mins,"2,150 km" +Waco,Punta Gorda,,18 hours 0 mins,"1,988 km" +San Angelo,Punta Gorda,,20 hours 58 mins,"2,316 km" +Houston,Punta Gorda,,15 hours 16 mins,"1,732 km" +San Antonio,Punta Gorda,,18 hours 9 mins,"2,046 km" +Del Rio,Punta Gorda,,20 hours 35 mins,"2,293 km" +Mission,Punta Gorda,,, +Beaumont,Punta Gorda,,, +Longview,Punta Gorda,,15 hours 39 mins,"1,731 km" +Midland,Punta Gorda,,22 hours 3 mins,"2,460 km" +El Paso,Punta Gorda,,1 day 2 hours,"2,931 km" +Brownsville,Punta Gorda,,20 hours 28 mins,"2,300 km" +Austin,Punta Gorda,,17 hours 43 mins,"1,996 km" +Dallas,Punta Gorda,,17 hours 22 mins,"1,929 km" +Killeen,Punta Gorda,,18 hours 18 mins,"2,045 km" +Laredo,Punta Gorda,,20 hours 12 mins,"2,238 km" +Texarkana,Punta Gorda,,15 hours 44 mins,"1,748 km" +Cedar Rapids,Moline,,1 hour 20 mins,138 km +Cedar Rapids,Belleville,,4 hours 42 mins,483 km +Cedar Rapids,Bloomington,,6 hours 33 mins,697 km +Cedar Rapids,Champaign,,3 hours 58 mins,429 km +Cedar Rapids,Chicago,,3 hours 48 mins,397 km +Cedar Rapids,Rockford,,3 hours 3 mins,265 km +Cedar Rapids,Peoria,,2 hours 40 mins,286 km +Moline,Cedar Rapids,,1 hour 20 mins,137 km +Belleville,Cedar Rapids,,4 hours 44 mins,484 km +Bloomington,Cedar Rapids,,6 hours 33 mins,697 km +Champaign,Cedar Rapids,,4 hours 0 mins,429 km +Chicago,Cedar Rapids,,3 hours 43 mins,395 km +Rockford,Cedar Rapids,,3 hours 3 mins,265 km +Peoria,Cedar Rapids,,2 hours 40 mins,286 km +Green Bay,Orlando,,19 hours 59 mins,"2,197 km" +Orlando,Green Bay,,19 hours 56 mins,"2,198 km" +Boise,San Diego,,14 hours 24 mins,"1,533 km" +San Diego,Boise,,14 hours 24 mins,"1,535 km" +Portland,San Diego,,16 hours 36 mins,"1,742 km" +Portland,Redding,,6 hours 37 mins,678 km +Portland,Sacramento,,8 hours 59 mins,932 km +Portland,Fresno,,11 hours 35 mins,"1,205 km" +Portland,San Luis Obispo,,12 hours 57 mins,"1,363 km" +Portland,Oakland,,9 hours 42 mins,"1,012 km" +Portland,Santa Barbara,,14 hours 30 mins,"1,514 km" +Portland,Stockton,,9 hours 40 mins,"1,008 km" +Portland,Santa Rosa,,10 hours 3 mins,984 km +Portland,Bakersfield,,13 hours 11 mins,"1,378 km" +Portland,Santa Ana,,15 hours 21 mins,"1,600 km" +Portland,Santa Maria,,13 hours 27 mins,"1,413 km" +Portland,San Jose,,10 hours 20 mins,"1,074 km" +Portland,Burbank,,14 hours 31 mins,"1,533 km" +Portland,Arcata,,7 hours 3 mins,650 km +Portland,Butte,,8 hours 15 mins,829 km +Portland,Palm Springs,,16 hours 15 mins,"1,719 km" +Portland,Los Angeles,,14 hours 45 mins,"1,550 km" +Portland,Long Beach,,15 hours 4 mins,"1,585 km" +Portland,San Francisco,,9 hours 51 mins,"1,021 km" +Portland,Monterey,,11 hours 21 mins,"1,182 km" +San Diego,Portland,,16 hours 38 mins,"1,741 km" +Redding,Portland,,6 hours 35 mins,678 km +Sacramento,Portland,,8 hours 56 mins,932 km +Fresno,Portland,,11 hours 32 mins,"1,209 km" +San Luis Obispo,Portland,,12 hours 50 mins,"1,361 km" +Oakland,Portland,,9 hours 39 mins,"1,012 km" +Santa Barbara,Portland,,14 hours 23 mins,"1,514 km" +Stockton,Portland,,9 hours 38 mins,"1,009 km" +Santa Rosa,Portland,,10 hours 0 mins,984 km +Bakersfield,Portland,,13 hours 7 mins,"1,382 km" +Santa Ana,Portland,,15 hours 21 mins,"1,600 km" +Santa Maria,Portland,,13 hours 20 mins,"1,414 km" +San Jose,Portland,,10 hours 14 mins,"1,073 km" +Burbank,Portland,,14 hours 30 mins,"1,532 km" +Arcata,Portland,,6 hours 57 mins,648 km +Butte,Portland,,8 hours 11 mins,823 km +Palm Springs,Portland,,16 hours 17 mins,"1,718 km" +Los Angeles,Portland,,14 hours 43 mins,"1,548 km" +Long Beach,Portland,,15 hours 6 mins,"1,586 km" +San Francisco,Portland,,9 hours 46 mins,"1,021 km" +Monterey,Portland,,11 hours 15 mins,"1,180 km" +Long Beach,Dallas,,20 hours 57 mins,"2,329 km" +Dallas,Long Beach,,20 hours 58 mins,"2,329 km" +Oakland,Seattle,,12 hours 18 mins,"1,290 km" +Oakland,Wenatchee,,13 hours 21 mins,"1,313 km" +Oakland,Pasco,,, +Oakland,Yakima,,11 hours 33 mins,"1,133 km" +Oakland,Walla Walla,,12 hours 14 mins,"1,223 km" +Oakland,Everett,,12 hours 47 mins,"1,335 km" +Oakland,Spokane,,13 hours 49 mins,"1,399 km" +Seattle,Oakland,,12 hours 19 mins,"1,290 km" +Wenatchee,Oakland,,13 hours 28 mins,"1,303 km" +Pasco,Oakland,,, +Yakima,Oakland,,11 hours 39 mins,"1,132 km" +Walla Walla,Oakland,,12 hours 21 mins,"1,223 km" +Everett,Oakland,,12 hours 47 mins,"1,335 km" +Spokane,Oakland,,13 hours 55 mins,"1,399 km" +Orlando,Cedar Rapids,,18 hours 34 mins,"2,053 km" +Orlando,Sioux City,,21 hours 50 mins,"2,439 km" +Orlando,Dubuque,,18 hours 49 mins,"2,085 km" +Orlando,Des Moines,,19 hours 40 mins,"2,159 km" +Orlando,Fort Dodge,,20 hours 49 mins,"2,296 km" +Orlando,Mason City,,20 hours 42 mins,"2,269 km" +Cedar Rapids,Orlando,,18 hours 38 mins,"2,051 km" +Sioux City,Orlando,,21 hours 56 mins,"2,440 km" +Dubuque,Orlando,,18 hours 54 mins,"2,085 km" +Des Moines,Orlando,,19 hours 43 mins,"2,156 km" +Fort Dodge,Orlando,,20 hours 53 mins,"2,294 km" +Mason City,Orlando,,20 hours 46 mins,"2,272 km" +Washington,Cleveland,,5 hours 55 mins,592 km +Cleveland,Washington,,6 hours 7 mins,593 km +Baltimore,Milwaukee,,12 hours 2 mins,"1,275 km" +Milwaukee,Baltimore,,12 hours 8 mins,"1,277 km" +Charlotte,Charlotte Amalie,,, +Charlotte Amalie,Charlotte,,, +Seattle,Ketchikan,,1 day 1 hour,"1,798 km" +Ketchikan,Seattle,,1 day 1 hour,"1,799 km" +Reno,Seattle,,11 hours 26 mins,"1,133 km" +Reno,Wenatchee,,12 hours 10 mins,"1,159 km" +Reno,Pasco,,, +Reno,Yakima,,10 hours 21 mins,978 km +Reno,Walla Walla,,9 hours 34 mins,999 km +Reno,Everett,,11 hours 55 mins,"1,179 km" +Reno,Spokane,,12 hours 0 mins,"1,268 km" +Seattle,Reno,,11 hours 26 mins,"1,133 km" +Wenatchee,Reno,,12 hours 15 mins,"1,149 km" +Pasco,Reno,,, +Yakima,Reno,,10 hours 26 mins,977 km +Walla Walla,Reno,,9 hours 38 mins,999 km +Everett,Reno,,11 hours 54 mins,"1,178 km" +Spokane,Reno,,12 hours 3 mins,"1,269 km" +Houston,Fayetteville,,16 hours 37 mins,"1,871 km" +Fayetteville,Houston,,16 hours 41 mins,"1,872 km" +Birmingham,Sarasota,,, +Birmingham,Fort Myers,,, +Birmingham,Gainesville,,, +Birmingham,Orlando,,, +Birmingham,Daytona Beach,,, +Birmingham,Jacksonville,,, +Birmingham,Tampa,,, +Birmingham,Panama City,,, +Birmingham,Key West,,, +Birmingham,West Palm Beach,,, +Birmingham,Miami,,, +Birmingham,Tallahassee,,, +Birmingham,Punta Gorda,,, +Birmingham,Fort Lauderdale,,, +Birmingham,Pensacola,,, +Sarasota,Birmingham,,, +Fort Myers,Birmingham,,, +Gainesville,Birmingham,,, +Orlando,Birmingham,,, +Daytona Beach,Birmingham,,, +Jacksonville,Birmingham,,, +Tampa,Birmingham,,, +Panama City,Birmingham,,, +Key West,Birmingham,,, +West Palm Beach,Birmingham,,, +Miami,Birmingham,,, +Tallahassee,Birmingham,,, +Punta Gorda,Birmingham,,, +Fort Lauderdale,Birmingham,,, +Pensacola,Birmingham,,, +Tampa,Abilene,,18 hours 37 mins,"2,071 km" +Tampa,Amarillo,,21 hours 28 mins,"2,369 km" +Tampa,Harlingen,,18 hours 48 mins,"2,106 km" +Tampa,Lubbock,,21 hours 1 min,"2,335 km" +Tampa,College Station,,15 hours 20 mins,"1,724 km" +Tampa,Corpus Christi,,17 hours 2 mins,"1,912 km" +Tampa,Wichita Falls,,18 hours 1 min,"2,004 km" +Tampa,Waco,,16 hours 39 mins,"1,834 km" +Tampa,San Angelo,,19 hours 38 mins,"2,162 km" +Tampa,Houston,,13 hours 55 mins,"1,578 km" +Tampa,San Antonio,,16 hours 48 mins,"1,892 km" +Tampa,Del Rio,,19 hours 11 mins,"2,139 km" +Tampa,Mission,,, +Tampa,Beaumont,,, +Tampa,Longview,,14 hours 20 mins,"1,582 km" +Tampa,Midland,,20 hours 44 mins,"2,307 km" +Tampa,El Paso,,1 day 0 hours,"2,777 km" +Tampa,Brownsville,,19 hours 9 mins,"2,146 km" +Tampa,Austin,,16 hours 23 mins,"1,841 km" +Tampa,Dallas,,16 hours 1 min,"1,778 km" +Tampa,Killeen,,16 hours 58 mins,"1,896 km" +Tampa,Laredo,,18 hours 54 mins,"2,084 km" +Tampa,Texarkana,,14 hours 22 mins,"1,593 km" +Abilene,Tampa,,18 hours 38 mins,"2,066 km" +Amarillo,Tampa,,21 hours 28 mins,"2,358 km" +Harlingen,Tampa,,18 hours 45 mins,"2,106 km" +Lubbock,Tampa,,20 hours 57 mins,"2,331 km" +College Station,Tampa,,15 hours 20 mins,"1,726 km" +Corpus Christi,Tampa,,17 hours 7 mins,"1,916 km" +Wichita Falls,Tampa,,18 hours 7 mins,"1,995 km" +Waco,Tampa,,16 hours 40 mins,"1,833 km" +San Angelo,Tampa,,19 hours 39 mins,"2,161 km" +Houston,Tampa,,13 hours 57 mins,"1,578 km" +San Antonio,Tampa,,16 hours 50 mins,"1,892 km" +Del Rio,Tampa,,19 hours 15 mins,"2,139 km" +Mission,Tampa,,, +Beaumont,Tampa,,, +Longview,Tampa,,14 hours 20 mins,"1,576 km" +Midland,Tampa,,20 hours 43 mins,"2,305 km" +El Paso,Tampa,,1 day 1 hour,"2,776 km" +Brownsville,Tampa,,19 hours 9 mins,"2,146 km" +Austin,Tampa,,16 hours 24 mins,"1,841 km" +Dallas,Tampa,,16 hours 3 mins,"1,774 km" +Killeen,Tampa,,16 hours 59 mins,"1,890 km" +Laredo,Tampa,,18 hours 53 mins,"2,084 km" +Texarkana,Tampa,,14 hours 25 mins,"1,594 km" +Austin,Kansas City,,10 hours 31 mins,"1,181 km" +Austin,Cape Girardeau,,11 hours 38 mins,"1,290 km" +Austin,Branson,,9 hours 34 mins,"1,000 km" +Austin,Fort Leonard Wood,,10 hours 47 mins,"1,129 km" +Austin,St. Louis,,12 hours 33 mins,"1,329 km" +Kansas City,Austin,,10 hours 32 mins,"1,181 km" +Cape Girardeau,Austin,,11 hours 44 mins,"1,292 km" +Branson,Austin,,9 hours 43 mins,"1,003 km" +Fort Leonard Wood,Austin,,10 hours 49 mins,"1,128 km" +St. Louis,Austin,,12 hours 33 mins,"1,327 km" +Denver,Medford,,19 hours 14 mins,"2,017 km" +Medford,Denver,,19 hours 12 mins,"2,019 km" +Baltimore,Lynchburg,,3 hours 52 mins,350 km +Baltimore,Richmond,,2 hours 29 mins,248 km +Baltimore,Petersburg,,2 hours 49 mins,284 km +Baltimore,Newport News,,3 hours 22 mins,347 km +Baltimore,Charlottesville,,2 hours 52 mins,247 km +Baltimore,Staunton,,3 hours 4 mins,313 km +Baltimore,Jamestown,,3 hours 17 mins,329 km +Baltimore,Norfolk,,3 hours 51 mins,386 km +Baltimore,Roanoke,,4 hours 15 mins,447 km +Lynchburg,Baltimore,,3 hours 55 mins,352 km +Richmond,Baltimore,,2 hours 34 mins,240 km +Petersburg,Baltimore,,2 hours 54 mins,276 km +Newport News,Baltimore,,3 hours 26 mins,339 km +Charlottesville,Baltimore,,2 hours 54 mins,248 km +Staunton,Baltimore,,3 hours 6 mins,314 km +Jamestown,Baltimore,,3 hours 22 mins,321 km +Norfolk,Baltimore,,3 hours 56 mins,378 km +Roanoke,Baltimore,,4 hours 18 mins,448 km +San Francisco,Tampa,,1 day 17 hours,"4,559 km" +Tampa,San Francisco,,1 day 17 hours,"4,569 km" +Washington,Toledo,,7 hours 14 mins,750 km +Washington,Cleveland,,5 hours 55 mins,592 km +Washington,Dayton,,7 hours 26 mins,755 km +Washington,Columbus,,6 hours 23 mins,641 km +Washington,Akron,,5 hours 33 mins,555 km +Washington,Cincinnati,,7 hours 55 mins,808 km +Toledo,Washington,,7 hours 26 mins,748 km +Cleveland,Washington,,6 hours 7 mins,593 km +Dayton,Washington,,7 hours 38 mins,751 km +Columbus,Washington,,6 hours 36 mins,638 km +Akron,Washington,,5 hours 46 mins,557 km +Cincinnati,Washington,,8 hours 5 mins,805 km +San Diego,Flagstaff,,7 hours 18 mins,785 km +San Diego,Yuma,,2 hours 41 mins,276 km +San Diego,Phoenix,,5 hours 22 mins,571 km +San Diego,Prescott,,6 hours 9 mins,599 km +San Diego,Tucson,,5 hours 56 mins,653 km +Flagstaff,San Diego,,7 hours 16 mins,777 km +Yuma,San Diego,,2 hours 41 mins,277 km +Phoenix,San Diego,,5 hours 19 mins,571 km +Prescott,San Diego,,6 hours 11 mins,598 km +Tucson,San Diego,,5 hours 53 mins,654 km +Columbus,Greensboro,,6 hours 24 mins,648 km +Columbus,Wilmington,,9 hours 17 mins,974 km +Columbus,New Bern,,9 hours 17 mins,953 km +Columbus,Charlotte,,6 hours 42 mins,684 km +Columbus,Raleigh,,7 hours 34 mins,768 km +Columbus,Asheville,,6 hours 56 mins,636 km +Columbus,Fayetteville,,7 hours 54 mins,793 km +Greensboro,Columbus,,6 hours 22 mins,647 km +Wilmington,Columbus,,9 hours 14 mins,974 km +New Bern,Columbus,,9 hours 14 mins,952 km +Charlotte,Columbus,,6 hours 41 mins,685 km +Raleigh,Columbus,,7 hours 29 mins,767 km +Asheville,Columbus,,6 hours 56 mins,636 km +Fayetteville,Columbus,,7 hours 52 mins,793 km +Milwaukee,Phoenix,,1 day 3 hours,"2,944 km" +Phoenix,Milwaukee,,1 day 3 hours,"2,943 km" +Bangor,Chicago,,17 hours 56 mins,"1,949 km" +Chicago,Bangor,,17 hours 53 mins,"1,947 km" +San Jose,Portland,,10 hours 14 mins,"1,073 km" +Portland,San Jose,,10 hours 20 mins,"1,074 km" +Hartford,Greensboro,,10 hours 7 mins,"1,056 km" +Hartford,Wilmington,,10 hours 54 mins,"1,144 km" +Hartford,New Bern,,10 hours 28 mins,"1,079 km" +Hartford,Charlotte,,11 hours 23 mins,"1,202 km" +Hartford,Raleigh,,9 hours 38 mins,"1,005 km" +Hartford,Asheville,,12 hours 20 mins,"1,307 km" +Hartford,Fayetteville,,10 hours 9 mins,"1,067 km" +Greensboro,Hartford,,10 hours 5 mins,"1,046 km" +Wilmington,Hartford,,10 hours 51 mins,"1,133 km" +New Bern,Hartford,,10 hours 24 mins,"1,081 km" +Charlotte,Hartford,,11 hours 21 mins,"1,189 km" +Raleigh,Hartford,,9 hours 35 mins,995 km +Asheville,Hartford,,12 hours 20 mins,"1,308 km" +Fayetteville,Hartford,,10 hours 7 mins,"1,056 km" +Rapid City,Alamosa,,9 hours 28 mins,998 km +Rapid City,Grand Junction,,9 hours 38 mins,"1,009 km" +Rapid City,Durango,,11 hours 49 mins,"1,159 km" +Rapid City,Colorado Springs,,6 hours 59 mins,735 km +Rapid City,Gunnison,,9 hours 23 mins,940 km +Rapid City,Denver,,6 hours 1 min,623 km +Alamosa,Rapid City,,9 hours 27 mins,998 km +Grand Junction,Rapid City,,9 hours 37 mins,"1,009 km" +Durango,Rapid City,,11 hours 48 mins,"1,160 km" +Colorado Springs,Rapid City,,6 hours 58 mins,735 km +Gunnison,Rapid City,,9 hours 23 mins,941 km +Denver,Rapid City,,6 hours 3 mins,626 km +Clarksburg,Chicago,,8 hours 18 mins,867 km +Chicago,Clarksburg,,8 hours 16 mins,867 km +Fort Dodge,Denver,,10 hours 24 mins,"1,131 km" +Denver,Fort Dodge,,10 hours 21 mins,"1,134 km" +Latrobe,Charleston,,10 hours 9 mins,"1,040 km" +Latrobe,Hilton Head,,10 hours 46 mins,"1,101 km" +Latrobe,Greer,,8 hours 25 mins,841 km +Latrobe,Greenville,,8 hours 31 mins,857 km +Latrobe,Myrtle Beach,,10 hours 2 mins,970 km +Charleston,Latrobe,,10 hours 13 mins,"1,039 km" +Hilton Head,Latrobe,,10 hours 48 mins,"1,100 km" +Greer,Latrobe,,8 hours 28 mins,844 km +Greenville,Latrobe,,8 hours 34 mins,858 km +Myrtle Beach,Latrobe,,9 hours 55 mins,997 km +Eugene,Salt Lake City,,12 hours 11 mins,"1,268 km" +Eugene,Moab,,15 hours 46 mins,"1,640 km" +Eugene,Ogden,,11 hours 42 mins,"1,212 km" +Eugene,Vernal,,15 hours 1 min,"1,542 km" +Eugene,Provo,,12 hours 49 mins,"1,337 km" +Eugene,Cedar City,,14 hours 38 mins,"1,484 km" +Salt Lake City,Eugene,,12 hours 13 mins,"1,267 km" +Moab,Eugene,,15 hours 49 mins,"1,639 km" +Ogden,Eugene,,11 hours 45 mins,"1,211 km" +Vernal,Eugene,,15 hours 7 mins,"1,541 km" +Provo,Eugene,,12 hours 51 mins,"1,336 km" +Cedar City,Eugene,,14 hours 39 mins,"1,482 km" +Dallas,San Diego,,19 hours 28 mins,"2,186 km" +Dallas,Redding,,1 day 4 hours,"3,043 km" +Dallas,Sacramento,,1 day 1 hour,"2,778 km" +Dallas,Fresno,,22 hours 42 mins,"2,508 km" +Dallas,San Luis Obispo,,23 hours 17 mins,"2,551 km" +Dallas,Oakland,,1 day 1 hour,"2,769 km" +Dallas,Santa Barbara,,22 hours 15 mins,"2,465 km" +Dallas,Stockton,,1 day 1 hour,"2,707 km" +Dallas,Santa Rosa,,1 day 2 hours,"2,862 km" +Dallas,Bakersfield,,21 hours 5 mins,"2,332 km" +Dallas,Santa Ana,,20 hours 38 mins,"2,314 km" +Dallas,Santa Maria,,23 hours 4 mins,"2,506 km" +Dallas,San Jose,,1 day 1 hour,"2,719 km" +Dallas,Burbank,,20 hours 56 mins,"2,332 km" +Dallas,Arcata,,1 day 6 hours,"3,222 km" +Dallas,Butte,,1 day 3 hours,"2,917 km" +Dallas,Palm Springs,,19 hours 15 mins,"2,144 km" +Dallas,Los Angeles,,20 hours 48 mins,"2,311 km" +Dallas,Long Beach,,20 hours 58 mins,"2,329 km" +Dallas,San Francisco,,1 day 1 hour,"2,787 km" +Dallas,Monterey,,1 day 1 hour,"2,686 km" +San Diego,Dallas,,19 hours 31 mins,"2,186 km" +Redding,Dallas,,1 day 4 hours,"3,039 km" +Sacramento,Dallas,,1 day 1 hour,"2,781 km" +Fresno,Dallas,,22 hours 44 mins,"2,508 km" +San Luis Obispo,Dallas,,23 hours 19 mins,"2,554 km" +Oakland,Dallas,,1 day 1 hour,"2,772 km" +Santa Barbara,Dallas,,22 hours 16 mins,"2,466 km" +Stockton,Dallas,,1 day 1 hour,"2,708 km" +Santa Rosa,Dallas,,1 day 2 hours,"2,864 km" +Bakersfield,Dallas,,21 hours 9 mins,"2,333 km" +Santa Ana,Dallas,,20 hours 40 mins,"2,295 km" +Santa Maria,Dallas,,23 hours 8 mins,"2,509 km" +San Jose,Dallas,,1 day 1 hour,"2,722 km" +Burbank,Dallas,,20 hours 52 mins,"2,327 km" +Arcata,Dallas,,1 day 6 hours,"3,226 km" +Butte,Dallas,,1 day 3 hours,"2,914 km" +Palm Springs,Dallas,,19 hours 15 mins,"2,144 km" +Los Angeles,Dallas,,20 hours 44 mins,"2,310 km" +Long Beach,Dallas,,20 hours 57 mins,"2,329 km" +San Francisco,Dallas,,1 day 1 hour,"2,790 km" +Monterey,Dallas,,1 day 1 hour,"2,688 km" +West Palm Beach,Atlanta,,8 hours 27 mins,963 km +Atlanta,West Palm Beach,,8 hours 29 mins,962 km +Los Angeles,Denver,,14 hours 52 mins,"1,635 km" +Denver,Los Angeles,,14 hours 58 mins,"1,636 km" +Columbus,Charlotte,,6 hours 42 mins,684 km +Charlotte,Columbus,,6 hours 41 mins,685 km +Minneapolis,Escanaba,,5 hours 51 mins,589 km +Escanaba,Minneapolis,,5 hours 51 mins,590 km +Sacramento,Seattle,,11 hours 35 mins,"1,211 km" +Sacramento,Wenatchee,,12 hours 38 mins,"1,234 km" +Sacramento,Pasco,,, +Sacramento,Yakima,,10 hours 49 mins,"1,053 km" +Sacramento,Walla Walla,,11 hours 31 mins,"1,143 km" +Sacramento,Everett,,12 hours 4 mins,"1,256 km" +Sacramento,Spokane,,13 hours 6 mins,"1,319 km" +Seattle,Sacramento,,11 hours 36 mins,"1,211 km" +Wenatchee,Sacramento,,12 hours 45 mins,"1,224 km" +Pasco,Sacramento,,, +Yakima,Sacramento,,10 hours 56 mins,"1,053 km" +Walla Walla,Sacramento,,11 hours 38 mins,"1,143 km" +Everett,Sacramento,,12 hours 4 mins,"1,256 km" +Spokane,Sacramento,,13 hours 12 mins,"1,320 km" +Denver,Abilene,,10 hours 37 mins,"1,146 km" +Denver,Amarillo,,6 hours 29 mins,699 km +Denver,Harlingen,,17 hours 32 mins,"1,911 km" +Denver,Lubbock,,8 hours 13 mins,882 km +Denver,College Station,,14 hours 9 mins,"1,523 km" +Denver,Corpus Christi,,15 hours 54 mins,"1,735 km" +Denver,Wichita Falls,,9 hours 54 mins,"1,059 km" +Denver,Waco,,12 hours 51 mins,"1,387 km" +Denver,San Angelo,,11 hours 0 mins,"1,177 km" +Denver,Houston,,15 hours 16 mins,"1,662 km" +Denver,San Antonio,,13 hours 56 mins,"1,503 km" +Denver,Del Rio,,13 hours 27 mins,"1,428 km" +Denver,Mission,,, +Denver,Beaumont,,, +Denver,Longview,,13 hours 48 mins,"1,486 km" +Denver,Midland,,9 hours 59 mins,"1,073 km" +Denver,El Paso,,9 hours 39 mins,"1,026 km" +Denver,Brownsville,,17 hours 54 mins,"1,950 km" +Denver,Austin,,14 hours 3 mins,"1,482 km" +Denver,Dallas,,11 hours 57 mins,"1,286 km" +Denver,Killeen,,13 hours 24 mins,"1,419 km" +Denver,Laredo,,16 hours 4 mins,"1,692 km" +Denver,Texarkana,,14 hours 13 mins,"1,556 km" +Abilene,Denver,,10 hours 36 mins,"1,130 km" +Amarillo,Denver,,6 hours 28 mins,698 km +Harlingen,Denver,,17 hours 27 mins,"1,894 km" +Lubbock,Denver,,8 hours 14 mins,881 km +College Station,Denver,,14 hours 6 mins,"1,519 km" +Corpus Christi,Denver,,15 hours 51 mins,"1,718 km" +Wichita Falls,Denver,,9 hours 54 mins,"1,057 km" +Waco,Denver,,12 hours 50 mins,"1,381 km" +San Angelo,Denver,,11 hours 1 min,"1,195 km" +Houston,Denver,,15 hours 16 mins,"1,659 km" +San Antonio,Denver,,13 hours 54 mins,"1,486 km" +Del Rio,Denver,,13 hours 26 mins,"1,438 km" +Mission,Denver,,, +Beaumont,Denver,,, +Longview,Denver,,13 hours 46 mins,"1,489 km" +Midland,Denver,,9 hours 59 mins,"1,071 km" +El Paso,Denver,,9 hours 34 mins,"1,025 km" +Brownsville,Denver,,17 hours 50 mins,"1,934 km" +Austin,Denver,,14 hours 3 mins,"1,467 km" +Dallas,Denver,,11 hours 56 mins,"1,282 km" +Killeen,Denver,,13 hours 24 mins,"1,403 km" +Laredo,Denver,,16 hours 4 mins,"1,677 km" +Texarkana,Denver,,14 hours 16 mins,"1,559 km" +Akron,Augusta,,9 hours 36 mins,"1,031 km" +Akron,Decatur,,10 hours 24 mins,"1,122 km" +Akron,Atlanta,,10 hours 9 mins,"1,114 km" +Akron,Valdosta,,13 hours 26 mins,"1,482 km" +Akron,Savannah,,10 hours 51 mins,"1,174 km" +Augusta,Akron,,9 hours 39 mins,"1,033 km" +Decatur,Akron,,10 hours 26 mins,"1,121 km" +Atlanta,Akron,,10 hours 10 mins,"1,114 km" +Valdosta,Akron,,13 hours 25 mins,"1,481 km" +Savannah,Akron,,10 hours 53 mins,"1,173 km" +Detroit,Salt Lake City,,1 day 0 hours,"2,676 km" +Detroit,Moab,,23 hours 26 mins,"2,605 km" +Detroit,Ogden,,23 hours 57 mins,"2,668 km" +Detroit,Vernal,,23 hours 17 mins,"2,508 km" +Detroit,Provo,,1 day 1 hour,"2,704 km" +Detroit,Cedar City,,1 day 3 hours,"2,968 km" +Salt Lake City,Detroit,,23 hours 58 mins,"2,679 km" +Moab,Detroit,,23 hours 19 mins,"2,605 km" +Ogden,Detroit,,23 hours 51 mins,"2,669 km" +Vernal,Detroit,,23 hours 8 mins,"2,509 km" +Provo,Detroit,,1 day 0 hours,"2,705 km" +Cedar City,Detroit,,1 day 2 hours,"2,968 km" +Rochester,Sarasota,,20 hours 5 mins,"2,159 km" +Rochester,Fort Myers,,21 hours 2 mins,"2,265 km" +Rochester,Gainesville,,17 hours 25 mins,"1,869 km" +Rochester,Orlando,,18 hours 18 mins,"1,987 km" +Rochester,Daytona Beach,,17 hours 40 mins,"1,912 km" +Rochester,Jacksonville,,16 hours 14 mins,"1,759 km" +Rochester,Tampa,,19 hours 17 mins,"2,075 km" +Rochester,Panama City,,18 hours 43 mins,"1,980 km" +Rochester,Key West,,1 day 0 hours,"2,569 km" +Rochester,West Palm Beach,,20 hours 13 mins,"2,217 km" +Rochester,Miami,,21 hours 13 mins,"2,316 km" +Rochester,Tallahassee,,18 hours 20 mins,"1,979 km" +Rochester,Punta Gorda,,20 hours 37 mins,"2,230 km" +Rochester,Fort Lauderdale,,20 hours 51 mins,"2,285 km" +Rochester,Pensacola,,17 hours 54 mins,"1,958 km" +Sarasota,Rochester,,19 hours 57 mins,"2,154 km" +Fort Myers,Rochester,,20 hours 54 mins,"2,259 km" +Gainesville,Rochester,,17 hours 19 mins,"1,864 km" +Orlando,Rochester,,18 hours 4 mins,"1,977 km" +Daytona Beach,Rochester,,17 hours 30 mins,"1,894 km" +Jacksonville,Rochester,,16 hours 7 mins,"1,752 km" +Tampa,Rochester,,19 hours 9 mins,"2,069 km" +Panama City,Rochester,,18 hours 41 mins,"1,974 km" +Key West,Rochester,,1 day 0 hours,"2,561 km" +West Palm Beach,Rochester,,20 hours 2 mins,"2,208 km" +Miami,Rochester,,21 hours 1 min,"2,309 km" +Tallahassee,Rochester,,18 hours 17 mins,"1,979 km" +Punta Gorda,Rochester,,20 hours 28 mins,"2,223 km" +Fort Lauderdale,Rochester,,20 hours 40 mins,"2,276 km" +Pensacola,Rochester,,17 hours 48 mins,"1,955 km" +Cincinnati,Augusta,,8 hours 32 mins,863 km +Cincinnati,Decatur,,7 hours 1 min,749 km +Cincinnati,Atlanta,,6 hours 46 mins,741 km +Cincinnati,Valdosta,,10 hours 3 mins,"1,108 km" +Cincinnati,Savannah,,9 hours 56 mins,"1,070 km" +Augusta,Cincinnati,,8 hours 32 mins,862 km +Decatur,Cincinnati,,7 hours 2 mins,749 km +Atlanta,Cincinnati,,6 hours 46 mins,741 km +Valdosta,Cincinnati,,10 hours 2 mins,"1,108 km" +Savannah,Cincinnati,,9 hours 58 mins,"1,069 km" +Louisville,Buffalo,,7 hours 57 mins,862 km +Louisville,Manhattan,,11 hours 41 mins,"1,194 km" +Louisville,Niagara Falls,,8 hours 18 mins,892 km +Louisville,Islip,,12 hours 23 mins,"1,292 km" +Louisville,New York,,11 hours 31 mins,"1,188 km" +Louisville,Watertown,,10 hours 57 mins,"1,190 km" +Louisville,Newburgh,,11 hours 37 mins,"1,248 km" +Louisville,Syracuse,,10 hours 0 mins,"1,088 km" +Louisville,Plattsburgh,,13 hours 49 mins,"1,449 km" +Louisville,Ogdensburg,,11 hours 55 mins,"1,284 km" +Louisville,Ithaca,,10 hours 7 mins,"1,081 km" +Louisville,Elmira,,9 hours 37 mins,"1,043 km" +Louisville,White Plains,,11 hours 47 mins,"1,273 km" +Louisville,Albany,,, +Louisville,Binghamton,,10 hours 25 mins,"1,131 km" +Louisville,Rochester,,8 hours 54 mins,966 km +Buffalo,Louisville,,7 hours 56 mins,863 km +Manhattan,Louisville,,11 hours 36 mins,"1,194 km" +Niagara Falls,Louisville,,8 hours 17 mins,893 km +Islip,Louisville,,12 hours 21 mins,"1,291 km" +New York,Louisville,,11 hours 26 mins,"1,186 km" +Watertown,Louisville,,10 hours 56 mins,"1,191 km" +Newburgh,Louisville,,11 hours 35 mins,"1,246 km" +Syracuse,Louisville,,9 hours 59 mins,"1,089 km" +Plattsburgh,Louisville,,13 hours 48 mins,"1,451 km" +Ogdensburg,Louisville,,11 hours 55 mins,"1,284 km" +Ithaca,Louisville,,10 hours 5 mins,"1,082 km" +Elmira,Louisville,,9 hours 35 mins,"1,045 km" +White Plains,Louisville,,11 hours 47 mins,"1,239 km" +Albany,Louisville,,, +Binghamton,Louisville,,10 hours 25 mins,"1,132 km" +Rochester,Louisville,,8 hours 54 mins,968 km +Bloomington,Abilene,,15 hours 4 mins,"1,627 km" +Bloomington,Amarillo,,14 hours 35 mins,"1,579 km" +Bloomington,Harlingen,,19 hours 45 mins,"2,098 km" +Bloomington,Lubbock,,15 hours 58 mins,"1,718 km" +Bloomington,College Station,,14 hours 53 mins,"1,543 km" +Bloomington,Corpus Christi,,17 hours 59 mins,"1,903 km" +Bloomington,Wichita Falls,,12 hours 51 mins,"1,383 km" +Bloomington,Waco,,14 hours 11 mins,"1,540 km" +Bloomington,San Angelo,,16 hours 20 mins,"1,761 km" +Bloomington,Houston,,14 hours 53 mins,"1,570 km" +Bloomington,San Antonio,,16 hours 47 mins,"1,826 km" +Bloomington,Del Rio,,18 hours 45 mins,"2,014 km" +Bloomington,Mission,,, +Bloomington,Beaumont,,, +Bloomington,Longview,,11 hours 45 mins,"1,246 km" +Bloomington,Midland,,16 hours 56 mins,"1,829 km" +Bloomington,El Paso,,21 hours 10 mins,"2,277 km" +Bloomington,Brownsville,,20 hours 7 mins,"2,137 km" +Bloomington,Austin,,15 hours 35 mins,"1,699 km" +Bloomington,Dallas,,12 hours 47 mins,"1,385 km" +Bloomington,Killeen,,14 hours 59 mins,"1,634 km" +Bloomington,Laredo,,19 hours 3 mins,"2,076 km" +Bloomington,Texarkana,,10 hours 18 mins,"1,105 km" +Abilene,Bloomington,,15 hours 7 mins,"1,631 km" +Amarillo,Bloomington,,14 hours 37 mins,"1,582 km" +Harlingen,Bloomington,,19 hours 38 mins,"2,113 km" +Lubbock,Bloomington,,15 hours 56 mins,"1,721 km" +College Station,Bloomington,,14 hours 47 mins,"1,554 km" +Corpus Christi,Bloomington,,17 hours 59 mins,"1,923 km" +Wichita Falls,Bloomington,,12 hours 51 mins,"1,387 km" +Waco,Bloomington,,14 hours 5 mins,"1,551 km" +San Angelo,Bloomington,,16 hours 21 mins,"1,765 km" +Houston,Bloomington,,14 hours 49 mins,"1,585 km" +San Antonio,Bloomington,,16 hours 40 mins,"1,839 km" +Del Rio,Bloomington,,18 hours 44 mins,"2,018 km" +Mission,Bloomington,,, +Beaumont,Bloomington,,, +Longview,Bloomington,,11 hours 42 mins,"1,260 km" +Midland,Bloomington,,16 hours 57 mins,"1,834 km" +El Paso,Bloomington,,21 hours 9 mins,"2,278 km" +Brownsville,Bloomington,,20 hours 1 min,"2,153 km" +Austin,Bloomington,,15 hours 29 mins,"1,713 km" +Dallas,Bloomington,,12 hours 43 mins,"1,400 km" +Killeen,Bloomington,,14 hours 54 mins,"1,648 km" +Laredo,Bloomington,,18 hours 58 mins,"2,090 km" +Texarkana,Bloomington,,10 hours 14 mins,"1,118 km" +New York,Cleveland,,7 hours 16 mins,744 km +Cleveland,New York,,7 hours 14 mins,744 km +Newark,Toledo,,8 hours 18 mins,886 km +Newark,Cleveland,,6 hours 59 mins,728 km +Newark,Dayton,,9 hours 14 mins,958 km +Newark,Columbus,,8 hours 11 mins,844 km +Newark,Akron,,6 hours 35 mins,690 km +Newark,Cincinnati,,9 hours 43 mins,"1,011 km" +Toledo,Newark,,8 hours 13 mins,884 km +Cleveland,Newark,,6 hours 54 mins,729 km +Dayton,Newark,,9 hours 17 mins,957 km +Columbus,Newark,,8 hours 14 mins,844 km +Akron,Newark,,6 hours 28 mins,689 km +Cincinnati,Newark,,9 hours 44 mins,"1,011 km" +Detroit,Buffalo,,4 hours 7 mins,411 km +Detroit,Manhattan,,9 hours 25 mins,"1,002 km" +Detroit,Niagara Falls,,3 hours 55 mins,389 km +Detroit,Islip,,10 hours 12 mins,"1,073 km" +Detroit,New York,,9 hours 22 mins,989 km +Detroit,Watertown,,6 hours 56 mins,713 km +Detroit,Newburgh,,9 hours 19 mins,"1,002 km" +Detroit,Syracuse,,6 hours 15 mins,645 km +Detroit,Plattsburgh,,9 hours 6 mins,917 km +Detroit,Ogdensburg,,7 hours 2 mins,729 km +Detroit,Ithaca,,6 hours 34 mins,650 km +Detroit,Elmira,,7 hours 7 mins,764 km +Detroit,White Plains,,9 hours 29 mins,"1,027 km" +Detroit,Albany,,, +Detroit,Binghamton,,7 hours 55 mins,852 km +Detroit,Rochester,,5 hours 9 mins,524 km +Buffalo,Detroit,,4 hours 10 mins,412 km +Manhattan,Detroit,,9 hours 28 mins,"1,002 km" +Niagara Falls,Detroit,,3 hours 59 mins,385 km +Islip,Detroit,,10 hours 18 mins,"1,071 km" +New York,Detroit,,9 hours 25 mins,989 km +Watertown,Detroit,,6 hours 57 mins,713 km +Newburgh,Detroit,,9 hours 19 mins,"1,001 km" +Syracuse,Detroit,,6 hours 19 mins,645 km +Plattsburgh,Detroit,,9 hours 11 mins,918 km +Ogdensburg,Detroit,,7 hours 5 mins,730 km +Ithaca,Detroit,,6 hours 38 mins,649 km +Elmira,Detroit,,7 hours 7 mins,764 km +White Plains,Detroit,,9 hours 35 mins,"1,026 km" +Albany,Detroit,,, +Binghamton,Detroit,,7 hours 56 mins,851 km +Rochester,Detroit,,5 hours 14 mins,524 km +Orlando,Sarasota,,2 hours 2 mins,211 km +Orlando,Fort Myers,,2 hours 58 mins,255 km +Orlando,Gainesville,,1 hour 43 mins,179 km +Orlando,Daytona Beach,,55 mins,89.8 km +Orlando,Jacksonville,,2 hours 2 mins,226 km +Orlando,Tampa,,1 hour 18 mins,136 km +Orlando,Panama City,,5 hours 24 mins,574 km +Orlando,Key West,,6 hours 27 mins,632 km +Orlando,West Palm Beach,,2 hours 28 mins,273 km +Orlando,Miami,,3 hours 26 mins,378 km +Orlando,Tallahassee,,3 hours 46 mins,413 km +Orlando,Punta Gorda,,2 hours 31 mins,223 km +Orlando,Fort Lauderdale,,3 hours 6 mins,341 km +Orlando,Pensacola,,6 hours 19 mins,724 km +Sarasota,Orlando,,2 hours 5 mins,211 km +Fort Myers,Orlando,,2 hours 59 mins,257 km +Gainesville,Orlando,,1 hour 46 mins,181 km +Daytona Beach,Orlando,,1 hour 0 mins,91.5 km +Jacksonville,Orlando,,2 hours 7 mins,227 km +Tampa,Orlando,,1 hour 21 mins,135 km +Panama City,Orlando,,5 hours 25 mins,575 km +Key West,Orlando,,6 hours 30 mins,632 km +West Palm Beach,Orlando,,2 hours 30 mins,275 km +Miami,Orlando,,3 hours 27 mins,380 km +Tallahassee,Orlando,,3 hours 48 mins,417 km +Punta Gorda,Orlando,,2 hours 33 mins,221 km +Fort Lauderdale,Orlando,,3 hours 8 mins,343 km +Pensacola,Orlando,,6 hours 21 mins,725 km +Myrtle Beach,Buffalo,,12 hours 51 mins,"1,324 km" +Myrtle Beach,Manhattan,,10 hours 25 mins,"1,063 km" +Myrtle Beach,Niagara Falls,,13 hours 12 mins,"1,354 km" +Myrtle Beach,Islip,,11 hours 6 mins,"1,134 km" +Myrtle Beach,New York,,10 hours 16 mins,"1,057 km" +Myrtle Beach,Watertown,,13 hours 19 mins,"1,393 km" +Myrtle Beach,Newburgh,,11 hours 6 mins,"1,149 km" +Myrtle Beach,Syracuse,,12 hours 16 mins,"1,280 km" +Myrtle Beach,Plattsburgh,,14 hours 32 mins,"1,537 km" +Myrtle Beach,Ogdensburg,,14 hours 17 mins,"1,486 km" +Myrtle Beach,Ithaca,,12 hours 0 mins,"1,219 km" +Myrtle Beach,Elmira,,11 hours 23 mins,"1,147 km" +Myrtle Beach,White Plains,,10 hours 43 mins,"1,108 km" +Myrtle Beach,Albany,,, +Myrtle Beach,Binghamton,,11 hours 15 mins,"1,168 km" +Myrtle Beach,Rochester,,12 hours 39 mins,"1,309 km" +Buffalo,Myrtle Beach,,12 hours 56 mins,"1,326 km" +Manhattan,Myrtle Beach,,10 hours 30 mins,"1,071 km" +Niagara Falls,Myrtle Beach,,13 hours 17 mins,"1,356 km" +Islip,Myrtle Beach,,11 hours 11 mins,"1,140 km" +New York,Myrtle Beach,,10 hours 21 mins,"1,066 km" +Watertown,Myrtle Beach,,13 hours 31 mins,"1,396 km" +Newburgh,Myrtle Beach,,11 hours 13 mins,"1,158 km" +Syracuse,Myrtle Beach,,12 hours 27 mins,"1,283 km" +Plattsburgh,Myrtle Beach,,14 hours 38 mins,"1,547 km" +Ogdensburg,Myrtle Beach,,14 hours 30 mins,"1,489 km" +Ithaca,Myrtle Beach,,12 hours 10 mins,"1,226 km" +Elmira,Myrtle Beach,,11 hours 34 mins,"1,155 km" +White Plains,Myrtle Beach,,10 hours 47 mins,"1,115 km" +Albany,Myrtle Beach,,, +Binghamton,Myrtle Beach,,11 hours 27 mins,"1,170 km" +Rochester,Myrtle Beach,,12 hours 49 mins,"1,316 km" +Nashville,Sarasota,,10 hours 58 mins,"1,217 km" +Nashville,Fort Myers,,11 hours 56 mins,"1,322 km" +Nashville,Gainesville,,8 hours 34 mins,933 km +Nashville,Orlando,,9 hours 59 mins,"1,105 km" +Nashville,Daytona Beach,,10 hours 3 mins,"1,105 km" +Nashville,Jacksonville,,8 hours 40 mins,955 km +Nashville,Tampa,,10 hours 11 mins,"1,133 km" +Nashville,Panama City,,7 hours 23 mins,735 km +Nashville,Key West,,16 hours 10 mins,"1,719 km" +Nashville,West Palm Beach,,12 hours 12 mins,"1,360 km" +Nashville,Miami,,13 hours 10 mins,"1,465 km" +Nashville,Tallahassee,,7 hours 40 mins,790 km +Nashville,Punta Gorda,,11 hours 30 mins,"1,287 km" +Nashville,Fort Lauderdale,,12 hours 49 mins,"1,428 km" +Nashville,Pensacola,,6 hours 35 mins,712 km +Sarasota,Nashville,,10 hours 58 mins,"1,220 km" +Fort Myers,Nashville,,11 hours 55 mins,"1,326 km" +Gainesville,Nashville,,8 hours 34 mins,934 km +Orlando,Nashville,,9 hours 55 mins,"1,106 km" +Daytona Beach,Nashville,,10 hours 1 min,"1,097 km" +Jacksonville,Nashville,,8 hours 41 mins,958 km +Tampa,Nashville,,10 hours 10 mins,"1,135 km" +Panama City,Nashville,,7 hours 25 mins,731 km +Key West,Nashville,,16 hours 11 mins,"1,721 km" +West Palm Beach,Nashville,,12 hours 10 mins,"1,364 km" +Miami,Nashville,,13 hours 7 mins,"1,469 km" +Tallahassee,Nashville,,7 hours 42 mins,786 km +Punta Gorda,Nashville,,11 hours 29 mins,"1,289 km" +Fort Lauderdale,Nashville,,12 hours 48 mins,"1,432 km" +Pensacola,Nashville,,6 hours 32 mins,712 km +Charleston,Buffalo,,13 hours 3 mins,"1,395 km" +Charleston,Manhattan,,11 hours 35 mins,"1,226 km" +Charleston,Niagara Falls,,13 hours 24 mins,"1,425 km" +Charleston,Islip,,12 hours 16 mins,"1,296 km" +Charleston,New York,,11 hours 26 mins,"1,220 km" +Charleston,Watertown,,14 hours 29 mins,"1,555 km" +Charleston,Newburgh,,12 hours 16 mins,"1,311 km" +Charleston,Syracuse,,13 hours 25 mins,"1,443 km" +Charleston,Plattsburgh,,15 hours 42 mins,"1,700 km" +Charleston,Ogdensburg,,15 hours 27 mins,"1,648 km" +Charleston,Ithaca,,13 hours 10 mins,"1,382 km" +Charleston,Elmira,,12 hours 33 mins,"1,309 km" +Charleston,White Plains,,11 hours 53 mins,"1,270 km" +Charleston,Albany,,, +Charleston,Binghamton,,12 hours 25 mins,"1,331 km" +Charleston,Rochester,,13 hours 49 mins,"1,471 km" +Buffalo,Charleston,,13 hours 3 mins,"1,396 km" +Manhattan,Charleston,,11 hours 37 mins,"1,234 km" +Niagara Falls,Charleston,,13 hours 25 mins,"1,426 km" +Islip,Charleston,,12 hours 19 mins,"1,302 km" +New York,Charleston,,11 hours 29 mins,"1,228 km" +Watertown,Charleston,,14 hours 38 mins,"1,559 km" +Newburgh,Charleston,,12 hours 21 mins,"1,321 km" +Syracuse,Charleston,,13 hours 35 mins,"1,446 km" +Plattsburgh,Charleston,,15 hours 46 mins,"1,709 km" +Ogdensburg,Charleston,,15 hours 37 mins,"1,652 km" +Ithaca,Charleston,,13 hours 18 mins,"1,388 km" +Elmira,Charleston,,12 hours 41 mins,"1,318 km" +White Plains,Charleston,,11 hours 55 mins,"1,277 km" +Albany,Charleston,,, +Binghamton,Charleston,,12 hours 34 mins,"1,333 km" +Rochester,Charleston,,13 hours 57 mins,"1,479 km" +Raleigh,Nashville,,8 hours 8 mins,867 km +Raleigh,Bristol,,, +Raleigh,Knoxville,,5 hours 30 mins,580 km +Raleigh,Chattanooga,,7 hours 7 mins,757 km +Raleigh,Memphis,,11 hours 10 mins,"1,206 km" +Nashville,Raleigh,,8 hours 10 mins,868 km +Bristol,Raleigh,,, +Knoxville,Raleigh,,5 hours 32 mins,580 km +Chattanooga,Raleigh,,7 hours 10 mins,758 km +Memphis,Raleigh,,11 hours 13 mins,"1,206 km" +Minneapolis,Buffalo,,14 hours 2 mins,"1,528 km" +Buffalo,Minneapolis,,14 hours 4 mins,"1,520 km" +Charleston,State College,,11 hours 5 mins,"1,188 km" +Charleston,Johnstown,,10 hours 33 mins,"1,107 km" +Charleston,Harrisburg,,9 hours 37 mins,"1,034 km" +Charleston,Erie,,11 hours 44 mins,"1,248 km" +Charleston,Pittsburgh,,10 hours 1 min,"1,053 km" +Charleston,Latrobe,,10 hours 13 mins,"1,039 km" +Charleston,Philadelphia,,10 hours 4 mins,"1,082 km" +Charleston,Lewisburg,,10 hours 45 mins,"1,133 km" +Charleston,Scranton,,11 hours 28 mins,"1,232 km" +State College,Charleston,,11 hours 12 mins,"1,197 km" +Johnstown,Charleston,,10 hours 31 mins,"1,107 km" +Harrisburg,Charleston,,9 hours 46 mins,"1,036 km" +Erie,Charleston,,11 hours 45 mins,"1,249 km" +Pittsburgh,Charleston,,9 hours 59 mins,"1,054 km" +Latrobe,Charleston,,10 hours 9 mins,"1,040 km" +Philadelphia,Charleston,,10 hours 8 mins,"1,088 km" +Lewisburg,Charleston,,10 hours 54 mins,"1,140 km" +Scranton,Charleston,,11 hours 37 mins,"1,234 km" +Los Angeles,Colorado Springs,,15 hours 46 mins,"1,742 km" +Colorado Springs,Los Angeles,,15 hours 51 mins,"1,744 km" +Phoenix,Des Moines,,21 hours 16 mins,"2,249 km" +Des Moines,Phoenix,,21 hours 20 mins,"2,252 km" +San Antonio,Salt Lake City,,20 hours 7 mins,"2,112 km" +San Antonio,Moab,,16 hours 25 mins,"1,736 km" +San Antonio,Ogden,,20 hours 36 mins,"2,170 km" +San Antonio,Vernal,,19 hours 10 mins,"1,910 km" +San Antonio,Provo,,19 hours 30 mins,"2,042 km" +San Antonio,Cedar City,,19 hours 20 mins,"2,032 km" +Salt Lake City,San Antonio,,20 hours 7 mins,"2,117 km" +Moab,San Antonio,,16 hours 26 mins,"1,741 km" +Ogden,San Antonio,,20 hours 38 mins,"2,175 km" +Vernal,San Antonio,,19 hours 11 mins,"2,008 km" +Provo,San Antonio,,19 hours 32 mins,"2,047 km" +Cedar City,San Antonio,,19 hours 20 mins,"2,036 km" +Omaha,Pellston,,12 hours 30 mins,"1,336 km" +Omaha,Traverse City,,11 hours 25 mins,"1,240 km" +Omaha,Alpena,,13 hours 4 mins,"1,395 km" +Omaha,Iron Mountain,,, +Omaha,Kalamazoo,,8 hours 53 mins,962 km +Omaha,Saginaw,,11 hours 4 mins,"1,197 km" +Omaha,Grand Rapids,,9 hours 19 mins,"1,011 km" +Omaha,Lansing,,9 hours 54 mins,"1,077 km" +Omaha,Muskegon,,9 hours 35 mins,"1,026 km" +Omaha,Hancock,,, +Omaha,Detroit,,10 hours 47 mins,"1,180 km" +Omaha,Escanaba,,10 hours 20 mins,"1,086 km" +Pellston,Omaha,,12 hours 30 mins,"1,335 km" +Traverse City,Omaha,,11 hours 25 mins,"1,239 km" +Alpena,Omaha,,12 hours 59 mins,"1,391 km" +Iron Mountain,Omaha,,, +Kalamazoo,Omaha,,8 hours 52 mins,960 km +Saginaw,Omaha,,11 hours 0 mins,"1,192 km" +Grand Rapids,Omaha,,9 hours 16 mins,"1,012 km" +Lansing,Omaha,,9 hours 52 mins,"1,075 km" +Muskegon,Omaha,,9 hours 33 mins,"1,023 km" +Hancock,Omaha,,, +Detroit,Omaha,,10 hours 49 mins,"1,179 km" +Escanaba,Omaha,,10 hours 20 mins,"1,083 km" +New Orleans,Charlotte,,10 hours 27 mins,"1,148 km" +Charlotte,New Orleans,,10 hours 28 mins,"1,149 km" +Chicago,Green Bay,,3 hours 11 mins,332 km +Chicago,Rhinelander,,5 hours 1 min,546 km +Chicago,Marquette,,1 hour 30 mins,149 km +Chicago,Madison,,2 hours 23 mins,237 km +Chicago,La Crosse,,4 hours 14 mins,454 km +Chicago,Devils Lake,,3 hours 2 mins,302 km +Chicago,Appleton,,3 hours 1 min,314 km +Chicago,Mosinee,,3 hours 58 mins,433 km +Chicago,Milwaukee,,1 hour 31 mins,148 km +Chicago,Eau Claire,,4 hours 44 mins,511 km +Green Bay,Chicago,,3 hours 17 mins,333 km +Rhinelander,Chicago,,5 hours 4 mins,546 km +Marquette,Chicago,,1 hour 35 mins,148 km +Madison,Chicago,,2 hours 22 mins,237 km +La Crosse,Chicago,,4 hours 16 mins,453 km +Devils Lake,Chicago,,3 hours 5 mins,302 km +Appleton,Chicago,,3 hours 4 mins,314 km +Mosinee,Chicago,,4 hours 0 mins,433 km +Milwaukee,Chicago,,1 hour 36 mins,149 km +Eau Claire,Chicago,,4 hours 46 mins,511 km +Philadelphia,Abilene,,1 day 0 hours,"2,651 km" +Philadelphia,Amarillo,,1 day 0 hours,"2,643 km" +Philadelphia,Harlingen,,1 day 4 hours,"3,017 km" +Philadelphia,Lubbock,,1 day 2 hours,"2,781 km" +Philadelphia,College Station,,23 hours 22 mins,"2,511 km" +Philadelphia,Corpus Christi,,1 day 2 hours,"2,823 km" +Philadelphia,Wichita Falls,,22 hours 30 mins,"2,447 km" +Philadelphia,Waco,,22 hours 59 mins,"2,516 km" +Philadelphia,San Angelo,,1 day 1 hour,"2,775 km" +Philadelphia,Houston,,22 hours 39 mins,"2,489 km" +Philadelphia,San Antonio,,1 day 2 hours,"2,803 km" +Philadelphia,Del Rio,,1 day 4 hours,"3,028 km" +Philadelphia,Mission,,, +Philadelphia,Beaumont,,, +Philadelphia,Longview,,20 hours 28 mins,"2,244 km" +Philadelphia,Midland,,1 day 2 hours,"2,891 km" +Philadelphia,El Paso,,1 day 7 hours,"3,382 km" +Philadelphia,Brownsville,,1 day 4 hours,"3,057 km" +Philadelphia,Austin,,1 day 0 hours,"2,675 km" +Philadelphia,Dallas,,21 hours 36 mins,"2,361 km" +Philadelphia,Killeen,,23 hours 48 mins,"2,610 km" +Philadelphia,Laredo,,1 day 4 hours,"2,995 km" +Philadelphia,Texarkana,,19 hours 7 mins,"2,081 km" +Abilene,Philadelphia,,1 day 0 hours,"2,651 km" +Amarillo,Philadelphia,,1 day 0 hours,"2,641 km" +Harlingen,Philadelphia,,1 day 3 hours,"3,018 km" +Lubbock,Philadelphia,,1 day 2 hours,"2,781 km" +College Station,Philadelphia,,23 hours 17 mins,"2,510 km" +Corpus Christi,Philadelphia,,1 day 2 hours,"2,828 km" +Wichita Falls,Philadelphia,,22 hours 28 mins,"2,446 km" +Waco,Philadelphia,,22 hours 56 mins,"2,513 km" +San Angelo,Philadelphia,,1 day 1 hour,"2,775 km" +Houston,Philadelphia,,22 hours 38 mins,"2,490 km" +San Antonio,Philadelphia,,1 day 2 hours,"2,800 km" +Del Rio,Philadelphia,,1 day 4 hours,"3,029 km" +Mission,Philadelphia,,, +Beaumont,Philadelphia,,, +Longview,Philadelphia,,20 hours 27 mins,"2,244 km" +Midland,Philadelphia,,1 day 2 hours,"2,891 km" +El Paso,Philadelphia,,1 day 7 hours,"3,381 km" +Brownsville,Philadelphia,,1 day 4 hours,"3,058 km" +Austin,Philadelphia,,1 day 0 hours,"2,674 km" +Dallas,Philadelphia,,21 hours 34 mins,"2,361 km" +Killeen,Philadelphia,,23 hours 45 mins,"2,609 km" +Laredo,Philadelphia,,1 day 4 hours,"2,996 km" +Texarkana,Philadelphia,,19 hours 5 mins,"2,080 km" +Atlanta,Philadelphia,,11 hours 44 mins,"1,253 km" +Philadelphia,Atlanta,,11 hours 47 mins,"1,261 km" +Salt Lake City,Pellston,,1 day 2 hours,"2,835 km" +Salt Lake City,Traverse City,,1 day 1 hour,"2,738 km" +Salt Lake City,Alpena,,1 day 2 hours,"2,893 km" +Salt Lake City,Iron Mountain,,, +Salt Lake City,Kalamazoo,,22 hours 4 mins,"2,461 km" +Salt Lake City,Saginaw,,1 day 0 hours,"2,695 km" +Salt Lake City,Grand Rapids,,22 hours 30 mins,"2,510 km" +Salt Lake City,Lansing,,23 hours 5 mins,"2,576 km" +Salt Lake City,Muskegon,,22 hours 46 mins,"2,524 km" +Salt Lake City,Hancock,,, +Salt Lake City,Detroit,,23 hours 58 mins,"2,679 km" +Salt Lake City,Escanaba,,23 hours 31 mins,"2,584 km" +Pellston,Salt Lake City,,1 day 2 hours,"2,832 km" +Traverse City,Salt Lake City,,1 day 1 hour,"2,737 km" +Alpena,Salt Lake City,,1 day 2 hours,"2,889 km" +Iron Mountain,Salt Lake City,,, +Kalamazoo,Salt Lake City,,22 hours 9 mins,"2,458 km" +Saginaw,Salt Lake City,,1 day 0 hours,"2,690 km" +Grand Rapids,Salt Lake City,,22 hours 32 mins,"2,509 km" +Lansing,Salt Lake City,,23 hours 9 mins,"2,573 km" +Muskegon,Salt Lake City,,22 hours 49 mins,"2,520 km" +Hancock,Salt Lake City,,, +Detroit,Salt Lake City,,1 day 0 hours,"2,676 km" +Escanaba,Salt Lake City,,23 hours 37 mins,"2,580 km" +Oklahoma City,Abilene,,4 hours 18 mins,468 km +Oklahoma City,Amarillo,,3 hours 50 mins,418 km +Oklahoma City,Harlingen,,10 hours 20 mins,"1,148 km" +Oklahoma City,Lubbock,,5 hours 11 mins,559 km +Oklahoma City,College Station,,5 hours 33 mins,601 km +Oklahoma City,Corpus Christi,,8 hours 42 mins,973 km +Oklahoma City,Wichita Falls,,2 hours 4 mins,224 km +Oklahoma City,Waco,,4 hours 15 mins,466 km +Oklahoma City,San Angelo,,5 hours 33 mins,602 km +Oklahoma City,Houston,,6 hours 29 mins,716 km +Oklahoma City,San Antonio,,6 hours 51 mins,751 km +Oklahoma City,Del Rio,,7 hours 59 mins,855 km +Oklahoma City,Mission,,, +Oklahoma City,Beaumont,,, +Oklahoma City,Longview,,4 hours 52 mins,533 km +Oklahoma City,Midland,,6 hours 9 mins,670 km +Oklahoma City,El Paso,,10 hours 25 mins,"1,116 km" +Oklahoma City,Brownsville,,10 hours 42 mins,"1,187 km" +Oklahoma City,Austin,,5 hours 39 mins,625 km +Oklahoma City,Dallas,,3 hours 6 mins,333 km +Oklahoma City,Killeen,,5 hours 3 mins,559 km +Oklahoma City,Laredo,,9 hours 7 mins,"1,002 km" +Oklahoma City,Texarkana,,4 hours 51 mins,502 km +Abilene,Oklahoma City,,4 hours 18 mins,467 km +Amarillo,Oklahoma City,,3 hours 48 mins,417 km +Harlingen,Oklahoma City,,10 hours 14 mins,"1,147 km" +Lubbock,Oklahoma City,,5 hours 8 mins,557 km +College Station,Oklahoma City,,5 hours 30 mins,601 km +Corpus Christi,Oklahoma City,,8 hours 37 mins,971 km +Wichita Falls,Oklahoma City,,2 hours 3 mins,223 km +Waco,Oklahoma City,,4 hours 13 mins,463 km +San Angelo,Oklahoma City,,5 hours 32 mins,601 km +Houston,Oklahoma City,,6 hours 27 mins,716 km +San Antonio,Oklahoma City,,6 hours 48 mins,750 km +Del Rio,Oklahoma City,,7 hours 55 mins,854 km +Mission,Oklahoma City,,, +Beaumont,Oklahoma City,,, +Longview,Oklahoma City,,4 hours 55 mins,539 km +Midland,Oklahoma City,,6 hours 8 mins,670 km +El Paso,Oklahoma City,,10 hours 20 mins,"1,114 km" +Brownsville,Oklahoma City,,10 hours 37 mins,"1,187 km" +Austin,Oklahoma City,,5 hours 38 mins,624 km +Dallas,Oklahoma City,,3 hours 4 mins,332 km +Killeen,Oklahoma City,,5 hours 2 mins,559 km +Laredo,Oklahoma City,,9 hours 6 mins,"1,002 km" +Texarkana,Oklahoma City,,4 hours 50 mins,509 km +Lexington,State College,,7 hours 49 mins,815 km +Lexington,Johnstown,,6 hours 41 mins,699 km +Lexington,Harrisburg,,8 hours 12 mins,868 km +Lexington,Erie,,6 hours 27 mins,689 km +Lexington,Pittsburgh,,5 hours 44 mins,596 km +Lexington,Latrobe,,6 hours 20 mins,632 km +Lexington,Philadelphia,,9 hours 43 mins,"1,030 km" +Lexington,Lewisburg,,8 hours 45 mins,925 km +Lexington,Scranton,,9 hours 55 mins,"1,051 km" +State College,Lexington,,7 hours 48 mins,821 km +Johnstown,Lexington,,6 hours 41 mins,698 km +Harrisburg,Lexington,,8 hours 13 mins,868 km +Erie,Lexington,,6 hours 29 mins,689 km +Pittsburgh,Lexington,,5 hours 44 mins,598 km +Latrobe,Lexington,,6 hours 19 mins,631 km +Philadelphia,Lexington,,9 hours 44 mins,"1,029 km" +Lewisburg,Lexington,,8 hours 45 mins,941 km +Scranton,Lexington,,9 hours 55 mins,"1,066 km" +Baltimore,Abilene,,22 hours 40 mins,"2,488 km" +Baltimore,Amarillo,,23 hours 18 mins,"2,538 km" +Baltimore,Harlingen,,1 day 2 hours,"2,854 km" +Baltimore,Lubbock,,1 day 1 hour,"2,677 km" +Baltimore,College Station,,21 hours 50 mins,"2,352 km" +Baltimore,Corpus Christi,,1 day 0 hours,"2,659 km" +Baltimore,Wichita Falls,,21 hours 33 mins,"2,342 km" +Baltimore,Waco,,21 hours 26 mins,"2,353 km" +Baltimore,San Angelo,,23 hours 54 mins,"2,612 km" +Baltimore,Houston,,21 hours 6 mins,"2,326 km" +Baltimore,San Antonio,,23 hours 58 mins,"2,640 km" +Baltimore,Del Rio,,1 day 2 hours,"2,865 km" +Baltimore,Mission,,, +Baltimore,Beaumont,,, +Baltimore,Longview,,18 hours 56 mins,"2,085 km" +Baltimore,Midland,,1 day 1 hour,"2,728 km" +Baltimore,El Paso,,1 day 5 hours,"3,218 km" +Baltimore,Brownsville,,1 day 2 hours,"2,893 km" +Baltimore,Austin,,22 hours 51 mins,"2,512 km" +Baltimore,Dallas,,20 hours 3 mins,"2,198 km" +Baltimore,Killeen,,22 hours 15 mins,"2,447 km" +Baltimore,Laredo,,1 day 2 hours,"2,832 km" +Baltimore,Texarkana,,17 hours 34 mins,"1,918 km" +Abilene,Baltimore,,22 hours 40 mins,"2,488 km" +Amarillo,Baltimore,,23 hours 20 mins,"2,537 km" +Harlingen,Baltimore,,1 day 2 hours,"2,855 km" +Lubbock,Baltimore,,1 day 1 hour,"2,677 km" +College Station,Baltimore,,21 hours 47 mins,"2,348 km" +Corpus Christi,Baltimore,,1 day 0 hours,"2,666 km" +Wichita Falls,Baltimore,,21 hours 35 mins,"2,342 km" +Waco,Baltimore,,21 hours 25 mins,"2,350 km" +San Angelo,Baltimore,,23 hours 53 mins,"2,613 km" +Houston,Baltimore,,21 hours 7 mins,"2,327 km" +San Antonio,Baltimore,,1 day 0 hours,"2,638 km" +Del Rio,Baltimore,,1 day 2 hours,"2,866 km" +Mission,Baltimore,,, +Beaumont,Baltimore,,, +Longview,Baltimore,,18 hours 56 mins,"2,081 km" +Midland,Baltimore,,1 day 1 hour,"2,728 km" +El Paso,Baltimore,,1 day 5 hours,"3,218 km" +Brownsville,Baltimore,,1 day 2 hours,"2,895 km" +Austin,Baltimore,,22 hours 50 mins,"2,512 km" +Dallas,Baltimore,,20 hours 4 mins,"2,198 km" +Killeen,Baltimore,,22 hours 15 mins,"2,446 km" +Laredo,Baltimore,,1 day 2 hours,"2,833 km" +Texarkana,Baltimore,,17 hours 35 mins,"1,917 km" +Kansas City,Newark,,17 hours 52 mins,"1,901 km" +Newark,Kansas City,,17 hours 48 mins,"1,900 km" +St. Petersburg,Toledo,,, +St. Petersburg,Cleveland,,, +St. Petersburg,Dayton,,, +St. Petersburg,Columbus,,, +St. Petersburg,Akron,,, +St. Petersburg,Cincinnati,,, +Toledo,St. Petersburg,,, +Cleveland,St. Petersburg,,, +Dayton,St. Petersburg,,, +Columbus,St. Petersburg,,, +Akron,St. Petersburg,,, +Cincinnati,St. Petersburg,,, +Dallas,Charleston,,15 hours 56 mins,"1,748 km" +Dallas,Hilton Head,,15 hours 22 mins,"1,708 km" +Dallas,Greer,,13 hours 43 mins,"1,514 km" +Dallas,Greenville,,13 hours 30 mins,"1,491 km" +Dallas,Myrtle Beach,,16 hours 48 mins,"1,839 km" +Charleston,Dallas,,16 hours 0 mins,"1,745 km" +Hilton Head,Dallas,,15 hours 24 mins,"1,714 km" +Greer,Dallas,,13 hours 42 mins,"1,516 km" +Greenville,Dallas,,13 hours 28 mins,"1,494 km" +Myrtle Beach,Dallas,,16 hours 50 mins,"1,847 km" +New York,Lake Charles,,21 hours 53 mins,"2,390 km" +New York,Baton Rouge,,20 hours 3 mins,"2,189 km" +New York,New Orleans,,19 hours 17 mins,"2,099 km" +New York,Shreveport,,20 hours 50 mins,"2,272 km" +Lake Charles,New York,,21 hours 54 mins,"2,392 km" +Baton Rouge,New York,,20 hours 5 mins,"2,192 km" +New Orleans,New York,,19 hours 18 mins,"2,099 km" +Shreveport,New York,,20 hours 53 mins,"2,275 km" +New Orleans,Abilene,,10 hours 1 min,"1,104 km" +New Orleans,Amarillo,,12 hours 52 mins,"1,403 km" +New Orleans,Harlingen,,10 hours 4 mins,"1,088 km" +New Orleans,Lubbock,,12 hours 25 mins,"1,369 km" +New Orleans,College Station,,6 hours 36 mins,683 km +New Orleans,Corpus Christi,,8 hours 18 mins,893 km +New Orleans,Wichita Falls,,9 hours 27 mins,"1,042 km" +New Orleans,Waco,,7 hours 55 mins,815 km +New Orleans,San Angelo,,10 hours 54 mins,"1,144 km" +New Orleans,Houston,,5 hours 12 mins,560 km +New Orleans,San Antonio,,8 hours 4 mins,874 km +New Orleans,Del Rio,,10 hours 27 mins,"1,121 km" +New Orleans,Mission,,, +New Orleans,Beaumont,,, +New Orleans,Longview,,5 hours 44 mins,615 km +New Orleans,Midland,,12 hours 9 mins,"1,345 km" +New Orleans,El Paso,,15 hours 46 mins,"1,758 km" +New Orleans,Brownsville,,10 hours 25 mins,"1,127 km" +New Orleans,Austin,,7 hours 39 mins,823 km +New Orleans,Dallas,,7 hours 26 mins,816 km +New Orleans,Killeen,,8 hours 14 mins,878 km +New Orleans,Laredo,,10 hours 11 mins,"1,066 km" +New Orleans,Texarkana,,5 hours 57 mins,648 km +Abilene,New Orleans,,10 hours 2 mins,"1,105 km" +Amarillo,New Orleans,,12 hours 53 mins,"1,397 km" +Harlingen,New Orleans,,9 hours 58 mins,"1,087 km" +Lubbock,New Orleans,,12 hours 21 mins,"1,371 km" +College Station,New Orleans,,6 hours 33 mins,708 km +Corpus Christi,New Orleans,,8 hours 20 mins,898 km +Wichita Falls,New Orleans,,9 hours 31 mins,"1,034 km" +Waco,New Orleans,,7 hours 53 mins,815 km +San Angelo,New Orleans,,10 hours 52 mins,"1,143 km" +Houston,New Orleans,,5 hours 10 mins,559 km +San Antonio,New Orleans,,8 hours 3 mins,873 km +Del Rio,New Orleans,,10 hours 28 mins,"1,121 km" +Mission,New Orleans,,, +Beaumont,New Orleans,,, +Longview,New Orleans,,5 hours 44 mins,615 km +Midland,New Orleans,,12 hours 8 mins,"1,345 km" +El Paso,New Orleans,,15 hours 45 mins,"1,758 km" +Brownsville,New Orleans,,10 hours 22 mins,"1,127 km" +Austin,New Orleans,,7 hours 37 mins,823 km +Dallas,New Orleans,,7 hours 27 mins,814 km +Killeen,New Orleans,,8 hours 12 mins,872 km +Laredo,New Orleans,,10 hours 6 mins,"1,065 km" +Texarkana,New Orleans,,5 hours 58 mins,648 km +Cincinnati,Philadelphia,,8 hours 44 mins,921 km +Philadelphia,Cincinnati,,8 hours 47 mins,922 km +New York,Pellston,,12 hours 57 mins,"1,413 km" +New York,Traverse City,,12 hours 57 mins,"1,372 km" +New York,Alpena,,12 hours 56 mins,"1,361 km" +New York,Iron Mountain,,, +New York,Kalamazoo,,10 hours 48 mins,"1,134 km" +New York,Saginaw,,10 hours 38 mins,"1,127 km" +New York,Grand Rapids,,11 hours 15 mins,"1,200 km" +New York,Lansing,,10 hours 17 mins,"1,092 km" +New York,Muskegon,,11 hours 48 mins,"1,263 km" +New York,Hancock,,, +New York,Detroit,,9 hours 25 mins,989 km +New York,Escanaba,,15 hours 27 mins,"1,661 km" +Pellston,New York,,12 hours 55 mins,"1,414 km" +Traverse City,New York,,12 hours 57 mins,"1,372 km" +Alpena,New York,,12 hours 53 mins,"1,359 km" +Iron Mountain,New York,,, +Kalamazoo,New York,,10 hours 44 mins,"1,132 km" +Saginaw,New York,,10 hours 34 mins,"1,126 km" +Grand Rapids,New York,,11 hours 11 mins,"1,200 km" +Lansing,New York,,10 hours 16 mins,"1,092 km" +Muskegon,New York,,11 hours 46 mins,"1,264 km" +Hancock,New York,,, +Detroit,New York,,9 hours 22 mins,989 km +Escanaba,New York,,15 hours 24 mins,"1,661 km" +Houston,State College,,22 hours 19 mins,"2,423 km" +Houston,Johnstown,,21 hours 21 mins,"2,329 km" +Houston,Harrisburg,,21 hours 16 mins,"2,353 km" +Houston,Erie,,20 hours 49 mins,"2,242 km" +Houston,Pittsburgh,,20 hours 5 mins,"2,149 km" +Houston,Latrobe,,20 hours 43 mins,"2,196 km" +Houston,Philadelphia,,22 hours 38 mins,"2,490 km" +Houston,Lewisburg,,22 hours 15 mins,"2,440 km" +Houston,Scranton,,23 hours 3 mins,"2,541 km" +State College,Houston,,22 hours 18 mins,"2,429 km" +Johnstown,Houston,,21 hours 20 mins,"2,329 km" +Harrisburg,Houston,,21 hours 18 mins,"2,353 km" +Erie,Houston,,20 hours 54 mins,"2,244 km" +Pittsburgh,Houston,,20 hours 9 mins,"2,153 km" +Latrobe,Houston,,20 hours 45 mins,"2,199 km" +Philadelphia,Houston,,22 hours 39 mins,"2,489 km" +Lewisburg,Houston,,22 hours 17 mins,"2,439 km" +Scranton,Houston,,23 hours 3 mins,"2,540 km" +West Palm Beach,Buffalo,,19 hours 16 mins,"2,132 km" +West Palm Beach,Manhattan,,17 hours 48 mins,"1,962 km" +West Palm Beach,Niagara Falls,,19 hours 37 mins,"2,162 km" +West Palm Beach,Islip,,18 hours 28 mins,"2,033 km" +West Palm Beach,New York,,17 hours 39 mins,"1,956 km" +West Palm Beach,Watertown,,20 hours 41 mins,"2,292 km" +West Palm Beach,Newburgh,,18 hours 29 mins,"2,048 km" +West Palm Beach,Syracuse,,19 hours 38 mins,"2,179 km" +West Palm Beach,Plattsburgh,,21 hours 55 mins,"2,436 km" +West Palm Beach,Ogdensburg,,21 hours 40 mins,"2,385 km" +West Palm Beach,Ithaca,,19 hours 23 mins,"2,118 km" +West Palm Beach,Elmira,,18 hours 46 mins,"2,046 km" +West Palm Beach,White Plains,,18 hours 6 mins,"2,007 km" +West Palm Beach,Albany,,, +West Palm Beach,Binghamton,,18 hours 38 mins,"2,067 km" +West Palm Beach,Rochester,,20 hours 2 mins,"2,208 km" +Buffalo,West Palm Beach,,19 hours 20 mins,"2,135 km" +Manhattan,West Palm Beach,,17 hours 54 mins,"1,972 km" +Niagara Falls,West Palm Beach,,19 hours 42 mins,"2,165 km" +Islip,West Palm Beach,,18 hours 35 mins,"2,041 km" +New York,West Palm Beach,,17 hours 45 mins,"1,966 km" +Watertown,West Palm Beach,,20 hours 55 mins,"2,297 km" +Newburgh,West Palm Beach,,18 hours 37 mins,"2,059 km" +Syracuse,West Palm Beach,,19 hours 51 mins,"2,184 km" +Plattsburgh,West Palm Beach,,22 hours 2 mins,"2,447 km" +Ogdensburg,West Palm Beach,,21 hours 54 mins,"2,390 km" +Ithaca,West Palm Beach,,19 hours 34 mins,"2,127 km" +Elmira,West Palm Beach,,18 hours 58 mins,"2,056 km" +White Plains,West Palm Beach,,18 hours 12 mins,"2,016 km" +Albany,West Palm Beach,,, +Binghamton,West Palm Beach,,18 hours 51 mins,"2,071 km" +Rochester,West Palm Beach,,20 hours 13 mins,"2,217 km" +Tulsa,San Diego,,20 hours 46 mins,"2,282 km" +Tulsa,Redding,,1 day 3 hours,"3,043 km" +Tulsa,Sacramento,,1 day 1 hour,"2,779 km" +Tulsa,Fresno,,22 hours 27 mins,"2,508 km" +Tulsa,San Luis Obispo,,23 hours 3 mins,"2,551 km" +Tulsa,Oakland,,1 day 1 hour,"2,769 km" +Tulsa,Santa Barbara,,22 hours 2 mins,"2,450 km" +Tulsa,Stockton,,1 day 0 hours,"2,707 km" +Tulsa,Santa Rosa,,1 day 2 hours,"2,862 km" +Tulsa,Bakersfield,,20 hours 50 mins,"2,332 km" +Tulsa,Santa Ana,,20 hours 39 mins,"2,307 km" +Tulsa,Santa Maria,,22 hours 50 mins,"2,506 km" +Tulsa,San Jose,,1 day 1 hour,"2,720 km" +Tulsa,Burbank,,20 hours 42 mins,"2,317 km" +Tulsa,Arcata,,1 day 6 hours,"3,222 km" +Tulsa,Butte,,1 day 2 hours,"2,917 km" +Tulsa,Palm Springs,,19 hours 35 mins,"2,143 km" +Tulsa,Los Angeles,,20 hours 39 mins,"2,307 km" +Tulsa,Long Beach,,20 hours 51 mins,"2,330 km" +Tulsa,San Francisco,,1 day 1 hour,"2,788 km" +Tulsa,Monterey,,1 day 0 hours,"2,686 km" +San Diego,Tulsa,,20 hours 47 mins,"2,279 km" +Redding,Tulsa,,1 day 3 hours,"3,037 km" +Sacramento,Tulsa,,1 day 1 hour,"2,779 km" +Fresno,Tulsa,,22 hours 31 mins,"2,506 km" +San Luis Obispo,Tulsa,,23 hours 6 mins,"2,552 km" +Oakland,Tulsa,,1 day 1 hour,"2,770 km" +Santa Barbara,Tulsa,,22 hours 2 mins,"2,448 km" +Stockton,Tulsa,,1 day 0 hours,"2,707 km" +Santa Rosa,Tulsa,,1 day 2 hours,"2,863 km" +Bakersfield,Tulsa,,20 hours 55 mins,"2,331 km" +Santa Ana,Tulsa,,20 hours 38 mins,"2,302 km" +Santa Maria,Tulsa,,22 hours 54 mins,"2,507 km" +San Jose,Tulsa,,1 day 1 hour,"2,720 km" +Burbank,Tulsa,,20 hours 39 mins,"2,309 km" +Arcata,Tulsa,,1 day 6 hours,"3,224 km" +Butte,Tulsa,,1 day 3 hours,"2,912 km" +Palm Springs,Tulsa,,19 hours 34 mins,"2,141 km" +Los Angeles,Tulsa,,20 hours 37 mins,"2,305 km" +Long Beach,Tulsa,,20 hours 55 mins,"2,332 km" +San Francisco,Tulsa,,1 day 1 hour,"2,788 km" +Monterey,Tulsa,,1 day 1 hour,"2,686 km" +Newburgh,Sarasota,,18 hours 29 mins,"2,002 km" +Newburgh,Fort Myers,,19 hours 27 mins,"2,107 km" +Newburgh,Gainesville,,15 hours 49 mins,"1,712 km" +Newburgh,Orlando,,16 hours 42 mins,"1,829 km" +Newburgh,Daytona Beach,,16 hours 4 mins,"1,755 km" +Newburgh,Jacksonville,,14 hours 39 mins,"1,601 km" +Newburgh,Tampa,,17 hours 42 mins,"1,917 km" +Newburgh,Panama City,,18 hours 43 mins,"1,949 km" +Newburgh,Key West,,22 hours 38 mins,"2,411 km" +Newburgh,West Palm Beach,,18 hours 37 mins,"2,059 km" +Newburgh,Miami,,19 hours 38 mins,"2,158 km" +Newburgh,Tallahassee,,17 hours 2 mins,"1,860 km" +Newburgh,Punta Gorda,,19 hours 1 min,"2,072 km" +Newburgh,Fort Lauderdale,,19 hours 15 mins,"2,127 km" +Newburgh,Pensacola,,18 hours 37 mins,"2,015 km" +Sarasota,Newburgh,,18 hours 24 mins,"1,994 km" +Fort Myers,Newburgh,,19 hours 21 mins,"2,099 km" +Gainesville,Newburgh,,15 hours 46 mins,"1,704 km" +Orlando,Newburgh,,16 hours 31 mins,"1,817 km" +Daytona Beach,Newburgh,,15 hours 57 mins,"1,734 km" +Jacksonville,Newburgh,,14 hours 34 mins,"1,592 km" +Tampa,Newburgh,,17 hours 36 mins,"1,909 km" +Panama City,Newburgh,,18 hours 35 mins,"2,015 km" +Key West,Newburgh,,22 hours 31 mins,"2,401 km" +West Palm Beach,Newburgh,,18 hours 29 mins,"2,048 km" +Miami,Newburgh,,19 hours 28 mins,"2,149 km" +Tallahassee,Newburgh,,16 hours 58 mins,"1,857 km" +Punta Gorda,Newburgh,,18 hours 55 mins,"2,063 km" +Fort Lauderdale,Newburgh,,19 hours 7 mins,"2,116 km" +Pensacola,Newburgh,,18 hours 32 mins,"2,015 km" +Seattle,Abilene,,1 day 5 hours,"3,072 km" +Seattle,Amarillo,,1 day 1 hour,"2,763 km" +Seattle,Harlingen,,1 day 12 hours,"3,857 km" +Seattle,Lubbock,,1 day 3 hours,"2,806 km" +Seattle,College Station,,1 day 9 hours,"3,587 km" +Seattle,Corpus Christi,,1 day 10 hours,"3,681 km" +Seattle,Wichita Falls,,1 day 5 hours,"3,123 km" +Seattle,Waco,,1 day 8 hours,"3,451 km" +Seattle,San Angelo,,1 day 5 hours,"3,106 km" +Seattle,Houston,,1 day 10 hours,"3,726 km" +Seattle,San Antonio,,1 day 8 hours,"3,449 km" +Seattle,Del Rio,,1 day 7 hours,"3,263 km" +Seattle,Mission,,, +Seattle,Beaumont,,, +Seattle,Longview,,1 day 9 hours,"3,550 km" +Seattle,Midland,,1 day 4 hours,"2,939 km" +Seattle,El Paso,,1 day 1 hour,"2,723 km" +Seattle,Brownsville,,1 day 12 hours,"3,896 km" +Seattle,Austin,,1 day 8 hours,"3,408 km" +Seattle,Dallas,,1 day 7 hours,"3,350 km" +Seattle,Killeen,,1 day 8 hours,"3,345 km" +Seattle,Laredo,,1 day 10 hours,"3,553 km" +Seattle,Texarkana,,1 day 9 hours,"3,638 km" +Abilene,Seattle,,1 day 5 hours,"3,069 km" +Amarillo,Seattle,,1 day 1 hour,"2,762 km" +Harlingen,Seattle,,1 day 12 hours,"3,851 km" +Lubbock,Seattle,,1 day 3 hours,"2,803 km" +College Station,Seattle,,1 day 9 hours,"3,618 km" +Corpus Christi,Seattle,,1 day 10 hours,"3,675 km" +Wichita Falls,Seattle,,1 day 5 hours,"3,155 km" +Waco,Seattle,,1 day 8 hours,"3,480 km" +San Angelo,Seattle,,1 day 5 hours,"3,103 km" +Houston,Seattle,,1 day 10 hours,"3,758 km" +San Antonio,Seattle,,1 day 8 hours,"3,443 km" +Del Rio,Seattle,,1 day 7 hours,"3,253 km" +Mission,Seattle,,, +Beaumont,Seattle,,, +Longview,Seattle,,1 day 9 hours,"3,588 km" +Midland,Seattle,,1 day 4 hours,"2,937 km" +El Paso,Seattle,,1 day 1 hour,"2,721 km" +Brownsville,Seattle,,1 day 12 hours,"3,891 km" +Austin,Seattle,,1 day 8 hours,"3,434 km" +Dallas,Seattle,,1 day 7 hours,"3,381 km" +Killeen,Seattle,,1 day 8 hours,"3,343 km" +Laredo,Seattle,,1 day 10 hours,"3,542 km" +Texarkana,Seattle,,1 day 9 hours,"3,644 km" +Pittsburgh,Pellston,,7 hours 48 mins,884 km +Pittsburgh,Traverse City,,7 hours 48 mins,843 km +Pittsburgh,Alpena,,7 hours 46 mins,831 km +Pittsburgh,Iron Mountain,,, +Pittsburgh,Kalamazoo,,5 hours 39 mins,604 km +Pittsburgh,Saginaw,,5 hours 28 mins,597 km +Pittsburgh,Grand Rapids,,6 hours 6 mins,671 km +Pittsburgh,Lansing,,5 hours 8 mins,562 km +Pittsburgh,Muskegon,,6 hours 39 mins,734 km +Pittsburgh,Hancock,,, +Pittsburgh,Detroit,,4 hours 16 mins,460 km +Pittsburgh,Escanaba,,10 hours 18 mins,"1,132 km" +Pellston,Pittsburgh,,7 hours 49 mins,885 km +Traverse City,Pittsburgh,,7 hours 51 mins,844 km +Alpena,Pittsburgh,,7 hours 47 mins,831 km +Iron Mountain,Pittsburgh,,, +Kalamazoo,Pittsburgh,,5 hours 38 mins,603 km +Saginaw,Pittsburgh,,5 hours 28 mins,597 km +Grand Rapids,Pittsburgh,,6 hours 5 mins,671 km +Lansing,Pittsburgh,,5 hours 10 mins,563 km +Muskegon,Pittsburgh,,6 hours 40 mins,735 km +Hancock,Pittsburgh,,, +Detroit,Pittsburgh,,4 hours 17 mins,460 km +Escanaba,Pittsburgh,,10 hours 18 mins,"1,132 km" +Phoenix,Pellston,,1 day 7 hours,"3,384 km" +Phoenix,Traverse City,,1 day 6 hours,"3,287 km" +Phoenix,Alpena,,1 day 8 hours,"3,442 km" +Phoenix,Iron Mountain,,, +Phoenix,Kalamazoo,,1 day 3 hours,"3,010 km" +Phoenix,Saginaw,,1 day 6 hours,"3,244 km" +Phoenix,Grand Rapids,,1 day 4 hours,"3,059 km" +Phoenix,Lansing,,1 day 4 hours,"3,124 km" +Phoenix,Muskegon,,1 day 4 hours,"3,073 km" +Phoenix,Hancock,,, +Phoenix,Detroit,,1 day 5 hours,"3,194 km" +Phoenix,Escanaba,,1 day 6 hours,"3,118 km" +Pellston,Phoenix,,1 day 7 hours,"3,386 km" +Traverse City,Phoenix,,1 day 6 hours,"3,290 km" +Alpena,Phoenix,,1 day 8 hours,"3,442 km" +Iron Mountain,Phoenix,,, +Kalamazoo,Phoenix,,1 day 3 hours,"3,011 km" +Saginaw,Phoenix,,1 day 6 hours,"3,243 km" +Grand Rapids,Phoenix,,1 day 4 hours,"3,063 km" +Lansing,Phoenix,,1 day 4 hours,"3,126 km" +Muskegon,Phoenix,,1 day 4 hours,"3,074 km" +Hancock,Phoenix,,, +Detroit,Phoenix,,1 day 5 hours,"3,196 km" +Escanaba,Phoenix,,1 day 6 hours,"3,118 km" +San Francisco,Twin Falls,,10 hours 3 mins,"1,078 km" +San Francisco,Pocatello,,11 hours 46 mins,"1,261 km" +San Francisco,Idaho Falls,,12 hours 22 mins,"1,335 km" +San Francisco,Sun Valley,,11 hours 43 mins,"1,214 km" +San Francisco,Boise,,9 hours 53 mins,"1,029 km" +San Francisco,Lewiston,,1 day 23 hours,"5,196 km" +Twin Falls,San Francisco,,10 hours 7 mins,"1,078 km" +Pocatello,San Francisco,,11 hours 51 mins,"1,261 km" +Idaho Falls,San Francisco,,12 hours 27 mins,"1,335 km" +Sun Valley,San Francisco,,11 hours 47 mins,"1,213 km" +Boise,San Francisco,,9 hours 58 mins,"1,030 km" +Lewiston,San Francisco,,1 day 23 hours,"5,191 km" +Washington,Orlando,,12 hours 15 mins,"1,364 km" +Orlando,Washington,,12 hours 10 mins,"1,361 km" +Milwaukee,Augusta,,14 hours 14 mins,"1,541 km" +Milwaukee,Decatur,,12 hours 21 mins,"1,315 km" +Milwaukee,Atlanta,,12 hours 6 mins,"1,307 km" +Milwaukee,Valdosta,,15 hours 22 mins,"1,674 km" +Milwaukee,Savannah,,15 hours 39 mins,"1,691 km" +Augusta,Milwaukee,,14 hours 15 mins,"1,483 km" +Decatur,Milwaukee,,12 hours 23 mins,"1,317 km" +Atlanta,Milwaukee,,12 hours 6 mins,"1,309 km" +Valdosta,Milwaukee,,15 hours 22 mins,"1,676 km" +Savannah,Milwaukee,,15 hours 41 mins,"1,690 km" +Boston,Greensboro,,11 hours 40 mins,"1,215 km" +Boston,Wilmington,,12 hours 27 mins,"1,304 km" +Boston,New Bern,,12 hours 1 min,"1,239 km" +Boston,Charlotte,,12 hours 56 mins,"1,361 km" +Boston,Raleigh,,11 hours 11 mins,"1,165 km" +Boston,Asheville,,13 hours 54 mins,"1,466 km" +Boston,Fayetteville,,11 hours 42 mins,"1,226 km" +Greensboro,Boston,,11 hours 36 mins,"1,205 km" +Wilmington,Boston,,12 hours 22 mins,"1,292 km" +New Bern,Boston,,11 hours 56 mins,"1,240 km" +Charlotte,Boston,,12 hours 53 mins,"1,348 km" +Raleigh,Boston,,11 hours 7 mins,"1,154 km" +Asheville,Boston,,13 hours 52 mins,"1,467 km" +Fayetteville,Boston,,11 hours 39 mins,"1,215 km" +Buffalo,Boston,,6 hours 50 mins,737 km +Boston,Buffalo,,6 hours 50 mins,733 km +Norfolk,Nashville,,10 hours 29 mins,"1,136 km" +Norfolk,Bristol,,, +Norfolk,Knoxville,,7 hours 52 mins,850 km +Norfolk,Chattanooga,,9 hours 28 mins,"1,027 km" +Norfolk,Memphis,,13 hours 31 mins,"1,476 km" +Nashville,Norfolk,,10 hours 29 mins,"1,135 km" +Bristol,Norfolk,,, +Knoxville,Norfolk,,7 hours 50 mins,847 km +Chattanooga,Norfolk,,9 hours 28 mins,"1,025 km" +Memphis,Norfolk,,13 hours 31 mins,"1,473 km" +Missoula,Oakland,,16 hours 26 mins,"1,565 km" +Oakland,Missoula,,16 hours 28 mins,"1,565 km" +Greer,Buffalo,,11 hours 19 mins,"1,200 km" +Greer,Manhattan,,11 hours 3 mins,"1,154 km" +Greer,Niagara Falls,,11 hours 40 mins,"1,230 km" +Greer,Islip,,11 hours 43 mins,"1,224 km" +Greer,New York,,10 hours 53 mins,"1,147 km" +Greer,Watertown,,13 hours 16 mins,"1,419 km" +Greer,Newburgh,,11 hours 40 mins,"1,242 km" +Greer,Syracuse,,12 hours 13 mins,"1,306 km" +Greer,Plattsburgh,,15 hours 7 mins,"1,631 km" +Greer,Ogdensburg,,14 hours 15 mins,"1,512 km" +Greer,Ithaca,,11 hours 54 mins,"1,242 km" +Greer,Elmira,,11 hours 16 mins,"1,170 km" +Greer,White Plains,,11 hours 20 mins,"1,198 km" +Greer,Albany,,, +Greer,Binghamton,,11 hours 13 mins,"1,194 km" +Greer,Rochester,,12 hours 16 mins,"1,304 km" +Buffalo,Greer,,11 hours 19 mins,"1,197 km" +Manhattan,Greer,,11 hours 4 mins,"1,161 km" +Niagara Falls,Greer,,11 hours 41 mins,"1,228 km" +Islip,Greer,,11 hours 45 mins,"1,230 km" +New York,Greer,,10 hours 56 mins,"1,156 km" +Watertown,Greer,,13 hours 16 mins,"1,418 km" +Newburgh,Greer,,11 hours 42 mins,"1,240 km" +Syracuse,Greer,,12 hours 13 mins,"1,305 km" +Plattsburgh,Greer,,15 hours 7 mins,"1,628 km" +Ogdensburg,Greer,,14 hours 15 mins,"1,511 km" +Ithaca,Greer,,11 hours 54 mins,"1,240 km" +Elmira,Greer,,11 hours 17 mins,"1,170 km" +White Plains,Greer,,11 hours 22 mins,"1,205 km" +Albany,Greer,,, +Binghamton,Greer,,11 hours 12 mins,"1,192 km" +Rochester,Greer,,12 hours 18 mins,"1,302 km" +Green Bay,Moline,,4 hours 47 mins,496 km +Green Bay,Belleville,,7 hours 21 mins,781 km +Green Bay,Bloomington,,6 hours 49 mins,713 km +Green Bay,Champaign,,5 hours 7 mins,545 km +Green Bay,Chicago,,3 hours 17 mins,333 km +Green Bay,Rockford,,3 hours 13 mins,326 km +Green Bay,Peoria,,5 hours 7 mins,532 km +Moline,Green Bay,,4 hours 46 mins,495 km +Belleville,Green Bay,,7 hours 19 mins,782 km +Bloomington,Green Bay,,6 hours 49 mins,713 km +Champaign,Green Bay,,5 hours 7 mins,545 km +Chicago,Green Bay,,3 hours 11 mins,332 km +Rockford,Green Bay,,3 hours 13 mins,325 km +Peoria,Green Bay,,5 hours 7 mins,528 km +Bozeman,Moline,,17 hours 59 mins,"1,986 km" +Bozeman,Belleville,,20 hours 41 mins,"2,290 km" +Bozeman,Bloomington,,23 hours 12 mins,"2,545 km" +Bozeman,Champaign,,20 hours 37 mins,"2,277 km" +Bozeman,Chicago,,19 hours 51 mins,"2,233 km" +Bozeman,Rockford,,18 hours 47 mins,"2,114 km" +Bozeman,Peoria,,19 hours 19 mins,"2,134 km" +Moline,Bozeman,,18 hours 8 mins,"1,992 km" +Belleville,Bozeman,,20 hours 46 mins,"2,290 km" +Bloomington,Bozeman,,23 hours 21 mins,"2,552 km" +Champaign,Bozeman,,20 hours 48 mins,"2,284 km" +Chicago,Bozeman,,19 hours 51 mins,"2,233 km" +Rockford,Bozeman,,18 hours 50 mins,"2,115 km" +Peoria,Bozeman,,19 hours 28 mins,"2,141 km" +New Orleans,Martha's Vineyard,,1 day 0 hours,"2,538 km" +New Orleans,Hyannis,,23 hours 17 mins,"2,519 km" +New Orleans,Boston,,22 hours 36 mins,"2,454 km" +New Orleans,Nantucket,,1 day 2 hours,"2,566 km" +Martha's Vineyard,New Orleans,,1 day 0 hours,"2,544 km" +Hyannis,New Orleans,,23 hours 20 mins,"2,522 km" +Boston,New Orleans,,22 hours 37 mins,"2,456 km" +Nantucket,New Orleans,,1 day 2 hours,"2,573 km" +Wilmington,Philadelphia,,7 hours 41 mins,811 km +Philadelphia,Wilmington,,7 hours 44 mins,819 km +Detroit,Bemidji,,13 hours 41 mins,"1,463 km" +Detroit,Minneapolis,,10 hours 14 mins,"1,119 km" +Detroit,Duluth,,11 hours 11 mins,"1,215 km" +Detroit,Brainerd,,12 hours 10 mins,"1,320 km" +Detroit,Gustavus,,10 hours 40 mins,"1,166 km" +Detroit,St. Cloud,,11 hours 10 mins,"1,222 km" +Detroit,Hibbing,,12 hours 28 mins,"1,334 km" +Detroit,International Falls,,13 hours 52 mins,"1,476 km" +Bemidji,Detroit,,13 hours 35 mins,"1,462 km" +Minneapolis,Detroit,,10 hours 8 mins,"1,116 km" +Duluth,Detroit,,11 hours 8 mins,"1,213 km" +Brainerd,Detroit,,12 hours 6 mins,"1,319 km" +Gustavus,Detroit,,10 hours 36 mins,"1,163 km" +St. Cloud,Detroit,,11 hours 6 mins,"1,221 km" +Hibbing,Detroit,,12 hours 24 mins,"1,333 km" +International Falls,Detroit,,13 hours 48 mins,"1,475 km" +Pocatello,Salt Lake City,,2 hours 21 mins,264 km +Salt Lake City,Pocatello,,2 hours 20 mins,264 km +Orlando,Phoenix,,1 day 6 hours,"3,438 km" +Phoenix,Orlando,,1 day 7 hours,"3,442 km" +Sacramento,Abilene,,23 hours 18 mins,"2,520 km" +Sacramento,Amarillo,,20 hours 2 mins,"2,200 km" +Sacramento,Harlingen,,1 day 5 hours,"3,200 km" +Sacramento,Lubbock,,20 hours 56 mins,"2,253 km" +Sacramento,College Station,,1 day 4 hours,"2,993 km" +Sacramento,Corpus Christi,,1 day 3 hours,"3,025 km" +Sacramento,Wichita Falls,,23 hours 18 mins,"2,554 km" +Sacramento,Waco,,1 day 2 hours,"2,820 km" +Sacramento,San Angelo,,23 hours 16 mins,"2,556 km" +Sacramento,Houston,,1 day 4 hours,"3,107 km" +Sacramento,San Antonio,,1 day 1 hour,"2,793 km" +Sacramento,Del Rio,,23 hours 44 mins,"2,589 km" +Sacramento,Mission,,, +Sacramento,Beaumont,,, +Sacramento,Longview,,1 day 3 hours,"2,981 km" +Sacramento,Midland,,21 hours 47 mins,"2,397 km" +Sacramento,El Paso,,17 hours 25 mins,"1,907 km" +Sacramento,Brownsville,,1 day 5 hours,"3,240 km" +Sacramento,Austin,,1 day 2 hours,"2,833 km" +Sacramento,Dallas,,1 day 1 hour,"2,781 km" +Sacramento,Killeen,,1 day 2 hours,"2,826 km" +Sacramento,Laredo,,1 day 3 hours,"2,879 km" +Sacramento,Texarkana,,1 day 4 hours,"2,990 km" +Abilene,Sacramento,,23 hours 15 mins,"2,517 km" +Amarillo,Sacramento,,19 hours 58 mins,"2,197 km" +Harlingen,Sacramento,,1 day 5 hours,"3,201 km" +Lubbock,Sacramento,,20 hours 52 mins,"2,251 km" +College Station,Sacramento,,1 day 3 hours,"2,945 km" +Corpus Christi,Sacramento,,1 day 3 hours,"3,025 km" +Wichita Falls,Sacramento,,23 hours 16 mins,"2,553 km" +Waco,Sacramento,,1 day 2 hours,"2,877 km" +San Angelo,Sacramento,,23 hours 17 mins,"2,551 km" +Houston,Sacramento,,1 day 4 hours,"3,107 km" +San Antonio,Sacramento,,1 day 1 hour,"2,793 km" +Del Rio,Sacramento,,23 hours 46 mins,"2,590 km" +Mission,Sacramento,,, +Beaumont,Sacramento,,, +Longview,Sacramento,,1 day 3 hours,"2,985 km" +Midland,Sacramento,,21 hours 49 mins,"2,397 km" +El Paso,Sacramento,,17 hours 28 mins,"1,907 km" +Brownsville,Sacramento,,1 day 5 hours,"3,241 km" +Austin,Sacramento,,1 day 2 hours,"2,834 km" +Dallas,Sacramento,,1 day 1 hour,"2,778 km" +Killeen,Sacramento,,1 day 2 hours,"2,826 km" +Laredo,Sacramento,,1 day 3 hours,"2,879 km" +Texarkana,Sacramento,,1 day 4 hours,"3,002 km" +Fayetteville,Buffalo,,11 hours 11 mins,"1,169 km" +Fayetteville,Manhattan,,8 hours 28 mins,879 km +Fayetteville,Niagara Falls,,11 hours 32 mins,"1,200 km" +Fayetteville,Islip,,9 hours 9 mins,949 km +Fayetteville,New York,,8 hours 19 mins,873 km +Fayetteville,Watertown,,11 hours 22 mins,"1,208 km" +Fayetteville,Newburgh,,9 hours 9 mins,964 km +Fayetteville,Syracuse,,10 hours 19 mins,"1,096 km" +Fayetteville,Plattsburgh,,12 hours 35 mins,"1,353 km" +Fayetteville,Ogdensburg,,12 hours 20 mins,"1,301 km" +Fayetteville,Ithaca,,10 hours 3 mins,"1,035 km" +Fayetteville,Elmira,,9 hours 26 mins,962 km +Fayetteville,White Plains,,8 hours 46 mins,923 km +Fayetteville,Albany,,, +Fayetteville,Binghamton,,9 hours 19 mins,984 km +Fayetteville,Rochester,,10 hours 42 mins,"1,124 km" +Buffalo,Fayetteville,,11 hours 12 mins,"1,171 km" +Manhattan,Fayetteville,,8 hours 29 mins,886 km +Niagara Falls,Fayetteville,,11 hours 34 mins,"1,202 km" +Islip,Fayetteville,,9 hours 11 mins,955 km +New York,Fayetteville,,8 hours 21 mins,881 km +Watertown,Fayetteville,,11 hours 30 mins,"1,212 km" +Newburgh,Fayetteville,,9 hours 13 mins,973 km +Syracuse,Fayetteville,,10 hours 27 mins,"1,098 km" +Plattsburgh,Fayetteville,,12 hours 38 mins,"1,362 km" +Ogdensburg,Fayetteville,,12 hours 29 mins,"1,304 km" +Ithaca,Fayetteville,,10 hours 10 mins,"1,041 km" +Elmira,Fayetteville,,9 hours 33 mins,970 km +White Plains,Fayetteville,,8 hours 47 mins,930 km +Albany,Fayetteville,,, +Binghamton,Fayetteville,,9 hours 26 mins,985 km +Rochester,Fayetteville,,10 hours 49 mins,"1,131 km" +Dayton,Greensboro,,6 hours 46 mins,698 km +Dayton,Wilmington,,9 hours 40 mins,"1,025 km" +Dayton,New Bern,,9 hours 39 mins,"1,003 km" +Dayton,Charlotte,,7 hours 5 mins,734 km +Dayton,Raleigh,,7 hours 56 mins,818 km +Dayton,Asheville,,6 hours 21 mins,672 km +Dayton,Fayetteville,,8 hours 16 mins,843 km +Greensboro,Dayton,,6 hours 46 mins,697 km +Wilmington,Dayton,,9 hours 39 mins,"1,024 km" +New Bern,Dayton,,9 hours 38 mins,"1,002 km" +Charlotte,Dayton,,7 hours 6 mins,735 km +Raleigh,Dayton,,7 hours 53 mins,817 km +Asheville,Dayton,,6 hours 21 mins,671 km +Fayetteville,Dayton,,8 hours 17 mins,843 km +Tulsa,Houston,,7 hours 26 mins,795 km +Houston,Tulsa,,7 hours 26 mins,796 km +Dallas,Seattle,,1 day 7 hours,"3,381 km" +Dallas,Wenatchee,,1 day 6 hours,"3,308 km" +Dallas,Pasco,,, +Dallas,Yakima,,1 day 5 hours,"3,153 km" +Dallas,Walla Walla,,1 day 3 hours,"2,994 km" +Dallas,Everett,,1 day 7 hours,"3,416 km" +Dallas,Spokane,,1 day 3 hours,"3,037 km" +Seattle,Dallas,,1 day 7 hours,"3,350 km" +Wenatchee,Dallas,,1 day 6 hours,"3,277 km" +Pasco,Dallas,,, +Yakima,Dallas,,1 day 5 hours,"3,122 km" +Walla Walla,Dallas,,1 day 3 hours,"2,964 km" +Everett,Dallas,,1 day 7 hours,"3,385 km" +Spokane,Dallas,,1 day 3 hours,"3,007 km" +Fort Lauderdale,Green Bay,,22 hours 49 mins,"2,524 km" +Fort Lauderdale,Rhinelander,,1 day 0 hours,"2,739 km" +Fort Lauderdale,Marquette,,21 hours 7 mins,"2,341 km" +Fort Lauderdale,Madison,,21 hours 46 mins,"2,431 km" +Fort Lauderdale,La Crosse,,23 hours 38 mins,"2,647 km" +Fort Lauderdale,Devils Lake,,22 hours 25 mins,"2,495 km" +Fort Lauderdale,Appleton,,22 hours 38 mins,"2,505 km" +Fort Lauderdale,Mosinee,,23 hours 21 mins,"2,626 km" +Fort Lauderdale,Milwaukee,,21 hours 8 mins,"2,340 km" +Fort Lauderdale,Eau Claire,,1 day 0 hours,"2,704 km" +Green Bay,Fort Lauderdale,,22 hours 50 mins,"2,520 km" +Rhinelander,Fort Lauderdale,,1 day 0 hours,"2,732 km" +Marquette,Fort Lauderdale,,21 hours 8 mins,"2,335 km" +Madison,Fort Lauderdale,,21 hours 41 mins,"2,423 km" +La Crosse,Fort Lauderdale,,23 hours 34 mins,"2,639 km" +Devils Lake,Fort Lauderdale,,22 hours 23 mins,"2,487 km" +Appleton,Fort Lauderdale,,22 hours 37 mins,"2,501 km" +Mosinee,Fort Lauderdale,,23 hours 18 mins,"2,619 km" +Milwaukee,Fort Lauderdale,,21 hours 9 mins,"2,336 km" +Eau Claire,Fort Lauderdale,,1 day 0 hours,"2,697 km" +Buffalo,Atlanta,,13 hours 7 mins,"1,443 km" +Atlanta,Buffalo,,13 hours 6 mins,"1,443 km" +Santa Rosa,Portland,,10 hours 0 mins,984 km +Portland,Santa Rosa,,10 hours 3 mins,984 km +New York,Ponce,,, +Ponce,New York,,, +Detroit,Paducah,,8 hours 33 mins,927 km +Detroit,Owensboro,,7 hours 2 mins,752 km +Detroit,Lexington,,5 hours 14 mins,555 km +Detroit,Louisville,,5 hours 25 mins,582 km +Paducah,Detroit,,8 hours 32 mins,926 km +Owensboro,Detroit,,7 hours 0 mins,751 km +Lexington,Detroit,,5 hours 14 mins,554 km +Louisville,Detroit,,5 hours 27 mins,581 km +Raleigh,Dallas,,17 hours 20 mins,"1,914 km" +Dallas,Raleigh,,17 hours 23 mins,"1,910 km" +Fort Wayne,Moline,,5 hours 8 mins,497 km +Fort Wayne,Belleville,,5 hours 44 mins,590 km +Fort Wayne,Bloomington,,2 hours 54 mins,283 km +Fort Wayne,Champaign,,3 hours 41 mins,377 km +Fort Wayne,Chicago,,3 hours 1 min,261 km +Fort Wayne,Rockford,,4 hours 25 mins,401 km +Fort Wayne,Peoria,,4 hours 48 mins,424 km +Moline,Fort Wayne,,5 hours 8 mins,496 km +Belleville,Fort Wayne,,5 hours 45 mins,587 km +Bloomington,Fort Wayne,,2 hours 54 mins,280 km +Champaign,Fort Wayne,,3 hours 47 mins,331 km +Chicago,Fort Wayne,,3 hours 0 mins,261 km +Rockford,Fort Wayne,,4 hours 25 mins,410 km +Peoria,Fort Wayne,,4 hours 53 mins,425 km +Nashville,San Diego,,1 day 5 hours,"3,200 km" +Nashville,Redding,,1 day 10 hours,"3,763 km" +Nashville,Sacramento,,1 day 9 hours,"3,661 km" +Nashville,Fresno,,1 day 7 hours,"3,426 km" +Nashville,San Luis Obispo,,1 day 7 hours,"3,469 km" +Nashville,Oakland,,1 day 9 hours,"3,687 km" +Nashville,Santa Barbara,,1 day 6 hours,"3,368 km" +Nashville,Stockton,,1 day 9 hours,"3,626 km" +Nashville,Santa Rosa,,1 day 10 hours,"3,780 km" +Nashville,Bakersfield,,1 day 5 hours,"3,250 km" +Nashville,Santa Ana,,1 day 5 hours,"3,226 km" +Nashville,Santa Maria,,1 day 7 hours,"3,425 km" +Nashville,San Jose,,1 day 9 hours,"3,638 km" +Nashville,Burbank,,1 day 5 hours,"3,235 km" +Nashville,Arcata,,1 day 13 hours,"3,988 km" +Nashville,Butte,,1 day 10 hours,"3,700 km" +Nashville,Palm Springs,,1 day 4 hours,"3,061 km" +Nashville,Los Angeles,,1 day 5 hours,"3,226 km" +Nashville,Long Beach,,1 day 5 hours,"3,248 km" +Nashville,San Francisco,,1 day 9 hours,"3,706 km" +Nashville,Monterey,,1 day 9 hours,"3,604 km" +San Diego,Nashville,,1 day 5 hours,"3,198 km" +Redding,Nashville,,1 day 10 hours,"3,769 km" +Sacramento,Nashville,,1 day 9 hours,"3,666 km" +Fresno,Nashville,,1 day 7 hours,"3,426 km" +San Luis Obispo,Nashville,,1 day 7 hours,"3,471 km" +Oakland,Nashville,,1 day 9 hours,"3,689 km" +Santa Barbara,Nashville,,1 day 6 hours,"3,368 km" +Stockton,Nashville,,1 day 9 hours,"3,626 km" +Santa Rosa,Nashville,,1 day 10 hours,"3,782 km" +Bakersfield,Nashville,,1 day 5 hours,"3,251 km" +Santa Ana,Nashville,,1 day 5 hours,"3,221 km" +Santa Maria,Nashville,,1 day 7 hours,"3,426 km" +San Jose,Nashville,,1 day 9 hours,"3,639 km" +Burbank,Nashville,,1 day 5 hours,"3,228 km" +Arcata,Nashville,,1 day 13 hours,"3,992 km" +Butte,Nashville,,1 day 10 hours,"3,705 km" +Palm Springs,Nashville,,1 day 4 hours,"3,060 km" +Los Angeles,Nashville,,1 day 5 hours,"3,225 km" +Long Beach,Nashville,,1 day 5 hours,"3,252 km" +San Francisco,Nashville,,1 day 9 hours,"3,707 km" +Monterey,Nashville,,1 day 9 hours,"3,606 km" +Boston,San Juan,,, +San Juan,Boston,,, +Fayetteville,Abilene,,19 hours 14 mins,"2,157 km" +Fayetteville,Amarillo,,21 hours 20 mins,"2,398 km" +Fayetteville,Harlingen,,21 hours 33 mins,"2,399 km" +Fayetteville,Lubbock,,21 hours 37 mins,"2,421 km" +Fayetteville,College Station,,17 hours 50 mins,"1,934 km" +Fayetteville,Corpus Christi,,19 hours 47 mins,"2,205 km" +Fayetteville,Wichita Falls,,18 hours 38 mins,"2,090 km" +Fayetteville,Waco,,17 hours 40 mins,"1,938 km" +Fayetteville,San Angelo,,20 hours 27 mins,"2,281 km" +Fayetteville,Houston,,16 hours 41 mins,"1,872 km" +Fayetteville,San Antonio,,19 hours 33 mins,"2,185 km" +Fayetteville,Del Rio,,21 hours 56 mins,"2,432 km" +Fayetteville,Mission,,, +Fayetteville,Beaumont,,, +Fayetteville,Longview,,14 hours 54 mins,"1,663 km" +Fayetteville,Midland,,21 hours 20 mins,"2,393 km" +Fayetteville,El Paso,,1 day 2 hours,"2,883 km" +Fayetteville,Brownsville,,21 hours 54 mins,"2,439 km" +Fayetteville,Austin,,19 hours 5 mins,"2,100 km" +Fayetteville,Dallas,,16 hours 37 mins,"1,864 km" +Fayetteville,Killeen,,18 hours 30 mins,"2,039 km" +Fayetteville,Laredo,,21 hours 39 mins,"2,377 km" +Fayetteville,Texarkana,,14 hours 58 mins,"1,679 km" +Abilene,Fayetteville,,19 hours 10 mins,"2,153 km" +Amarillo,Fayetteville,,21 hours 17 mins,"2,385 km" +Harlingen,Fayetteville,,21 hours 26 mins,"2,399 km" +Lubbock,Fayetteville,,21 hours 30 mins,"2,419 km" +College Station,Fayetteville,,17 hours 42 mins,"1,930 km" +Corpus Christi,Fayetteville,,19 hours 48 mins,"2,210 km" +Wichita Falls,Fayetteville,,18 hours 39 mins,"2,083 km" +Waco,Fayetteville,,17 hours 36 mins,"1,939 km" +San Angelo,Fayetteville,,20 hours 22 mins,"2,277 km" +Houston,Fayetteville,,16 hours 37 mins,"1,871 km" +San Antonio,Fayetteville,,19 hours 30 mins,"2,185 km" +Del Rio,Fayetteville,,21 hours 56 mins,"2,432 km" +Mission,Fayetteville,,, +Beaumont,Fayetteville,,, +Longview,Fayetteville,,14 hours 52 mins,"1,663 km" +Midland,Fayetteville,,21 hours 16 mins,"2,393 km" +El Paso,Fayetteville,,1 day 2 hours,"2,883 km" +Brownsville,Fayetteville,,21 hours 50 mins,"2,439 km" +Austin,Fayetteville,,19 hours 2 mins,"2,101 km" +Dallas,Fayetteville,,16 hours 36 mins,"1,862 km" +Killeen,Fayetteville,,18 hours 27 mins,"2,035 km" +Laredo,Fayetteville,,21 hours 33 mins,"2,377 km" +Texarkana,Fayetteville,,14 hours 57 mins,"1,681 km" +Asheville,Moline,,11 hours 30 mins,"1,245 km" +Asheville,Belleville,,8 hours 48 mins,947 km +Asheville,Bloomington,,7 hours 12 mins,742 km +Asheville,Champaign,,8 hours 54 mins,955 km +Asheville,Chicago,,9 hours 54 mins,"1,051 km" +Asheville,Rockford,,11 hours 14 mins,"1,196 km" +Asheville,Peoria,,10 hours 7 mins,"1,095 km" +Moline,Asheville,,11 hours 28 mins,"1,244 km" +Belleville,Asheville,,8 hours 48 mins,945 km +Bloomington,Asheville,,7 hours 13 mins,743 km +Champaign,Asheville,,8 hours 54 mins,953 km +Chicago,Asheville,,9 hours 54 mins,"1,053 km" +Rockford,Asheville,,11 hours 12 mins,"1,196 km" +Peoria,Asheville,,10 hours 7 mins,"1,095 km" +Dayton,State College,,6 hours 13 mins,632 km +Dayton,Johnstown,,5 hours 9 mins,521 km +Dayton,Harrisburg,,6 hours 48 mins,705 km +Dayton,Erie,,4 hours 37 mins,497 km +Dayton,Pittsburgh,,3 hours 57 mins,410 km +Dayton,Latrobe,,4 hours 35 mins,457 km +Dayton,Philadelphia,,8 hours 17 mins,867 km +Dayton,Lewisburg,,6 hours 56 mins,750 km +Dayton,Scranton,,8 hours 6 mins,876 km +State College,Dayton,,6 hours 13 mins,638 km +Johnstown,Dayton,,5 hours 9 mins,519 km +Harrisburg,Dayton,,6 hours 47 mins,705 km +Erie,Dayton,,4 hours 37 mins,496 km +Pittsburgh,Dayton,,3 hours 57 mins,412 km +Latrobe,Dayton,,4 hours 32 mins,457 km +Philadelphia,Dayton,,8 hours 19 mins,869 km +Lewisburg,Dayton,,6 hours 54 mins,749 km +Scranton,Dayton,,8 hours 4 mins,874 km +Richmond,Philadelphia,,4 hours 1 min,402 km +Philadelphia,Richmond,,4 hours 2 mins,407 km +Fresno,Abilene,,20 hours 42 mins,"2,247 km" +Fresno,Amarillo,,17 hours 25 mins,"1,927 km" +Fresno,Harlingen,,1 day 2 hours,"2,933 km" +Fresno,Lubbock,,18 hours 19 mins,"1,981 km" +Fresno,College Station,,1 day 1 hour,"2,671 km" +Fresno,Corpus Christi,,1 day 1 hour,"2,758 km" +Fresno,Wichita Falls,,20 hours 42 mins,"2,281 km" +Fresno,Waco,,23 hours 38 mins,"2,548 km" +Fresno,San Angelo,,20 hours 47 mins,"2,281 km" +Fresno,Houston,,1 day 2 hours,"2,840 km" +Fresno,San Antonio,,22 hours 44 mins,"2,526 km" +Fresno,Del Rio,,21 hours 18 mins,"2,322 km" +Fresno,Mission,,, +Fresno,Beaumont,,, +Fresno,Longview,,1 day 1 hour,"2,708 km" +Fresno,Midland,,19 hours 21 mins,"2,130 km" +Fresno,El Paso,,14 hours 58 mins,"1,639 km" +Fresno,Brownsville,,1 day 3 hours,"2,973 km" +Fresno,Austin,,23 hours 33 mins,"2,565 km" +Fresno,Dallas,,22 hours 44 mins,"2,508 km" +Fresno,Killeen,,23 hours 22 mins,"2,559 km" +Fresno,Laredo,,1 day 0 hours,"2,612 km" +Fresno,Texarkana,,1 day 1 hour,"2,718 km" +Abilene,Fresno,,20 hours 39 mins,"2,247 km" +Amarillo,Fresno,,17 hours 22 mins,"1,927 km" +Harlingen,Fresno,,1 day 2 hours,"2,935 km" +Lubbock,Fresno,,18 hours 16 mins,"1,981 km" +College Station,Fresno,,1 day 1 hour,"2,675 km" +Corpus Christi,Fresno,,1 day 1 hour,"2,759 km" +Wichita Falls,Fresno,,20 hours 40 mins,"2,282 km" +Waco,Fresno,,23 hours 36 mins,"2,607 km" +San Angelo,Fresno,,20 hours 42 mins,"2,280 km" +Houston,Fresno,,1 day 2 hours,"2,841 km" +San Antonio,Fresno,,22 hours 44 mins,"2,527 km" +Del Rio,Fresno,,21 hours 19 mins,"2,323 km" +Mission,Fresno,,, +Beaumont,Fresno,,, +Longview,Fresno,,1 day 1 hour,"2,715 km" +Midland,Fresno,,19 hours 21 mins,"2,131 km" +El Paso,Fresno,,15 hours 0 mins,"1,641 km" +Brownsville,Fresno,,1 day 3 hours,"2,975 km" +Austin,Fresno,,23 hours 33 mins,"2,567 km" +Dallas,Fresno,,22 hours 42 mins,"2,508 km" +Killeen,Fresno,,23 hours 23 mins,"2,560 km" +Laredo,Fresno,,1 day 0 hours,"2,613 km" +Texarkana,Fresno,,1 day 1 hour,"2,731 km" +Eau Claire,Moline,,4 hours 47 mins,433 km +Eau Claire,Belleville,,7 hours 48 mins,849 km +Eau Claire,Bloomington,,8 hours 16 mins,884 km +Eau Claire,Champaign,,6 hours 5 mins,677 km +Eau Claire,Chicago,,4 hours 46 mins,511 km +Eau Claire,Rockford,,3 hours 42 mins,392 km +Eau Claire,Peoria,,5 hours 36 mins,598 km +Moline,Eau Claire,,4 hours 47 mins,433 km +Belleville,Eau Claire,,7 hours 49 mins,849 km +Bloomington,Eau Claire,,8 hours 18 mins,886 km +Champaign,Eau Claire,,6 hours 8 mins,678 km +Chicago,Eau Claire,,4 hours 44 mins,511 km +Rockford,Eau Claire,,3 hours 43 mins,393 km +Peoria,Eau Claire,,5 hours 37 mins,596 km +Washington,Montgomery,,11 hours 52 mins,"1,287 km" +Montgomery,Washington,,11 hours 54 mins,"1,286 km" +Denver,Appleton,,15 hours 36 mins,"1,728 km" +Appleton,Denver,,15 hours 36 mins,"1,722 km" +Newark,Green Bay,,14 hours 52 mins,"1,585 km" +Newark,Rhinelander,,16 hours 42 mins,"1,799 km" +Newark,Marquette,,13 hours 10 mins,"1,402 km" +Newark,Madison,,14 hours 3 mins,"1,490 km" +Newark,La Crosse,,15 hours 55 mins,"1,707 km" +Newark,Devils Lake,,14 hours 43 mins,"1,555 km" +Newark,Appleton,,14 hours 41 mins,"1,567 km" +Newark,Mosinee,,15 hours 38 mins,"1,686 km" +Newark,Milwaukee,,13 hours 11 mins,"1,401 km" +Newark,Eau Claire,,16 hours 25 mins,"1,764 km" +Green Bay,Newark,,14 hours 50 mins,"1,586 km" +Rhinelander,Newark,,16 hours 36 mins,"1,808 km" +Marquette,Newark,,13 hours 8 mins,"1,400 km" +Madison,Newark,,13 hours 55 mins,"1,499 km" +La Crosse,Newark,,15 hours 48 mins,"1,715 km" +Devils Lake,Newark,,14 hours 37 mins,"1,564 km" +Appleton,Newark,,14 hours 37 mins,"1,566 km" +Mosinee,Newark,,15 hours 32 mins,"1,695 km" +Milwaukee,Newark,,13 hours 9 mins,"1,402 km" +Eau Claire,Newark,,16 hours 18 mins,"1,773 km" +Las Vegas,Santa Maria,,6 hours 17 mins,634 km +Santa Maria,Las Vegas,,6 hours 19 mins,636 km +Raleigh,Sarasota,,10 hours 21 mins,"1,132 km" +Raleigh,Fort Myers,,11 hours 19 mins,"1,237 km" +Raleigh,Gainesville,,7 hours 41 mins,842 km +Raleigh,Orlando,,8 hours 34 mins,959 km +Raleigh,Daytona Beach,,7 hours 56 mins,885 km +Raleigh,Jacksonville,,6 hours 31 mins,731 km +Raleigh,Tampa,,9 hours 34 mins,"1,048 km" +Raleigh,Panama City,,10 hours 32 mins,"1,152 km" +Raleigh,Key West,,14 hours 30 mins,"1,542 km" +Raleigh,West Palm Beach,,10 hours 29 mins,"1,190 km" +Raleigh,Miami,,11 hours 30 mins,"1,288 km" +Raleigh,Tallahassee,,8 hours 54 mins,991 km +Raleigh,Punta Gorda,,10 hours 53 mins,"1,202 km" +Raleigh,Fort Lauderdale,,11 hours 7 mins,"1,258 km" +Raleigh,Pensacola,,10 hours 58 mins,"1,175 km" +Sarasota,Raleigh,,10 hours 19 mins,"1,131 km" +Fort Myers,Raleigh,,11 hours 16 mins,"1,237 km" +Gainesville,Raleigh,,7 hours 41 mins,842 km +Orlando,Raleigh,,8 hours 26 mins,955 km +Daytona Beach,Raleigh,,7 hours 52 mins,872 km +Jacksonville,Raleigh,,6 hours 29 mins,729 km +Tampa,Raleigh,,9 hours 31 mins,"1,046 km" +Panama City,Raleigh,,10 hours 30 mins,"1,152 km" +Key West,Raleigh,,14 hours 26 mins,"1,538 km" +West Palm Beach,Raleigh,,10 hours 24 mins,"1,186 km" +Miami,Raleigh,,11 hours 23 mins,"1,287 km" +Tallahassee,Raleigh,,8 hours 53 mins,994 km +Punta Gorda,Raleigh,,10 hours 51 mins,"1,201 km" +Fort Lauderdale,Raleigh,,11 hours 2 mins,"1,254 km" +Pensacola,Raleigh,,10 hours 57 mins,"1,173 km" +Plattsburgh,Sarasota,,21 hours 54 mins,"2,390 km" +Plattsburgh,Fort Myers,,22 hours 51 mins,"2,495 km" +Plattsburgh,Gainesville,,19 hours 14 mins,"2,100 km" +Plattsburgh,Orlando,,20 hours 7 mins,"2,217 km" +Plattsburgh,Daytona Beach,,19 hours 29 mins,"2,143 km" +Plattsburgh,Jacksonville,,18 hours 4 mins,"1,989 km" +Plattsburgh,Tampa,,21 hours 7 mins,"2,305 km" +Plattsburgh,Panama City,,22 hours 7 mins,"2,337 km" +Plattsburgh,Key West,,1 day 2 hours,"2,800 km" +Plattsburgh,West Palm Beach,,22 hours 2 mins,"2,447 km" +Plattsburgh,Miami,,23 hours 2 mins,"2,546 km" +Plattsburgh,Tallahassee,,20 hours 27 mins,"2,248 km" +Plattsburgh,Punta Gorda,,22 hours 26 mins,"2,460 km" +Plattsburgh,Fort Lauderdale,,22 hours 40 mins,"2,515 km" +Plattsburgh,Pensacola,,22 hours 2 mins,"2,403 km" +Sarasota,Plattsburgh,,21 hours 50 mins,"2,382 km" +Fort Myers,Plattsburgh,,22 hours 47 mins,"2,488 km" +Gainesville,Plattsburgh,,19 hours 12 mins,"2,092 km" +Orlando,Plattsburgh,,19 hours 57 mins,"2,206 km" +Daytona Beach,Plattsburgh,,19 hours 23 mins,"2,122 km" +Jacksonville,Plattsburgh,,18 hours 0 mins,"1,980 km" +Tampa,Plattsburgh,,21 hours 2 mins,"2,297 km" +Panama City,Plattsburgh,,22 hours 1 min,"2,403 km" +Key West,Plattsburgh,,1 day 2 hours,"2,789 km" +West Palm Beach,Plattsburgh,,21 hours 55 mins,"2,436 km" +Miami,Plattsburgh,,22 hours 54 mins,"2,537 km" +Tallahassee,Plattsburgh,,20 hours 25 mins,"2,245 km" +Punta Gorda,Plattsburgh,,22 hours 22 mins,"2,451 km" +Fort Lauderdale,Plattsburgh,,22 hours 33 mins,"2,504 km" +Pensacola,Plattsburgh,,21 hours 58 mins,"2,403 km" +Kansas City,Los Angeles,,23 hours 22 mins,"2,604 km" +Los Angeles,Kansas City,,23 hours 12 mins,"2,603 km" +Monterey,Abilene,,22 hours 41 mins,"2,427 km" +Monterey,Amarillo,,19 hours 25 mins,"2,107 km" +Monterey,Harlingen,,1 day 4 hours,"3,095 km" +Monterey,Lubbock,,20 hours 19 mins,"2,161 km" +Monterey,College Station,,1 day 3 hours,"2,887 km" +Monterey,Corpus Christi,,1 day 2 hours,"2,919 km" +Monterey,Wichita Falls,,22 hours 41 mins,"2,461 km" +Monterey,Waco,,1 day 2 hours,"2,728 km" +Monterey,San Angelo,,22 hours 33 mins,"2,450 km" +Monterey,Houston,,1 day 3 hours,"3,001 km" +Monterey,San Antonio,,1 day 0 hours,"2,687 km" +Monterey,Del Rio,,23 hours 0 mins,"2,483 km" +Monterey,Mission,,, +Monterey,Beaumont,,, +Monterey,Longview,,1 day 3 hours,"2,888 km" +Monterey,Midland,,21 hours 4 mins,"2,291 km" +Monterey,El Paso,,16 hours 41 mins,"1,801 km" +Monterey,Brownsville,,1 day 4 hours,"3,134 km" +Monterey,Austin,,1 day 1 hour,"2,727 km" +Monterey,Dallas,,1 day 1 hour,"2,688 km" +Monterey,Killeen,,1 day 1 hour,"2,720 km" +Monterey,Laredo,,1 day 2 hours,"2,773 km" +Monterey,Texarkana,,1 day 3 hours,"2,898 km" +Abilene,Monterey,,22 hours 38 mins,"2,424 km" +Amarillo,Monterey,,19 hours 21 mins,"2,104 km" +Harlingen,Monterey,,1 day 4 hours,"3,096 km" +Lubbock,Monterey,,20 hours 15 mins,"2,159 km" +College Station,Monterey,,1 day 3 hours,"2,894 km" +Corpus Christi,Monterey,,1 day 2 hours,"2,920 km" +Wichita Falls,Monterey,,22 hours 39 mins,"2,460 km" +Waco,Monterey,,1 day 2 hours,"2,784 km" +San Angelo,Monterey,,22 hours 34 mins,"2,450 km" +Houston,Monterey,,1 day 3 hours,"3,002 km" +San Antonio,Monterey,,1 day 0 hours,"2,687 km" +Del Rio,Monterey,,23 hours 2 mins,"2,484 km" +Mission,Monterey,,, +Beaumont,Monterey,,, +Longview,Monterey,,1 day 3 hours,"2,893 km" +Midland,Monterey,,21 hours 5 mins,"2,291 km" +El Paso,Monterey,,16 hours 44 mins,"1,801 km" +Brownsville,Monterey,,1 day 4 hours,"3,136 km" +Austin,Monterey,,1 day 1 hour,"2,728 km" +Dallas,Monterey,,1 day 1 hour,"2,686 km" +Killeen,Monterey,,1 day 1 hour,"2,720 km" +Laredo,Monterey,,1 day 2 hours,"2,774 km" +Texarkana,Monterey,,1 day 3 hours,"2,909 km" +Tallahassee,Abilene,,14 hours 57 mins,"1,634 km" +Tallahassee,Amarillo,,17 hours 46 mins,"1,928 km" +Tallahassee,Harlingen,,15 hours 7 mins,"1,670 km" +Tallahassee,Lubbock,,17 hours 19 mins,"1,894 km" +Tallahassee,College Station,,11 hours 40 mins,"1,287 km" +Tallahassee,Corpus Christi,,13 hours 22 mins,"1,475 km" +Tallahassee,Wichita Falls,,14 hours 23 mins,"1,572 km" +Tallahassee,Waco,,12 hours 59 mins,"1,397 km" +Tallahassee,San Angelo,,15 hours 57 mins,"1,726 km" +Tallahassee,Houston,,10 hours 15 mins,"1,142 km" +Tallahassee,San Antonio,,13 hours 7 mins,"1,456 km" +Tallahassee,Del Rio,,15 hours 31 mins,"1,703 km" +Tallahassee,Mission,,, +Tallahassee,Beaumont,,, +Tallahassee,Longview,,10 hours 39 mins,"1,145 km" +Tallahassee,Midland,,17 hours 4 mins,"1,870 km" +Tallahassee,El Paso,,20 hours 50 mins,"2,340 km" +Tallahassee,Brownsville,,15 hours 29 mins,"1,709 km" +Tallahassee,Austin,,12 hours 43 mins,"1,405 km" +Tallahassee,Dallas,,12 hours 22 mins,"1,346 km" +Tallahassee,Killeen,,13 hours 18 mins,"1,438 km" +Tallahassee,Laredo,,15 hours 14 mins,"1,648 km" +Tallahassee,Texarkana,,10 hours 41 mins,"1,156 km" +Abilene,Tallahassee,,14 hours 57 mins,"1,629 km" +Amarillo,Tallahassee,,17 hours 47 mins,"1,921 km" +Harlingen,Tallahassee,,15 hours 4 mins,"1,669 km" +Lubbock,Tallahassee,,17 hours 16 mins,"1,895 km" +College Station,Tallahassee,,11 hours 38 mins,"1,289 km" +Corpus Christi,Tallahassee,,13 hours 26 mins,"1,480 km" +Wichita Falls,Tallahassee,,14 hours 25 mins,"1,559 km" +Waco,Tallahassee,,12 hours 59 mins,"1,397 km" +San Angelo,Tallahassee,,15 hours 58 mins,"1,725 km" +Houston,Tallahassee,,10 hours 16 mins,"1,141 km" +San Antonio,Tallahassee,,13 hours 8 mins,"1,455 km" +Del Rio,Tallahassee,,15 hours 34 mins,"1,702 km" +Mission,Tallahassee,,, +Beaumont,Tallahassee,,, +Longview,Tallahassee,,10 hours 38 mins,"1,139 km" +Midland,Tallahassee,,17 hours 2 mins,"1,869 km" +El Paso,Tallahassee,,20 hours 50 mins,"2,340 km" +Brownsville,Tallahassee,,15 hours 28 mins,"1,709 km" +Austin,Tallahassee,,12 hours 43 mins,"1,404 km" +Dallas,Tallahassee,,12 hours 22 mins,"1,338 km" +Killeen,Tallahassee,,13 hours 18 mins,"1,453 km" +Laredo,Tallahassee,,15 hours 12 mins,"1,647 km" +Texarkana,Tallahassee,,10 hours 43 mins,"1,157 km" +Charlotte Amalie,Boston,,, +Boston,Charlotte Amalie,,, +Washington,Tampa,,13 hours 15 mins,"1,452 km" +Tampa,Washington,,13 hours 15 mins,"1,453 km" +Reno,San Diego,,9 hours 27 mins,910 km +Reno,Redding,,3 hours 22 mins,319 km +Reno,Sacramento,,2 hours 10 mins,212 km +Reno,Fresno,,4 hours 44 mins,480 km +Reno,San Luis Obispo,,6 hours 37 mins,683 km +Reno,Oakland,,3 hours 24 mins,342 km +Reno,Santa Barbara,,8 hours 10 mins,834 km +Reno,Stockton,,2 hours 53 mins,288 km +Reno,Santa Rosa,,3 hours 43 mins,367 km +Reno,Bakersfield,,6 hours 19 mins,653 km +Reno,Santa Ana,,8 hours 34 mins,881 km +Reno,Santa Maria,,7 hours 7 mins,733 km +Reno,San Jose,,4 hours 2 mins,404 km +Reno,Burbank,,7 hours 44 mins,814 km +Reno,Arcata,,6 hours 9 mins,544 km +Reno,Butte,,2 hours 52 mins,251 km +Reno,Palm Springs,,8 hours 40 mins,825 km +Reno,Los Angeles,,7 hours 58 mins,831 km +Reno,Long Beach,,8 hours 17 mins,867 km +Reno,San Francisco,,3 hours 33 mins,351 km +Reno,Monterey,,5 hours 3 mins,512 km +San Diego,Reno,,9 hours 23 mins,910 km +Redding,Reno,,3 hours 21 mins,319 km +Sacramento,Reno,,2 hours 12 mins,212 km +Fresno,Reno,,4 hours 42 mins,480 km +San Luis Obispo,Reno,,6 hours 35 mins,691 km +Oakland,Reno,,3 hours 24 mins,342 km +Santa Barbara,Reno,,8 hours 8 mins,844 km +Stockton,Reno,,2 hours 55 mins,289 km +Santa Rosa,Reno,,3 hours 45 mins,367 km +Bakersfield,Reno,,6 hours 17 mins,653 km +Santa Ana,Reno,,8 hours 26 mins,808 km +Santa Maria,Reno,,7 hours 5 mins,744 km +San Jose,Reno,,3 hours 59 mins,403 km +Burbank,Reno,,7 hours 46 mins,745 km +Arcata,Reno,,6 hours 7 mins,542 km +Butte,Reno,,2 hours 52 mins,251 km +Palm Springs,Reno,,8 hours 32 mins,825 km +Los Angeles,Reno,,7 hours 59 mins,761 km +Long Beach,Reno,,8 hours 22 mins,799 km +San Francisco,Reno,,3 hours 31 mins,351 km +Monterey,Reno,,5 hours 0 mins,510 km +Milwaukee,Newark,,13 hours 9 mins,"1,402 km" +Newark,Milwaukee,,13 hours 11 mins,"1,401 km" +Lexington,Greensboro,,6 hours 32 mins,671 km +Lexington,Wilmington,,9 hours 26 mins,997 km +Lexington,New Bern,,9 hours 26 mins,976 km +Lexington,Charlotte,,6 hours 23 mins,645 km +Lexington,Raleigh,,7 hours 42 mins,790 km +Lexington,Asheville,,4 hours 30 mins,460 km +Lexington,Fayetteville,,8 hours 2 mins,816 km +Greensboro,Lexington,,6 hours 34 mins,669 km +Wilmington,Lexington,,9 hours 27 mins,996 km +New Bern,Lexington,,9 hours 26 mins,974 km +Charlotte,Lexington,,6 hours 25 mins,643 km +Raleigh,Lexington,,7 hours 41 mins,789 km +Asheville,Lexington,,4 hours 31 mins,460 km +Fayetteville,Lexington,,8 hours 4 mins,815 km +Atlanta,San Diego,,1 day 7 hours,"3,444 km" +Atlanta,Redding,,1 day 14 hours,"4,158 km" +Atlanta,Sacramento,,1 day 12 hours,"3,985 km" +Atlanta,Fresno,,1 day 9 hours,"3,715 km" +Atlanta,San Luis Obispo,,1 day 10 hours,"3,758 km" +Atlanta,Oakland,,1 day 12 hours,"3,976 km" +Atlanta,Santa Barbara,,1 day 9 hours,"3,657 km" +Atlanta,Stockton,,1 day 11 hours,"3,914 km" +Atlanta,Santa Rosa,,1 day 13 hours,"4,069 km" +Atlanta,Bakersfield,,1 day 8 hours,"3,539 km" +Atlanta,Santa Ana,,1 day 7 hours,"3,514 km" +Atlanta,Santa Maria,,1 day 10 hours,"3,713 km" +Atlanta,San Jose,,1 day 11 hours,"3,927 km" +Atlanta,Burbank,,1 day 7 hours,"3,524 km" +Atlanta,Arcata,,1 day 16 hours,"4,429 km" +Atlanta,Butte,,1 day 13 hours,"4,124 km" +Atlanta,Palm Springs,,1 day 6 hours,"3,350 km" +Atlanta,Los Angeles,,1 day 7 hours,"3,514 km" +Atlanta,Long Beach,,1 day 8 hours,"3,537 km" +Atlanta,San Francisco,,1 day 12 hours,"3,995 km" +Atlanta,Monterey,,1 day 11 hours,"3,893 km" +San Diego,Atlanta,,1 day 7 hours,"3,443 km" +Redding,Atlanta,,1 day 14 hours,"4,163 km" +Sacramento,Atlanta,,1 day 12 hours,"3,973 km" +Fresno,Atlanta,,1 day 9 hours,"3,700 km" +San Luis Obispo,Atlanta,,1 day 10 hours,"3,745 km" +Oakland,Atlanta,,1 day 12 hours,"3,964 km" +Santa Barbara,Atlanta,,1 day 9 hours,"3,642 km" +Stockton,Atlanta,,1 day 11 hours,"3,900 km" +Santa Rosa,Atlanta,,1 day 13 hours,"4,056 km" +Bakersfield,Atlanta,,1 day 8 hours,"3,525 km" +Santa Ana,Atlanta,,1 day 7 hours,"3,496 km" +Santa Maria,Atlanta,,1 day 10 hours,"3,701 km" +San Jose,Atlanta,,1 day 11 hours,"3,913 km" +Burbank,Atlanta,,1 day 7 hours,"3,503 km" +Arcata,Atlanta,,1 day 16 hours,"4,386 km" +Butte,Atlanta,,1 day 13 hours,"4,099 km" +Palm Springs,Atlanta,,1 day 6 hours,"3,335 km" +Los Angeles,Atlanta,,1 day 7 hours,"3,499 km" +Long Beach,Atlanta,,1 day 8 hours,"3,526 km" +San Francisco,Atlanta,,1 day 12 hours,"3,982 km" +Monterey,Atlanta,,1 day 11 hours,"3,880 km" +St. Petersburg,Buffalo,,, +St. Petersburg,Manhattan,,, +St. Petersburg,Niagara Falls,,, +St. Petersburg,Islip,,, +St. Petersburg,New York,,, +St. Petersburg,Watertown,,, +St. Petersburg,Newburgh,,, +St. Petersburg,Syracuse,,, +St. Petersburg,Plattsburgh,,, +St. Petersburg,Ogdensburg,,, +St. Petersburg,Ithaca,,, +St. Petersburg,Elmira,,, +St. Petersburg,White Plains,,, +St. Petersburg,Albany,,, +St. Petersburg,Binghamton,,, +St. Petersburg,Rochester,,, +Buffalo,St. Petersburg,,, +Manhattan,St. Petersburg,,, +Niagara Falls,St. Petersburg,,, +Islip,St. Petersburg,,, +New York,St. Petersburg,,, +Watertown,St. Petersburg,,, +Newburgh,St. Petersburg,,, +Syracuse,St. Petersburg,,, +Plattsburgh,St. Petersburg,,, +Ogdensburg,St. Petersburg,,, +Ithaca,St. Petersburg,,, +Elmira,St. Petersburg,,, +White Plains,St. Petersburg,,, +Albany,St. Petersburg,,, +Binghamton,St. Petersburg,,, +Rochester,St. Petersburg,,, +Billings,Flagstaff,,16 hours 29 mins,"1,719 km" +Billings,Yuma,,19 hours 0 mins,"2,034 km" +Billings,Phoenix,,18 hours 34 mins,"1,951 km" +Billings,Prescott,,18 hours 1 min,"1,871 km" +Billings,Tucson,,20 hours 7 mins,"2,129 km" +Flagstaff,Billings,,16 hours 19 mins,"1,714 km" +Yuma,Billings,,18 hours 53 mins,"2,029 km" +Phoenix,Billings,,18 hours 23 mins,"1,946 km" +Prescott,Billings,,17 hours 50 mins,"1,867 km" +Tucson,Billings,,19 hours 55 mins,"2,126 km" +Lake Charles,Abilene,,7 hours 44 mins,797 km +Lake Charles,Amarillo,,10 hours 39 mins,"1,130 km" +Lake Charles,Harlingen,,7 hours 4 mins,759 km +Lake Charles,Lubbock,,10 hours 8 mins,"1,088 km" +Lake Charles,College Station,,3 hours 36 mins,376 km +Lake Charles,Corpus Christi,,5 hours 18 mins,564 km +Lake Charles,Wichita Falls,,7 hours 15 mins,770 km +Lake Charles,Waco,,4 hours 55 mins,487 km +Lake Charles,San Angelo,,7 hours 54 mins,815 km +Lake Charles,Houston,,2 hours 12 mins,231 km +Lake Charles,San Antonio,,5 hours 4 mins,545 km +Lake Charles,Del Rio,,7 hours 27 mins,792 km +Lake Charles,Mission,,, +Lake Charles,Beaumont,,, +Lake Charles,Longview,,3 hours 49 mins,346 km +Lake Charles,Midland,,9 hours 34 mins,996 km +Lake Charles,El Paso,,12 hours 46 mins,"1,429 km" +Lake Charles,Brownsville,,7 hours 25 mins,798 km +Lake Charles,Austin,,4 hours 39 mins,494 km +Lake Charles,Dallas,,5 hours 17 mins,550 km +Lake Charles,Killeen,,5 hours 14 mins,549 km +Lake Charles,Laredo,,7 hours 11 mins,737 km +Lake Charles,Texarkana,,4 hours 18 mins,424 km +Abilene,Lake Charles,,7 hours 43 mins,793 km +Amarillo,Lake Charles,,10 hours 38 mins,"1,131 km" +Harlingen,Lake Charles,,6 hours 58 mins,759 km +Lubbock,Lake Charles,,10 hours 4 mins,"1,089 km" +College Station,Lake Charles,,3 hours 32 mins,379 km +Corpus Christi,Lake Charles,,5 hours 20 mins,569 km +Wichita Falls,Lake Charles,,7 hours 16 mins,768 km +Waco,Lake Charles,,4 hours 53 mins,486 km +San Angelo,Lake Charles,,7 hours 52 mins,814 km +Houston,Lake Charles,,2 hours 10 mins,231 km +San Antonio,Lake Charles,,5 hours 2 mins,545 km +Del Rio,Lake Charles,,7 hours 28 mins,792 km +Mission,Lake Charles,,, +Beaumont,Lake Charles,,, +Longview,Lake Charles,,3 hours 50 mins,339 km +Midland,Lake Charles,,9 hours 32 mins,"1,001 km" +El Paso,Lake Charles,,12 hours 45 mins,"1,429 km" +Brownsville,Lake Charles,,7 hours 22 mins,799 km +Austin,Lake Charles,,4 hours 37 mins,494 km +Dallas,Lake Charles,,5 hours 18 mins,551 km +Killeen,Lake Charles,,5 hours 12 mins,543 km +Laredo,Lake Charles,,7 hours 6 mins,737 km +Texarkana,Lake Charles,,4 hours 19 mins,424 km +Charlottesville,Buffalo,,8 hours 4 mins,733 km +Charlottesville,Manhattan,,5 hours 55 mins,555 km +Charlottesville,Niagara Falls,,8 hours 25 mins,764 km +Charlottesville,Islip,,6 hours 35 mins,626 km +Charlottesville,New York,,5 hours 46 mins,549 km +Charlottesville,Watertown,,8 hours 31 mins,907 km +Charlottesville,Newburgh,,6 hours 35 mins,641 km +Charlottesville,Syracuse,,7 hours 28 mins,794 km +Charlottesville,Plattsburgh,,10 hours 2 mins,"1,029 km" +Charlottesville,Ogdensburg,,9 hours 30 mins,"1,000 km" +Charlottesville,Ithaca,,7 hours 9 mins,730 km +Charlottesville,Elmira,,6 hours 31 mins,658 km +Charlottesville,White Plains,,6 hours 13 mins,599 km +Charlottesville,Albany,,, +Charlottesville,Binghamton,,6 hours 28 mins,682 km +Charlottesville,Rochester,,7 hours 47 mins,820 km +Buffalo,Charlottesville,,8 hours 3 mins,732 km +Manhattan,Charlottesville,,5 hours 55 mins,556 km +Niagara Falls,Charlottesville,,8 hours 24 mins,763 km +Islip,Charlottesville,,6 hours 36 mins,625 km +New York,Charlottesville,,5 hours 46 mins,550 km +Watertown,Charlottesville,,8 hours 33 mins,909 km +Newburgh,Charlottesville,,6 hours 39 mins,643 km +Syracuse,Charlottesville,,7 hours 29 mins,795 km +Plattsburgh,Charlottesville,,10 hours 3 mins,"1,031 km" +Ogdensburg,Charlottesville,,9 hours 31 mins,"1,001 km" +Ithaca,Charlottesville,,7 hours 10 mins,731 km +Elmira,Charlottesville,,6 hours 33 mins,660 km +White Plains,Charlottesville,,6 hours 13 mins,600 km +Albany,Charlottesville,,, +Binghamton,Charlottesville,,6 hours 28 mins,682 km +Rochester,Charlottesville,,7 hours 48 mins,821 km +San Francisco,Minneapolis,,1 day 5 hours,"3,166 km" +Minneapolis,San Francisco,,1 day 5 hours,"3,176 km" +Orlando,Lake Charles,,11 hours 36 mins,"1,321 km" +Orlando,Baton Rouge,,9 hours 47 mins,"1,120 km" +Orlando,New Orleans,,9 hours 1 min,"1,030 km" +Orlando,Shreveport,,13 hours 10 mins,"1,450 km" +Lake Charles,Orlando,,11 hours 40 mins,"1,321 km" +Baton Rouge,Orlando,,9 hours 52 mins,"1,121 km" +New Orleans,Orlando,,9 hours 5 mins,"1,029 km" +Shreveport,Orlando,,13 hours 13 mins,"1,449 km" +Dallas,Augusta,,13 hours 23 mins,"1,490 km" +Dallas,Decatur,,11 hours 32 mins,"1,269 km" +Dallas,Atlanta,,11 hours 18 mins,"1,258 km" +Dallas,Valdosta,,13 hours 34 mins,"1,453 km" +Dallas,Savannah,,14 hours 50 mins,"1,656 km" +Augusta,Dallas,,13 hours 26 mins,"1,498 km" +Decatur,Dallas,,11 hours 33 mins,"1,277 km" +Atlanta,Dallas,,11 hours 18 mins,"1,265 km" +Valdosta,Dallas,,13 hours 32 mins,"1,456 km" +Savannah,Dallas,,14 hours 52 mins,"1,663 km" +St. Louis,Greensboro,,11 hours 14 mins,"1,203 km" +St. Louis,Wilmington,,13 hours 59 mins,"1,480 km" +St. Louis,New Bern,,14 hours 7 mins,"1,508 km" +St. Louis,Charlotte,,10 hours 48 mins,"1,150 km" +St. Louis,Raleigh,,12 hours 24 mins,"1,322 km" +St. Louis,Asheville,,8 hours 55 mins,966 km +St. Louis,Fayetteville,,12 hours 44 mins,"1,347 km" +Greensboro,St. Louis,,11 hours 14 mins,"1,200 km" +Wilmington,St. Louis,,13 hours 58 mins,"1,480 km" +New Bern,St. Louis,,14 hours 6 mins,"1,505 km" +Charlotte,St. Louis,,10 hours 46 mins,"1,148 km" +Raleigh,St. Louis,,12 hours 21 mins,"1,320 km" +Asheville,St. Louis,,8 hours 52 mins,965 km +Fayetteville,St. Louis,,12 hours 45 mins,"1,346 km" +Salt Lake City,Flagstaff,,8 hours 10 mins,835 km +Salt Lake City,Yuma,,10 hours 41 mins,"1,150 km" +Salt Lake City,Phoenix,,10 hours 15 mins,"1,067 km" +Salt Lake City,Prescott,,9 hours 42 mins,987 km +Salt Lake City,Tucson,,11 hours 48 mins,"1,245 km" +Flagstaff,Salt Lake City,,8 hours 6 mins,835 km +Yuma,Salt Lake City,,10 hours 41 mins,"1,150 km" +Phoenix,Salt Lake City,,10 hours 10 mins,"1,067 km" +Prescott,Salt Lake City,,9 hours 37 mins,988 km +Tucson,Salt Lake City,,11 hours 43 mins,"1,247 km" +Gulfport,Abilene,,10 hours 48 mins,"1,192 km" +Gulfport,Amarillo,,13 hours 39 mins,"1,490 km" +Gulfport,Harlingen,,10 hours 51 mins,"1,176 km" +Gulfport,Lubbock,,13 hours 12 mins,"1,457 km" +Gulfport,College Station,,7 hours 23 mins,793 km +Gulfport,Corpus Christi,,9 hours 5 mins,981 km +Gulfport,Wichita Falls,,10 hours 14 mins,"1,130 km" +Gulfport,Waco,,8 hours 42 mins,903 km +Gulfport,San Angelo,,11 hours 41 mins,"1,232 km" +Gulfport,Houston,,5 hours 59 mins,648 km +Gulfport,San Antonio,,8 hours 51 mins,962 km +Gulfport,Del Rio,,11 hours 14 mins,"1,209 km" +Gulfport,Mission,,, +Gulfport,Beaumont,,, +Gulfport,Longview,,6 hours 31 mins,703 km +Gulfport,Midland,,12 hours 57 mins,"1,433 km" +Gulfport,El Paso,,16 hours 33 mins,"1,846 km" +Gulfport,Brownsville,,11 hours 13 mins,"1,215 km" +Gulfport,Austin,,8 hours 27 mins,911 km +Gulfport,Dallas,,8 hours 13 mins,904 km +Gulfport,Killeen,,9 hours 2 mins,966 km +Gulfport,Laredo,,10 hours 58 mins,"1,154 km" +Gulfport,Texarkana,,6 hours 44 mins,736 km +Abilene,Gulfport,,10 hours 50 mins,"1,192 km" +Amarillo,Gulfport,,13 hours 40 mins,"1,484 km" +Harlingen,Gulfport,,10 hours 46 mins,"1,175 km" +Lubbock,Gulfport,,13 hours 9 mins,"1,458 km" +College Station,Gulfport,,7 hours 20 mins,795 km +Corpus Christi,Gulfport,,9 hours 8 mins,985 km +Wichita Falls,Gulfport,,10 hours 19 mins,"1,122 km" +Waco,Gulfport,,8 hours 41 mins,902 km +San Angelo,Gulfport,,11 hours 40 mins,"1,230 km" +Houston,Gulfport,,5 hours 58 mins,647 km +San Antonio,Gulfport,,8 hours 50 mins,961 km +Del Rio,Gulfport,,11 hours 16 mins,"1,208 km" +Mission,Gulfport,,, +Beaumont,Gulfport,,, +Longview,Gulfport,,6 hours 32 mins,703 km +Midland,Gulfport,,12 hours 55 mins,"1,432 km" +El Paso,Gulfport,,16 hours 33 mins,"1,846 km" +Brownsville,Gulfport,,11 hours 10 mins,"1,215 km" +Austin,Gulfport,,8 hours 25 mins,910 km +Dallas,Gulfport,,8 hours 15 mins,901 km +Killeen,Gulfport,,9 hours 0 mins,959 km +Laredo,Gulfport,,10 hours 54 mins,"1,153 km" +Texarkana,Gulfport,,6 hours 46 mins,736 km +Fort Myers,San Diego,,1 day 13 hours,"4,132 km" +Fort Myers,Redding,,1 day 21 hours,"5,015 km" +Fort Myers,Sacramento,,1 day 19 hours,"4,750 km" +Fort Myers,Fresno,,1 day 16 hours,"4,475 km" +Fort Myers,San Luis Obispo,,1 day 17 hours,"4,563 km" +Fort Myers,Oakland,,1 day 19 hours,"4,736 km" +Fort Myers,Santa Barbara,,1 day 15 hours,"4,411 km" +Fort Myers,Stockton,,1 day 18 hours,"4,674 km" +Fort Myers,Santa Rosa,,1 day 20 hours,"4,829 km" +Fort Myers,Bakersfield,,1 day 15 hours,"4,304 km" +Fort Myers,Santa Ana,,1 day 14 hours,"4,260 km" +Fort Myers,Santa Maria,,1 day 16 hours,"4,514 km" +Fort Myers,San Jose,,1 day 19 hours,"4,687 km" +Fort Myers,Burbank,,1 day 14 hours,"4,278 km" +Fort Myers,Arcata,,2 days 0 hours,"5,189 km" +Fort Myers,Butte,,1 day 20 hours,"4,885 km" +Fort Myers,Palm Springs,,1 day 12 hours,"4,090 km" +Fort Myers,Los Angeles,,1 day 14 hours,"4,257 km" +Fort Myers,Long Beach,,1 day 14 hours,"4,275 km" +Fort Myers,San Francisco,,1 day 19 hours,"4,759 km" +Fort Myers,Monterey,,1 day 18 hours,"4,653 km" +San Diego,Fort Myers,,1 day 13 hours,"4,130 km" +Redding,Fort Myers,,1 day 21 hours,"4,997 km" +Sacramento,Fort Myers,,1 day 19 hours,"4,740 km" +Fresno,Fort Myers,,1 day 16 hours,"4,467 km" +San Luis Obispo,Fort Myers,,1 day 17 hours,"4,562 km" +Oakland,Fort Myers,,1 day 19 hours,"4,730 km" +Santa Barbara,Fort Myers,,1 day 15 hours,"4,410 km" +Stockton,Fort Myers,,1 day 18 hours,"4,667 km" +Santa Rosa,Fort Myers,,1 day 20 hours,"4,823 km" +Bakersfield,Fort Myers,,1 day 15 hours,"4,292 km" +Santa Ana,Fort Myers,,1 day 14 hours,"4,240 km" +Santa Maria,Fort Myers,,1 day 17 hours,"4,512 km" +San Jose,Fort Myers,,1 day 19 hours,"4,680 km" +Burbank,Fort Myers,,1 day 14 hours,"4,271 km" +Arcata,Fort Myers,,2 days 0 hours,"5,185 km" +Butte,Fort Myers,,1 day 21 hours,"4,872 km" +Palm Springs,Fort Myers,,1 day 12 hours,"4,088 km" +Los Angeles,Fort Myers,,1 day 14 hours,"4,255 km" +Long Beach,Fort Myers,,1 day 14 hours,"4,273 km" +San Francisco,Fort Myers,,1 day 19 hours,"4,749 km" +Monterey,Fort Myers,,1 day 18 hours,"4,647 km" +Amarillo,Abilene,,4 hours 12 mins,461 km +Amarillo,Harlingen,,11 hours 7 mins,"1,225 km" +Amarillo,Lubbock,,1 hour 47 mins,197 km +Amarillo,College Station,,7 hours 42 mins,825 km +Amarillo,Corpus Christi,,9 hours 28 mins,"1,050 km" +Amarillo,Wichita Falls,,3 hours 27 mins,362 km +Amarillo,Waco,,6 hours 24 mins,690 km +Amarillo,San Angelo,,4 hours 35 mins,492 km +Amarillo,Houston,,8 hours 49 mins,965 km +Amarillo,San Antonio,,7 hours 31 mins,817 km +Amarillo,Del Rio,,7 hours 2 mins,743 km +Amarillo,Mission,,, +Amarillo,Beaumont,,, +Amarillo,Longview,,7 hours 21 mins,789 km +Amarillo,Midland,,3 hours 33 mins,387 km +Amarillo,El Paso,,6 hours 46 mins,704 km +Amarillo,Brownsville,,11 hours 28 mins,"1,264 km" +Amarillo,Austin,,7 hours 38 mins,798 km +Amarillo,Dallas,,5 hours 30 mins,589 km +Amarillo,Killeen,,6 hours 58 mins,734 km +Amarillo,Laredo,,9 hours 38 mins,"1,007 km" +Amarillo,Texarkana,,7 hours 47 mins,798 km +Abilene,Amarillo,,4 hours 10 mins,446 km +Harlingen,Amarillo,,11 hours 0 mins,"1,210 km" +Lubbock,Amarillo,,1 hour 48 mins,197 km +College Station,Amarillo,,7 hours 40 mins,824 km +Corpus Christi,Amarillo,,9 hours 24 mins,"1,034 km" +Wichita Falls,Amarillo,,3 hours 28 mins,362 km +Waco,Amarillo,,6 hours 24 mins,687 km +San Angelo,Amarillo,,4 hours 35 mins,511 km +Houston,Amarillo,,8 hours 50 mins,965 km +San Antonio,Amarillo,,7 hours 28 mins,802 km +Del Rio,Amarillo,,7 hours 0 mins,754 km +Mission,Amarillo,,, +Beaumont,Amarillo,,, +Longview,Amarillo,,7 hours 20 mins,795 km +Midland,Amarillo,,3 hours 33 mins,387 km +El Paso,Amarillo,,6 hours 43 mins,704 km +Brownsville,Amarillo,,11 hours 24 mins,"1,250 km" +Austin,Amarillo,,7 hours 37 mins,783 km +Dallas,Amarillo,,5 hours 30 mins,588 km +Killeen,Amarillo,,6 hours 58 mins,719 km +Laredo,Amarillo,,9 hours 38 mins,992 km +Texarkana,Amarillo,,7 hours 56 mins,811 km +Washington,Plattsburgh,,8 hours 8 mins,842 km +Plattsburgh,Washington,,8 hours 8 mins,845 km +Salt Lake City,Helena,,6 hours 53 mins,778 km +Helena,Salt Lake City,,6 hours 52 mins,778 km +Las Vegas,Twin Falls,,7 hours 32 mins,796 km +Las Vegas,Pocatello,,8 hours 8 mins,937 km +Las Vegas,Idaho Falls,,8 hours 48 mins,"1,017 km" +Las Vegas,Sun Valley,,9 hours 13 mins,931 km +Las Vegas,Boise,,9 hours 29 mins,"1,005 km" +Las Vegas,Lewiston,,1 day 17 hours,"4,577 km" +Twin Falls,Las Vegas,,7 hours 36 mins,796 km +Pocatello,Las Vegas,,8 hours 8 mins,938 km +Idaho Falls,Las Vegas,,8 hours 47 mins,"1,018 km" +Sun Valley,Las Vegas,,9 hours 15 mins,931 km +Boise,Las Vegas,,9 hours 30 mins,"1,004 km" +Lewiston,Las Vegas,,1 day 17 hours,"4,579 km" +Sarasota,Philadelphia,,16 hours 13 mins,"1,764 km" +Philadelphia,Sarasota,,16 hours 16 mins,"1,769 km" +Memphis,Phoenix,,20 hours 44 mins,"2,292 km" +Phoenix,Memphis,,20 hours 40 mins,"2,293 km" +Augusta,Abilene,,15 hours 59 mins,"1,782 km" +Augusta,Amarillo,,18 hours 8 mins,"2,028 km" +Augusta,Harlingen,,18 hours 20 mins,"2,030 km" +Augusta,Lubbock,,18 hours 23 mins,"2,047 km" +Augusta,College Station,,14 hours 36 mins,"1,560 km" +Augusta,Corpus Christi,,16 hours 35 mins,"1,835 km" +Augusta,Wichita Falls,,15 hours 25 mins,"1,720 km" +Augusta,Waco,,14 hours 27 mins,"1,569 km" +Augusta,San Angelo,,17 hours 13 mins,"1,906 km" +Augusta,Houston,,13 hours 28 mins,"1,502 km" +Augusta,San Antonio,,16 hours 20 mins,"1,816 km" +Augusta,Del Rio,,18 hours 43 mins,"2,062 km" +Augusta,Mission,,, +Augusta,Beaumont,,, +Augusta,Longview,,11 hours 42 mins,"1,293 km" +Augusta,Midland,,18 hours 8 mins,"2,023 km" +Augusta,El Paso,,22 hours 26 mins,"2,513 km" +Augusta,Brownsville,,18 hours 42 mins,"2,069 km" +Augusta,Austin,,15 hours 54 mins,"1,734 km" +Augusta,Dallas,,13 hours 24 mins,"1,494 km" +Augusta,Killeen,,15 hours 18 mins,"1,669 km" +Augusta,Laredo,,18 hours 27 mins,"2,007 km" +Augusta,Texarkana,,11 hours 45 mins,"1,309 km" +Abilene,Augusta,,15 hours 59 mins,"1,781 km" +Amarillo,Augusta,,18 hours 5 mins,"2,013 km" +Harlingen,Augusta,,18 hours 13 mins,"2,028 km" +Lubbock,Augusta,,18 hours 17 mins,"2,047 km" +College Station,Augusta,,14 hours 30 mins,"1,558 km" +Corpus Christi,Augusta,,16 hours 35 mins,"1,838 km" +Wichita Falls,Augusta,,15 hours 27 mins,"1,711 km" +Waco,Augusta,,14 hours 24 mins,"1,567 km" +San Angelo,Augusta,,17 hours 10 mins,"1,906 km" +Houston,Augusta,,13 hours 25 mins,"1,500 km" +San Antonio,Augusta,,16 hours 18 mins,"1,814 km" +Del Rio,Augusta,,18 hours 43 mins,"2,061 km" +Mission,Augusta,,, +Beaumont,Augusta,,, +Longview,Augusta,,11 hours 40 mins,"1,292 km" +Midland,Augusta,,18 hours 4 mins,"2,021 km" +El Paso,Augusta,,22 hours 22 mins,"2,511 km" +Brownsville,Augusta,,18 hours 37 mins,"2,068 km" +Austin,Augusta,,15 hours 50 mins,"1,729 km" +Dallas,Augusta,,13 hours 23 mins,"1,490 km" +Killeen,Augusta,,15 hours 14 mins,"1,663 km" +Laredo,Augusta,,18 hours 21 mins,"2,006 km" +Texarkana,Augusta,,11 hours 45 mins,"1,309 km" +Austin,Chicago,,16 hours 53 mins,"1,871 km" +Chicago,Austin,,16 hours 52 mins,"1,803 km" +Albany,Greensboro,,, +Albany,Wilmington,,, +Albany,New Bern,,, +Albany,Charlotte,,, +Albany,Raleigh,,, +Albany,Asheville,,, +Albany,Fayetteville,,, +Greensboro,Albany,,, +Wilmington,Albany,,, +New Bern,Albany,,, +Charlotte,Albany,,, +Raleigh,Albany,,, +Asheville,Albany,,, +Fayetteville,Albany,,, +Myrtle Beach,Abilene,,19 hours 25 mins,"2,135 km" +Myrtle Beach,Amarillo,,21 hours 32 mins,"2,377 km" +Myrtle Beach,Harlingen,,21 hours 44 mins,"2,378 km" +Myrtle Beach,Lubbock,,21 hours 48 mins,"2,400 km" +Myrtle Beach,College Station,,18 hours 0 mins,"1,908 km" +Myrtle Beach,Corpus Christi,,19 hours 58 mins,"2,183 km" +Myrtle Beach,Wichita Falls,,18 hours 49 mins,"2,069 km" +Myrtle Beach,Waco,,17 hours 51 mins,"1,917 km" +Myrtle Beach,San Angelo,,20 hours 39 mins,"2,259 km" +Myrtle Beach,Houston,,16 hours 52 mins,"1,850 km" +Myrtle Beach,San Antonio,,19 hours 44 mins,"2,164 km" +Myrtle Beach,Del Rio,,22 hours 7 mins,"2,411 km" +Myrtle Beach,Mission,,, +Myrtle Beach,Beaumont,,, +Myrtle Beach,Longview,,15 hours 7 mins,"1,646 km" +Myrtle Beach,Midland,,21 hours 33 mins,"2,376 km" +Myrtle Beach,El Paso,,1 day 2 hours,"2,861 km" +Myrtle Beach,Brownsville,,22 hours 6 mins,"2,417 km" +Myrtle Beach,Austin,,19 hours 18 mins,"2,083 km" +Myrtle Beach,Dallas,,16 hours 48 mins,"1,842 km" +Myrtle Beach,Killeen,,18 hours 40 mins,"2,013 km" +Myrtle Beach,Laredo,,21 hours 51 mins,"2,356 km" +Myrtle Beach,Texarkana,,15 hours 9 mins,"1,657 km" +Abilene,Myrtle Beach,,19 hours 22 mins,"2,130 km" +Amarillo,Myrtle Beach,,21 hours 29 mins,"2,362 km" +Harlingen,Myrtle Beach,,21 hours 37 mins,"2,376 km" +Lubbock,Myrtle Beach,,21 hours 41 mins,"2,396 km" +College Station,Myrtle Beach,,17 hours 54 mins,"1,907 km" +Corpus Christi,Myrtle Beach,,19 hours 59 mins,"2,187 km" +Wichita Falls,Myrtle Beach,,18 hours 51 mins,"2,060 km" +Waco,Myrtle Beach,,17 hours 48 mins,"1,916 km" +San Angelo,Myrtle Beach,,20 hours 34 mins,"2,255 km" +Houston,Myrtle Beach,,16 hours 49 mins,"1,849 km" +San Antonio,Myrtle Beach,,19 hours 42 mins,"2,163 km" +Del Rio,Myrtle Beach,,22 hours 8 mins,"2,410 km" +Mission,Myrtle Beach,,, +Beaumont,Myrtle Beach,,, +Longview,Myrtle Beach,,15 hours 4 mins,"1,641 km" +Midland,Myrtle Beach,,21 hours 28 mins,"2,370 km" +El Paso,Myrtle Beach,,1 day 2 hours,"2,860 km" +Brownsville,Myrtle Beach,,22 hours 1 min,"2,416 km" +Austin,Myrtle Beach,,19 hours 14 mins,"2,078 km" +Dallas,Myrtle Beach,,16 hours 48 mins,"1,839 km" +Killeen,Myrtle Beach,,18 hours 39 mins,"2,012 km" +Laredo,Myrtle Beach,,21 hours 45 mins,"2,354 km" +Texarkana,Myrtle Beach,,15 hours 9 mins,"1,658 km" +Phoenix,Nashville,,23 hours 49 mins,"2,633 km" +Nashville,Phoenix,,23 hours 51 mins,"2,632 km" +Missoula,Dallas,,1 day 0 hours,"2,689 km" +Dallas,Missoula,,1 day 0 hours,"2,721 km" +St. Louis,Oklahoma City,,7 hours 17 mins,802 km +Oklahoma City,St. Louis,,7 hours 19 mins,803 km +Tallahassee,Greensboro,,9 hours 0 mins,860 km +Tallahassee,Wilmington,,8 hours 42 mins,967 km +Tallahassee,New Bern,,9 hours 57 mins,"1,101 km" +Tallahassee,Charlotte,,7 hours 44 mins,714 km +Tallahassee,Raleigh,,8 hours 53 mins,994 km +Tallahassee,Asheville,,7 hours 35 mins,731 km +Tallahassee,Fayetteville,,7 hours 59 mins,898 km +Greensboro,Tallahassee,,8 hours 59 mins,860 km +Wilmington,Tallahassee,,8 hours 42 mins,962 km +New Bern,Tallahassee,,9 hours 57 mins,"1,096 km" +Charlotte,Tallahassee,,7 hours 41 mins,714 km +Raleigh,Tallahassee,,8 hours 54 mins,991 km +Asheville,Tallahassee,,7 hours 36 mins,732 km +Fayetteville,Tallahassee,,7 hours 59 mins,892 km +Lihue,Los Angeles,,, +Los Angeles,Lihue,,, +Phoenix,Kahului,,, +Kahului,Phoenix,,, +Rockford,Sarasota,,18 hours 54 mins,"2,106 km" +Rockford,Fort Myers,,19 hours 52 mins,"2,211 km" +Rockford,Gainesville,,16 hours 30 mins,"1,822 km" +Rockford,Orlando,,17 hours 55 mins,"1,994 km" +Rockford,Daytona Beach,,17 hours 59 mins,"1,994 km" +Rockford,Jacksonville,,16 hours 36 mins,"1,844 km" +Rockford,Tampa,,18 hours 7 mins,"2,022 km" +Rockford,Panama City,,15 hours 22 mins,"1,628 km" +Rockford,Key West,,1 day 0 hours,"2,608 km" +Rockford,West Palm Beach,,20 hours 8 mins,"2,249 km" +Rockford,Miami,,21 hours 6 mins,"2,354 km" +Rockford,Tallahassee,,15 hours 39 mins,"1,683 km" +Rockford,Punta Gorda,,19 hours 26 mins,"2,176 km" +Rockford,Fort Lauderdale,,20 hours 45 mins,"2,317 km" +Rockford,Pensacola,,14 hours 34 mins,"1,606 km" +Sarasota,Rockford,,18 hours 58 mins,"2,114 km" +Fort Myers,Rockford,,19 hours 55 mins,"2,220 km" +Gainesville,Rockford,,16 hours 34 mins,"1,828 km" +Orlando,Rockford,,17 hours 56 mins,"2,000 km" +Daytona Beach,Rockford,,18 hours 2 mins,"1,991 km" +Jacksonville,Rockford,,16 hours 42 mins,"1,852 km" +Tampa,Rockford,,18 hours 10 mins,"2,029 km" +Panama City,Rockford,,15 hours 28 mins,"1,630 km" +Key West,Rockford,,1 day 0 hours,"2,615 km" +West Palm Beach,Rockford,,20 hours 11 mins,"2,258 km" +Miami,Rockford,,21 hours 8 mins,"2,363 km" +Tallahassee,Rockford,,15 hours 45 mins,"1,685 km" +Punta Gorda,Rockford,,19 hours 30 mins,"2,183 km" +Fort Lauderdale,Rockford,,20 hours 49 mins,"2,326 km" +Pensacola,Rockford,,14 hours 35 mins,"1,610 km" +Redding,San Diego,,10 hours 6 mins,"1,069 km" +Redding,Sacramento,,2 hours 28 mins,260 km +Redding,Fresno,,5 hours 4 mins,533 km +Redding,San Luis Obispo,,6 hours 26 mins,691 km +Redding,Oakland,,3 hours 11 mins,339 km +Redding,Santa Barbara,,8 hours 0 mins,842 km +Redding,Stockton,,3 hours 10 mins,336 km +Redding,Santa Rosa,,3 hours 33 mins,312 km +Redding,Bakersfield,,6 hours 40 mins,705 km +Redding,Santa Ana,,8 hours 50 mins,928 km +Redding,Santa Maria,,6 hours 56 mins,741 km +Redding,San Jose,,3 hours 49 mins,402 km +Redding,Burbank,,8 hours 0 mins,861 km +Redding,Arcata,,2 hours 49 mins,225 km +Redding,Butte,,1 hour 44 mins,157 km +Redding,Palm Springs,,9 hours 45 mins,"1,046 km" +Redding,Los Angeles,,8 hours 14 mins,877 km +Redding,Long Beach,,8 hours 33 mins,913 km +Redding,San Francisco,,3 hours 20 mins,349 km +Redding,Monterey,,4 hours 51 mins,509 km +San Diego,Redding,,10 hours 10 mins,"1,070 km" +Sacramento,Redding,,2 hours 28 mins,261 km +Fresno,Redding,,5 hours 4 mins,538 km +San Luis Obispo,Redding,,6 hours 22 mins,690 km +Oakland,Redding,,3 hours 11 mins,340 km +Santa Barbara,Redding,,7 hours 56 mins,843 km +Stockton,Redding,,3 hours 10 mins,338 km +Santa Rosa,Redding,,3 hours 32 mins,313 km +Bakersfield,Redding,,6 hours 40 mins,711 km +Santa Ana,Redding,,8 hours 53 mins,928 km +Santa Maria,Redding,,6 hours 52 mins,742 km +San Jose,Redding,,3 hours 46 mins,401 km +Burbank,Redding,,8 hours 2 mins,861 km +Arcata,Redding,,2 hours 46 mins,223 km +Butte,Redding,,1 hour 43 mins,151 km +Palm Springs,Redding,,9 hours 49 mins,"1,047 km" +Los Angeles,Redding,,8 hours 15 mins,877 km +Long Beach,Redding,,8 hours 38 mins,914 km +San Francisco,Redding,,3 hours 18 mins,350 km +Monterey,Redding,,4 hours 47 mins,508 km +Evansville,Greensboro,,9 hours 10 mins,987 km +Evansville,Wilmington,,11 hours 46 mins,"1,227 km" +Evansville,New Bern,,12 hours 4 mins,"1,292 km" +Evansville,Charlotte,,8 hours 35 mins,898 km +Evansville,Raleigh,,10 hours 20 mins,"1,107 km" +Evansville,Asheville,,6 hours 41 mins,713 km +Evansville,Fayetteville,,10 hours 41 mins,"1,132 km" +Greensboro,Evansville,,9 hours 10 mins,987 km +Wilmington,Evansville,,11 hours 47 mins,"1,229 km" +New Bern,Evansville,,12 hours 3 mins,"1,292 km" +Charlotte,Evansville,,8 hours 35 mins,897 km +Raleigh,Evansville,,10 hours 18 mins,"1,107 km" +Asheville,Evansville,,6 hours 41 mins,714 km +Fayetteville,Evansville,,10 hours 41 mins,"1,133 km" +Raleigh,Tampa,,9 hours 34 mins,"1,048 km" +Tampa,Raleigh,,9 hours 31 mins,"1,046 km" +Hartford,Nashville,,15 hours 4 mins,"1,620 km" +Hartford,Bristol,,, +Hartford,Knoxville,,12 hours 27 mins,"1,333 km" +Hartford,Chattanooga,,14 hours 3 mins,"1,510 km" +Hartford,Memphis,,18 hours 6 mins,"1,959 km" +Nashville,Hartford,,15 hours 5 mins,"1,622 km" +Bristol,Hartford,,, +Knoxville,Hartford,,12 hours 27 mins,"1,334 km" +Chattanooga,Hartford,,14 hours 4 mins,"1,513 km" +Memphis,Hartford,,18 hours 7 mins,"1,960 km" +Santa Ana,Alamosa,,14 hours 40 mins,"1,483 km" +Santa Ana,Grand Junction,,11 hours 15 mins,"1,244 km" +Santa Ana,Durango,,11 hours 55 mins,"1,245 km" +Santa Ana,Colorado Springs,,15 hours 47 mins,"1,739 km" +Santa Ana,Gunnison,,13 hours 36 mins,"1,441 km" +Santa Ana,Denver,,14 hours 53 mins,"1,632 km" +Alamosa,Santa Ana,,14 hours 43 mins,"1,486 km" +Grand Junction,Santa Ana,,11 hours 19 mins,"1,248 km" +Durango,Santa Ana,,11 hours 56 mins,"1,248 km" +Colorado Springs,Santa Ana,,15 hours 52 mins,"1,744 km" +Gunnison,Santa Ana,,13 hours 34 mins,"1,445 km" +Denver,Santa Ana,,14 hours 58 mins,"1,636 km" +Chicago,El Paso,,21 hours 52 mins,"2,393 km" +El Paso,Chicago,,21 hours 50 mins,"2,390 km" +Los Angeles,Alamosa,,14 hours 39 mins,"1,487 km" +Los Angeles,Grand Junction,,11 hours 14 mins,"1,247 km" +Los Angeles,Durango,,11 hours 54 mins,"1,248 km" +Los Angeles,Colorado Springs,,15 hours 46 mins,"1,742 km" +Los Angeles,Gunnison,,13 hours 35 mins,"1,444 km" +Los Angeles,Denver,,14 hours 52 mins,"1,635 km" +Alamosa,Los Angeles,,14 hours 42 mins,"1,487 km" +Grand Junction,Los Angeles,,11 hours 19 mins,"1,248 km" +Durango,Los Angeles,,11 hours 55 mins,"1,249 km" +Colorado Springs,Los Angeles,,15 hours 51 mins,"1,744 km" +Gunnison,Los Angeles,,13 hours 34 mins,"1,445 km" +Denver,Los Angeles,,14 hours 58 mins,"1,636 km" +Columbus,Abilene,,17 hours 34 mins,"1,938 km" +Columbus,Amarillo,,17 hours 5 mins,"1,890 km" +Columbus,Harlingen,,22 hours 14 mins,"2,388 km" +Columbus,Lubbock,,18 hours 28 mins,"2,029 km" +Columbus,College Station,,17 hours 22 mins,"1,833 km" +Columbus,Corpus Christi,,20 hours 29 mins,"2,193 km" +Columbus,Wichita Falls,,15 hours 20 mins,"1,694 km" +Columbus,Waco,,16 hours 40 mins,"1,830 km" +Columbus,San Angelo,,18 hours 50 mins,"2,072 km" +Columbus,Houston,,17 hours 22 mins,"1,860 km" +Columbus,San Antonio,,19 hours 16 mins,"2,116 km" +Columbus,Del Rio,,21 hours 15 mins,"2,325 km" +Columbus,Mission,,, +Columbus,Beaumont,,, +Columbus,Longview,,14 hours 14 mins,"1,535 km" +Columbus,Midland,,19 hours 26 mins,"2,140 km" +Columbus,El Paso,,23 hours 40 mins,"2,588 km" +Columbus,Brownsville,,22 hours 36 mins,"2,427 km" +Columbus,Austin,,18 hours 4 mins,"1,989 km" +Columbus,Dallas,,15 hours 17 mins,"1,675 km" +Columbus,Killeen,,17 hours 28 mins,"1,924 km" +Columbus,Laredo,,21 hours 32 mins,"2,366 km" +Columbus,Texarkana,,12 hours 48 mins,"1,395 km" +Abilene,Columbus,,17 hours 33 mins,"1,938 km" +Amarillo,Columbus,,17 hours 3 mins,"1,889 km" +Harlingen,Columbus,,22 hours 8 mins,"2,386 km" +Lubbock,Columbus,,18 hours 23 mins,"2,028 km" +College Station,Columbus,,17 hours 18 mins,"1,827 km" +Corpus Christi,Columbus,,20 hours 30 mins,"2,197 km" +Wichita Falls,Columbus,,15 hours 18 mins,"1,694 km" +Waco,Columbus,,16 hours 36 mins,"1,825 km" +San Angelo,Columbus,,18 hours 48 mins,"2,072 km" +Houston,Columbus,,17 hours 20 mins,"1,858 km" +San Antonio,Columbus,,19 hours 11 mins,"2,112 km" +Del Rio,Columbus,,21 hours 11 mins,"2,325 km" +Mission,Columbus,,, +Beaumont,Columbus,,, +Longview,Columbus,,14 hours 13 mins,"1,533 km" +Midland,Columbus,,19 hours 23 mins,"2,141 km" +El Paso,Columbus,,23 hours 36 mins,"2,585 km" +Brownsville,Columbus,,22 hours 32 mins,"2,426 km" +Austin,Columbus,,18 hours 0 mins,"1,987 km" +Dallas,Columbus,,15 hours 14 mins,"1,673 km" +Killeen,Columbus,,17 hours 25 mins,"1,921 km" +Laredo,Columbus,,21 hours 29 mins,"2,364 km" +Texarkana,Columbus,,12 hours 45 mins,"1,392 km" +Houston,Sacramento,,1 day 4 hours,"3,107 km" +Sacramento,Houston,,1 day 4 hours,"3,107 km" +Kansas City,Buffalo,,14 hours 29 mins,"1,586 km" +Kansas City,Manhattan,,18 hours 18 mins,"1,925 km" +Kansas City,Niagara Falls,,14 hours 50 mins,"1,617 km" +Kansas City,Islip,,19 hours 0 mins,"2,022 km" +Kansas City,New York,,18 hours 8 mins,"1,918 km" +Kansas City,Watertown,,17 hours 29 mins,"1,915 km" +Kansas City,Newburgh,,18 hours 9 mins,"1,972 km" +Kansas City,Syracuse,,16 hours 32 mins,"1,812 km" +Kansas City,Plattsburgh,,20 hours 21 mins,"2,173 km" +Kansas City,Ogdensburg,,18 hours 27 mins,"2,008 km" +Kansas City,Ithaca,,16 hours 40 mins,"1,805 km" +Kansas City,Elmira,,16 hours 9 mins,"1,768 km" +Kansas City,White Plains,,18 hours 19 mins,"1,997 km" +Kansas City,Albany,,, +Kansas City,Binghamton,,16 hours 57 mins,"1,856 km" +Kansas City,Rochester,,15 hours 26 mins,"1,691 km" +Buffalo,Kansas City,,14 hours 28 mins,"1,585 km" +Manhattan,Kansas City,,18 hours 13 mins,"1,922 km" +Niagara Falls,Kansas City,,14 hours 50 mins,"1,615 km" +Islip,Kansas City,,18 hours 58 mins,"2,019 km" +New York,Kansas City,,18 hours 3 mins,"1,914 km" +Watertown,Kansas City,,17 hours 29 mins,"1,913 km" +Newburgh,Kansas City,,18 hours 8 mins,"1,968 km" +Syracuse,Kansas City,,16 hours 32 mins,"1,811 km" +Plattsburgh,Kansas City,,20 hours 21 mins,"2,173 km" +Ogdensburg,Kansas City,,18 hours 27 mins,"2,005 km" +Ithaca,Kansas City,,16 hours 38 mins,"1,803 km" +Elmira,Kansas City,,16 hours 8 mins,"1,767 km" +White Plains,Kansas City,,18 hours 24 mins,"1,967 km" +Albany,Kansas City,,, +Binghamton,Kansas City,,16 hours 57 mins,"1,854 km" +Rochester,Kansas City,,15 hours 27 mins,"1,689 km" +Tampa,Evansville,,12 hours 20 mins,"1,375 km" +Tampa,South Bend,,16 hours 36 mins,"1,822 km" +Tampa,Fort Wayne,,16 hours 7 mins,"1,761 km" +Tampa,Valparaiso,,, +Tampa,Indianapolis,,14 hours 19 mins,"1,593 km" +Evansville,Tampa,,12 hours 21 mins,"1,371 km" +South Bend,Tampa,,16 hours 39 mins,"1,820 km" +Fort Wayne,Tampa,,16 hours 8 mins,"1,760 km" +Valparaiso,Tampa,,, +Indianapolis,Tampa,,14 hours 22 mins,"1,591 km" +New York,San Diego,,1 day 17 hours,"4,440 km" +New York,Redding,,1 day 18 hours,"4,633 km" +New York,Sacramento,,1 day 17 hours,"4,531 km" +New York,Fresno,,1 day 19 hours,"4,667 km" +New York,San Luis Obispo,,1 day 19 hours,"4,733 km" +New York,Oakland,,1 day 18 hours,"4,661 km" +New York,Santa Barbara,,1 day 18 hours,"4,632 km" +New York,Stockton,,1 day 18 hours,"4,607 km" +New York,Santa Rosa,,1 day 19 hours,"4,686 km" +New York,Bakersfield,,1 day 17 hours,"4,514 km" +New York,Santa Ana,,1 day 17 hours,"4,489 km" +New York,Santa Maria,,1 day 19 hours,"4,665 km" +New York,San Jose,,1 day 19 hours,"4,723 km" +New York,Burbank,,1 day 17 hours,"4,499 km" +New York,Arcata,,1 day 21 hours,"4,858 km" +New York,Butte,,1 day 18 hours,"4,570 km" +New York,Palm Springs,,1 day 16 hours,"4,302 km" +New York,Los Angeles,,1 day 17 hours,"4,489 km" +New York,Long Beach,,1 day 17 hours,"4,488 km" +New York,San Francisco,,1 day 19 hours,"4,670 km" +New York,Monterey,,1 day 20 hours,"4,831 km" +San Diego,New York,,1 day 17 hours,"4,441 km" +Redding,New York,,1 day 18 hours,"4,640 km" +Sacramento,New York,,1 day 17 hours,"4,538 km" +Fresno,New York,,1 day 19 hours,"4,690 km" +San Luis Obispo,New York,,1 day 19 hours,"4,735 km" +Oakland,New York,,1 day 18 hours,"4,667 km" +Santa Barbara,New York,,1 day 18 hours,"4,632 km" +Stockton,New York,,1 day 18 hours,"4,614 km" +Santa Rosa,New York,,1 day 19 hours,"4,693 km" +Bakersfield,New York,,1 day 17 hours,"4,515 km" +Santa Ana,New York,,1 day 17 hours,"4,486 km" +Santa Maria,New York,,1 day 19 hours,"4,691 km" +San Jose,New York,,1 day 19 hours,"4,729 km" +Burbank,New York,,1 day 17 hours,"4,493 km" +Arcata,New York,,1 day 21 hours,"4,864 km" +Butte,New York,,1 day 18 hours,"4,577 km" +Palm Springs,New York,,1 day 16 hours,"4,303 km" +Los Angeles,New York,,1 day 17 hours,"4,489 km" +Long Beach,New York,,1 day 17 hours,"4,516 km" +San Francisco,New York,,1 day 18 hours,"4,677 km" +Monterey,New York,,1 day 20 hours,"4,835 km" +Reno,Abilene,,22 hours 27 mins,"2,412 km" +Reno,Amarillo,,19 hours 10 mins,"2,092 km" +Reno,Harlingen,,1 day 5 hours,"3,174 km" +Reno,Lubbock,,20 hours 5 mins,"2,145 km" +Reno,College Station,,1 day 3 hours,"2,836 km" +Reno,Corpus Christi,,1 day 3 hours,"2,999 km" +Reno,Wichita Falls,,22 hours 27 mins,"2,446 km" +Reno,Waco,,1 day 1 hour,"2,712 km" +Reno,San Angelo,,22 hours 32 mins,"2,446 km" +Reno,Houston,,1 day 4 hours,"3,049 km" +Reno,San Antonio,,1 day 1 hour,"2,766 km" +Reno,Del Rio,,23 hours 55 mins,"2,562 km" +Reno,Mission,,, +Reno,Beaumont,,, +Reno,Longview,,1 day 2 hours,"2,873 km" +Reno,Midland,,21 hours 10 mins,"2,279 km" +Reno,El Paso,,17 hours 36 mins,"1,880 km" +Reno,Brownsville,,1 day 5 hours,"3,213 km" +Reno,Austin,,1 day 2 hours,"2,749 km" +Reno,Dallas,,1 day 0 hours,"2,673 km" +Reno,Killeen,,1 day 1 hour,"2,685 km" +Reno,Laredo,,1 day 3 hours,"2,852 km" +Reno,Texarkana,,1 day 3 hours,"2,882 km" +Abilene,Reno,,22 hours 27 mins,"2,411 km" +Amarillo,Reno,,19 hours 10 mins,"2,091 km" +Harlingen,Reno,,1 day 5 hours,"3,174 km" +Lubbock,Reno,,20 hours 3 mins,"2,145 km" +College Station,Reno,,1 day 3 hours,"2,838 km" +Corpus Christi,Reno,,1 day 3 hours,"2,999 km" +Wichita Falls,Reno,,22 hours 28 mins,"2,446 km" +Waco,Reno,,1 day 1 hour,"2,770 km" +San Angelo,Reno,,22 hours 29 mins,"2,444 km" +Houston,Reno,,1 day 4 hours,"3,049 km" +San Antonio,Reno,,1 day 1 hour,"2,766 km" +Del Rio,Reno,,23 hours 54 mins,"2,563 km" +Mission,Reno,,, +Beaumont,Reno,,, +Longview,Reno,,1 day 2 hours,"2,879 km" +Midland,Reno,,21 hours 8 mins,"2,278 km" +El Paso,Reno,,17 hours 35 mins,"1,880 km" +Brownsville,Reno,,1 day 5 hours,"3,215 km" +Austin,Reno,,1 day 2 hours,"2,775 km" +Dallas,Reno,,1 day 0 hours,"2,672 km" +Killeen,Reno,,1 day 1 hour,"2,684 km" +Laredo,Reno,,1 day 3 hours,"2,852 km" +Texarkana,Reno,,1 day 3 hours,"2,895 km" +Memphis,Tampa,,12 hours 4 mins,"1,349 km" +Tampa,Memphis,,12 hours 2 mins,"1,362 km" +Charlotte,Abilene,,17 hours 37 mins,"1,945 km" +Charlotte,Amarillo,,19 hours 45 mins,"2,161 km" +Charlotte,Harlingen,,20 hours 0 mins,"2,196 km" +Charlotte,Lubbock,,19 hours 59 mins,"2,206 km" +Charlotte,College Station,,16 hours 12 mins,"1,719 km" +Charlotte,Corpus Christi,,18 hours 15 mins,"2,001 km" +Charlotte,Wichita Falls,,17 hours 2 mins,"1,879 km" +Charlotte,Waco,,16 hours 4 mins,"1,727 km" +Charlotte,San Angelo,,18 hours 50 mins,"2,065 km" +Charlotte,Houston,,15 hours 8 mins,"1,668 km" +Charlotte,San Antonio,,18 hours 0 mins,"1,982 km" +Charlotte,Del Rio,,20 hours 23 mins,"2,229 km" +Charlotte,Mission,,, +Charlotte,Beaumont,,, +Charlotte,Longview,,13 hours 18 mins,"1,452 km" +Charlotte,Midland,,19 hours 46 mins,"2,186 km" +Charlotte,El Paso,,1 day 0 hours,"2,671 km" +Charlotte,Brownsville,,20 hours 22 mins,"2,235 km" +Charlotte,Austin,,17 hours 29 mins,"1,889 km" +Charlotte,Dallas,,15 hours 1 min,"1,652 km" +Charlotte,Killeen,,16 hours 54 mins,"1,828 km" +Charlotte,Laredo,,20 hours 7 mins,"2,174 km" +Charlotte,Texarkana,,13 hours 22 mins,"1,467 km" +Abilene,Charlotte,,17 hours 36 mins,"1,943 km" +Amarillo,Charlotte,,19 hours 44 mins,"2,163 km" +Harlingen,Charlotte,,19 hours 56 mins,"2,197 km" +Lubbock,Charlotte,,19 hours 56 mins,"2,208 km" +College Station,Charlotte,,16 hours 8 mins,"1,719 km" +Corpus Christi,Charlotte,,18 hours 18 mins,"2,008 km" +Wichita Falls,Charlotte,,17 hours 5 mins,"1,872 km" +Waco,Charlotte,,16 hours 2 mins,"1,728 km" +San Angelo,Charlotte,,18 hours 48 mins,"2,067 km" +Houston,Charlotte,,15 hours 7 mins,"1,669 km" +San Antonio,Charlotte,,18 hours 0 mins,"1,983 km" +Del Rio,Charlotte,,20 hours 26 mins,"2,230 km" +Mission,Charlotte,,, +Beaumont,Charlotte,,, +Longview,Charlotte,,13 hours 18 mins,"1,453 km" +Midland,Charlotte,,19 hours 42 mins,"2,182 km" +El Paso,Charlotte,,1 day 0 hours,"2,673 km" +Brownsville,Charlotte,,20 hours 19 mins,"2,237 km" +Austin,Charlotte,,17 hours 28 mins,"1,890 km" +Dallas,Charlotte,,15 hours 2 mins,"1,651 km" +Killeen,Charlotte,,16 hours 53 mins,"1,825 km" +Laredo,Charlotte,,20 hours 3 mins,"2,175 km" +Texarkana,Charlotte,,13 hours 23 mins,"1,471 km" +Eugene,San Diego,,14 hours 58 mins,"1,572 km" +Eugene,Redding,,4 hours 59 mins,508 km +Eugene,Sacramento,,7 hours 21 mins,763 km +Eugene,Fresno,,9 hours 57 mins,"1,036 km" +Eugene,San Luis Obispo,,11 hours 19 mins,"1,194 km" +Eugene,Oakland,,8 hours 4 mins,843 km +Eugene,Santa Barbara,,12 hours 52 mins,"1,345 km" +Eugene,Stockton,,8 hours 2 mins,839 km +Eugene,Santa Rosa,,8 hours 25 mins,815 km +Eugene,Bakersfield,,11 hours 33 mins,"1,208 km" +Eugene,Santa Ana,,13 hours 42 mins,"1,431 km" +Eugene,Santa Maria,,11 hours 49 mins,"1,244 km" +Eugene,San Jose,,8 hours 42 mins,905 km +Eugene,Burbank,,12 hours 52 mins,"1,364 km" +Eugene,Arcata,,5 hours 25 mins,481 km +Eugene,Butte,,6 hours 37 mins,660 km +Eugene,Palm Springs,,14 hours 37 mins,"1,550 km" +Eugene,Los Angeles,,13 hours 7 mins,"1,380 km" +Eugene,Long Beach,,13 hours 25 mins,"1,416 km" +Eugene,San Francisco,,8 hours 13 mins,852 km +Eugene,Monterey,,9 hours 43 mins,"1,012 km" +San Diego,Eugene,,15 hours 2 mins,"1,570 km" +Redding,Eugene,,4 hours 59 mins,507 km +Sacramento,Eugene,,7 hours 20 mins,761 km +Fresno,Eugene,,9 hours 56 mins,"1,038 km" +San Luis Obispo,Eugene,,11 hours 14 mins,"1,190 km" +Oakland,Eugene,,8 hours 3 mins,840 km +Santa Barbara,Eugene,,12 hours 47 mins,"1,343 km" +Stockton,Eugene,,8 hours 2 mins,838 km +Santa Rosa,Eugene,,8 hours 24 mins,813 km +Bakersfield,Eugene,,11 hours 31 mins,"1,211 km" +Santa Ana,Eugene,,13 hours 45 mins,"1,429 km" +Santa Maria,Eugene,,11 hours 44 mins,"1,242 km" +San Jose,Eugene,,8 hours 38 mins,902 km +Burbank,Eugene,,12 hours 54 mins,"1,361 km" +Arcata,Eugene,,5 hours 21 mins,477 km +Butte,Eugene,,6 hours 35 mins,652 km +Palm Springs,Eugene,,14 hours 41 mins,"1,547 km" +Los Angeles,Eugene,,13 hours 7 mins,"1,377 km" +Long Beach,Eugene,,13 hours 30 mins,"1,415 km" +San Francisco,Eugene,,8 hours 10 mins,850 km +Monterey,Eugene,,9 hours 39 mins,"1,009 km" +Houston,Wichita,,8 hours 42 mins,969 km +Wichita,Houston,,8 hours 42 mins,969 km +Indianapolis,Greensboro,,8 hours 33 mins,887 km +Indianapolis,Wilmington,,11 hours 27 mins,"1,214 km" +Indianapolis,New Bern,,11 hours 26 mins,"1,192 km" +Indianapolis,Charlotte,,8 hours 51 mins,923 km +Indianapolis,Raleigh,,9 hours 43 mins,"1,007 km" +Indianapolis,Asheville,,7 hours 7 mins,758 km +Indianapolis,Fayetteville,,10 hours 3 mins,"1,032 km" +Greensboro,Indianapolis,,8 hours 35 mins,887 km +Wilmington,Indianapolis,,11 hours 28 mins,"1,214 km" +New Bern,Indianapolis,,11 hours 27 mins,"1,192 km" +Charlotte,Indianapolis,,8 hours 55 mins,925 km +Raleigh,Indianapolis,,9 hours 42 mins,"1,007 km" +Asheville,Indianapolis,,7 hours 6 mins,757 km +Fayetteville,Indianapolis,,10 hours 6 mins,"1,033 km" +Grand Junction,Flagstaff,,7 hours 6 mins,702 km +Grand Junction,Yuma,,11 hours 40 mins,"1,205 km" +Grand Junction,Phoenix,,9 hours 11 mins,934 km +Grand Junction,Prescott,,8 hours 38 mins,854 km +Grand Junction,Tucson,,10 hours 44 mins,"1,112 km" +Flagstaff,Grand Junction,,6 hours 59 mins,701 km +Yuma,Grand Junction,,11 hours 36 mins,"1,213 km" +Phoenix,Grand Junction,,9 hours 3 mins,933 km +Prescott,Grand Junction,,8 hours 30 mins,854 km +Tucson,Grand Junction,,10 hours 36 mins,"1,113 km" +Syracuse,State College,,4 hours 5 mins,379 km +Syracuse,Johnstown,,5 hours 18 mins,505 km +Syracuse,Harrisburg,,3 hours 54 mins,407 km +Syracuse,Erie,,3 hours 39 mins,381 km +Syracuse,Pittsburgh,,5 hours 19 mins,579 km +Syracuse,Latrobe,,5 hours 44 mins,551 km +Syracuse,Philadelphia,,3 hours 58 mins,408 km +Syracuse,Lewisburg,,3 hours 25 mins,350 km +Syracuse,Scranton,,2 hours 3 mins,209 km +State College,Syracuse,,4 hours 7 mins,386 km +Johnstown,Syracuse,,5 hours 20 mins,512 km +Harrisburg,Syracuse,,3 hours 56 mins,406 km +Erie,Syracuse,,3 hours 40 mins,382 km +Pittsburgh,Syracuse,,5 hours 17 mins,578 km +Latrobe,Syracuse,,5 hours 48 mins,555 km +Philadelphia,Syracuse,,4 hours 0 mins,408 km +Lewisburg,Syracuse,,3 hours 25 mins,349 km +Scranton,Syracuse,,2 hours 3 mins,210 km +Bangor,Washington,,10 hours 27 mins,"1,074 km" +Washington,Bangor,,10 hours 25 mins,"1,069 km" +Key West,Augusta,,12 hours 3 mins,"1,221 km" +Key West,Decatur,,12 hours 38 mins,"1,328 km" +Key West,Atlanta,,12 hours 27 mins,"1,320 km" +Key West,Valdosta,,9 hours 20 mins,958 km +Key West,Savannah,,10 hours 2 mins,"1,032 km" +Augusta,Key West,,12 hours 4 mins,"1,222 km" +Decatur,Key West,,12 hours 39 mins,"1,321 km" +Atlanta,Key West,,12 hours 27 mins,"1,320 km" +Valdosta,Key West,,9 hours 20 mins,958 km +Savannah,Key West,,10 hours 3 mins,"1,035 km" +Daytona Beach,Atlanta,,6 hours 18 mins,696 km +Atlanta,Daytona Beach,,6 hours 20 mins,706 km +Lihue,San Francisco,,, +San Francisco,Lihue,,, +Cincinnati,Abilene,,16 hours 21 mins,"1,793 km" +Cincinnati,Amarillo,,16 hours 6 mins,"1,781 km" +Cincinnati,Harlingen,,20 hours 41 mins,"2,216 km" +Cincinnati,Lubbock,,17 hours 29 mins,"1,920 km" +Cincinnati,College Station,,15 hours 49 mins,"1,661 km" +Cincinnati,Corpus Christi,,18 hours 56 mins,"2,022 km" +Cincinnati,Wichita Falls,,14 hours 22 mins,"1,585 km" +Cincinnati,Waco,,15 hours 7 mins,"1,659 km" +Cincinnati,San Angelo,,17 hours 35 mins,"1,917 km" +Cincinnati,Houston,,15 hours 49 mins,"1,688 km" +Cincinnati,San Antonio,,17 hours 43 mins,"1,944 km" +Cincinnati,Del Rio,,20 hours 0 mins,"2,170 km" +Cincinnati,Mission,,, +Cincinnati,Beaumont,,, +Cincinnati,Longview,,12 hours 41 mins,"1,364 km" +Cincinnati,Midland,,18 hours 29 mins,"2,034 km" +Cincinnati,El Paso,,22 hours 41 mins,"2,479 km" +Cincinnati,Brownsville,,21 hours 3 mins,"2,256 km" +Cincinnati,Austin,,16 hours 31 mins,"1,817 km" +Cincinnati,Dallas,,13 hours 43 mins,"1,503 km" +Cincinnati,Killeen,,15 hours 55 mins,"1,752 km" +Cincinnati,Laredo,,19 hours 59 mins,"2,195 km" +Cincinnati,Texarkana,,11 hours 14 mins,"1,223 km" +Abilene,Cincinnati,,16 hours 17 mins,"1,791 km" +Amarillo,Cincinnati,,16 hours 5 mins,"1,779 km" +Harlingen,Cincinnati,,20 hours 35 mins,"2,214 km" +Lubbock,Cincinnati,,17 hours 25 mins,"1,918 km" +College Station,Cincinnati,,15 hours 44 mins,"1,655 km" +Corpus Christi,Cincinnati,,18 hours 56 mins,"2,025 km" +Wichita Falls,Cincinnati,,14 hours 19 mins,"1,584 km" +Waco,Cincinnati,,15 hours 2 mins,"1,653 km" +San Angelo,Cincinnati,,17 hours 29 mins,"1,915 km" +Houston,Cincinnati,,15 hours 46 mins,"1,686 km" +San Antonio,Cincinnati,,17 hours 37 mins,"1,940 km" +Del Rio,Cincinnati,,19 hours 52 mins,"2,169 km" +Mission,Cincinnati,,, +Beaumont,Cincinnati,,, +Longview,Cincinnati,,12 hours 39 mins,"1,361 km" +Midland,Cincinnati,,18 hours 23 mins,"2,031 km" +El Paso,Cincinnati,,22 hours 37 mins,"2,475 km" +Brownsville,Cincinnati,,20 hours 58 mins,"2,254 km" +Austin,Cincinnati,,16 hours 27 mins,"1,814 km" +Dallas,Cincinnati,,13 hours 40 mins,"1,501 km" +Killeen,Cincinnati,,15 hours 51 mins,"1,749 km" +Laredo,Cincinnati,,19 hours 55 mins,"2,192 km" +Texarkana,Cincinnati,,11 hours 11 mins,"1,220 km" +Pensacola,Buffalo,,16 hours 50 mins,"1,850 km" +Pensacola,Manhattan,,18 hours 2 mins,"1,918 km" +Pensacola,Niagara Falls,,17 hours 11 mins,"1,881 km" +Pensacola,Islip,,18 hours 43 mins,"1,989 km" +Pensacola,New York,,17 hours 53 mins,"1,912 km" +Pensacola,Watertown,,19 hours 50 mins,"2,179 km" +Pensacola,Newburgh,,18 hours 32 mins,"2,015 km" +Pensacola,Syracuse,,18 hours 53 mins,"2,076 km" +Pensacola,Plattsburgh,,21 hours 58 mins,"2,403 km" +Pensacola,Ogdensburg,,20 hours 49 mins,"2,272 km" +Pensacola,Ithaca,,18 hours 45 mins,"2,015 km" +Pensacola,Elmira,,18 hours 7 mins,"1,942 km" +Pensacola,White Plains,,18 hours 20 mins,"1,962 km" +Pensacola,Albany,,, +Pensacola,Binghamton,,18 hours 4 mins,"1,967 km" +Pensacola,Rochester,,17 hours 48 mins,"1,955 km" +Buffalo,Pensacola,,16 hours 56 mins,"1,853 km" +Manhattan,Pensacola,,18 hours 7 mins,"1,928 km" +Niagara Falls,Pensacola,,17 hours 18 mins,"1,883 km" +Islip,Pensacola,,18 hours 48 mins,"1,996 km" +New York,Pensacola,,17 hours 59 mins,"1,922 km" +Watertown,Pensacola,,19 hours 56 mins,"2,181 km" +Newburgh,Pensacola,,18 hours 37 mins,"2,015 km" +Syracuse,Pensacola,,19 hours 0 mins,"2,079 km" +Plattsburgh,Pensacola,,22 hours 2 mins,"2,403 km" +Ogdensburg,Pensacola,,20 hours 55 mins,"2,274 km" +Ithaca,Pensacola,,18 hours 49 mins,"2,015 km" +Elmira,Pensacola,,18 hours 12 mins,"1,944 km" +White Plains,Pensacola,,18 hours 25 mins,"1,971 km" +Albany,Pensacola,,, +Binghamton,Pensacola,,18 hours 7 mins,"1,967 km" +Rochester,Pensacola,,17 hours 54 mins,"1,958 km" +Peoria,Abilene,,13 hours 49 mins,"1,536 km" +Peoria,Amarillo,,13 hours 20 mins,"1,489 km" +Peoria,Harlingen,,19 hours 17 mins,"2,048 km" +Peoria,Lubbock,,14 hours 43 mins,"1,627 km" +Peoria,College Station,,14 hours 26 mins,"1,493 km" +Peoria,Corpus Christi,,17 hours 32 mins,"1,853 km" +Peoria,Wichita Falls,,11 hours 35 mins,"1,292 km" +Peoria,Waco,,13 hours 31 mins,"1,438 km" +Peoria,San Angelo,,15 hours 5 mins,"1,671 km" +Peoria,Houston,,14 hours 25 mins,"1,520 km" +Peoria,San Antonio,,16 hours 7 mins,"1,723 km" +Peoria,Del Rio,,17 hours 30 mins,"1,924 km" +Peoria,Mission,,, +Peoria,Beaumont,,, +Peoria,Longview,,11 hours 17 mins,"1,195 km" +Peoria,Midland,,15 hours 41 mins,"1,738 km" +Peoria,El Paso,,19 hours 55 mins,"2,186 km" +Peoria,Brownsville,,19 hours 39 mins,"2,087 km" +Peoria,Austin,,14 hours 56 mins,"1,596 km" +Peoria,Dallas,,12 hours 7 mins,"1,283 km" +Peoria,Killeen,,14 hours 20 mins,"1,531 km" +Peoria,Laredo,,18 hours 24 mins,"1,974 km" +Peoria,Texarkana,,9 hours 51 mins,"1,055 km" +Abilene,Peoria,,13 hours 49 mins,"1,537 km" +Amarillo,Peoria,,13 hours 19 mins,"1,487 km" +Harlingen,Peoria,,19 hours 15 mins,"2,050 km" +Lubbock,Peoria,,14 hours 39 mins,"1,627 km" +College Station,Peoria,,14 hours 24 mins,"1,492 km" +Corpus Christi,Peoria,,17 hours 36 mins,"1,861 km" +Wichita Falls,Peoria,,11 hours 34 mins,"1,292 km" +Waco,Peoria,,13 hours 30 mins,"1,436 km" +San Angelo,Peoria,,15 hours 4 mins,"1,670 km" +Houston,Peoria,,14 hours 26 mins,"1,523 km" +San Antonio,Peoria,,16 hours 6 mins,"1,723 km" +Del Rio,Peoria,,17 hours 27 mins,"1,924 km" +Mission,Peoria,,, +Beaumont,Peoria,,, +Longview,Peoria,,11 hours 19 mins,"1,197 km" +Midland,Peoria,,15 hours 39 mins,"1,739 km" +El Paso,Peoria,,19 hours 52 mins,"2,184 km" +Brownsville,Peoria,,19 hours 38 mins,"2,090 km" +Austin,Peoria,,14 hours 55 mins,"1,597 km" +Dallas,Peoria,,12 hours 8 mins,"1,285 km" +Killeen,Peoria,,14 hours 19 mins,"1,532 km" +Laredo,Peoria,,18 hours 23 mins,"1,974 km" +Texarkana,Peoria,,9 hours 51 mins,"1,056 km" +Monterey,Alamosa,,18 hours 33 mins,"1,868 km" +Monterey,Grand Junction,,15 hours 7 mins,"1,628 km" +Monterey,Durango,,15 hours 47 mins,"1,629 km" +Monterey,Colorado Springs,,19 hours 39 mins,"2,123 km" +Monterey,Gunnison,,17 hours 28 mins,"1,825 km" +Monterey,Denver,,18 hours 45 mins,"2,016 km" +Alamosa,Monterey,,18 hours 29 mins,"1,865 km" +Grand Junction,Monterey,,15 hours 6 mins,"1,626 km" +Durango,Monterey,,15 hours 42 mins,"1,627 km" +Colorado Springs,Monterey,,19 hours 38 mins,"2,123 km" +Gunnison,Monterey,,17 hours 21 mins,"1,824 km" +Denver,Monterey,,18 hours 45 mins,"2,015 km" +San Jose,Hilo,,, +San Jose,Kahului,,, +San Jose,Kona,,, +San Jose,Lihue,,, +San Jose,Honolulu,,, +Hilo,San Jose,,, +Kahului,San Jose,,, +Kona,San Jose,,, +Lihue,San Jose,,, +Honolulu,San Jose,,, +Binghamton,Pellston,,10 hours 24 mins,"1,136 km" +Binghamton,Traverse City,,10 hours 24 mins,"1,095 km" +Binghamton,Alpena,,10 hours 23 mins,"1,084 km" +Binghamton,Iron Mountain,,, +Binghamton,Kalamazoo,,9 hours 19 mins,996 km +Binghamton,Saginaw,,8 hours 4 mins,849 km +Binghamton,Grand Rapids,,9 hours 6 mins,972 km +Binghamton,Lansing,,8 hours 48 mins,954 km +Binghamton,Muskegon,,9 hours 39 mins,"1,035 km" +Binghamton,Hancock,,, +Binghamton,Detroit,,7 hours 56 mins,851 km +Binghamton,Escanaba,,12 hours 54 mins,"1,384 km" +Pellston,Binghamton,,10 hours 21 mins,"1,137 km" +Traverse City,Binghamton,,10 hours 22 mins,"1,096 km" +Alpena,Binghamton,,10 hours 18 mins,"1,083 km" +Iron Mountain,Binghamton,,, +Kalamazoo,Binghamton,,9 hours 17 mins,995 km +Saginaw,Binghamton,,8 hours 0 mins,849 km +Grand Rapids,Binghamton,,9 hours 1 min,972 km +Lansing,Binghamton,,8 hours 48 mins,955 km +Muskegon,Binghamton,,9 hours 35 mins,"1,036 km" +Hancock,Binghamton,,, +Detroit,Binghamton,,7 hours 55 mins,852 km +Escanaba,Binghamton,,12 hours 50 mins,"1,385 km" +Lexington,Abilene,,15 hours 32 mins,"1,698 km" +Lexington,Amarillo,,15 hours 56 mins,"1,760 km" +Lexington,Harlingen,,19 hours 53 mins,"2,121 km" +Lexington,Lubbock,,17 hours 19 mins,"1,899 km" +Lexington,College Station,,15 hours 1 min,"1,566 km" +Lexington,Corpus Christi,,18 hours 7 mins,"1,926 km" +Lexington,Wichita Falls,,14 hours 11 mins,"1,564 km" +Lexington,Waco,,14 hours 18 mins,"1,563 km" +Lexington,San Angelo,,16 hours 46 mins,"1,822 km" +Lexington,Houston,,15 hours 1 min,"1,593 km" +Lexington,San Antonio,,16 hours 54 mins,"1,849 km" +Lexington,Del Rio,,19 hours 11 mins,"2,075 km" +Lexington,Mission,,, +Lexington,Beaumont,,, +Lexington,Longview,,11 hours 52 mins,"1,269 km" +Lexington,Midland,,17 hours 40 mins,"1,938 km" +Lexington,El Paso,,21 hours 59 mins,"2,429 km" +Lexington,Brownsville,,20 hours 14 mins,"2,160 km" +Lexington,Austin,,15 hours 43 mins,"1,722 km" +Lexington,Dallas,,12 hours 55 mins,"1,408 km" +Lexington,Killeen,,15 hours 7 mins,"1,657 km" +Lexington,Laredo,,19 hours 11 mins,"2,099 km" +Lexington,Texarkana,,10 hours 26 mins,"1,128 km" +Abilene,Lexington,,15 hours 28 mins,"1,697 km" +Amarillo,Lexington,,15 hours 56 mins,"1,759 km" +Harlingen,Lexington,,19 hours 46 mins,"2,120 km" +Lubbock,Lexington,,17 hours 15 mins,"1,898 km" +College Station,Lexington,,14 hours 55 mins,"1,561 km" +Corpus Christi,Lexington,,18 hours 7 mins,"1,931 km" +Wichita Falls,Lexington,,14 hours 10 mins,"1,564 km" +Waco,Lexington,,14 hours 13 mins,"1,559 km" +San Angelo,Lexington,,16 hours 40 mins,"1,822 km" +Houston,Lexington,,14 hours 57 mins,"1,592 km" +San Antonio,Lexington,,16 hours 48 mins,"1,846 km" +Del Rio,Lexington,,19 hours 3 mins,"2,075 km" +Mission,Lexington,,, +Beaumont,Lexington,,, +Longview,Lexington,,11 hours 50 mins,"1,267 km" +Midland,Lexington,,17 hours 34 mins,"1,937 km" +El Paso,Lexington,,21 hours 52 mins,"2,427 km" +Brownsville,Lexington,,20 hours 9 mins,"2,160 km" +Austin,Lexington,,15 hours 38 mins,"1,721 km" +Dallas,Lexington,,12 hours 51 mins,"1,407 km" +Killeen,Lexington,,15 hours 2 mins,"1,655 km" +Laredo,Lexington,,19 hours 6 mins,"2,098 km" +Texarkana,Lexington,,10 hours 22 mins,"1,126 km" +Jacksonville,Greensboro,,6 hours 42 mins,734 km +Jacksonville,Wilmington,,6 hours 18 mins,702 km +Jacksonville,New Bern,,7 hours 33 mins,836 km +Jacksonville,Charlotte,,5 hours 32 mins,617 km +Jacksonville,Raleigh,,6 hours 29 mins,729 km +Jacksonville,Asheville,,6 hours 27 mins,712 km +Jacksonville,Fayetteville,,5 hours 35 mins,633 km +Greensboro,Jacksonville,,6 hours 43 mins,721 km +Wilmington,Jacksonville,,6 hours 18 mins,703 km +New Bern,Jacksonville,,7 hours 34 mins,836 km +Charlotte,Jacksonville,,5 hours 31 mins,617 km +Raleigh,Jacksonville,,6 hours 31 mins,731 km +Asheville,Jacksonville,,6 hours 25 mins,712 km +Fayetteville,Jacksonville,,5 hours 35 mins,633 km +Honolulu,Los Angeles,,, +Los Angeles,Honolulu,,, +Cleveland,Abilene,,19 hours 36 mins,"2,162 km" +Cleveland,Amarillo,,19 hours 7 mins,"2,115 km" +Cleveland,Harlingen,,1 day 0 hours,"2,616 km" +Cleveland,Lubbock,,20 hours 30 mins,"2,253 km" +Cleveland,College Station,,19 hours 27 mins,"2,061 km" +Cleveland,Corpus Christi,,22 hours 34 mins,"2,421 km" +Cleveland,Wichita Falls,,17 hours 22 mins,"1,918 km" +Cleveland,Waco,,18 hours 45 mins,"2,059 km" +Cleveland,San Angelo,,20 hours 52 mins,"2,297 km" +Cleveland,Houston,,19 hours 27 mins,"2,088 km" +Cleveland,San Antonio,,21 hours 21 mins,"2,344 km" +Cleveland,Del Rio,,23 hours 17 mins,"2,550 km" +Cleveland,Mission,,, +Cleveland,Beaumont,,, +Cleveland,Longview,,16 hours 19 mins,"1,764 km" +Cleveland,Midland,,21 hours 28 mins,"2,364 km" +Cleveland,El Paso,,1 day 2 hours,"2,812 km" +Cleveland,Brownsville,,1 day 1 hour,"2,655 km" +Cleveland,Austin,,20 hours 9 mins,"2,217 km" +Cleveland,Dallas,,17 hours 22 mins,"1,903 km" +Cleveland,Killeen,,19 hours 33 mins,"2,152 km" +Cleveland,Laredo,,23 hours 37 mins,"2,594 km" +Cleveland,Texarkana,,14 hours 53 mins,"1,623 km" +Abilene,Cleveland,,19 hours 39 mins,"2,165 km" +Amarillo,Cleveland,,19 hours 9 mins,"2,116 km" +Harlingen,Cleveland,,1 day 0 hours,"2,615 km" +Lubbock,Cleveland,,20 hours 29 mins,"2,255 km" +College Station,Cleveland,,19 hours 22 mins,"2,056 km" +Corpus Christi,Cleveland,,22 hours 35 mins,"2,425 km" +Wichita Falls,Cleveland,,17 hours 23 mins,"1,921 km" +Waco,Cleveland,,18 hours 41 mins,"2,053 km" +San Angelo,Cleveland,,20 hours 53 mins,"2,299 km" +Houston,Cleveland,,19 hours 25 mins,"2,087 km" +San Antonio,Cleveland,,21 hours 16 mins,"2,341 km" +Del Rio,Cleveland,,23 hours 16 mins,"2,552 km" +Mission,Cleveland,,, +Beaumont,Cleveland,,, +Longview,Cleveland,,16 hours 17 mins,"1,762 km" +Midland,Cleveland,,21 hours 29 mins,"2,368 km" +El Paso,Cleveland,,1 day 2 hours,"2,812 km" +Brownsville,Cleveland,,1 day 1 hour,"2,655 km" +Austin,Cleveland,,20 hours 5 mins,"2,215 km" +Dallas,Cleveland,,17 hours 19 mins,"1,901 km" +Killeen,Cleveland,,19 hours 30 mins,"2,150 km" +Laredo,Cleveland,,23 hours 34 mins,"2,592 km" +Texarkana,Cleveland,,14 hours 50 mins,"1,620 km" +Belleville,Flagstaff,,19 hours 52 mins,"2,219 km" +Belleville,Yuma,,1 day 0 hours,"2,667 km" +Belleville,Phoenix,,21 hours 39 mins,"2,373 km" +Belleville,Prescott,,21 hours 24 mins,"2,369 km" +Belleville,Tucson,,21 hours 34 mins,"2,367 km" +Flagstaff,Belleville,,19 hours 45 mins,"2,216 km" +Yuma,Belleville,,1 day 0 hours,"2,664 km" +Phoenix,Belleville,,21 hours 35 mins,"2,372 km" +Prescott,Belleville,,21 hours 16 mins,"2,368 km" +Tucson,Belleville,,21 hours 34 mins,"2,355 km" +Houston,Nashville,,11 hours 50 mins,"1,253 km" +Houston,Bristol,,, +Houston,Knoxville,,13 hours 22 mins,"1,485 km" +Houston,Chattanooga,,11 hours 46 mins,"1,309 km" +Houston,Memphis,,8 hours 42 mins,913 km +Nashville,Houston,,11 hours 51 mins,"1,254 km" +Bristol,Houston,,, +Knoxville,Houston,,13 hours 22 mins,"1,485 km" +Chattanooga,Houston,,11 hours 47 mins,"1,309 km" +Memphis,Houston,,8 hours 44 mins,913 km +Newburgh,Tampa,,17 hours 42 mins,"1,917 km" +Tampa,Newburgh,,17 hours 36 mins,"1,909 km" +New York,Austin,,1 day 2 hours,"2,804 km" +Austin,New York,,1 day 2 hours,"2,805 km" +Kansas City,Moline,,5 hours 19 mins,587 km +Kansas City,Belleville,,4 hours 1 min,425 km +Kansas City,Bloomington,,7 hours 15 mins,751 km +Kansas City,Champaign,,5 hours 51 mins,633 km +Kansas City,Chicago,,7 hours 37 mins,820 km +Kansas City,Rockford,,7 hours 5 mins,775 km +Kansas City,Peoria,,5 hours 38 mins,614 km +Moline,Kansas City,,5 hours 20 mins,587 km +Belleville,Kansas City,,4 hours 1 min,424 km +Bloomington,Kansas City,,7 hours 13 mins,747 km +Champaign,Kansas City,,5 hours 52 mins,635 km +Chicago,Kansas City,,7 hours 36 mins,821 km +Rockford,Kansas City,,7 hours 3 mins,771 km +Peoria,Kansas City,,5 hours 41 mins,564 km +Kansas City,San Diego,,23 hours 42 mins,"2,505 km" +Kansas City,Redding,,1 day 2 hours,"2,872 km" +Kansas City,Sacramento,,1 day 1 hour,"2,769 km" +Kansas City,Fresno,,1 day 1 hour,"2,805 km" +Kansas City,San Luis Obispo,,1 day 2 hours,"2,848 km" +Kansas City,Oakland,,1 day 2 hours,"2,899 km" +Kansas City,Santa Barbara,,1 day 1 hour,"2,747 km" +Kansas City,Stockton,,1 day 2 hours,"2,845 km" +Kansas City,Santa Rosa,,1 day 2 hours,"2,924 km" +Kansas City,Bakersfield,,23 hours 34 mins,"2,628 km" +Kansas City,Santa Ana,,23 hours 23 mins,"2,604 km" +Kansas City,Santa Maria,,1 day 2 hours,"2,803 km" +Kansas City,San Jose,,1 day 3 hours,"2,962 km" +Kansas City,Burbank,,23 hours 26 mins,"2,614 km" +Kansas City,Arcata,,1 day 5 hours,"3,096 km" +Kansas City,Butte,,1 day 2 hours,"2,808 km" +Kansas City,Palm Springs,,22 hours 31 mins,"2,367 km" +Kansas City,Los Angeles,,23 hours 22 mins,"2,604 km" +Kansas City,Long Beach,,23 hours 35 mins,"2,626 km" +Kansas City,San Francisco,,1 day 2 hours,"2,909 km" +Kansas City,Monterey,,1 day 3 hours,"2,982 km" +San Diego,Kansas City,,23 hours 40 mins,"2,504 km" +Redding,Kansas City,,1 day 2 hours,"2,876 km" +Sacramento,Kansas City,,1 day 1 hour,"2,774 km" +Fresno,Kansas City,,1 day 1 hour,"2,804 km" +San Luis Obispo,Kansas City,,1 day 2 hours,"2,849 km" +Oakland,Kansas City,,1 day 2 hours,"2,903 km" +Santa Barbara,Kansas City,,1 day 1 hour,"2,746 km" +Stockton,Kansas City,,1 day 2 hours,"2,850 km" +Santa Rosa,Kansas City,,1 day 2 hours,"2,929 km" +Bakersfield,Kansas City,,23 hours 30 mins,"2,629 km" +Santa Ana,Kansas City,,23 hours 13 mins,"2,600 km" +Santa Maria,Kansas City,,1 day 1 hour,"2,805 km" +San Jose,Kansas City,,1 day 3 hours,"2,964 km" +Burbank,Kansas City,,23 hours 13 mins,"2,607 km" +Arcata,Kansas City,,1 day 5 hours,"3,100 km" +Butte,Kansas City,,1 day 1 hour,"2,812 km" +Palm Springs,Kansas City,,22 hours 27 mins,"2,366 km" +Los Angeles,Kansas City,,23 hours 12 mins,"2,603 km" +Long Beach,Kansas City,,23 hours 30 mins,"2,630 km" +San Francisco,Kansas City,,1 day 2 hours,"2,913 km" +Monterey,Kansas City,,1 day 3 hours,"2,984 km" +Dallas,State College,,20 hours 15 mins,"2,186 km" +Dallas,Johnstown,,19 hours 11 mins,"2,074 km" +Dallas,Harrisburg,,20 hours 12 mins,"2,224 km" +Dallas,Erie,,18 hours 43 mins,"2,057 km" +Dallas,Pittsburgh,,17 hours 59 mins,"1,964 km" +Dallas,Latrobe,,18 hours 37 mins,"2,011 km" +Dallas,Philadelphia,,21 hours 34 mins,"2,361 km" +Dallas,Lewisburg,,21 hours 2 mins,"2,310 km" +Dallas,Scranton,,21 hours 59 mins,"2,412 km" +State College,Dallas,,20 hours 20 mins,"2,195 km" +Johnstown,Dallas,,19 hours 16 mins,"2,075 km" +Harrisburg,Dallas,,20 hours 16 mins,"2,225 km" +Erie,Dallas,,18 hours 48 mins,"2,059 km" +Pittsburgh,Dallas,,18 hours 4 mins,"1,968 km" +Latrobe,Dallas,,18 hours 39 mins,"2,014 km" +Philadelphia,Dallas,,21 hours 36 mins,"2,361 km" +Lewisburg,Dallas,,21 hours 5 mins,"2,311 km" +Scranton,Dallas,,22 hours 0 mins,"2,412 km" +Asheville,Augusta,,3 hours 18 mins,295 km +Asheville,Decatur,,3 hours 24 mins,312 km +Asheville,Atlanta,,3 hours 24 mins,320 km +Asheville,Valdosta,,6 hours 36 mins,680 km +Asheville,Savannah,,4 hours 42 mins,501 km +Augusta,Asheville,,3 hours 17 mins,294 km +Decatur,Asheville,,3 hours 23 mins,311 km +Atlanta,Asheville,,3 hours 22 mins,319 km +Valdosta,Asheville,,6 hours 32 mins,678 km +Savannah,Asheville,,4 hours 43 mins,500 km +Las Vegas,Seattle,,16 hours 48 mins,"1,793 km" +Las Vegas,Wenatchee,,15 hours 51 mins,"1,672 km" +Las Vegas,Pasco,,, +Las Vegas,Yakima,,14 hours 40 mins,"1,566 km" +Las Vegas,Walla Walla,,13 hours 16 mins,"1,407 km" +Las Vegas,Everett,,17 hours 9 mins,"1,829 km" +Las Vegas,Spokane,,15 hours 42 mins,"1,676 km" +Seattle,Las Vegas,,16 hours 48 mins,"1,793 km" +Wenatchee,Las Vegas,,15 hours 52 mins,"1,673 km" +Pasco,Las Vegas,,, +Yakima,Las Vegas,,14 hours 40 mins,"1,565 km" +Walla Walla,Las Vegas,,13 hours 19 mins,"1,407 km" +Everett,Las Vegas,,17 hours 9 mins,"1,828 km" +Spokane,Las Vegas,,15 hours 44 mins,"1,677 km" +Greer,Greensboro,,2 hours 47 mins,290 km +Greer,Wilmington,,4 hours 42 mins,502 km +Greer,New Bern,,5 hours 40 mins,594 km +Greer,Charlotte,,1 hour 36 mins,150 km +Greer,Raleigh,,3 hours 57 mins,409 km +Greer,Asheville,,1 hour 15 mins,101 km +Greer,Fayetteville,,3 hours 59 mins,434 km +Greensboro,Greer,,2 hours 48 mins,288 km +Wilmington,Greer,,4 hours 44 mins,502 km +New Bern,Greer,,5 hours 40 mins,594 km +Charlotte,Greer,,1 hour 36 mins,147 km +Raleigh,Greer,,3 hours 55 mins,409 km +Asheville,Greer,,1 hour 14 mins,101 km +Fayetteville,Greer,,4 hours 0 mins,432 km +Newark,Sarasota,,17 hours 25 mins,"1,895 km" +Newark,Fort Myers,,18 hours 22 mins,"2,000 km" +Newark,Gainesville,,14 hours 45 mins,"1,605 km" +Newark,Orlando,,15 hours 37 mins,"1,722 km" +Newark,Daytona Beach,,15 hours 0 mins,"1,648 km" +Newark,Jacksonville,,13 hours 34 mins,"1,494 km" +Newark,Tampa,,16 hours 37 mins,"1,810 km" +Newark,Panama City,,17 hours 36 mins,"1,915 km" +Newark,Key West,,21 hours 33 mins,"2,305 km" +Newark,West Palm Beach,,17 hours 33 mins,"1,952 km" +Newark,Miami,,18 hours 33 mins,"2,051 km" +Newark,Tallahassee,,15 hours 58 mins,"1,753 km" +Newark,Punta Gorda,,17 hours 57 mins,"1,965 km" +Newark,Fort Lauderdale,,18 hours 11 mins,"2,020 km" +Newark,Pensacola,,17 hours 46 mins,"1,908 km" +Sarasota,Newark,,17 hours 22 mins,"1,889 km" +Fort Myers,Newark,,18 hours 19 mins,"1,994 km" +Gainesville,Newark,,14 hours 43 mins,"1,599 km" +Orlando,Newark,,15 hours 29 mins,"1,712 km" +Daytona Beach,Newark,,14 hours 54 mins,"1,629 km" +Jacksonville,Newark,,13 hours 32 mins,"1,487 km" +Tampa,Newark,,16 hours 34 mins,"1,804 km" +Panama City,Newark,,17 hours 33 mins,"1,909 km" +Key West,Newark,,21 hours 29 mins,"2,296 km" +West Palm Beach,Newark,,17 hours 26 mins,"1,943 km" +Miami,Newark,,18 hours 25 mins,"2,044 km" +Tallahassee,Newark,,15 hours 56 mins,"1,751 km" +Punta Gorda,Newark,,17 hours 53 mins,"1,958 km" +Fort Lauderdale,Newark,,18 hours 5 mins,"2,011 km" +Pensacola,Newark,,17 hours 40 mins,"1,898 km" +Ithaca,Philadelphia,,3 hours 52 mins,369 km +Philadelphia,Ithaca,,3 hours 54 mins,369 km +Des Moines,Moline,,2 hours 33 mins,277 km +Des Moines,Belleville,,5 hours 47 mins,588 km +Des Moines,Bloomington,,7 hours 46 mins,837 km +Des Moines,Champaign,,5 hours 11 mins,569 km +Des Moines,Chicago,,5 hours 1 min,537 km +Des Moines,Rockford,,4 hours 19 mins,465 km +Des Moines,Peoria,,3 hours 53 mins,425 km +Moline,Des Moines,,2 hours 35 mins,279 km +Belleville,Des Moines,,5 hours 49 mins,590 km +Bloomington,Des Moines,,7 hours 48 mins,838 km +Champaign,Des Moines,,5 hours 21 mins,571 km +Chicago,Des Moines,,4 hours 58 mins,537 km +Rockford,Des Moines,,4 hours 24 mins,463 km +Peoria,Des Moines,,4 hours 1 min,427 km +Charlotte,Hilton Head,,3 hours 49 mins,398 km +Hilton Head,Charlotte,,3 hours 49 mins,397 km +Salt Lake City,New Orleans,,1 day 2 hours,"2,809 km" +New Orleans,Salt Lake City,,1 day 2 hours,"2,815 km" +Orlando,Martha's Vineyard,,20 hours 48 mins,"2,152 km" +Orlando,Hyannis,,19 hours 45 mins,"2,132 km" +Orlando,Boston,,19 hours 1 min,"2,068 km" +Orlando,Nantucket,,22 hours 2 mins,"2,179 km" +Martha's Vineyard,Orlando,,21 hours 4 mins,"2,166 km" +Hyannis,Orlando,,19 hours 55 mins,"2,144 km" +Boston,Orlando,,19 hours 11 mins,"2,081 km" +Nantucket,Orlando,,22 hours 12 mins,"2,195 km" +Medford,Flagstaff,,15 hours 42 mins,"1,599 km" +Medford,Yuma,,14 hours 41 mins,"1,548 km" +Medford,Phoenix,,16 hours 5 mins,"1,710 km" +Medford,Prescott,,15 hours 52 mins,"1,601 km" +Medford,Tucson,,17 hours 36 mins,"1,887 km" +Flagstaff,Medford,,15 hours 37 mins,"1,597 km" +Yuma,Medford,,14 hours 46 mins,"1,547 km" +Phoenix,Medford,,16 hours 7 mins,"1,708 km" +Prescott,Medford,,15 hours 48 mins,"1,599 km" +Tucson,Medford,,17 hours 38 mins,"1,888 km" +Newark,Buffalo,,5 hours 59 mins,585 km +Newark,Manhattan,,39 mins,24.8 km +Newark,Niagara Falls,,6 hours 14 mins,641 km +Newark,Islip,,1 hour 30 mins,112 km +Newark,New York,,32 mins,18.3 km +Newark,Watertown,,4 hours 52 mins,494 km +Newark,Newburgh,,1 hour 17 mins,108 km +Newark,Syracuse,,3 hours 49 mins,382 km +Newark,Plattsburgh,,4 hours 43 mins,496 km +Newark,Ogdensburg,,5 hours 51 mins,587 km +Newark,Ithaca,,3 hours 43 mins,343 km +Newark,Elmira,,3 hours 36 mins,357 km +Newark,White Plains,,57 mins,78.6 km +Newark,Albany,,, +Newark,Binghamton,,2 hours 49 mins,270 km +Newark,Rochester,,5 hours 5 mins,520 km +Buffalo,Newark,,5 hours 54 mins,584 km +Manhattan,Newark,,39 mins,25.4 km +Niagara Falls,Newark,,6 hours 9 mins,642 km +Islip,Newark,,1 hour 30 mins,109 km +New York,Newark,,29 mins,16.3 km +Watertown,Newark,,4 hours 47 mins,495 km +Newburgh,Newark,,1 hour 18 mins,109 km +Syracuse,Newark,,3 hours 44 mins,382 km +Plattsburgh,Newark,,4 hours 43 mins,497 km +Ogdensburg,Newark,,5 hours 46 mins,587 km +Ithaca,Newark,,3 hours 38 mins,343 km +Elmira,Newark,,3 hours 30 mins,356 km +White Plains,Newark,,56 mins,67.6 km +Albany,Newark,,, +Binghamton,Newark,,2 hours 43 mins,269 km +Rochester,Newark,,4 hours 59 mins,521 km +Santa Barbara,Abilene,,19 hours 42 mins,"2,172 km" +Santa Barbara,Amarillo,,16 hours 56 mins,"1,869 km" +Santa Barbara,Harlingen,,1 day 1 hour,"2,738 km" +Santa Barbara,Lubbock,,17 hours 51 mins,"1,923 km" +Santa Barbara,College Station,,23 hours 20 mins,"2,531 km" +Santa Barbara,Corpus Christi,,22 hours 57 mins,"2,563 km" +Santa Barbara,Wichita Falls,,20 hours 13 mins,"2,223 km" +Santa Barbara,Waco,,22 hours 21 mins,"2,433 km" +Santa Barbara,San Angelo,,19 hours 6 mins,"2,094 km" +Santa Barbara,Houston,,23 hours 48 mins,"2,645 km" +Santa Barbara,San Antonio,,20 hours 59 mins,"2,331 km" +Santa Barbara,Del Rio,,19 hours 33 mins,"2,127 km" +Santa Barbara,Mission,,, +Santa Barbara,Beaumont,,, +Santa Barbara,Longview,,1 day 0 hours,"2,671 km" +Santa Barbara,Midland,,17 hours 37 mins,"1,935 km" +Santa Barbara,El Paso,,13 hours 14 mins,"1,445 km" +Santa Barbara,Brownsville,,1 day 1 hour,"2,778 km" +Santa Barbara,Austin,,21 hours 49 mins,"2,371 km" +Santa Barbara,Dallas,,22 hours 16 mins,"2,466 km" +Santa Barbara,Killeen,,21 hours 38 mins,"2,364 km" +Santa Barbara,Laredo,,22 hours 29 mins,"2,417 km" +Santa Barbara,Texarkana,,1 day 1 hour,"2,660 km" +Abilene,Santa Barbara,,19 hours 41 mins,"2,173 km" +Amarillo,Santa Barbara,,16 hours 57 mins,"1,869 km" +Harlingen,Santa Barbara,,1 day 0 hours,"2,739 km" +Lubbock,Santa Barbara,,17 hours 50 mins,"1,923 km" +College Station,Santa Barbara,,23 hours 19 mins,"2,538 km" +Corpus Christi,Santa Barbara,,22 hours 54 mins,"2,563 km" +Wichita Falls,Santa Barbara,,20 hours 14 mins,"2,224 km" +Waco,Santa Barbara,,22 hours 21 mins,"2,434 km" +San Angelo,Santa Barbara,,19 hours 4 mins,"2,094 km" +Houston,Santa Barbara,,23 hours 46 mins,"2,645 km" +San Antonio,Santa Barbara,,20 hours 57 mins,"2,331 km" +Del Rio,Santa Barbara,,19 hours 32 mins,"2,128 km" +Mission,Santa Barbara,,, +Beaumont,Santa Barbara,,, +Longview,Santa Barbara,,1 day 0 hours,"2,671 km" +Midland,Santa Barbara,,17 hours 35 mins,"1,935 km" +El Paso,Santa Barbara,,13 hours 14 mins,"1,445 km" +Brownsville,Santa Barbara,,1 day 1 hour,"2,779 km" +Austin,Santa Barbara,,21 hours 47 mins,"2,372 km" +Dallas,Santa Barbara,,22 hours 15 mins,"2,465 km" +Killeen,Santa Barbara,,21 hours 36 mins,"2,364 km" +Laredo,Santa Barbara,,22 hours 28 mins,"2,417 km" +Texarkana,Santa Barbara,,1 day 1 hour,"2,673 km" +Denver,Great Falls,,11 hours 23 mins,"1,242 km" +Great Falls,Denver,,11 hours 15 mins,"1,239 km" +Charlotte,San Diego,,1 day 10 hours,"3,840 km" +Charlotte,Redding,,1 day 16 hours,"4,414 km" +Charlotte,Sacramento,,1 day 15 hours,"4,311 km" +Charlotte,Fresno,,1 day 13 hours,"4,081 km" +Charlotte,San Luis Obispo,,1 day 14 hours,"4,124 km" +Charlotte,Oakland,,1 day 15 hours,"4,342 km" +Charlotte,Santa Barbara,,1 day 13 hours,"4,023 km" +Charlotte,Stockton,,1 day 15 hours,"4,281 km" +Charlotte,Santa Rosa,,1 day 16 hours,"4,435 km" +Charlotte,Bakersfield,,1 day 11 hours,"3,905 km" +Charlotte,Santa Ana,,1 day 11 hours,"3,881 km" +Charlotte,Santa Maria,,1 day 13 hours,"4,080 km" +Charlotte,San Jose,,1 day 15 hours,"4,293 km" +Charlotte,Burbank,,1 day 11 hours,"3,890 km" +Charlotte,Arcata,,1 day 19 hours,"4,638 km" +Charlotte,Butte,,1 day 16 hours,"4,350 km" +Charlotte,Palm Springs,,1 day 10 hours,"3,716 km" +Charlotte,Los Angeles,,1 day 11 hours,"3,881 km" +Charlotte,Long Beach,,1 day 11 hours,"3,903 km" +Charlotte,San Francisco,,1 day 16 hours,"4,361 km" +Charlotte,Monterey,,1 day 15 hours,"4,259 km" +San Diego,Charlotte,,1 day 10 hours,"3,836 km" +Redding,Charlotte,,1 day 16 hours,"4,422 km" +Sacramento,Charlotte,,1 day 15 hours,"4,320 km" +Fresno,Charlotte,,1 day 13 hours,"4,082 km" +San Luis Obispo,Charlotte,,1 day 14 hours,"4,127 km" +Oakland,Charlotte,,1 day 16 hours,"4,346 km" +Santa Barbara,Charlotte,,1 day 12 hours,"4,024 km" +Stockton,Charlotte,,1 day 15 hours,"4,282 km" +Santa Rosa,Charlotte,,1 day 16 hours,"4,438 km" +Bakersfield,Charlotte,,1 day 11 hours,"3,907 km" +Santa Ana,Charlotte,,1 day 11 hours,"3,878 km" +Santa Maria,Charlotte,,1 day 13 hours,"4,083 km" +San Jose,Charlotte,,1 day 15 hours,"4,296 km" +Burbank,Charlotte,,1 day 11 hours,"3,885 km" +Arcata,Charlotte,,1 day 19 hours,"4,646 km" +Butte,Charlotte,,1 day 16 hours,"4,359 km" +Palm Springs,Charlotte,,1 day 10 hours,"3,717 km" +Los Angeles,Charlotte,,1 day 11 hours,"3,881 km" +Long Beach,Charlotte,,1 day 11 hours,"3,908 km" +San Francisco,Charlotte,,1 day 16 hours,"4,364 km" +Monterey,Charlotte,,1 day 15 hours,"4,262 km" +Knoxville,Bemidji,,17 hours 25 mins,"1,873 km" +Knoxville,Minneapolis,,13 hours 58 mins,"1,529 km" +Knoxville,Duluth,,14 hours 55 mins,"1,624 km" +Knoxville,Brainerd,,15 hours 54 mins,"1,729 km" +Knoxville,Gustavus,,14 hours 24 mins,"1,575 km" +Knoxville,St. Cloud,,14 hours 54 mins,"1,632 km" +Knoxville,Hibbing,,16 hours 12 mins,"1,744 km" +Knoxville,International Falls,,17 hours 36 mins,"1,885 km" +Bemidji,Knoxville,,17 hours 22 mins,"1,873 km" +Minneapolis,Knoxville,,13 hours 55 mins,"1,527 km" +Duluth,Knoxville,,14 hours 54 mins,"1,624 km" +Brainerd,Knoxville,,15 hours 53 mins,"1,730 km" +Gustavus,Knoxville,,14 hours 23 mins,"1,573 km" +St. Cloud,Knoxville,,14 hours 53 mins,"1,632 km" +Hibbing,Knoxville,,16 hours 11 mins,"1,744 km" +International Falls,Knoxville,,17 hours 35 mins,"1,885 km" +Grand Junction,Abilene,,13 hours 48 mins,"1,363 km" +Grand Junction,Amarillo,,9 hours 40 mins,915 km +Grand Junction,Harlingen,,20 hours 43 mins,"2,127 km" +Grand Junction,Lubbock,,11 hours 23 mins,"1,099 km" +Grand Junction,College Station,,17 hours 19 mins,"1,739 km" +Grand Junction,Corpus Christi,,19 hours 5 mins,"1,952 km" +Grand Junction,Wichita Falls,,13 hours 5 mins,"1,276 km" +Grand Junction,Waco,,16 hours 1 min,"1,604 km" +Grand Junction,San Angelo,,14 hours 11 mins,"1,394 km" +Grand Junction,Houston,,18 hours 27 mins,"1,879 km" +Grand Junction,San Antonio,,17 hours 7 mins,"1,719 km" +Grand Junction,Del Rio,,16 hours 37 mins,"1,583 km" +Grand Junction,Mission,,, +Grand Junction,Beaumont,,, +Grand Junction,Longview,,16 hours 59 mins,"1,703 km" +Grand Junction,Midland,,13 hours 6 mins,"1,259 km" +Grand Junction,El Paso,,10 hours 48 mins,"1,040 km" +Grand Junction,Brownsville,,21 hours 5 mins,"2,167 km" +Grand Junction,Austin,,17 hours 14 mins,"1,699 km" +Grand Junction,Dallas,,15 hours 7 mins,"1,503 km" +Grand Junction,Killeen,,16 hours 35 mins,"1,636 km" +Grand Junction,Laredo,,19 hours 14 mins,"1,909 km" +Grand Junction,Texarkana,,17 hours 25 mins,"1,712 km" +Abilene,Grand Junction,,13 hours 44 mins,"1,347 km" +Amarillo,Grand Junction,,9 hours 36 mins,915 km +Harlingen,Grand Junction,,20 hours 34 mins,"2,112 km" +Lubbock,Grand Junction,,11 hours 22 mins,"1,098 km" +College Station,Grand Junction,,17 hours 14 mins,"1,736 km" +Corpus Christi,Grand Junction,,18 hours 58 mins,"1,936 km" +Wichita Falls,Grand Junction,,13 hours 2 mins,"1,274 km" +Waco,Grand Junction,,15 hours 58 mins,"1,598 km" +San Angelo,Grand Junction,,14 hours 9 mins,"1,412 km" +Houston,Grand Junction,,18 hours 24 mins,"1,877 km" +San Antonio,Grand Junction,,17 hours 2 mins,"1,703 km" +Del Rio,Grand Junction,,16 hours 35 mins,"1,573 km" +Mission,Grand Junction,,, +Beaumont,Grand Junction,,, +Longview,Grand Junction,,16 hours 54 mins,"1,707 km" +Midland,Grand Junction,,13 hours 4 mins,"1,257 km" +El Paso,Grand Junction,,10 hours 46 mins,"1,040 km" +Brownsville,Grand Junction,,20 hours 58 mins,"2,152 km" +Austin,Grand Junction,,17 hours 11 mins,"1,684 km" +Dallas,Grand Junction,,15 hours 3 mins,"1,500 km" +Killeen,Grand Junction,,16 hours 32 mins,"1,621 km" +Laredo,Grand Junction,,19 hours 11 mins,"1,894 km" +Texarkana,Grand Junction,,17 hours 30 mins,"1,723 km" +Denver,Helena,,11 hours 24 mins,"1,275 km" +Denver,Billings,,7 hours 54 mins,893 km +Denver,Missoula,,12 hours 43 mins,"1,443 km" +Denver,Kalispell,,14 hours 41 mins,"1,613 km" +Denver,Great Falls,,11 hours 23 mins,"1,242 km" +Denver,Bozeman,,9 hours 54 mins,"1,119 km" +Denver,West Yellowstone,,10 hours 14 mins,"1,027 km" +Helena,Denver,,11 hours 17 mins,"1,272 km" +Billings,Denver,,7 hours 46 mins,887 km +Missoula,Denver,,12 hours 36 mins,"1,439 km" +Kalispell,Denver,,14 hours 34 mins,"1,582 km" +Great Falls,Denver,,11 hours 15 mins,"1,239 km" +Bozeman,Denver,,9 hours 46 mins,"1,115 km" +West Yellowstone,Denver,,10 hours 13 mins,"1,023 km" +Denver,Palm Springs,,15 hours 3 mins,"1,651 km" +Palm Springs,Denver,,14 hours 58 mins,"1,649 km" +Charleston,Augusta,,2 hours 53 mins,243 km +Charleston,Decatur,,4 hours 53 mins,476 km +Charleston,Atlanta,,4 hours 46 mins,481 km +Charleston,Valdosta,,4 hours 51 mins,458 km +Charleston,Savannah,,2 hours 1 min,174 km +Augusta,Charleston,,2 hours 53 mins,242 km +Decatur,Charleston,,4 hours 50 mins,485 km +Atlanta,Charleston,,4 hours 45 mins,491 km +Valdosta,Charleston,,4 hours 51 mins,458 km +Savannah,Charleston,,1 hour 59 mins,172 km +Detroit,Green Bay,,7 hours 22 mins,785 km +Detroit,Rhinelander,,8 hours 47 mins,912 km +Detroit,Marquette,,5 hours 40 mins,602 km +Detroit,Madison,,6 hours 32 mins,698 km +Detroit,La Crosse,,8 hours 23 mins,915 km +Detroit,Devils Lake,,7 hours 11 mins,763 km +Detroit,Appleton,,7 hours 11 mins,766 km +Detroit,Mosinee,,8 hours 7 mins,894 km +Detroit,Milwaukee,,5 hours 41 mins,600 km +Detroit,Eau Claire,,8 hours 53 mins,972 km +Green Bay,Detroit,,7 hours 21 mins,798 km +Rhinelander,Detroit,,8 hours 48 mins,912 km +Marquette,Detroit,,5 hours 39 mins,613 km +Madison,Detroit,,6 hours 25 mins,696 km +La Crosse,Detroit,,8 hours 18 mins,912 km +Devils Lake,Detroit,,7 hours 8 mins,760 km +Appleton,Detroit,,7 hours 9 mins,779 km +Mosinee,Detroit,,8 hours 2 mins,892 km +Milwaukee,Detroit,,5 hours 40 mins,614 km +Eau Claire,Detroit,,8 hours 48 mins,970 km +Des Moines,Pellston,,10 hours 33 mins,"1,121 km" +Des Moines,Traverse City,,9 hours 27 mins,"1,024 km" +Des Moines,Alpena,,11 hours 6 mins,"1,179 km" +Des Moines,Iron Mountain,,, +Des Moines,Kalamazoo,,6 hours 55 mins,746 km +Des Moines,Saginaw,,9 hours 7 mins,981 km +Des Moines,Grand Rapids,,7 hours 21 mins,795 km +Des Moines,Lansing,,7 hours 56 mins,861 km +Des Moines,Muskegon,,7 hours 37 mins,810 km +Des Moines,Hancock,,, +Des Moines,Detroit,,8 hours 49 mins,964 km +Des Moines,Escanaba,,8 hours 23 mins,870 km +Pellston,Des Moines,,10 hours 35 mins,"1,121 km" +Traverse City,Des Moines,,9 hours 30 mins,"1,025 km" +Alpena,Des Moines,,11 hours 4 mins,"1,177 km" +Iron Mountain,Des Moines,,, +Kalamazoo,Des Moines,,6 hours 57 mins,746 km +Saginaw,Des Moines,,9 hours 4 mins,978 km +Grand Rapids,Des Moines,,7 hours 20 mins,798 km +Lansing,Des Moines,,7 hours 57 mins,861 km +Muskegon,Des Moines,,7 hours 43 mins,810 km +Hancock,Des Moines,,, +Detroit,Des Moines,,8 hours 53 mins,965 km +Escanaba,Des Moines,,8 hours 31 mins,861 km +Salt Lake City,Helena,,6 hours 53 mins,778 km +Salt Lake City,Billings,,8 hours 20 mins,883 km +Salt Lake City,Missoula,,7 hours 19 mins,844 km +Salt Lake City,Kalispell,,9 hours 17 mins,"1,014 km" +Salt Lake City,Great Falls,,8 hours 7 mins,918 km +Salt Lake City,Bozeman,,6 hours 17 mins,658 km +Salt Lake City,West Yellowstone,,4 hours 37 mins,515 km +Helena,Salt Lake City,,6 hours 52 mins,778 km +Billings,Salt Lake City,,8 hours 27 mins,888 km +Missoula,Salt Lake City,,7 hours 20 mins,843 km +Kalispell,Salt Lake City,,9 hours 18 mins,"1,014 km" +Great Falls,Salt Lake City,,8 hours 7 mins,919 km +Bozeman,Salt Lake City,,6 hours 20 mins,660 km +West Yellowstone,Salt Lake City,,4 hours 39 mins,516 km +Dallas,Tallahassee,,12 hours 22 mins,"1,338 km" +Tallahassee,Dallas,,12 hours 20 mins,"1,341 km" +Minneapolis,San Diego,,1 day 5 hours,"3,198 km" +San Diego,Minneapolis,,1 day 5 hours,"3,197 km" +Charleston,New York,,11 hours 26 mins,"1,220 km" +New York,Charleston,,11 hours 29 mins,"1,228 km" +Grand Forks,Minneapolis,,4 hours 37 mins,507 km +Minneapolis,Grand Forks,,4 hours 37 mins,507 km +Belleville,Las Vegas,,23 hours 16 mins,"2,595 km" +Las Vegas,Belleville,,23 hours 10 mins,"2,594 km" +Norfolk,Baltimore,,3 hours 56 mins,378 km +Baltimore,Norfolk,,3 hours 51 mins,386 km +San Antonio,Moline,,16 hours 54 mins,"1,893 km" +San Antonio,Belleville,,14 hours 0 mins,"1,481 km" +San Antonio,Bloomington,,16 hours 40 mins,"1,839 km" +San Antonio,Champaign,,16 hours 7 mins,"1,783 km" +San Antonio,Chicago,,18 hours 4 mins,"1,997 km" +San Antonio,Rockford,,17 hours 59 mins,"1,927 km" +San Antonio,Peoria,,16 hours 6 mins,"1,723 km" +Moline,San Antonio,,16 hours 58 mins,"1,898 km" +Belleville,San Antonio,,14 hours 4 mins,"1,481 km" +Bloomington,San Antonio,,16 hours 47 mins,"1,826 km" +Champaign,San Antonio,,16 hours 14 mins,"1,771 km" +Chicago,San Antonio,,18 hours 4 mins,"1,930 km" +Rockford,San Antonio,,17 hours 59 mins,"1,925 km" +Peoria,San Antonio,,16 hours 7 mins,"1,723 km" +Miami,Greensboro,,11 hours 36 mins,"1,292 km" +Miami,Wilmington,,11 hours 11 mins,"1,259 km" +Miami,New Bern,,12 hours 26 mins,"1,394 km" +Miami,Charlotte,,10 hours 26 mins,"1,174 km" +Miami,Raleigh,,11 hours 23 mins,"1,287 km" +Miami,Asheville,,11 hours 21 mins,"1,269 km" +Miami,Fayetteville,,10 hours 29 mins,"1,191 km" +Greensboro,Miami,,11 hours 42 mins,"1,278 km" +Wilmington,Miami,,11 hours 17 mins,"1,260 km" +New Bern,Miami,,12 hours 32 mins,"1,393 km" +Charlotte,Miami,,10 hours 30 mins,"1,174 km" +Raleigh,Miami,,11 hours 30 mins,"1,288 km" +Asheville,Miami,,11 hours 24 mins,"1,268 km" +Fayetteville,Miami,,10 hours 34 mins,"1,190 km" +Asheville,Baltimore,,7 hours 43 mins,819 km +Baltimore,Asheville,,7 hours 42 mins,819 km +Myrtle Beach,Martha's Vineyard,,15 hours 22 mins,"1,484 km" +Myrtle Beach,Hyannis,,14 hours 19 mins,"1,464 km" +Myrtle Beach,Boston,,13 hours 36 mins,"1,400 km" +Myrtle Beach,Nantucket,,16 hours 36 mins,"1,511 km" +Martha's Vineyard,Myrtle Beach,,15 hours 35 mins,"1,496 km" +Hyannis,Myrtle Beach,,14 hours 27 mins,"1,473 km" +Boston,Myrtle Beach,,13 hours 42 mins,"1,411 km" +Nantucket,Myrtle Beach,,16 hours 44 mins,"1,524 km" +Kahului,San Diego,,, +Kahului,Redding,,, +Kahului,Sacramento,,, +Kahului,Fresno,,, +Kahului,San Luis Obispo,,, +Kahului,Oakland,,, +Kahului,Santa Barbara,,, +Kahului,Stockton,,, +Kahului,Santa Rosa,,, +Kahului,Bakersfield,,, +Kahului,Santa Ana,,, +Kahului,Santa Maria,,, +Kahului,San Jose,,, +Kahului,Burbank,,, +Kahului,Arcata,,, +Kahului,Butte,,, +Kahului,Palm Springs,,, +Kahului,Los Angeles,,, +Kahului,Long Beach,,, +Kahului,San Francisco,,, +Kahului,Monterey,,, +San Diego,Kahului,,, +Redding,Kahului,,, +Sacramento,Kahului,,, +Fresno,Kahului,,, +San Luis Obispo,Kahului,,, +Oakland,Kahului,,, +Santa Barbara,Kahului,,, +Stockton,Kahului,,, +Santa Rosa,Kahului,,, +Bakersfield,Kahului,,, +Santa Ana,Kahului,,, +Santa Maria,Kahului,,, +San Jose,Kahului,,, +Burbank,Kahului,,, +Arcata,Kahului,,, +Butte,Kahului,,, +Palm Springs,Kahului,,, +Los Angeles,Kahului,,, +Long Beach,Kahului,,, +San Francisco,Kahului,,, +Monterey,Kahului,,, +Houston,Sarasota,,14 hours 44 mins,"1,662 km" +Houston,Fort Myers,,15 hours 42 mins,"1,768 km" +Houston,Gainesville,,12 hours 21 mins,"1,378 km" +Houston,Orlando,,13 hours 45 mins,"1,550 km" +Houston,Daytona Beach,,13 hours 49 mins,"1,550 km" +Houston,Jacksonville,,12 hours 25 mins,"1,400 km" +Houston,Tampa,,13 hours 57 mins,"1,578 km" +Houston,Panama City,,9 hours 44 mins,"1,048 km" +Houston,Key West,,19 hours 56 mins,"2,164 km" +Houston,West Palm Beach,,15 hours 58 mins,"1,806 km" +Houston,Miami,,16 hours 56 mins,"1,911 km" +Houston,Tallahassee,,10 hours 16 mins,"1,141 km" +Houston,Punta Gorda,,15 hours 16 mins,"1,732 km" +Houston,Fort Lauderdale,,16 hours 35 mins,"1,874 km" +Houston,Pensacola,,7 hours 38 mins,845 km +Sarasota,Houston,,14 hours 44 mins,"1,663 km" +Fort Myers,Houston,,15 hours 41 mins,"1,769 km" +Gainesville,Houston,,12 hours 19 mins,"1,378 km" +Orlando,Houston,,13 hours 41 mins,"1,549 km" +Daytona Beach,Houston,,13 hours 47 mins,"1,541 km" +Jacksonville,Houston,,12 hours 27 mins,"1,401 km" +Tampa,Houston,,13 hours 55 mins,"1,578 km" +Panama City,Houston,,9 hours 42 mins,"1,048 km" +Key West,Houston,,19 hours 57 mins,"2,164 km" +West Palm Beach,Houston,,15 hours 56 mins,"1,807 km" +Miami,Houston,,16 hours 53 mins,"1,913 km" +Tallahassee,Houston,,10 hours 15 mins,"1,142 km" +Punta Gorda,Houston,,15 hours 15 mins,"1,733 km" +Fort Lauderdale,Houston,,16 hours 34 mins,"1,875 km" +Pensacola,Houston,,7 hours 37 mins,845 km +Denver,Kansas City,,8 hours 35 mins,973 km +Kansas City,Denver,,8 hours 39 mins,970 km +Daytona Beach,Abilene,,18 hours 27 mins,"2,028 km" +Daytona Beach,Amarillo,,21 hours 18 mins,"2,327 km" +Daytona Beach,Harlingen,,18 hours 39 mins,"2,068 km" +Daytona Beach,Lubbock,,20 hours 51 mins,"2,293 km" +Daytona Beach,College Station,,15 hours 11 mins,"1,664 km" +Daytona Beach,Corpus Christi,,16 hours 54 mins,"1,874 km" +Daytona Beach,Wichita Falls,,17 hours 53 mins,"1,966 km" +Daytona Beach,Waco,,16 hours 31 mins,"1,796 km" +Daytona Beach,San Angelo,,19 hours 29 mins,"2,124 km" +Daytona Beach,Houston,,13 hours 47 mins,"1,541 km" +Daytona Beach,San Antonio,,16 hours 39 mins,"1,854 km" +Daytona Beach,Del Rio,,19 hours 3 mins,"2,101 km" +Daytona Beach,Mission,,, +Daytona Beach,Beaumont,,, +Daytona Beach,Longview,,14 hours 11 mins,"1,544 km" +Daytona Beach,Midland,,20 hours 35 mins,"2,269 km" +Daytona Beach,El Paso,,1 day 0 hours,"2,739 km" +Daytona Beach,Brownsville,,19 hours 1 min,"2,108 km" +Daytona Beach,Austin,,16 hours 15 mins,"1,804 km" +Daytona Beach,Dallas,,15 hours 52 mins,"1,740 km" +Daytona Beach,Killeen,,16 hours 50 mins,"1,859 km" +Daytona Beach,Laredo,,18 hours 46 mins,"2,046 km" +Daytona Beach,Texarkana,,14 hours 13 mins,"1,555 km" +Abilene,Daytona Beach,,18 hours 30 mins,"2,038 km" +Amarillo,Daytona Beach,,21 hours 20 mins,"2,330 km" +Harlingen,Daytona Beach,,18 hours 37 mins,"2,078 km" +Lubbock,Daytona Beach,,20 hours 49 mins,"2,303 km" +College Station,Daytona Beach,,15 hours 11 mins,"1,698 km" +Corpus Christi,Daytona Beach,,16 hours 59 mins,"1,888 km" +Wichita Falls,Daytona Beach,,17 hours 58 mins,"1,967 km" +Waco,Daytona Beach,,16 hours 32 mins,"1,805 km" +San Angelo,Daytona Beach,,19 hours 31 mins,"2,134 km" +Houston,Daytona Beach,,13 hours 49 mins,"1,550 km" +San Antonio,Daytona Beach,,16 hours 41 mins,"1,864 km" +Del Rio,Daytona Beach,,19 hours 7 mins,"2,111 km" +Mission,Daytona Beach,,, +Beaumont,Daytona Beach,,, +Longview,Daytona Beach,,14 hours 11 mins,"1,548 km" +Midland,Daytona Beach,,20 hours 35 mins,"2,278 km" +El Paso,Daytona Beach,,1 day 0 hours,"2,749 km" +Brownsville,Daytona Beach,,19 hours 1 min,"2,118 km" +Austin,Daytona Beach,,16 hours 16 mins,"1,813 km" +Dallas,Daytona Beach,,15 hours 55 mins,"1,747 km" +Killeen,Daytona Beach,,16 hours 51 mins,"1,862 km" +Laredo,Daytona Beach,,18 hours 45 mins,"2,056 km" +Texarkana,Daytona Beach,,14 hours 16 mins,"1,566 km" +Boise,Salt Lake City,,4 hours 53 mins,546 km +Boise,Moab,,8 hours 28 mins,919 km +Boise,Ogden,,4 hours 24 mins,490 km +Boise,Vernal,,7 hours 43 mins,820 km +Boise,Provo,,5 hours 31 mins,615 km +Boise,Cedar City,,8 hours 18 mins,948 km +Salt Lake City,Boise,,4 hours 51 mins,546 km +Moab,Boise,,8 hours 26 mins,918 km +Ogden,Boise,,4 hours 22 mins,490 km +Vernal,Boise,,7 hours 44 mins,820 km +Provo,Boise,,5 hours 29 mins,614 km +Cedar City,Boise,,8 hours 16 mins,947 km +Spokane,Oakland,,13 hours 55 mins,"1,399 km" +Oakland,Spokane,,13 hours 49 mins,"1,399 km" +Providence,Sarasota,,20 hours 30 mins,"2,197 km" +Providence,Fort Myers,,21 hours 28 mins,"2,303 km" +Providence,Gainesville,,17 hours 50 mins,"1,907 km" +Providence,Orlando,,18 hours 43 mins,"2,025 km" +Providence,Daytona Beach,,18 hours 6 mins,"1,950 km" +Providence,Jacksonville,,16 hours 40 mins,"1,797 km" +Providence,Tampa,,19 hours 43 mins,"2,113 km" +Providence,Panama City,,20 hours 42 mins,"2,217 km" +Providence,Key West,,1 day 1 hour,"2,607 km" +Providence,West Palm Beach,,20 hours 39 mins,"2,255 km" +Providence,Miami,,21 hours 39 mins,"2,354 km" +Providence,Tallahassee,,19 hours 3 mins,"2,056 km" +Providence,Punta Gorda,,21 hours 2 mins,"2,267 km" +Providence,Fort Lauderdale,,21 hours 16 mins,"2,323 km" +Providence,Pensacola,,20 hours 52 mins,"2,210 km" +Sarasota,Providence,,20 hours 25 mins,"2,192 km" +Fort Myers,Providence,,21 hours 22 mins,"2,297 km" +Gainesville,Providence,,17 hours 47 mins,"1,902 km" +Orlando,Providence,,18 hours 32 mins,"2,015 km" +Daytona Beach,Providence,,17 hours 58 mins,"1,932 km" +Jacksonville,Providence,,16 hours 35 mins,"1,790 km" +Tampa,Providence,,19 hours 37 mins,"2,107 km" +Panama City,Providence,,20 hours 36 mins,"2,213 km" +Key West,Providence,,1 day 1 hour,"2,599 km" +West Palm Beach,Providence,,20 hours 30 mins,"2,246 km" +Miami,Providence,,21 hours 29 mins,"2,347 km" +Tallahassee,Providence,,19 hours 0 mins,"2,055 km" +Punta Gorda,Providence,,20 hours 57 mins,"2,261 km" +Fort Lauderdale,Providence,,21 hours 8 mins,"2,314 km" +Pensacola,Providence,,20 hours 44 mins,"2,202 km" +Atlanta,Cedar Rapids,,12 hours 26 mins,"1,349 km" +Atlanta,Sioux City,,15 hours 41 mins,"1,735 km" +Atlanta,Dubuque,,12 hours 40 mins,"1,380 km" +Atlanta,Des Moines,,13 hours 32 mins,"1,455 km" +Atlanta,Fort Dodge,,14 hours 40 mins,"1,592 km" +Atlanta,Mason City,,14 hours 34 mins,"1,565 km" +Cedar Rapids,Atlanta,,12 hours 26 mins,"1,345 km" +Sioux City,Atlanta,,15 hours 44 mins,"1,734 km" +Dubuque,Atlanta,,12 hours 42 mins,"1,379 km" +Des Moines,Atlanta,,13 hours 31 mins,"1,451 km" +Fort Dodge,Atlanta,,14 hours 40 mins,"1,588 km" +Mason City,Atlanta,,14 hours 33 mins,"1,566 km" +Kansas City,Charleston,,16 hours 19 mins,"1,776 km" +Charleston,Kansas City,,16 hours 19 mins,"1,775 km" +Tampa,Cleveland,,16 hours 15 mins,"1,760 km" +Cleveland,Tampa,,16 hours 12 mins,"1,758 km" +Nashville,Flagstaff,,22 hours 4 mins,"2,478 km" +Nashville,Yuma,,1 day 2 hours,"2,926 km" +Nashville,Phoenix,,23 hours 51 mins,"2,632 km" +Nashville,Prescott,,23 hours 36 mins,"2,628 km" +Nashville,Tucson,,23 hours 24 mins,"2,603 km" +Flagstaff,Nashville,,21 hours 59 mins,"2,477 km" +Yuma,Nashville,,1 day 2 hours,"2,925 km" +Phoenix,Nashville,,23 hours 49 mins,"2,633 km" +Prescott,Nashville,,23 hours 30 mins,"2,629 km" +Tucson,Nashville,,23 hours 22 mins,"2,604 km" +Appleton,Charlotte,,14 hours 27 mins,"1,534 km" +Charlotte,Appleton,,14 hours 32 mins,"1,536 km" +Orlando,Greensboro,,8 hours 39 mins,960 km +Orlando,Wilmington,,8 hours 15 mins,927 km +Orlando,New Bern,,9 hours 30 mins,"1,062 km" +Orlando,Charlotte,,7 hours 30 mins,843 km +Orlando,Raleigh,,8 hours 26 mins,955 km +Orlando,Asheville,,8 hours 25 mins,937 km +Orlando,Fayetteville,,7 hours 32 mins,859 km +Greensboro,Orlando,,8 hours 46 mins,949 km +Wilmington,Orlando,,8 hours 21 mins,931 km +New Bern,Orlando,,9 hours 37 mins,"1,064 km" +Charlotte,Orlando,,7 hours 34 mins,845 km +Raleigh,Orlando,,8 hours 34 mins,959 km +Asheville,Orlando,,8 hours 28 mins,939 km +Fayetteville,Orlando,,7 hours 38 mins,861 km +Fort Smith,Abilene,,6 hours 45 mins,749 km +Fort Smith,Amarillo,,6 hours 23 mins,708 km +Fort Smith,Harlingen,,11 hours 49 mins,"1,283 km" +Fort Smith,Lubbock,,7 hours 38 mins,839 km +Fort Smith,College Station,,6 hours 59 mins,734 km +Fort Smith,Corpus Christi,,10 hours 11 mins,"1,108 km" +Fort Smith,Wichita Falls,,4 hours 31 mins,505 km +Fort Smith,Waco,,5 hours 44 mins,601 km +Fort Smith,San Angelo,,8 hours 1 min,883 km +Fort Smith,Houston,,7 hours 39 mins,828 km +Fort Smith,San Antonio,,8 hours 20 mins,886 km +Fort Smith,Del Rio,,10 hours 26 mins,"1,136 km" +Fort Smith,Mission,,, +Fort Smith,Beaumont,,, +Fort Smith,Longview,,4 hours 21 mins,390 km +Fort Smith,Midland,,8 hours 36 mins,950 km +Fort Smith,El Paso,,12 hours 55 mins,"1,440 km" +Fort Smith,Brownsville,,12 hours 11 mins,"1,323 km" +Fort Smith,Austin,,7 hours 8 mins,760 km +Fort Smith,Dallas,,4 hours 19 mins,447 km +Fort Smith,Killeen,,6 hours 32 mins,694 km +Fort Smith,Laredo,,10 hours 36 mins,"1,137 km" +Fort Smith,Texarkana,,3 hours 32 mins,296 km +Abilene,Fort Smith,,6 hours 44 mins,748 km +Amarillo,Fort Smith,,6 hours 20 mins,707 km +Harlingen,Fort Smith,,11 hours 41 mins,"1,282 km" +Lubbock,Fort Smith,,7 hours 33 mins,838 km +College Station,Fort Smith,,6 hours 54 mins,733 km +Corpus Christi,Fort Smith,,10 hours 5 mins,"1,106 km" +Wichita Falls,Fort Smith,,4 hours 28 mins,504 km +Waco,Fort Smith,,5 hours 40 mins,597 km +San Angelo,Fort Smith,,7 hours 58 mins,882 km +Houston,Fort Smith,,7 hours 36 mins,827 km +San Antonio,Fort Smith,,8 hours 16 mins,885 km +Del Rio,Fort Smith,,10 hours 21 mins,"1,135 km" +Mission,Fort Smith,,, +Beaumont,Fort Smith,,, +Longview,Fort Smith,,4 hours 22 mins,390 km +Midland,Fort Smith,,8 hours 34 mins,951 km +El Paso,Fort Smith,,12 hours 53 mins,"1,404 km" +Brownsville,Fort Smith,,12 hours 4 mins,"1,322 km" +Austin,Fort Smith,,7 hours 5 mins,759 km +Dallas,Fort Smith,,4 hours 18 mins,446 km +Killeen,Fort Smith,,6 hours 30 mins,694 km +Laredo,Fort Smith,,10 hours 33 mins,"1,136 km" +Texarkana,Fort Smith,,3 hours 33 mins,296 km +Cincinnati,Charleston,,9 hours 20 mins,"1,000 km" +Cincinnati,Hilton Head,,9 hours 57 mins,"1,061 km" +Cincinnati,Greer,,6 hours 28 mins,670 km +Cincinnati,Greenville,,6 hours 29 mins,671 km +Cincinnati,Myrtle Beach,,10 hours 11 mins,"1,062 km" +Charleston,Cincinnati,,9 hours 23 mins,"1,000 km" +Hilton Head,Cincinnati,,9 hours 59 mins,"1,061 km" +Greer,Cincinnati,,6 hours 30 mins,669 km +Greenville,Cincinnati,,6 hours 30 mins,669 km +Myrtle Beach,Cincinnati,,10 hours 12 mins,"1,061 km" +Bozeman,Los Angeles,,16 hours 8 mins,"1,764 km" +Los Angeles,Bozeman,,16 hours 3 mins,"1,762 km" +Pittsburgh,Kansas City,,12 hours 31 mins,"1,354 km" +Pittsburgh,Cape Girardeau,,10 hours 4 mins,"1,065 km" +Pittsburgh,Branson,,12 hours 44 mins,"1,372 km" +Pittsburgh,Fort Leonard Wood,,11 hours 14 mins,"1,191 km" +Pittsburgh,St. Louis,,9 hours 2 mins,968 km +Kansas City,Pittsburgh,,12 hours 32 mins,"1,354 km" +Cape Girardeau,Pittsburgh,,10 hours 4 mins,"1,064 km" +Branson,Pittsburgh,,12 hours 45 mins,"1,371 km" +Fort Leonard Wood,Pittsburgh,,11 hours 14 mins,"1,190 km" +St. Louis,Pittsburgh,,9 hours 3 mins,969 km +Atlanta,Chicago,,10 hours 44 mins,"1,154 km" +Chicago,Atlanta,,10 hours 44 mins,"1,153 km" +Jacksonville,Norfolk,,8 hours 53 mins,986 km +Norfolk,Jacksonville,,8 hours 54 mins,986 km +Peoria,Nashville,,6 hours 38 mins,716 km +Peoria,Bristol,,, +Peoria,Knoxville,,8 hours 18 mins,912 km +Peoria,Chattanooga,,8 hours 31 mins,925 km +Peoria,Memphis,,6 hours 32 mins,725 km +Nashville,Peoria,,6 hours 34 mins,717 km +Bristol,Peoria,,, +Knoxville,Peoria,,8 hours 18 mins,913 km +Chattanooga,Peoria,,8 hours 30 mins,927 km +Memphis,Peoria,,6 hours 31 mins,725 km +New York,Minneapolis,,18 hours 2 mins,"1,927 km" +Minneapolis,New York,,17 hours 57 mins,"1,934 km" +Fort Myers,Trenton,,17 hours 36 mins,"1,917 km" +Trenton,Fort Myers,,17 hours 39 mins,"1,922 km" +Myrtle Beach,State College,,9 hours 55 mins,"1,026 km" +Myrtle Beach,Johnstown,,9 hours 29 mins,967 km +Myrtle Beach,Harrisburg,,8 hours 27 mins,872 km +Myrtle Beach,Erie,,11 hours 33 mins,"1,177 km" +Myrtle Beach,Pittsburgh,,9 hours 49 mins,982 km +Myrtle Beach,Latrobe,,9 hours 55 mins,997 km +Myrtle Beach,Philadelphia,,8 hours 54 mins,919 km +Myrtle Beach,Lewisburg,,9 hours 35 mins,971 km +Myrtle Beach,Scranton,,10 hours 18 mins,"1,069 km" +State College,Myrtle Beach,,10 hours 4 mins,"1,035 km" +Johnstown,Myrtle Beach,,9 hours 38 mins,970 km +Harrisburg,Myrtle Beach,,8 hours 38 mins,874 km +Erie,Myrtle Beach,,11 hours 38 mins,"1,179 km" +Pittsburgh,Myrtle Beach,,9 hours 51 mins,984 km +Latrobe,Myrtle Beach,,10 hours 2 mins,970 km +Philadelphia,Myrtle Beach,,9 hours 0 mins,926 km +Lewisburg,Myrtle Beach,,9 hours 46 mins,978 km +Scranton,Myrtle Beach,,10 hours 29 mins,"1,072 km" +Savannah,Evansville,,9 hours 33 mins,"1,041 km" +Savannah,South Bend,,13 hours 45 mins,"1,461 km" +Savannah,Fort Wayne,,12 hours 56 mins,"1,355 km" +Savannah,Valparaiso,,, +Savannah,Indianapolis,,11 hours 30 mins,"1,240 km" +Evansville,Savannah,,9 hours 31 mins,"1,037 km" +South Bend,Savannah,,13 hours 42 mins,"1,462 km" +Fort Wayne,Savannah,,12 hours 53 mins,"1,356 km" +Valparaiso,Savannah,,, +Indianapolis,Savannah,,11 hours 31 mins,"1,242 km" +Baltimore,Evansville,,10 hours 54 mins,"1,177 km" +Baltimore,South Bend,,9 hours 18 mins,988 km +Baltimore,Fort Wayne,,8 hours 36 mins,904 km +Baltimore,Valparaiso,,, +Baltimore,Indianapolis,,8 hours 55 mins,931 km +Evansville,Baltimore,,10 hours 56 mins,"1,177 km" +South Bend,Baltimore,,9 hours 19 mins,989 km +Fort Wayne,Baltimore,,8 hours 37 mins,904 km +Valparaiso,Baltimore,,, +Indianapolis,Baltimore,,8 hours 57 mins,931 km +Fort Lauderdale,Augusta,,8 hours 39 mins,936 km +Fort Lauderdale,Decatur,,9 hours 16 mins,"1,039 km" +Fort Lauderdale,Atlanta,,9 hours 5 mins,"1,031 km" +Fort Lauderdale,Valdosta,,5 hours 58 mins,668 km +Fort Lauderdale,Savannah,,6 hours 37 mins,748 km +Augusta,Fort Lauderdale,,8 hours 41 mins,938 km +Decatur,Fort Lauderdale,,9 hours 18 mins,"1,031 km" +Atlanta,Fort Lauderdale,,9 hours 6 mins,"1,030 km" +Valdosta,Fort Lauderdale,,5 hours 59 mins,667 km +Savannah,Fort Lauderdale,,6 hours 41 mins,750 km +Billings,Bemidji,,10 hours 48 mins,"1,186 km" +Billings,Minneapolis,,11 hours 53 mins,"1,349 km" +Billings,Duluth,,12 hours 52 mins,"1,368 km" +Billings,Brainerd,,10 hours 53 mins,"1,200 km" +Billings,Gustavus,,12 hours 3 mins,"1,318 km" +Billings,St. Cloud,,11 hours 5 mins,"1,247 km" +Billings,Hibbing,,12 hours 20 mins,"1,313 km" +Billings,International Falls,,12 hours 41 mins,"1,361 km" +Bemidji,Billings,,10 hours 49 mins,"1,188 km" +Minneapolis,Billings,,11 hours 56 mins,"1,352 km" +Duluth,Billings,,12 hours 55 mins,"1,371 km" +Brainerd,Billings,,10 hours 55 mins,"1,203 km" +Gustavus,Billings,,12 hours 8 mins,"1,320 km" +St. Cloud,Billings,,11 hours 6 mins,"1,257 km" +Hibbing,Billings,,12 hours 21 mins,"1,315 km" +International Falls,Billings,,12 hours 42 mins,"1,361 km" +Tulsa,Kansas City,,3 hours 59 mins,436 km +Tulsa,Cape Girardeau,,6 hours 43 mins,719 km +Tulsa,Branson,,3 hours 15 mins,353 km +Tulsa,Fort Leonard Wood,,4 hours 3 mins,435 km +Tulsa,St. Louis,,5 hours 49 mins,635 km +Kansas City,Tulsa,,3 hours 59 mins,434 km +Cape Girardeau,Tulsa,,6 hours 45 mins,718 km +Branson,Tulsa,,3 hours 16 mins,354 km +Fort Leonard Wood,Tulsa,,4 hours 3 mins,435 km +St. Louis,Tulsa,,5 hours 48 mins,634 km +Akron,Tampa,,15 hours 37 mins,"1,701 km" +Tampa,Akron,,15 hours 40 mins,"1,702 km" +Charlotte,Green Bay,,14 hours 42 mins,"1,554 km" +Charlotte,Rhinelander,,16 hours 29 mins,"1,762 km" +Charlotte,Marquette,,13 hours 1 min,"1,371 km" +Charlotte,Madison,,13 hours 50 mins,"1,454 km" +Charlotte,La Crosse,,15 hours 42 mins,"1,670 km" +Charlotte,Devils Lake,,14 hours 30 mins,"1,518 km" +Charlotte,Appleton,,14 hours 32 mins,"1,536 km" +Charlotte,Mosinee,,15 hours 25 mins,"1,649 km" +Charlotte,Milwaukee,,13 hours 1 min,"1,370 km" +Charlotte,Eau Claire,,16 hours 11 mins,"1,728 km" +Green Bay,Charlotte,,14 hours 39 mins,"1,553 km" +Rhinelander,Charlotte,,16 hours 24 mins,"1,760 km" +Marquette,Charlotte,,12 hours 57 mins,"1,368 km" +Madison,Charlotte,,13 hours 43 mins,"1,451 km" +La Crosse,Charlotte,,15 hours 36 mins,"1,667 km" +Devils Lake,Charlotte,,14 hours 26 mins,"1,515 km" +Appleton,Charlotte,,14 hours 27 mins,"1,534 km" +Mosinee,Charlotte,,15 hours 20 mins,"1,647 km" +Milwaukee,Charlotte,,12 hours 58 mins,"1,369 km" +Eau Claire,Charlotte,,16 hours 6 mins,"1,725 km" +Phoenix,Green Bay,,1 day 4 hours,"2,947 km" +Phoenix,Rhinelander,,1 day 4 hours,"3,014 km" +Phoenix,Marquette,,1 day 3 hours,"2,849 km" +Phoenix,Madison,,1 day 2 hours,"2,719 km" +Phoenix,La Crosse,,1 day 1 hour,"2,687 km" +Phoenix,Devils Lake,,1 day 2 hours,"2,734 km" +Phoenix,Appleton,,1 day 3 hours,"2,896 km" +Phoenix,Mosinee,,1 day 3 hours,"2,886 km" +Phoenix,Milwaukee,,1 day 3 hours,"2,943 km" +Phoenix,Eau Claire,,1 day 2 hours,"2,773 km" +Green Bay,Phoenix,,1 day 4 hours,"2,948 km" +Rhinelander,Phoenix,,1 day 4 hours,"3,016 km" +Marquette,Phoenix,,1 day 3 hours,"2,943 km" +Madison,Phoenix,,1 day 2 hours,"2,721 km" +La Crosse,Phoenix,,1 day 1 hour,"2,688 km" +Devils Lake,Phoenix,,1 day 2 hours,"2,735 km" +Appleton,Phoenix,,1 day 3 hours,"2,895 km" +Mosinee,Phoenix,,1 day 3 hours,"2,890 km" +Milwaukee,Phoenix,,1 day 3 hours,"2,944 km" +Eau Claire,Phoenix,,1 day 2 hours,"2,736 km" +Knoxville,Denver,,19 hours 11 mins,"2,145 km" +Denver,Knoxville,,19 hours 11 mins,"2,149 km" +Dallas,Sarasota,,16 hours 51 mins,"1,859 km" +Dallas,Fort Myers,,17 hours 48 mins,"1,964 km" +Dallas,Gainesville,,14 hours 27 mins,"1,574 km" +Dallas,Orlando,,15 hours 51 mins,"1,747 km" +Dallas,Daytona Beach,,15 hours 55 mins,"1,747 km" +Dallas,Jacksonville,,14 hours 32 mins,"1,597 km" +Dallas,Tampa,,16 hours 3 mins,"1,774 km" +Dallas,Panama City,,11 hours 50 mins,"1,245 km" +Dallas,Key West,,22 hours 3 mins,"2,361 km" +Dallas,West Palm Beach,,18 hours 4 mins,"2,002 km" +Dallas,Miami,,19 hours 2 mins,"2,107 km" +Dallas,Tallahassee,,12 hours 22 mins,"1,338 km" +Dallas,Punta Gorda,,17 hours 22 mins,"1,929 km" +Dallas,Fort Lauderdale,,18 hours 42 mins,"2,070 km" +Dallas,Pensacola,,9 hours 45 mins,"1,041 km" +Sarasota,Dallas,,16 hours 49 mins,"1,863 km" +Fort Myers,Dallas,,17 hours 47 mins,"1,973 km" +Gainesville,Dallas,,14 hours 25 mins,"1,577 km" +Orlando,Dallas,,15 hours 46 mins,"1,748 km" +Daytona Beach,Dallas,,15 hours 52 mins,"1,740 km" +Jacksonville,Dallas,,14 hours 32 mins,"1,600 km" +Tampa,Dallas,,16 hours 1 min,"1,778 km" +Panama City,Dallas,,11 hours 47 mins,"1,248 km" +Key West,Dallas,,22 hours 3 mins,"2,368 km" +West Palm Beach,Dallas,,18 hours 1 min,"2,006 km" +Miami,Dallas,,18 hours 58 mins,"2,112 km" +Tallahassee,Dallas,,12 hours 20 mins,"1,341 km" +Punta Gorda,Dallas,,17 hours 20 mins,"1,932 km" +Fort Lauderdale,Dallas,,18 hours 39 mins,"2,075 km" +Pensacola,Dallas,,9 hours 42 mins,"1,044 km" +Jacksonville,Washington,,10 hours 13 mins,"1,136 km" +Washington,Jacksonville,,10 hours 12 mins,"1,136 km" +Pittsburgh,Detroit,,4 hours 16 mins,460 km +Detroit,Pittsburgh,,4 hours 17 mins,460 km +Manchester,Philadelphia,,, +Philadelphia,Manchester,,, +St. Cloud,Sarasota,,1 day 1 hour,"2,737 km" +St. Cloud,Fort Myers,,1 day 1 hour,"2,842 km" +St. Cloud,Gainesville,,22 hours 7 mins,"2,452 km" +St. Cloud,Orlando,,23 hours 31 mins,"2,625 km" +St. Cloud,Daytona Beach,,23 hours 35 mins,"2,624 km" +St. Cloud,Jacksonville,,22 hours 12 mins,"2,475 km" +St. Cloud,Tampa,,23 hours 43 mins,"2,652 km" +St. Cloud,Panama City,,20 hours 58 mins,"2,259 km" +St. Cloud,Key West,,1 day 6 hours,"3,238 km" +St. Cloud,West Palm Beach,,1 day 2 hours,"2,880 km" +St. Cloud,Miami,,1 day 3 hours,"2,985 km" +St. Cloud,Tallahassee,,21 hours 15 mins,"2,314 km" +St. Cloud,Punta Gorda,,1 day 1 hour,"2,807 km" +St. Cloud,Fort Lauderdale,,1 day 2 hours,"2,948 km" +St. Cloud,Pensacola,,19 hours 59 mins,"2,112 km" +Sarasota,St. Cloud,,1 day 1 hour,"2,742 km" +Fort Myers,St. Cloud,,1 day 2 hours,"2,848 km" +Gainesville,St. Cloud,,22 hours 9 mins,"2,457 km" +Orlando,St. Cloud,,23 hours 31 mins,"2,628 km" +Daytona Beach,St. Cloud,,23 hours 37 mins,"2,620 km" +Jacksonville,St. Cloud,,22 hours 17 mins,"2,480 km" +Tampa,St. Cloud,,23 hours 45 mins,"2,657 km" +Panama City,St. Cloud,,21 hours 3 mins,"2,258 km" +Key West,St. Cloud,,1 day 6 hours,"3,243 km" +West Palm Beach,St. Cloud,,1 day 2 hours,"2,886 km" +Miami,St. Cloud,,1 day 3 hours,"2,992 km" +Tallahassee,St. Cloud,,21 hours 20 mins,"2,313 km" +Punta Gorda,St. Cloud,,1 day 1 hour,"2,812 km" +Fort Lauderdale,St. Cloud,,1 day 2 hours,"2,954 km" +Pensacola,St. Cloud,,19 hours 59 mins,"2,111 km" +Dallas,Salt Lake City,,19 hours 4 mins,"2,000 km" +Dallas,Moab,,15 hours 22 mins,"1,624 km" +Dallas,Ogden,,19 hours 23 mins,"2,108 km" +Dallas,Vernal,,17 hours 11 mins,"1,707 km" +Dallas,Provo,,18 hours 27 mins,"1,929 km" +Dallas,Cedar City,,18 hours 17 mins,"1,919 km" +Salt Lake City,Dallas,,19 hours 2 mins,"2,001 km" +Moab,Dallas,,15 hours 20 mins,"1,625 km" +Ogden,Dallas,,19 hours 21 mins,"2,076 km" +Vernal,Dallas,,17 hours 12 mins,"1,791 km" +Provo,Dallas,,18 hours 27 mins,"1,931 km" +Cedar City,Dallas,,18 hours 14 mins,"1,921 km" +Nashville,Lake Charles,,10 hours 17 mins,"1,148 km" +Nashville,Baton Rouge,,8 hours 27 mins,947 km +Nashville,New Orleans,,7 hours 42 mins,858 km +Nashville,Shreveport,,8 hours 14 mins,901 km +Lake Charles,Nashville,,10 hours 17 mins,"1,148 km" +Baton Rouge,Nashville,,8 hours 28 mins,948 km +New Orleans,Nashville,,7 hours 41 mins,856 km +Shreveport,Nashville,,8 hours 12 mins,898 km +Las Vegas,Stockton,,7 hours 46 mins,835 km +Stockton,Las Vegas,,7 hours 50 mins,836 km +Denver,State College,,22 hours 45 mins,"2,505 km" +Denver,Johnstown,,22 hours 8 mins,"2,432 km" +Denver,Harrisburg,,23 hours 52 mins,"2,619 km" +Denver,Erie,,20 hours 50 mins,"2,311 km" +Denver,Pittsburgh,,20 hours 57 mins,"2,334 km" +Denver,Latrobe,,21 hours 36 mins,"2,389 km" +Denver,Philadelphia,,1 day 1 hour,"2,781 km" +Denver,Lewisburg,,23 hours 21 mins,"2,598 km" +Denver,Scranton,,1 day 1 hour,"2,723 km" +State College,Denver,,22 hours 43 mins,"2,505 km" +Johnstown,Denver,,22 hours 10 mins,"2,426 km" +Harrisburg,Denver,,23 hours 54 mins,"2,615 km" +Erie,Denver,,20 hours 51 mins,"2,305 km" +Pittsburgh,Denver,,20 hours 57 mins,"2,329 km" +Latrobe,Denver,,21 hours 39 mins,"2,368 km" +Philadelphia,Denver,,1 day 1 hour,"2,779 km" +Lewisburg,Denver,,23 hours 21 mins,"2,593 km" +Scranton,Denver,,1 day 1 hour,"2,718 km" +Scranton,Newark,,1 hour 51 mins,179 km +Newark,Scranton,,1 hour 56 mins,179 km +Manhattan,Abilene,,1 day 2 hours,"2,788 km" +Manhattan,Amarillo,,1 day 2 hours,"2,755 km" +Manhattan,Harlingen,,1 day 5 hours,"3,154 km" +Manhattan,Lubbock,,1 day 3 hours,"2,893 km" +Manhattan,College Station,,1 day 1 hour,"2,647 km" +Manhattan,Corpus Christi,,1 day 3 hours,"2,959 km" +Manhattan,Wichita Falls,,23 hours 50 mins,"2,559 km" +Manhattan,Waco,,1 day 0 hours,"2,653 km" +Manhattan,San Angelo,,1 day 3 hours,"2,911 km" +Manhattan,Houston,,1 day 0 hours,"2,626 km" +Manhattan,San Antonio,,1 day 3 hours,"2,940 km" +Manhattan,Del Rio,,1 day 5 hours,"3,165 km" +Manhattan,Mission,,, +Manhattan,Beaumont,,, +Manhattan,Longview,,21 hours 57 mins,"2,381 km" +Manhattan,Midland,,1 day 4 hours,"3,028 km" +Manhattan,El Paso,,1 day 8 hours,"3,518 km" +Manhattan,Brownsville,,1 day 5 hours,"3,193 km" +Manhattan,Austin,,1 day 2 hours,"2,812 km" +Manhattan,Dallas,,23 hours 5 mins,"2,498 km" +Manhattan,Killeen,,1 day 1 hour,"2,746 km" +Manhattan,Laredo,,1 day 5 hours,"3,132 km" +Manhattan,Texarkana,,20 hours 36 mins,"2,218 km" +Abilene,Manhattan,,1 day 2 hours,"2,788 km" +Amarillo,Manhattan,,1 day 2 hours,"2,755 km" +Harlingen,Manhattan,,1 day 5 hours,"3,154 km" +Lubbock,Manhattan,,1 day 3 hours,"2,895 km" +College Station,Manhattan,,1 day 1 hour,"2,647 km" +Corpus Christi,Manhattan,,1 day 3 hours,"2,965 km" +Wichita Falls,Manhattan,,23 hours 53 mins,"2,560 km" +Waco,Manhattan,,1 day 0 hours,"2,649 km" +San Angelo,Manhattan,,1 day 3 hours,"2,912 km" +Houston,Manhattan,,1 day 0 hours,"2,627 km" +San Antonio,Manhattan,,1 day 3 hours,"2,937 km" +Del Rio,Manhattan,,1 day 5 hours,"3,165 km" +Mission,Manhattan,,, +Beaumont,Manhattan,,, +Longview,Manhattan,,21 hours 57 mins,"2,380 km" +Midland,Manhattan,,1 day 4 hours,"3,028 km" +El Paso,Manhattan,,1 day 8 hours,"3,518 km" +Brownsville,Manhattan,,1 day 5 hours,"3,194 km" +Austin,Manhattan,,1 day 2 hours,"2,811 km" +Dallas,Manhattan,,23 hours 4 mins,"2,498 km" +Killeen,Manhattan,,1 day 1 hour,"2,746 km" +Laredo,Manhattan,,1 day 5 hours,"3,133 km" +Texarkana,Manhattan,,20 hours 35 mins,"2,216 km" +Nashville,Boston,,16 hours 37 mins,"1,781 km" +Boston,Nashville,,16 hours 37 mins,"1,779 km" +Richmond,Martha's Vineyard,,10 hours 29 mins,966 km +Richmond,Hyannis,,9 hours 26 mins,947 km +Richmond,Boston,,8 hours 42 mins,882 km +Richmond,Nantucket,,11 hours 43 mins,994 km +Martha's Vineyard,Richmond,,10 hours 37 mins,977 km +Hyannis,Richmond,,9 hours 29 mins,955 km +Boston,Richmond,,8 hours 44 mins,892 km +Nantucket,Richmond,,11 hours 46 mins,"1,006 km" +Trenton,Sarasota,,16 hours 42 mins,"1,817 km" +Trenton,Fort Myers,,17 hours 39 mins,"1,922 km" +Trenton,Gainesville,,14 hours 2 mins,"1,527 km" +Trenton,Orlando,,14 hours 54 mins,"1,644 km" +Trenton,Daytona Beach,,14 hours 17 mins,"1,570 km" +Trenton,Jacksonville,,12 hours 51 mins,"1,416 km" +Trenton,Tampa,,15 hours 54 mins,"1,732 km" +Trenton,Panama City,,16 hours 53 mins,"1,837 km" +Trenton,Key West,,20 hours 50 mins,"2,227 km" +Trenton,West Palm Beach,,16 hours 50 mins,"1,874 km" +Trenton,Miami,,17 hours 50 mins,"1,973 km" +Trenton,Tallahassee,,15 hours 15 mins,"1,675 km" +Trenton,Punta Gorda,,17 hours 14 mins,"1,887 km" +Trenton,Fort Lauderdale,,17 hours 28 mins,"1,942 km" +Trenton,Pensacola,,17 hours 3 mins,"1,830 km" +Sarasota,Trenton,,16 hours 39 mins,"1,811 km" +Fort Myers,Trenton,,17 hours 36 mins,"1,917 km" +Gainesville,Trenton,,14 hours 1 min,"1,521 km" +Orlando,Trenton,,14 hours 46 mins,"1,634 km" +Daytona Beach,Trenton,,14 hours 12 mins,"1,551 km" +Jacksonville,Trenton,,12 hours 49 mins,"1,409 km" +Tampa,Trenton,,15 hours 51 mins,"1,726 km" +Panama City,Trenton,,16 hours 50 mins,"1,832 km" +Key West,Trenton,,20 hours 46 mins,"2,218 km" +West Palm Beach,Trenton,,16 hours 44 mins,"1,865 km" +Miami,Trenton,,17 hours 43 mins,"1,966 km" +Tallahassee,Trenton,,15 hours 13 mins,"1,674 km" +Punta Gorda,Trenton,,17 hours 11 mins,"1,880 km" +Fort Lauderdale,Trenton,,17 hours 22 mins,"1,933 km" +Pensacola,Trenton,,16 hours 58 mins,"1,821 km" +Lewisburg,Chicago,,9 hours 20 mins,"1,006 km" +Chicago,Lewisburg,,9 hours 20 mins,"1,006 km" +Chicago,Albany,,, +Albany,Chicago,,, +Orlando,Newark,,15 hours 29 mins,"1,712 km" +Newark,Orlando,,15 hours 37 mins,"1,722 km" +Fort Lauderdale,Lake Charles,,14 hours 30 mins,"1,647 km" +Fort Lauderdale,Baton Rouge,,12 hours 40 mins,"1,446 km" +Fort Lauderdale,New Orleans,,11 hours 54 mins,"1,356 km" +Fort Lauderdale,Shreveport,,16 hours 0 mins,"1,774 km" +Lake Charles,Fort Lauderdale,,14 hours 31 mins,"1,645 km" +Baton Rouge,Fort Lauderdale,,12 hours 42 mins,"1,445 km" +New Orleans,Fort Lauderdale,,11 hours 56 mins,"1,353 km" +Shreveport,Fort Lauderdale,,16 hours 3 mins,"1,772 km" +Peoria,Greensboro,,11 hours 37 mins,"1,223 km" +Peoria,Wilmington,,14 hours 31 mins,"1,550 km" +Peoria,New Bern,,14 hours 30 mins,"1,528 km" +Peoria,Charlotte,,11 hours 55 mins,"1,259 km" +Peoria,Raleigh,,12 hours 47 mins,"1,343 km" +Peoria,Asheville,,10 hours 7 mins,"1,095 km" +Peoria,Fayetteville,,13 hours 7 mins,"1,368 km" +Greensboro,Peoria,,11 hours 39 mins,"1,222 km" +Wilmington,Peoria,,14 hours 32 mins,"1,549 km" +New Bern,Peoria,,14 hours 31 mins,"1,527 km" +Charlotte,Peoria,,12 hours 1 min,"1,278 km" +Raleigh,Peoria,,12 hours 46 mins,"1,342 km" +Asheville,Peoria,,10 hours 7 mins,"1,095 km" +Fayetteville,Peoria,,13 hours 9 mins,"1,368 km" +Salt Lake City,Miami,,1 day 13 hours,"4,086 km" +Miami,Salt Lake City,,1 day 13 hours,"4,088 km" +Montgomery,Dallas,,9 hours 44 mins,"1,045 km" +Dallas,Montgomery,,9 hours 45 mins,"1,043 km" +Orlando,San Diego,,1 day 11 hours,"3,912 km" +San Diego,Orlando,,1 day 11 hours,"3,913 km" +Sioux Falls,Minneapolis,,3 hours 48 mins,383 km +Minneapolis,Sioux Falls,,3 hours 45 mins,381 km +Bozeman,Salt Lake City,,6 hours 20 mins,660 km +Bozeman,Moab,,9 hours 55 mins,"1,032 km" +Bozeman,Ogden,,5 hours 51 mins,604 km +Bozeman,Vernal,,8 hours 53 mins,801 km +Bozeman,Provo,,6 hours 58 mins,729 km +Bozeman,Cedar City,,9 hours 45 mins,"1,061 km" +Salt Lake City,Bozeman,,6 hours 17 mins,658 km +Moab,Bozeman,,9 hours 52 mins,"1,031 km" +Ogden,Bozeman,,5 hours 49 mins,602 km +Vernal,Bozeman,,8 hours 49 mins,801 km +Provo,Bozeman,,6 hours 55 mins,727 km +Cedar City,Bozeman,,9 hours 42 mins,"1,059 km" +Tucson,Seattle,,22 hours 57 mins,"2,456 km" +Tucson,Wenatchee,,22 hours 0 mins,"2,335 km" +Tucson,Pasco,,, +Tucson,Yakima,,20 hours 49 mins,"2,229 km" +Tucson,Walla Walla,,19 hours 26 mins,"2,070 km" +Tucson,Everett,,23 hours 19 mins,"2,491 km" +Tucson,Spokane,,21 hours 53 mins,"2,403 km" +Seattle,Tucson,,23 hours 0 mins,"2,455 km" +Wenatchee,Tucson,,22 hours 4 mins,"2,335 km" +Pasco,Tucson,,, +Yakima,Tucson,,20 hours 52 mins,"2,227 km" +Walla Walla,Tucson,,19 hours 31 mins,"2,069 km" +Everett,Tucson,,23 hours 20 mins,"2,490 km" +Spokane,Tucson,,21 hours 56 mins,"2,339 km" +Providence,Augusta,,14 hours 37 mins,"1,545 km" +Providence,Decatur,,16 hours 1 min,"1,682 km" +Providence,Atlanta,,16 hours 1 min,"1,689 km" +Providence,Valdosta,,17 hours 47 mins,"1,870 km" +Providence,Savannah,,14 hours 57 mins,"1,586 km" +Augusta,Providence,,14 hours 32 mins,"1,539 km" +Decatur,Providence,,15 hours 57 mins,"1,673 km" +Atlanta,Providence,,15 hours 56 mins,"1,681 km" +Valdosta,Providence,,17 hours 42 mins,"1,864 km" +Savannah,Providence,,14 hours 51 mins,"1,578 km" +Jackson,Abilene,,, +Jackson,Amarillo,,, +Jackson,Harlingen,,, +Jackson,Lubbock,,, +Jackson,College Station,,, +Jackson,Corpus Christi,,, +Jackson,Wichita Falls,,, +Jackson,Waco,,, +Jackson,San Angelo,,, +Jackson,Houston,,, +Jackson,San Antonio,,, +Jackson,Del Rio,,, +Jackson,Mission,,, +Jackson,Beaumont,,, +Jackson,Longview,,, +Jackson,Midland,,, +Jackson,El Paso,,, +Jackson,Brownsville,,, +Jackson,Austin,,, +Jackson,Dallas,,, +Jackson,Killeen,,, +Jackson,Laredo,,, +Jackson,Texarkana,,, +Abilene,Jackson,,, +Amarillo,Jackson,,, +Harlingen,Jackson,,, +Lubbock,Jackson,,, +College Station,Jackson,,, +Corpus Christi,Jackson,,, +Wichita Falls,Jackson,,, +Waco,Jackson,,, +San Angelo,Jackson,,, +Houston,Jackson,,, +San Antonio,Jackson,,, +Del Rio,Jackson,,, +Mission,Jackson,,, +Beaumont,Jackson,,, +Longview,Jackson,,, +Midland,Jackson,,, +El Paso,Jackson,,, +Brownsville,Jackson,,, +Austin,Jackson,,, +Dallas,Jackson,,, +Killeen,Jackson,,, +Laredo,Jackson,,, +Texarkana,Jackson,,, +Albuquerque,Flagstaff,,4 hours 43 mins,519 km +Albuquerque,Yuma,,9 hours 8 mins,968 km +Albuquerque,Phoenix,,6 hours 30 mins,674 km +Albuquerque,Prescott,,6 hours 15 mins,670 km +Albuquerque,Tucson,,6 hours 32 mins,727 km +Flagstaff,Albuquerque,,4 hours 39 mins,519 km +Yuma,Albuquerque,,9 hours 8 mins,967 km +Phoenix,Albuquerque,,6 hours 29 mins,675 km +Prescott,Albuquerque,,6 hours 10 mins,670 km +Tucson,Albuquerque,,6 hours 34 mins,728 km +Wichita,Alamosa,,8 hours 27 mins,819 km +Wichita,Grand Junction,,11 hours 6 mins,"1,224 km" +Wichita,Durango,,11 hours 19 mins,"1,059 km" +Wichita,Colorado Springs,,7 hours 23 mins,809 km +Wichita,Gunnison,,10 hours 5 mins,936 km +Wichita,Denver,,7 hours 26 mins,835 km +Alamosa,Wichita,,8 hours 24 mins,838 km +Grand Junction,Wichita,,10 hours 59 mins,"1,223 km" +Durango,Wichita,,11 hours 15 mins,"1,078 km" +Colorado Springs,Wichita,,7 hours 19 mins,808 km +Gunnison,Wichita,,10 hours 5 mins,960 km +Denver,Wichita,,7 hours 24 mins,837 km +Greensboro,Sarasota,,10 hours 34 mins,"1,122 km" +Greensboro,Fort Myers,,11 hours 31 mins,"1,227 km" +Greensboro,Gainesville,,7 hours 54 mins,832 km +Greensboro,Orlando,,8 hours 46 mins,949 km +Greensboro,Daytona Beach,,8 hours 9 mins,875 km +Greensboro,Jacksonville,,6 hours 43 mins,721 km +Greensboro,Tampa,,9 hours 46 mins,"1,037 km" +Greensboro,Panama City,,9 hours 48 mins,997 km +Greensboro,Key West,,14 hours 42 mins,"1,532 km" +Greensboro,West Palm Beach,,10 hours 42 mins,"1,179 km" +Greensboro,Miami,,11 hours 42 mins,"1,278 km" +Greensboro,Tallahassee,,8 hours 59 mins,860 km +Greensboro,Punta Gorda,,11 hours 5 mins,"1,192 km" +Greensboro,Fort Lauderdale,,11 hours 19 mins,"1,247 km" +Greensboro,Pensacola,,9 hours 51 mins,"1,054 km" +Sarasota,Greensboro,,10 hours 32 mins,"1,136 km" +Fort Myers,Greensboro,,11 hours 29 mins,"1,242 km" +Gainesville,Greensboro,,7 hours 54 mins,847 km +Orlando,Greensboro,,8 hours 39 mins,960 km +Daytona Beach,Greensboro,,8 hours 5 mins,877 km +Jacksonville,Greensboro,,6 hours 42 mins,734 km +Tampa,Greensboro,,9 hours 44 mins,"1,051 km" +Panama City,Greensboro,,9 hours 46 mins,998 km +Key West,Greensboro,,14 hours 39 mins,"1,543 km" +West Palm Beach,Greensboro,,10 hours 37 mins,"1,190 km" +Miami,Greensboro,,11 hours 36 mins,"1,292 km" +Tallahassee,Greensboro,,9 hours 0 mins,860 km +Punta Gorda,Greensboro,,11 hours 4 mins,"1,206 km" +Fort Lauderdale,Greensboro,,11 hours 15 mins,"1,258 km" +Pensacola,Greensboro,,9 hours 47 mins,"1,054 km" +Kona,San Diego,,, +Kona,Redding,,, +Kona,Sacramento,,, +Kona,Fresno,,, +Kona,San Luis Obispo,,, +Kona,Oakland,,, +Kona,Santa Barbara,,, +Kona,Stockton,,, +Kona,Santa Rosa,,, +Kona,Bakersfield,,, +Kona,Santa Ana,,, +Kona,Santa Maria,,, +Kona,San Jose,,, +Kona,Burbank,,, +Kona,Arcata,,, +Kona,Butte,,, +Kona,Palm Springs,,, +Kona,Los Angeles,,, +Kona,Long Beach,,, +Kona,San Francisco,,, +Kona,Monterey,,, +San Diego,Kona,,, +Redding,Kona,,, +Sacramento,Kona,,, +Fresno,Kona,,, +San Luis Obispo,Kona,,, +Oakland,Kona,,, +Santa Barbara,Kona,,, +Stockton,Kona,,, +Santa Rosa,Kona,,, +Bakersfield,Kona,,, +Santa Ana,Kona,,, +Santa Maria,Kona,,, +San Jose,Kona,,, +Burbank,Kona,,, +Arcata,Kona,,, +Butte,Kona,,, +Palm Springs,Kona,,, +Los Angeles,Kona,,, +Long Beach,Kona,,, +San Francisco,Kona,,, +Monterey,Kona,,, +Oklahoma City,Sarasota,,19 hours 30 mins,"2,181 km" +Oklahoma City,Fort Myers,,20 hours 28 mins,"2,287 km" +Oklahoma City,Gainesville,,17 hours 6 mins,"1,897 km" +Oklahoma City,Orlando,,18 hours 30 mins,"2,069 km" +Oklahoma City,Daytona Beach,,18 hours 35 mins,"2,069 km" +Oklahoma City,Jacksonville,,17 hours 12 mins,"1,919 km" +Oklahoma City,Tampa,,18 hours 43 mins,"2,097 km" +Oklahoma City,Panama City,,14 hours 48 mins,"1,557 km" +Oklahoma City,Key West,,1 day 1 hour,"2,683 km" +Oklahoma City,West Palm Beach,,20 hours 44 mins,"2,325 km" +Oklahoma City,Miami,,21 hours 42 mins,"2,430 km" +Oklahoma City,Tallahassee,,15 hours 5 mins,"1,612 km" +Oklahoma City,Punta Gorda,,20 hours 2 mins,"2,252 km" +Oklahoma City,Fort Lauderdale,,21 hours 21 mins,"2,393 km" +Oklahoma City,Pensacola,,12 hours 41 mins,"1,368 km" +Sarasota,Oklahoma City,,19 hours 27 mins,"2,196 km" +Fort Myers,Oklahoma City,,20 hours 23 mins,"2,302 km" +Gainesville,Oklahoma City,,17 hours 2 mins,"1,911 km" +Orlando,Oklahoma City,,18 hours 24 mins,"2,082 km" +Daytona Beach,Oklahoma City,,18 hours 30 mins,"2,074 km" +Jacksonville,Oklahoma City,,17 hours 10 mins,"1,934 km" +Tampa,Oklahoma City,,18 hours 38 mins,"2,111 km" +Panama City,Oklahoma City,,14 hours 47 mins,"1,567 km" +Key West,Oklahoma City,,1 day 1 hour,"2,697 km" +West Palm Beach,Oklahoma City,,20 hours 39 mins,"2,340 km" +Miami,Oklahoma City,,21 hours 36 mins,"2,446 km" +Tallahassee,Oklahoma City,,15 hours 4 mins,"1,622 km" +Punta Gorda,Oklahoma City,,19 hours 58 mins,"2,266 km" +Fort Lauderdale,Oklahoma City,,21 hours 17 mins,"2,408 km" +Pensacola,Oklahoma City,,12 hours 42 mins,"1,375 km" +Savannah,Abilene,,17 hours 25 mins,"1,947 km" +Savannah,Amarillo,,19 hours 34 mins,"2,193 km" +Savannah,Harlingen,,19 hours 16 mins,"2,081 km" +Savannah,Lubbock,,19 hours 49 mins,"2,211 km" +Savannah,College Station,,15 hours 49 mins,"1,699 km" +Savannah,Corpus Christi,,17 hours 31 mins,"1,887 km" +Savannah,Wichita Falls,,16 hours 51 mins,"1,885 km" +Savannah,Waco,,15 hours 53 mins,"1,733 km" +Savannah,San Angelo,,18 hours 39 mins,"2,070 km" +Savannah,Houston,,14 hours 24 mins,"1,553 km" +Savannah,San Antonio,,17 hours 16 mins,"1,867 km" +Savannah,Del Rio,,19 hours 40 mins,"2,114 km" +Savannah,Mission,,, +Savannah,Beaumont,,, +Savannah,Longview,,13 hours 8 mins,"1,458 km" +Savannah,Midland,,19 hours 34 mins,"2,187 km" +Savannah,El Paso,,23 hours 52 mins,"2,677 km" +Savannah,Brownsville,,19 hours 38 mins,"2,121 km" +Savannah,Austin,,16 hours 52 mins,"1,816 km" +Savannah,Dallas,,14 hours 51 mins,"1,658 km" +Savannah,Killeen,,16 hours 42 mins,"1,829 km" +Savannah,Laredo,,19 hours 23 mins,"2,059 km" +Savannah,Texarkana,,13 hours 11 mins,"1,473 km" +Abilene,Savannah,,17 hours 25 mins,"1,947 km" +Amarillo,Savannah,,19 hours 32 mins,"2,179 km" +Harlingen,Savannah,,19 hours 10 mins,"2,082 km" +Lubbock,Savannah,,19 hours 44 mins,"2,212 km" +College Station,Savannah,,15 hours 44 mins,"1,702 km" +Corpus Christi,Savannah,,17 hours 32 mins,"1,892 km" +Wichita Falls,Savannah,,16 hours 53 mins,"1,876 km" +Waco,Savannah,,15 hours 51 mins,"1,733 km" +San Angelo,Savannah,,18 hours 37 mins,"2,071 km" +Houston,Savannah,,14 hours 22 mins,"1,554 km" +San Antonio,Savannah,,17 hours 15 mins,"1,868 km" +Del Rio,Savannah,,19 hours 40 mins,"2,115 km" +Mission,Savannah,,, +Beaumont,Savannah,,, +Longview,Savannah,,13 hours 6 mins,"1,457 km" +Midland,Savannah,,19 hours 30 mins,"2,187 km" +El Paso,Savannah,,23 hours 48 mins,"2,677 km" +Brownsville,Savannah,,19 hours 34 mins,"2,122 km" +Austin,Savannah,,16 hours 49 mins,"1,817 km" +Dallas,Savannah,,14 hours 50 mins,"1,656 km" +Killeen,Savannah,,16 hours 41 mins,"1,829 km" +Laredo,Savannah,,19 hours 18 mins,"2,060 km" +Texarkana,Savannah,,13 hours 12 mins,"1,475 km" +Minneapolis,Green Bay,,4 hours 16 mins,447 km +Minneapolis,Rhinelander,,3 hours 43 mins,389 km +Minneapolis,Marquette,,4 hours 53 mins,539 km +Minneapolis,Madison,,4 hours 7 mins,432 km +Minneapolis,La Crosse,,2 hours 33 mins,255 km +Minneapolis,Devils Lake,,3 hours 30 mins,374 km +Minneapolis,Appleton,,4 hours 20 mins,457 km +Minneapolis,Mosinee,,2 hours 57 mins,303 km +Minneapolis,Milwaukee,,4 hours 56 mins,542 km +Minneapolis,Eau Claire,,1 hour 34 mins,148 km +Green Bay,Minneapolis,,4 hours 14 mins,449 km +Rhinelander,Minneapolis,,3 hours 43 mins,390 km +Marquette,Minneapolis,,4 hours 55 mins,541 km +Madison,Minneapolis,,4 hours 10 mins,434 km +La Crosse,Minneapolis,,2 hours 32 mins,256 km +Devils Lake,Minneapolis,,3 hours 33 mins,376 km +Appleton,Minneapolis,,4 hours 17 mins,456 km +Mosinee,Minneapolis,,2 hours 56 mins,304 km +Milwaukee,Minneapolis,,4 hours 57 mins,543 km +Eau Claire,Minneapolis,,1 hour 33 mins,149 km +Dayton,Sarasota,,14 hours 47 mins,"1,644 km" +Dayton,Fort Myers,,15 hours 45 mins,"1,749 km" +Dayton,Gainesville,,12 hours 23 mins,"1,359 km" +Dayton,Orlando,,13 hours 47 mins,"1,532 km" +Dayton,Daytona Beach,,13 hours 51 mins,"1,502 km" +Dayton,Jacksonville,,12 hours 26 mins,"1,348 km" +Dayton,Tampa,,14 hours 0 mins,"1,559 km" +Dayton,Panama City,,12 hours 12 mins,"1,258 km" +Dayton,Key West,,19 hours 59 mins,"2,146 km" +Dayton,West Palm Beach,,16 hours 1 min,"1,787 km" +Dayton,Miami,,16 hours 59 mins,"1,892 km" +Dayton,Tallahassee,,11 hours 49 mins,"1,258 km" +Dayton,Punta Gorda,,15 hours 19 mins,"1,714 km" +Dayton,Fort Lauderdale,,16 hours 38 mins,"1,855 km" +Dayton,Pensacola,,11 hours 24 mins,"1,236 km" +Sarasota,Dayton,,14 hours 46 mins,"1,645 km" +Fort Myers,Dayton,,15 hours 42 mins,"1,751 km" +Gainesville,Dayton,,12 hours 21 mins,"1,359 km" +Orlando,Dayton,,13 hours 43 mins,"1,531 km" +Daytona Beach,Dayton,,13 hours 49 mins,"1,522 km" +Jacksonville,Dayton,,12 hours 28 mins,"1,349 km" +Tampa,Dayton,,13 hours 57 mins,"1,560 km" +Panama City,Dayton,,12 hours 12 mins,"1,253 km" +Key West,Dayton,,19 hours 58 mins,"2,146 km" +West Palm Beach,Dayton,,15 hours 58 mins,"1,789 km" +Miami,Dayton,,16 hours 55 mins,"1,895 km" +Tallahassee,Dayton,,11 hours 48 mins,"1,258 km" +Punta Gorda,Dayton,,15 hours 17 mins,"1,715 km" +Fort Lauderdale,Dayton,,16 hours 36 mins,"1,857 km" +Pensacola,Dayton,,11 hours 19 mins,"1,234 km" +Philadelphia,Knoxville,,9 hours 21 mins,"1,007 km" +Knoxville,Philadelphia,,9 hours 20 mins,"1,007 km" +Oklahoma City,Alamosa,,8 hours 53 mins,922 km +Oklahoma City,Grand Junction,,13 hours 10 mins,"1,282 km" +Oklahoma City,Durango,,11 hours 17 mins,"1,213 km" +Oklahoma City,Colorado Springs,,9 hours 0 mins,952 km +Oklahoma City,Gunnison,,10 hours 51 mins,"1,083 km" +Oklahoma City,Denver,,9 hours 43 mins,"1,091 km" +Alamosa,Oklahoma City,,8 hours 50 mins,920 km +Grand Junction,Oklahoma City,,13 hours 12 mins,"1,281 km" +Durango,Oklahoma City,,11 hours 13 mins,"1,212 km" +Colorado Springs,Oklahoma City,,8 hours 58 mins,953 km +Gunnison,Oklahoma City,,10 hours 47 mins,"1,082 km" +Denver,Oklahoma City,,9 hours 39 mins,"1,093 km" +Kansas City,Greensboro,,14 hours 50 mins,"1,600 km" +Kansas City,Wilmington,,17 hours 35 mins,"1,877 km" +Kansas City,New Bern,,17 hours 43 mins,"1,905 km" +Kansas City,Charlotte,,14 hours 24 mins,"1,547 km" +Kansas City,Raleigh,,16 hours 0 mins,"1,719 km" +Kansas City,Asheville,,12 hours 30 mins,"1,363 km" +Kansas City,Fayetteville,,16 hours 20 mins,"1,744 km" +Greensboro,Kansas City,,14 hours 50 mins,"1,596 km" +Wilmington,Kansas City,,17 hours 34 mins,"1,876 km" +New Bern,Kansas City,,17 hours 42 mins,"1,901 km" +Charlotte,Kansas City,,14 hours 22 mins,"1,544 km" +Raleigh,Kansas City,,15 hours 57 mins,"1,716 km" +Asheville,Kansas City,,12 hours 28 mins,"1,361 km" +Fayetteville,Kansas City,,16 hours 20 mins,"1,742 km" +Houston,Colorado Springs,,14 hours 13 mins,"1,546 km" +Colorado Springs,Houston,,14 hours 13 mins,"1,551 km" +Syracuse,Denver,,1 day 0 hours,"2,678 km" +Denver,Syracuse,,1 day 0 hours,"2,683 km" +Washington,Green Bay,,13 hours 47 mins,"1,450 km" +Washington,Rhinelander,,15 hours 37 mins,"1,663 km" +Washington,Marquette,,12 hours 6 mins,"1,267 km" +Washington,Madison,,12 hours 59 mins,"1,355 km" +Washington,La Crosse,,14 hours 50 mins,"1,571 km" +Washington,Devils Lake,,13 hours 38 mins,"1,419 km" +Washington,Appleton,,13 hours 37 mins,"1,431 km" +Washington,Mosinee,,14 hours 34 mins,"1,550 km" +Washington,Milwaukee,,12 hours 6 mins,"1,266 km" +Washington,Eau Claire,,15 hours 20 mins,"1,628 km" +Green Bay,Washington,,14 hours 3 mins,"1,450 km" +Rhinelander,Washington,,15 hours 49 mins,"1,672 km" +Marquette,Washington,,12 hours 21 mins,"1,264 km" +Madison,Washington,,13 hours 8 mins,"1,363 km" +La Crosse,Washington,,15 hours 1 min,"1,579 km" +Devils Lake,Washington,,13 hours 50 mins,"1,428 km" +Appleton,Washington,,13 hours 50 mins,"1,430 km" +Mosinee,Washington,,14 hours 45 mins,"1,559 km" +Milwaukee,Washington,,12 hours 22 mins,"1,266 km" +Eau Claire,Washington,,15 hours 31 mins,"1,637 km" +Wichita,Dallas,,5 hours 19 mins,585 km +Dallas,Wichita,,5 hours 19 mins,585 km +West Palm Beach,White Plains,,18 hours 6 mins,"2,007 km" +White Plains,West Palm Beach,,18 hours 12 mins,"2,016 km" +Cleveland,Alamosa,,22 hours 4 mins,"2,393 km" +Cleveland,Grand Junction,,22 hours 56 mins,"2,527 km" +Cleveland,Durango,,1 day 1 hour,"2,633 km" +Cleveland,Colorado Springs,,20 hours 14 mins,"2,256 km" +Cleveland,Gunnison,,22 hours 41 mins,"2,458 km" +Cleveland,Denver,,19 hours 19 mins,"2,141 km" +Alamosa,Cleveland,,22 hours 1 min,"2,395 km" +Grand Junction,Cleveland,,22 hours 53 mins,"2,530 km" +Durango,Cleveland,,1 day 1 hour,"2,635 km" +Colorado Springs,Cleveland,,20 hours 12 mins,"2,257 km" +Gunnison,Cleveland,,22 hours 39 mins,"2,462 km" +Denver,Cleveland,,19 hours 20 mins,"2,147 km" +Grand Rapids,Buffalo,,5 hours 48 mins,620 km +Grand Rapids,Manhattan,,11 hours 14 mins,"1,213 km" +Grand Rapids,Niagara Falls,,5 hours 37 mins,598 km +Grand Rapids,Islip,,12 hours 1 min,"1,284 km" +Grand Rapids,New York,,11 hours 11 mins,"1,200 km" +Grand Rapids,Watertown,,8 hours 37 mins,922 km +Grand Rapids,Newburgh,,11 hours 8 mins,"1,213 km" +Grand Rapids,Syracuse,,7 hours 56 mins,854 km +Grand Rapids,Plattsburgh,,10 hours 47 mins,"1,126 km" +Grand Rapids,Ogdensburg,,8 hours 43 mins,938 km +Grand Rapids,Ithaca,,8 hours 16 mins,859 km +Grand Rapids,Elmira,,8 hours 15 mins,850 km +Grand Rapids,White Plains,,11 hours 18 mins,"1,238 km" +Grand Rapids,Albany,,, +Grand Rapids,Binghamton,,9 hours 1 min,972 km +Grand Rapids,Rochester,,6 hours 51 mins,733 km +Buffalo,Grand Rapids,,5 hours 52 mins,621 km +Manhattan,Grand Rapids,,11 hours 18 mins,"1,213 km" +Niagara Falls,Grand Rapids,,5 hours 42 mins,594 km +Islip,Grand Rapids,,12 hours 8 mins,"1,282 km" +New York,Grand Rapids,,11 hours 15 mins,"1,200 km" +Watertown,Grand Rapids,,8 hours 40 mins,923 km +Newburgh,Grand Rapids,,11 hours 10 mins,"1,212 km" +Syracuse,Grand Rapids,,8 hours 2 mins,854 km +Plattsburgh,Grand Rapids,,10 hours 54 mins,"1,127 km" +Ogdensburg,Grand Rapids,,8 hours 48 mins,939 km +Ithaca,Grand Rapids,,8 hours 21 mins,858 km +Elmira,Grand Rapids,,8 hours 18 mins,851 km +White Plains,Grand Rapids,,11 hours 26 mins,"1,237 km" +Albany,Grand Rapids,,, +Binghamton,Grand Rapids,,9 hours 6 mins,972 km +Rochester,Grand Rapids,,6 hours 57 mins,733 km +Phoenix,Abilene,,12 hours 45 mins,"1,421 km" +Phoenix,Amarillo,,10 hours 31 mins,"1,134 km" +Phoenix,Harlingen,,17 hours 38 mins,"1,987 km" +Phoenix,Lubbock,,11 hours 26 mins,"1,188 km" +Phoenix,College Station,,16 hours 23 mins,"1,780 km" +Phoenix,Corpus Christi,,16 hours 0 mins,"1,812 km" +Phoenix,Wichita Falls,,13 hours 48 mins,"1,489 km" +Phoenix,Waco,,15 hours 24 mins,"1,682 km" +Phoenix,San Angelo,,12 hours 9 mins,"1,343 km" +Phoenix,Houston,,16 hours 51 mins,"1,894 km" +Phoenix,San Antonio,,14 hours 2 mins,"1,580 km" +Phoenix,Del Rio,,12 hours 36 mins,"1,376 km" +Phoenix,Mission,,, +Phoenix,Beaumont,,, +Phoenix,Longview,,17 hours 6 mins,"1,920 km" +Phoenix,Midland,,10 hours 40 mins,"1,184 km" +Phoenix,El Paso,,6 hours 17 mins,694 km +Phoenix,Brownsville,,18 hours 0 mins,"2,027 km" +Phoenix,Austin,,14 hours 52 mins,"1,620 km" +Phoenix,Dallas,,15 hours 19 mins,"1,715 km" +Phoenix,Killeen,,14 hours 41 mins,"1,613 km" +Phoenix,Laredo,,15 hours 32 mins,"1,666 km" +Phoenix,Texarkana,,17 hours 55 mins,"2,000 km" +Abilene,Phoenix,,12 hours 42 mins,"1,420 km" +Amarillo,Phoenix,,10 hours 32 mins,"1,133 km" +Harlingen,Phoenix,,17 hours 31 mins,"1,986 km" +Lubbock,Phoenix,,11 hours 21 mins,"1,204 km" +College Station,Phoenix,,16 hours 20 mins,"1,785 km" +Corpus Christi,Phoenix,,15 hours 55 mins,"1,810 km" +Wichita Falls,Phoenix,,13 hours 50 mins,"1,488 km" +Waco,Phoenix,,15 hours 22 mins,"1,681 km" +San Angelo,Phoenix,,12 hours 5 mins,"1,341 km" +Houston,Phoenix,,16 hours 47 mins,"1,892 km" +San Antonio,Phoenix,,13 hours 58 mins,"1,578 km" +Del Rio,Phoenix,,12 hours 34 mins,"1,375 km" +Mission,Phoenix,,, +Beaumont,Phoenix,,, +Longview,Phoenix,,17 hours 4 mins,"1,918 km" +Midland,Phoenix,,10 hours 36 mins,"1,182 km" +El Paso,Phoenix,,6 hours 15 mins,692 km +Brownsville,Phoenix,,17 hours 55 mins,"2,026 km" +Austin,Phoenix,,14 hours 48 mins,"1,619 km" +Dallas,Phoenix,,15 hours 17 mins,"1,712 km" +Killeen,Phoenix,,14 hours 37 mins,"1,611 km" +Laredo,Phoenix,,15 hours 30 mins,"1,664 km" +Texarkana,Phoenix,,17 hours 55 mins,"2,000 km" +Rochester,Bemidji,,18 hours 29 mins,"1,969 km" +Rochester,Minneapolis,,15 hours 2 mins,"1,625 km" +Rochester,Duluth,,16 hours 0 mins,"1,720 km" +Rochester,Brainerd,,16 hours 58 mins,"1,825 km" +Rochester,Gustavus,,15 hours 29 mins,"1,671 km" +Rochester,St. Cloud,,15 hours 58 mins,"1,727 km" +Rochester,Hibbing,,17 hours 17 mins,"1,840 km" +Rochester,International Falls,,18 hours 41 mins,"1,981 km" +Bemidji,Rochester,,18 hours 27 mins,"1,979 km" +Minneapolis,Rochester,,14 hours 59 mins,"1,633 km" +Duluth,Rochester,,15 hours 59 mins,"1,730 km" +Brainerd,Rochester,,16 hours 57 mins,"1,836 km" +Gustavus,Rochester,,15 hours 27 mins,"1,680 km" +St. Cloud,Rochester,,15 hours 57 mins,"1,738 km" +Hibbing,Rochester,,17 hours 15 mins,"1,850 km" +International Falls,Rochester,,18 hours 39 mins,"1,992 km" +Greensboro,Augusta,,3 hours 50 mins,409 km +Greensboro,Decatur,,5 hours 1 min,525 km +Greensboro,Atlanta,,5 hours 1 min,533 km +Greensboro,Valdosta,,7 hours 49 mins,758 km +Greensboro,Savannah,,5 hours 1 min,511 km +Augusta,Greensboro,,3 hours 50 mins,411 km +Decatur,Greensboro,,5 hours 0 mins,526 km +Atlanta,Greensboro,,4 hours 59 mins,534 km +Valdosta,Greensboro,,7 hours 49 mins,757 km +Savannah,Greensboro,,4 hours 58 mins,523 km +Philadelphia,Charlotte,,8 hours 14 mins,876 km +Charlotte,Philadelphia,,8 hours 11 mins,868 km +Jacksonville,Martha's Vineyard,,18 hours 51 mins,"1,927 km" +Jacksonville,Hyannis,,17 hours 47 mins,"1,907 km" +Jacksonville,Boston,,17 hours 4 mins,"1,843 km" +Jacksonville,Nantucket,,20 hours 5 mins,"1,954 km" +Martha's Vineyard,Jacksonville,,19 hours 1 min,"1,938 km" +Hyannis,Jacksonville,,17 hours 52 mins,"1,916 km" +Boston,Jacksonville,,17 hours 8 mins,"1,853 km" +Nantucket,Jacksonville,,20 hours 9 mins,"1,967 km" +Medford,Alamosa,,20 hours 20 mins,"2,033 km" +Medford,Grand Junction,,15 hours 49 mins,"1,640 km" +Medford,Durango,,17 hours 52 mins,"1,813 km" +Medford,Colorado Springs,,20 hours 10 mins,"2,131 km" +Medford,Gunnison,,18 hours 10 mins,"1,837 km" +Medford,Denver,,19 hours 12 mins,"2,019 km" +Alamosa,Medford,,20 hours 13 mins,"2,028 km" +Grand Junction,Medford,,15 hours 49 mins,"1,634 km" +Durango,Medford,,17 hours 49 mins,"1,808 km" +Colorado Springs,Medford,,20 hours 10 mins,"2,126 km" +Gunnison,Medford,,18 hours 4 mins,"1,832 km" +Denver,Medford,,19 hours 14 mins,"2,017 km" +Punta Gorda,Pellston,,21 hours 40 mins,"2,457 km" +Punta Gorda,Traverse City,,21 hours 39 mins,"2,387 km" +Punta Gorda,Alpena,,21 hours 39 mins,"2,404 km" +Punta Gorda,Iron Mountain,,, +Punta Gorda,Kalamazoo,,19 hours 7 mins,"2,109 km" +Punta Gorda,Saginaw,,19 hours 21 mins,"2,170 km" +Punta Gorda,Grand Rapids,,19 hours 33 mins,"2,158 km" +Punta Gorda,Lansing,,19 hours 0 mins,"2,135 km" +Punta Gorda,Muskegon,,19 hours 49 mins,"2,173 km" +Punta Gorda,Hancock,,, +Punta Gorda,Detroit,,18 hours 18 mins,"2,050 km" +Punta Gorda,Escanaba,,23 hours 17 mins,"2,558 km" +Pellston,Punta Gorda,,21 hours 42 mins,"2,456 km" +Traverse City,Punta Gorda,,21 hours 43 mins,"2,414 km" +Alpena,Punta Gorda,,21 hours 39 mins,"2,401 km" +Iron Mountain,Punta Gorda,,, +Kalamazoo,Punta Gorda,,19 hours 7 mins,"2,113 km" +Saginaw,Punta Gorda,,19 hours 21 mins,"2,168 km" +Grand Rapids,Punta Gorda,,19 hours 34 mins,"2,160 km" +Lansing,Punta Gorda,,19 hours 2 mins,"2,134 km" +Muskegon,Punta Gorda,,19 hours 51 mins,"2,171 km" +Hancock,Punta Gorda,,, +Detroit,Punta Gorda,,18 hours 20 mins,"2,050 km" +Escanaba,Punta Gorda,,23 hours 18 mins,"2,556 km" +Chicago,Newark,,11 hours 41 mins,"1,256 km" +Newark,Chicago,,11 hours 48 mins,"1,256 km" +Washington,Bemidji,,20 hours 8 mins,"2,120 km" +Washington,Minneapolis,,16 hours 41 mins,"1,776 km" +Washington,Duluth,,17 hours 38 mins,"1,871 km" +Washington,Brainerd,,18 hours 37 mins,"1,976 km" +Washington,Gustavus,,17 hours 7 mins,"1,822 km" +Washington,St. Cloud,,17 hours 37 mins,"1,878 km" +Washington,Hibbing,,18 hours 55 mins,"1,991 km" +Washington,International Falls,,20 hours 19 mins,"2,132 km" +Bemidji,Washington,,20 hours 18 mins,"2,130 km" +Minneapolis,Washington,,16 hours 50 mins,"1,783 km" +Duluth,Washington,,17 hours 50 mins,"1,881 km" +Brainerd,Washington,,18 hours 48 mins,"1,987 km" +Gustavus,Washington,,17 hours 18 mins,"1,830 km" +St. Cloud,Washington,,17 hours 49 mins,"1,889 km" +Hibbing,Washington,,19 hours 7 mins,"2,001 km" +International Falls,Washington,,20 hours 30 mins,"2,142 km" +Santa Barbara,Phoenix,,7 hours 10 mins,755 km +Phoenix,Santa Barbara,,7 hours 9 mins,753 km +Baltimore,Louisville,,9 hours 7 mins,982 km +Louisville,Baltimore,,9 hours 11 mins,981 km +Memphis,Greensboro,,10 hours 3 mins,"1,087 km" +Memphis,Wilmington,,11 hours 43 mins,"1,291 km" +Memphis,New Bern,,12 hours 56 mins,"1,392 km" +Memphis,Charlotte,,9 hours 27 mins,998 km +Memphis,Raleigh,,11 hours 13 mins,"1,206 km" +Memphis,Asheville,,7 hours 34 mins,813 km +Memphis,Fayetteville,,11 hours 0 mins,"1,222 km" +Greensboro,Memphis,,10 hours 2 mins,"1,086 km" +Wilmington,Memphis,,11 hours 45 mins,"1,303 km" +New Bern,Memphis,,12 hours 55 mins,"1,391 km" +Charlotte,Memphis,,9 hours 27 mins,996 km +Raleigh,Memphis,,11 hours 10 mins,"1,206 km" +Asheville,Memphis,,7 hours 33 mins,813 km +Fayetteville,Memphis,,11 hours 2 mins,"1,233 km" +Houston,Flagstaff,,17 hours 25 mins,"1,936 km" +Houston,Yuma,,18 hours 29 mins,"2,092 km" +Houston,Phoenix,,16 hours 47 mins,"1,892 km" +Houston,Prescott,,18 hours 24 mins,"2,052 km" +Houston,Tucson,,15 hours 14 mins,"1,715 km" +Flagstaff,Houston,,17 hours 20 mins,"1,936 km" +Yuma,Houston,,18 hours 33 mins,"2,092 km" +Phoenix,Houston,,16 hours 51 mins,"1,894 km" +Prescott,Houston,,18 hours 24 mins,"2,053 km" +Tucson,Houston,,15 hours 16 mins,"1,717 km" +Nashville,Las Vegas,,1 day 2 hours,"2,885 km" +Las Vegas,Nashville,,1 day 2 hours,"2,885 km" +Elmira,Sarasota,,18 hours 49 mins,"1,999 km" +Elmira,Fort Myers,,19 hours 47 mins,"2,104 km" +Elmira,Gainesville,,16 hours 9 mins,"1,708 km" +Elmira,Orlando,,17 hours 2 mins,"1,826 km" +Elmira,Daytona Beach,,16 hours 25 mins,"1,752 km" +Elmira,Jacksonville,,14 hours 59 mins,"1,598 km" +Elmira,Tampa,,18 hours 2 mins,"1,914 km" +Elmira,Panama City,,18 hours 17 mins,"1,879 km" +Elmira,Key West,,22 hours 58 mins,"2,408 km" +Elmira,West Palm Beach,,18 hours 58 mins,"2,056 km" +Elmira,Miami,,19 hours 58 mins,"2,155 km" +Elmira,Tallahassee,,17 hours 23 mins,"1,857 km" +Elmira,Punta Gorda,,19 hours 21 mins,"2,069 km" +Elmira,Fort Lauderdale,,19 hours 35 mins,"2,124 km" +Elmira,Pensacola,,18 hours 12 mins,"1,944 km" +Sarasota,Elmira,,18 hours 41 mins,"1,992 km" +Fort Myers,Elmira,,19 hours 38 mins,"2,097 km" +Gainesville,Elmira,,16 hours 3 mins,"1,702 km" +Orlando,Elmira,,16 hours 48 mins,"1,815 km" +Daytona Beach,Elmira,,16 hours 14 mins,"1,732 km" +Jacksonville,Elmira,,14 hours 51 mins,"1,590 km" +Tampa,Elmira,,17 hours 53 mins,"1,907 km" +Panama City,Elmira,,18 hours 15 mins,"1,878 km" +Key West,Elmira,,22 hours 48 mins,"2,399 km" +West Palm Beach,Elmira,,18 hours 46 mins,"2,046 km" +Miami,Elmira,,19 hours 45 mins,"2,147 km" +Tallahassee,Elmira,,17 hours 15 mins,"1,854 km" +Punta Gorda,Elmira,,19 hours 13 mins,"2,061 km" +Fort Lauderdale,Elmira,,19 hours 24 mins,"2,114 km" +Pensacola,Elmira,,18 hours 7 mins,"1,942 km" +New York,Nashville,,13 hours 17 mins,"1,423 km" +New York,Bristol,,, +New York,Knoxville,,10 hours 40 mins,"1,136 km" +New York,Chattanooga,,12 hours 16 mins,"1,313 km" +New York,Memphis,,16 hours 19 mins,"1,762 km" +Nashville,New York,,13 hours 19 mins,"1,425 km" +Bristol,New York,,, +Knoxville,New York,,10 hours 40 mins,"1,138 km" +Chattanooga,New York,,12 hours 18 mins,"1,316 km" +Memphis,New York,,16 hours 21 mins,"1,764 km" +Houston,San Diego,,20 hours 58 mins,"2,366 km" +Houston,Redding,,1 day 6 hours,"3,366 km" +Houston,Sacramento,,1 day 4 hours,"3,107 km" +Houston,Fresno,,1 day 2 hours,"2,841 km" +Houston,San Luis Obispo,,1 day 1 hour,"2,796 km" +Houston,Oakland,,1 day 4 hours,"3,085 km" +Houston,Santa Barbara,,23 hours 46 mins,"2,645 km" +Houston,Stockton,,1 day 3 hours,"3,032 km" +Houston,Santa Rosa,,1 day 5 hours,"3,178 km" +Houston,Bakersfield,,23 hours 58 mins,"2,668 km" +Houston,Santa Ana,,22 hours 8 mins,"2,494 km" +Houston,Santa Maria,,1 day 1 hour,"2,748 km" +Houston,San Jose,,1 day 3 hours,"3,036 km" +Houston,Burbank,,22 hours 26 mins,"2,512 km" +Houston,Arcata,,1 day 8 hours,"3,538 km" +Houston,Butte,,1 day 5 hours,"3,240 km" +Houston,Palm Springs,,20 hours 45 mins,"2,324 km" +Houston,Los Angeles,,22 hours 18 mins,"2,491 km" +Houston,Long Beach,,22 hours 29 mins,"2,509 km" +Houston,San Francisco,,1 day 4 hours,"3,104 km" +Houston,Monterey,,1 day 3 hours,"3,002 km" +San Diego,Houston,,21 hours 3 mins,"2,365 km" +Redding,Houston,,1 day 6 hours,"3,365 km" +Sacramento,Houston,,1 day 4 hours,"3,107 km" +Fresno,Houston,,1 day 2 hours,"2,840 km" +San Luis Obispo,Houston,,1 day 1 hour,"2,797 km" +Oakland,Houston,,1 day 4 hours,"3,085 km" +Santa Barbara,Houston,,23 hours 48 mins,"2,645 km" +Stockton,Houston,,1 day 3 hours,"3,032 km" +Santa Rosa,Houston,,1 day 5 hours,"3,177 km" +Bakersfield,Houston,,23 hours 59 mins,"2,669 km" +Santa Ana,Houston,,22 hours 8 mins,"2,468 km" +Santa Maria,Houston,,1 day 1 hour,"2,747 km" +San Jose,Houston,,1 day 3 hours,"3,035 km" +Burbank,Houston,,22 hours 24 mins,"2,506 km" +Arcata,Houston,,1 day 8 hours,"3,539 km" +Butte,Houston,,1 day 5 hours,"3,240 km" +Palm Springs,Houston,,20 hours 47 mins,"2,323 km" +Los Angeles,Houston,,22 hours 17 mins,"2,490 km" +Long Beach,Houston,,22 hours 26 mins,"2,501 km" +San Francisco,Houston,,1 day 4 hours,"3,103 km" +Monterey,Houston,,1 day 3 hours,"3,001 km" +La Crosse,Detroit,,8 hours 18 mins,912 km +Detroit,La Crosse,,8 hours 23 mins,915 km +Roswell,Flagstaff,,7 hours 34 mins,838 km +Roswell,Yuma,,10 hours 24 mins,"1,129 km" +Roswell,Phoenix,,8 hours 42 mins,929 km +Roswell,Prescott,,9 hours 5 mins,988 km +Roswell,Tucson,,7 hours 9 mins,753 km +Flagstaff,Roswell,,7 hours 31 mins,837 km +Yuma,Roswell,,10 hours 30 mins,"1,118 km" +Phoenix,Roswell,,8 hours 48 mins,921 km +Prescott,Roswell,,9 hours 2 mins,989 km +Tucson,Roswell,,7 hours 13 mins,744 km +Baltimore,San Diego,,1 day 15 hours,"4,232 km" +San Diego,Baltimore,,1 day 15 hours,"4,229 km" +Sioux Falls,Abilene,,13 hours 33 mins,"1,491 km" +Sioux Falls,Amarillo,,12 hours 34 mins,"1,260 km" +Sioux Falls,Harlingen,,19 hours 33 mins,"2,168 km" +Sioux Falls,Lubbock,,14 hours 15 mins,"1,459 km" +Sioux Falls,College Station,,14 hours 45 mins,"1,621 km" +Sioux Falls,Corpus Christi,,17 hours 55 mins,"1,992 km" +Sioux Falls,Wichita Falls,,11 hours 19 mins,"1,247 km" +Sioux Falls,Waco,,13 hours 27 mins,"1,486 km" +Sioux Falls,San Angelo,,14 hours 49 mins,"1,625 km" +Sioux Falls,Houston,,15 hours 42 mins,"1,736 km" +Sioux Falls,San Antonio,,16 hours 4 mins,"1,771 km" +Sioux Falls,Del Rio,,17 hours 14 mins,"1,878 km" +Sioux Falls,Mission,,, +Sioux Falls,Beaumont,,, +Sioux Falls,Longview,,13 hours 33 mins,"1,364 km" +Sioux Falls,Midland,,15 hours 24 mins,"1,692 km" +Sioux Falls,El Paso,,18 hours 32 mins,"1,857 km" +Sioux Falls,Brownsville,,19 hours 54 mins,"2,207 km" +Sioux Falls,Austin,,14 hours 52 mins,"1,644 km" +Sioux Falls,Dallas,,12 hours 19 mins,"1,352 km" +Sioux Falls,Killeen,,14 hours 16 mins,"1,579 km" +Sioux Falls,Laredo,,18 hours 20 mins,"2,021 km" +Sioux Falls,Texarkana,,12 hours 59 mins,"1,354 km" +Abilene,Sioux Falls,,13 hours 30 mins,"1,491 km" +Amarillo,Sioux Falls,,12 hours 33 mins,"1,260 km" +Harlingen,Sioux Falls,,19 hours 24 mins,"2,167 km" +Lubbock,Sioux Falls,,14 hours 14 mins,"1,459 km" +College Station,Sioux Falls,,14 hours 40 mins,"1,620 km" +Corpus Christi,Sioux Falls,,17 hours 48 mins,"1,991 km" +Wichita Falls,Sioux Falls,,11 hours 14 mins,"1,246 km" +Waco,Sioux Falls,,13 hours 23 mins,"1,482 km" +San Angelo,Sioux Falls,,14 hours 44 mins,"1,624 km" +Houston,Sioux Falls,,15 hours 38 mins,"1,735 km" +San Antonio,Sioux Falls,,15 hours 59 mins,"1,770 km" +Del Rio,Sioux Falls,,17 hours 7 mins,"1,878 km" +Mission,Sioux Falls,,, +Beaumont,Sioux Falls,,, +Longview,Sioux Falls,,13 hours 31 mins,"1,364 km" +Midland,Sioux Falls,,15 hours 20 mins,"1,693 km" +El Paso,Sioux Falls,,18 hours 27 mins,"1,857 km" +Brownsville,Sioux Falls,,19 hours 48 mins,"2,207 km" +Austin,Sioux Falls,,14 hours 48 mins,"1,644 km" +Dallas,Sioux Falls,,12 hours 15 mins,"1,351 km" +Killeen,Sioux Falls,,14 hours 13 mins,"1,579 km" +Laredo,Sioux Falls,,18 hours 16 mins,"2,021 km" +Texarkana,Sioux Falls,,12 hours 52 mins,"1,351 km" +Providence,Pellston,,13 hours 50 mins,"1,502 km" +Providence,Traverse City,,13 hours 50 mins,"1,461 km" +Providence,Alpena,,13 hours 49 mins,"1,449 km" +Providence,Iron Mountain,,, +Providence,Kalamazoo,,13 hours 24 mins,"1,435 km" +Providence,Saginaw,,11 hours 30 mins,"1,215 km" +Providence,Grand Rapids,,12 hours 32 mins,"1,337 km" +Providence,Lansing,,11 hours 43 mins,"1,246 km" +Providence,Muskegon,,13 hours 5 mins,"1,400 km" +Providence,Hancock,,, +Providence,Detroit,,10 hours 50 mins,"1,128 km" +Providence,Escanaba,,16 hours 20 mins,"1,750 km" +Pellston,Providence,,13 hours 45 mins,"1,502 km" +Traverse City,Providence,,13 hours 46 mins,"1,460 km" +Alpena,Providence,,13 hours 42 mins,"1,447 km" +Iron Mountain,Providence,,, +Kalamazoo,Providence,,13 hours 18 mins,"1,420 km" +Saginaw,Providence,,11 hours 24 mins,"1,214 km" +Grand Rapids,Providence,,12 hours 25 mins,"1,336 km" +Lansing,Providence,,11 hours 38 mins,"1,243 km" +Muskegon,Providence,,12 hours 59 mins,"1,400 km" +Hancock,Providence,,, +Detroit,Providence,,10 hours 43 mins,"1,127 km" +Escanaba,Providence,,16 hours 13 mins,"1,749 km" +Moline,Sarasota,,18 hours 46 mins,"2,076 km" +Moline,Fort Myers,,19 hours 43 mins,"2,182 km" +Moline,Gainesville,,16 hours 22 mins,"1,792 km" +Moline,Orlando,,17 hours 46 mins,"1,964 km" +Moline,Daytona Beach,,17 hours 50 mins,"1,964 km" +Moline,Jacksonville,,16 hours 27 mins,"1,815 km" +Moline,Tampa,,17 hours 58 mins,"1,992 km" +Moline,Panama City,,15 hours 13 mins,"1,599 km" +Moline,Key West,,23 hours 58 mins,"2,578 km" +Moline,West Palm Beach,,19 hours 59 mins,"2,220 km" +Moline,Miami,,20 hours 58 mins,"2,325 km" +Moline,Tallahassee,,15 hours 30 mins,"1,653 km" +Moline,Punta Gorda,,19 hours 18 mins,"2,147 km" +Moline,Fort Lauderdale,,20 hours 37 mins,"2,288 km" +Moline,Pensacola,,14 hours 25 mins,"1,576 km" +Sarasota,Moline,,18 hours 45 mins,"2,081 km" +Fort Myers,Moline,,19 hours 42 mins,"2,186 km" +Gainesville,Moline,,16 hours 21 mins,"1,795 km" +Orlando,Moline,,17 hours 42 mins,"1,966 km" +Daytona Beach,Moline,,17 hours 48 mins,"1,958 km" +Jacksonville,Moline,,16 hours 28 mins,"1,818 km" +Tampa,Moline,,17 hours 57 mins,"1,995 km" +Panama City,Moline,,15 hours 15 mins,"1,596 km" +Key West,Moline,,23 hours 58 mins,"2,582 km" +West Palm Beach,Moline,,19 hours 57 mins,"2,224 km" +Miami,Moline,,20 hours 54 mins,"2,330 km" +Tallahassee,Moline,,15 hours 32 mins,"1,651 km" +Punta Gorda,Moline,,19 hours 16 mins,"2,150 km" +Fort Lauderdale,Moline,,20 hours 35 mins,"2,292 km" +Pensacola,Moline,,14 hours 21 mins,"1,577 km" +Lexington,Chicago,,5 hours 46 mins,598 km +Chicago,Lexington,,5 hours 46 mins,600 km +La Crosse,Bemidji,,6 hours 0 mins,601 km +La Crosse,Minneapolis,,2 hours 32 mins,256 km +La Crosse,Duluth,,4 hours 1 min,386 km +La Crosse,Brainerd,,4 hours 29 mins,457 km +La Crosse,Gustavus,,2 hours 31 mins,261 km +La Crosse,St. Cloud,,3 hours 30 mins,359 km +La Crosse,Hibbing,,5 hours 17 mins,505 km +La Crosse,International Falls,,6 hours 42 mins,647 km +Bemidji,La Crosse,,6 hours 0 mins,601 km +Minneapolis,La Crosse,,2 hours 33 mins,255 km +Duluth,La Crosse,,4 hours 1 min,386 km +Brainerd,La Crosse,,4 hours 31 mins,458 km +Gustavus,La Crosse,,2 hours 34 mins,261 km +St. Cloud,La Crosse,,3 hours 31 mins,360 km +Hibbing,La Crosse,,5 hours 17 mins,506 km +International Falls,La Crosse,,6 hours 41 mins,647 km +Sun Valley,Seattle,,10 hours 0 mins,"1,037 km" +Sun Valley,Wenatchee,,9 hours 4 mins,916 km +Sun Valley,Pasco,,, +Sun Valley,Yakima,,7 hours 53 mins,810 km +Sun Valley,Walla Walla,,6 hours 29 mins,651 km +Sun Valley,Everett,,10 hours 22 mins,"1,072 km" +Sun Valley,Spokane,,8 hours 49 mins,769 km +Seattle,Sun Valley,,10 hours 0 mins,"1,039 km" +Wenatchee,Sun Valley,,9 hours 5 mins,918 km +Pasco,Sun Valley,,, +Yakima,Sun Valley,,7 hours 53 mins,811 km +Walla Walla,Sun Valley,,6 hours 32 mins,652 km +Everett,Sun Valley,,10 hours 21 mins,"1,074 km" +Spokane,Sun Valley,,8 hours 44 mins,770 km +Wilmington,Washington,,5 hours 31 mins,585 km +Washington,Wilmington,,5 hours 31 mins,586 km +Cincinnati,Greensboro,,7 hours 6 mins,707 km +Cincinnati,Wilmington,,9 hours 59 mins,"1,034 km" +Cincinnati,New Bern,,9 hours 59 mins,"1,012 km" +Cincinnati,Charlotte,,7 hours 24 mins,743 km +Cincinnati,Raleigh,,8 hours 16 mins,827 km +Cincinnati,Asheville,,5 hours 32 mins,587 km +Cincinnati,Fayetteville,,8 hours 36 mins,852 km +Greensboro,Cincinnati,,7 hours 6 mins,706 km +Wilmington,Cincinnati,,9 hours 59 mins,"1,033 km" +New Bern,Cincinnati,,9 hours 59 mins,"1,011 km" +Charlotte,Cincinnati,,7 hours 26 mins,744 km +Raleigh,Cincinnati,,8 hours 14 mins,826 km +Asheville,Cincinnati,,5 hours 33 mins,586 km +Fayetteville,Cincinnati,,8 hours 37 mins,852 km +Houston,Salt Lake City,,22 hours 24 mins,"2,377 km" +Houston,Moab,,18 hours 42 mins,"2,001 km" +Houston,Ogden,,22 hours 43 mins,"2,485 km" +Houston,Vernal,,20 hours 32 mins,"2,084 km" +Houston,Provo,,21 hours 47 mins,"2,306 km" +Houston,Cedar City,,21 hours 37 mins,"2,296 km" +Salt Lake City,Houston,,22 hours 21 mins,"2,377 km" +Moab,Houston,,18 hours 40 mins,"2,001 km" +Ogden,Houston,,22 hours 41 mins,"2,452 km" +Vernal,Houston,,20 hours 31 mins,"2,167 km" +Provo,Houston,,21 hours 46 mins,"2,307 km" +Cedar City,Houston,,21 hours 34 mins,"2,296 km" +Washington,Cincinnati,,7 hours 55 mins,808 km +Cincinnati,Washington,,8 hours 5 mins,805 km +Rochester,Charlotte,,10 hours 59 mins,"1,167 km" +Charlotte,Rochester,,10 hours 57 mins,"1,166 km" +Louisville,Alamosa,,17 hours 49 mins,"1,925 km" +Louisville,Grand Junction,,19 hours 42 mins,"2,172 km" +Louisville,Durango,,20 hours 41 mins,"2,165 km" +Louisville,Colorado Springs,,15 hours 59 mins,"1,757 km" +Louisville,Gunnison,,19 hours 9 mins,"2,032 km" +Louisville,Denver,,16 hours 3 mins,"1,783 km" +Alamosa,Louisville,,17 hours 41 mins,"1,926 km" +Grand Junction,Louisville,,19 hours 33 mins,"2,172 km" +Durango,Louisville,,20 hours 32 mins,"2,166 km" +Colorado Springs,Louisville,,15 hours 52 mins,"1,758 km" +Gunnison,Louisville,,18 hours 59 mins,"2,024 km" +Denver,Louisville,,15 hours 57 mins,"1,787 km" +Traverse City,New York,,12 hours 57 mins,"1,372 km" +New York,Traverse City,,12 hours 57 mins,"1,372 km" +Pittsburgh,Baltimore,,3 hours 58 mins,400 km +Baltimore,Pittsburgh,,3 hours 58 mins,398 km +Sacramento,Atlanta,,1 day 12 hours,"3,973 km" +Atlanta,Sacramento,,1 day 12 hours,"3,985 km" +Detroit,San Diego,,1 day 10 hours,"3,770 km" +Detroit,Redding,,1 day 11 hours,"3,815 km" +Detroit,Sacramento,,1 day 9 hours,"3,712 km" +Detroit,Fresno,,1 day 11 hours,"3,872 km" +Detroit,San Luis Obispo,,1 day 11 hours,"3,915 km" +Detroit,Oakland,,1 day 11 hours,"3,842 km" +Detroit,Santa Barbara,,1 day 10 hours,"3,814 km" +Detroit,Stockton,,1 day 10 hours,"3,789 km" +Detroit,Santa Rosa,,1 day 11 hours,"3,868 km" +Detroit,Bakersfield,,1 day 9 hours,"3,696 km" +Detroit,Santa Ana,,1 day 9 hours,"3,671 km" +Detroit,Santa Maria,,1 day 11 hours,"3,870 km" +Detroit,San Jose,,1 day 11 hours,"3,905 km" +Detroit,Burbank,,1 day 9 hours,"3,681 km" +Detroit,Arcata,,1 day 13 hours,"4,040 km" +Detroit,Butte,,1 day 10 hours,"3,752 km" +Detroit,Palm Springs,,1 day 9 hours,"3,686 km" +Detroit,Los Angeles,,1 day 9 hours,"3,671 km" +Detroit,Long Beach,,1 day 9 hours,"3,693 km" +Detroit,San Francisco,,1 day 11 hours,"3,852 km" +Detroit,Monterey,,1 day 12 hours,"4,012 km" +San Diego,Detroit,,1 day 10 hours,"3,770 km" +Redding,Detroit,,1 day 10 hours,"3,822 km" +Sacramento,Detroit,,1 day 9 hours,"3,719 km" +Fresno,Detroit,,1 day 11 hours,"3,872 km" +San Luis Obispo,Detroit,,1 day 11 hours,"3,917 km" +Oakland,Detroit,,1 day 11 hours,"3,849 km" +Santa Barbara,Detroit,,1 day 10 hours,"3,814 km" +Stockton,Detroit,,1 day 10 hours,"3,796 km" +Santa Rosa,Detroit,,1 day 11 hours,"3,875 km" +Bakersfield,Detroit,,1 day 9 hours,"3,697 km" +Santa Ana,Detroit,,1 day 9 hours,"3,668 km" +Santa Maria,Detroit,,1 day 11 hours,"3,873 km" +San Jose,Detroit,,1 day 11 hours,"3,910 km" +Burbank,Detroit,,1 day 9 hours,"3,675 km" +Arcata,Detroit,,1 day 13 hours,"4,045 km" +Butte,Detroit,,1 day 10 hours,"3,758 km" +Palm Springs,Detroit,,1 day 9 hours,"3,684 km" +Los Angeles,Detroit,,1 day 9 hours,"3,671 km" +Long Beach,Detroit,,1 day 9 hours,"3,698 km" +San Francisco,Detroit,,1 day 11 hours,"3,859 km" +Monterey,Detroit,,1 day 12 hours,"4,017 km" +Boston,Abilene,,1 day 5 hours,"3,135 km" +Boston,Amarillo,,1 day 4 hours,"3,135 km" +Boston,Harlingen,,1 day 8 hours,"3,502 km" +Boston,Lubbock,,1 day 6 hours,"3,274 km" +Boston,College Station,,1 day 4 hours,"2,995 km" +Boston,Corpus Christi,,1 day 6 hours,"3,307 km" +Boston,Wichita Falls,,1 day 3 hours,"2,939 km" +Boston,Waco,,1 day 4 hours,"3,001 km" +Boston,San Angelo,,1 day 6 hours,"3,259 km" +Boston,Houston,,1 day 3 hours,"2,974 km" +Boston,San Antonio,,1 day 6 hours,"3,288 km" +Boston,Del Rio,,1 day 9 hours,"3,512 km" +Boston,Mission,,, +Boston,Beaumont,,, +Boston,Longview,,1 day 1 hour,"2,728 km" +Boston,Midland,,1 day 7 hours,"3,385 km" +Boston,El Paso,,1 day 11 hours,"3,833 km" +Boston,Brownsville,,1 day 9 hours,"3,541 km" +Boston,Austin,,1 day 5 hours,"3,160 km" +Boston,Dallas,,1 day 2 hours,"2,846 km" +Boston,Killeen,,1 day 4 hours,"3,094 km" +Boston,Laredo,,1 day 8 hours,"3,480 km" +Boston,Texarkana,,23 hours 46 mins,"2,566 km" +Abilene,Boston,,1 day 5 hours,"3,137 km" +Amarillo,Boston,,1 day 4 hours,"3,135 km" +Harlingen,Boston,,1 day 8 hours,"3,503 km" +Lubbock,Boston,,1 day 6 hours,"3,274 km" +College Station,Boston,,1 day 4 hours,"2,996 km" +Corpus Christi,Boston,,1 day 6 hours,"3,314 km" +Wichita Falls,Boston,,1 day 3 hours,"2,940 km" +Waco,Boston,,1 day 4 hours,"2,998 km" +San Angelo,Boston,,1 day 6 hours,"3,261 km" +Houston,Boston,,1 day 3 hours,"2,976 km" +San Antonio,Boston,,1 day 6 hours,"3,286 km" +Del Rio,Boston,,1 day 8 hours,"3,514 km" +Mission,Boston,,, +Beaumont,Boston,,, +Longview,Boston,,1 day 1 hour,"2,729 km" +Midland,Boston,,1 day 7 hours,"3,387 km" +El Paso,Boston,,1 day 11 hours,"3,832 km" +Brownsville,Boston,,1 day 8 hours,"3,543 km" +Austin,Boston,,1 day 5 hours,"3,160 km" +Dallas,Boston,,1 day 2 hours,"2,847 km" +Killeen,Boston,,1 day 4 hours,"3,095 km" +Laredo,Boston,,1 day 8 hours,"3,482 km" +Texarkana,Boston,,23 hours 43 mins,"2,565 km" +Bakersfield,Dallas,,21 hours 9 mins,"2,333 km" +Dallas,Bakersfield,,21 hours 5 mins,"2,332 km" +Orlando,Columbus,,14 hours 0 mins,"1,524 km" +Columbus,Orlando,,14 hours 6 mins,"1,526 km" +Manchester,Washington,,, +Washington,Manchester,,, +Miami,Des Moines,,22 hours 52 mins,"2,523 km" +Des Moines,Miami,,22 hours 54 mins,"2,517 km" +Phoenix,Billings,,18 hours 23 mins,"1,946 km" +Billings,Phoenix,,18 hours 34 mins,"1,951 km" +Bellingham,Los Angeles,,18 hours 46 mins,"1,970 km" +Los Angeles,Bellingham,,18 hours 46 mins,"1,969 km" +Charlotte Amalie,San Juan,,, +San Juan,Charlotte Amalie,,, +Santa Ana,Helena,,16 hours 39 mins,"1,879 km" +Santa Ana,Billings,,18 hours 7 mins,"1,984 km" +Santa Ana,Missoula,,17 hours 6 mins,"1,945 km" +Santa Ana,Kalispell,,19 hours 4 mins,"2,115 km" +Santa Ana,Great Falls,,17 hours 53 mins,"2,020 km" +Santa Ana,Bozeman,,16 hours 3 mins,"1,759 km" +Santa Ana,West Yellowstone,,14 hours 23 mins,"1,616 km" +Helena,Santa Ana,,16 hours 41 mins,"1,883 km" +Billings,Santa Ana,,18 hours 15 mins,"1,992 km" +Missoula,Santa Ana,,17 hours 8 mins,"1,947 km" +Kalispell,Santa Ana,,19 hours 7 mins,"2,118 km" +Great Falls,Santa Ana,,17 hours 55 mins,"2,023 km" +Bozeman,Santa Ana,,16 hours 9 mins,"1,764 km" +West Yellowstone,Santa Ana,,14 hours 27 mins,"1,620 km" +Traverse City,Moline,,7 hours 0 mins,749 km +Traverse City,Belleville,,8 hours 52 mins,943 km +Traverse City,Bloomington,,7 hours 8 mins,733 km +Traverse City,Champaign,,6 hours 19 mins,676 km +Traverse City,Chicago,,4 hours 55 mins,515 km +Traverse City,Rockford,,6 hours 18 mins,664 km +Traverse City,Peoria,,6 hours 48 mins,736 km +Moline,Traverse City,,6 hours 58 mins,747 km +Belleville,Traverse City,,8 hours 49 mins,940 km +Bloomington,Traverse City,,7 hours 4 mins,727 km +Champaign,Traverse City,,6 hours 17 mins,674 km +Chicago,Traverse City,,4 hours 53 mins,514 km +Rockford,Traverse City,,6 hours 14 mins,662 km +Peoria,Traverse City,,6 hours 47 mins,735 km +Rochester,Fort Lauderdale,,20 hours 51 mins,"2,285 km" +Fort Lauderdale,Rochester,,20 hours 40 mins,"2,276 km" +Greer,New York,,10 hours 53 mins,"1,147 km" +New York,Greer,,10 hours 55 mins,"1,156 km" +Austin,Oklahoma City,,5 hours 38 mins,624 km +Oklahoma City,Austin,,5 hours 39 mins,625 km +Denver,Moline,,11 hours 57 mins,"1,357 km" +Denver,Belleville,,12 hours 30 mins,"1,396 km" +Denver,Bloomington,,15 hours 44 mins,"1,722 km" +Denver,Champaign,,14 hours 19 mins,"1,604 km" +Denver,Chicago,,14 hours 25 mins,"1,617 km" +Denver,Rockford,,13 hours 43 mins,"1,545 km" +Denver,Peoria,,13 hours 17 mins,"1,505 km" +Moline,Denver,,12 hours 0 mins,"1,354 km" +Belleville,Denver,,12 hours 34 mins,"1,392 km" +Bloomington,Denver,,15 hours 46 mins,"1,715 km" +Champaign,Denver,,14 hours 24 mins,"1,603 km" +Chicago,Denver,,14 hours 22 mins,"1,612 km" +Rockford,Denver,,13 hours 43 mins,"1,538 km" +Peoria,Denver,,13 hours 20 mins,"1,503 km" +Tampa,Moline,,17 hours 57 mins,"1,995 km" +Tampa,Belleville,,14 hours 26 mins,"1,608 km" +Tampa,Bloomington,,14 hours 3 mins,"1,563 km" +Tampa,Champaign,,15 hours 30 mins,"1,735 km" +Tampa,Chicago,,17 hours 7 mins,"1,887 km" +Tampa,Rockford,,18 hours 10 mins,"2,029 km" +Tampa,Peoria,,16 hours 33 mins,"1,845 km" +Moline,Tampa,,17 hours 58 mins,"1,992 km" +Belleville,Tampa,,14 hours 28 mins,"1,603 km" +Bloomington,Tampa,,14 hours 7 mins,"1,562 km" +Champaign,Tampa,,15 hours 33 mins,"1,733 km" +Chicago,Tampa,,17 hours 8 mins,"1,886 km" +Rockford,Tampa,,18 hours 7 mins,"2,022 km" +Peoria,Tampa,,16 hours 37 mins,"1,843 km" +Fort Wayne,Greensboro,,8 hours 56 mins,902 km +Fort Wayne,Wilmington,,11 hours 50 mins,"1,229 km" +Fort Wayne,New Bern,,11 hours 50 mins,"1,207 km" +Fort Wayne,Charlotte,,9 hours 15 mins,938 km +Fort Wayne,Raleigh,,10 hours 6 mins,"1,022 km" +Fort Wayne,Asheville,,8 hours 29 mins,873 km +Fort Wayne,Fayetteville,,10 hours 26 mins,"1,047 km" +Greensboro,Fort Wayne,,8 hours 58 mins,901 km +Wilmington,Fort Wayne,,11 hours 51 mins,"1,228 km" +New Bern,Fort Wayne,,11 hours 50 mins,"1,206 km" +Charlotte,Fort Wayne,,9 hours 18 mins,939 km +Raleigh,Fort Wayne,,10 hours 5 mins,"1,021 km" +Asheville,Fort Wayne,,8 hours 31 mins,872 km +Fayetteville,Fort Wayne,,10 hours 28 mins,"1,047 km" +St. Louis,Las Vegas,,22 hours 55 mins,"2,570 km" +Las Vegas,St. Louis,,22 hours 50 mins,"2,568 km" +San Francisco,Dallas,,1 day 1 hour,"2,790 km" +Dallas,San Francisco,,1 day 1 hour,"2,787 km" +Jacksonville,Buffalo,,15 hours 22 mins,"1,676 km" +Jacksonville,Manhattan,,13 hours 54 mins,"1,506 km" +Jacksonville,Niagara Falls,,15 hours 43 mins,"1,706 km" +Jacksonville,Islip,,14 hours 34 mins,"1,577 km" +Jacksonville,New York,,13 hours 44 mins,"1,500 km" +Jacksonville,Watertown,,16 hours 47 mins,"1,836 km" +Jacksonville,Newburgh,,14 hours 34 mins,"1,592 km" +Jacksonville,Syracuse,,15 hours 44 mins,"1,723 km" +Jacksonville,Plattsburgh,,18 hours 0 mins,"1,980 km" +Jacksonville,Ogdensburg,,17 hours 46 mins,"1,929 km" +Jacksonville,Ithaca,,15 hours 29 mins,"1,662 km" +Jacksonville,Elmira,,14 hours 51 mins,"1,590 km" +Jacksonville,White Plains,,14 hours 11 mins,"1,550 km" +Jacksonville,Albany,,, +Jacksonville,Binghamton,,14 hours 44 mins,"1,611 km" +Jacksonville,Rochester,,16 hours 7 mins,"1,752 km" +Buffalo,Jacksonville,,15 hours 21 mins,"1,676 km" +Manhattan,Jacksonville,,13 hours 55 mins,"1,514 km" +Niagara Falls,Jacksonville,,15 hours 43 mins,"1,707 km" +Islip,Jacksonville,,14 hours 36 mins,"1,583 km" +New York,Jacksonville,,13 hours 47 mins,"1,508 km" +Watertown,Jacksonville,,16 hours 56 mins,"1,839 km" +Newburgh,Jacksonville,,14 hours 39 mins,"1,601 km" +Syracuse,Jacksonville,,15 hours 52 mins,"1,726 km" +Plattsburgh,Jacksonville,,18 hours 4 mins,"1,989 km" +Ogdensburg,Jacksonville,,17 hours 55 mins,"1,932 km" +Ithaca,Jacksonville,,15 hours 36 mins,"1,669 km" +Elmira,Jacksonville,,14 hours 59 mins,"1,598 km" +White Plains,Jacksonville,,14 hours 13 mins,"1,557 km" +Albany,Jacksonville,,, +Binghamton,Jacksonville,,14 hours 52 mins,"1,613 km" +Rochester,Jacksonville,,16 hours 14 mins,"1,759 km" +San Luis Obispo,Abilene,,21 hours 13 mins,"2,324 km" +San Luis Obispo,Amarillo,,18 hours 0 mins,"1,972 km" +San Luis Obispo,Harlingen,,1 day 2 hours,"2,890 km" +San Luis Obispo,Lubbock,,18 hours 54 mins,"2,026 km" +San Luis Obispo,College Station,,1 day 1 hour,"2,683 km" +San Luis Obispo,Corpus Christi,,1 day 0 hours,"2,715 km" +San Luis Obispo,Wichita Falls,,21 hours 17 mins,"2,327 km" +San Luis Obispo,Waco,,23 hours 52 mins,"2,585 km" +San Luis Obispo,San Angelo,,20 hours 37 mins,"2,246 km" +San Luis Obispo,Houston,,1 day 1 hour,"2,797 km" +San Luis Obispo,San Antonio,,22 hours 30 mins,"2,482 km" +San Luis Obispo,Del Rio,,21 hours 4 mins,"2,278 km" +San Luis Obispo,Mission,,, +San Luis Obispo,Beaumont,,, +San Luis Obispo,Longview,,1 day 1 hour,"2,754 km" +San Luis Obispo,Midland,,19 hours 8 mins,"2,087 km" +San Luis Obispo,El Paso,,14 hours 45 mins,"1,596 km" +San Luis Obispo,Brownsville,,1 day 2 hours,"2,929 km" +San Luis Obispo,Austin,,23 hours 20 mins,"2,522 km" +San Luis Obispo,Dallas,,23 hours 19 mins,"2,554 km" +San Luis Obispo,Killeen,,23 hours 9 mins,"2,516 km" +San Luis Obispo,Laredo,,1 day 0 hours,"2,568 km" +San Luis Obispo,Texarkana,,1 day 2 hours,"2,763 km" +Abilene,San Luis Obispo,,21 hours 11 mins,"2,324 km" +Amarillo,San Luis Obispo,,17 hours 58 mins,"1,970 km" +Harlingen,San Luis Obispo,,1 day 2 hours,"2,890 km" +Lubbock,San Luis Obispo,,18 hours 52 mins,"2,024 km" +College Station,San Luis Obispo,,1 day 1 hour,"2,689 km" +Corpus Christi,San Luis Obispo,,1 day 0 hours,"2,715 km" +Wichita Falls,San Luis Obispo,,21 hours 16 mins,"2,325 km" +Waco,San Luis Obispo,,23 hours 51 mins,"2,585 km" +San Angelo,San Luis Obispo,,20 hours 34 mins,"2,245 km" +Houston,San Luis Obispo,,1 day 1 hour,"2,796 km" +San Antonio,San Luis Obispo,,22 hours 27 mins,"2,482 km" +Del Rio,San Luis Obispo,,21 hours 3 mins,"2,279 km" +Mission,San Luis Obispo,,, +Beaumont,San Luis Obispo,,, +Longview,San Luis Obispo,,1 day 1 hour,"2,758 km" +Midland,San Luis Obispo,,19 hours 5 mins,"2,086 km" +El Paso,San Luis Obispo,,14 hours 44 mins,"1,596 km" +Brownsville,San Luis Obispo,,1 day 2 hours,"2,930 km" +Austin,San Luis Obispo,,23 hours 17 mins,"2,523 km" +Dallas,San Luis Obispo,,23 hours 17 mins,"2,551 km" +Killeen,San Luis Obispo,,23 hours 6 mins,"2,515 km" +Laredo,San Luis Obispo,,23 hours 59 mins,"2,568 km" +Texarkana,San Luis Obispo,,1 day 2 hours,"2,774 km" +Baltimore,Pellston,,11 hours 32 mins,"1,271 km" +Baltimore,Traverse City,,11 hours 32 mins,"1,230 km" +Baltimore,Alpena,,11 hours 30 mins,"1,219 km" +Baltimore,Iron Mountain,,, +Baltimore,Kalamazoo,,9 hours 23 mins,992 km +Baltimore,Saginaw,,9 hours 12 mins,985 km +Baltimore,Grand Rapids,,9 hours 50 mins,"1,058 km" +Baltimore,Lansing,,8 hours 52 mins,950 km +Baltimore,Muskegon,,10 hours 23 mins,"1,121 km" +Baltimore,Hancock,,, +Baltimore,Detroit,,7 hours 59 mins,847 km +Baltimore,Escanaba,,14 hours 2 mins,"1,519 km" +Pellston,Baltimore,,11 hours 34 mins,"1,274 km" +Traverse City,Baltimore,,11 hours 36 mins,"1,233 km" +Alpena,Baltimore,,11 hours 32 mins,"1,220 km" +Iron Mountain,Baltimore,,, +Kalamazoo,Baltimore,,9 hours 23 mins,992 km +Saginaw,Baltimore,,9 hours 13 mins,986 km +Grand Rapids,Baltimore,,9 hours 50 mins,"1,060 km" +Lansing,Baltimore,,8 hours 55 mins,952 km +Muskegon,Baltimore,,10 hours 25 mins,"1,124 km" +Hancock,Baltimore,,, +Detroit,Baltimore,,8 hours 1 min,849 km +Escanaba,Baltimore,,14 hours 3 mins,"1,522 km" +Charlotte,Paducah,,8 hours 20 mins,871 km +Charlotte,Owensboro,,8 hours 10 mins,808 km +Charlotte,Lexington,,6 hours 25 mins,643 km +Charlotte,Louisville,,7 hours 21 mins,762 km +Paducah,Charlotte,,8 hours 20 mins,872 km +Owensboro,Charlotte,,8 hours 11 mins,811 km +Lexington,Charlotte,,6 hours 23 mins,645 km +Louisville,Charlotte,,7 hours 23 mins,763 km +Valparaiso,Baltimore,,, +Baltimore,Valparaiso,,, +Phoenix,San Diego,,5 hours 19 mins,571 km +Phoenix,Redding,,13 hours 44 mins,"1,474 km" +Phoenix,Sacramento,,11 hours 23 mins,"1,216 km" +Phoenix,Fresno,,8 hours 56 mins,949 km +Phoenix,San Luis Obispo,,8 hours 40 mins,905 km +Phoenix,Oakland,,11 hours 11 mins,"1,193 km" +Phoenix,Santa Barbara,,7 hours 9 mins,753 km +Phoenix,Stockton,,10 hours 41 mins,"1,140 km" +Phoenix,Santa Rosa,,12 hours 3 mins,"1,286 km" +Phoenix,Bakersfield,,7 hours 22 mins,776 km +Phoenix,Santa Ana,,5 hours 34 mins,584 km +Phoenix,Santa Maria,,8 hours 16 mins,856 km +Phoenix,San Jose,,10 hours 50 mins,"1,144 km" +Phoenix,Burbank,,5 hours 50 mins,620 km +Phoenix,Arcata,,15 hours 49 mins,"1,646 km" +Phoenix,Butte,,12 hours 49 mins,"1,348 km" +Phoenix,Palm Springs,,4 hours 9 mins,432 km +Phoenix,Los Angeles,,5 hours 42 mins,599 km +Phoenix,Long Beach,,5 hours 52 mins,617 km +Phoenix,San Francisco,,11 hours 24 mins,"1,212 km" +Phoenix,Monterey,,10 hours 39 mins,"1,110 km" +San Diego,Phoenix,,5 hours 22 mins,571 km +Redding,Phoenix,,13 hours 40 mins,"1,475 km" +Sacramento,Phoenix,,11 hours 20 mins,"1,217 km" +Fresno,Phoenix,,8 hours 54 mins,950 km +San Luis Obispo,Phoenix,,8 hours 41 mins,907 km +Oakland,Phoenix,,11 hours 9 mins,"1,195 km" +Santa Barbara,Phoenix,,7 hours 10 mins,755 km +Stockton,Phoenix,,10 hours 37 mins,"1,142 km" +Santa Rosa,Phoenix,,12 hours 2 mins,"1,288 km" +Bakersfield,Phoenix,,7 hours 21 mins,779 km +Santa Ana,Phoenix,,5 hours 30 mins,578 km +Santa Maria,Phoenix,,8 hours 14 mins,857 km +San Jose,Phoenix,,10 hours 47 mins,"1,145 km" +Burbank,Phoenix,,5 hours 46 mins,616 km +Arcata,Phoenix,,15 hours 47 mins,"1,649 km" +Butte,Phoenix,,12 hours 46 mins,"1,350 km" +Palm Springs,Phoenix,,4 hours 9 mins,433 km +Los Angeles,Phoenix,,5 hours 39 mins,600 km +Long Beach,Phoenix,,5 hours 48 mins,611 km +San Francisco,Phoenix,,11 hours 19 mins,"1,213 km" +Monterey,Phoenix,,10 hours 37 mins,"1,112 km" +Des Moines,Flagstaff,,19 hours 33 mins,"2,097 km" +Des Moines,Yuma,,23 hours 58 mins,"2,546 km" +Des Moines,Phoenix,,21 hours 20 mins,"2,252 km" +Des Moines,Prescott,,21 hours 5 mins,"2,248 km" +Des Moines,Tucson,,21 hours 15 mins,"2,245 km" +Flagstaff,Des Moines,,19 hours 26 mins,"2,093 km" +Yuma,Des Moines,,23 hours 55 mins,"2,541 km" +Phoenix,Des Moines,,21 hours 16 mins,"2,249 km" +Prescott,Des Moines,,20 hours 57 mins,"2,244 km" +Tucson,Des Moines,,21 hours 14 mins,"2,232 km" +St. Petersburg,Nashville,,, +St. Petersburg,Bristol,,1 day 9 hours,"2,987 km" +St. Petersburg,Knoxville,,, +St. Petersburg,Chattanooga,,, +St. Petersburg,Memphis,,, +Nashville,St. Petersburg,,, +Bristol,St. Petersburg,,1 day 9 hours,"2,987 km" +Knoxville,St. Petersburg,,, +Chattanooga,St. Petersburg,,, +Memphis,St. Petersburg,,, +Phoenix,Los Angeles,,5 hours 42 mins,599 km +Los Angeles,Phoenix,,5 hours 39 mins,600 km +Fort Myers,Greensboro,,11 hours 29 mins,"1,242 km" +Fort Myers,Wilmington,,11 hours 5 mins,"1,210 km" +Fort Myers,New Bern,,12 hours 20 mins,"1,344 km" +Fort Myers,Charlotte,,10 hours 19 mins,"1,125 km" +Fort Myers,Raleigh,,11 hours 16 mins,"1,237 km" +Fort Myers,Asheville,,11 hours 14 mins,"1,220 km" +Fort Myers,Fayetteville,,10 hours 22 mins,"1,141 km" +Greensboro,Fort Myers,,11 hours 31 mins,"1,227 km" +Wilmington,Fort Myers,,11 hours 6 mins,"1,209 km" +New Bern,Fort Myers,,12 hours 21 mins,"1,342 km" +Charlotte,Fort Myers,,10 hours 19 mins,"1,123 km" +Raleigh,Fort Myers,,11 hours 19 mins,"1,237 km" +Asheville,Fort Myers,,11 hours 13 mins,"1,217 km" +Fayetteville,Fort Myers,,10 hours 23 mins,"1,139 km" +Salt Lake City,Abilene,,16 hours 59 mins,"1,740 km" +Salt Lake City,Amarillo,,13 hours 42 mins,"1,420 km" +Salt Lake City,Harlingen,,23 hours 43 mins,"2,525 km" +Salt Lake City,Lubbock,,14 hours 36 mins,"1,473 km" +Salt Lake City,College Station,,21 hours 14 mins,"2,164 km" +Salt Lake City,Corpus Christi,,22 hours 5 mins,"2,349 km" +Salt Lake City,Wichita Falls,,16 hours 59 mins,"1,774 km" +Salt Lake City,Waco,,19 hours 55 mins,"2,041 km" +Salt Lake City,San Angelo,,17 hours 4 mins,"1,774 km" +Salt Lake City,Houston,,22 hours 21 mins,"2,377 km" +Salt Lake City,San Antonio,,20 hours 7 mins,"2,117 km" +Salt Lake City,Del Rio,,19 hours 13 mins,"1,931 km" +Salt Lake City,Mission,,, +Salt Lake City,Beaumont,,, +Salt Lake City,Longview,,20 hours 53 mins,"2,201 km" +Salt Lake City,Midland,,15 hours 41 mins,"1,607 km" +Salt Lake City,El Paso,,13 hours 19 mins,"1,391 km" +Salt Lake City,Brownsville,,1 day 0 hours,"2,564 km" +Salt Lake City,Austin,,20 hours 25 mins,"2,076 km" +Salt Lake City,Dallas,,19 hours 2 mins,"2,001 km" +Salt Lake City,Killeen,,19 hours 46 mins,"2,013 km" +Salt Lake City,Laredo,,22 hours 8 mins,"2,221 km" +Salt Lake City,Texarkana,,21 hours 19 mins,"2,210 km" +Abilene,Salt Lake City,,17 hours 1 min,"1,739 km" +Amarillo,Salt Lake City,,13 hours 45 mins,"1,419 km" +Harlingen,Salt Lake City,,23 hours 40 mins,"2,520 km" +Lubbock,Salt Lake City,,14 hours 38 mins,"1,473 km" +College Station,Salt Lake City,,21 hours 15 mins,"2,167 km" +Corpus Christi,Salt Lake City,,22 hours 4 mins,"2,345 km" +Wichita Falls,Salt Lake City,,17 hours 2 mins,"1,774 km" +Waco,Salt Lake City,,19 hours 58 mins,"2,099 km" +San Angelo,Salt Lake City,,17 hours 4 mins,"1,772 km" +Houston,Salt Lake City,,22 hours 24 mins,"2,377 km" +San Antonio,Salt Lake City,,20 hours 7 mins,"2,112 km" +Del Rio,Salt Lake City,,19 hours 13 mins,"1,922 km" +Mission,Salt Lake City,,, +Beaumont,Salt Lake City,,, +Longview,Salt Lake City,,20 hours 54 mins,"2,207 km" +Midland,Salt Lake City,,15 hours 43 mins,"1,606 km" +El Paso,Salt Lake City,,13 hours 18 mins,"1,391 km" +Brownsville,Salt Lake City,,1 day 0 hours,"2,560 km" +Austin,Salt Lake City,,20 hours 26 mins,"2,104 km" +Dallas,Salt Lake City,,19 hours 4 mins,"2,000 km" +Killeen,Salt Lake City,,19 hours 49 mins,"2,012 km" +Laredo,Salt Lake City,,22 hours 10 mins,"2,212 km" +Texarkana,Salt Lake City,,21 hours 31 mins,"2,223 km" +Bangor,Newark,,7 hours 5 mins,729 km +Newark,Bangor,,7 hours 3 mins,726 km +Honolulu,San Diego,,, +Honolulu,Redding,,, +Honolulu,Sacramento,,, +Honolulu,Fresno,,, +Honolulu,San Luis Obispo,,, +Honolulu,Oakland,,, +Honolulu,Santa Barbara,,, +Honolulu,Stockton,,, +Honolulu,Santa Rosa,,, +Honolulu,Bakersfield,,, +Honolulu,Santa Ana,,, +Honolulu,Santa Maria,,, +Honolulu,San Jose,,, +Honolulu,Burbank,,, +Honolulu,Arcata,,, +Honolulu,Butte,,, +Honolulu,Palm Springs,,, +Honolulu,Los Angeles,,, +Honolulu,Long Beach,,, +Honolulu,San Francisco,,, +Honolulu,Monterey,,, +San Diego,Honolulu,,, +Redding,Honolulu,,, +Sacramento,Honolulu,,, +Fresno,Honolulu,,, +San Luis Obispo,Honolulu,,, +Oakland,Honolulu,,, +Santa Barbara,Honolulu,,, +Stockton,Honolulu,,, +Santa Rosa,Honolulu,,, +Bakersfield,Honolulu,,, +Santa Ana,Honolulu,,, +Santa Maria,Honolulu,,, +San Jose,Honolulu,,, +Burbank,Honolulu,,, +Arcata,Honolulu,,, +Butte,Honolulu,,, +Palm Springs,Honolulu,,, +Los Angeles,Honolulu,,, +Long Beach,Honolulu,,, +San Francisco,Honolulu,,, +Monterey,Honolulu,,, +Grand Rapids,Tampa,,18 hours 14 mins,"2,005 km" +Tampa,Grand Rapids,,18 hours 13 mins,"2,004 km" +Detroit,Lynchburg,,9 hours 37 mins,948 km +Detroit,Richmond,,9 hours 33 mins,"1,006 km" +Detroit,Petersburg,,9 hours 52 mins,"1,042 km" +Detroit,Newport News,,10 hours 25 mins,"1,105 km" +Detroit,Charlottesville,,9 hours 13 mins,961 km +Detroit,Staunton,,8 hours 43 mins,905 km +Detroit,Jamestown,,10 hours 21 mins,"1,087 km" +Detroit,Norfolk,,10 hours 55 mins,"1,144 km" +Detroit,Roanoke,,8 hours 46 mins,872 km +Lynchburg,Detroit,,9 hours 32 mins,952 km +Richmond,Detroit,,9 hours 28 mins,"1,004 km" +Petersburg,Detroit,,9 hours 48 mins,"1,040 km" +Newport News,Detroit,,10 hours 19 mins,"1,103 km" +Charlottesville,Detroit,,9 hours 14 mins,960 km +Staunton,Detroit,,8 hours 44 mins,904 km +Jamestown,Detroit,,10 hours 15 mins,"1,085 km" +Norfolk,Detroit,,10 hours 49 mins,"1,142 km" +Roanoke,Detroit,,8 hours 42 mins,876 km +Provo,Phoenix,,9 hours 40 mins,997 km +Phoenix,Provo,,9 hours 33 mins,996 km +Green Bay,Pellston,,4 hours 36 mins,438 km +Green Bay,Traverse City,,6 hours 20 mins,598 km +Green Bay,Alpena,,5 hours 59 mins,563 km +Green Bay,Iron Mountain,,, +Green Bay,Kalamazoo,,5 hours 27 mins,580 km +Green Bay,Saginaw,,6 hours 53 mins,716 km +Green Bay,Grand Rapids,,5 hours 53 mins,629 km +Green Bay,Lansing,,6 hours 28 mins,695 km +Green Bay,Muskegon,,6 hours 9 mins,644 km +Green Bay,Hancock,,, +Green Bay,Detroit,,7 hours 21 mins,798 km +Green Bay,Escanaba,,1 hour 58 mins,178 km +Pellston,Green Bay,,4 hours 38 mins,439 km +Traverse City,Green Bay,,6 hours 23 mins,599 km +Alpena,Green Bay,,6 hours 0 mins,563 km +Iron Mountain,Green Bay,,, +Kalamazoo,Green Bay,,5 hours 26 mins,566 km +Saginaw,Green Bay,,6 hours 55 mins,717 km +Grand Rapids,Green Bay,,5 hours 49 mins,617 km +Lansing,Green Bay,,6 hours 25 mins,681 km +Muskegon,Green Bay,,6 hours 6 mins,629 km +Hancock,Green Bay,,, +Detroit,Green Bay,,7 hours 22 mins,785 km +Escanaba,Green Bay,,1 hour 58 mins,178 km +Islip,Sarasota,,18 hours 27 mins,"1,983 km" +Islip,Fort Myers,,19 hours 24 mins,"2,089 km" +Islip,Gainesville,,15 hours 47 mins,"1,693 km" +Islip,Orlando,,16 hours 39 mins,"1,810 km" +Islip,Daytona Beach,,16 hours 2 mins,"1,736 km" +Islip,Jacksonville,,14 hours 36 mins,"1,583 km" +Islip,Tampa,,17 hours 39 mins,"1,899 km" +Islip,Panama City,,18 hours 38 mins,"2,003 km" +Islip,Key West,,22 hours 35 mins,"2,393 km" +Islip,West Palm Beach,,18 hours 35 mins,"2,041 km" +Islip,Miami,,19 hours 35 mins,"2,140 km" +Islip,Tallahassee,,17 hours 0 mins,"1,842 km" +Islip,Punta Gorda,,18 hours 58 mins,"2,053 km" +Islip,Fort Lauderdale,,19 hours 12 mins,"2,109 km" +Islip,Pensacola,,18 hours 48 mins,"1,996 km" +Sarasota,Islip,,18 hours 24 mins,"1,979 km" +Fort Myers,Islip,,19 hours 21 mins,"2,084 km" +Gainesville,Islip,,15 hours 45 mins,"1,689 km" +Orlando,Islip,,16 hours 31 mins,"1,802 km" +Daytona Beach,Islip,,15 hours 57 mins,"1,719 km" +Jacksonville,Islip,,14 hours 34 mins,"1,577 km" +Tampa,Islip,,17 hours 36 mins,"1,894 km" +Panama City,Islip,,18 hours 35 mins,"2,000 km" +Key West,Islip,,22 hours 31 mins,"2,386 km" +West Palm Beach,Islip,,18 hours 28 mins,"2,033 km" +Miami,Islip,,19 hours 28 mins,"2,134 km" +Tallahassee,Islip,,16 hours 58 mins,"1,842 km" +Punta Gorda,Islip,,18 hours 55 mins,"2,048 km" +Fort Lauderdale,Islip,,19 hours 7 mins,"2,101 km" +Pensacola,Islip,,18 hours 43 mins,"1,989 km" +Missoula,Minneapolis,,16 hours 43 mins,"1,901 km" +Minneapolis,Missoula,,16 hours 46 mins,"1,902 km" +Syracuse,Nashville,,12 hours 34 mins,"1,367 km" +Syracuse,Bristol,,, +Syracuse,Knoxville,,11 hours 43 mins,"1,270 km" +Syracuse,Chattanooga,,13 hours 20 mins,"1,447 km" +Syracuse,Memphis,,15 hours 33 mins,"1,704 km" +Nashville,Syracuse,,12 hours 30 mins,"1,366 km" +Bristol,Syracuse,,, +Knoxville,Syracuse,,11 hours 42 mins,"1,270 km" +Chattanooga,Syracuse,,13 hours 20 mins,"1,448 km" +Memphis,Syracuse,,15 hours 30 mins,"1,702 km" +Tampa,Phoenix,,1 day 7 hours,"3,468 km" +Phoenix,Tampa,,1 day 7 hours,"3,469 km" +Sarasota,Chicago,,17 hours 55 mins,"1,972 km" +Chicago,Sarasota,,17 hours 56 mins,"1,970 km" +Syracuse,Moline,,12 hours 18 mins,"1,326 km" +Syracuse,Belleville,,13 hours 11 mins,"1,422 km" +Syracuse,Bloomington,,10 hours 21 mins,"1,116 km" +Syracuse,Champaign,,11 hours 21 mins,"1,231 km" +Syracuse,Chicago,,10 hours 10 mins,"1,090 km" +Syracuse,Rockford,,11 hours 35 mins,"1,230 km" +Syracuse,Peoria,,12 hours 5 mins,"1,312 km" +Moline,Syracuse,,12 hours 18 mins,"1,326 km" +Belleville,Syracuse,,13 hours 11 mins,"1,423 km" +Bloomington,Syracuse,,10 hours 20 mins,"1,116 km" +Champaign,Syracuse,,11 hours 22 mins,"1,230 km" +Chicago,Syracuse,,10 hours 9 mins,"1,091 km" +Rockford,Syracuse,,11 hours 34 mins,"1,240 km" +Peoria,Syracuse,,12 hours 7 mins,"1,314 km" +Myrtle Beach,Nashville,,9 hours 11 mins,949 km +Myrtle Beach,Bristol,,, +Myrtle Beach,Knoxville,,6 hours 34 mins,662 km +Myrtle Beach,Chattanooga,,7 hours 21 mins,772 km +Myrtle Beach,Memphis,,11 hours 13 mins,"1,212 km" +Nashville,Myrtle Beach,,9 hours 10 mins,949 km +Bristol,Myrtle Beach,,, +Knoxville,Myrtle Beach,,6 hours 32 mins,662 km +Chattanooga,Myrtle Beach,,7 hours 21 mins,772 km +Memphis,Myrtle Beach,,11 hours 12 mins,"1,199 km" +St. Louis,Abilene,,11 hours 27 mins,"1,267 km" +St. Louis,Amarillo,,10 hours 57 mins,"1,219 km" +St. Louis,Harlingen,,16 hours 55 mins,"1,778 km" +St. Louis,Lubbock,,12 hours 20 mins,"1,358 km" +St. Louis,College Station,,12 hours 3 mins,"1,223 km" +St. Louis,Corpus Christi,,15 hours 9 mins,"1,583 km" +St. Louis,Wichita Falls,,9 hours 13 mins,"1,023 km" +St. Louis,Waco,,11 hours 9 mins,"1,168 km" +St. Louis,San Angelo,,12 hours 42 mins,"1,401 km" +St. Louis,Houston,,12 hours 3 mins,"1,250 km" +St. Louis,San Antonio,,13 hours 45 mins,"1,453 km" +St. Louis,Del Rio,,15 hours 8 mins,"1,654 km" +St. Louis,Mission,,, +St. Louis,Beaumont,,, +St. Louis,Longview,,8 hours 55 mins,926 km +St. Louis,Midland,,13 hours 18 mins,"1,469 km" +St. Louis,El Paso,,17 hours 33 mins,"1,917 km" +St. Louis,Brownsville,,17 hours 17 mins,"1,817 km" +St. Louis,Austin,,12 hours 33 mins,"1,327 km" +St. Louis,Dallas,,9 hours 44 mins,"1,014 km" +St. Louis,Killeen,,11 hours 57 mins,"1,261 km" +St. Louis,Laredo,,16 hours 1 min,"1,704 km" +St. Louis,Texarkana,,7 hours 28 mins,785 km +Abilene,St. Louis,,11 hours 28 mins,"1,269 km" +Amarillo,St. Louis,,10 hours 58 mins,"1,219 km" +Harlingen,St. Louis,,16 hours 53 mins,"1,782 km" +Lubbock,St. Louis,,12 hours 18 mins,"1,358 km" +College Station,St. Louis,,12 hours 2 mins,"1,223 km" +Corpus Christi,St. Louis,,15 hours 15 mins,"1,593 km" +Wichita Falls,St. Louis,,9 hours 13 mins,"1,024 km" +Waco,St. Louis,,11 hours 9 mins,"1,167 km" +San Angelo,St. Louis,,12 hours 42 mins,"1,402 km" +Houston,St. Louis,,12 hours 5 mins,"1,254 km" +San Antonio,St. Louis,,13 hours 44 mins,"1,455 km" +Del Rio,St. Louis,,15 hours 5 mins,"1,655 km" +Mission,St. Louis,,, +Beaumont,St. Louis,,, +Longview,St. Louis,,8 hours 57 mins,929 km +Midland,St. Louis,,13 hours 18 mins,"1,471 km" +El Paso,St. Louis,,17 hours 30 mins,"1,916 km" +Brownsville,St. Louis,,17 hours 17 mins,"1,822 km" +Austin,St. Louis,,12 hours 33 mins,"1,329 km" +Dallas,St. Louis,,9 hours 46 mins,"1,016 km" +Killeen,St. Louis,,11 hours 58 mins,"1,263 km" +Laredo,St. Louis,,16 hours 2 mins,"1,706 km" +Texarkana,St. Louis,,7 hours 30 mins,788 km +Richmond,Sarasota,,12 hours 20 mins,"1,364 km" +Richmond,Fort Myers,,13 hours 18 mins,"1,469 km" +Richmond,Gainesville,,9 hours 40 mins,"1,074 km" +Richmond,Orlando,,10 hours 33 mins,"1,191 km" +Richmond,Daytona Beach,,9 hours 55 mins,"1,117 km" +Richmond,Jacksonville,,8 hours 30 mins,963 km +Richmond,Tampa,,11 hours 33 mins,"1,279 km" +Richmond,Panama City,,12 hours 31 mins,"1,384 km" +Richmond,Key West,,16 hours 29 mins,"1,774 km" +Richmond,West Palm Beach,,12 hours 28 mins,"1,421 km" +Richmond,Miami,,13 hours 28 mins,"1,520 km" +Richmond,Tallahassee,,10 hours 53 mins,"1,222 km" +Richmond,Punta Gorda,,12 hours 52 mins,"1,434 km" +Richmond,Fort Lauderdale,,13 hours 6 mins,"1,489 km" +Richmond,Pensacola,,12 hours 41 mins,"1,377 km" +Sarasota,Richmond,,12 hours 19 mins,"1,364 km" +Fort Myers,Richmond,,13 hours 15 mins,"1,470 km" +Gainesville,Richmond,,9 hours 40 mins,"1,075 km" +Orlando,Richmond,,10 hours 26 mins,"1,188 km" +Daytona Beach,Richmond,,9 hours 51 mins,"1,105 km" +Jacksonville,Richmond,,8 hours 28 mins,963 km +Tampa,Richmond,,11 hours 30 mins,"1,279 km" +Panama City,Richmond,,12 hours 30 mins,"1,385 km" +Key West,Richmond,,16 hours 25 mins,"1,771 km" +West Palm Beach,Richmond,,12 hours 23 mins,"1,419 km" +Miami,Richmond,,13 hours 22 mins,"1,520 km" +Tallahassee,Richmond,,10 hours 53 mins,"1,227 km" +Punta Gorda,Richmond,,12 hours 50 mins,"1,434 km" +Fort Lauderdale,Richmond,,13 hours 1 min,"1,487 km" +Pensacola,Richmond,,12 hours 37 mins,"1,374 km" +Atlanta,New Orleans,,6 hours 43 mins,757 km +New Orleans,Atlanta,,6 hours 43 mins,755 km +Milwaukee,Salt Lake City,,20 hours 41 mins,"2,313 km" +Milwaukee,Moab,,20 hours 2 mins,"2,242 km" +Milwaukee,Ogden,,20 hours 33 mins,"2,305 km" +Milwaukee,Vernal,,19 hours 53 mins,"2,145 km" +Milwaukee,Provo,,21 hours 9 mins,"2,341 km" +Milwaukee,Cedar City,,23 hours 11 mins,"2,605 km" +Salt Lake City,Milwaukee,,20 hours 39 mins,"2,318 km" +Moab,Milwaukee,,20 hours 0 mins,"2,245 km" +Ogden,Milwaukee,,20 hours 32 mins,"2,309 km" +Vernal,Milwaukee,,19 hours 49 mins,"2,149 km" +Provo,Milwaukee,,21 hours 6 mins,"2,344 km" +Cedar City,Milwaukee,,23 hours 8 mins,"2,607 km" +White Plains,Sarasota,,18 hours 3 mins,"1,958 km" +White Plains,Fort Myers,,19 hours 1 min,"2,063 km" +White Plains,Gainesville,,15 hours 23 mins,"1,668 km" +White Plains,Orlando,,16 hours 16 mins,"1,785 km" +White Plains,Daytona Beach,,15 hours 39 mins,"1,711 km" +White Plains,Jacksonville,,14 hours 13 mins,"1,557 km" +White Plains,Tampa,,17 hours 16 mins,"1,874 km" +White Plains,Panama City,,18 hours 15 mins,"1,978 km" +White Plains,Key West,,22 hours 12 mins,"2,368 km" +White Plains,West Palm Beach,,18 hours 12 mins,"2,016 km" +White Plains,Miami,,19 hours 12 mins,"2,114 km" +White Plains,Tallahassee,,16 hours 36 mins,"1,817 km" +White Plains,Punta Gorda,,18 hours 35 mins,"2,028 km" +White Plains,Fort Lauderdale,,18 hours 49 mins,"2,084 km" +White Plains,Pensacola,,18 hours 25 mins,"1,971 km" +Sarasota,White Plains,,18 hours 2 mins,"1,952 km" +Fort Myers,White Plains,,18 hours 58 mins,"2,058 km" +Gainesville,White Plains,,15 hours 23 mins,"1,663 km" +Orlando,White Plains,,16 hours 9 mins,"1,776 km" +Daytona Beach,White Plains,,15 hours 34 mins,"1,693 km" +Jacksonville,White Plains,,14 hours 11 mins,"1,550 km" +Tampa,White Plains,,17 hours 13 mins,"1,867 km" +Panama City,White Plains,,18 hours 13 mins,"1,973 km" +Key West,White Plains,,22 hours 8 mins,"2,359 km" +West Palm Beach,White Plains,,18 hours 6 mins,"2,007 km" +Miami,White Plains,,19 hours 5 mins,"2,108 km" +Tallahassee,White Plains,,16 hours 36 mins,"1,815 km" +Punta Gorda,White Plains,,18 hours 33 mins,"2,022 km" +Fort Lauderdale,White Plains,,18 hours 44 mins,"2,075 km" +Pensacola,White Plains,,18 hours 20 mins,"1,962 km" +Minot,Bemidji,,5 hours 11 mins,522 km +Minot,Minneapolis,,7 hours 30 mins,803 km +Minot,Duluth,,7 hours 47 mins,761 km +Minot,Brainerd,,6 hours 30 mins,655 km +Minot,Gustavus,,8 hours 20 mins,846 km +Minot,St. Cloud,,6 hours 42 mins,702 km +Minot,Hibbing,,7 hours 0 mins,688 km +Minot,International Falls,,6 hours 58 mins,696 km +Bemidji,Minot,,5 hours 9 mins,522 km +Minneapolis,Minot,,7 hours 31 mins,803 km +Duluth,Minot,,7 hours 47 mins,761 km +Brainerd,Minot,,6 hours 29 mins,654 km +Gustavus,Minot,,8 hours 18 mins,847 km +St. Cloud,Minot,,6 hours 41 mins,709 km +Hibbing,Minot,,6 hours 57 mins,688 km +International Falls,Minot,,6 hours 56 mins,696 km +Toledo,Sarasota,,16 hours 53 mins,"1,882 km" +Toledo,Fort Myers,,17 hours 50 mins,"1,988 km" +Toledo,Gainesville,,14 hours 29 mins,"1,598 km" +Toledo,Orlando,,15 hours 53 mins,"1,770 km" +Toledo,Daytona Beach,,15 hours 43 mins,"1,676 km" +Toledo,Jacksonville,,14 hours 18 mins,"1,522 km" +Toledo,Tampa,,16 hours 5 mins,"1,798 km" +Toledo,Panama City,,14 hours 18 mins,"1,497 km" +Toledo,Key West,,22 hours 5 mins,"2,384 km" +Toledo,West Palm Beach,,18 hours 6 mins,"2,026 km" +Toledo,Miami,,19 hours 5 mins,"2,131 km" +Toledo,Tallahassee,,13 hours 55 mins,"1,496 km" +Toledo,Punta Gorda,,17 hours 25 mins,"1,952 km" +Toledo,Fort Lauderdale,,18 hours 44 mins,"2,094 km" +Toledo,Pensacola,,13 hours 30 mins,"1,474 km" +Sarasota,Toledo,,16 hours 51 mins,"1,883 km" +Fort Myers,Toledo,,17 hours 48 mins,"1,989 km" +Gainesville,Toledo,,14 hours 27 mins,"1,598 km" +Orlando,Toledo,,15 hours 49 mins,"1,769 km" +Daytona Beach,Toledo,,15 hours 39 mins,"1,671 km" +Jacksonville,Toledo,,14 hours 16 mins,"1,529 km" +Tampa,Toledo,,16 hours 3 mins,"1,798 km" +Panama City,Toledo,,14 hours 18 mins,"1,492 km" +Key West,Toledo,,22 hours 4 mins,"2,384 km" +West Palm Beach,Toledo,,18 hours 4 mins,"2,027 km" +Miami,Toledo,,19 hours 1 min,"2,133 km" +Tallahassee,Toledo,,13 hours 54 mins,"1,496 km" +Punta Gorda,Toledo,,17 hours 23 mins,"1,953 km" +Fort Lauderdale,Toledo,,18 hours 42 mins,"2,095 km" +Pensacola,Toledo,,13 hours 25 mins,"1,472 km" +Myrtle Beach,Pellston,,16 hours 3 mins,"1,681 km" +Myrtle Beach,Traverse City,,16 hours 3 mins,"1,640 km" +Myrtle Beach,Alpena,,16 hours 2 mins,"1,628 km" +Myrtle Beach,Iron Mountain,,, +Myrtle Beach,Kalamazoo,,13 hours 50 mins,"1,400 km" +Myrtle Beach,Saginaw,,13 hours 44 mins,"1,394 km" +Myrtle Beach,Grand Rapids,,14 hours 21 mins,"1,467 km" +Myrtle Beach,Lansing,,13 hours 23 mins,"1,359 km" +Myrtle Beach,Muskegon,,14 hours 54 mins,"1,531 km" +Myrtle Beach,Hancock,,, +Myrtle Beach,Detroit,,12 hours 41 mins,"1,274 km" +Myrtle Beach,Escanaba,,18 hours 33 mins,"1,929 km" +Pellston,Myrtle Beach,,16 hours 9 mins,"1,675 km" +Traverse City,Myrtle Beach,,16 hours 10 mins,"1,634 km" +Alpena,Myrtle Beach,,16 hours 7 mins,"1,621 km" +Iron Mountain,Myrtle Beach,,, +Kalamazoo,Myrtle Beach,,13 hours 50 mins,"1,400 km" +Saginaw,Myrtle Beach,,13 hours 48 mins,"1,387 km" +Grand Rapids,Myrtle Beach,,14 hours 25 mins,"1,461 km" +Lansing,Myrtle Beach,,13 hours 29 mins,"1,353 km" +Muskegon,Myrtle Beach,,14 hours 59 mins,"1,525 km" +Hancock,Myrtle Beach,,, +Detroit,Myrtle Beach,,12 hours 47 mins,"1,270 km" +Escanaba,Myrtle Beach,,18 hours 38 mins,"1,923 km" +Wilmington,Buffalo,,11 hours 57 mins,"1,187 km" +Wilmington,Manhattan,,9 hours 12 mins,955 km +Wilmington,Niagara Falls,,12 hours 19 mins,"1,217 km" +Wilmington,Islip,,9 hours 52 mins,"1,026 km" +Wilmington,New York,,9 hours 2 mins,949 km +Wilmington,Watertown,,12 hours 5 mins,"1,285 km" +Wilmington,Newburgh,,9 hours 52 mins,"1,041 km" +Wilmington,Syracuse,,11 hours 2 mins,"1,173 km" +Wilmington,Plattsburgh,,13 hours 18 mins,"1,429 km" +Wilmington,Ogdensburg,,13 hours 4 mins,"1,378 km" +Wilmington,Ithaca,,10 hours 47 mins,"1,111 km" +Wilmington,Elmira,,10 hours 9 mins,"1,039 km" +Wilmington,White Plains,,9 hours 29 mins,"1,000 km" +Wilmington,Albany,,, +Wilmington,Binghamton,,10 hours 2 mins,"1,061 km" +Wilmington,Rochester,,11 hours 25 mins,"1,201 km" +Buffalo,Wilmington,,12 hours 5 mins,"1,188 km" +Manhattan,Wilmington,,9 hours 14 mins,964 km +Niagara Falls,Wilmington,,12 hours 27 mins,"1,218 km" +Islip,Wilmington,,9 hours 55 mins,"1,033 km" +New York,Wilmington,,9 hours 5 mins,958 km +Watertown,Wilmington,,12 hours 15 mins,"1,289 km" +Newburgh,Wilmington,,9 hours 58 mins,"1,051 km" +Syracuse,Wilmington,,11 hours 11 mins,"1,176 km" +Plattsburgh,Wilmington,,13 hours 22 mins,"1,439 km" +Ogdensburg,Wilmington,,13 hours 14 mins,"1,382 km" +Ithaca,Wilmington,,10 hours 55 mins,"1,119 km" +Elmira,Wilmington,,10 hours 18 mins,"1,048 km" +White Plains,Wilmington,,9 hours 32 mins,"1,008 km" +Albany,Wilmington,,, +Binghamton,Wilmington,,10 hours 11 mins,"1,063 km" +Rochester,Wilmington,,11 hours 33 mins,"1,209 km" +St. Petersburg,Cincinnati,,, +Cincinnati,St. Petersburg,,, +Des Moines,Charlotte,,15 hours 45 mins,"1,684 km" +Charlotte,Des Moines,,15 hours 53 mins,"1,704 km" +Philadelphia,Green Bay,,14 hours 33 mins,"1,552 km" +Philadelphia,Rhinelander,,16 hours 23 mins,"1,765 km" +Philadelphia,Marquette,,12 hours 51 mins,"1,369 km" +Philadelphia,Madison,,13 hours 44 mins,"1,457 km" +Philadelphia,La Crosse,,15 hours 36 mins,"1,673 km" +Philadelphia,Devils Lake,,14 hours 24 mins,"1,521 km" +Philadelphia,Appleton,,14 hours 22 mins,"1,533 km" +Philadelphia,Mosinee,,15 hours 19 mins,"1,652 km" +Philadelphia,Milwaukee,,12 hours 52 mins,"1,368 km" +Philadelphia,Eau Claire,,16 hours 6 mins,"1,730 km" +Green Bay,Philadelphia,,14 hours 35 mins,"1,551 km" +Rhinelander,Philadelphia,,16 hours 21 mins,"1,774 km" +Marquette,Philadelphia,,12 hours 53 mins,"1,366 km" +Madison,Philadelphia,,13 hours 39 mins,"1,465 km" +La Crosse,Philadelphia,,15 hours 32 mins,"1,681 km" +Devils Lake,Philadelphia,,14 hours 22 mins,"1,529 km" +Appleton,Philadelphia,,14 hours 22 mins,"1,532 km" +Mosinee,Philadelphia,,15 hours 16 mins,"1,661 km" +Milwaukee,Philadelphia,,12 hours 54 mins,"1,367 km" +Eau Claire,Philadelphia,,16 hours 3 mins,"1,739 km" +Idaho Falls,Alamosa,,11 hours 47 mins,"1,191 km" +Idaho Falls,Grand Junction,,7 hours 16 mins,797 km +Idaho Falls,Durango,,9 hours 19 mins,971 km +Idaho Falls,Colorado Springs,,10 hours 17 mins,"1,066 km" +Idaho Falls,Gunnison,,9 hours 37 mins,994 km +Idaho Falls,Denver,,9 hours 19 mins,953 km +Alamosa,Idaho Falls,,11 hours 40 mins,"1,190 km" +Grand Junction,Idaho Falls,,7 hours 16 mins,796 km +Durango,Idaho Falls,,9 hours 15 mins,970 km +Colorado Springs,Idaho Falls,,10 hours 15 mins,"1,066 km" +Gunnison,Idaho Falls,,9 hours 31 mins,994 km +Denver,Idaho Falls,,9 hours 19 mins,957 km +Ithaca,Newark,,3 hours 38 mins,343 km +Newark,Ithaca,,3 hours 43 mins,343 km +Chicago,Twin Falls,,22 hours 38 mins,"2,529 km" +Chicago,Pocatello,,21 hours 13 mins,"2,347 km" +Chicago,Idaho Falls,,21 hours 40 mins,"2,367 km" +Chicago,Sun Valley,,1 day 0 hours,"2,651 km" +Chicago,Boise,,1 day 0 hours,"2,724 km" +Chicago,Lewiston,,16 hours 32 mins,"1,790 km" +Twin Falls,Chicago,,22 hours 38 mins,"2,531 km" +Pocatello,Chicago,,21 hours 15 mins,"2,350 km" +Idaho Falls,Chicago,,21 hours 43 mins,"2,369 km" +Sun Valley,Chicago,,1 day 0 hours,"2,654 km" +Boise,Chicago,,1 day 0 hours,"2,726 km" +Lewiston,Chicago,,16 hours 36 mins,"1,793 km" +Los Angeles,State College,,1 day 13 hours,"4,131 km" +Los Angeles,Johnstown,,1 day 12 hours,"4,013 km" +Los Angeles,Harrisburg,,1 day 14 hours,"4,198 km" +Los Angeles,Erie,,1 day 11 hours,"3,938 km" +Los Angeles,Pittsburgh,,1 day 11 hours,"3,903 km" +Los Angeles,Latrobe,,1 day 12 hours,"3,950 km" +Los Angeles,Philadelphia,,1 day 16 hours,"4,360 km" +Los Angeles,Lewisburg,,1 day 14 hours,"4,224 km" +Los Angeles,Scranton,,1 day 15 hours,"4,350 km" +State College,Los Angeles,,1 day 13 hours,"4,136 km" +Johnstown,Los Angeles,,1 day 12 hours,"4,013 km" +Harrisburg,Los Angeles,,1 day 14 hours,"4,199 km" +Erie,Los Angeles,,1 day 12 hours,"3,936 km" +Pittsburgh,Los Angeles,,1 day 11 hours,"3,906 km" +Latrobe,Los Angeles,,1 day 12 hours,"3,951 km" +Philadelphia,Los Angeles,,1 day 16 hours,"4,362 km" +Lewisburg,Los Angeles,,1 day 14 hours,"4,223 km" +Scranton,Los Angeles,,1 day 15 hours,"4,348 km" +Key West,Evansville,,18 hours 21 mins,"1,961 km" +Key West,South Bend,,22 hours 37 mins,"2,408 km" +Key West,Fort Wayne,,22 hours 8 mins,"2,347 km" +Key West,Valparaiso,,, +Key West,Indianapolis,,20 hours 20 mins,"2,179 km" +Evansville,Key West,,18 hours 20 mins,"1,958 km" +South Bend,Key West,,22 hours 38 mins,"2,406 km" +Fort Wayne,Key West,,22 hours 7 mins,"2,347 km" +Valparaiso,Key West,,, +Indianapolis,Key West,,20 hours 21 mins,"2,177 km" +Charlotte,Toledo,,8 hours 54 mins,915 km +Charlotte,Cleveland,,7 hours 51 mins,829 km +Charlotte,Dayton,,7 hours 6 mins,735 km +Charlotte,Columbus,,6 hours 41 mins,685 km +Charlotte,Akron,,7 hours 16 mins,771 km +Charlotte,Cincinnati,,7 hours 26 mins,744 km +Toledo,Charlotte,,8 hours 57 mins,908 km +Cleveland,Charlotte,,7 hours 48 mins,828 km +Dayton,Charlotte,,7 hours 5 mins,734 km +Columbus,Charlotte,,6 hours 42 mins,684 km +Akron,Charlotte,,7 hours 13 mins,771 km +Cincinnati,Charlotte,,7 hours 24 mins,743 km +Jackson,San Diego,,, +Jackson,Redding,,, +Jackson,Sacramento,,, +Jackson,Fresno,,, +Jackson,San Luis Obispo,,, +Jackson,Oakland,,, +Jackson,Santa Barbara,,, +Jackson,Stockton,,, +Jackson,Santa Rosa,,, +Jackson,Bakersfield,,, +Jackson,Santa Ana,,, +Jackson,Santa Maria,,, +Jackson,San Jose,,, +Jackson,Burbank,,, +Jackson,Arcata,,, +Jackson,Butte,,, +Jackson,Palm Springs,,, +Jackson,Los Angeles,,, +Jackson,Long Beach,,, +Jackson,San Francisco,,, +Jackson,Monterey,,, +San Diego,Jackson,,, +Redding,Jackson,,, +Sacramento,Jackson,,, +Fresno,Jackson,,, +San Luis Obispo,Jackson,,, +Oakland,Jackson,,, +Santa Barbara,Jackson,,, +Stockton,Jackson,,, +Santa Rosa,Jackson,,, +Bakersfield,Jackson,,, +Santa Ana,Jackson,,, +Santa Maria,Jackson,,, +San Jose,Jackson,,, +Burbank,Jackson,,, +Arcata,Jackson,,, +Butte,Jackson,,, +Palm Springs,Jackson,,, +Los Angeles,Jackson,,, +Long Beach,Jackson,,, +San Francisco,Jackson,,, +Monterey,Jackson,,, +Albuquerque,San Diego,,11 hours 38 mins,"1,242 km" +San Diego,Albuquerque,,11 hours 39 mins,"1,240 km" +Des Moines,Kansas City,,2 hours 52 mins,311 km +Des Moines,Cape Girardeau,,6 hours 57 mins,726 km +Des Moines,Branson,,5 hours 59 mins,644 km +Des Moines,Fort Leonard Wood,,6 hours 1 min,539 km +Des Moines,St. Louis,,5 hours 27 mins,562 km +Kansas City,Des Moines,,2 hours 51 mins,310 km +Cape Girardeau,Des Moines,,7 hours 0 mins,726 km +Branson,Des Moines,,5 hours 56 mins,643 km +Fort Leonard Wood,Des Moines,,6 hours 0 mins,541 km +St. Louis,Des Moines,,5 hours 28 mins,563 km +New Orleans,Louisville,,10 hours 14 mins,"1,136 km" +Louisville,New Orleans,,10 hours 15 mins,"1,139 km" +Jacksonville,Los Angeles,,1 day 11 hours,"3,889 km" +Los Angeles,Jacksonville,,1 day 11 hours,"3,887 km" +Minneapolis,Twin Falls,,19 hours 35 mins,"2,147 km" +Minneapolis,Pocatello,,18 hours 3 mins,"1,973 km" +Minneapolis,Idaho Falls,,17 hours 20 mins,"1,891 km" +Minneapolis,Sun Valley,,19 hours 45 mins,"2,169 km" +Minneapolis,Boise,,21 hours 6 mins,"2,336 km" +Minneapolis,Lewiston,,22 hours 28 mins,"2,453 km" +Twin Falls,Minneapolis,,19 hours 30 mins,"2,145 km" +Pocatello,Minneapolis,,17 hours 59 mins,"1,972 km" +Idaho Falls,Minneapolis,,17 hours 15 mins,"1,891 km" +Sun Valley,Minneapolis,,19 hours 43 mins,"2,168 km" +Boise,Minneapolis,,21 hours 5 mins,"2,335 km" +Lewiston,Minneapolis,,22 hours 33 mins,"2,448 km" +Raleigh,Moline,,14 hours 9 mins,"1,493 km" +Raleigh,Belleville,,12 hours 17 mins,"1,302 km" +Raleigh,Bloomington,,10 hours 21 mins,"1,067 km" +Raleigh,Champaign,,11 hours 33 mins,"1,202 km" +Raleigh,Chicago,,12 hours 27 mins,"1,297 km" +Raleigh,Rockford,,13 hours 47 mins,"1,442 km" +Raleigh,Peoria,,12 hours 46 mins,"1,342 km" +Moline,Raleigh,,14 hours 8 mins,"1,492 km" +Belleville,Raleigh,,12 hours 18 mins,"1,301 km" +Bloomington,Raleigh,,10 hours 23 mins,"1,069 km" +Champaign,Raleigh,,11 hours 34 mins,"1,201 km" +Chicago,Raleigh,,12 hours 28 mins,"1,298 km" +Rockford,Raleigh,,13 hours 46 mins,"1,441 km" +Peoria,Raleigh,,12 hours 47 mins,"1,343 km" +New York,Sarasota,,17 hours 37 mins,"1,909 km" +New York,Fort Myers,,18 hours 34 mins,"2,014 km" +New York,Gainesville,,14 hours 57 mins,"1,619 km" +New York,Orlando,,15 hours 50 mins,"1,736 km" +New York,Daytona Beach,,15 hours 12 mins,"1,662 km" +New York,Jacksonville,,13 hours 47 mins,"1,508 km" +New York,Tampa,,16 hours 50 mins,"1,824 km" +New York,Panama City,,17 hours 48 mins,"1,929 km" +New York,Key West,,21 hours 46 mins,"2,319 km" +New York,West Palm Beach,,17 hours 45 mins,"1,966 km" +New York,Miami,,18 hours 45 mins,"2,065 km" +New York,Tallahassee,,16 hours 10 mins,"1,767 km" +New York,Punta Gorda,,18 hours 9 mins,"1,979 km" +New York,Fort Lauderdale,,18 hours 23 mins,"2,034 km" +New York,Pensacola,,17 hours 58 mins,"1,922 km" +Sarasota,New York,,17 hours 35 mins,"1,902 km" +Fort Myers,New York,,18 hours 31 mins,"2,008 km" +Gainesville,New York,,14 hours 56 mins,"1,612 km" +Orlando,New York,,15 hours 42 mins,"1,725 km" +Daytona Beach,New York,,15 hours 7 mins,"1,642 km" +Jacksonville,New York,,13 hours 44 mins,"1,500 km" +Tampa,New York,,16 hours 46 mins,"1,817 km" +Panama City,New York,,17 hours 46 mins,"1,923 km" +Key West,New York,,21 hours 41 mins,"2,309 km" +West Palm Beach,New York,,17 hours 39 mins,"1,956 km" +Miami,New York,,18 hours 38 mins,"2,057 km" +Tallahassee,New York,,16 hours 9 mins,"1,765 km" +Punta Gorda,New York,,18 hours 6 mins,"1,971 km" +Fort Lauderdale,New York,,18 hours 17 mins,"2,024 km" +Pensacola,New York,,17 hours 53 mins,"1,912 km" +Washington,Moline,,12 hours 51 mins,"1,356 km" +Washington,Belleville,,12 hours 40 mins,"1,308 km" +Washington,Bloomington,,9 hours 50 mins,"1,002 km" +Washington,Champaign,,10 hours 49 mins,"1,117 km" +Washington,Chicago,,10 hours 43 mins,"1,120 km" +Washington,Rockford,,12 hours 8 mins,"1,260 km" +Washington,Peoria,,12 hours 3 mins,"1,257 km" +Moline,Washington,,13 hours 3 mins,"1,355 km" +Belleville,Washington,,12 hours 52 mins,"1,305 km" +Bloomington,Washington,,10 hours 1 min,999 km +Champaign,Washington,,11 hours 2 mins,"1,113 km" +Chicago,Washington,,10 hours 54 mins,"1,120 km" +Rockford,Washington,,12 hours 19 mins,"1,269 km" +Peoria,Washington,,12 hours 15 mins,"1,255 km" +Atlanta,Montgomery,,2 hours 21 mins,259 km +Montgomery,Atlanta,,2 hours 23 mins,259 km +San Luis Obispo,San Diego,,5 hours 0 mins,503 km +San Luis Obispo,Redding,,6 hours 22 mins,690 km +San Luis Obispo,Sacramento,,4 hours 32 mins,466 km +San Luis Obispo,Fresno,,2 hours 20 mins,221 km +San Luis Obispo,Oakland,,3 hours 26 mins,360 km +San Luis Obispo,Santa Barbara,,1 hour 37 mins,152 km +San Luis Obispo,Stockton,,3 hours 50 mins,390 km +San Luis Obispo,Santa Rosa,,4 hours 20 mins,454 km +San Luis Obispo,Bakersfield,,2 hours 14 mins,219 km +San Luis Obispo,Santa Ana,,3 hours 50 mins,359 km +San Luis Obispo,Santa Maria,,34 mins,51.3 km +San Luis Obispo,San Jose,,2 hours 50 mins,297 km +San Luis Obispo,Burbank,,3 hours 7 mins,311 km +San Luis Obispo,Arcata,,8 hours 5 mins,814 km +San Luis Obispo,Butte,,5 hours 55 mins,609 km +San Luis Obispo,Palm Springs,,4 hours 45 mins,478 km +San Luis Obispo,Los Angeles,,3 hours 14 mins,304 km +San Luis Obispo,Long Beach,,3 hours 29 mins,337 km +San Luis Obispo,San Francisco,,3 hours 34 mins,372 km +San Luis Obispo,Monterey,,2 hours 19 mins,227 km +San Diego,San Luis Obispo,,4 hours 59 mins,502 km +Redding,San Luis Obispo,,6 hours 26 mins,691 km +Sacramento,San Luis Obispo,,4 hours 33 mins,471 km +Fresno,San Luis Obispo,,2 hours 20 mins,221 km +Oakland,San Luis Obispo,,3 hours 29 mins,360 km +Santa Barbara,San Luis Obispo,,1 hour 37 mins,153 km +Stockton,San Luis Obispo,,3 hours 50 mins,396 km +Santa Rosa,San Luis Obispo,,4 hours 24 mins,454 km +Bakersfield,San Luis Obispo,,2 hours 15 mins,219 km +Santa Ana,San Luis Obispo,,3 hours 49 mins,355 km +Santa Maria,San Luis Obispo,,34 mins,52.8 km +San Jose,San Luis Obispo,,2 hours 50 mins,297 km +Burbank,San Luis Obispo,,3 hours 4 mins,294 km +Arcata,San Luis Obispo,,8 hours 10 mins,816 km +Butte,San Luis Obispo,,5 hours 59 mins,604 km +Palm Springs,San Luis Obispo,,4 hours 44 mins,478 km +Los Angeles,San Luis Obispo,,3 hours 8 mins,304 km +Long Beach,San Luis Obispo,,3 hours 28 mins,336 km +San Francisco,San Luis Obispo,,3 hours 34 mins,372 km +Monterey,San Luis Obispo,,2 hours 20 mins,227 km +Charlotte,Pellston,,13 hours 12 mins,"1,418 km" +Charlotte,Traverse City,,13 hours 12 mins,"1,377 km" +Charlotte,Alpena,,13 hours 11 mins,"1,366 km" +Charlotte,Iron Mountain,,, +Charlotte,Kalamazoo,,10 hours 59 mins,"1,137 km" +Charlotte,Saginaw,,10 hours 52 mins,"1,132 km" +Charlotte,Grand Rapids,,11 hours 30 mins,"1,205 km" +Charlotte,Lansing,,10 hours 32 mins,"1,097 km" +Charlotte,Muskegon,,12 hours 3 mins,"1,268 km" +Charlotte,Hancock,,, +Charlotte,Detroit,,9 hours 50 mins,"1,012 km" +Charlotte,Escanaba,,15 hours 42 mins,"1,666 km" +Pellston,Charlotte,,13 hours 14 mins,"1,411 km" +Traverse City,Charlotte,,13 hours 15 mins,"1,370 km" +Alpena,Charlotte,,13 hours 12 mins,"1,357 km" +Iron Mountain,Charlotte,,, +Kalamazoo,Charlotte,,10 hours 55 mins,"1,136 km" +Saginaw,Charlotte,,10 hours 53 mins,"1,124 km" +Grand Rapids,Charlotte,,11 hours 30 mins,"1,197 km" +Lansing,Charlotte,,10 hours 34 mins,"1,089 km" +Muskegon,Charlotte,,12 hours 4 mins,"1,261 km" +Hancock,Charlotte,,, +Detroit,Charlotte,,9 hours 52 mins,"1,006 km" +Escanaba,Charlotte,,15 hours 43 mins,"1,659 km" +Elmira,Pellston,,9 hours 36 mins,"1,016 km" +Elmira,Traverse City,,9 hours 36 mins,975 km +Elmira,Alpena,,9 hours 35 mins,963 km +Elmira,Iron Mountain,,, +Elmira,Kalamazoo,,8 hours 30 mins,908 km +Elmira,Saginaw,,7 hours 16 mins,729 km +Elmira,Grand Rapids,,8 hours 18 mins,851 km +Elmira,Lansing,,7 hours 59 mins,867 km +Elmira,Muskegon,,8 hours 51 mins,914 km +Elmira,Hancock,,, +Elmira,Detroit,,7 hours 7 mins,764 km +Elmira,Escanaba,,12 hours 6 mins,"1,264 km" +Pellston,Elmira,,9 hours 35 mins,"1,016 km" +Traverse City,Elmira,,9 hours 36 mins,975 km +Alpena,Elmira,,9 hours 33 mins,961 km +Iron Mountain,Elmira,,, +Kalamazoo,Elmira,,8 hours 28 mins,907 km +Saginaw,Elmira,,7 hours 14 mins,728 km +Grand Rapids,Elmira,,8 hours 15 mins,850 km +Lansing,Elmira,,8 hours 0 mins,867 km +Muskegon,Elmira,,8 hours 50 mins,914 km +Hancock,Elmira,,, +Detroit,Elmira,,7 hours 7 mins,764 km +Escanaba,Elmira,,12 hours 4 mins,"1,263 km" +Reno,Portland,,8 hours 47 mins,855 km +Portland,Reno,,8 hours 49 mins,855 km +Philadelphia,Kansas City,,16 hours 53 mins,"1,811 km" +Philadelphia,Cape Girardeau,,14 hours 26 mins,"1,522 km" +Philadelphia,Branson,,17 hours 5 mins,"1,829 km" +Philadelphia,Fort Leonard Wood,,15 hours 36 mins,"1,648 km" +Philadelphia,St. Louis,,13 hours 23 mins,"1,425 km" +Kansas City,Philadelphia,,16 hours 52 mins,"1,811 km" +Cape Girardeau,Philadelphia,,14 hours 24 mins,"1,521 km" +Branson,Philadelphia,,17 hours 5 mins,"1,828 km" +Fort Leonard Wood,Philadelphia,,15 hours 34 mins,"1,647 km" +St. Louis,Philadelphia,,13 hours 23 mins,"1,426 km" +Jacksonville,State College,,13 hours 23 mins,"1,469 km" +Jacksonville,Johnstown,,12 hours 53 mins,"1,388 km" +Jacksonville,Harrisburg,,11 hours 55 mins,"1,315 km" +Jacksonville,Erie,,14 hours 3 mins,"1,529 km" +Jacksonville,Pittsburgh,,12 hours 20 mins,"1,334 km" +Jacksonville,Latrobe,,12 hours 32 mins,"1,320 km" +Jacksonville,Philadelphia,,12 hours 23 mins,"1,362 km" +Jacksonville,Lewisburg,,13 hours 3 mins,"1,414 km" +Jacksonville,Scranton,,13 hours 46 mins,"1,512 km" +State College,Jacksonville,,13 hours 30 mins,"1,478 km" +Johnstown,Jacksonville,,12 hours 50 mins,"1,388 km" +Harrisburg,Jacksonville,,12 hours 4 mins,"1,317 km" +Erie,Jacksonville,,14 hours 4 mins,"1,529 km" +Pittsburgh,Jacksonville,,12 hours 17 mins,"1,335 km" +Latrobe,Jacksonville,,12 hours 27 mins,"1,320 km" +Philadelphia,Jacksonville,,12 hours 26 mins,"1,368 km" +Lewisburg,Jacksonville,,13 hours 11 mins,"1,420 km" +Scranton,Jacksonville,,13 hours 55 mins,"1,514 km" +San Diego,Salt Lake City,,10 hours 51 mins,"1,207 km" +San Diego,Moab,,11 hours 31 mins,"1,266 km" +San Diego,Ogden,,11 hours 20 mins,"1,265 km" +San Diego,Vernal,,12 hours 47 mins,"1,367 km" +San Diego,Provo,,10 hours 14 mins,"1,137 km" +San Diego,Cedar City,,7 hours 27 mins,805 km +Salt Lake City,San Diego,,10 hours 48 mins,"1,207 km" +Moab,San Diego,,11 hours 30 mins,"1,266 km" +Ogden,San Diego,,11 hours 19 mins,"1,265 km" +Vernal,San Diego,,12 hours 53 mins,"1,368 km" +Provo,San Diego,,10 hours 13 mins,"1,137 km" +Cedar City,San Diego,,7 hours 24 mins,805 km +Tampa,Pellston,,20 hours 21 mins,"2,302 km" +Tampa,Traverse City,,20 hours 19 mins,"2,232 km" +Tampa,Alpena,,20 hours 19 mins,"2,250 km" +Tampa,Iron Mountain,,, +Tampa,Kalamazoo,,17 hours 48 mins,"1,955 km" +Tampa,Saginaw,,18 hours 1 min,"2,015 km" +Tampa,Grand Rapids,,18 hours 13 mins,"2,004 km" +Tampa,Lansing,,17 hours 41 mins,"1,981 km" +Tampa,Muskegon,,18 hours 29 mins,"2,018 km" +Tampa,Hancock,,, +Tampa,Detroit,,16 hours 58 mins,"1,896 km" +Tampa,Escanaba,,21 hours 57 mins,"2,404 km" +Pellston,Tampa,,20 hours 22 mins,"2,301 km" +Traverse City,Tampa,,20 hours 24 mins,"2,260 km" +Alpena,Tampa,,20 hours 20 mins,"2,247 km" +Iron Mountain,Tampa,,, +Kalamazoo,Tampa,,17 hours 48 mins,"1,959 km" +Saginaw,Tampa,,18 hours 2 mins,"2,013 km" +Grand Rapids,Tampa,,18 hours 14 mins,"2,005 km" +Lansing,Tampa,,17 hours 43 mins,"1,979 km" +Muskegon,Tampa,,18 hours 31 mins,"2,017 km" +Hancock,Tampa,,, +Detroit,Tampa,,17 hours 1 min,"1,896 km" +Escanaba,Tampa,,21 hours 59 mins,"2,401 km" diff --git a/database/googleDistanceMatrix/distance_org.csv b/database/googleDistanceMatrix/distance_org.csv new file mode 100644 index 0000000000000000000000000000000000000000..f6327a48da49a41f9a965b066283a57648ddfef1 --- /dev/null +++ b/database/googleDistanceMatrix/distance_org.csv @@ -0,0 +1,17603 @@ +origin,destination,cost,duration,distance +Detroit,Norfolk,,10 hours 55 mins,"1,144 km" +Norfolk,Detroit,,10 hours 49 mins,"1,142 km" +Minneapolis,St. Louis,,8 hours 29 mins,901 km +St. Louis,Minneapolis,,8 hours 28 mins,900 km +Killeen,Abilene(Texas),,2 hours 56 mins,285 km +Killeen,Amarillo(Texas),,6 hours 58 mins,719 km +Killeen,Harlingen(Texas),,5 hours 51 mins,632 km +Killeen,Lubbock(Texas),,5 hours 19 mins,536 km +Killeen,College Station(Texas),,1 hour 50 mins,170 km +Killeen,Corpus Christi(Texas),,4 hours 13 mins,457 km +Killeen,Wichita Falls(Texas),,3 hours 48 mins,422 km +Killeen,Waco(Texas),,1 hour 1 min,98.6 km +Killeen,San Angelo(Texas),,2 hours 57 mins,296 km +Killeen,Houston(Texas),,3 hours 8 mins,306 km +Killeen,San Antonio(Texas),,2 hours 21 mins,235 km +Killeen,Del Rio(Texas),,4 hours 37 mins,452 km +Killeen,Mission(Texas),,5 hours 50 mins,620 km +Killeen,Beaumont(Texas),,4 hours 21 mins,449 km +Killeen,Longview(Texas),,3 hours 47 mins,379 km +Killeen,Midland(Texas),,4 hours 38 mins,477 km +Killeen,El Paso(Texas),,8 hours 29 mins,920 km +Killeen,Brownsville(Texas),,6 hours 12 mins,671 km +Killeen,Austin(Texas),,1 hour 10 mins,108 km +Killeen,Dallas(Texas),,2 hours 18 mins,249 km +Killeen,Laredo(Texas),,4 hours 38 mins,486 km +Killeen,Texarkana(Texas),,4 hours 54 mins,535 km +Abilene(Texas),Killeen,,2 hours 57 mins,285 km +Abilene(Texas),Amarillo(Texas),,4 hours 10 mins,446 km +Abilene(Texas),Harlingen(Texas),,7 hours 30 mins,802 km +Abilene(Texas),Lubbock(Texas),,2 hours 31 mins,263 km +Abilene(Texas),College Station(Texas),,4 hours 21 mins,420 km +Abilene(Texas),Corpus Christi(Texas),,5 hours 52 mins,627 km +Abilene(Texas),Wichita Falls(Texas),,2 hours 19 mins,246 km +Abilene(Texas),Waco(Texas),,3 hours 2 mins,297 km +Abilene(Texas),San Angelo(Texas),,1 hour 29 mins,145 km +Abilene(Texas),Houston(Texas),,5 hours 39 mins,570 km +Abilene(Texas),San Antonio(Texas),,3 hours 54 mins,394 km +Abilene(Texas),Del Rio(Texas),,3 hours 54 mins,398 km +Abilene(Texas),Mission(Texas),,7 hours 30 mins,790 km +Abilene(Texas),Beaumont(Texas),,6 hours 52 mins,699 km +Abilene(Texas),Longview(Texas),,4 hours 30 mins,497 km +Abilene(Texas),Midland(Texas),,2 hours 15 mins,239 km +Abilene(Texas),El Paso(Texas),,6 hours 34 mins,729 km +Abilene(Texas),Brownsville(Texas),,7 hours 52 mins,841 km +Abilene(Texas),Austin(Texas),,3 hours 37 mins,348 km +Abilene(Texas),Dallas(Texas),,2 hours 43 mins,292 km +Abilene(Texas),Laredo(Texas),,6 hours 6 mins,605 km +Abilene(Texas),Texarkana(Texas),,5 hours 19 mins,577 km +Amarillo(Texas),Killeen,,6 hours 58 mins,734 km +Amarillo(Texas),Abilene(Texas),,4 hours 12 mins,461 km +Amarillo(Texas),Harlingen(Texas),,11 hours 7 mins,"1,225 km" +Amarillo(Texas),Lubbock(Texas),,1 hour 47 mins,197 km +Amarillo(Texas),College Station(Texas),,7 hours 42 mins,825 km +Amarillo(Texas),Corpus Christi(Texas),,9 hours 28 mins,"1,050 km" +Amarillo(Texas),Wichita Falls(Texas),,3 hours 27 mins,362 km +Amarillo(Texas),Waco(Texas),,6 hours 24 mins,690 km +Amarillo(Texas),San Angelo(Texas),,4 hours 35 mins,492 km +Amarillo(Texas),Houston(Texas),,8 hours 49 mins,965 km +Amarillo(Texas),San Antonio(Texas),,7 hours 31 mins,817 km +Amarillo(Texas),Del Rio(Texas),,7 hours 2 mins,743 km +Amarillo(Texas),Mission(Texas),,11 hours 6 mins,"1,213 km" +Amarillo(Texas),Beaumont(Texas),,9 hours 50 mins,"1,040 km" +Amarillo(Texas),Longview(Texas),,7 hours 21 mins,789 km +Amarillo(Texas),Midland(Texas),,3 hours 33 mins,387 km +Amarillo(Texas),El Paso(Texas),,6 hours 46 mins,704 km +Amarillo(Texas),Brownsville(Texas),,11 hours 28 mins,"1,264 km" +Amarillo(Texas),Austin(Texas),,7 hours 38 mins,797 km +Amarillo(Texas),Dallas(Texas),,5 hours 30 mins,589 km +Amarillo(Texas),Laredo(Texas),,9 hours 38 mins,"1,007 km" +Amarillo(Texas),Texarkana(Texas),,7 hours 47 mins,798 km +Harlingen(Texas),Killeen,,5 hours 46 mins,632 km +Harlingen(Texas),Abilene(Texas),,7 hours 25 mins,802 km +Harlingen(Texas),Amarillo(Texas),,11 hours 0 mins,"1,210 km" +Harlingen(Texas),Lubbock(Texas),,9 hours 21 mins,"1,027 km" +Harlingen(Texas),College Station(Texas),,5 hours 44 mins,576 km +Harlingen(Texas),Corpus Christi(Texas),,2 hours 2 mins,219 km +Harlingen(Texas),Wichita Falls(Texas),,9 hours 0 mins,"1,011 km" +Harlingen(Texas),Waco(Texas),,6 hours 12 mins,687 km +Harlingen(Texas),San Angelo(Texas),,6 hours 42 mins,747 km +Harlingen(Texas),Houston(Texas),,4 hours 56 mins,529 km +Harlingen(Texas),San Antonio(Texas),,3 hours 39 mins,407 km +Harlingen(Texas),Del Rio(Texas),,5 hours 44 mins,570 km +Harlingen(Texas),Mission(Texas),,45 mins,67.8 km +Harlingen(Texas),Beaumont(Texas),,6 hours 9 mins,664 km +Harlingen(Texas),Longview(Texas),,8 hours 14 mins,868 km +Harlingen(Texas),Midland(Texas),,8 hours 23 mins,930 km +Harlingen(Texas),El Paso(Texas),,11 hours 23 mins,"1,295 km" +Harlingen(Texas),Brownsville(Texas),,30 mins,41.7 km +Harlingen(Texas),Austin(Texas),,4 hours 44 mins,525 km +Harlingen(Texas),Dallas(Texas),,7 hours 29 mins,837 km +Harlingen(Texas),Laredo(Texas),,3 hours 2 mins,289 km +Harlingen(Texas),Texarkana(Texas),,9 hours 34 mins,994 km +Lubbock(Texas),Killeen,,5 hours 15 mins,537 km +Lubbock(Texas),Abilene(Texas),,2 hours 28 mins,264 km +Lubbock(Texas),Amarillo(Texas),,1 hour 48 mins,197 km +Lubbock(Texas),Harlingen(Texas),,9 hours 23 mins,"1,029 km" +Lubbock(Texas),College Station(Texas),,6 hours 43 mins,688 km +Lubbock(Texas),Corpus Christi(Texas),,7 hours 45 mins,853 km +Lubbock(Texas),Wichita Falls(Texas),,3 hours 8 mins,336 km +Lubbock(Texas),Waco(Texas),,5 hours 24 mins,565 km +Lubbock(Texas),San Angelo(Texas),,2 hours 51 mins,295 km +Lubbock(Texas),Houston(Texas),,8 hours 1 min,838 km +Lubbock(Texas),San Antonio(Texas),,5 hours 47 mins,621 km +Lubbock(Texas),Del Rio(Texas),,5 hours 18 mins,546 km +Lubbock(Texas),Mission(Texas),,9 hours 23 mins,"1,017 km" +Lubbock(Texas),Beaumont(Texas),,9 hours 15 mins,998 km +Lubbock(Texas),Longview(Texas),,6 hours 50 mins,763 km +Lubbock(Texas),Midland(Texas),,1 hour 50 mins,191 km +Lubbock(Texas),El Paso(Texas),,5 hours 33 mins,560 km +Lubbock(Texas),Brownsville(Texas),,9 hours 45 mins,"1,068 km" +Lubbock(Texas),Austin(Texas),,5 hours 54 mins,600 km +Lubbock(Texas),Dallas(Texas),,5 hours 2 mins,558 km +Lubbock(Texas),Laredo(Texas),,7 hours 54 mins,810 km +Lubbock(Texas),Texarkana(Texas),,7 hours 27 mins,769 km +College Station(Texas),Killeen,,1 hour 50 mins,176 km +College Station(Texas),Abilene(Texas),,4 hours 19 mins,424 km +College Station(Texas),Amarillo(Texas),,7 hours 40 mins,824 km +College Station(Texas),Harlingen(Texas),,5 hours 49 mins,577 km +College Station(Texas),Lubbock(Texas),,6 hours 44 mins,691 km +College Station(Texas),Corpus Christi(Texas),,4 hours 4 mins,382 km +College Station(Texas),Wichita Falls(Texas),,4 hours 16 mins,464 km +College Station(Texas),Waco(Texas),,1 hour 32 mins,148 km +College Station(Texas),San Angelo(Texas),,4 hours 40 mins,470 km +College Station(Texas),Houston(Texas),,1 hour 29 mins,156 km +College Station(Texas),San Antonio(Texas),,2 hours 57 mins,280 km +College Station(Texas),Del Rio(Texas),,5 hours 20 mins,527 km +College Station(Texas),Mission(Texas),,6 hours 10 mins,617 km +College Station(Texas),Beaumont(Texas),,2 hours 42 mins,285 km +College Station(Texas),Longview(Texas),,3 hours 11 mins,300 km +College Station(Texas),Midland(Texas),,6 hours 21 mins,651 km +College Station(Texas),El Paso(Texas),,10 hours 11 mins,"1,094 km" +College Station(Texas),Brownsville(Texas),,6 hours 11 mins,616 km +College Station(Texas),Austin(Texas),,1 hour 52 mins,172 km +College Station(Texas),Dallas(Texas),,2 hours 45 mins,291 km +College Station(Texas),Laredo(Texas),,5 hours 10 mins,528 km +College Station(Texas),Texarkana(Texas),,4 hours 41 mins,436 km +Corpus Christi(Texas),Killeen,,4 hours 10 mins,456 km +Corpus Christi(Texas),Abilene(Texas),,5 hours 49 mins,626 km +Corpus Christi(Texas),Amarillo(Texas),,9 hours 24 mins,"1,034 km" +Corpus Christi(Texas),Harlingen(Texas),,2 hours 5 mins,218 km +Corpus Christi(Texas),Lubbock(Texas),,7 hours 45 mins,851 km +Corpus Christi(Texas),College Station(Texas),,4 hours 6 mins,387 km +Corpus Christi(Texas),Wichita Falls(Texas),,7 hours 24 mins,835 km +Corpus Christi(Texas),Waco(Texas),,4 hours 36 mins,511 km +Corpus Christi(Texas),San Angelo(Texas),,5 hours 6 mins,571 km +Corpus Christi(Texas),Houston(Texas),,3 hours 18 mins,340 km +Corpus Christi(Texas),San Antonio(Texas),,2 hours 3 mins,231 km +Corpus Christi(Texas),Del Rio(Texas),,4 hours 10 mins,428 km +Corpus Christi(Texas),Mission(Texas),,2 hours 31 mins,258 km +Corpus Christi(Texas),Beaumont(Texas),,4 hours 31 mins,475 km +Corpus Christi(Texas),Longview(Texas),,6 hours 36 mins,679 km +Corpus Christi(Texas),Midland(Texas),,6 hours 47 mins,754 km +Corpus Christi(Texas),El Paso(Texas),,9 hours 47 mins,"1,119 km" +Corpus Christi(Texas),Brownsville(Texas),,2 hours 27 mins,258 km +Corpus Christi(Texas),Austin(Texas),,3 hours 8 mins,349 km +Corpus Christi(Texas),Dallas(Texas),,5 hours 53 mins,661 km +Corpus Christi(Texas),Laredo(Texas),,2 hours 32 mins,242 km +Corpus Christi(Texas),Texarkana(Texas),,7 hours 55 mins,805 km +Wichita Falls(Texas),Killeen,,3 hours 50 mins,421 km +Wichita Falls(Texas),Abilene(Texas),,2 hours 19 mins,245 km +Wichita Falls(Texas),Amarillo(Texas),,3 hours 28 mins,362 km +Wichita Falls(Texas),Harlingen(Texas),,9 hours 7 mins,"1,009 km" +Wichita Falls(Texas),Lubbock(Texas),,3 hours 12 mins,336 km +Wichita Falls(Texas),College Station(Texas),,4 hours 20 mins,463 km +Wichita Falls(Texas),Corpus Christi(Texas),,7 hours 29 mins,834 km +Wichita Falls(Texas),Waco(Texas),,3 hours 2 mins,327 km +Wichita Falls(Texas),San Angelo(Texas),,3 hours 34 mins,380 km +Wichita Falls(Texas),Houston(Texas),,5 hours 27 mins,602 km +Wichita Falls(Texas),San Antonio(Texas),,5 hours 38 mins,613 km +Wichita Falls(Texas),Del Rio(Texas),,6 hours 0 mins,633 km +Wichita Falls(Texas),Mission(Texas),,9 hours 7 mins,998 km +Wichita Falls(Texas),Beaumont(Texas),,6 hours 28 mins,678 km +Wichita Falls(Texas),Longview(Texas),,3 hours 59 mins,427 km +Wichita Falls(Texas),Midland(Texas),,4 hours 10 mins,447 km +Wichita Falls(Texas),El Paso(Texas),,8 hours 29 mins,937 km +Wichita Falls(Texas),Brownsville(Texas),,9 hours 29 mins,"1,049 km" +Wichita Falls(Texas),Austin(Texas),,4 hours 26 mins,486 km +Wichita Falls(Texas),Dallas(Texas),,2 hours 8 mins,226 km +Wichita Falls(Texas),Laredo(Texas),,7 hours 54 mins,863 km +Wichita Falls(Texas),Texarkana(Texas),,4 hours 26 mins,436 km +Waco(Texas),Killeen,,1 hour 0 mins,98.5 km +Waco(Texas),Abilene(Texas),,3 hours 4 mins,297 km +Waco(Texas),Amarillo(Texas),,6 hours 24 mins,687 km +Waco(Texas),Harlingen(Texas),,6 hours 17 mins,687 km +Waco(Texas),Lubbock(Texas),,5 hours 30 mins,564 km +Waco(Texas),College Station(Texas),,1 hour 32 mins,148 km +Waco(Texas),Corpus Christi(Texas),,4 hours 39 mins,512 km +Waco(Texas),Wichita Falls(Texas),,2 hours 59 mins,326 km +Waco(Texas),San Angelo(Texas),,3 hours 26 mins,337 km +Waco(Texas),Houston(Texas),,2 hours 50 mins,298 km +Waco(Texas),San Antonio(Texas),,2 hours 48 mins,291 km +Waco(Texas),Del Rio(Texas),,5 hours 13 mins,539 km +Waco(Texas),Mission(Texas),,6 hours 16 mins,676 km +Waco(Texas),Beaumont(Texas),,4 hours 3 mins,427 km +Waco(Texas),Longview(Texas),,2 hours 56 mins,283 km +Waco(Texas),Midland(Texas),,5 hours 8 mins,516 km +Waco(Texas),El Paso(Texas),,9 hours 14 mins,990 km +Waco(Texas),Brownsville(Texas),,6 hours 38 mins,727 km +Waco(Texas),Austin(Texas),,1 hour 36 mins,164 km +Waco(Texas),Dallas(Texas),,1 hour 28 mins,153 km +Waco(Texas),Laredo(Texas),,5 hours 4 mins,541 km +Waco(Texas),Texarkana(Texas),,4 hours 4 mins,439 km +San Angelo(Texas),Killeen,,2 hours 56 mins,293 km +San Angelo(Texas),Abilene(Texas),,1 hour 29 mins,144 km +San Angelo(Texas),Amarillo(Texas),,4 hours 35 mins,511 km +San Angelo(Texas),Harlingen(Texas),,6 hours 46 mins,745 km +San Angelo(Texas),Lubbock(Texas),,2 hours 53 mins,315 km +San Angelo(Texas),College Station(Texas),,4 hours 38 mins,461 km +San Angelo(Texas),Corpus Christi(Texas),,5 hours 7 mins,569 km +San Angelo(Texas),Wichita Falls(Texas),,3 hours 33 mins,380 km +San Angelo(Texas),Waco(Texas),,3 hours 23 mins,336 km +San Angelo(Texas),Houston(Texas),,5 hours 46 mins,586 km +San Angelo(Texas),San Antonio(Texas),,3 hours 10 mins,337 km +San Angelo(Texas),Del Rio(Texas),,2 hours 31 mins,252 km +San Angelo(Texas),Mission(Texas),,6 hours 45 mins,733 km +San Angelo(Texas),Beaumont(Texas),,7 hours 1 min,720 km +San Angelo(Texas),Longview(Texas),,5 hours 42 mins,621 km +San Angelo(Texas),Midland(Texas),,1 hour 47 mins,180 km +San Angelo(Texas),El Paso(Texas),,5 hours 56 mins,650 km +San Angelo(Texas),Brownsville(Texas),,7 hours 7 mins,784 km +San Angelo(Texas),Austin(Texas),,3 hours 28 mins,327 km +San Angelo(Texas),Dallas(Texas),,3 hours 55 mins,416 km +San Angelo(Texas),Laredo(Texas),,5 hours 17 mins,527 km +San Angelo(Texas),Texarkana(Texas),,6 hours 31 mins,702 km +Houston(Texas),Killeen,,3 hours 9 mins,326 km +Houston(Texas),Abilene(Texas),,5 hours 38 mins,574 km +Houston(Texas),Amarillo(Texas),,8 hours 50 mins,965 km +Houston(Texas),Harlingen(Texas),,4 hours 59 mins,529 km +Houston(Texas),Lubbock(Texas),,8 hours 3 mins,841 km +Houston(Texas),College Station(Texas),,1 hour 30 mins,153 km +Houston(Texas),Corpus Christi(Texas),,3 hours 13 mins,334 km +Houston(Texas),Wichita Falls(Texas),,5 hours 25 mins,604 km +Houston(Texas),Waco(Texas),,2 hours 51 mins,298 km +Houston(Texas),San Angelo(Texas),,5 hours 46 mins,587 km +Houston(Texas),San Antonio(Texas),,2 hours 56 mins,317 km +Houston(Texas),Del Rio(Texas),,5 hours 19 mins,564 km +Houston(Texas),Mission(Texas),,5 hours 25 mins,569 km +Houston(Texas),Beaumont(Texas),,1 hour 19 mins,137 km +Houston(Texas),Longview(Texas),,3 hours 24 mins,340 km +Houston(Texas),Midland(Texas),,7 hours 27 mins,768 km +Houston(Texas),El Paso(Texas),,10 hours 38 mins,"1,201 km" +Houston(Texas),Brownsville(Texas),,5 hours 21 mins,568 km +Houston(Texas),Austin(Texas),,2 hours 31 mins,266 km +Houston(Texas),Dallas(Texas),,3 hours 27 mins,385 km +Houston(Texas),Laredo(Texas),,5 hours 6 mins,507 km +Houston(Texas),Texarkana(Texas),,4 hours 44 mins,467 km +San Antonio(Texas),Killeen,,2 hours 21 mins,235 km +San Antonio(Texas),Abilene(Texas),,3 hours 53 mins,394 km +San Antonio(Texas),Amarillo(Texas),,7 hours 28 mins,802 km +San Antonio(Texas),Harlingen(Texas),,3 hours 43 mins,406 km +San Antonio(Texas),Lubbock(Texas),,5 hours 48 mins,619 km +San Antonio(Texas),College Station(Texas),,2 hours 54 mins,272 km +San Antonio(Texas),Corpus Christi(Texas),,2 hours 5 mins,231 km +San Antonio(Texas),Wichita Falls(Texas),,5 hours 34 mins,614 km +San Antonio(Texas),Waco(Texas),,2 hours 47 mins,290 km +San Antonio(Texas),San Angelo(Texas),,3 hours 9 mins,339 km +San Antonio(Texas),Houston(Texas),,2 hours 56 mins,317 km +San Antonio(Texas),Del Rio(Texas),,2 hours 34 mins,251 km +San Antonio(Texas),Mission(Texas),,3 hours 43 mins,395 km +San Antonio(Texas),Beaumont(Texas),,4 hours 12 mins,451 km +San Antonio(Texas),Longview(Texas),,5 hours 33 mins,570 km +San Antonio(Texas),Midland(Texas),,4 hours 51 mins,522 km +San Antonio(Texas),El Paso(Texas),,7 hours 50 mins,887 km +San Antonio(Texas),Brownsville(Texas),,4 hours 5 mins,446 km +San Antonio(Texas),Austin(Texas),,1 hour 19 mins,128 km +San Antonio(Texas),Dallas(Texas),,4 hours 4 mins,440 km +San Antonio(Texas),Laredo(Texas),,2 hours 24 mins,252 km +San Antonio(Texas),Texarkana(Texas),,6 hours 40 mins,727 km +Del Rio(Texas),Killeen,,4 hours 36 mins,452 km +Del Rio(Texas),Abilene(Texas),,3 hours 53 mins,397 km +Del Rio(Texas),Amarillo(Texas),,7 hours 0 mins,754 km +Del Rio(Texas),Harlingen(Texas),,5 hours 46 mins,570 km +Del Rio(Texas),Lubbock(Texas),,5 hours 17 mins,558 km +Del Rio(Texas),College Station(Texas),,5 hours 20 mins,535 km +Del Rio(Texas),Corpus Christi(Texas),,4 hours 14 mins,429 km +Del Rio(Texas),Wichita Falls(Texas),,5 hours 56 mins,633 km +Del Rio(Texas),Waco(Texas),,5 hours 15 mins,539 km +Del Rio(Texas),San Angelo(Texas),,2 hours 29 mins,252 km +Del Rio(Texas),Houston(Texas),,5 hours 22 mins,564 km +Del Rio(Texas),San Antonio(Texas),,2 hours 37 mins,252 km +Del Rio(Texas),Mission(Texas),,5 hours 38 mins,560 km +Del Rio(Texas),Beaumont(Texas),,6 hours 37 mins,698 km +Del Rio(Texas),Longview(Texas),,8 hours 1 min,819 km +Del Rio(Texas),Midland(Texas),,3 hours 49 mins,375 km +Del Rio(Texas),El Paso(Texas),,6 hours 25 mins,684 km +Del Rio(Texas),Brownsville(Texas),,6 hours 8 mins,610 km +Del Rio(Texas),Austin(Texas),,3 hours 47 mins,377 km +Del Rio(Texas),Dallas(Texas),,6 hours 18 mins,669 km +Del Rio(Texas),Laredo(Texas),,3 hours 3 mins,288 km +Del Rio(Texas),Texarkana(Texas),,8 hours 55 mins,955 km +Mission(Texas),Killeen,,5 hours 48 mins,621 km +Mission(Texas),Abilene(Texas),,7 hours 27 mins,791 km +Mission(Texas),Amarillo(Texas),,11 hours 2 mins,"1,199 km" +Mission(Texas),Harlingen(Texas),,46 mins,68.2 km +Mission(Texas),Lubbock(Texas),,9 hours 23 mins,"1,016 km" +Mission(Texas),College Station(Texas),,6 hours 5 mins,617 km +Mission(Texas),Corpus Christi(Texas),,2 hours 30 mins,259 km +Mission(Texas),Wichita Falls(Texas),,9 hours 1 min,"1,000 km" +Mission(Texas),Waco(Texas),,6 hours 14 mins,676 km +Mission(Texas),San Angelo(Texas),,6 hours 44 mins,736 km +Mission(Texas),Houston(Texas),,5 hours 25 mins,569 km +Mission(Texas),San Antonio(Texas),,3 hours 41 mins,396 km +Mission(Texas),Del Rio(Texas),,5 hours 37 mins,515 km +Mission(Texas),Beaumont(Texas),,6 hours 37 mins,705 km +Mission(Texas),Longview(Texas),,8 hours 42 mins,908 km +Mission(Texas),Midland(Texas),,8 hours 25 mins,919 km +Mission(Texas),El Paso(Texas),,11 hours 24 mins,"1,284 km" +Mission(Texas),Brownsville(Texas),,1 hour 7 mins,107 km +Mission(Texas),Austin(Texas),,4 hours 46 mins,514 km +Mission(Texas),Dallas(Texas),,7 hours 31 mins,826 km +Mission(Texas),Laredo(Texas),,2 hours 43 mins,223 km +Mission(Texas),Texarkana(Texas),,10 hours 7 mins,"1,113 km" +Beaumont(Texas),Killeen,,4 hours 23 mins,432 km +Beaumont(Texas),Abilene(Texas),,6 hours 52 mins,680 km +Beaumont(Texas),Amarillo(Texas),,9 hours 50 mins,"1,039 km" +Beaumont(Texas),Harlingen(Texas),,6 hours 15 mins,665 km +Beaumont(Texas),Lubbock(Texas),,9 hours 19 mins,997 km +Beaumont(Texas),College Station(Texas),,2 hours 44 mins,259 km +Beaumont(Texas),Corpus Christi(Texas),,4 hours 30 mins,471 km +Beaumont(Texas),Wichita Falls(Texas),,6 hours 25 mins,679 km +Beaumont(Texas),Waco(Texas),,4 hours 6 mins,396 km +Beaumont(Texas),San Angelo(Texas),,7 hours 4 mins,721 km +Beaumont(Texas),Houston(Texas),,1 hour 22 mins,137 km +Beaumont(Texas),San Antonio(Texas),,4 hours 14 mins,451 km +Beaumont(Texas),Del Rio(Texas),,6 hours 37 mins,698 km +Beaumont(Texas),Mission(Texas),,6 hours 42 mins,705 km +Beaumont(Texas),Longview(Texas),,3 hours 20 mins,315 km +Beaumont(Texas),Midland(Texas),,8 hours 45 mins,902 km +Beaumont(Texas),El Paso(Texas),,11 hours 56 mins,"1,336 km" +Beaumont(Texas),Brownsville(Texas),,6 hours 37 mins,705 km +Beaumont(Texas),Austin(Texas),,3 hours 50 mins,400 km +Beaumont(Texas),Dallas(Texas),,4 hours 27 mins,460 km +Beaumont(Texas),Laredo(Texas),,6 hours 22 mins,643 km +Beaumont(Texas),Texarkana(Texas),,4 hours 25 mins,421 km +Longview(Texas),Killeen,,3 hours 46 mins,379 km +Longview(Texas),Abilene(Texas),,4 hours 29 mins,496 km +Longview(Texas),Amarillo(Texas),,7 hours 20 mins,795 km +Longview(Texas),Harlingen(Texas),,8 hours 18 mins,868 km +Longview(Texas),Lubbock(Texas),,6 hours 53 mins,761 km +Longview(Texas),College Station(Texas),,3 hours 15 mins,305 km +Longview(Texas),Corpus Christi(Texas),,6 hours 32 mins,673 km +Longview(Texas),Wichita Falls(Texas),,3 hours 55 mins,434 km +Longview(Texas),Waco(Texas),,2 hours 57 mins,283 km +Longview(Texas),San Angelo(Texas),,5 hours 43 mins,620 km +Longview(Texas),Houston(Texas),,3 hours 24 mins,340 km +Longview(Texas),San Antonio(Texas),,5 hours 34 mins,571 km +Longview(Texas),Del Rio(Texas),,7 hours 59 mins,819 km +Longview(Texas),Mission(Texas),,8 hours 44 mins,907 km +Longview(Texas),Beaumont(Texas),,3 hours 20 mins,315 km +Longview(Texas),Midland(Texas),,6 hours 38 mins,737 km +Longview(Texas),El Paso(Texas),,10 hours 56 mins,"1,227 km" +Longview(Texas),Brownsville(Texas),,8 hours 39 mins,907 km +Longview(Texas),Austin(Texas),,4 hours 22 mins,444 km +Longview(Texas),Dallas(Texas),,1 hour 54 mins,208 km +Longview(Texas),Laredo(Texas),,7 hours 50 mins,821 km +Longview(Texas),Texarkana(Texas),,1 hour 36 mins,141 km +Midland(Texas),Killeen,,4 hours 37 mins,480 km +Midland(Texas),Abilene(Texas),,2 hours 15 mins,238 km +Midland(Texas),Amarillo(Texas),,3 hours 33 mins,387 km +Midland(Texas),Harlingen(Texas),,8 hours 28 mins,930 km +Midland(Texas),Lubbock(Texas),,1 hour 51 mins,191 km +Midland(Texas),College Station(Texas),,6 hours 19 mins,647 km +Midland(Texas),Corpus Christi(Texas),,6 hours 50 mins,755 km +Midland(Texas),Wichita Falls(Texas),,4 hours 9 mins,448 km +Midland(Texas),Waco(Texas),,5 hours 5 mins,518 km +Midland(Texas),San Angelo(Texas),,1 hour 47 mins,180 km +Midland(Texas),Houston(Texas),,7 hours 26 mins,773 km +Midland(Texas),San Antonio(Texas),,4 hours 52 mins,522 km +Midland(Texas),Del Rio(Texas),,3 hours 51 mins,375 km +Midland(Texas),Mission(Texas),,8 hours 27 mins,918 km +Midland(Texas),Beaumont(Texas),,8 hours 42 mins,907 km +Midland(Texas),Longview(Texas),,6 hours 36 mins,737 km +Midland(Texas),El Paso(Texas),,4 hours 27 mins,491 km +Midland(Texas),Brownsville(Texas),,8 hours 49 mins,969 km +Midland(Texas),Austin(Texas),,5 hours 9 mins,514 km +Midland(Texas),Dallas(Texas),,4 hours 48 mins,532 km +Midland(Texas),Laredo(Texas),,6 hours 40 mins,658 km +Midland(Texas),Texarkana(Texas),,7 hours 25 mins,817 km +El Paso(Texas),Killeen,,8 hours 29 mins,920 km +El Paso(Texas),Abilene(Texas),,6 hours 33 mins,729 km +El Paso(Texas),Amarillo(Texas),,6 hours 43 mins,704 km +El Paso(Texas),Harlingen(Texas),,11 hours 26 mins,"1,295 km" +El Paso(Texas),Lubbock(Texas),,5 hours 27 mins,560 km +El Paso(Texas),College Station(Texas),,10 hours 11 mins,"1,088 km" +El Paso(Texas),Corpus Christi(Texas),,9 hours 48 mins,"1,119 km" +El Paso(Texas),Wichita Falls(Texas),,8 hours 27 mins,939 km +El Paso(Texas),Waco(Texas),,9 hours 12 mins,989 km +El Paso(Texas),San Angelo(Texas),,5 hours 56 mins,650 km +El Paso(Texas),Houston(Texas),,10 hours 39 mins,"1,201 km" +El Paso(Texas),San Antonio(Texas),,7 hours 50 mins,887 km +El Paso(Texas),Del Rio(Texas),,6 hours 24 mins,683 km +El Paso(Texas),Mission(Texas),,11 hours 26 mins,"1,283 km" +El Paso(Texas),Beaumont(Texas),,11 hours 54 mins,"1,335 km" +El Paso(Texas),Longview(Texas),,10 hours 54 mins,"1,227 km" +El Paso(Texas),Midland(Texas),,4 hours 27 mins,491 km +El Paso(Texas),Brownsville(Texas),,11 hours 48 mins,"1,334 km" +El Paso(Texas),Austin(Texas),,8 hours 40 mins,927 km +El Paso(Texas),Dallas(Texas),,9 hours 6 mins,"1,022 km" +El Paso(Texas),Laredo(Texas),,9 hours 20 mins,973 km +El Paso(Texas),Texarkana(Texas),,11 hours 43 mins,"1,307 km" +Brownsville(Texas),Killeen,,6 hours 10 mins,672 km +Brownsville(Texas),Abilene(Texas),,7 hours 49 mins,842 km +Brownsville(Texas),Amarillo(Texas),,11 hours 24 mins,"1,250 km" +Brownsville(Texas),Harlingen(Texas),,31 mins,42.1 km +Brownsville(Texas),Lubbock(Texas),,9 hours 45 mins,"1,067 km" +Brownsville(Texas),College Station(Texas),,6 hours 8 mins,616 km +Brownsville(Texas),Corpus Christi(Texas),,2 hours 26 mins,259 km +Brownsville(Texas),Wichita Falls(Texas),,9 hours 23 mins,"1,051 km" +Brownsville(Texas),Waco(Texas),,6 hours 36 mins,727 km +Brownsville(Texas),San Angelo(Texas),,7 hours 6 mins,787 km +Brownsville(Texas),Houston(Texas),,5 hours 20 mins,569 km +Brownsville(Texas),San Antonio(Texas),,4 hours 3 mins,447 km +Brownsville(Texas),Del Rio(Texas),,6 hours 8 mins,610 km +Brownsville(Texas),Mission(Texas),,1 hour 8 mins,108 km +Brownsville(Texas),Beaumont(Texas),,6 hours 33 mins,704 km +Brownsville(Texas),Longview(Texas),,8 hours 38 mins,908 km +Brownsville(Texas),Midland(Texas),,8 hours 47 mins,970 km +Brownsville(Texas),El Paso(Texas),,11 hours 46 mins,"1,335 km" +Brownsville(Texas),Austin(Texas),,5 hours 8 mins,565 km +Brownsville(Texas),Dallas(Texas),,7 hours 52 mins,877 km +Brownsville(Texas),Laredo(Texas),,3 hours 26 mins,329 km +Brownsville(Texas),Texarkana(Texas),,9 hours 57 mins,"1,034 km" +Austin(Texas),Killeen,,1 hour 10 mins,109 km +Austin(Texas),Abilene(Texas),,3 hours 35 mins,348 km +Austin(Texas),Amarillo(Texas),,7 hours 37 mins,783 km +Austin(Texas),Harlingen(Texas),,4 hours 48 mins,525 km +Austin(Texas),Lubbock(Texas),,5 hours 57 mins,600 km +Austin(Texas),College Station(Texas),,1 hour 51 mins,172 km +Austin(Texas),Corpus Christi(Texas),,3 hours 10 mins,350 km +Austin(Texas),Wichita Falls(Texas),,4 hours 24 mins,488 km +Austin(Texas),Waco(Texas),,1 hour 36 mins,164 km +Austin(Texas),San Angelo(Texas),,3 hours 27 mins,330 km +Austin(Texas),Houston(Texas),,2 hours 31 mins,266 km +Austin(Texas),San Antonio(Texas),,1 hour 19 mins,128 km +Austin(Texas),Del Rio(Texas),,3 hours 44 mins,376 km +Austin(Texas),Mission(Texas),,4 hours 48 mins,513 km +Austin(Texas),Beaumont(Texas),,3 hours 46 mins,400 km +Austin(Texas),Longview(Texas),,4 hours 22 mins,445 km +Austin(Texas),Midland(Texas),,5 hours 8 mins,511 km +Austin(Texas),El Paso(Texas),,8 hours 39 mins,928 km +Austin(Texas),Brownsville(Texas),,5 hours 10 mins,564 km +Austin(Texas),Dallas(Texas),,2 hours 53 mins,314 km +Austin(Texas),Laredo(Texas),,3 hours 35 mins,379 km +Austin(Texas),Texarkana(Texas),,5 hours 29 mins,601 km +Dallas(Texas),Killeen,,2 hours 17 mins,248 km +Dallas(Texas),Abilene(Texas),,2 hours 41 mins,291 km +Dallas(Texas),Amarillo(Texas),,5 hours 30 mins,588 km +Dallas(Texas),Harlingen(Texas),,7 hours 34 mins,837 km +Dallas(Texas),Lubbock(Texas),,5 hours 5 mins,556 km +Dallas(Texas),College Station(Texas),,2 hours 46 mins,291 km +Dallas(Texas),Corpus Christi(Texas),,5 hours 56 mins,662 km +Dallas(Texas),Wichita Falls(Texas),,2 hours 5 mins,227 km +Dallas(Texas),Waco(Texas),,1 hour 28 mins,155 km +Dallas(Texas),San Angelo(Texas),,3 hours 55 mins,415 km +Dallas(Texas),Houston(Texas),,3 hours 29 mins,385 km +Dallas(Texas),San Antonio(Texas),,4 hours 4 mins,441 km +Dallas(Texas),Del Rio(Texas),,6 hours 21 mins,668 km +Dallas(Texas),Mission(Texas),,7 hours 33 mins,826 km +Dallas(Texas),Beaumont(Texas),,4 hours 29 mins,460 km +Dallas(Texas),Longview(Texas),,1 hour 56 mins,206 km +Dallas(Texas),Midland(Texas),,4 hours 50 mins,531 km +Dallas(Texas),El Paso(Texas),,9 hours 8 mins,"1,021 km" +Dallas(Texas),Brownsville(Texas),,7 hours 55 mins,877 km +Dallas(Texas),Austin(Texas),,2 hours 53 mins,314 km +Dallas(Texas),Laredo(Texas),,6 hours 21 mins,691 km +Dallas(Texas),Texarkana(Texas),,2 hours 42 mins,287 km +Laredo(Texas),Killeen,,4 hours 39 mins,486 km +Laredo(Texas),Abilene(Texas),,6 hours 7 mins,606 km +Laredo(Texas),Amarillo(Texas),,9 hours 38 mins,992 km +Laredo(Texas),Harlingen(Texas),,3 hours 4 mins,290 km +Laredo(Texas),Lubbock(Texas),,7 hours 58 mins,809 km +Laredo(Texas),College Station(Texas),,5 hours 8 mins,535 km +Laredo(Texas),Corpus Christi(Texas),,2 hours 31 mins,234 km +Laredo(Texas),Wichita Falls(Texas),,7 hours 52 mins,865 km +Laredo(Texas),Waco(Texas),,5 hours 5 mins,541 km +Laredo(Texas),San Angelo(Texas),,5 hours 19 mins,529 km +Laredo(Texas),Houston(Texas),,5 hours 4 mins,507 km +Laredo(Texas),San Antonio(Texas),,2 hours 25 mins,252 km +Laredo(Texas),Del Rio(Texas),,3 hours 3 mins,288 km +Laredo(Texas),Mission(Texas),,2 hours 48 mins,222 km +Laredo(Texas),Beaumont(Texas),,6 hours 17 mins,642 km +Laredo(Texas),Longview(Texas),,7 hours 50 mins,822 km +Laredo(Texas),Midland(Texas),,6 hours 42 mins,659 km +Laredo(Texas),El Paso(Texas),,9 hours 21 mins,973 km +Laredo(Texas),Brownsville(Texas),,3 hours 26 mins,329 km +Laredo(Texas),Austin(Texas),,3 hours 37 mins,379 km +Laredo(Texas),Dallas(Texas),,6 hours 21 mins,691 km +Laredo(Texas),Texarkana(Texas),,8 hours 57 mins,978 km +Texarkana(Texas),Killeen,,4 hours 54 mins,537 km +Texarkana(Texas),Abilene(Texas),,5 hours 20 mins,579 km +Texarkana(Texas),Amarillo(Texas),,7 hours 56 mins,811 km +Texarkana(Texas),Harlingen(Texas),,9 hours 38 mins,994 km +Texarkana(Texas),Lubbock(Texas),,7 hours 43 mins,843 km +Texarkana(Texas),College Station(Texas),,4 hours 44 mins,439 km +Texarkana(Texas),Corpus Christi(Texas),,7 hours 52 mins,799 km +Texarkana(Texas),Wichita Falls(Texas),,4 hours 32 mins,451 km +Texarkana(Texas),Waco(Texas),,4 hours 6 mins,444 km +Texarkana(Texas),San Angelo(Texas),,6 hours 34 mins,703 km +Texarkana(Texas),Houston(Texas),,4 hours 44 mins,466 km +Texarkana(Texas),San Antonio(Texas),,6 hours 42 mins,729 km +Texarkana(Texas),Del Rio(Texas),,8 hours 59 mins,956 km +Texarkana(Texas),Mission(Texas),,10 hours 11 mins,"1,114 km" +Texarkana(Texas),Beaumont(Texas),,4 hours 26 mins,420 km +Texarkana(Texas),Longview(Texas),,1 hour 36 mins,142 km +Texarkana(Texas),Midland(Texas),,7 hours 28 mins,819 km +Texarkana(Texas),El Paso(Texas),,11 hours 46 mins,"1,309 km" +Texarkana(Texas),Brownsville(Texas),,9 hours 59 mins,"1,033 km" +Texarkana(Texas),Austin(Texas),,5 hours 30 mins,603 km +Texarkana(Texas),Dallas(Texas),,2 hours 43 mins,289 km +Texarkana(Texas),Laredo(Texas),,8 hours 58 mins,980 km +Manchester,Charlotte,,, +Charlotte,Manchester,,, +Hartford,Moline(Illinois),,15 hours 31 mins,"1,670 km" +Hartford,Belleville(Illinois),,16 hours 11 mins,"1,731 km" +Hartford,Bloomington(Illinois),,14 hours 59 mins,"1,611 km" +Hartford,Champaign(Illinois),,14 hours 21 mins,"1,540 km" +Hartford,Chicago(Illinois),,13 hours 24 mins,"1,435 km" +Hartford,Rockford(Illinois),,14 hours 48 mins,"1,575 km" +Hartford,Peoria(Illinois),,15 hours 19 mins,"1,657 km" +Moline(Illinois),Hartford,,15 hours 33 mins,"1,671 km" +Moline(Illinois),Belleville(Illinois),,3 hours 59 mins,417 km +Moline(Illinois),Bloomington(Illinois),,2 hours 2 mins,210 km +Moline(Illinois),Champaign(Illinois),,2 hours 43 mins,293 km +Moline(Illinois),Chicago(Illinois),,2 hours 43 mins,266 km +Moline(Illinois),Rockford(Illinois),,2 hours 1 min,194 km +Moline(Illinois),Peoria(Illinois),,1 hour 24 mins,149 km +Belleville(Illinois),Hartford,,16 hours 14 mins,"1,734 km" +Belleville(Illinois),Moline(Illinois),,4 hours 0 mins,417 km +Belleville(Illinois),Bloomington(Illinois),,2 hours 36 mins,257 km +Belleville(Illinois),Champaign(Illinois),,2 hours 49 mins,287 km +Belleville(Illinois),Chicago(Illinois),,4 hours 36 mins,474 km +Belleville(Illinois),Rockford(Illinois),,4 hours 30 mins,471 km +Belleville(Illinois),Peoria(Illinois),,2 hours 37 mins,267 km +Bloomington(Illinois),Hartford,,14 hours 59 mins,"1,606 km" +Bloomington(Illinois),Moline(Illinois),,2 hours 3 mins,211 km +Bloomington(Illinois),Belleville(Illinois),,2 hours 36 mins,258 km +Bloomington(Illinois),Champaign(Illinois),,52 mins,82.0 km +Bloomington(Illinois),Chicago(Illinois),,2 hours 11 mins,216 km +Bloomington(Illinois),Rockford(Illinois),,2 hours 6 mins,214 km +Bloomington(Illinois),Peoria(Illinois),,39 mins,61.1 km +Champaign(Illinois),Hartford,,14 hours 24 mins,"1,542 km" +Champaign(Illinois),Moline(Illinois),,2 hours 46 mins,295 km +Champaign(Illinois),Belleville(Illinois),,2 hours 51 mins,288 km +Champaign(Illinois),Bloomington(Illinois),,52 mins,81.5 km +Champaign(Illinois),Chicago(Illinois),,2 hours 8 mins,217 km +Champaign(Illinois),Rockford(Illinois),,2 hours 50 mins,299 km +Champaign(Illinois),Peoria(Illinois),,1 hour 23 mins,145 km +Chicago(Illinois),Hartford,,13 hours 24 mins,"1,436 km" +Chicago(Illinois),Moline(Illinois),,2 hours 37 mins,265 km +Chicago(Illinois),Belleville(Illinois),,4 hours 34 mins,474 km +Chicago(Illinois),Bloomington(Illinois),,2 hours 11 mins,222 km +Chicago(Illinois),Champaign(Illinois),,2 hours 7 mins,218 km +Chicago(Illinois),Rockford(Illinois),,1 hour 32 mins,143 km +Chicago(Illinois),Peoria(Illinois),,2 hours 31 mins,267 km +Rockford(Illinois),Hartford,,14 hours 49 mins,"1,585 km" +Rockford(Illinois),Moline(Illinois),,1 hour 57 mins,191 km +Rockford(Illinois),Belleville(Illinois),,4 hours 29 mins,470 km +Rockford(Illinois),Bloomington(Illinois),,2 hours 6 mins,217 km +Rockford(Illinois),Champaign(Illinois),,2 hours 47 mins,297 km +Rockford(Illinois),Chicago(Illinois),,1 hour 34 mins,143 km +Rockford(Illinois),Peoria(Illinois),,2 hours 17 mins,219 km +Peoria(Illinois),Hartford,,15 hours 22 mins,"1,659 km" +Peoria(Illinois),Moline(Illinois),,1 hour 27 mins,151 km +Peoria(Illinois),Belleville(Illinois),,2 hours 38 mins,268 km +Peoria(Illinois),Bloomington(Illinois),,41 mins,61.5 km +Peoria(Illinois),Champaign(Illinois),,1 hour 22 mins,144 km +Peoria(Illinois),Chicago(Illinois),,2 hours 34 mins,269 km +Peoria(Illinois),Rockford(Illinois),,2 hours 18 mins,217 km +Hartford,Denver,,1 day 3 hours,"3,022 km" +Denver,Hartford,,1 day 3 hours,"3,027 km" +Dallas,Boise,,23 hours 37 mins,"2,592 km" +Boise,Dallas,,23 hours 36 mins,"2,561 km" +Devils Lake,Alamosa(Colorado),,17 hours 25 mins,"1,820 km" +Devils Lake,Grand Junction(Colorado),,17 hours 51 mins,"1,947 km" +Devils Lake,Durango(Colorado),,20 hours 2 mins,"2,097 km" +Devils Lake,Colorado Springs(Colorado),,15 hours 9 mins,"1,676 km" +Devils Lake,Gunnison(Colorado),,17 hours 35 mins,"1,878 km" +Devils Lake,Denver(Colorado),,14 hours 13 mins,"1,561 km" +Alamosa(Colorado),Devils Lake,,17 hours 19 mins,"1,821 km" +Alamosa(Colorado),Grand Junction(Colorado),,4 hours 29 mins,396 km +Alamosa(Colorado),Durango(Colorado),,2 hours 53 mins,240 km +Alamosa(Colorado),Colorado Springs(Colorado),,2 hours 36 mins,263 km +Alamosa(Colorado),Gunnison(Colorado),,2 hours 11 mins,197 km +Alamosa(Colorado),Denver(Colorado),,3 hours 38 mins,377 km +Grand Junction(Colorado),Devils Lake,,17 hours 45 mins,"1,949 km" +Grand Junction(Colorado),Alamosa(Colorado),,4 hours 37 mins,397 km +Grand Junction(Colorado),Durango(Colorado),,3 hours 33 mins,269 km +Grand Junction(Colorado),Colorado Springs(Colorado),,4 hours 46 mins,498 km +Grand Junction(Colorado),Gunnison(Colorado),,2 hours 27 mins,200 km +Grand Junction(Colorado),Denver(Colorado),,3 hours 51 mins,391 km +Durango(Colorado),Devils Lake,,19 hours 56 mins,"2,100 km" +Durango(Colorado),Alamosa(Colorado),,2 hours 52 mins,240 km +Durango(Colorado),Grand Junction(Colorado),,3 hours 30 mins,269 km +Durango(Colorado),Colorado Springs(Colorado),,5 hours 27 mins,504 km +Durango(Colorado),Gunnison(Colorado),,3 hours 47 mins,275 km +Durango(Colorado),Denver(Colorado),,6 hours 3 mins,542 km +Colorado Springs(Colorado),Devils Lake,,15 hours 3 mins,"1,676 km" +Colorado Springs(Colorado),Alamosa(Colorado),,2 hours 37 mins,266 km +Colorado Springs(Colorado),Grand Junction(Colorado),,4 hours 48 mins,500 km +Colorado Springs(Colorado),Durango(Colorado),,5 hours 29 mins,506 km +Colorado Springs(Colorado),Gunnison(Colorado),,3 hours 12 mins,276 km +Colorado Springs(Colorado),Denver(Colorado),,1 hour 9 mins,113 km +Gunnison(Colorado),Devils Lake,,17 hours 30 mins,"1,881 km" +Gunnison(Colorado),Alamosa(Colorado),,2 hours 12 mins,197 km +Gunnison(Colorado),Grand Junction(Colorado),,2 hours 20 mins,200 km +Gunnison(Colorado),Durango(Colorado),,3 hours 43 mins,275 km +Gunnison(Colorado),Colorado Springs(Colorado),,3 hours 10 mins,276 km +Gunnison(Colorado),Denver(Colorado),,3 hours 37 mins,323 km +Denver(Colorado),Devils Lake,,14 hours 11 mins,"1,566 km" +Denver(Colorado),Alamosa(Colorado),,3 hours 40 mins,377 km +Denver(Colorado),Grand Junction(Colorado),,3 hours 54 mins,392 km +Denver(Colorado),Durango(Colorado),,6 hours 5 mins,542 km +Denver(Colorado),Colorado Springs(Colorado),,1 hour 11 mins,114 km +Denver(Colorado),Gunnison(Colorado),,3 hours 39 mins,323 km +Tulsa,Abilene(Texas),,5 hours 45 mins,636 km +Tulsa,Amarillo(Texas),,5 hours 15 mins,588 km +Tulsa,Harlingen(Texas),,11 hours 35 mins,"1,251 km" +Tulsa,Lubbock(Texas),,6 hours 38 mins,727 km +Tulsa,College Station(Texas),,6 hours 45 mins,702 km +Tulsa,Corpus Christi(Texas),,9 hours 57 mins,"1,075 km" +Tulsa,Wichita Falls(Texas),,3 hours 31 mins,392 km +Tulsa,Waco(Texas),,5 hours 30 mins,569 km +Tulsa,San Angelo(Texas),,7 hours 0 mins,770 km +Tulsa,Houston(Texas),,7 hours 26 mins,795 km +Tulsa,San Antonio(Texas),,8 hours 6 mins,854 km +Tulsa,Del Rio(Texas),,9 hours 25 mins,"1,023 km" +Tulsa,Mission(Texas),,11 hours 35 mins,"1,239 km" +Tulsa,Beaumont(Texas),,7 hours 55 mins,765 km +Tulsa,Longview(Texas),,4 hours 43 mins,459 km +Tulsa,Midland(Texas),,7 hours 36 mins,837 km +Tulsa,El Paso(Texas),,11 hours 51 mins,"1,286 km" +Tulsa,Brownsville(Texas),,11 hours 57 mins,"1,290 km" +Tulsa,Austin(Texas),,6 hours 54 mins,727 km +Tulsa,Dallas(Texas),,4 hours 6 mins,414 km +Tulsa,Killeen(Texas),,6 hours 18 mins,662 km +Tulsa,Laredo(Texas),,10 hours 22 mins,"1,104 km" +Tulsa,Texarkana(Texas),,4 hours 26 mins,440 km +Abilene(Texas),Tulsa,,5 hours 46 mins,637 km +Abilene(Texas),Killeen(Texas),,2 hours 57 mins,285 km +Amarillo(Texas),Tulsa,,5 hours 16 mins,587 km +Amarillo(Texas),Killeen(Texas),,6 hours 58 mins,734 km +Harlingen(Texas),Tulsa,,11 hours 31 mins,"1,251 km" +Harlingen(Texas),Killeen(Texas),,5 hours 46 mins,632 km +Lubbock(Texas),Tulsa,,6 hours 36 mins,726 km +Lubbock(Texas),Killeen(Texas),,5 hours 15 mins,537 km +College Station(Texas),Tulsa,,6 hours 44 mins,702 km +College Station(Texas),Killeen(Texas),,1 hour 50 mins,176 km +Corpus Christi(Texas),Tulsa,,9 hours 55 mins,"1,075 km" +Corpus Christi(Texas),Killeen(Texas),,4 hours 10 mins,456 km +Wichita Falls(Texas),Tulsa,,3 hours 31 mins,392 km +Wichita Falls(Texas),Killeen(Texas),,3 hours 50 mins,421 km +Waco(Texas),Tulsa,,5 hours 31 mins,566 km +Waco(Texas),Killeen(Texas),,1 hour 0 mins,98.5 km +San Angelo(Texas),Tulsa,,7 hours 0 mins,770 km +San Angelo(Texas),Killeen(Texas),,2 hours 56 mins,293 km +Houston(Texas),Tulsa,,7 hours 26 mins,796 km +Houston(Texas),Killeen(Texas),,3 hours 9 mins,326 km +San Antonio(Texas),Tulsa,,8 hours 6 mins,854 km +San Antonio(Texas),Killeen(Texas),,2 hours 21 mins,235 km +Del Rio(Texas),Tulsa,,9 hours 24 mins,"1,023 km" +Del Rio(Texas),Killeen(Texas),,4 hours 36 mins,452 km +Mission(Texas),Tulsa,,11 hours 33 mins,"1,240 km" +Mission(Texas),Killeen(Texas),,5 hours 48 mins,621 km +Beaumont(Texas),Tulsa,,7 hours 57 mins,766 km +Beaumont(Texas),Killeen(Texas),,4 hours 23 mins,432 km +Longview(Texas),Tulsa,,4 hours 44 mins,459 km +Longview(Texas),Killeen(Texas),,3 hours 46 mins,379 km +Midland(Texas),Tulsa,,7 hours 36 mins,839 km +Midland(Texas),Killeen(Texas),,4 hours 37 mins,480 km +El Paso(Texas),Tulsa,,11 hours 49 mins,"1,284 km" +El Paso(Texas),Killeen(Texas),,8 hours 29 mins,920 km +Brownsville(Texas),Tulsa,,11 hours 55 mins,"1,291 km" +Brownsville(Texas),Killeen(Texas),,6 hours 10 mins,672 km +Austin(Texas),Tulsa,,6 hours 55 mins,728 km +Austin(Texas),Killeen(Texas),,1 hour 10 mins,109 km +Dallas(Texas),Tulsa,,4 hours 8 mins,416 km +Dallas(Texas),Killeen(Texas),,2 hours 17 mins,248 km +Killeen(Texas),Tulsa,,6 hours 20 mins,663 km +Killeen(Texas),Abilene(Texas),,2 hours 56 mins,285 km +Killeen(Texas),Amarillo(Texas),,6 hours 58 mins,719 km +Killeen(Texas),Harlingen(Texas),,5 hours 51 mins,632 km +Killeen(Texas),Lubbock(Texas),,5 hours 19 mins,536 km +Killeen(Texas),College Station(Texas),,1 hour 50 mins,170 km +Killeen(Texas),Corpus Christi(Texas),,4 hours 13 mins,457 km +Killeen(Texas),Wichita Falls(Texas),,3 hours 48 mins,422 km +Killeen(Texas),Waco(Texas),,1 hour 1 min,98.6 km +Killeen(Texas),San Angelo(Texas),,2 hours 57 mins,296 km +Killeen(Texas),Houston(Texas),,3 hours 8 mins,306 km +Killeen(Texas),San Antonio(Texas),,2 hours 21 mins,235 km +Killeen(Texas),Del Rio(Texas),,4 hours 37 mins,452 km +Killeen(Texas),Mission(Texas),,5 hours 50 mins,620 km +Killeen(Texas),Beaumont(Texas),,4 hours 21 mins,449 km +Killeen(Texas),Longview(Texas),,3 hours 47 mins,379 km +Killeen(Texas),Midland(Texas),,4 hours 38 mins,477 km +Killeen(Texas),El Paso(Texas),,8 hours 29 mins,920 km +Killeen(Texas),Brownsville(Texas),,6 hours 12 mins,671 km +Killeen(Texas),Austin(Texas),,1 hour 10 mins,108 km +Killeen(Texas),Dallas(Texas),,2 hours 18 mins,249 km +Killeen(Texas),Laredo(Texas),,4 hours 38 mins,486 km +Killeen(Texas),Texarkana(Texas),,4 hours 54 mins,535 km +Laredo(Texas),Tulsa,,10 hours 24 mins,"1,105 km" +Laredo(Texas),Killeen(Texas),,4 hours 39 mins,486 km +Texarkana(Texas),Tulsa,,4 hours 28 mins,447 km +Texarkana(Texas),Killeen(Texas),,4 hours 54 mins,537 km +Sault Ste. Marie,Pellston(Michigan),,1 hour 16 mins,122 km +Sault Ste. Marie,Traverse City(Michigan),,3 hours 0 mins,282 km +Sault Ste. Marie,Alpena(Michigan),,2 hours 39 mins,247 km +Sault Ste. Marie,Iron Mountain(Michigan),,3 hours 55 mins,363 km +Sault Ste. Marie,Kalamazoo(Michigan),,5 hours 5 mins,556 km +Sault Ste. Marie,Saginaw(Michigan),,3 hours 32 mins,400 km +Sault Ste. Marie,Grand Rapids(Michigan),,4 hours 22 mins,476 km +Sault Ste. Marie,Lansing(Michigan),,4 hours 6 mins,464 km +Sault Ste. Marie,Muskegon(Michigan),,4 hours 47 mins,499 km +Sault Ste. Marie,Hancock(Michigan),,4 hours 36 mins,427 km +Sault Ste. Marie,Detroit(Michigan),,4 hours 56 mins,560 km +Sault Ste. Marie,Escanaba(Michigan),,2 hours 59 mins,282 km +Pellston(Michigan),Sault Ste. Marie,,1 hour 17 mins,123 km +Pellston(Michigan),Traverse City(Michigan),,1 hour 49 mins,137 km +Pellston(Michigan),Alpena(Michigan),,1 hour 43 mins,157 km +Pellston(Michigan),Iron Mountain(Michigan),,3 hours 41 mins,345 km +Pellston(Michigan),Kalamazoo(Michigan),,4 hours 4 mins,407 km +Pellston(Michigan),Saginaw(Michigan),,2 hours 31 mins,292 km +Pellston(Michigan),Grand Rapids(Michigan),,3 hours 21 mins,327 km +Pellston(Michigan),Lansing(Michigan),,3 hours 4 mins,357 km +Pellston(Michigan),Muskegon(Michigan),,3 hours 46 mins,349 km +Pellston(Michigan),Hancock(Michigan),,4 hours 52 mins,455 km +Pellston(Michigan),Detroit(Michigan),,3 hours 55 mins,452 km +Pellston(Michigan),Escanaba(Michigan),,2 hours 45 mins,263 km +Traverse City(Michigan),Sault Ste. Marie,,3 hours 2 mins,283 km +Traverse City(Michigan),Pellston(Michigan),,1 hour 51 mins,137 km +Traverse City(Michigan),Alpena(Michigan),,2 hours 29 mins,204 km +Traverse City(Michigan),Iron Mountain(Michigan),,5 hours 26 mins,505 km +Traverse City(Michigan),Kalamazoo(Michigan),,2 hours 59 mins,312 km +Traverse City(Michigan),Saginaw(Michigan),,2 hours 32 mins,251 km +Traverse City(Michigan),Grand Rapids(Michigan),,2 hours 17 mins,232 km +Traverse City(Michigan),Lansing(Michigan),,2 hours 57 mins,296 km +Traverse City(Michigan),Muskegon(Michigan),,2 hours 34 mins,212 km +Traverse City(Michigan),Hancock(Michigan),,6 hours 37 mins,615 km +Traverse City(Michigan),Detroit(Michigan),,3 hours 56 mins,411 km +Traverse City(Michigan),Escanaba(Michigan),,4 hours 30 mins,423 km +Alpena(Michigan),Sault Ste. Marie,,2 hours 39 mins,247 km +Alpena(Michigan),Pellston(Michigan),,1 hour 42 mins,156 km +Alpena(Michigan),Traverse City(Michigan),,2 hours 27 mins,204 km +Alpena(Michigan),Iron Mountain(Michigan),,5 hours 3 mins,469 km +Alpena(Michigan),Kalamazoo(Michigan),,4 hours 33 mins,464 km +Alpena(Michigan),Saginaw(Michigan),,2 hours 29 mins,238 km +Alpena(Michigan),Grand Rapids(Michigan),,3 hours 50 mins,384 km +Alpena(Michigan),Lansing(Michigan),,3 hours 34 mins,372 km +Alpena(Michigan),Muskegon(Michigan),,4 hours 15 mins,406 km +Alpena(Michigan),Hancock(Michigan),,6 hours 14 mins,579 km +Alpena(Michigan),Detroit(Michigan),,3 hours 52 mins,398 km +Alpena(Michigan),Escanaba(Michigan),,4 hours 7 mins,387 km +Iron Mountain(Michigan),Sault Ste. Marie,,3 hours 54 mins,364 km +Iron Mountain(Michigan),Pellston(Michigan),,3 hours 39 mins,344 km +Iron Mountain(Michigan),Traverse City(Michigan),,5 hours 23 mins,504 km +Iron Mountain(Michigan),Alpena(Michigan),,5 hours 2 mins,469 km +Iron Mountain(Michigan),Kalamazoo(Michigan),,7 hours 2 mins,738 km +Iron Mountain(Michigan),Saginaw(Michigan),,5 hours 56 mins,622 km +Iron Mountain(Michigan),Grand Rapids(Michigan),,6 hours 46 mins,698 km +Iron Mountain(Michigan),Lansing(Michigan),,6 hours 29 mins,686 km +Iron Mountain(Michigan),Muskegon(Michigan),,7 hours 10 mins,721 km +Iron Mountain(Michigan),Hancock(Michigan),,2 hours 4 mins,183 km +Iron Mountain(Michigan),Detroit(Michigan),,7 hours 20 mins,782 km +Iron Mountain(Michigan),Escanaba(Michigan),,1 hour 2 mins,84.3 km +Kalamazoo(Michigan),Sault Ste. Marie,,5 hours 5 mins,556 km +Kalamazoo(Michigan),Pellston(Michigan),,4 hours 3 mins,407 km +Kalamazoo(Michigan),Traverse City(Michigan),,2 hours 57 mins,310 km +Kalamazoo(Michigan),Alpena(Michigan),,4 hours 36 mins,465 km +Kalamazoo(Michigan),Iron Mountain(Michigan),,7 hours 2 mins,724 km +Kalamazoo(Michigan),Saginaw(Michigan),,2 hours 27 mins,241 km +Kalamazoo(Michigan),Grand Rapids(Michigan),,49 mins,81.3 km +Kalamazoo(Michigan),Lansing(Michigan),,1 hour 17 mins,121 km +Kalamazoo(Michigan),Muskegon(Michigan),,1 hour 24 mins,147 km +Kalamazoo(Michigan),Hancock(Michigan),,8 hours 40 mins,888 km +Kalamazoo(Michigan),Detroit(Michigan),,2 hours 10 mins,225 km +Kalamazoo(Michigan),Escanaba(Michigan),,6 hours 33 mins,696 km +Saginaw(Michigan),Sault Ste. Marie,,3 hours 34 mins,400 km +Saginaw(Michigan),Pellston(Michigan),,2 hours 32 mins,293 km +Saginaw(Michigan),Traverse City(Michigan),,2 hours 32 mins,252 km +Saginaw(Michigan),Alpena(Michigan),,2 hours 31 mins,241 km +Saginaw(Michigan),Iron Mountain(Michigan),,5 hours 58 mins,623 km +Saginaw(Michigan),Kalamazoo(Michigan),,2 hours 24 mins,239 km +Saginaw(Michigan),Grand Rapids(Michigan),,2 hours 4 mins,212 km +Saginaw(Michigan),Lansing(Michigan),,1 hour 15 mins,121 km +Saginaw(Michigan),Muskegon(Michigan),,2 hours 33 mins,207 km +Saginaw(Michigan),Hancock(Michigan),,7 hours 9 mins,733 km +Saginaw(Michigan),Detroit(Michigan),,1 hour 34 mins,165 km +Saginaw(Michigan),Escanaba(Michigan),,5 hours 2 mins,541 km +Grand Rapids(Michigan),Sault Ste. Marie,,4 hours 21 mins,476 km +Grand Rapids(Michigan),Pellston(Michigan),,3 hours 19 mins,327 km +Grand Rapids(Michigan),Traverse City(Michigan),,2 hours 13 mins,230 km +Grand Rapids(Michigan),Alpena(Michigan),,3 hours 52 mins,385 km +Grand Rapids(Michigan),Iron Mountain(Michigan),,6 hours 45 mins,698 km +Grand Rapids(Michigan),Kalamazoo(Michigan),,48 mins,81.3 km +Grand Rapids(Michigan),Saginaw(Michigan),,2 hours 4 mins,214 km +Grand Rapids(Michigan),Lansing(Michigan),,1 hour 2 mins,110 km +Grand Rapids(Michigan),Muskegon(Michigan),,41 mins,67.0 km +Grand Rapids(Michigan),Hancock(Michigan),,7 hours 56 mins,808 km +Grand Rapids(Michigan),Detroit(Michigan),,2 hours 20 mins,253 km +Grand Rapids(Michigan),Escanaba(Michigan),,5 hours 49 mins,616 km +Lansing(Michigan),Sault Ste. Marie,,4 hours 7 mins,464 km +Lansing(Michigan),Pellston(Michigan),,3 hours 5 mins,357 km +Lansing(Michigan),Traverse City(Michigan),,2 hours 55 mins,294 km +Lansing(Michigan),Alpena(Michigan),,3 hours 36 mins,372 km +Lansing(Michigan),Iron Mountain(Michigan),,6 hours 31 mins,687 km +Lansing(Michigan),Kalamazoo(Michigan),,1 hour 17 mins,122 km +Lansing(Michigan),Saginaw(Michigan),,1 hour 17 mins,121 km +Lansing(Michigan),Grand Rapids(Michigan),,1 hour 4 mins,109 km +Lansing(Michigan),Muskegon(Michigan),,1 hour 37 mins,172 km +Lansing(Michigan),Hancock(Michigan),,7 hours 42 mins,797 km +Lansing(Michigan),Detroit(Michigan),,1 hour 24 mins,145 km +Lansing(Michigan),Escanaba(Michigan),,5 hours 35 mins,605 km +Muskegon(Michigan),Sault Ste. Marie,,4 hours 47 mins,498 km +Muskegon(Michigan),Pellston(Michigan),,3 hours 45 mins,350 km +Muskegon(Michigan),Traverse City(Michigan),,2 hours 32 mins,210 km +Muskegon(Michigan),Alpena(Michigan),,4 hours 18 mins,408 km +Muskegon(Michigan),Iron Mountain(Michigan),,7 hours 11 mins,721 km +Muskegon(Michigan),Kalamazoo(Michigan),,1 hour 24 mins,147 km +Muskegon(Michigan),Saginaw(Michigan),,2 hours 33 mins,207 km +Muskegon(Michigan),Grand Rapids(Michigan),,42 mins,67.5 km +Muskegon(Michigan),Lansing(Michigan),,1 hour 37 mins,174 km +Muskegon(Michigan),Hancock(Michigan),,8 hours 22 mins,831 km +Muskegon(Michigan),Detroit(Michigan),,2 hours 54 mins,317 km +Muskegon(Michigan),Escanaba(Michigan),,6 hours 15 mins,639 km +Hancock(Michigan),Sault Ste. Marie,,4 hours 36 mins,428 km +Hancock(Michigan),Pellston(Michigan),,4 hours 51 mins,455 km +Hancock(Michigan),Traverse City(Michigan),,6 hours 35 mins,615 km +Hancock(Michigan),Alpena(Michigan),,6 hours 13 mins,579 km +Hancock(Michigan),Iron Mountain(Michigan),,2 hours 5 mins,183 km +Hancock(Michigan),Kalamazoo(Michigan),,8 hours 39 mins,889 km +Hancock(Michigan),Saginaw(Michigan),,7 hours 7 mins,732 km +Hancock(Michigan),Grand Rapids(Michigan),,7 hours 57 mins,809 km +Hancock(Michigan),Lansing(Michigan),,7 hours 40 mins,797 km +Hancock(Michigan),Muskegon(Michigan),,8 hours 22 mins,831 km +Hancock(Michigan),Detroit(Michigan),,8 hours 31 mins,892 km +Hancock(Michigan),Escanaba(Michigan),,2 hours 53 mins,258 km +Detroit(Michigan),Sault Ste. Marie,,4 hours 55 mins,559 km +Detroit(Michigan),Pellston(Michigan),,3 hours 53 mins,452 km +Detroit(Michigan),Traverse City(Michigan),,3 hours 53 mins,411 km +Detroit(Michigan),Alpena(Michigan),,3 hours 52 mins,400 km +Detroit(Michigan),Iron Mountain(Michigan),,7 hours 19 mins,782 km +Detroit(Michigan),Kalamazoo(Michigan),,2 hours 13 mins,226 km +Detroit(Michigan),Saginaw(Michigan),,1 hour 34 mins,165 km +Detroit(Michigan),Grand Rapids(Michigan),,2 hours 22 mins,254 km +Detroit(Michigan),Lansing(Michigan),,1 hour 24 mins,146 km +Detroit(Michigan),Muskegon(Michigan),,2 hours 55 mins,317 km +Detroit(Michigan),Hancock(Michigan),,8 hours 30 mins,892 km +Detroit(Michigan),Escanaba(Michigan),,6 hours 23 mins,700 km +Escanaba(Michigan),Sault Ste. Marie,,2 hours 58 mins,282 km +Escanaba(Michigan),Pellston(Michigan),,2 hours 43 mins,262 km +Escanaba(Michigan),Traverse City(Michigan),,4 hours 27 mins,422 km +Escanaba(Michigan),Alpena(Michigan),,4 hours 6 mins,387 km +Escanaba(Michigan),Iron Mountain(Michigan),,1 hour 2 mins,84.3 km +Escanaba(Michigan),Kalamazoo(Michigan),,6 hours 32 mins,696 km +Escanaba(Michigan),Saginaw(Michigan),,5 hours 0 mins,540 km +Escanaba(Michigan),Grand Rapids(Michigan),,5 hours 50 mins,616 km +Escanaba(Michigan),Lansing(Michigan),,5 hours 33 mins,604 km +Escanaba(Michigan),Muskegon(Michigan),,6 hours 14 mins,639 km +Escanaba(Michigan),Hancock(Michigan),,2 hours 53 mins,258 km +Escanaba(Michigan),Detroit(Michigan),,6 hours 23 mins,700 km +Honolulu,Abilene(Texas),,, +Honolulu,Amarillo(Texas),,, +Honolulu,Harlingen(Texas),,, +Honolulu,Lubbock(Texas),,, +Honolulu,College Station(Texas),,, +Honolulu,Corpus Christi(Texas),,, +Honolulu,Wichita Falls(Texas),,, +Honolulu,Waco(Texas),,, +Honolulu,San Angelo(Texas),,, +Honolulu,Houston(Texas),,, +Honolulu,San Antonio(Texas),,, +Honolulu,Del Rio(Texas),,, +Honolulu,Mission(Texas),,, +Honolulu,Beaumont(Texas),,, +Honolulu,Longview(Texas),,, +Honolulu,Midland(Texas),,, +Honolulu,El Paso(Texas),,, +Honolulu,Brownsville(Texas),,, +Honolulu,Austin(Texas),,, +Honolulu,Dallas(Texas),,, +Honolulu,Killeen(Texas),,, +Honolulu,Laredo(Texas),,, +Honolulu,Texarkana(Texas),,, +Abilene(Texas),Honolulu,,, +Amarillo(Texas),Honolulu,,, +Harlingen(Texas),Honolulu,,, +Lubbock(Texas),Honolulu,,, +College Station(Texas),Honolulu,,, +Corpus Christi(Texas),Honolulu,,, +Wichita Falls(Texas),Honolulu,,, +Waco(Texas),Honolulu,,, +San Angelo(Texas),Honolulu,,, +Houston(Texas),Honolulu,,, +San Antonio(Texas),Honolulu,,, +Del Rio(Texas),Honolulu,,, +Mission(Texas),Honolulu,,, +Beaumont(Texas),Honolulu,,, +Longview(Texas),Honolulu,,, +Midland(Texas),Honolulu,,, +El Paso(Texas),Honolulu,,, +Brownsville(Texas),Honolulu,,, +Austin(Texas),Honolulu,,, +Dallas(Texas),Honolulu,,, +Killeen(Texas),Honolulu,,, +Laredo(Texas),Honolulu,,, +Texarkana(Texas),Honolulu,,, +Tucson,Moline(Illinois),,23 hours 42 mins,"2,508 km" +Tucson,Belleville(Illinois),,21 hours 34 mins,"2,355 km" +Tucson,Bloomington(Illinois),,23 hours 38 mins,"2,587 km" +Tucson,Champaign(Illinois),,23 hours 51 mins,"2,617 km" +Tucson,Chicago(Illinois),,1 day 2 hours,"2,804 km" +Tucson,Rockford(Illinois),,1 day 1 hour,"2,696 km" +Tucson,Peoria(Illinois),,23 hours 39 mins,"2,597 km" +Moline(Illinois),Tucson,,23 hours 42 mins,"2,521 km" +Belleville(Illinois),Tucson,,21 hours 34 mins,"2,367 km" +Bloomington(Illinois),Tucson,,23 hours 36 mins,"2,598 km" +Champaign(Illinois),Tucson,,23 hours 51 mins,"2,629 km" +Chicago(Illinois),Tucson,,1 day 2 hours,"2,815 km" +Rockford(Illinois),Tucson,,1 day 1 hour,"2,705 km" +Peoria(Illinois),Tucson,,23 hours 38 mins,"2,608 km" +Salt Lake City,Twin Falls,,3 hours 13 mins,351 km +Twin Falls,Salt Lake City,,3 hours 14 mins,351 km +Atlanta,Charleston(South Carolina),,4 hours 45 mins,491 km +Atlanta,Hilton Head(South Carolina),,4 hours 11 mins,452 km +Atlanta,Greer(South Carolina),,2 hours 29 mins,256 km +Atlanta,Greenville(South Carolina),,2 hours 16 mins,234 km +Atlanta,Myrtle Beach(South Carolina),,5 hours 37 mins,582 km +Charleston(South Carolina),Atlanta,,4 hours 46 mins,481 km +Charleston(South Carolina),Hilton Head(South Carolina),,2 hours 2 mins,158 km +Charleston(South Carolina),Greer(South Carolina),,3 hours 23 mins,349 km +Charleston(South Carolina),Greenville(South Carolina),,3 hours 15 mins,343 km +Charleston(South Carolina),Myrtle Beach(South Carolina),,2 hours 6 mins,158 km +Hilton Head(South Carolina),Atlanta,,4 hours 12 mins,451 km +Hilton Head(South Carolina),Charleston(South Carolina),,2 hours 0 mins,157 km +Hilton Head(South Carolina),Greer(South Carolina),,3 hours 59 mins,410 km +Hilton Head(South Carolina),Greenville(South Carolina),,3 hours 51 mins,404 km +Hilton Head(South Carolina),Myrtle Beach(South Carolina),,3 hours 46 mins,355 km +Greer(South Carolina),Atlanta,,2 hours 29 mins,256 km +Greer(South Carolina),Charleston(South Carolina),,3 hours 21 mins,349 km +Greer(South Carolina),Hilton Head(South Carolina),,3 hours 57 mins,410 km +Greer(South Carolina),Greenville(South Carolina),,22 mins,26.4 km +Greer(South Carolina),Myrtle Beach(South Carolina),,4 hours 11 mins,411 km +Greenville(South Carolina),Atlanta,,2 hours 16 mins,234 km +Greenville(South Carolina),Charleston(South Carolina),,3 hours 13 mins,343 km +Greenville(South Carolina),Hilton Head(South Carolina),,3 hours 50 mins,404 km +Greenville(South Carolina),Greer(South Carolina),,24 mins,19.3 km +Greenville(South Carolina),Myrtle Beach(South Carolina),,4 hours 4 mins,405 km +Myrtle Beach(South Carolina),Atlanta,,5 hours 36 mins,583 km +Myrtle Beach(South Carolina),Charleston(South Carolina),,2 hours 9 mins,158 km +Myrtle Beach(South Carolina),Hilton Head(South Carolina),,3 hours 46 mins,356 km +Myrtle Beach(South Carolina),Greer(South Carolina),,4 hours 12 mins,411 km +Myrtle Beach(South Carolina),Greenville(South Carolina),,4 hours 4 mins,405 km +Daytona Beach,Greensboro(North Carolina),,8 hours 5 mins,877 km +Daytona Beach,Wilmington(North Carolina),,7 hours 40 mins,844 km +Daytona Beach,New Bern(North Carolina),,8 hours 55 mins,979 km +Daytona Beach,Charlotte(North Carolina),,6 hours 55 mins,759 km +Daytona Beach,Raleigh(North Carolina),,7 hours 52 mins,872 km +Daytona Beach,Asheville(North Carolina),,7 hours 50 mins,854 km +Daytona Beach,Fayetteville(North Carolina),,6 hours 58 mins,776 km +Greensboro(North Carolina),Daytona Beach,,8 hours 9 mins,875 km +Greensboro(North Carolina),Wilmington(North Carolina),,3 hours 4 mins,330 km +Greensboro(North Carolina),New Bern(North Carolina),,3 hours 3 mins,309 km +Greensboro(North Carolina),Charlotte(North Carolina),,1 hour 28 mins,149 km +Greensboro(North Carolina),Raleigh(North Carolina),,1 hour 20 mins,124 km +Greensboro(North Carolina),Asheville(North Carolina),,2 hours 40 mins,278 km +Greensboro(North Carolina),Fayetteville(North Carolina),,1 hour 43 mins,152 km +Wilmington(North Carolina),Daytona Beach,,7 hours 44 mins,857 km +Wilmington(North Carolina),Greensboro(North Carolina),,3 hours 4 mins,331 km +Wilmington(North Carolina),New Bern(North Carolina),,1 hour 45 mins,152 km +Wilmington(North Carolina),Charlotte(North Carolina),,3 hours 24 mins,324 km +Wilmington(North Carolina),Raleigh(North Carolina),,1 hour 55 mins,206 km +Wilmington(North Carolina),Asheville(North Carolina),,5 hours 19 mins,541 km +Wilmington(North Carolina),Fayetteville(North Carolina),,1 hour 43 mins,149 km +New Bern(North Carolina),Daytona Beach,,8 hours 59 mins,990 km +New Bern(North Carolina),Greensboro(North Carolina),,3 hours 3 mins,308 km +New Bern(North Carolina),Wilmington(North Carolina),,1 hour 47 mins,153 km +New Bern(North Carolina),Charlotte(North Carolina),,4 hours 19 mins,454 km +New Bern(North Carolina),Raleigh(North Carolina),,1 hour 55 mins,184 km +New Bern(North Carolina),Asheville(North Carolina),,5 hours 32 mins,583 km +New Bern(North Carolina),Fayetteville(North Carolina),,2 hours 8 mins,209 km +Charlotte(North Carolina),Daytona Beach,,6 hours 56 mins,770 km +Charlotte(North Carolina),Greensboro(North Carolina),,1 hour 27 mins,148 km +Charlotte(North Carolina),Wilmington(North Carolina),,3 hours 24 mins,323 km +Charlotte(North Carolina),New Bern(North Carolina),,4 hours 19 mins,453 km +Charlotte(North Carolina),Raleigh(North Carolina),,2 hours 36 mins,267 km +Charlotte(North Carolina),Asheville(North Carolina),,2 hours 7 mins,209 km +Charlotte(North Carolina),Fayetteville(North Carolina),,2 hours 40 mins,223 km +Raleigh(North Carolina),Daytona Beach,,7 hours 56 mins,885 km +Raleigh(North Carolina),Greensboro(North Carolina),,1 hour 19 mins,124 km +Raleigh(North Carolina),Wilmington(North Carolina),,1 hour 57 mins,208 km +Raleigh(North Carolina),New Bern(North Carolina),,1 hour 57 mins,187 km +Raleigh(North Carolina),Charlotte(North Carolina),,2 hours 34 mins,269 km +Raleigh(North Carolina),Asheville(North Carolina),,3 hours 47 mins,398 km +Raleigh(North Carolina),Fayetteville(North Carolina),,1 hour 5 mins,104 km +Asheville(North Carolina),Daytona Beach,,7 hours 51 mins,865 km +Asheville(North Carolina),Greensboro(North Carolina),,2 hours 39 mins,278 km +Asheville(North Carolina),Wilmington(North Carolina),,5 hours 18 mins,539 km +Asheville(North Carolina),New Bern(North Carolina),,5 hours 32 mins,583 km +Asheville(North Carolina),Charlotte(North Carolina),,2 hours 7 mins,209 km +Asheville(North Carolina),Raleigh(North Carolina),,3 hours 49 mins,398 km +Asheville(North Carolina),Fayetteville(North Carolina),,4 hours 9 mins,423 km +Fayetteville(North Carolina),Daytona Beach,,7 hours 1 min,786 km +Fayetteville(North Carolina),Greensboro(North Carolina),,1 hour 44 mins,152 km +Fayetteville(North Carolina),Wilmington(North Carolina),,1 hour 44 mins,149 km +Fayetteville(North Carolina),New Bern(North Carolina),,2 hours 8 mins,209 km +Fayetteville(North Carolina),Charlotte(North Carolina),,2 hours 40 mins,223 km +Fayetteville(North Carolina),Raleigh(North Carolina),,1 hour 4 mins,102 km +Fayetteville(North Carolina),Asheville(North Carolina),,4 hours 10 mins,424 km +Seattle,Hilo(Hawaii),,, +Seattle,Kahului(Hawaii),,, +Seattle,Kona(Hawaii),,, +Seattle,Lihue(Hawaii),,, +Seattle,Honolulu(Hawaii),,, +Hilo(Hawaii),Seattle,,, +Hilo(Hawaii),Kahului(Hawaii),,, +Hilo(Hawaii),Kona(Hawaii),,1 hour 31 mins,125 km +Hilo(Hawaii),Lihue(Hawaii),,, +Hilo(Hawaii),Honolulu(Hawaii),,, +Kahului(Hawaii),Seattle,,, +Kahului(Hawaii),Hilo(Hawaii),,, +Kahului(Hawaii),Kona(Hawaii),,, +Kahului(Hawaii),Lihue(Hawaii),,, +Kahului(Hawaii),Honolulu(Hawaii),,, +Kona(Hawaii),Seattle,,, +Kona(Hawaii),Hilo(Hawaii),,1 hour 31 mins,125 km +Kona(Hawaii),Kahului(Hawaii),,, +Kona(Hawaii),Lihue(Hawaii),,, +Kona(Hawaii),Honolulu(Hawaii),,, +Lihue(Hawaii),Seattle,,, +Lihue(Hawaii),Hilo(Hawaii),,, +Lihue(Hawaii),Kahului(Hawaii),,, +Lihue(Hawaii),Kona(Hawaii),,, +Lihue(Hawaii),Honolulu(Hawaii),,, +Honolulu(Hawaii),Seattle,,, +Honolulu(Hawaii),Hilo(Hawaii),,, +Honolulu(Hawaii),Kahului(Hawaii),,, +Honolulu(Hawaii),Kona(Hawaii),,, +Honolulu(Hawaii),Lihue(Hawaii),,, +Roanoke,State College(Pennsylvania),,5 hours 30 mins,543 km +Roanoke,Johnstown(Pennsylvania),,5 hours 4 mins,485 km +Roanoke,Harrisburg(Pennsylvania),,4 hours 27 mins,474 km +Roanoke,Erie(Pennsylvania),,7 hours 26 mins,741 km +Roanoke,Pittsburgh(Pennsylvania),,5 hours 42 mins,546 km +Roanoke,Latrobe(Pennsylvania),,5 hours 27 mins,518 km +Roanoke,Philadelphia(Pennsylvania),,5 hours 49 mins,611 km +Roanoke,Lewisburg(Pennsylvania),,5 hours 26 mins,561 km +Roanoke,Scranton(Pennsylvania),,6 hours 14 mins,662 km +State College(Pennsylvania),Roanoke,,5 hours 27 mins,550 km +State College(Pennsylvania),Johnstown(Pennsylvania),,1 hour 29 mins,137 km +State College(Pennsylvania),Harrisburg(Pennsylvania),,1 hour 32 mins,138 km +State College(Pennsylvania),Erie(Pennsylvania),,3 hours 22 mins,342 km +State College(Pennsylvania),Pittsburgh(Pennsylvania),,2 hours 29 mins,225 km +State College(Pennsylvania),Latrobe(Pennsylvania),,1 hour 55 mins,183 km +State College(Pennsylvania),Philadelphia(Pennsylvania),,3 hours 11 mins,308 km +State College(Pennsylvania),Lewisburg(Pennsylvania),,1 hour 12 mins,115 km +State College(Pennsylvania),Scranton(Pennsylvania),,2 hours 22 mins,241 km +Johnstown(Pennsylvania),Roanoke,,5 hours 1 min,485 km +Johnstown(Pennsylvania),State College(Pennsylvania),,1 hour 29 mins,131 km +Johnstown(Pennsylvania),Harrisburg(Pennsylvania),,2 hours 25 mins,222 km +Johnstown(Pennsylvania),Erie(Pennsylvania),,3 hours 2 mins,283 km +Johnstown(Pennsylvania),Pittsburgh(Pennsylvania),,1 hour 25 mins,105 km +Johnstown(Pennsylvania),Latrobe(Pennsylvania),,48 mins,53.3 km +Johnstown(Pennsylvania),Philadelphia(Pennsylvania),,3 hours 54 mins,384 km +Johnstown(Pennsylvania),Lewisburg(Pennsylvania),,2 hours 25 mins,241 km +Johnstown(Pennsylvania),Scranton(Pennsylvania),,3 hours 35 mins,367 km +Harrisburg(Pennsylvania),Roanoke,,4 hours 28 mins,474 km +Harrisburg(Pennsylvania),State College(Pennsylvania),,1 hour 31 mins,139 km +Harrisburg(Pennsylvania),Johnstown(Pennsylvania),,2 hours 24 mins,221 km +Harrisburg(Pennsylvania),Erie(Pennsylvania),,4 hours 40 mins,476 km +Harrisburg(Pennsylvania),Pittsburgh(Pennsylvania),,3 hours 16 mins,327 km +Harrisburg(Pennsylvania),Latrobe(Pennsylvania),,2 hours 51 mins,252 km +Harrisburg(Pennsylvania),Philadelphia(Pennsylvania),,1 hour 48 mins,171 km +Harrisburg(Pennsylvania),Lewisburg(Pennsylvania),,1 hour 10 mins,98.1 km +Harrisburg(Pennsylvania),Scranton(Pennsylvania),,1 hour 58 mins,195 km +Erie(Pennsylvania),Roanoke,,7 hours 27 mins,740 km +Erie(Pennsylvania),State College(Pennsylvania),,3 hours 25 mins,337 km +Erie(Pennsylvania),Johnstown(Pennsylvania),,3 hours 4 mins,282 km +Erie(Pennsylvania),Harrisburg(Pennsylvania),,4 hours 43 mins,477 km +Erie(Pennsylvania),Pittsburgh(Pennsylvania),,1 hour 57 mins,206 km +Erie(Pennsylvania),Latrobe(Pennsylvania),,2 hours 39 mins,262 km +Erie(Pennsylvania),Philadelphia(Pennsylvania),,6 hours 22 mins,678 km +Erie(Pennsylvania),Lewisburg(Pennsylvania),,4 hours 1 min,430 km +Erie(Pennsylvania),Scranton(Pennsylvania),,4 hours 58 mins,518 km +Pittsburgh(Pennsylvania),Roanoke,,5 hours 40 mins,546 km +Pittsburgh(Pennsylvania),State College(Pennsylvania),,2 hours 27 mins,219 km +Pittsburgh(Pennsylvania),Johnstown(Pennsylvania),,1 hour 23 mins,108 km +Pittsburgh(Pennsylvania),Harrisburg(Pennsylvania),,3 hours 15 mins,328 km +Pittsburgh(Pennsylvania),Erie(Pennsylvania),,1 hour 55 mins,206 km +Pittsburgh(Pennsylvania),Latrobe(Pennsylvania),,51 mins,64.0 km +Pittsburgh(Pennsylvania),Philadelphia(Pennsylvania),,4 hours 44 mins,490 km +Pittsburgh(Pennsylvania),Lewisburg(Pennsylvania),,3 hours 24 mins,329 km +Pittsburgh(Pennsylvania),Scranton(Pennsylvania),,4 hours 34 mins,455 km +Latrobe(Pennsylvania),Roanoke,,5 hours 25 mins,507 km +Latrobe(Pennsylvania),State College(Pennsylvania),,1 hour 57 mins,174 km +Latrobe(Pennsylvania),Johnstown(Pennsylvania),,51 mins,51.2 km +Latrobe(Pennsylvania),Harrisburg(Pennsylvania),,2 hours 56 mins,251 km +Latrobe(Pennsylvania),Erie(Pennsylvania),,2 hours 41 mins,264 km +Latrobe(Pennsylvania),Pittsburgh(Pennsylvania),,55 mins,64.3 km +Latrobe(Pennsylvania),Philadelphia(Pennsylvania),,4 hours 25 mins,413 km +Latrobe(Pennsylvania),Lewisburg(Pennsylvania),,2 hours 53 mins,284 km +Latrobe(Pennsylvania),Scranton(Pennsylvania),,4 hours 3 mins,410 km +Philadelphia(Pennsylvania),Roanoke,,5 hours 48 mins,610 km +Philadelphia(Pennsylvania),State College(Pennsylvania),,3 hours 12 mins,309 km +Philadelphia(Pennsylvania),Johnstown(Pennsylvania),,3 hours 56 mins,384 km +Philadelphia(Pennsylvania),Harrisburg(Pennsylvania),,1 hour 51 mins,172 km +Philadelphia(Pennsylvania),Erie(Pennsylvania),,6 hours 21 mins,646 km +Philadelphia(Pennsylvania),Pittsburgh(Pennsylvania),,4 hours 48 mins,491 km +Philadelphia(Pennsylvania),Latrobe(Pennsylvania),,4 hours 23 mins,416 km +Philadelphia(Pennsylvania),Lewisburg(Pennsylvania),,2 hours 41 mins,261 km +Philadelphia(Pennsylvania),Scranton(Pennsylvania),,2 hours 5 mins,200 km +Lewisburg(Pennsylvania),Roanoke,,5 hours 26 mins,560 km +Lewisburg(Pennsylvania),State College(Pennsylvania),,1 hour 16 mins,89.0 km +Lewisburg(Pennsylvania),Johnstown(Pennsylvania),,2 hours 26 mins,242 km +Lewisburg(Pennsylvania),Harrisburg(Pennsylvania),,1 hour 11 mins,99.2 km +Lewisburg(Pennsylvania),Erie(Pennsylvania),,3 hours 59 mins,429 km +Lewisburg(Pennsylvania),Pittsburgh(Pennsylvania),,3 hours 26 mins,330 km +Lewisburg(Pennsylvania),Latrobe(Pennsylvania),,2 hours 53 mins,288 km +Lewisburg(Pennsylvania),Philadelphia(Pennsylvania),,2 hours 38 mins,260 km +Lewisburg(Pennsylvania),Scranton(Pennsylvania),,1 hour 27 mins,138 km +Scranton(Pennsylvania),Roanoke,,6 hours 12 mins,661 km +Scranton(Pennsylvania),State College(Pennsylvania),,2 hours 24 mins,241 km +Scranton(Pennsylvania),Johnstown(Pennsylvania),,3 hours 36 mins,367 km +Scranton(Pennsylvania),Harrisburg(Pennsylvania),,1 hour 57 mins,195 km +Scranton(Pennsylvania),Erie(Pennsylvania),,4 hours 58 mins,519 km +Scranton(Pennsylvania),Pittsburgh(Pennsylvania),,4 hours 36 mins,454 km +Scranton(Pennsylvania),Latrobe(Pennsylvania),,4 hours 3 mins,413 km +Scranton(Pennsylvania),Philadelphia(Pennsylvania),,2 hours 4 mins,201 km +Scranton(Pennsylvania),Lewisburg(Pennsylvania),,1 hour 28 mins,139 km +Arcata,Alamosa(Colorado),,22 hours 7 mins,"2,217 km" +Arcata,Grand Junction(Colorado),,17 hours 36 mins,"1,823 km" +Arcata,Durango(Colorado),,19 hours 39 mins,"1,997 km" +Arcata,Colorado Springs(Colorado),,21 hours 57 mins,"2,314 km" +Arcata,Gunnison(Colorado),,19 hours 57 mins,"2,020 km" +Arcata,Denver(Colorado),,20 hours 59 mins,"2,202 km" +Alamosa(Colorado),Arcata,,22 hours 4 mins,"2,139 km" +Grand Junction(Colorado),Arcata,,17 hours 40 mins,"1,745 km" +Durango(Colorado),Arcata,,19 hours 39 mins,"1,918 km" +Colorado Springs(Colorado),Arcata,,22 hours 1 min,"2,310 km" +Gunnison(Colorado),Arcata,,19 hours 54 mins,"1,942 km" +Denver(Colorado),Arcata,,21 hours 6 mins,"2,202 km" +Minneapolis,Sarasota(Florida),,23 hours 32 mins,"2,631 km" +Minneapolis,Fort Myers(Florida),,1 day 0 hours,"2,737 km" +Minneapolis,Gainesville(Florida),,21 hours 9 mins,"2,347 km" +Minneapolis,Orlando(Florida),,22 hours 33 mins,"2,519 km" +Minneapolis,Daytona Beach(Florida),,22 hours 37 mins,"2,519 km" +Minneapolis,Jacksonville(Florida),,21 hours 14 mins,"2,370 km" +Minneapolis,Tampa(Florida),,22 hours 45 mins,"2,547 km" +Minneapolis,Panama City(Florida),,20 hours 0 mins,"2,154 km" +Minneapolis,Key West(Florida),,1 day 5 hours,"3,133 km" +Minneapolis,West Palm Beach(Florida),,1 day 1 hour,"2,775 km" +Minneapolis,Miami(Florida),,1 day 2 hours,"2,880 km" +Minneapolis,Tallahassee(Florida),,20 hours 17 mins,"2,208 km" +Minneapolis,Punta Gorda(Florida),,1 day 0 hours,"2,702 km" +Minneapolis,Fort Lauderdale(Florida),,1 day 1 hour,"2,843 km" +Minneapolis,Pensacola(Florida),,19 hours 1 min,"2,009 km" +Sarasota(Florida),Minneapolis,,23 hours 37 mins,"2,640 km" +Sarasota(Florida),Fort Myers(Florida),,1 hour 20 mins,122 km +Sarasota(Florida),Gainesville(Florida),,2 hours 46 mins,294 km +Sarasota(Florida),Orlando(Florida),,2 hours 5 mins,211 km +Sarasota(Florida),Daytona Beach(Florida),,2 hours 54 mins,300 km +Sarasota(Florida),Jacksonville(Florida),,3 hours 55 mins,405 km +Sarasota(Florida),Tampa(Florida),,1 hour 1 min,98.4 km +Sarasota(Florida),Panama City(Florida),,6 hours 26 mins,689 km +Sarasota(Florida),Key West(Florida),,6 hours 13 mins,604 km +Sarasota(Florida),West Palm Beach(Florida),,3 hours 20 mins,293 km +Sarasota(Florida),Miami(Florida),,3 hours 26 mins,371 km +Sarasota(Florida),Tallahassee(Florida),,4 hours 48 mins,527 km +Sarasota(Florida),Punta Gorda(Florida),,54 mins,87.0 km +Sarasota(Florida),Fort Lauderdale(Florida),,3 hours 8 mins,344 km +Sarasota(Florida),Pensacola(Florida),,7 hours 21 mins,838 km +Fort Myers(Florida),Minneapolis,,1 day 1 hour,"2,745 km" +Fort Myers(Florida),Sarasota(Florida),,1 hour 21 mins,124 km +Fort Myers(Florida),Gainesville(Florida),,3 hours 43 mins,399 km +Fort Myers(Florida),Orlando(Florida),,2 hours 59 mins,257 km +Fort Myers(Florida),Daytona Beach(Florida),,3 hours 48 mins,345 km +Fort Myers(Florida),Jacksonville(Florida),,4 hours 52 mins,510 km +Fort Myers(Florida),Tampa(Florida),,1 hour 58 mins,204 km +Fort Myers(Florida),Panama City(Florida),,7 hours 23 mins,794 km +Fort Myers(Florida),Key West(Florida),,5 hours 13 mins,486 km +Fort Myers(Florida),West Palm Beach(Florida),,2 hours 34 mins,202 km +Fort Myers(Florida),Miami(Florida),,2 hours 26 mins,252 km +Fort Myers(Florida),Tallahassee(Florida),,5 hours 45 mins,633 km +Fort Myers(Florida),Punta Gorda(Florida),,34 mins,38.7 km +Fort Myers(Florida),Fort Lauderdale(Florida),,2 hours 8 mins,226 km +Fort Myers(Florida),Pensacola(Florida),,8 hours 18 mins,944 km +Gainesville(Florida),Minneapolis,,21 hours 13 mins,"2,354 km" +Gainesville(Florida),Sarasota(Florida),,2 hours 45 mins,293 km +Gainesville(Florida),Fort Myers(Florida),,3 hours 43 mins,398 km +Gainesville(Florida),Orlando(Florida),,1 hour 46 mins,181 km +Gainesville(Florida),Daytona Beach(Florida),,2 hours 2 mins,158 km +Gainesville(Florida),Jacksonville(Florida),,1 hour 16 mins,115 km +Gainesville(Florida),Tampa(Florida),,1 hour 58 mins,209 km +Gainesville(Florida),Panama City(Florida),,4 hours 2 mins,403 km +Gainesville(Florida),Key West(Florida),,7 hours 57 mins,795 km +Gainesville(Florida),West Palm Beach(Florida),,3 hours 59 mins,436 km +Gainesville(Florida),Miami(Florida),,4 hours 57 mins,541 km +Gainesville(Florida),Tallahassee(Florida),,2 hours 24 mins,241 km +Gainesville(Florida),Punta Gorda(Florida),,3 hours 17 mins,363 km +Gainesville(Florida),Fort Lauderdale(Florida),,4 hours 36 mins,504 km +Gainesville(Florida),Pensacola(Florida),,4 hours 57 mins,552 km +Orlando(Florida),Minneapolis,,22 hours 35 mins,"2,526 km" +Orlando(Florida),Sarasota(Florida),,2 hours 2 mins,211 km +Orlando(Florida),Fort Myers(Florida),,2 hours 58 mins,255 km +Orlando(Florida),Gainesville(Florida),,1 hour 43 mins,179 km +Orlando(Florida),Daytona Beach(Florida),,55 mins,89.8 km +Orlando(Florida),Jacksonville(Florida),,2 hours 2 mins,226 km +Orlando(Florida),Tampa(Florida),,1 hour 18 mins,136 km +Orlando(Florida),Panama City(Florida),,5 hours 24 mins,574 km +Orlando(Florida),Key West(Florida),,6 hours 27 mins,632 km +Orlando(Florida),West Palm Beach(Florida),,2 hours 28 mins,273 km +Orlando(Florida),Miami(Florida),,3 hours 26 mins,378 km +Orlando(Florida),Tallahassee(Florida),,3 hours 46 mins,413 km +Orlando(Florida),Punta Gorda(Florida),,2 hours 31 mins,223 km +Orlando(Florida),Fort Lauderdale(Florida),,3 hours 6 mins,341 km +Orlando(Florida),Pensacola(Florida),,6 hours 19 mins,724 km +Daytona Beach(Florida),Minneapolis,,22 hours 41 mins,"2,517 km" +Daytona Beach(Florida),Sarasota(Florida),,2 hours 55 mins,301 km +Daytona Beach(Florida),Fort Myers(Florida),,3 hours 51 mins,345 km +Daytona Beach(Florida),Gainesville(Florida),,2 hours 1 min,158 km +Daytona Beach(Florida),Orlando(Florida),,1 hour 0 mins,91.5 km +Daytona Beach(Florida),Jacksonville(Florida),,1 hour 28 mins,143 km +Daytona Beach(Florida),Tampa(Florida),,2 hours 11 mins,225 km +Daytona Beach(Florida),Panama City(Florida),,5 hours 30 mins,566 km +Daytona Beach(Florida),Key West(Florida),,6 hours 56 mins,674 km +Daytona Beach(Florida),West Palm Beach(Florida),,2 hours 56 mins,322 km +Daytona Beach(Florida),Miami(Florida),,3 hours 56 mins,421 km +Daytona Beach(Florida),Tallahassee(Florida),,3 hours 52 mins,404 km +Daytona Beach(Florida),Punta Gorda(Florida),,3 hours 24 mins,312 km +Daytona Beach(Florida),Fort Lauderdale(Florida),,3 hours 34 mins,390 km +Daytona Beach(Florida),Pensacola(Florida),,6 hours 25 mins,715 km +Jacksonville(Florida),Minneapolis,,21 hours 20 mins,"2,377 km" +Jacksonville(Florida),Sarasota(Florida),,3 hours 58 mins,406 km +Jacksonville(Florida),Fort Myers(Florida),,4 hours 55 mins,511 km +Jacksonville(Florida),Gainesville(Florida),,1 hour 18 mins,116 km +Jacksonville(Florida),Orlando(Florida),,2 hours 7 mins,227 km +Jacksonville(Florida),Daytona Beach(Florida),,1 hour 29 mins,153 km +Jacksonville(Florida),Tampa(Florida),,3 hours 10 mins,322 km +Jacksonville(Florida),Panama City(Florida),,4 hours 9 mins,426 km +Jacksonville(Florida),Key West(Florida),,8 hours 3 mins,810 km +Jacksonville(Florida),West Palm Beach(Florida),,4 hours 2 mins,457 km +Jacksonville(Florida),Miami(Florida),,5 hours 2 mins,556 km +Jacksonville(Florida),Tallahassee(Florida),,2 hours 31 mins,265 km +Jacksonville(Florida),Punta Gorda(Florida),,4 hours 29 mins,476 km +Jacksonville(Florida),Fort Lauderdale(Florida),,4 hours 40 mins,525 km +Jacksonville(Florida),Pensacola(Florida),,5 hours 4 mins,575 km +Tampa(Florida),Minneapolis,,22 hours 49 mins,"2,555 km" +Tampa(Florida),Sarasota(Florida),,1 hour 1 min,96.8 km +Tampa(Florida),Fort Myers(Florida),,1 hour 58 mins,202 km +Tampa(Florida),Gainesville(Florida),,1 hour 58 mins,209 km +Tampa(Florida),Orlando(Florida),,1 hour 21 mins,135 km +Tampa(Florida),Daytona Beach(Florida),,2 hours 10 mins,224 km +Tampa(Florida),Jacksonville(Florida),,3 hours 7 mins,320 km +Tampa(Florida),Panama City(Florida),,5 hours 38 mins,604 km +Tampa(Florida),Key West(Florida),,6 hours 52 mins,684 km +Tampa(Florida),West Palm Beach(Florida),,3 hours 19 mins,329 km +Tampa(Florida),Miami(Florida),,4 hours 4 mins,451 km +Tampa(Florida),Tallahassee(Florida),,4 hours 0 mins,442 km +Tampa(Florida),Punta Gorda(Florida),,1 hour 33 mins,167 km +Tampa(Florida),Fort Lauderdale(Florida),,3 hours 46 mins,424 km +Tampa(Florida),Pensacola(Florida),,6 hours 33 mins,753 km +Panama City(Florida),Minneapolis,,20 hours 7 mins,"2,156 km" +Panama City(Florida),Sarasota(Florida),,6 hours 25 mins,687 km +Panama City(Florida),Fort Myers(Florida),,7 hours 22 mins,793 km +Panama City(Florida),Gainesville(Florida),,4 hours 1 min,403 km +Panama City(Florida),Orlando(Florida),,5 hours 25 mins,575 km +Panama City(Florida),Daytona Beach(Florida),,5 hours 29 mins,575 km +Panama City(Florida),Jacksonville(Florida),,4 hours 6 mins,425 km +Panama City(Florida),Tampa(Florida),,5 hours 37 mins,603 km +Panama City(Florida),Key West(Florida),,11 hours 37 mins,"1,189 km" +Panama City(Florida),West Palm Beach(Florida),,7 hours 38 mins,831 km +Panama City(Florida),Miami(Florida),,8 hours 37 mins,936 km +Panama City(Florida),Tallahassee(Florida),,1 hour 58 mins,157 km +Panama City(Florida),Punta Gorda(Florida),,6 hours 57 mins,758 km +Panama City(Florida),Fort Lauderdale(Florida),,8 hours 16 mins,899 km +Panama City(Florida),Pensacola(Florida),,2 hours 20 mins,223 km +Key West(Florida),Minneapolis,,1 day 5 hours,"3,141 km" +Key West(Florida),Sarasota(Florida),,6 hours 15 mins,605 km +Key West(Florida),Fort Myers(Florida),,5 hours 14 mins,486 km +Key West(Florida),Gainesville(Florida),,7 hours 59 mins,795 km +Key West(Florida),Orlando(Florida),,6 hours 30 mins,632 km +Key West(Florida),Daytona Beach(Florida),,6 hours 55 mins,673 km +Key West(Florida),Jacksonville(Florida),,8 hours 2 mins,810 km +Key West(Florida),Tampa(Florida),,6 hours 52 mins,685 km +Key West(Florida),Panama City(Florida),,11 hours 39 mins,"1,190 km" +Key West(Florida),West Palm Beach(Florida),,4 hours 21 mins,372 km +Key West(Florida),Miami(Florida),,3 hours 23 mins,264 km +Key West(Florida),Tallahassee(Florida),,10 hours 1 min,"1,028 km" +Key West(Florida),Punta Gorda(Florida),,5 hours 31 mins,522 km +Key West(Florida),Fort Lauderdale(Florida),,3 hours 43 mins,304 km +Key West(Florida),Pensacola(Florida),,12 hours 34 mins,"1,339 km" +West Palm Beach(Florida),Minneapolis,,1 day 1 hour,"2,784 km" +West Palm Beach(Florida),Sarasota(Florida),,3 hours 21 mins,280 km +West Palm Beach(Florida),Fort Myers(Florida),,2 hours 33 mins,202 km +West Palm Beach(Florida),Gainesville(Florida),,3 hours 58 mins,437 km +West Palm Beach(Florida),Orlando(Florida),,2 hours 30 mins,275 km +West Palm Beach(Florida),Daytona Beach(Florida),,2 hours 52 mins,321 km +West Palm Beach(Florida),Jacksonville(Florida),,4 hours 0 mins,457 km +West Palm Beach(Florida),Tampa(Florida),,3 hours 20 mins,332 km +West Palm Beach(Florida),Panama City(Florida),,7 hours 39 mins,832 km +West Palm Beach(Florida),Key West(Florida),,4 hours 20 mins,373 km +West Palm Beach(Florida),Miami(Florida),,1 hour 15 mins,115 km +West Palm Beach(Florida),Tallahassee(Florida),,6 hours 0 mins,671 km +West Palm Beach(Florida),Punta Gorda(Florida),,2 hours 41 mins,228 km +West Palm Beach(Florida),Fort Lauderdale(Florida),,51 mins,75.2 km +West Palm Beach(Florida),Pensacola(Florida),,8 hours 34 mins,982 km +Miami(Florida),Minneapolis,,1 day 2 hours,"2,889 km" +Miami(Florida),Sarasota(Florida),,3 hours 25 mins,373 km +Miami(Florida),Fort Myers(Florida),,2 hours 24 mins,255 km +Miami(Florida),Gainesville(Florida),,4 hours 55 mins,543 km +Miami(Florida),Orlando(Florida),,3 hours 27 mins,380 km +Miami(Florida),Daytona Beach(Florida),,3 hours 52 mins,422 km +Miami(Florida),Jacksonville(Florida),,4 hours 59 mins,558 km +Miami(Florida),Tampa(Florida),,4 hours 1 min,454 km +Miami(Florida),Panama City(Florida),,8 hours 36 mins,938 km +Miami(Florida),Key West(Florida),,3 hours 22 mins,267 km +Miami(Florida),West Palm Beach(Florida),,1 hour 13 mins,117 km +Miami(Florida),Tallahassee(Florida),,6 hours 58 mins,777 km +Miami(Florida),Punta Gorda(Florida),,2 hours 41 mins,291 km +Miami(Florida),Fort Lauderdale(Florida),,36 mins,48.5 km +Miami(Florida),Pensacola(Florida),,9 hours 31 mins,"1,087 km" +Tallahassee(Florida),Minneapolis,,20 hours 24 mins,"2,211 km" +Tallahassee(Florida),Sarasota(Florida),,4 hours 48 mins,529 km +Tallahassee(Florida),Fort Myers(Florida),,5 hours 46 mins,635 km +Tallahassee(Florida),Gainesville(Florida),,2 hours 24 mins,245 km +Tallahassee(Florida),Orlando(Florida),,3 hours 48 mins,417 km +Tallahassee(Florida),Daytona Beach(Florida),,3 hours 52 mins,417 km +Tallahassee(Florida),Jacksonville(Florida),,2 hours 29 mins,267 km +Tallahassee(Florida),Tampa(Florida),,4 hours 1 min,445 km +Tallahassee(Florida),Panama City(Florida),,1 hour 59 mins,157 km +Tallahassee(Florida),Key West(Florida),,10 hours 0 mins,"1,031 km" +Tallahassee(Florida),West Palm Beach(Florida),,6 hours 2 mins,673 km +Tallahassee(Florida),Miami(Florida),,7 hours 0 mins,778 km +Tallahassee(Florida),Punta Gorda(Florida),,5 hours 20 mins,599 km +Tallahassee(Florida),Fort Lauderdale(Florida),,6 hours 39 mins,741 km +Tallahassee(Florida),Pensacola(Florida),,2 hours 53 mins,316 km +Punta Gorda(Florida),Minneapolis,,1 day 0 hours,"2,709 km" +Punta Gorda(Florida),Sarasota(Florida),,55 mins,87.5 km +Punta Gorda(Florida),Fort Myers(Florida),,36 mins,38.6 km +Punta Gorda(Florida),Gainesville(Florida),,3 hours 17 mins,363 km +Punta Gorda(Florida),Orlando(Florida),,2 hours 33 mins,221 km +Punta Gorda(Florida),Daytona Beach(Florida),,3 hours 23 mins,309 km +Punta Gorda(Florida),Jacksonville(Florida),,4 hours 26 mins,474 km +Punta Gorda(Florida),Tampa(Florida),,1 hour 32 mins,168 km +Punta Gorda(Florida),Panama City(Florida),,6 hours 58 mins,758 km +Punta Gorda(Florida),Key West(Florida),,5 hours 30 mins,525 km +Punta Gorda(Florida),West Palm Beach(Florida),,2 hours 42 mins,228 km +Punta Gorda(Florida),Miami(Florida),,2 hours 42 mins,292 km +Punta Gorda(Florida),Tallahassee(Florida),,5 hours 19 mins,597 km +Punta Gorda(Florida),Fort Lauderdale(Florida),,2 hours 24 mins,265 km +Punta Gorda(Florida),Pensacola(Florida),,7 hours 53 mins,907 km +Fort Lauderdale(Florida),Minneapolis,,1 day 1 hour,"2,852 km" +Fort Lauderdale(Florida),Sarasota(Florida),,3 hours 9 mins,345 km +Fort Lauderdale(Florida),Fort Myers(Florida),,2 hours 8 mins,226 km +Fort Lauderdale(Florida),Gainesville(Florida),,4 hours 36 mins,505 km +Fort Lauderdale(Florida),Orlando(Florida),,3 hours 8 mins,343 km +Fort Lauderdale(Florida),Daytona Beach(Florida),,3 hours 31 mins,389 km +Fort Lauderdale(Florida),Jacksonville(Florida),,4 hours 38 mins,525 km +Fort Lauderdale(Florida),Tampa(Florida),,3 hours 46 mins,425 km +Fort Lauderdale(Florida),Panama City(Florida),,8 hours 17 mins,900 km +Fort Lauderdale(Florida),Key West(Florida),,3 hours 43 mins,305 km +Fort Lauderdale(Florida),West Palm Beach(Florida),,50 mins,74.2 km +Fort Lauderdale(Florida),Miami(Florida),,38 mins,46.5 km +Fort Lauderdale(Florida),Tallahassee(Florida),,6 hours 39 mins,739 km +Fort Lauderdale(Florida),Punta Gorda(Florida),,2 hours 25 mins,263 km +Fort Lauderdale(Florida),Pensacola(Florida),,9 hours 12 mins,"1,050 km" +Pensacola(Florida),Minneapolis,,19 hours 2 mins,"2,008 km" +Pensacola(Florida),Sarasota(Florida),,7 hours 20 mins,837 km +Pensacola(Florida),Fort Myers(Florida),,8 hours 18 mins,942 km +Pensacola(Florida),Gainesville(Florida),,4 hours 56 mins,552 km +Pensacola(Florida),Orlando(Florida),,6 hours 21 mins,725 km +Pensacola(Florida),Daytona Beach(Florida),,6 hours 24 mins,724 km +Pensacola(Florida),Jacksonville(Florida),,5 hours 1 min,575 km +Pensacola(Florida),Tampa(Florida),,6 hours 33 mins,752 km +Pensacola(Florida),Panama City(Florida),,2 hours 20 mins,222 km +Pensacola(Florida),Key West(Florida),,12 hours 32 mins,"1,339 km" +Pensacola(Florida),West Palm Beach(Florida),,8 hours 34 mins,980 km +Pensacola(Florida),Miami(Florida),,9 hours 32 mins,"1,085 km" +Pensacola(Florida),Tallahassee(Florida),,2 hours 51 mins,316 km +Pensacola(Florida),Punta Gorda(Florida),,7 hours 52 mins,907 km +Pensacola(Florida),Fort Lauderdale(Florida),,9 hours 11 mins,"1,048 km" +Newark,San Diego(California),,1 day 17 hours,"4,429 km" +Newark,Redding(California),,1 day 18 hours,"4,616 km" +Newark,Sacramento(California),,1 day 17 hours,"4,514 km" +Newark,Fresno(California),,1 day 18 hours,"4,673 km" +Newark,San Luis Obispo(California),,1 day 19 hours,"4,716 km" +Newark,Oakland(California),,1 day 18 hours,"4,644 km" +Newark,Santa Barbara(California),,1 day 18 hours,"4,615 km" +Newark,Stockton(California),,1 day 18 hours,"4,590 km" +Newark,Santa Rosa(California),,1 day 18 hours,"4,669 km" +Newark,Bakersfield(California),,1 day 17 hours,"4,497 km" +Newark,Santa Ana(California),,1 day 16 hours,"4,472 km" +Newark,Santa Maria(California),,1 day 19 hours,"4,672 km" +Newark,San Jose(California),,1 day 19 hours,"4,706 km" +Newark,Burbank(California),,1 day 16 hours,"4,482 km" +Newark,Arcata(California),,1 day 21 hours,"4,841 km" +Newark,Butte(California),,1 day 18 hours,"4,553 km" +Newark,Palm Springs(California),,1 day 16 hours,"4,287 km" +Newark,Los Angeles(California),,1 day 16 hours,"4,476 km" +Newark,Long Beach(California),,1 day 17 hours,"4,495 km" +Newark,San Francisco(California),,1 day 18 hours,"4,654 km" +Newark,Monterey(California),,1 day 20 hours,"4,814 km" +San Diego(California),Newark,,1 day 17 hours,"4,424 km" +San Diego(California),Redding(California),,10 hours 10 mins,"1,070 km" +San Diego(California),Sacramento(California),,7 hours 50 mins,812 km +San Diego(California),Fresno(California),,5 hours 22 mins,545 km +San Diego(California),San Luis Obispo(California),,4 hours 59 mins,502 km +San Diego(California),Oakland(California),,7 hours 38 mins,789 km +San Diego(California),Santa Barbara(California),,3 hours 29 mins,351 km +San Diego(California),Stockton(California),,7 hours 7 mins,736 km +San Diego(California),Santa Rosa(California),,8 hours 30 mins,882 km +San Diego(California),Bakersfield(California),,3 hours 48 mins,372 km +San Diego(California),Santa Ana(California),,1 hour 26 mins,144 km +San Diego(California),Santa Maria(California),,4 hours 35 mins,454 km +San Diego(California),San Jose(California),,7 hours 17 mins,740 km +San Diego(California),Burbank(California),,2 hours 11 mins,210 km +San Diego(California),Arcata(California),,12 hours 15 mins,"1,242 km" +San Diego(California),Butte(California),,9 hours 15 mins,944 km +San Diego(California),Palm Springs(California),,2 hours 12 mins,224 km +San Diego(California),Los Angeles(California),,2 hours 0 mins,194 km +San Diego(California),Long Beach(California),,1 hour 47 mins,181 km +San Diego(California),San Francisco(California),,7 hours 51 mins,808 km +San Diego(California),Monterey(California),,7 hours 6 mins,706 km +Redding(California),Newark,,1 day 18 hours,"4,625 km" +Redding(California),San Diego(California),,10 hours 6 mins,"1,069 km" +Redding(California),Sacramento(California),,2 hours 28 mins,260 km +Redding(California),Fresno(California),,5 hours 4 mins,533 km +Redding(California),San Luis Obispo(California),,6 hours 26 mins,691 km +Redding(California),Oakland(California),,3 hours 11 mins,339 km +Redding(California),Santa Barbara(California),,8 hours 0 mins,842 km +Redding(California),Stockton(California),,3 hours 10 mins,336 km +Redding(California),Santa Rosa(California),,3 hours 33 mins,312 km +Redding(California),Bakersfield(California),,6 hours 40 mins,705 km +Redding(California),Santa Ana(California),,8 hours 50 mins,928 km +Redding(California),Santa Maria(California),,6 hours 56 mins,741 km +Redding(California),San Jose(California),,3 hours 49 mins,402 km +Redding(California),Burbank(California),,8 hours 0 mins,861 km +Redding(California),Arcata(California),,2 hours 49 mins,225 km +Redding(California),Butte(California),,1 hour 44 mins,157 km +Redding(California),Palm Springs(California),,9 hours 45 mins,"1,046 km" +Redding(California),Los Angeles(California),,8 hours 13 mins,878 km +Redding(California),Long Beach(California),,8 hours 33 mins,913 km +Redding(California),San Francisco(California),,3 hours 20 mins,349 km +Redding(California),Monterey(California),,4 hours 51 mins,509 km +Sacramento(California),Newark,,1 day 17 hours,"4,523 km" +Sacramento(California),San Diego(California),,7 hours 46 mins,811 km +Sacramento(California),Redding(California),,2 hours 28 mins,261 km +Sacramento(California),Fresno(California),,2 hours 44 mins,275 km +Sacramento(California),San Luis Obispo(California),,4 hours 33 mins,471 km +Sacramento(California),Oakland(California),,1 hour 22 mins,131 km +Sacramento(California),Santa Barbara(California),,6 hours 7 mins,622 km +Sacramento(California),Stockton(California),,50 mins,78.0 km +Sacramento(California),Santa Rosa(California),,1 hour 42 mins,157 km +Sacramento(California),Bakersfield(California),,4 hours 20 mins,447 km +Sacramento(California),Santa Ana(California),,6 hours 30 mins,670 km +Sacramento(California),Santa Maria(California),,5 hours 4 mins,522 km +Sacramento(California),San Jose(California),,2 hours 0 mins,194 km +Sacramento(California),Burbank(California),,5 hours 40 mins,603 km +Sacramento(California),Arcata(California),,5 hours 13 mins,477 km +Sacramento(California),Butte(California),,1 hour 33 mins,135 km +Sacramento(California),Palm Springs(California),,7 hours 25 mins,789 km +Sacramento(California),Los Angeles(California),,5 hours 53 mins,620 km +Sacramento(California),Long Beach(California),,6 hours 13 mins,655 km +Sacramento(California),San Francisco(California),,1 hour 31 mins,141 km +Sacramento(California),Monterey(California),,3 hours 1 min,301 km +Fresno(California),Newark,,1 day 18 hours,"4,677 km" +Fresno(California),San Diego(California),,5 hours 20 mins,544 km +Fresno(California),Redding(California),,5 hours 4 mins,538 km +Fresno(California),Sacramento(California),,2 hours 44 mins,273 km +Fresno(California),San Luis Obispo(California),,2 hours 20 mins,221 km +Fresno(California),Oakland(California),,2 hours 47 mins,282 km +Fresno(California),Santa Barbara(California),,3 hours 54 mins,372 km +Fresno(California),Stockton(California),,1 hour 59 mins,202 km +Fresno(California),Santa Rosa(California),,3 hours 39 mins,374 km +Fresno(California),Bakersfield(California),,1 hour 43 mins,175 km +Fresno(California),Santa Ana(California),,4 hours 4 mins,403 km +Fresno(California),Santa Maria(California),,2 hours 51 mins,271 km +Fresno(California),San Jose(California),,2 hours 35 mins,241 km +Fresno(California),Burbank(California),,3 hours 14 mins,336 km +Fresno(California),Arcata(California),,7 hours 25 mins,734 km +Fresno(California),Butte(California),,4 hours 9 mins,412 km +Fresno(California),Palm Springs(California),,4 hours 58 mins,522 km +Fresno(California),Los Angeles(California),,3 hours 27 mins,353 km +Fresno(California),Long Beach(California),,3 hours 47 mins,388 km +Fresno(California),San Francisco(California),,3 hours 0 mins,300 km +Fresno(California),Monterey(California),,2 hours 42 mins,249 km +San Luis Obispo(California),Newark,,1 day 19 hours,"4,722 km" +San Luis Obispo(California),San Diego(California),,5 hours 0 mins,503 km +San Luis Obispo(California),Redding(California),,6 hours 22 mins,690 km +San Luis Obispo(California),Sacramento(California),,4 hours 32 mins,466 km +San Luis Obispo(California),Fresno(California),,2 hours 20 mins,221 km +San Luis Obispo(California),Oakland(California),,3 hours 26 mins,360 km +San Luis Obispo(California),Santa Barbara(California),,1 hour 37 mins,152 km +San Luis Obispo(California),Stockton(California),,3 hours 50 mins,390 km +San Luis Obispo(California),Santa Rosa(California),,4 hours 20 mins,454 km +San Luis Obispo(California),Bakersfield(California),,2 hours 14 mins,219 km +San Luis Obispo(California),Santa Ana(California),,3 hours 50 mins,359 km +San Luis Obispo(California),Santa Maria(California),,34 mins,51.3 km +San Luis Obispo(California),San Jose(California),,2 hours 50 mins,297 km +San Luis Obispo(California),Burbank(California),,3 hours 6 mins,311 km +San Luis Obispo(California),Arcata(California),,8 hours 5 mins,814 km +San Luis Obispo(California),Butte(California),,5 hours 55 mins,609 km +San Luis Obispo(California),Palm Springs(California),,4 hours 45 mins,478 km +San Luis Obispo(California),Los Angeles(California),,3 hours 14 mins,304 km +San Luis Obispo(California),Long Beach(California),,3 hours 29 mins,337 km +San Luis Obispo(California),San Francisco(California),,3 hours 34 mins,372 km +San Luis Obispo(California),Monterey(California),,2 hours 19 mins,227 km +Oakland(California),Newark,,1 day 18 hours,"4,652 km" +Oakland(California),San Diego(California),,7 hours 34 mins,789 km +Oakland(California),Redding(California),,3 hours 11 mins,340 km +Oakland(California),Sacramento(California),,1 hour 21 mins,132 km +Oakland(California),Fresno(California),,2 hours 50 mins,281 km +Oakland(California),San Luis Obispo(California),,3 hours 29 mins,360 km +Oakland(California),Santa Barbara(California),,5 hours 3 mins,511 km +Oakland(California),Stockton(California),,1 hour 14 mins,115 km +Oakland(California),Santa Rosa(California),,1 hour 0 mins,94.0 km +Oakland(California),Bakersfield(California),,4 hours 11 mins,438 km +Oakland(California),Santa Ana(California),,6 hours 19 mins,647 km +Oakland(California),Santa Maria(California),,4 hours 0 mins,411 km +Oakland(California),San Jose(California),,51 mins,65.2 km +Oakland(California),Burbank(California),,5 hours 29 mins,581 km +Oakland(California),Arcata(California),,4 hours 45 mins,454 km +Oakland(California),Butte(California),,2 hours 44 mins,260 km +Oakland(California),Palm Springs(California),,7 hours 13 mins,766 km +Oakland(California),Los Angeles(California),,5 hours 42 mins,598 km +Oakland(California),Long Beach(California),,6 hours 2 mins,633 km +Oakland(California),San Francisco(California),,21 mins,19.9 km +Oakland(California),Monterey(California),,1 hour 54 mins,179 km +Santa Barbara(California),Newark,,1 day 18 hours,"4,619 km" +Santa Barbara(California),San Diego(California),,3 hours 29 mins,352 km +Santa Barbara(California),Redding(California),,7 hours 56 mins,843 km +Santa Barbara(California),Sacramento(California),,6 hours 6 mins,618 km +Santa Barbara(California),Fresno(California),,3 hours 53 mins,374 km +Santa Barbara(California),San Luis Obispo(California),,1 hour 37 mins,153 km +Santa Barbara(California),Oakland(California),,4 hours 59 mins,512 km +Santa Barbara(California),Stockton(California),,5 hours 23 mins,543 km +Santa Barbara(California),Santa Rosa(California),,5 hours 54 mins,607 km +Santa Barbara(California),Bakersfield(California),,2 hours 28 mins,236 km +Santa Barbara(California),Santa Ana(California),,2 hours 19 mins,207 km +Santa Barbara(California),Santa Maria(California),,1 hour 13 mins,104 km +Santa Barbara(California),San Jose(California),,4 hours 24 mins,450 km +Santa Barbara(California),Burbank(California),,1 hour 35 mins,159 km +Santa Barbara(California),Arcata(California),,9 hours 39 mins,967 km +Santa Barbara(California),Butte(California),,7 hours 28 mins,762 km +Santa Barbara(California),Palm Springs(California),,3 hours 14 mins,327 km +Santa Barbara(California),Los Angeles(California),,1 hour 42 mins,152 km +Santa Barbara(California),Long Beach(California),,1 hour 58 mins,185 km +Santa Barbara(California),San Francisco(California),,5 hours 8 mins,525 km +Santa Barbara(California),Monterey(California),,3 hours 53 mins,380 km +Stockton(California),Newark,,1 day 18 hours,"4,599 km" +Stockton(California),San Diego(California),,7 hours 2 mins,736 km +Stockton(California),Redding(California),,3 hours 10 mins,338 km +Stockton(California),Sacramento(California),,50 mins,79.1 km +Stockton(California),Fresno(California),,2 hours 2 mins,202 km +Stockton(California),San Luis Obispo(California),,3 hours 50 mins,396 km +Stockton(California),Oakland(California),,1 hour 12 mins,115 km +Stockton(California),Santa Barbara(California),,5 hours 23 mins,547 km +Stockton(California),Santa Rosa(California),,2 hours 3 mins,178 km +Stockton(California),Bakersfield(California),,3 hours 38 mins,375 km +Stockton(California),Santa Ana(California),,5 hours 46 mins,594 km +Stockton(California),Santa Maria(California),,4 hours 20 mins,446 km +Stockton(California),San Jose(California),,1 hour 21 mins,130 km +Stockton(California),Burbank(California),,4 hours 56 mins,528 km +Stockton(California),Arcata(California),,5 hours 49 mins,538 km +Stockton(California),Butte(California),,2 hours 15 mins,212 km +Stockton(California),Palm Springs(California),,6 hours 41 mins,713 km +Stockton(California),Los Angeles(California),,5 hours 10 mins,545 km +Stockton(California),Long Beach(California),,5 hours 30 mins,580 km +Stockton(California),San Francisco(California),,1 hour 25 mins,134 km +Stockton(California),Monterey(California),,2 hours 23 mins,237 km +Santa Rosa(California),Newark,,1 day 18 hours,"4,678 km" +Santa Rosa(California),San Diego(California),,8 hours 27 mins,882 km +Santa Rosa(California),Redding(California),,3 hours 32 mins,313 km +Santa Rosa(California),Sacramento(California),,1 hour 42 mins,157 km +Santa Rosa(California),Fresno(California),,3 hours 42 mins,374 km +Santa Rosa(California),San Luis Obispo(California),,4 hours 24 mins,454 km +Santa Rosa(California),Oakland(California),,1 hour 1 min,94.2 km +Santa Rosa(California),Santa Barbara(California),,5 hours 57 mins,605 km +Santa Rosa(California),Stockton(California),,2 hours 2 mins,175 km +Santa Rosa(California),Bakersfield(California),,5 hours 4 mins,530 km +Santa Rosa(California),Santa Ana(California),,7 hours 11 mins,740 km +Santa Rosa(California),Santa Maria(California),,4 hours 54 mins,505 km +Santa Rosa(California),San Jose(California),,1 hour 45 mins,159 km +Santa Rosa(California),Burbank(California),,6 hours 21 mins,673 km +Santa Rosa(California),Arcata(California),,3 hours 50 mins,361 km +Santa Rosa(California),Butte(California),,3 hours 5 mins,285 km +Santa Rosa(California),Palm Springs(California),,8 hours 6 mins,859 km +Santa Rosa(California),Los Angeles(California),,6 hours 34 mins,690 km +Santa Rosa(California),Long Beach(California),,6 hours 54 mins,726 km +Santa Rosa(California),San Francisco(California),,1 hour 7 mins,88.0 km +Santa Rosa(California),Monterey(California),,2 hours 48 mins,273 km +Bakersfield(California),Newark,,1 day 17 hours,"4,502 km" +Bakersfield(California),San Diego(California),,3 hours 46 mins,373 km +Bakersfield(California),Redding(California),,6 hours 40 mins,711 km +Bakersfield(California),Sacramento(California),,4 hours 19 mins,446 km +Bakersfield(California),Fresno(California),,1 hour 43 mins,176 km +Bakersfield(California),San Luis Obispo(California),,2 hours 15 mins,219 km +Bakersfield(California),Oakland(California),,4 hours 10 mins,437 km +Bakersfield(California),Santa Barbara(California),,2 hours 28 mins,237 km +Bakersfield(California),Stockton(California),,3 hours 34 mins,375 km +Bakersfield(California),Santa Rosa(California),,5 hours 2 mins,530 km +Bakersfield(California),Santa Ana(California),,2 hours 30 mins,232 km +Bakersfield(California),Santa Maria(California),,2 hours 12 mins,195 km +Bakersfield(California),San Jose(California),,3 hours 49 mins,388 km +Bakersfield(California),Burbank(California),,1 hour 40 mins,165 km +Bakersfield(California),Arcata(California),,8 hours 48 mins,890 km +Bakersfield(California),Butte(California),,5 hours 44 mins,585 km +Bakersfield(California),Palm Springs(California),,3 hours 25 mins,350 km +Bakersfield(California),Los Angeles(California),,1 hour 53 mins,182 km +Bakersfield(California),Long Beach(California),,2 hours 13 mins,217 km +Bakersfield(California),San Francisco(California),,4 hours 23 mins,456 km +Bakersfield(California),Monterey(California),,3 hours 38 mins,354 km +Santa Ana(California),Newark,,1 day 16 hours,"4,473 km" +Santa Ana(California),San Diego(California),,1 hour 25 mins,143 km +Santa Ana(California),Redding(California),,8 hours 53 mins,928 km +Santa Ana(California),Sacramento(California),,6 hours 33 mins,670 km +Santa Ana(California),Fresno(California),,4 hours 5 mins,403 km +Santa Ana(California),San Luis Obispo(California),,3 hours 49 mins,355 km +Santa Ana(California),Oakland(California),,6 hours 21 mins,647 km +Santa Ana(California),Santa Barbara(California),,2 hours 18 mins,204 km +Santa Ana(California),Stockton(California),,5 hours 50 mins,594 km +Santa Ana(California),Santa Rosa(California),,7 hours 13 mins,740 km +Santa Ana(California),Bakersfield(California),,2 hours 31 mins,231 km +Santa Ana(California),Santa Maria(California),,3 hours 25 mins,306 km +Santa Ana(California),San Jose(California),,5 hours 59 mins,598 km +Santa Ana(California),Burbank(California),,54 mins,67.8 km +Santa Ana(California),Arcata(California),,10 hours 58 mins,"1,100 km" +Santa Ana(California),Butte(California),,7 hours 58 mins,802 km +Santa Ana(California),Palm Springs(California),,1 hour 34 mins,149 km +Santa Ana(California),Los Angeles(California),,43 mins,52.2 km +Santa Ana(California),Long Beach(California),,34 mins,45.3 km +Santa Ana(California),San Francisco(California),,6 hours 34 mins,666 km +Santa Ana(California),Monterey(California),,5 hours 49 mins,564 km +Santa Maria(California),Newark,,1 day 19 hours,"4,678 km" +Santa Maria(California),San Diego(California),,4 hours 33 mins,453 km +Santa Maria(California),Redding(California),,6 hours 52 mins,742 km +Santa Maria(California),Sacramento(California),,5 hours 2 mins,518 km +Santa Maria(California),Fresno(California),,2 hours 50 mins,274 km +Santa Maria(California),San Luis Obispo(California),,34 mins,52.8 km +Santa Maria(California),Oakland(California),,3 hours 56 mins,412 km +Santa Maria(California),Santa Barbara(California),,1 hour 11 mins,102 km +Santa Maria(California),Stockton(California),,4 hours 20 mins,442 km +Santa Maria(California),Santa Rosa(California),,4 hours 50 mins,506 km +Santa Maria(California),Bakersfield(California),,2 hours 14 mins,198 km +Santa Maria(California),Santa Ana(California),,3 hours 23 mins,309 km +Santa Maria(California),San Jose(California),,3 hours 20 mins,349 km +Santa Maria(California),Burbank(California),,2 hours 40 mins,261 km +Santa Maria(California),Arcata(California),,8 hours 35 mins,866 km +Santa Maria(California),Butte(California),,6 hours 25 mins,662 km +Santa Maria(California),Palm Springs(California),,4 hours 19 mins,428 km +Santa Maria(California),Los Angeles(California),,2 hours 47 mins,254 km +Santa Maria(California),Long Beach(California),,3 hours 3 mins,287 km +Santa Maria(California),San Francisco(California),,4 hours 4 mins,425 km +Santa Maria(California),Monterey(California),,2 hours 49 mins,280 km +San Jose(California),Newark,,1 day 19 hours,"4,714 km" +San Jose(California),San Diego(California),,7 hours 12 mins,739 km +San Jose(California),Redding(California),,3 hours 46 mins,401 km +San Jose(California),Sacramento(California),,1 hour 56 mins,193 km +San Jose(California),Fresno(California),,2 hours 34 mins,240 km +San Jose(California),San Luis Obispo(California),,2 hours 50 mins,297 km +San Jose(California),Oakland(California),,49 mins,65.2 km +San Jose(California),Santa Barbara(California),,4 hours 24 mins,448 km +San Jose(California),Stockton(California),,1 hour 21 mins,129 km +San Jose(California),Santa Rosa(California),,1 hour 43 mins,159 km +San Jose(California),Bakersfield(California),,3 hours 49 mins,387 km +San Jose(California),Santa Ana(California),,5 hours 56 mins,597 km +San Jose(California),Santa Maria(California),,3 hours 21 mins,347 km +San Jose(California),Burbank(California),,5 hours 6 mins,531 km +San Jose(California),Arcata(California),,5 hours 28 mins,520 km +San Jose(California),Butte(California),,3 hours 19 mins,321 km +San Jose(California),Palm Springs(California),,6 hours 51 mins,716 km +San Jose(California),Los Angeles(California),,5 hours 20 mins,548 km +San Jose(California),Long Beach(California),,5 hours 40 mins,583 km +San Jose(California),San Francisco(California),,56 mins,78.0 km +San Jose(California),Monterey(California),,1 hour 15 mins,115 km +Burbank(California),Newark,,1 day 16 hours,"4,480 km" +Burbank(California),San Diego(California),,2 hours 11 mins,210 km +Burbank(California),Redding(California),,8 hours 2 mins,861 km +Burbank(California),Sacramento(California),,5 hours 42 mins,602 km +Burbank(California),Fresno(California),,3 hours 14 mins,336 km +Burbank(California),San Luis Obispo(California),,3 hours 4 mins,294 km +Burbank(California),Oakland(California),,5 hours 30 mins,580 km +Burbank(California),Santa Barbara(California),,1 hour 33 mins,143 km +Burbank(California),Stockton(California),,4 hours 59 mins,527 km +Burbank(California),Santa Rosa(California),,6 hours 22 mins,673 km +Burbank(California),Bakersfield(California),,1 hour 40 mins,163 km +Burbank(California),Santa Ana(California),,55 mins,68.3 km +Burbank(California),Santa Maria(California),,2 hours 40 mins,245 km +Burbank(California),San Jose(California),,5 hours 8 mins,531 km +Burbank(California),Arcata(California),,10 hours 7 mins,"1,033 km" +Burbank(California),Butte(California),,7 hours 7 mins,735 km +Burbank(California),Palm Springs(California),,1 hour 50 mins,188 km +Burbank(California),Los Angeles(California),,18 mins,18.7 km +Burbank(California),Long Beach(California),,43 mins,55.1 km +Burbank(California),San Francisco(California),,5 hours 43 mins,599 km +Burbank(California),Monterey(California),,4 hours 57 mins,497 km +Arcata(California),Newark,,1 day 21 hours,"4,849 km" +Arcata(California),San Diego(California),,12 hours 12 mins,"1,243 km" +Arcata(California),Redding(California),,2 hours 46 mins,223 km +Arcata(California),Sacramento(California),,5 hours 14 mins,483 km +Arcata(California),Fresno(California),,7 hours 28 mins,736 km +Arcata(California),San Luis Obispo(California),,8 hours 10 mins,816 km +Arcata(California),Oakland(California),,4 hours 47 mins,456 km +Arcata(California),Santa Barbara(California),,9 hours 43 mins,967 km +Arcata(California),Stockton(California),,5 hours 47 mins,536 km +Arcata(California),Santa Rosa(California),,3 hours 51 mins,362 km +Arcata(California),Bakersfield(California),,8 hours 50 mins,892 km +Arcata(California),Santa Ana(California),,10 hours 57 mins,"1,102 km" +Arcata(California),Santa Maria(California),,8 hours 40 mins,866 km +Arcata(California),San Jose(California),,5 hours 31 mins,521 km +Arcata(California),Burbank(California),,10 hours 7 mins,"1,035 km" +Arcata(California),Butte(California),,4 hours 30 mins,380 km +Arcata(California),Palm Springs(California),,11 hours 51 mins,"1,221 km" +Arcata(California),Los Angeles(California),,10 hours 20 mins,"1,052 km" +Arcata(California),Long Beach(California),,10 hours 40 mins,"1,087 km" +Arcata(California),San Francisco(California),,4 hours 53 mins,450 km +Arcata(California),Monterey(California),,6 hours 34 mins,635 km +Butte(California),Newark,,1 day 18 hours,"4,547 km" +Butte(California),San Diego(California),,9 hours 12 mins,944 km +Butte(California),Redding(California),,1 hour 43 mins,151 km +Butte(California),Sacramento(California),,1 hour 34 mins,135 km +Butte(California),Fresno(California),,4 hours 10 mins,408 km +Butte(California),San Luis Obispo(California),,5 hours 59 mins,604 km +Butte(California),Oakland(California),,2 hours 45 mins,259 km +Butte(California),Santa Barbara(California),,7 hours 32 mins,755 km +Butte(California),Stockton(California),,2 hours 16 mins,211 km +Butte(California),Santa Rosa(California),,3 hours 4 mins,285 km +Butte(California),Bakersfield(California),,5 hours 46 mins,580 km +Butte(California),Santa Ana(California),,7 hours 56 mins,803 km +Butte(California),Santa Maria(California),,6 hours 29 mins,655 km +Butte(California),San Jose(California),,3 hours 23 mins,322 km +Butte(California),Burbank(California),,7 hours 6 mins,736 km +Butte(California),Arcata(California),,4 hours 30 mins,376 km +Butte(California),Palm Springs(California),,8 hours 51 mins,921 km +Butte(California),Los Angeles(California),,7 hours 19 mins,753 km +Butte(California),Long Beach(California),,7 hours 39 mins,788 km +Butte(California),San Francisco(California),,2 hours 54 mins,269 km +Butte(California),Monterey(California),,4 hours 24 mins,429 km +Palm Springs(California),Newark,,1 day 16 hours,"4,286 km" +Palm Springs(California),San Diego(California),,2 hours 14 mins,205 km +Palm Springs(California),Redding(California),,9 hours 49 mins,"1,047 km" +Palm Springs(California),Sacramento(California),,7 hours 28 mins,788 km +Palm Springs(California),Fresno(California),,5 hours 1 min,522 km +Palm Springs(California),San Luis Obispo(California),,4 hours 44 mins,478 km +Palm Springs(California),Oakland(California),,7 hours 16 mins,766 km +Palm Springs(California),Santa Barbara(California),,3 hours 14 mins,326 km +Palm Springs(California),Stockton(California),,6 hours 46 mins,713 km +Palm Springs(California),Santa Rosa(California),,8 hours 8 mins,859 km +Palm Springs(California),Bakersfield(California),,3 hours 27 mins,349 km +Palm Springs(California),Santa Ana(California),,1 hour 39 mins,157 km +Palm Springs(California),Santa Maria(California),,4 hours 21 mins,429 km +Palm Springs(California),San Jose(California),,6 hours 55 mins,717 km +Palm Springs(California),Burbank(California),,1 hour 55 mins,193 km +Palm Springs(California),Arcata(California),,11 hours 54 mins,"1,219 km" +Palm Springs(California),Butte(California),,8 hours 54 mins,921 km +Palm Springs(California),Los Angeles(California),,1 hour 49 mins,175 km +Palm Springs(California),Long Beach(California),,1 hour 57 mins,190 km +Palm Springs(California),San Francisco(California),,7 hours 29 mins,785 km +Palm Springs(California),Monterey(California),,6 hours 44 mins,683 km +Los Angeles(California),Newark,,1 day 16 hours,"4,476 km" +Los Angeles(California),San Diego(California),,1 hour 57 mins,193 km +Los Angeles(California),Redding(California),,8 hours 15 mins,877 km +Los Angeles(California),Sacramento(California),,5 hours 54 mins,618 km +Los Angeles(California),Fresno(California),,3 hours 27 mins,352 km +Los Angeles(California),San Luis Obispo(California),,3 hours 8 mins,304 km +Los Angeles(California),Oakland(California),,5 hours 43 mins,596 km +Los Angeles(California),Santa Barbara(California),,1 hour 38 mins,153 km +Los Angeles(California),Stockton(California),,5 hours 12 mins,542 km +Los Angeles(California),Santa Rosa(California),,6 hours 35 mins,688 km +Los Angeles(California),Bakersfield(California),,1 hour 53 mins,179 km +Los Angeles(California),Santa Ana(California),,41 mins,51.8 km +Los Angeles(California),Santa Maria(California),,2 hours 44 mins,255 km +Los Angeles(California),San Jose(California),,5 hours 21 mins,546 km +Los Angeles(California),Burbank(California),,18 mins,17.7 km +Los Angeles(California),Arcata(California),,10 hours 20 mins,"1,049 km" +Los Angeles(California),Butte(California),,7 hours 20 mins,751 km +Los Angeles(California),Palm Springs(California),,1 hour 43 mins,171 km +Los Angeles(California),Long Beach(California),,28 mins,38.5 km +Los Angeles(California),San Francisco(California),,5 hours 56 mins,614 km +Los Angeles(California),Monterey(California),,5 hours 10 mins,512 km +Long Beach(California),Newark,,1 day 17 hours,"4,503 km" +Long Beach(California),San Diego(California),,1 hour 45 mins,181 km +Long Beach(California),Redding(California),,8 hours 38 mins,914 km +Long Beach(California),Sacramento(California),,6 hours 17 mins,656 km +Long Beach(California),Fresno(California),,3 hours 50 mins,390 km +Long Beach(California),San Luis Obispo(California),,3 hours 28 mins,336 km +Long Beach(California),Oakland(California),,6 hours 5 mins,634 km +Long Beach(California),Santa Barbara(California),,1 hour 57 mins,185 km +Long Beach(California),Stockton(California),,5 hours 35 mins,580 km +Long Beach(California),Santa Rosa(California),,6 hours 58 mins,726 km +Long Beach(California),Bakersfield(California),,2 hours 16 mins,217 km +Long Beach(California),Santa Ana(California),,34 mins,44.4 km +Long Beach(California),Santa Maria(California),,3 hours 4 mins,288 km +Long Beach(California),San Jose(California),,5 hours 44 mins,584 km +Long Beach(California),Burbank(California),,43 mins,54.5 km +Long Beach(California),Arcata(California),,10 hours 43 mins,"1,086 km" +Long Beach(California),Butte(California),,7 hours 43 mins,789 km +Long Beach(California),Palm Springs(California),,1 hour 52 mins,183 km +Long Beach(California),Los Angeles(California),,32 mins,38.8 km +Long Beach(California),San Francisco(California),,6 hours 18 mins,652 km +Long Beach(California),Monterey(California),,5 hours 33 mins,550 km +San Francisco(California),Newark,,1 day 18 hours,"4,662 km" +San Francisco(California),San Diego(California),,7 hours 44 mins,807 km +San Francisco(California),Redding(California),,3 hours 18 mins,350 km +San Francisco(California),Sacramento(California),,1 hour 28 mins,141 km +San Francisco(California),Fresno(California),,3 hours 0 mins,300 km +San Francisco(California),San Luis Obispo(California),,3 hours 34 mins,372 km +San Francisco(California),Oakland(California),,18 mins,19.8 km +San Francisco(California),Santa Barbara(California),,5 hours 7 mins,523 km +San Francisco(California),Stockton(California),,1 hour 24 mins,134 km +San Francisco(California),Santa Rosa(California),,1 hour 7 mins,88.3 km +San Francisco(California),Bakersfield(California),,4 hours 21 mins,456 km +San Francisco(California),Santa Ana(California),,6 hours 29 mins,666 km +San Francisco(California),Santa Maria(California),,4 hours 4 mins,423 km +San Francisco(California),San Jose(California),,54 mins,77.9 km +San Francisco(California),Burbank(California),,5 hours 39 mins,599 km +San Francisco(California),Arcata(California),,4 hours 52 mins,448 km +San Francisco(California),Butte(California),,2 hours 51 mins,270 km +San Francisco(California),Palm Springs(California),,7 hours 23 mins,785 km +San Francisco(California),Los Angeles(California),,5 hours 52 mins,616 km +San Francisco(California),Long Beach(California),,6 hours 12 mins,651 km +San Francisco(California),Monterey(California),,1 hour 58 mins,191 km +Monterey(California),Newark,,1 day 20 hours,"4,820 km" +Monterey(California),San Diego(California),,7 hours 2 mins,705 km +Monterey(California),Redding(California),,4 hours 47 mins,508 km +Monterey(California),Sacramento(California),,2 hours 57 mins,300 km +Monterey(California),Fresno(California),,2 hours 41 mins,247 km +Monterey(California),San Luis Obispo(California),,2 hours 20 mins,227 km +Monterey(California),Oakland(California),,1 hour 51 mins,178 km +Monterey(California),Santa Barbara(California),,3 hours 53 mins,378 km +Monterey(California),Stockton(California),,2 hours 22 mins,236 km +Monterey(California),Santa Rosa(California),,2 hours 46 mins,272 km +Monterey(California),Bakersfield(California),,3 hours 39 mins,354 km +Monterey(California),Santa Ana(California),,5 hours 46 mins,564 km +Monterey(California),Santa Maria(California),,2 hours 50 mins,278 km +Monterey(California),San Jose(California),,1 hour 16 mins,115 km +Monterey(California),Burbank(California),,4 hours 56 mins,497 km +Monterey(California),Arcata(California),,6 hours 31 mins,633 km +Monterey(California),Butte(California),,4 hours 20 mins,428 km +Monterey(California),Palm Springs(California),,6 hours 41 mins,683 km +Monterey(California),Los Angeles(California),,5 hours 9 mins,514 km +Monterey(California),Long Beach(California),,5 hours 29 mins,549 km +Monterey(California),San Francisco(California),,2 hours 0 mins,191 km +Boston,Washington,,7 hours 12 mins,709 km +Washington,Boston,,7 hours 12 mins,704 km +Gunnison,Abilene(Texas),,11 hours 23 mins,"1,163 km" +Gunnison,Amarillo(Texas),,7 hours 15 mins,716 km +Gunnison,Harlingen(Texas),,18 hours 18 mins,"1,927 km" +Gunnison,Lubbock(Texas),,8 hours 58 mins,899 km +Gunnison,College Station(Texas),,14 hours 54 mins,"1,539 km" +Gunnison,Corpus Christi(Texas),,16 hours 40 mins,"1,752 km" +Gunnison,Wichita Falls(Texas),,10 hours 40 mins,"1,076 km" +Gunnison,Waco(Texas),,13 hours 36 mins,"1,404 km" +Gunnison,San Angelo(Texas),,11 hours 46 mins,"1,194 km" +Gunnison,Houston(Texas),,16 hours 2 mins,"1,679 km" +Gunnison,San Antonio(Texas),,14 hours 42 mins,"1,520 km" +Gunnison,Del Rio(Texas),,14 hours 13 mins,"1,380 km" +Gunnison,Mission(Texas),,18 hours 17 mins,"1,916 km" +Gunnison,Beaumont(Texas),,17 hours 2 mins,"1,754 km" +Gunnison,Longview(Texas),,14 hours 33 mins,"1,503 km" +Gunnison,Midland(Texas),,10 hours 42 mins,"1,056 km" +Gunnison,El Paso(Texas),,9 hours 13 mins,943 km +Gunnison,Brownsville(Texas),,18 hours 39 mins,"1,967 km" +Gunnison,Austin(Texas),,14 hours 49 mins,"1,499 km" +Gunnison,Dallas(Texas),,12 hours 42 mins,"1,303 km" +Gunnison,Killeen(Texas),,14 hours 10 mins,"1,436 km" +Gunnison,Laredo(Texas),,16 hours 49 mins,"1,709 km" +Gunnison,Texarkana(Texas),,15 hours 0 mins,"1,512 km" +Abilene(Texas),Gunnison,,11 hours 26 mins,"1,148 km" +Amarillo(Texas),Gunnison,,7 hours 18 mins,716 km +Harlingen(Texas),Gunnison,,18 hours 16 mins,"1,912 km" +Lubbock(Texas),Gunnison,,9 hours 3 mins,899 km +College Station(Texas),Gunnison,,14 hours 56 mins,"1,537 km" +Corpus Christi(Texas),Gunnison,,16 hours 40 mins,"1,736 km" +Wichita Falls(Texas),Gunnison,,10 hours 43 mins,"1,074 km" +Waco(Texas),Gunnison,,13 hours 39 mins,"1,399 km" +San Angelo(Texas),Gunnison,,11 hours 50 mins,"1,212 km" +Houston(Texas),Gunnison,,16 hours 5 mins,"1,677 km" +San Antonio(Texas),Gunnison,,14 hours 43 mins,"1,504 km" +Del Rio(Texas),Gunnison,,14 hours 15 mins,"1,370 km" +Mission(Texas),Gunnison,,18 hours 18 mins,"1,901 km" +Beaumont(Texas),Gunnison,,17 hours 6 mins,"1,752 km" +Longview(Texas),Gunnison,,14 hours 35 mins,"1,507 km" +Midland(Texas),Gunnison,,10 hours 44 mins,"1,055 km" +El Paso(Texas),Gunnison,,9 hours 16 mins,945 km +Brownsville(Texas),Gunnison,,18 hours 40 mins,"1,952 km" +Austin(Texas),Gunnison,,14 hours 52 mins,"1,485 km" +Dallas(Texas),Gunnison,,12 hours 45 mins,"1,300 km" +Killeen(Texas),Gunnison,,14 hours 14 mins,"1,421 km" +Laredo(Texas),Gunnison,,16 hours 53 mins,"1,694 km" +Texarkana(Texas),Gunnison,,15 hours 12 mins,"1,523 km" +Punta Gorda,Nashville(Tennessee),,11 hours 29 mins,"1,289 km" +Punta Gorda,Bristol(Tennessee),,12 hours 14 mins,"1,315 km" +Punta Gorda,Knoxville(Tennessee),,10 hours 50 mins,"1,231 km" +Punta Gorda,Chattanooga(Tennessee),,9 hours 29 mins,"1,077 km" +Punta Gorda,Memphis(Tennessee),,13 hours 21 mins,"1,517 km" +Nashville(Tennessee),Punta Gorda,,11 hours 30 mins,"1,287 km" +Nashville(Tennessee),Bristol(Tennessee),,4 hours 23 mins,469 km +Nashville(Tennessee),Knoxville(Tennessee),,2 hours 42 mins,290 km +Nashville(Tennessee),Chattanooga(Tennessee),,2 hours 4 mins,214 km +Nashville(Tennessee),Memphis(Tennessee),,3 hours 10 mins,341 km +Bristol(Tennessee),Punta Gorda,,12 hours 13 mins,"1,314 km" +Bristol(Tennessee),Nashville(Tennessee),,4 hours 22 mins,469 km +Bristol(Tennessee),Knoxville(Tennessee),,1 hour 45 mins,182 km +Bristol(Tennessee),Chattanooga(Tennessee),,3 hours 21 mins,360 km +Bristol(Tennessee),Memphis(Tennessee),,7 hours 24 mins,809 km +Knoxville(Tennessee),Punta Gorda,,10 hours 53 mins,"1,231 km" +Knoxville(Tennessee),Nashville(Tennessee),,2 hours 42 mins,290 km +Knoxville(Tennessee),Bristol(Tennessee),,1 hour 44 mins,181 km +Knoxville(Tennessee),Chattanooga(Tennessee),,1 hour 41 mins,180 km +Knoxville(Tennessee),Memphis(Tennessee),,5 hours 44 mins,629 km +Chattanooga(Tennessee),Punta Gorda,,9 hours 32 mins,"1,078 km" +Chattanooga(Tennessee),Nashville(Tennessee),,2 hours 6 mins,216 km +Chattanooga(Tennessee),Bristol(Tennessee),,3 hours 22 mins,360 km +Chattanooga(Tennessee),Knoxville(Tennessee),,1 hour 42 mins,181 km +Chattanooga(Tennessee),Memphis(Tennessee),,5 hours 0 mins,547 km +Memphis(Tennessee),Punta Gorda,,13 hours 23 mins,"1,504 km" +Memphis(Tennessee),Nashville(Tennessee),,3 hours 11 mins,341 km +Memphis(Tennessee),Bristol(Tennessee),,7 hours 25 mins,808 km +Memphis(Tennessee),Knoxville(Tennessee),,5 hours 45 mins,629 km +Memphis(Tennessee),Chattanooga(Tennessee),,4 hours 58 mins,542 km +Houston,Tucson,,15 hours 14 mins,"1,715 km" +Tucson,Houston,,15 hours 16 mins,"1,717 km" +Palm Springs,Abilene(Texas),,16 hours 41 mins,"1,850 km" +Palm Springs,Amarillo(Texas),,14 hours 28 mins,"1,562 km" +Palm Springs,Harlingen(Texas),,21 hours 34 mins,"2,416 km" +Palm Springs,Lubbock(Texas),,15 hours 22 mins,"1,615 km" +Palm Springs,College Station(Texas),,20 hours 19 mins,"2,209 km" +Palm Springs,Corpus Christi(Texas),,19 hours 56 mins,"2,241 km" +Palm Springs,Wichita Falls(Texas),,17 hours 45 mins,"1,916 km" +Palm Springs,Waco(Texas),,19 hours 20 mins,"2,111 km" +Palm Springs,San Angelo(Texas),,16 hours 5 mins,"1,772 km" +Palm Springs,Houston(Texas),,20 hours 47 mins,"2,323 km" +Palm Springs,San Antonio(Texas),,17 hours 58 mins,"2,008 km" +Palm Springs,Del Rio(Texas),,16 hours 32 mins,"1,805 km" +Palm Springs,Mission(Texas),,21 hours 34 mins,"2,404 km" +Palm Springs,Beaumont(Texas),,22 hours 2 mins,"2,457 km" +Palm Springs,Longview(Texas),,21 hours 2 mins,"2,349 km" +Palm Springs,Midland(Texas),,14 hours 36 mins,"1,613 km" +Palm Springs,El Paso(Texas),,10 hours 13 mins,"1,122 km" +Palm Springs,Brownsville(Texas),,21 hours 56 mins,"2,456 km" +Palm Springs,Austin(Texas),,18 hours 48 mins,"2,048 km" +Palm Springs,Dallas(Texas),,19 hours 15 mins,"2,144 km" +Palm Springs,Killeen(Texas),,18 hours 37 mins,"2,042 km" +Palm Springs,Laredo(Texas),,19 hours 28 mins,"2,094 km" +Palm Springs,Texarkana(Texas),,21 hours 51 mins,"2,429 km" +Abilene(Texas),Palm Springs,,16 hours 41 mins,"1,851 km" +Amarillo(Texas),Palm Springs,,14 hours 30 mins,"1,562 km" +Harlingen(Texas),Palm Springs,,21 hours 29 mins,"2,418 km" +Lubbock(Texas),Palm Springs,,15 hours 24 mins,"1,616 km" +College Station(Texas),Palm Springs,,20 hours 18 mins,"2,217 km" +Corpus Christi(Texas),Palm Springs,,19 hours 53 mins,"2,242 km" +Wichita Falls(Texas),Palm Springs,,17 hours 48 mins,"1,917 km" +Waco(Texas),Palm Springs,,19 hours 20 mins,"2,112 km" +San Angelo(Texas),Palm Springs,,16 hours 3 mins,"1,772 km" +Houston(Texas),Palm Springs,,20 hours 45 mins,"2,324 km" +San Antonio(Texas),Palm Springs,,17 hours 57 mins,"2,010 km" +Del Rio(Texas),Palm Springs,,16 hours 32 mins,"1,806 km" +Mission(Texas),Palm Springs,,21 hours 31 mins,"2,407 km" +Beaumont(Texas),Palm Springs,,22 hours 3 mins,"2,458 km" +Longview(Texas),Palm Springs,,21 hours 3 mins,"2,349 km" +Midland(Texas),Palm Springs,,14 hours 34 mins,"1,614 km" +El Paso(Texas),Palm Springs,,10 hours 13 mins,"1,124 km" +Brownsville(Texas),Palm Springs,,21 hours 53 mins,"2,458 km" +Austin(Texas),Palm Springs,,18 hours 46 mins,"2,050 km" +Dallas(Texas),Palm Springs,,19 hours 15 mins,"2,144 km" +Killeen(Texas),Palm Springs,,18 hours 36 mins,"2,043 km" +Laredo(Texas),Palm Springs,,19 hours 28 mins,"2,096 km" +Texarkana(Texas),Palm Springs,,21 hours 53 mins,"2,432 km" +Raleigh,Buffalo(New York),,10 hours 42 mins,"1,049 km" +Raleigh,Manhattan(New York),,7 hours 56 mins,818 km +Raleigh,Niagara Falls(New York),,11 hours 3 mins,"1,080 km" +Raleigh,Islip(New York),,8 hours 36 mins,888 km +Raleigh,New York(New York),,7 hours 47 mins,812 km +Raleigh,Watertown(New York),,10 hours 49 mins,"1,147 km" +Raleigh,Newburgh(New York),,8 hours 37 mins,903 km +Raleigh,Syracuse(New York),,9 hours 46 mins,"1,035 km" +Raleigh,Plattsburgh(New York),,12 hours 3 mins,"1,292 km" +Raleigh,Ogdensburg(New York),,11 hours 48 mins,"1,240 km" +Raleigh,Ithaca(New York),,9 hours 31 mins,974 km +Raleigh,Elmira(New York),,8 hours 54 mins,901 km +Raleigh,White Plains(New York),,8 hours 14 mins,862 km +Raleigh,Albany(New York),,9 hours 43 mins,"1,034 km" +Raleigh,Binghamton(New York),,8 hours 46 mins,923 km +Raleigh,Rochester(New York),,10 hours 10 mins,"1,063 km" +Buffalo(New York),Raleigh,,10 hours 49 mins,"1,049 km" +Buffalo(New York),Manhattan(New York),,6 hours 17 mins,613 km +Buffalo(New York),Niagara Falls(New York),,26 mins,31.9 km +Buffalo(New York),Islip(New York),,7 hours 4 mins,684 km +Buffalo(New York),New York(New York),,6 hours 14 mins,600 km +Buffalo(New York),Watertown(New York),,3 hours 15 mins,347 km +Buffalo(New York),Newburgh(New York),,5 hours 27 mins,542 km +Buffalo(New York),Syracuse(New York),,2 hours 19 mins,245 km +Buffalo(New York),Plattsburgh(New York),,6 hours 8 mins,605 km +Buffalo(New York),Ogdensburg(New York),,4 hours 14 mins,440 km +Buffalo(New York),Ithaca(New York),,2 hours 39 mins,250 km +Buffalo(New York),Elmira(New York),,2 hours 31 mins,232 km +Buffalo(New York),White Plains(New York),,5 hours 57 mins,600 km +Buffalo(New York),Albany(New York),,4 hours 19 mins,471 km +Buffalo(New York),Binghamton(New York),,3 hours 19 mins,320 km +Buffalo(New York),Rochester(New York),,1 hour 13 mins,123 km +Manhattan(New York),Raleigh,,7 hours 58 mins,825 km +Manhattan(New York),Buffalo(New York),,6 hours 13 mins,613 km +Manhattan(New York),Niagara Falls(New York),,6 hours 28 mins,669 km +Manhattan(New York),Islip(New York),,1 hour 13 mins,89.2 km +Manhattan(New York),New York(New York),,27 mins,13.6 km +Manhattan(New York),Watertown(New York),,5 hours 6 mins,522 km +Manhattan(New York),Newburgh(New York),,1 hour 16 mins,99.0 km +Manhattan(New York),Syracuse(New York),,4 hours 3 mins,410 km +Manhattan(New York),Plattsburgh(New York),,4 hours 42 mins,491 km +Manhattan(New York),Ogdensburg(New York),,6 hours 5 mins,616 km +Manhattan(New York),Ithaca(New York),,3 hours 57 mins,371 km +Manhattan(New York),Elmira(New York),,3 hours 51 mins,385 km +Manhattan(New York),White Plains(New York),,40 mins,44.8 km +Manhattan(New York),Albany(New York),,2 hours 23 mins,234 km +Manhattan(New York),Binghamton(New York),,3 hours 3 mins,298 km +Manhattan(New York),Rochester(New York),,5 hours 20 mins,548 km +Niagara Falls(New York),Raleigh,,11 hours 11 mins,"1,079 km" +Niagara Falls(New York),Buffalo(New York),,26 mins,31.6 km +Niagara Falls(New York),Manhattan(New York),,6 hours 32 mins,670 km +Niagara Falls(New York),Islip(New York),,7 hours 19 mins,741 km +Niagara Falls(New York),New York(New York),,6 hours 29 mins,657 km +Niagara Falls(New York),Watertown(New York),,3 hours 28 mins,363 km +Niagara Falls(New York),Newburgh(New York),,5 hours 42 mins,599 km +Niagara Falls(New York),Syracuse(New York),,2 hours 31 mins,260 km +Niagara Falls(New York),Plattsburgh(New York),,6 hours 20 mins,621 km +Niagara Falls(New York),Ogdensburg(New York),,4 hours 26 mins,456 km +Niagara Falls(New York),Ithaca(New York),,2 hours 51 mins,265 km +Niagara Falls(New York),Elmira(New York),,2 hours 52 mins,269 km +Niagara Falls(New York),White Plains(New York),,6 hours 12 mins,657 km +Niagara Falls(New York),Albany(New York),,4 hours 31 mins,487 km +Niagara Falls(New York),Binghamton(New York),,3 hours 36 mins,378 km +Niagara Falls(New York),Rochester(New York),,1 hour 26 mins,139 km +Islip(New York),Raleigh,,8 hours 39 mins,894 km +Islip(New York),Buffalo(New York),,7 hours 3 mins,682 km +Islip(New York),Manhattan(New York),,1 hour 15 mins,84.5 km +Islip(New York),Niagara Falls(New York),,7 hours 18 mins,738 km +Islip(New York),New York(New York),,1 hour 18 mins,85.8 km +Islip(New York),Watertown(New York),,5 hours 56 mins,592 km +Islip(New York),Newburgh(New York),,2 hours 4 mins,172 km +Islip(New York),Syracuse(New York),,4 hours 53 mins,479 km +Islip(New York),Plattsburgh(New York),,5 hours 32 mins,573 km +Islip(New York),Ogdensburg(New York),,6 hours 55 mins,685 km +Islip(New York),Ithaca(New York),,4 hours 47 mins,440 km +Islip(New York),Elmira(New York),,4 hours 41 mins,454 km +Islip(New York),White Plains(New York),,1 hour 15 mins,101 km +Islip(New York),Albany(New York),,3 hours 12 mins,315 km +Islip(New York),Binghamton(New York),,3 hours 53 mins,367 km +Islip(New York),Rochester(New York),,6 hours 10 mins,617 km +New York(New York),Raleigh,,7 hours 49 mins,820 km +New York(New York),Buffalo(New York),,6 hours 10 mins,600 km +New York(New York),Manhattan(New York),,26 mins,12.9 km +New York(New York),Niagara Falls(New York),,6 hours 25 mins,656 km +New York(New York),Islip(New York),,1 hour 12 mins,84.2 km +New York(New York),Watertown(New York),,5 hours 3 mins,509 km +New York(New York),Newburgh(New York),,1 hour 28 mins,110 km +New York(New York),Syracuse(New York),,4 hours 0 mins,397 km +New York(New York),Plattsburgh(New York),,4 hours 55 mins,503 km +New York(New York),Ogdensburg(New York),,6 hours 2 mins,602 km +New York(New York),Ithaca(New York),,3 hours 54 mins,358 km +New York(New York),Elmira(New York),,3 hours 48 mins,372 km +New York(New York),White Plains(New York),,49 mins,55.8 km +New York(New York),Albany(New York),,2 hours 35 mins,245 km +New York(New York),Binghamton(New York),,3 hours 0 mins,285 km +New York(New York),Rochester(New York),,5 hours 17 mins,535 km +Watertown(New York),Raleigh,,10 hours 59 mins,"1,150 km" +Watertown(New York),Buffalo(New York),,3 hours 15 mins,342 km +Watertown(New York),Manhattan(New York),,5 hours 10 mins,524 km +Watertown(New York),Niagara Falls(New York),,3 hours 27 mins,362 km +Watertown(New York),Islip(New York),,5 hours 57 mins,594 km +Watertown(New York),New York(New York),,5 hours 7 mins,510 km +Watertown(New York),Newburgh(New York),,4 hours 10 mins,413 km +Watertown(New York),Syracuse(New York),,1 hour 9 mins,114 km +Watertown(New York),Plattsburgh(New York),,3 hours 14 mins,254 km +Watertown(New York),Ogdensburg(New York),,1 hour 7 mins,95.4 km +Watertown(New York),Ithaca(New York),,2 hours 11 mins,204 km +Watertown(New York),Elmira(New York),,2 hours 52 mins,257 km +Watertown(New York),White Plains(New York),,4 hours 51 mins,510 km +Watertown(New York),Albany(New York),,2 hours 57 mins,280 km +Watertown(New York),Binghamton(New York),,2 hours 14 mins,231 km +Watertown(New York),Rochester(New York),,2 hours 19 mins,241 km +Newburgh(New York),Raleigh,,8 hours 42 mins,914 km +Newburgh(New York),Buffalo(New York),,5 hours 26 mins,541 km +Newburgh(New York),Manhattan(New York),,1 hour 20 mins,99.1 km +Newburgh(New York),Niagara Falls(New York),,5 hours 41 mins,597 km +Newburgh(New York),Islip(New York),,2 hours 7 mins,169 km +Newburgh(New York),New York(New York),,1 hour 35 mins,107 km +Newburgh(New York),Watertown(New York),,4 hours 12 mins,412 km +Newburgh(New York),Syracuse(New York),,3 hours 16 mins,338 km +Newburgh(New York),Plattsburgh(New York),,3 hours 45 mins,401 km +Newburgh(New York),Ogdensburg(New York),,5 hours 11 mins,493 km +Newburgh(New York),Ithaca(New York),,3 hours 10 mins,299 km +Newburgh(New York),Elmira(New York),,3 hours 4 mins,313 km +Newburgh(New York),White Plains(New York),,1 hour 0 mins,82.1 km +Newburgh(New York),Albany(New York),,1 hour 26 mins,143 km +Newburgh(New York),Binghamton(New York),,2 hours 16 mins,226 km +Newburgh(New York),Rochester(New York),,4 hours 33 mins,476 km +Syracuse(New York),Raleigh,,9 hours 55 mins,"1,037 km" +Syracuse(New York),Buffalo(New York),,2 hours 19 mins,240 km +Syracuse(New York),Manhattan(New York),,4 hours 6 mins,410 km +Syracuse(New York),Niagara Falls(New York),,2 hours 31 mins,260 km +Syracuse(New York),Islip(New York),,4 hours 53 mins,481 km +Syracuse(New York),New York(New York),,4 hours 4 mins,397 km +Syracuse(New York),Watertown(New York),,1 hour 8 mins,113 km +Syracuse(New York),Newburgh(New York),,3 hours 17 mins,339 km +Syracuse(New York),Plattsburgh(New York),,4 hours 1 min,371 km +Syracuse(New York),Ogdensburg(New York),,2 hours 6 mins,206 km +Syracuse(New York),Ithaca(New York),,1 hour 7 mins,90.6 km +Syracuse(New York),Elmira(New York),,1 hour 48 mins,144 km +Syracuse(New York),White Plains(New York),,3 hours 47 mins,397 km +Syracuse(New York),Albany(New York),,2 hours 12 mins,237 km +Syracuse(New York),Binghamton(New York),,1 hour 10 mins,118 km +Syracuse(New York),Rochester(New York),,1 hour 22 mins,139 km +Plattsburgh(New York),Raleigh,,12 hours 7 mins,"1,302 km" +Plattsburgh(New York),Buffalo(New York),,6 hours 8 mins,602 km +Plattsburgh(New York),Manhattan(New York),,4 hours 46 mins,493 km +Plattsburgh(New York),Niagara Falls(New York),,6 hours 19 mins,622 km +Plattsburgh(New York),Islip(New York),,5 hours 33 mins,575 km +Plattsburgh(New York),New York(New York),,4 hours 59 mins,501 km +Plattsburgh(New York),Watertown(New York),,3 hours 15 mins,255 km +Plattsburgh(New York),Newburgh(New York),,3 hours 45 mins,402 km +Plattsburgh(New York),Syracuse(New York),,4 hours 0 mins,371 km +Plattsburgh(New York),Ogdensburg(New York),,2 hours 19 mins,189 km +Plattsburgh(New York),Ithaca(New York),,5 hours 3 mins,461 km +Plattsburgh(New York),Elmira(New York),,5 hours 7 mins,553 km +Plattsburgh(New York),White Plains(New York),,4 hours 27 mins,483 km +Plattsburgh(New York),Albany(New York),,2 hours 28 mins,261 km +Plattsburgh(New York),Binghamton(New York),,4 hours 19 mins,465 km +Plattsburgh(New York),Rochester(New York),,5 hours 11 mins,501 km +Ogdensburg(New York),Raleigh,,11 hours 58 mins,"1,243 km" +Ogdensburg(New York),Buffalo(New York),,4 hours 14 mins,435 km +Ogdensburg(New York),Manhattan(New York),,6 hours 9 mins,616 km +Ogdensburg(New York),Niagara Falls(New York),,4 hours 26 mins,455 km +Ogdensburg(New York),Islip(New York),,6 hours 56 mins,687 km +Ogdensburg(New York),New York(New York),,6 hours 6 mins,602 km +Ogdensburg(New York),Watertown(New York),,1 hour 10 mins,96.0 km +Ogdensburg(New York),Newburgh(New York),,5 hours 9 mins,494 km +Ogdensburg(New York),Syracuse(New York),,2 hours 8 mins,206 km +Ogdensburg(New York),Plattsburgh(New York),,2 hours 18 mins,189 km +Ogdensburg(New York),Ithaca(New York),,3 hours 10 mins,296 km +Ogdensburg(New York),Elmira(New York),,3 hours 51 mins,350 km +Ogdensburg(New York),White Plains(New York),,5 hours 50 mins,603 km +Ogdensburg(New York),Albany(New York),,3 hours 55 mins,361 km +Ogdensburg(New York),Binghamton(New York),,3 hours 13 mins,323 km +Ogdensburg(New York),Rochester(New York),,3 hours 18 mins,334 km +Ithaca(New York),Raleigh,,9 hours 39 mins,980 km +Ithaca(New York),Buffalo(New York),,2 hours 38 mins,244 km +Ithaca(New York),Manhattan(New York),,4 hours 0 mins,372 km +Ithaca(New York),Niagara Falls(New York),,2 hours 50 mins,264 km +Ithaca(New York),Islip(New York),,4 hours 47 mins,442 km +Ithaca(New York),New York(New York),,3 hours 58 mins,358 km +Ithaca(New York),Watertown(New York),,2 hours 10 mins,203 km +Ithaca(New York),Newburgh(New York),,3 hours 11 mins,300 km +Ithaca(New York),Syracuse(New York),,1 hour 7 mins,90.6 km +Ithaca(New York),Plattsburgh(New York),,5 hours 2 mins,459 km +Ithaca(New York),Ogdensburg(New York),,3 hours 9 mins,296 km +Ithaca(New York),Elmira(New York),,44 mins,54.1 km +Ithaca(New York),White Plains(New York),,3 hours 41 mins,359 km +Ithaca(New York),Albany(New York),,2 hours 57 mins,269 km +Ithaca(New York),Binghamton(New York),,1 hour 4 mins,79.0 km +Ithaca(New York),Rochester(New York),,1 hour 41 mins,143 km +Elmira(New York),Raleigh,,9 hours 2 mins,909 km +Elmira(New York),Buffalo(New York),,2 hours 30 mins,232 km +Elmira(New York),Manhattan(New York),,3 hours 53 mins,385 km +Elmira(New York),Niagara Falls(New York),,2 hours 50 mins,269 km +Elmira(New York),Islip(New York),,4 hours 40 mins,455 km +Elmira(New York),New York(New York),,3 hours 50 mins,371 km +Elmira(New York),Watertown(New York),,2 hours 52 mins,256 km +Elmira(New York),Newburgh(New York),,3 hours 3 mins,314 km +Elmira(New York),Syracuse(New York),,1 hour 49 mins,144 km +Elmira(New York),Plattsburgh(New York),,5 hours 6 mins,552 km +Elmira(New York),Ogdensburg(New York),,3 hours 51 mins,349 km +Elmira(New York),Ithaca(New York),,44 mins,54.1 km +Elmira(New York),White Plains(New York),,3 hours 34 mins,372 km +Elmira(New York),Albany(New York),,2 hours 57 mins,314 km +Elmira(New York),Binghamton(New York),,55 mins,91.4 km +Elmira(New York),Rochester(New York),,1 hour 54 mins,200 km +White Plains(New York),Raleigh,,8 hours 16 mins,869 km +White Plains(New York),Buffalo(New York),,5 hours 57 mins,600 km +White Plains(New York),Manhattan(New York),,41 mins,39.8 km +White Plains(New York),Niagara Falls(New York),,6 hours 12 mins,656 km +White Plains(New York),Islip(New York),,1 hour 15 mins,101 km +White Plains(New York),New York(New York),,54 mins,57.3 km +White Plains(New York),Watertown(New York),,4 hours 50 mins,509 km +White Plains(New York),Newburgh(New York),,1 hour 0 mins,80.5 km +White Plains(New York),Syracuse(New York),,3 hours 47 mins,396 km +White Plains(New York),Plattsburgh(New York),,4 hours 27 mins,481 km +White Plains(New York),Ogdensburg(New York),,5 hours 49 mins,602 km +White Plains(New York),Ithaca(New York),,3 hours 41 mins,358 km +White Plains(New York),Elmira(New York),,3 hours 34 mins,371 km +White Plains(New York),Albany(New York),,2 hours 7 mins,224 km +White Plains(New York),Binghamton(New York),,2 hours 47 mins,285 km +White Plains(New York),Rochester(New York),,5 hours 4 mins,535 km +Albany(New York),Raleigh,,9 hours 48 mins,"1,044 km" +Albany(New York),Buffalo(New York),,4 hours 19 mins,465 km +Albany(New York),Manhattan(New York),,2 hours 28 mins,234 km +Albany(New York),Niagara Falls(New York),,4 hours 30 mins,484 km +Albany(New York),Islip(New York),,3 hours 14 mins,317 km +Albany(New York),New York(New York),,2 hours 40 mins,243 km +Albany(New York),Watertown(New York),,2 hours 57 mins,277 km +Albany(New York),Newburgh(New York),,1 hour 27 mins,144 km +Albany(New York),Syracuse(New York),,2 hours 11 mins,234 km +Albany(New York),Plattsburgh(New York),,2 hours 26 mins,260 km +Albany(New York),Ogdensburg(New York),,3 hours 56 mins,358 km +Albany(New York),Ithaca(New York),,2 hours 57 mins,267 km +Albany(New York),Elmira(New York),,2 hours 58 mins,313 km +Albany(New York),White Plains(New York),,2 hours 9 mins,225 km +Albany(New York),Binghamton(New York),,2 hours 10 mins,225 km +Albany(New York),Rochester(New York),,3 hours 22 mins,364 km +Binghamton(New York),Raleigh,,8 hours 55 mins,924 km +Binghamton(New York),Buffalo(New York),,3 hours 19 mins,319 km +Binghamton(New York),Manhattan(New York),,3 hours 6 mins,297 km +Binghamton(New York),Niagara Falls(New York),,3 hours 35 mins,377 km +Binghamton(New York),Islip(New York),,3 hours 53 mins,368 km +Binghamton(New York),New York(New York),,3 hours 3 mins,284 km +Binghamton(New York),Watertown(New York),,2 hours 13 mins,230 km +Binghamton(New York),Newburgh(New York),,2 hours 16 mins,226 km +Binghamton(New York),Syracuse(New York),,1 hour 10 mins,118 km +Binghamton(New York),Plattsburgh(New York),,4 hours 18 mins,464 km +Binghamton(New York),Ogdensburg(New York),,3 hours 12 mins,323 km +Binghamton(New York),Ithaca(New York),,1 hour 4 mins,78.6 km +Binghamton(New York),Elmira(New York),,57 mins,91.1 km +Binghamton(New York),White Plains(New York),,2 hours 47 mins,284 km +Binghamton(New York),Albany(New York),,2 hours 9 mins,227 km +Binghamton(New York),Rochester(New York),,2 hours 26 mins,256 km +Rochester(New York),Raleigh,,10 hours 17 mins,"1,070 km" +Rochester(New York),Buffalo(New York),,1 hour 13 mins,119 km +Rochester(New York),Manhattan(New York),,5 hours 22 mins,550 km +Rochester(New York),Niagara Falls(New York),,1 hour 25 mins,139 km +Rochester(New York),Islip(New York),,6 hours 9 mins,620 km +Rochester(New York),New York(New York),,5 hours 19 mins,536 km +Rochester(New York),Watertown(New York),,2 hours 18 mins,242 km +Rochester(New York),Newburgh(New York),,4 hours 32 mins,478 km +Rochester(New York),Syracuse(New York),,1 hour 22 mins,139 km +Rochester(New York),Plattsburgh(New York),,5 hours 11 mins,500 km +Rochester(New York),Ogdensburg(New York),,3 hours 17 mins,335 km +Rochester(New York),Ithaca(New York),,1 hour 41 mins,144 km +Rochester(New York),Elmira(New York),,1 hour 53 mins,200 km +Rochester(New York),White Plains(New York),,5 hours 3 mins,536 km +Rochester(New York),Albany(New York),,3 hours 22 mins,366 km +Rochester(New York),Binghamton(New York),,2 hours 26 mins,257 km +Boston,Lynchburg(Virginia),,10 hours 7 mins,998 km +Boston,Richmond(Virginia),,8 hours 44 mins,892 km +Boston,Petersburg(Virginia),,9 hours 4 mins,928 km +Boston,Newport News(Virginia),,9 hours 37 mins,992 km +Boston,Charlottesville(Virginia),,9 hours 8 mins,895 km +Boston,Staunton(Virginia),,9 hours 15 mins,961 km +Boston,Jamestown(Virginia),,9 hours 32 mins,974 km +Boston,Norfolk(Virginia),,9 hours 44 mins,929 km +Boston,Roanoke(Virginia),,10 hours 26 mins,"1,095 km" +Lynchburg(Virginia),Boston,,10 hours 7 mins,995 km +Lynchburg(Virginia),Richmond(Virginia),,2 hours 7 mins,182 km +Lynchburg(Virginia),Petersburg(Virginia),,2 hours 2 mins,186 km +Lynchburg(Virginia),Newport News(Virginia),,3 hours 7 mins,295 km +Lynchburg(Virginia),Charlottesville(Virginia),,1 hour 13 mins,110 km +Lynchburg(Virginia),Staunton(Virginia),,1 hour 24 mins,121 km +Lynchburg(Virginia),Jamestown(Virginia),,3 hours 3 mins,253 km +Lynchburg(Virginia),Norfolk(Virginia),,3 hours 29 mins,305 km +Lynchburg(Virginia),Roanoke(Virginia),,1 hour 9 mins,90.1 km +Richmond(Virginia),Boston,,8 hours 42 mins,882 km +Richmond(Virginia),Lynchburg(Virginia),,2 hours 4 mins,182 km +Richmond(Virginia),Petersburg(Virginia),,25 mins,38.0 km +Richmond(Virginia),Newport News(Virginia),,1 hour 5 mins,110 km +Richmond(Virginia),Charlottesville(Virginia),,1 hour 10 mins,116 km +Richmond(Virginia),Staunton(Virginia),,1 hour 43 mins,175 km +Richmond(Virginia),Jamestown(Virginia),,1 hour 1 min,92.4 km +Richmond(Virginia),Norfolk(Virginia),,1 hour 34 mins,150 km +Richmond(Virginia),Roanoke(Virginia),,2 hours 52 mins,305 km +Petersburg(Virginia),Boston,,9 hours 3 mins,918 km +Petersburg(Virginia),Lynchburg(Virginia),,2 hours 3 mins,181 km +Petersburg(Virginia),Richmond(Virginia),,27 mins,38.2 km +Petersburg(Virginia),Newport News(Virginia),,1 hour 21 mins,138 km +Petersburg(Virginia),Charlottesville(Virginia),,1 hour 30 mins,152 km +Petersburg(Virginia),Staunton(Virginia),,2 hours 4 mins,211 km +Petersburg(Virginia),Jamestown(Virginia),,1 hour 7 mins,79.2 km +Petersburg(Virginia),Norfolk(Virginia),,1 hour 32 mins,125 km +Petersburg(Virginia),Roanoke(Virginia),,2 hours 59 mins,263 km +Newport News(Virginia),Boston,,9 hours 34 mins,981 km +Newport News(Virginia),Lynchburg(Virginia),,3 hours 7 mins,292 km +Newport News(Virginia),Richmond(Virginia),,1 hour 6 mins,111 km +Newport News(Virginia),Petersburg(Virginia),,1 hour 21 mins,139 km +Newport News(Virginia),Charlottesville(Virginia),,2 hours 7 mins,224 km +Newport News(Virginia),Staunton(Virginia),,2 hours 40 mins,283 km +Newport News(Virginia),Jamestown(Virginia),,36 mins,44.3 km +Newport News(Virginia),Norfolk(Virginia),,37 mins,40.9 km +Newport News(Virginia),Roanoke(Virginia),,3 hours 49 mins,413 km +Charlottesville(Virginia),Boston,,9 hours 6 mins,892 km +Charlottesville(Virginia),Lynchburg(Virginia),,1 hour 13 mins,109 km +Charlottesville(Virginia),Richmond(Virginia),,1 hour 9 mins,116 km +Charlottesville(Virginia),Petersburg(Virginia),,1 hour 28 mins,152 km +Charlottesville(Virginia),Newport News(Virginia),,2 hours 7 mins,223 km +Charlottesville(Virginia),Staunton(Virginia),,45 mins,63.9 km +Charlottesville(Virginia),Jamestown(Virginia),,2 hours 3 mins,205 km +Charlottesville(Virginia),Norfolk(Virginia),,2 hours 37 mins,262 km +Charlottesville(Virginia),Roanoke(Virginia),,1 hour 54 mins,194 km +Staunton(Virginia),Boston,,9 hours 14 mins,962 km +Staunton(Virginia),Lynchburg(Virginia),,1 hour 24 mins,120 km +Staunton(Virginia),Richmond(Virginia),,1 hour 41 mins,174 km +Staunton(Virginia),Petersburg(Virginia),,2 hours 0 mins,209 km +Staunton(Virginia),Newport News(Virginia),,2 hours 39 mins,281 km +Staunton(Virginia),Charlottesville(Virginia),,45 mins,64.1 km +Staunton(Virginia),Jamestown(Virginia),,2 hours 35 mins,263 km +Staunton(Virginia),Norfolk(Virginia),,3 hours 9 mins,320 km +Staunton(Virginia),Roanoke(Virginia),,1 hour 25 mins,140 km +Jamestown(Virginia),Boston,,9 hours 30 mins,963 km +Jamestown(Virginia),Lynchburg(Virginia),,3 hours 1 min,253 km +Jamestown(Virginia),Richmond(Virginia),,1 hour 2 mins,93.3 km +Jamestown(Virginia),Petersburg(Virginia),,1 hour 6 mins,79.0 km +Jamestown(Virginia),Newport News(Virginia),,35 mins,42.8 km +Jamestown(Virginia),Charlottesville(Virginia),,2 hours 2 mins,206 km +Jamestown(Virginia),Staunton(Virginia),,2 hours 36 mins,265 km +Jamestown(Virginia),Norfolk(Virginia),,1 hour 4 mins,81.8 km +Jamestown(Virginia),Roanoke(Virginia),,3 hours 44 mins,395 km +Norfolk(Virginia),Boston,,9 hours 43 mins,926 km +Norfolk(Virginia),Lynchburg(Virginia),,3 hours 27 mins,306 km +Norfolk(Virginia),Richmond(Virginia),,1 hour 36 mins,150 km +Norfolk(Virginia),Petersburg(Virginia),,1 hour 31 mins,123 km +Norfolk(Virginia),Newport News(Virginia),,38 mins,42.7 km +Norfolk(Virginia),Charlottesville(Virginia),,2 hours 36 mins,263 km +Norfolk(Virginia),Staunton(Virginia),,3 hours 10 mins,322 km +Norfolk(Virginia),Jamestown(Virginia),,1 hour 6 mins,83.2 km +Norfolk(Virginia),Roanoke(Virginia),,4 hours 18 mins,452 km +Roanoke(Virginia),Boston,,10 hours 27 mins,"1,096 km" +Roanoke(Virginia),Lynchburg(Virginia),,1 hour 9 mins,90.7 km +Roanoke(Virginia),Richmond(Virginia),,2 hours 51 mins,304 km +Roanoke(Virginia),Petersburg(Virginia),,2 hours 57 mins,268 km +Roanoke(Virginia),Newport News(Virginia),,3 hours 50 mins,411 km +Roanoke(Virginia),Charlottesville(Virginia),,1 hour 55 mins,195 km +Roanoke(Virginia),Staunton(Virginia),,1 hour 27 mins,140 km +Roanoke(Virginia),Jamestown(Virginia),,3 hours 45 mins,393 km +Roanoke(Virginia),Norfolk(Virginia),,4 hours 19 mins,450 km +Denver,San Diego(California),,15 hours 50 mins,"1,735 km" +Denver,Redding(California),,18 hours 19 mins,"1,977 km" +Denver,Sacramento(California),,17 hours 9 mins,"1,875 km" +Denver,Fresno(California),,16 hours 46 mins,"1,837 km" +Denver,San Luis Obispo(California),,17 hours 22 mins,"1,880 km" +Denver,Oakland(California),,18 hours 23 mins,"2,004 km" +Denver,Santa Barbara(California),,16 hours 21 mins,"1,779 km" +Denver,Stockton(California),,17 hours 52 mins,"1,951 km" +Denver,Santa Rosa(California),,18 hours 43 mins,"2,030 km" +Denver,Bakersfield(California),,15 hours 9 mins,"1,661 km" +Denver,Santa Ana(California),,14 hours 58 mins,"1,636 km" +Denver,Santa Maria(California),,17 hours 9 mins,"1,835 km" +Denver,San Jose(California),,18 hours 56 mins,"2,048 km" +Denver,Burbank(California),,15 hours 1 min,"1,646 km" +Denver,Arcata(California),,21 hours 6 mins,"2,202 km" +Denver,Butte(California),,17 hours 52 mins,"1,914 km" +Denver,Palm Springs(California),,15 hours 3 mins,"1,651 km" +Denver,Los Angeles(California),,15 hours 0 mins,"1,640 km" +Denver,Long Beach(California),,15 hours 10 mins,"1,659 km" +Denver,San Francisco(California),,18 hours 32 mins,"2,014 km" +Denver,Monterey(California),,18 hours 45 mins,"2,015 km" +San Diego(California),Denver,,15 hours 59 mins,"1,736 km" +Redding(California),Denver,,18 hours 13 mins,"1,979 km" +Sacramento(California),Denver,,17 hours 7 mins,"1,876 km" +Fresno(California),Denver,,16 hours 55 mins,"1,838 km" +San Luis Obispo(California),Denver,,17 hours 30 mins,"1,883 km" +Oakland(California),Denver,,18 hours 19 mins,"2,006 km" +Santa Barbara(California),Denver,,16 hours 26 mins,"1,780 km" +Stockton(California),Denver,,17 hours 49 mins,"1,953 km" +Santa Rosa(California),Denver,,18 hours 39 mins,"2,031 km" +Bakersfield(California),Denver,,15 hours 19 mins,"1,663 km" +Santa Ana(California),Denver,,15 hours 2 mins,"1,633 km" +Santa Maria(California),Denver,,17 hours 18 mins,"1,838 km" +San Jose(California),Denver,,18 hours 54 mins,"2,067 km" +Burbank(California),Denver,,15 hours 3 mins,"1,641 km" +Arcata(California),Denver,,20 hours 59 mins,"2,202 km" +Butte(California),Denver,,17 hours 50 mins,"1,900 km" +Palm Springs(California),Denver,,15 hours 8 mins,"1,650 km" +Los Angeles(California),Denver,,15 hours 1 min,"1,637 km" +Long Beach(California),Denver,,15 hours 19 mins,"1,664 km" +San Francisco(California),Denver,,18 hours 26 mins,"2,015 km" +Monterey(California),Denver,,18 hours 54 mins,"2,018 km" +Richmond,Abilene(Texas),,21 hours 17 mins,"2,345 km" +Richmond,Amarillo(Texas),,22 hours 23 mins,"2,493 km" +Richmond,Harlingen(Texas),,1 day 0 hours,"2,659 km" +Richmond,Lubbock(Texas),,23 hours 41 mins,"2,610 km" +Richmond,College Station(Texas),,20 hours 17 mins,"2,186 km" +Richmond,Corpus Christi(Texas),,22 hours 19 mins,"2,465 km" +Richmond,Wichita Falls(Texas),,20 hours 32 mins,"2,290 km" +Richmond,Waco(Texas),,20 hours 4 mins,"2,211 km" +Richmond,San Angelo(Texas),,22 hours 31 mins,"2,469 km" +Richmond,Houston(Texas),,19 hours 11 mins,"2,131 km" +Richmond,San Antonio(Texas),,22 hours 3 mins,"2,445 km" +Richmond,Del Rio(Texas),,1 day 0 hours,"2,692 km" +Richmond,Mission(Texas),,1 day 1 hour,"2,699 km" +Richmond,Beaumont(Texas),,17 hours 57 mins,"1,998 km" +Richmond,Longview(Texas),,17 hours 23 mins,"1,920 km" +Richmond,Midland(Texas),,23 hours 26 mins,"2,586 km" +Richmond,El Paso(Texas),,1 day 4 hours,"3,076 km" +Richmond,Brownsville(Texas),,1 day 0 hours,"2,699 km" +Richmond,Austin(Texas),,21 hours 28 mins,"2,370 km" +Richmond,Dallas(Texas),,18 hours 40 mins,"2,056 km" +Richmond,Killeen(Texas),,20 hours 52 mins,"2,304 km" +Richmond,Laredo(Texas),,1 day 0 hours,"2,637 km" +Richmond,Texarkana(Texas),,16 hours 11 mins,"1,776 km" +Abilene(Texas),Richmond,,21 hours 14 mins,"2,344 km" +Amarillo(Texas),Richmond,,22 hours 21 mins,"2,492 km" +Harlingen(Texas),Richmond,,23 hours 59 mins,"2,657 km" +Lubbock(Texas),Richmond,,23 hours 22 mins,"2,536 km" +College Station(Texas),Richmond,,20 hours 10 mins,"2,179 km" +Corpus Christi(Texas),Richmond,,22 hours 21 mins,"2,468 km" +Wichita Falls(Texas),Richmond,,20 hours 20 mins,"2,203 km" +Waco(Texas),Richmond,,19 hours 59 mins,"2,206 km" +San Angelo(Texas),Richmond,,22 hours 26 mins,"2,469 km" +Houston(Texas),Richmond,,19 hours 9 mins,"2,129 km" +San Antonio(Texas),Richmond,,22 hours 2 mins,"2,443 km" +Del Rio(Texas),Richmond,,1 day 0 hours,"2,690 km" +Mission(Texas),Richmond,,1 day 0 hours,"2,697 km" +Beaumont(Texas),Richmond,,17 hours 57 mins,"1,995 km" +Longview(Texas),Richmond,,17 hours 20 mins,"1,912 km" +Midland(Texas),Richmond,,23 hours 20 mins,"2,584 km" +El Paso(Texas),Richmond,,1 day 4 hours,"3,074 km" +Brownsville(Texas),Richmond,,1 day 0 hours,"2,697 km" +Austin(Texas),Richmond,,21 hours 23 mins,"2,368 km" +Dallas(Texas),Richmond,,18 hours 37 mins,"2,054 km" +Killeen(Texas),Richmond,,20 hours 48 mins,"2,302 km" +Laredo(Texas),Richmond,,1 day 0 hours,"2,635 km" +Texarkana(Texas),Richmond,,16 hours 8 mins,"1,773 km" +Omaha,Alamosa(Colorado),,10 hours 51 mins,"1,126 km" +Omaha,Grand Junction(Colorado),,11 hours 17 mins,"1,253 km" +Omaha,Durango(Colorado),,13 hours 28 mins,"1,404 km" +Omaha,Colorado Springs(Colorado),,8 hours 35 mins,982 km +Omaha,Gunnison(Colorado),,11 hours 2 mins,"1,185 km" +Omaha,Denver(Colorado),,7 hours 40 mins,868 km +Alamosa(Colorado),Omaha,,10 hours 45 mins,"1,125 km" +Grand Junction(Colorado),Omaha,,11 hours 10 mins,"1,253 km" +Durango(Colorado),Omaha,,13 hours 22 mins,"1,404 km" +Colorado Springs(Colorado),Omaha,,8 hours 29 mins,980 km +Gunnison(Colorado),Omaha,,10 hours 56 mins,"1,185 km" +Denver(Colorado),Omaha,,7 hours 37 mins,870 km +Richmond,Pellston(Michigan),,13 hours 0 mins,"1,428 km" +Richmond,Traverse City(Michigan),,13 hours 0 mins,"1,387 km" +Richmond,Alpena(Michigan),,12 hours 58 mins,"1,375 km" +Richmond,Iron Mountain(Michigan),,16 hours 26 mins,"1,758 km" +Richmond,Kalamazoo(Michigan),,10 hours 51 mins,"1,148 km" +Richmond,Saginaw(Michigan),,10 hours 40 mins,"1,141 km" +Richmond,Grand Rapids(Michigan),,11 hours 18 mins,"1,215 km" +Richmond,Lansing(Michigan),,10 hours 20 mins,"1,106 km" +Richmond,Muskegon(Michigan),,11 hours 51 mins,"1,278 km" +Richmond,Hancock(Michigan),,17 hours 37 mins,"1,868 km" +Richmond,Detroit(Michigan),,9 hours 28 mins,"1,004 km" +Richmond,Escanaba(Michigan),,15 hours 30 mins,"1,676 km" +Pellston(Michigan),Richmond,,13 hours 6 mins,"1,431 km" +Traverse City(Michigan),Richmond,,13 hours 7 mins,"1,390 km" +Alpena(Michigan),Richmond,,13 hours 4 mins,"1,376 km" +Iron Mountain(Michigan),Richmond,,16 hours 31 mins,"1,760 km" +Kalamazoo(Michigan),Richmond,,10 hours 55 mins,"1,149 km" +Saginaw(Michigan),Richmond,,10 hours 45 mins,"1,143 km" +Grand Rapids(Michigan),Richmond,,11 hours 22 mins,"1,217 km" +Lansing(Michigan),Richmond,,10 hours 26 mins,"1,109 km" +Muskegon(Michigan),Richmond,,11 hours 57 mins,"1,281 km" +Hancock(Michigan),Richmond,,17 hours 42 mins,"1,871 km" +Detroit(Michigan),Richmond,,9 hours 33 mins,"1,006 km" +Escanaba(Michigan),Richmond,,15 hours 35 mins,"1,678 km" +Denver,Augusta(Georgia),,22 hours 23 mins,"2,492 km" +Denver,Decatur(Georgia),,20 hours 29 mins,"2,267 km" +Denver,Atlanta(Georgia),,20 hours 14 mins,"2,259 km" +Denver,Valdosta(Georgia),,23 hours 31 mins,"2,626 km" +Denver,Savannah(Georgia),,23 hours 49 mins,"2,658 km" +Augusta(Georgia),Denver,,22 hours 27 mins,"2,491 km" +Augusta(Georgia),Decatur(Georgia),,2 hours 19 mins,229 km +Augusta(Georgia),Atlanta(Georgia),,2 hours 12 mins,234 km +Augusta(Georgia),Valdosta(Georgia),,4 hours 14 mins,350 km +Augusta(Georgia),Savannah(Georgia),,2 hours 27 mins,196 km +Decatur(Georgia),Denver,,20 hours 33 mins,"2,264 km" +Decatur(Georgia),Augusta(Georgia),,2 hours 17 mins,228 km +Decatur(Georgia),Atlanta(Georgia),,19 mins,13.0 km +Decatur(Georgia),Valdosta(Georgia),,3 hours 32 mins,369 km +Decatur(Georgia),Savannah(Georgia),,3 hours 50 mins,401 km +Atlanta(Georgia),Denver,,20 hours 16 mins,"2,257 km" +Atlanta(Georgia),Augusta(Georgia),,2 hours 13 mins,233 km +Atlanta(Georgia),Decatur(Georgia),,18 mins,10.0 km +Atlanta(Georgia),Valdosta(Georgia),,3 hours 20 mins,368 km +Atlanta(Georgia),Savannah(Georgia),,3 hours 39 mins,400 km +Valdosta(Georgia),Denver,,23 hours 32 mins,"2,624 km" +Valdosta(Georgia),Augusta(Georgia),,4 hours 15 mins,350 km +Valdosta(Georgia),Decatur(Georgia),,3 hours 30 mins,375 km +Valdosta(Georgia),Atlanta(Georgia),,3 hours 19 mins,367 km +Valdosta(Georgia),Savannah(Georgia),,3 hours 11 mins,298 km +Savannah(Georgia),Denver,,23 hours 53 mins,"2,656 km" +Savannah(Georgia),Augusta(Georgia),,2 hours 28 mins,195 km +Savannah(Georgia),Decatur(Georgia),,3 hours 51 mins,407 km +Savannah(Georgia),Atlanta(Georgia),,3 hours 40 mins,399 km +Savannah(Georgia),Valdosta(Georgia),,3 hours 11 mins,298 km +Gainesville,Charlotte,,6 hours 44 mins,729 km +Charlotte,Gainesville,,6 hours 41 mins,727 km +Ithaca,Greensboro(North Carolina),,9 hours 36 mins,967 km +Ithaca,Wilmington(North Carolina),,10 hours 55 mins,"1,119 km" +Ithaca,New Bern(North Carolina),,10 hours 29 mins,"1,054 km" +Ithaca,Charlotte(North Carolina),,10 hours 35 mins,"1,105 km" +Ithaca,Raleigh(North Carolina),,9 hours 39 mins,980 km +Ithaca,Asheville(North Carolina),,11 hours 18 mins,"1,180 km" +Ithaca,Fayetteville(North Carolina),,10 hours 10 mins,"1,041 km" +Greensboro(North Carolina),Ithaca,,9 hours 34 mins,967 km +Wilmington(North Carolina),Ithaca,,10 hours 47 mins,"1,111 km" +New Bern(North Carolina),Ithaca,,10 hours 20 mins,"1,060 km" +Charlotte(North Carolina),Ithaca,,10 hours 34 mins,"1,104 km" +Raleigh(North Carolina),Ithaca,,9 hours 31 mins,974 km +Asheville(North Carolina),Ithaca,,11 hours 17 mins,"1,180 km" +Fayetteville(North Carolina),Ithaca,,10 hours 3 mins,"1,035 km" +Charleston,Cincinnati,,9 hours 23 mins,"1,000 km" +Cincinnati,Charleston,,9 hours 20 mins,"1,000 km" +Gainesville,Greensboro(North Carolina),,7 hours 54 mins,847 km +Gainesville,Wilmington(North Carolina),,7 hours 29 mins,814 km +Gainesville,New Bern(North Carolina),,8 hours 44 mins,949 km +Gainesville,Charlotte(North Carolina),,6 hours 44 mins,729 km +Gainesville,Raleigh(North Carolina),,7 hours 41 mins,842 km +Gainesville,Asheville(North Carolina),,7 hours 39 mins,824 km +Gainesville,Fayetteville(North Carolina),,6 hours 47 mins,746 km +Greensboro(North Carolina),Gainesville,,7 hours 54 mins,832 km +Wilmington(North Carolina),Gainesville,,7 hours 29 mins,814 km +New Bern(North Carolina),Gainesville,,8 hours 44 mins,947 km +Charlotte(North Carolina),Gainesville,,6 hours 41 mins,727 km +Raleigh(North Carolina),Gainesville,,7 hours 41 mins,842 km +Asheville(North Carolina),Gainesville,,7 hours 35 mins,822 km +Fayetteville(North Carolina),Gainesville,,6 hours 45 mins,743 km +Augusta,Greensboro(North Carolina),,3 hours 50 mins,411 km +Augusta,Wilmington(North Carolina),,4 hours 14 mins,452 km +Augusta,New Bern(North Carolina),,5 hours 29 mins,586 km +Augusta,Charlotte(North Carolina),,2 hours 34 mins,265 km +Augusta,Raleigh(North Carolina),,4 hours 25 mins,479 km +Augusta,Asheville(North Carolina),,3 hours 17 mins,294 km +Augusta,Fayetteville(North Carolina),,3 hours 31 mins,383 km +Greensboro(North Carolina),Augusta,,3 hours 50 mins,409 km +Wilmington(North Carolina),Augusta,,4 hours 16 mins,451 km +New Bern(North Carolina),Augusta,,5 hours 31 mins,585 km +Charlotte(North Carolina),Augusta,,2 hours 33 mins,263 km +Raleigh(North Carolina),Augusta,,4 hours 28 mins,480 km +Asheville(North Carolina),Augusta,,3 hours 18 mins,295 km +Fayetteville(North Carolina),Augusta,,3 hours 32 mins,381 km +Baltimore,Sarasota(Florida),,14 hours 43 mins,"1,609 km" +Baltimore,Fort Myers(Florida),,15 hours 41 mins,"1,715 km" +Baltimore,Gainesville(Florida),,12 hours 3 mins,"1,319 km" +Baltimore,Orlando(Florida),,12 hours 56 mins,"1,437 km" +Baltimore,Daytona Beach(Florida),,12 hours 19 mins,"1,363 km" +Baltimore,Jacksonville(Florida),,10 hours 53 mins,"1,209 km" +Baltimore,Tampa(Florida),,13 hours 56 mins,"1,525 km" +Baltimore,Panama City(Florida),,14 hours 55 mins,"1,629 km" +Baltimore,Key West(Florida),,18 hours 52 mins,"2,019 km" +Baltimore,West Palm Beach(Florida),,14 hours 52 mins,"1,667 km" +Baltimore,Miami(Florida),,15 hours 52 mins,"1,766 km" +Baltimore,Tallahassee(Florida),,13 hours 17 mins,"1,468 km" +Baltimore,Punta Gorda(Florida),,15 hours 15 mins,"1,680 km" +Baltimore,Fort Lauderdale(Florida),,15 hours 29 mins,"1,735 km" +Baltimore,Pensacola(Florida),,15 hours 5 mins,"1,623 km" +Sarasota(Florida),Baltimore,,14 hours 46 mins,"1,602 km" +Fort Myers(Florida),Baltimore,,15 hours 43 mins,"1,708 km" +Gainesville(Florida),Baltimore,,12 hours 8 mins,"1,313 km" +Orlando(Florida),Baltimore,,12 hours 53 mins,"1,426 km" +Daytona Beach(Florida),Baltimore,,12 hours 19 mins,"1,343 km" +Jacksonville(Florida),Baltimore,,10 hours 56 mins,"1,200 km" +Tampa(Florida),Baltimore,,13 hours 58 mins,"1,517 km" +Panama City(Florida),Baltimore,,14 hours 57 mins,"1,623 km" +Key West(Florida),Baltimore,,18 hours 53 mins,"2,009 km" +West Palm Beach(Florida),Baltimore,,14 hours 51 mins,"1,656 km" +Miami(Florida),Baltimore,,15 hours 50 mins,"1,758 km" +Tallahassee(Florida),Baltimore,,13 hours 20 mins,"1,465 km" +Punta Gorda(Florida),Baltimore,,15 hours 18 mins,"1,672 km" +Fort Lauderdale(Florida),Baltimore,,15 hours 29 mins,"1,724 km" +Pensacola(Florida),Baltimore,,15 hours 5 mins,"1,612 km" +Milwaukee,Atlanta,,12 hours 6 mins,"1,307 km" +Atlanta,Milwaukee,,12 hours 6 mins,"1,309 km" +Charlotte,Lake Charles(Louisiana),,13 hours 3 mins,"1,440 km" +Charlotte,Baton Rouge(Louisiana),,11 hours 13 mins,"1,239 km" +Charlotte,New Orleans(Louisiana),,10 hours 28 mins,"1,149 km" +Charlotte,Shreveport(Louisiana),,12 hours 26 mins,"1,352 km" +Lake Charles(Louisiana),Charlotte,,13 hours 3 mins,"1,441 km" +Lake Charles(Louisiana),Baton Rouge(Louisiana),,1 hour 55 mins,204 km +Lake Charles(Louisiana),New Orleans(Louisiana),,3 hours 6 mins,331 km +Lake Charles(Louisiana),Shreveport(Louisiana),,3 hours 14 mins,302 km +Baton Rouge(Louisiana),Charlotte,,11 hours 14 mins,"1,241 km" +Baton Rouge(Louisiana),Lake Charles(Louisiana),,1 hour 55 mins,203 km +Baton Rouge(Louisiana),New Orleans(Louisiana),,1 hour 17 mins,131 km +Baton Rouge(Louisiana),Shreveport(Louisiana),,3 hours 42 mins,397 km +New Orleans(Louisiana),Charlotte,,10 hours 27 mins,"1,148 km" +New Orleans(Louisiana),Lake Charles(Louisiana),,3 hours 7 mins,332 km +New Orleans(Louisiana),Baton Rouge(Louisiana),,1 hour 17 mins,131 km +New Orleans(Louisiana),Shreveport(Louisiana),,4 hours 53 mins,526 km +Shreveport(Louisiana),Charlotte,,12 hours 23 mins,"1,353 km" +Shreveport(Louisiana),Lake Charles(Louisiana),,3 hours 17 mins,302 km +Shreveport(Louisiana),Baton Rouge(Louisiana),,3 hours 45 mins,400 km +Shreveport(Louisiana),New Orleans(Louisiana),,4 hours 55 mins,527 km +South Bend,Abilene(Texas),,16 hours 50 mins,"1,843 km" +South Bend,Amarillo(Texas),,16 hours 20 mins,"1,795 km" +South Bend,Harlingen(Texas),,22 hours 5 mins,"2,344 km" +South Bend,Lubbock(Texas),,17 hours 43 mins,"1,933 km" +South Bend,College Station(Texas),,17 hours 12 mins,"1,790 km" +South Bend,Corpus Christi(Texas),,20 hours 20 mins,"2,150 km" +South Bend,Wichita Falls(Texas),,14 hours 36 mins,"1,599 km" +South Bend,Waco(Texas),,16 hours 29 mins,"1,787 km" +South Bend,San Angelo(Texas),,18 hours 5 mins,"1,977 km" +South Bend,Houston(Texas),,17 hours 12 mins,"1,817 km" +South Bend,San Antonio(Texas),,19 hours 6 mins,"2,072 km" +South Bend,Del Rio(Texas),,20 hours 30 mins,"2,230 km" +South Bend,Mission(Texas),,22 hours 34 mins,"2,457 km" +South Bend,Beaumont(Texas),,16 hours 53 mins,"1,771 km" +South Bend,Longview(Texas),,14 hours 4 mins,"1,492 km" +South Bend,Midland(Texas),,18 hours 41 mins,"2,044 km" +South Bend,El Paso(Texas),,22 hours 56 mins,"2,492 km" +South Bend,Brownsville(Texas),,22 hours 27 mins,"2,384 km" +South Bend,Austin(Texas),,17 hours 54 mins,"1,946 km" +South Bend,Dallas(Texas),,15 hours 6 mins,"1,632 km" +South Bend,Killeen(Texas),,17 hours 18 mins,"1,880 km" +South Bend,Laredo(Texas),,21 hours 22 mins,"2,323 km" +South Bend,Texarkana(Texas),,12 hours 37 mins,"1,352 km" +Abilene(Texas),South Bend,,16 hours 49 mins,"1,841 km" +Amarillo(Texas),South Bend,,16 hours 19 mins,"1,792 km" +Harlingen(Texas),South Bend,,21 hours 59 mins,"2,358 km" +Lubbock(Texas),South Bend,,17 hours 39 mins,"1,931 km" +College Station(Texas),South Bend,,17 hours 6 mins,"1,800 km" +Corpus Christi(Texas),South Bend,,20 hours 20 mins,"2,169 km" +Wichita Falls(Texas),South Bend,,14 hours 34 mins,"1,597 km" +Waco(Texas),South Bend,,16 hours 24 mins,"1,797 km" +San Angelo(Texas),South Bend,,18 hours 3 mins,"1,975 km" +Houston(Texas),South Bend,,17 hours 9 mins,"1,831 km" +San Antonio(Texas),South Bend,,19 hours 0 mins,"2,085 km" +Del Rio(Texas),South Bend,,20 hours 26 mins,"2,228 km" +Mission(Texas),South Bend,,22 hours 27 mins,"2,471 km" +Beaumont(Texas),South Bend,,16 hours 50 mins,"1,785 km" +Longview(Texas),South Bend,,14 hours 1 min,"1,505 km" +Midland(Texas),South Bend,,18 hours 39 mins,"2,044 km" +El Paso(Texas),South Bend,,22 hours 51 mins,"2,488 km" +Brownsville(Texas),South Bend,,22 hours 22 mins,"2,398 km" +Austin(Texas),South Bend,,17 hours 49 mins,"1,959 km" +Dallas(Texas),South Bend,,15 hours 2 mins,"1,645 km" +Killeen(Texas),South Bend,,17 hours 14 mins,"1,893 km" +Laredo(Texas),South Bend,,21 hours 17 mins,"2,336 km" +Texarkana(Texas),South Bend,,12 hours 33 mins,"1,364 km" +Las Vegas,Abilene(Texas),,15 hours 38 mins,"1,706 km" +Las Vegas,Amarillo(Texas),,12 hours 21 mins,"1,386 km" +Las Vegas,Harlingen(Texas),,22 hours 7 mins,"2,468 km" +Las Vegas,Lubbock(Texas),,13 hours 15 mins,"1,440 km" +Las Vegas,College Station(Texas),,19 hours 53 mins,"2,130 km" +Las Vegas,Corpus Christi(Texas),,20 hours 29 mins,"2,293 km" +Las Vegas,Wichita Falls(Texas),,15 hours 38 mins,"1,740 km" +Las Vegas,Waco(Texas),,18 hours 34 mins,"2,007 km" +Las Vegas,San Angelo(Texas),,15 hours 43 mins,"1,740 km" +Las Vegas,Houston(Texas),,21 hours 0 mins,"2,343 km" +Las Vegas,San Antonio(Texas),,18 hours 31 mins,"2,061 km" +Las Vegas,Del Rio(Texas),,17 hours 6 mins,"1,857 km" +Las Vegas,Mission(Texas),,22 hours 7 mins,"2,457 km" +Las Vegas,Beaumont(Texas),,22 hours 0 mins,"2,419 km" +Las Vegas,Longview(Texas),,19 hours 31 mins,"2,168 km" +Las Vegas,Midland(Texas),,14 hours 20 mins,"1,573 km" +Las Vegas,El Paso(Texas),,10 hours 46 mins,"1,175 km" +Las Vegas,Brownsville(Texas),,22 hours 29 mins,"2,508 km" +Las Vegas,Austin(Texas),,19 hours 4 mins,"2,042 km" +Las Vegas,Dallas(Texas),,17 hours 40 mins,"1,967 km" +Las Vegas,Killeen(Texas),,18 hours 25 mins,"1,979 km" +Las Vegas,Laredo(Texas),,20 hours 1 min,"2,147 km" +Las Vegas,Texarkana(Texas),,19 hours 58 mins,"2,177 km" +Abilene(Texas),Las Vegas,,15 hours 37 mins,"1,706 km" +Amarillo(Texas),Las Vegas,,12 hours 20 mins,"1,386 km" +Harlingen(Texas),Las Vegas,,22 hours 2 mins,"2,470 km" +Lubbock(Texas),Las Vegas,,13 hours 14 mins,"1,440 km" +College Station(Texas),Las Vegas,,19 hours 50 mins,"2,133 km" +Corpus Christi(Texas),Las Vegas,,20 hours 26 mins,"2,294 km" +Wichita Falls(Texas),Las Vegas,,15 hours 38 mins,"1,741 km" +Waco(Texas),Las Vegas,,18 hours 34 mins,"2,066 km" +San Angelo(Texas),Las Vegas,,15 hours 40 mins,"1,739 km" +Houston(Texas),Las Vegas,,21 hours 0 mins,"2,344 km" +San Antonio(Texas),Las Vegas,,18 hours 29 mins,"2,061 km" +Del Rio(Texas),Las Vegas,,17 hours 4 mins,"1,858 km" +Mission(Texas),Las Vegas,,22 hours 4 mins,"2,459 km" +Beaumont(Texas),Las Vegas,,22 hours 0 mins,"2,418 km" +Longview(Texas),Las Vegas,,19 hours 30 mins,"2,174 km" +Midland(Texas),Las Vegas,,14 hours 18 mins,"1,573 km" +El Paso(Texas),Las Vegas,,10 hours 46 mins,"1,175 km" +Brownsville(Texas),Las Vegas,,22 hours 26 mins,"2,510 km" +Austin(Texas),Las Vegas,,19 hours 1 min,"2,071 km" +Dallas(Texas),Las Vegas,,17 hours 40 mins,"1,967 km" +Killeen(Texas),Las Vegas,,18 hours 25 mins,"1,979 km" +Laredo(Texas),Las Vegas,,20 hours 0 mins,"2,147 km" +Texarkana(Texas),Las Vegas,,20 hours 6 mins,"2,190 km" +Harrisburg,Detroit,,7 hours 17 mins,776 km +Detroit,Harrisburg,,7 hours 18 mins,777 km +Louisville,Pellston(Michigan),,8 hours 24 mins,939 km +Louisville,Traverse City(Michigan),,7 hours 49 mins,822 km +Louisville,Alpena(Michigan),,8 hours 48 mins,935 km +Louisville,Iron Mountain(Michigan),,9 hours 15 mins,974 km +Louisville,Kalamazoo(Michigan),,5 hours 17 mins,544 km +Louisville,Saginaw(Michigan),,6 hours 29 mins,701 km +Louisville,Grand Rapids(Michigan),,5 hours 43 mins,593 km +Louisville,Lansing(Michigan),,5 hours 25 mins,583 km +Louisville,Muskegon(Michigan),,5 hours 59 mins,608 km +Louisville,Hancock(Michigan),,11 hours 11 mins,"1,154 km" +Louisville,Detroit(Michigan),,5 hours 27 mins,581 km +Louisville,Escanaba(Michigan),,9 hours 26 mins,993 km +Pellston(Michigan),Louisville,,8 hours 21 mins,941 km +Traverse City(Michigan),Louisville,,7 hours 50 mins,827 km +Alpena(Michigan),Louisville,,8 hours 44 mins,933 km +Iron Mountain(Michigan),Louisville,,9 hours 13 mins,976 km +Kalamazoo(Michigan),Louisville,,5 hours 17 mins,569 km +Saginaw(Michigan),Louisville,,6 hours 25 mins,700 km +Grand Rapids(Michigan),Louisville,,5 hours 41 mins,599 km +Lansing(Michigan),Louisville,,5 hours 24 mins,588 km +Muskegon(Michigan),Louisville,,5 hours 58 mins,611 km +Hancock(Michigan),Louisville,,11 hours 10 mins,"1,157 km" +Detroit(Michigan),Louisville,,5 hours 25 mins,582 km +Escanaba(Michigan),Louisville,,9 hours 25 mins,995 km +Omaha,Seattle(Washington),,1 day 0 hours,"2,663 km" +Omaha,Wenatchee(Washington),,22 hours 36 mins,"2,487 km" +Omaha,Pasco(Washington),,21 hours 47 mins,"2,441 km" +Omaha,Yakima(Washington),,22 hours 44 mins,"2,540 km" +Omaha,Walla Walla(Washington),,21 hours 20 mins,"2,382 km" +Omaha,Everett(Washington),,1 day 0 hours,"2,698 km" +Omaha,Spokane(Washington),,20 hours 2 mins,"2,216 km" +Seattle(Washington),Omaha,,1 day 0 hours,"2,662 km" +Seattle(Washington),Wenatchee(Washington),,2 hours 33 mins,238 km +Seattle(Washington),Pasco(Washington),,3 hours 29 mins,347 km +Seattle(Washington),Yakima(Washington),,2 hours 14 mins,229 km +Seattle(Washington),Walla Walla(Washington),,4 hours 12 mins,420 km +Seattle(Washington),Everett(Washington),,34 mins,46.0 km +Seattle(Washington),Spokane(Washington),,4 hours 10 mins,449 km +Wenatchee(Washington),Omaha,,22 hours 33 mins,"2,487 km" +Wenatchee(Washington),Seattle(Washington),,2 hours 31 mins,238 km +Wenatchee(Washington),Pasco(Washington),,2 hours 18 mins,221 km +Wenatchee(Washington),Yakima(Washington),,1 hour 55 mins,172 km +Wenatchee(Washington),Walla Walla(Washington),,3 hours 1 min,292 km +Wenatchee(Washington),Everett(Washington),,2 hours 31 mins,198 km +Wenatchee(Washington),Spokane(Washington),,2 hours 41 mins,273 km +Pasco(Washington),Omaha,,21 hours 44 mins,"2,443 km" +Pasco(Washington),Seattle(Washington),,3 hours 29 mins,365 km +Pasco(Washington),Wenatchee(Washington),,2 hours 20 mins,220 km +Pasco(Washington),Yakima(Washington),,1 hour 21 mins,137 km +Pasco(Washington),Walla Walla(Washington),,50 mins,74.0 km +Pasco(Washington),Everett(Washington),,3 hours 51 mins,400 km +Pasco(Washington),Spokane(Washington),,2 hours 4 mins,218 km +Yakima(Washington),Omaha,,22 hours 39 mins,"2,541 km" +Yakima(Washington),Seattle(Washington),,2 hours 14 mins,229 km +Yakima(Washington),Wenatchee(Washington),,1 hour 55 mins,182 km +Yakima(Washington),Pasco(Washington),,1 hour 21 mins,137 km +Yakima(Washington),Walla Walla(Washington),,2 hours 4 mins,210 km +Yakima(Washington),Everett(Washington),,2 hours 36 mins,264 km +Yakima(Washington),Spokane(Washington),,3 hours 2 mins,325 km +Walla Walla(Washington),Omaha,,21 hours 18 mins,"2,383 km" +Walla Walla(Washington),Seattle(Washington),,4 hours 11 mins,438 km +Walla Walla(Washington),Wenatchee(Washington),,3 hours 2 mins,291 km +Walla Walla(Washington),Pasco(Washington),,49 mins,74.2 km +Walla Walla(Washington),Yakima(Washington),,2 hours 3 mins,210 km +Walla Walla(Washington),Everett(Washington),,4 hours 33 mins,473 km +Walla Walla(Washington),Spokane(Washington),,2 hours 44 mins,246 km +Everett(Washington),Omaha,,1 day 0 hours,"2,697 km" +Everett(Washington),Seattle(Washington),,34 mins,45.6 km +Everett(Washington),Wenatchee(Washington),,2 hours 28 mins,197 km +Everett(Washington),Pasco(Washington),,3 hours 50 mins,381 km +Everett(Washington),Yakima(Washington),,2 hours 35 mins,264 km +Everett(Washington),Walla Walla(Washington),,4 hours 33 mins,454 km +Everett(Washington),Spokane(Washington),,4 hours 31 mins,484 km +Spokane(Washington),Omaha,,20 hours 0 mins,"2,216 km" +Spokane(Washington),Seattle(Washington),,4 hours 11 mins,449 km +Spokane(Washington),Wenatchee(Washington),,2 hours 41 mins,272 km +Spokane(Washington),Pasco(Washington),,2 hours 3 mins,218 km +Spokane(Washington),Yakima(Washington),,3 hours 4 mins,327 km +Spokane(Washington),Walla Walla(Washington),,2 hours 44 mins,246 km +Spokane(Washington),Everett(Washington),,4 hours 32 mins,484 km +Tucson,San Diego(California),,5 hours 53 mins,656 km +Tucson,Redding(California),,15 hours 15 mins,"1,654 km" +Tucson,Sacramento(California),,12 hours 54 mins,"1,395 km" +Tucson,Fresno(California),,10 hours 27 mins,"1,129 km" +Tucson,San Luis Obispo(California),,10 hours 10 mins,"1,084 km" +Tucson,Oakland(California),,12 hours 42 mins,"1,373 km" +Tucson,Santa Barbara(California),,8 hours 40 mins,933 km +Tucson,Stockton(California),,12 hours 12 mins,"1,319 km" +Tucson,Santa Rosa(California),,13 hours 34 mins,"1,465 km" +Tucson,Bakersfield(California),,8 hours 53 mins,956 km +Tucson,Santa Ana(California),,7 hours 3 mins,781 km +Tucson,Santa Maria(California),,9 hours 47 mins,"1,035 km" +Tucson,San Jose(California),,12 hours 21 mins,"1,323 km" +Tucson,Burbank(California),,7 hours 21 mins,800 km +Tucson,Arcata(California),,17 hours 20 mins,"1,825 km" +Tucson,Butte(California),,14 hours 20 mins,"1,528 km" +Tucson,Palm Springs(California),,5 hours 40 mins,612 km +Tucson,Los Angeles(California),,7 hours 15 mins,782 km +Tucson,Long Beach(California),,7 hours 23 mins,797 km +Tucson,San Francisco(California),,12 hours 55 mins,"1,391 km" +Tucson,Monterey(California),,12 hours 10 mins,"1,289 km" +San Diego(California),Tucson,,5 hours 56 mins,653 km +Redding(California),Tucson,,15 hours 12 mins,"1,652 km" +Sacramento(California),Tucson,,12 hours 52 mins,"1,394 km" +Fresno(California),Tucson,,10 hours 25 mins,"1,127 km" +San Luis Obispo(California),Tucson,,10 hours 12 mins,"1,084 km" +Oakland(California),Tucson,,12 hours 40 mins,"1,372 km" +Santa Barbara(California),Tucson,,8 hours 41 mins,932 km +Stockton(California),Tucson,,12 hours 8 mins,"1,319 km" +Santa Rosa(California),Tucson,,13 hours 33 mins,"1,465 km" +Bakersfield(California),Tucson,,8 hours 52 mins,956 km +Santa Ana(California),Tucson,,7 hours 1 min,755 km +Santa Maria(California),Tucson,,9 hours 46 mins,"1,034 km" +San Jose(California),Tucson,,12 hours 18 mins,"1,322 km" +Burbank(California),Tucson,,7 hours 17 mins,793 km +Arcata(California),Tucson,,17 hours 18 mins,"1,826 km" +Butte(California),Tucson,,14 hours 18 mins,"1,527 km" +Palm Springs(California),Tucson,,5 hours 40 mins,610 km +Los Angeles(California),Tucson,,7 hours 10 mins,777 km +Long Beach(California),Tucson,,7 hours 19 mins,789 km +San Francisco(California),Tucson,,12 hours 50 mins,"1,390 km" +Monterey(California),Tucson,,12 hours 8 mins,"1,289 km" +Newark,San Francisco,,1 day 18 hours,"4,654 km" +San Francisco,Newark,,1 day 18 hours,"4,662 km" +Minneapolis,Jacksonville,,21 hours 14 mins,"2,370 km" +Jacksonville,Minneapolis,,21 hours 20 mins,"2,377 km" +Kansas City,Flagstaff(Arizona),,16 hours 47 mins,"1,783 km" +Kansas City,Yuma(Arizona),,21 hours 12 mins,"2,232 km" +Kansas City,Phoenix(Arizona),,18 hours 33 mins,"1,938 km" +Kansas City,Prescott(Arizona),,18 hours 18 mins,"1,934 km" +Kansas City,Tucson(Arizona),,18 hours 29 mins,"1,931 km" +Flagstaff(Arizona),Kansas City,,16 hours 41 mins,"1,783 km" +Flagstaff(Arizona),Yuma(Arizona),,4 hours 46 mins,504 km +Flagstaff(Arizona),Phoenix(Arizona),,2 hours 18 mins,233 km +Flagstaff(Arizona),Prescott(Arizona),,1 hour 44 mins,153 km +Flagstaff(Arizona),Tucson(Arizona),,3 hours 50 mins,411 km +Yuma(Arizona),Kansas City,,21 hours 10 mins,"2,231 km" +Yuma(Arizona),Flagstaff(Arizona),,4 hours 47 mins,512 km +Yuma(Arizona),Phoenix(Arizona),,2 hours 52 mins,298 km +Yuma(Arizona),Prescott(Arizona),,3 hours 46 mins,348 km +Yuma(Arizona),Tucson(Arizona),,3 hours 26 mins,379 km +Phoenix(Arizona),Kansas City,,18 hours 31 mins,"1,939 km" +Phoenix(Arizona),Flagstaff(Arizona),,2 hours 15 mins,232 km +Phoenix(Arizona),Yuma(Arizona),,2 hours 49 mins,297 km +Phoenix(Arizona),Prescott(Arizona),,1 hour 46 mins,160 km +Phoenix(Arizona),Tucson(Arizona),,1 hour 44 mins,181 km +Prescott(Arizona),Kansas City,,18 hours 12 mins,"1,935 km" +Prescott(Arizona),Flagstaff(Arizona),,1 hour 42 mins,154 km +Prescott(Arizona),Yuma(Arizona),,3 hours 48 mins,347 km +Prescott(Arizona),Phoenix(Arizona),,1 hour 45 mins,162 km +Prescott(Arizona),Tucson(Arizona),,3 hours 18 mins,340 km +Tucson(Arizona),Kansas City,,18 hours 30 mins,"1,922 km" +Tucson(Arizona),Flagstaff(Arizona),,3 hours 47 mins,412 km +Tucson(Arizona),Yuma(Arizona),,3 hours 23 mins,380 km +Tucson(Arizona),Phoenix(Arizona),,1 hour 41 mins,180 km +Tucson(Arizona),Prescott(Arizona),,3 hours 19 mins,340 km +Santa Ana,Abilene(Texas),,18 hours 2 mins,"1,995 km" +Santa Ana,Amarillo(Texas),,15 hours 32 mins,"1,723 km" +Santa Ana,Harlingen(Texas),,22 hours 55 mins,"2,561 km" +Santa Ana,Lubbock(Texas),,16 hours 27 mins,"1,776 km" +Santa Ana,College Station(Texas),,21 hours 40 mins,"2,354 km" +Santa Ana,Corpus Christi(Texas),,21 hours 17 mins,"2,386 km" +Santa Ana,Wichita Falls(Texas),,18 hours 49 mins,"2,077 km" +Santa Ana,Waco(Texas),,20 hours 41 mins,"2,256 km" +Santa Ana,San Angelo(Texas),,17 hours 26 mins,"1,917 km" +Santa Ana,Houston(Texas),,22 hours 8 mins,"2,468 km" +Santa Ana,San Antonio(Texas),,19 hours 19 mins,"2,153 km" +Santa Ana,Del Rio(Texas),,17 hours 54 mins,"1,949 km" +Santa Ana,Mission(Texas),,22 hours 55 mins,"2,549 km" +Santa Ana,Beaumont(Texas),,23 hours 23 mins,"2,602 km" +Santa Ana,Longview(Texas),,22 hours 23 mins,"2,493 km" +Santa Ana,Midland(Texas),,15 hours 57 mins,"1,758 km" +Santa Ana,El Paso(Texas),,11 hours 34 mins,"1,267 km" +Santa Ana,Brownsville(Texas),,23 hours 17 mins,"2,600 km" +Santa Ana,Austin(Texas),,20 hours 9 mins,"2,193 km" +Santa Ana,Dallas(Texas),,20 hours 36 mins,"2,288 km" +Santa Ana,Killeen(Texas),,19 hours 58 mins,"2,186 km" +Santa Ana,Laredo(Texas),,20 hours 49 mins,"2,239 km" +Santa Ana,Texarkana(Texas),,23 hours 12 mins,"2,574 km" +Abilene(Texas),Santa Ana,,18 hours 4 mins,"2,021 km" +Amarillo(Texas),Santa Ana,,15 hours 34 mins,"1,726 km" +Harlingen(Texas),Santa Ana,,22 hours 52 mins,"2,588 km" +Lubbock(Texas),Santa Ana,,16 hours 28 mins,"1,780 km" +College Station(Texas),Santa Ana,,21 hours 41 mins,"2,386 km" +Corpus Christi(Texas),Santa Ana,,21 hours 16 mins,"2,412 km" +Wichita Falls(Texas),Santa Ana,,18 hours 52 mins,"2,081 km" +Waco(Texas),Santa Ana,,20 hours 43 mins,"2,282 km" +San Angelo(Texas),Santa Ana,,17 hours 26 mins,"1,942 km" +Houston(Texas),Santa Ana,,22 hours 8 mins,"2,494 km" +San Antonio(Texas),Santa Ana,,19 hours 20 mins,"2,179 km" +Del Rio(Texas),Santa Ana,,17 hours 55 mins,"1,976 km" +Mission(Texas),Santa Ana,,22 hours 54 mins,"2,577 km" +Beaumont(Texas),Santa Ana,,23 hours 26 mins,"2,628 km" +Longview(Texas),Santa Ana,,22 hours 26 mins,"2,519 km" +Midland(Texas),Santa Ana,,15 hours 57 mins,"1,783 km" +El Paso(Texas),Santa Ana,,11 hours 36 mins,"1,293 km" +Brownsville(Texas),Santa Ana,,23 hours 16 mins,"2,628 km" +Austin(Texas),Santa Ana,,20 hours 9 mins,"2,220 km" +Dallas(Texas),Santa Ana,,20 hours 38 mins,"2,314 km" +Killeen(Texas),Santa Ana,,19 hours 59 mins,"2,213 km" +Laredo(Texas),Santa Ana,,20 hours 51 mins,"2,266 km" +Texarkana(Texas),Santa Ana,,23 hours 16 mins,"2,602 km" +Baltimore,San Diego(California),,1 day 15 hours,"4,235 km" +Baltimore,Redding(California),,1 day 17 hours,"4,491 km" +Baltimore,Sacramento(California),,1 day 16 hours,"4,389 km" +Baltimore,Fresno(California),,1 day 16 hours,"4,458 km" +Baltimore,San Luis Obispo(California),,1 day 17 hours,"4,502 km" +Baltimore,Oakland(California),,1 day 17 hours,"4,519 km" +Baltimore,Santa Barbara(California),,1 day 16 hours,"4,401 km" +Baltimore,Stockton(California),,1 day 17 hours,"4,465 km" +Baltimore,Santa Rosa(California),,1 day 17 hours,"4,544 km" +Baltimore,Bakersfield(California),,1 day 15 hours,"4,282 km" +Baltimore,Santa Ana(California),,1 day 15 hours,"4,258 km" +Baltimore,Santa Maria(California),,1 day 17 hours,"4,457 km" +Baltimore,San Jose(California),,1 day 18 hours,"4,581 km" +Baltimore,Burbank(California),,1 day 15 hours,"4,268 km" +Baltimore,Arcata(California),,1 day 20 hours,"4,716 km" +Baltimore,Butte(California),,1 day 17 hours,"4,428 km" +Baltimore,Palm Springs(California),,1 day 14 hours,"4,094 km" +Baltimore,Los Angeles(California),,1 day 15 hours,"4,262 km" +Baltimore,Long Beach(California),,1 day 15 hours,"4,280 km" +Baltimore,San Francisco(California),,1 day 17 hours,"4,528 km" +Baltimore,Monterey(California),,1 day 18 hours,"4,636 km" +San Diego(California),Baltimore,,1 day 15 hours,"4,229 km" +Redding(California),Baltimore,,1 day 17 hours,"4,501 km" +Sacramento(California),Baltimore,,1 day 16 hours,"4,398 km" +Fresno(California),Baltimore,,1 day 17 hours,"4,457 km" +San Luis Obispo(California),Baltimore,,1 day 17 hours,"4,502 km" +Oakland(California),Baltimore,,1 day 17 hours,"4,528 km" +Santa Barbara(California),Baltimore,,1 day 16 hours,"4,399 km" +Stockton(California),Baltimore,,1 day 16 hours,"4,475 km" +Santa Rosa(California),Baltimore,,1 day 17 hours,"4,553 km" +Bakersfield(California),Baltimore,,1 day 15 hours,"4,282 km" +Santa Ana(California),Baltimore,,1 day 15 hours,"4,252 km" +Santa Maria(California),Baltimore,,1 day 17 hours,"4,457 km" +San Jose(California),Baltimore,,1 day 18 hours,"4,589 km" +Burbank(California),Baltimore,,1 day 15 hours,"4,260 km" +Arcata(California),Baltimore,,1 day 20 hours,"4,724 km" +Butte(California),Baltimore,,1 day 17 hours,"4,423 km" +Palm Springs(California),Baltimore,,1 day 14 hours,"4,091 km" +Los Angeles(California),Baltimore,,1 day 15 hours,"4,256 km" +Long Beach(California),Baltimore,,1 day 15 hours,"4,283 km" +San Francisco(California),Baltimore,,1 day 17 hours,"4,538 km" +Monterey(California),Baltimore,,1 day 19 hours,"4,637 km" +Atlanta,Rochester,,14 hours 3 mins,"1,548 km" +Rochester,Atlanta,,14 hours 6 mins,"1,548 km" +Missoula,Abilene(Texas),,23 hours 1 min,"2,562 km" +Missoula,Amarillo(Texas),,18 hours 51 mins,"2,102 km" +Missoula,Harlingen(Texas),,1 day 6 hours,"3,326 km" +Missoula,Lubbock(Texas),,20 hours 37 mins,"2,298 km" +Missoula,College Station(Texas),,1 day 3 hours,"2,925 km" +Missoula,Corpus Christi(Texas),,1 day 4 hours,"3,151 km" +Missoula,Wichita Falls(Texas),,22 hours 16 mins,"2,462 km" +Missoula,Waco(Texas),,1 day 1 hour,"2,790 km" +Missoula,San Angelo(Texas),,23 hours 25 mins,"2,593 km" +Missoula,Houston(Texas),,1 day 4 hours,"3,065 km" +Missoula,San Antonio(Texas),,1 day 2 hours,"2,919 km" +Missoula,Del Rio(Texas),,1 day 2 hours,"2,844 km" +Missoula,Mission(Texas),,1 day 6 hours,"3,315 km" +Missoula,Beaumont(Texas),,1 day 5 hours,"3,140 km" +Missoula,Longview(Texas),,1 day 2 hours,"2,889 km" +Missoula,Midland(Texas),,22 hours 23 mins,"2,488 km" +Missoula,El Paso(Texas),,20 hours 31 mins,"2,230 km" +Missoula,Brownsville(Texas),,1 day 6 hours,"3,366 km" +Missoula,Austin(Texas),,1 day 2 hours,"2,898 km" +Missoula,Dallas(Texas),,1 day 0 hours,"2,689 km" +Missoula,Killeen(Texas),,1 day 2 hours,"2,835 km" +Missoula,Laredo(Texas),,1 day 4 hours,"3,108 km" +Missoula,Texarkana(Texas),,1 day 2 hours,"2,977 km" +Abilene(Texas),Missoula,,23 hours 6 mins,"2,568 km" +Amarillo(Texas),Missoula,,18 hours 58 mins,"2,102 km" +Harlingen(Texas),Missoula,,1 day 6 hours,"3,332 km" +Lubbock(Texas),Missoula,,20 hours 44 mins,"2,319 km" +College Station(Texas),Missoula,,1 day 3 hours,"2,957 km" +Corpus Christi(Texas),Missoula,,1 day 4 hours,"3,157 km" +Wichita Falls(Texas),Missoula,,22 hours 24 mins,"2,495 km" +Waco(Texas),Missoula,,1 day 1 hour,"2,819 km" +San Angelo(Texas),Missoula,,23 hours 31 mins,"2,633 km" +Houston(Texas),Missoula,,1 day 4 hours,"3,097 km" +San Antonio(Texas),Missoula,,1 day 2 hours,"2,924 km" +Del Rio(Texas),Missoula,,1 day 2 hours,"2,876 km" +Mission(Texas),Missoula,,1 day 6 hours,"3,322 km" +Beaumont(Texas),Missoula,,1 day 5 hours,"3,172 km" +Longview(Texas),Missoula,,1 day 2 hours,"2,928 km" +Midland(Texas),Missoula,,22 hours 29 mins,"2,509 km" +El Paso(Texas),Missoula,,20 hours 29 mins,"2,231 km" +Brownsville(Texas),Missoula,,1 day 6 hours,"3,372 km" +Austin(Texas),Missoula,,1 day 3 hours,"2,905 km" +Dallas(Texas),Missoula,,1 day 0 hours,"2,721 km" +Killeen(Texas),Missoula,,1 day 2 hours,"2,842 km" +Laredo(Texas),Missoula,,1 day 5 hours,"3,115 km" +Texarkana(Texas),Missoula,,1 day 3 hours,"2,984 km" +Los Angeles,Detroit,,1 day 9 hours,"3,672 km" +Detroit,Los Angeles,,1 day 9 hours,"3,675 km" +Boston,State College(Pennsylvania),,6 hours 53 mins,707 km +Boston,Johnstown(Pennsylvania),,8 hours 5 mins,833 km +Boston,Harrisburg(Pennsylvania),,6 hours 11 mins,628 km +Boston,Erie(Pennsylvania),,8 hours 10 mins,874 km +Boston,Pittsburgh(Pennsylvania),,9 hours 5 mins,921 km +Boston,Latrobe(Pennsylvania),,8 hours 32 mins,879 km +Boston,Philadelphia(Pennsylvania),,5 hours 2 mins,497 km +Boston,Lewisburg(Pennsylvania),,5 hours 57 mins,605 km +Boston,Scranton(Pennsylvania),,4 hours 38 mins,471 km +State College(Pennsylvania),Boston,,6 hours 51 mins,707 km +Johnstown(Pennsylvania),Boston,,8 hours 3 mins,833 km +Harrisburg(Pennsylvania),Boston,,6 hours 11 mins,629 km +Erie(Pennsylvania),Boston,,8 hours 11 mins,874 km +Pittsburgh(Pennsylvania),Boston,,9 hours 2 mins,921 km +Latrobe(Pennsylvania),Boston,,8 hours 32 mins,876 km +Philadelphia(Pennsylvania),Boston,,5 hours 2 mins,494 km +Lewisburg(Pennsylvania),Boston,,5 hours 56 mins,604 km +Scranton(Pennsylvania),Boston,,4 hours 38 mins,471 km +Seattle,San Diego(California),,19 hours 14 mins,"2,020 km" +Seattle,Redding(California),,9 hours 14 mins,956 km +Seattle,Sacramento(California),,11 hours 36 mins,"1,211 km" +Seattle,Fresno(California),,14 hours 12 mins,"1,483 km" +Seattle,San Luis Obispo(California),,15 hours 34 mins,"1,641 km" +Seattle,Oakland(California),,12 hours 19 mins,"1,290 km" +Seattle,Santa Barbara(California),,17 hours 8 mins,"1,792 km" +Seattle,Stockton(California),,12 hours 18 mins,"1,287 km" +Seattle,Santa Rosa(California),,12 hours 41 mins,"1,262 km" +Seattle,Bakersfield(California),,15 hours 48 mins,"1,656 km" +Seattle,Santa Ana(California),,17 hours 58 mins,"1,878 km" +Seattle,Santa Maria(California),,16 hours 4 mins,"1,692 km" +Seattle,San Jose(California),,12 hours 57 mins,"1,353 km" +Seattle,Burbank(California),,17 hours 8 mins,"1,812 km" +Seattle,Arcata(California),,9 hours 40 mins,929 km +Seattle,Butte(California),,10 hours 52 mins,"1,107 km" +Seattle,Palm Springs(California),,18 hours 53 mins,"1,997 km" +Seattle,Los Angeles(California),,17 hours 21 mins,"1,829 km" +Seattle,Long Beach(California),,17 hours 41 mins,"1,864 km" +Seattle,San Francisco(California),,12 hours 28 mins,"1,300 km" +Seattle,Monterey(California),,13 hours 59 mins,"1,460 km" +San Diego(California),Seattle,,19 hours 17 mins,"2,020 km" +Redding(California),Seattle,,9 hours 14 mins,956 km +Sacramento(California),Seattle,,11 hours 35 mins,"1,211 km" +Fresno(California),Seattle,,14 hours 11 mins,"1,488 km" +San Luis Obispo(California),Seattle,,15 hours 29 mins,"1,640 km" +Oakland(California),Seattle,,12 hours 18 mins,"1,290 km" +Santa Barbara(California),Seattle,,17 hours 2 mins,"1,792 km" +Stockton(California),Seattle,,12 hours 17 mins,"1,287 km" +Santa Rosa(California),Seattle,,12 hours 39 mins,"1,263 km" +Bakersfield(California),Seattle,,15 hours 46 mins,"1,661 km" +Santa Ana(California),Seattle,,18 hours 0 mins,"1,878 km" +Santa Maria(California),Seattle,,15 hours 59 mins,"1,692 km" +San Jose(California),Seattle,,12 hours 53 mins,"1,351 km" +Burbank(California),Seattle,,17 hours 9 mins,"1,811 km" +Arcata(California),Seattle,,9 hours 36 mins,927 km +Butte(California),Seattle,,10 hours 50 mins,"1,101 km" +Palm Springs(California),Seattle,,18 hours 56 mins,"1,997 km" +Los Angeles(California),Seattle,,17 hours 22 mins,"1,826 km" +Long Beach(California),Seattle,,17 hours 45 mins,"1,864 km" +San Francisco(California),Seattle,,12 hours 25 mins,"1,300 km" +Monterey(California),Seattle,,13 hours 54 mins,"1,458 km" +El Paso,Seattle(Washington),,1 day 1 hour,"2,721 km" +El Paso,Wenatchee(Washington),,1 day 0 hours,"2,600 km" +El Paso,Pasco(Washington),,22 hours 15 mins,"2,394 km" +El Paso,Yakima(Washington),,23 hours 12 mins,"2,493 km" +El Paso,Walla Walla(Washington),,21 hours 48 mins,"2,335 km" +El Paso,Everett(Washington),,1 day 2 hours,"2,756 km" +El Paso,Spokane(Washington),,23 hours 28 mins,"2,547 km" +Seattle(Washington),El Paso,,1 day 1 hour,"2,723 km" +Wenatchee(Washington),El Paso,,1 day 0 hours,"2,602 km" +Pasco(Washington),El Paso,,22 hours 19 mins,"2,396 km" +Yakima(Washington),El Paso,,23 hours 15 mins,"2,495 km" +Walla Walla(Washington),El Paso,,21 hours 53 mins,"2,336 km" +Everett(Washington),El Paso,,1 day 2 hours,"2,758 km" +Spokane(Washington),El Paso,,23 hours 32 mins,"2,548 km" +Providence,Buffalo(New York),,6 hours 49 mins,723 km +Providence,Manhattan(New York),,3 hours 7 mins,282 km +Providence,Niagara Falls(New York),,7 hours 1 min,742 km +Providence,Islip(New York),,3 hours 37 mins,225 km +Providence,New York(New York),,3 hours 14 mins,291 km +Providence,Watertown(New York),,5 hours 27 mins,535 km +Providence,Newburgh(New York),,3 hours 6 mins,306 km +Providence,Syracuse(New York),,4 hours 42 mins,492 km +Providence,Plattsburgh(New York),,4 hours 57 mins,516 km +Providence,Ogdensburg(New York),,6 hours 26 mins,616 km +Providence,Ithaca(New York),,5 hours 27 mins,525 km +Providence,Elmira(New York),,5 hours 28 mins,571 km +Providence,White Plains(New York),,2 hours 34 mins,251 km +Providence,Albany(New York),,2 hours 40 mins,263 km +Providence,Binghamton(New York),,4 hours 40 mins,483 km +Providence,Rochester(New York),,5 hours 52 mins,622 km +Buffalo(New York),Providence,,6 hours 47 mins,726 km +Manhattan(New York),Providence,,3 hours 2 mins,287 km +Niagara Falls(New York),Providence,,7 hours 0 mins,742 km +Islip(New York),Providence,,3 hours 32 mins,225 km +New York(New York),Providence,,3 hours 8 mins,292 km +Watertown(New York),Providence,,5 hours 25 mins,536 km +Newburgh(New York),Providence,,3 hours 3 mins,305 km +Syracuse(New York),Providence,,4 hours 40 mins,492 km +Plattsburgh(New York),Providence,,4 hours 57 mins,518 km +Ogdensburg(New York),Providence,,6 hours 24 mins,616 km +Ithaca(New York),Providence,,5 hours 26 mins,525 km +Elmira(New York),Providence,,5 hours 26 mins,570 km +White Plains(New York),Providence,,2 hours 32 mins,252 km +Albany(New York),Providence,,2 hours 38 mins,263 km +Binghamton(New York),Providence,,4 hours 38 mins,482 km +Rochester(New York),Providence,,5 hours 50 mins,621 km +Las Vegas,Minot,,20 hours 48 mins,"2,266 km" +Minot,Las Vegas,,20 hours 50 mins,"2,269 km" +Washington,Buffalo(New York),,6 hours 54 mins,611 km +Washington,Manhattan(New York),,4 hours 1 min,368 km +Washington,Niagara Falls(New York),,7 hours 15 mins,642 km +Washington,Islip(New York),,4 hours 41 mins,439 km +Washington,New York(New York),,3 hours 52 mins,362 km +Washington,Watertown(New York),,7 hours 1 min,710 km +Washington,Newburgh(New York),,4 hours 41 mins,454 km +Washington,Syracuse(New York),,5 hours 58 mins,597 km +Washington,Plattsburgh(New York),,8 hours 8 mins,842 km +Washington,Ogdensburg(New York),,8 hours 0 mins,803 km +Washington,Ithaca(New York),,5 hours 43 mins,536 km +Washington,Elmira(New York),,5 hours 5 mins,464 km +Washington,White Plains(New York),,4 hours 19 mins,412 km +Washington,Albany(New York),,5 hours 48 mins,584 km +Washington,Binghamton(New York),,4 hours 58 mins,485 km +Washington,Rochester(New York),,6 hours 21 mins,625 km +Buffalo(New York),Washington,,7 hours 0 mins,661 km +Manhattan(New York),Washington,,4 hours 0 mins,369 km +Niagara Falls(New York),Washington,,7 hours 21 mins,698 km +Islip(New York),Washington,,4 hours 41 mins,438 km +New York(New York),Washington,,3 hours 51 mins,364 km +Watertown(New York),Washington,,7 hours 3 mins,713 km +Newburgh(New York),Washington,,4 hours 44 mins,458 km +Syracuse(New York),Washington,,5 hours 59 mins,600 km +Plattsburgh(New York),Washington,,8 hours 8 mins,846 km +Ogdensburg(New York),Washington,,8 hours 2 mins,805 km +Ithaca(New York),Washington,,5 hours 44 mins,539 km +Elmira(New York),Washington,,5 hours 7 mins,468 km +White Plains(New York),Washington,,4 hours 17 mins,413 km +Albany(New York),Washington,,5 hours 50 mins,588 km +Binghamton(New York),Washington,,4 hours 59 mins,487 km +Rochester(New York),Washington,,6 hours 23 mins,629 km +Ontario,Honolulu,,, +Honolulu,Ontario,,, +San Juan,Abilene(Texas),,, +San Juan,Amarillo(Texas),,, +San Juan,Harlingen(Texas),,, +San Juan,Lubbock(Texas),,, +San Juan,College Station(Texas),,, +San Juan,Corpus Christi(Texas),,, +San Juan,Wichita Falls(Texas),,, +San Juan,Waco(Texas),,, +San Juan,San Angelo(Texas),,, +San Juan,Houston(Texas),,, +San Juan,San Antonio(Texas),,, +San Juan,Del Rio(Texas),,, +San Juan,Mission(Texas),,, +San Juan,Beaumont(Texas),,, +San Juan,Longview(Texas),,, +San Juan,Midland(Texas),,, +San Juan,El Paso(Texas),,, +San Juan,Brownsville(Texas),,, +San Juan,Austin(Texas),,, +San Juan,Dallas(Texas),,, +San Juan,Killeen(Texas),,, +San Juan,Laredo(Texas),,, +San Juan,Texarkana(Texas),,, +Abilene(Texas),San Juan,,, +Amarillo(Texas),San Juan,,, +Harlingen(Texas),San Juan,,, +Lubbock(Texas),San Juan,,, +College Station(Texas),San Juan,,, +Corpus Christi(Texas),San Juan,,, +Wichita Falls(Texas),San Juan,,, +Waco(Texas),San Juan,,, +San Angelo(Texas),San Juan,,, +Houston(Texas),San Juan,,, +San Antonio(Texas),San Juan,,, +Del Rio(Texas),San Juan,,, +Mission(Texas),San Juan,,, +Beaumont(Texas),San Juan,,, +Longview(Texas),San Juan,,, +Midland(Texas),San Juan,,, +El Paso(Texas),San Juan,,, +Brownsville(Texas),San Juan,,, +Austin(Texas),San Juan,,, +Dallas(Texas),San Juan,,, +Killeen(Texas),San Juan,,, +Laredo(Texas),San Juan,,, +Texarkana(Texas),San Juan,,, +Detroit,San Diego,,1 day 10 hours,"3,770 km" +San Diego,Detroit,,1 day 10 hours,"3,772 km" +Myrtle Beach,Fort Lauderdale,,10 hours 4 mins,"1,102 km" +Fort Lauderdale,Myrtle Beach,,10 hours 3 mins,"1,099 km" +Sacramento,Minneapolis,,1 day 3 hours,"3,027 km" +Minneapolis,Sacramento,,1 day 4 hours,"3,036 km" +Houston,Reno,,1 day 4 hours,"3,049 km" +Reno,Houston,,1 day 4 hours,"3,049 km" +Cedar Rapids,Alamosa(Colorado),,14 hours 32 mins,"1,540 km" +Cedar Rapids,Grand Junction(Colorado),,14 hours 58 mins,"1,667 km" +Cedar Rapids,Durango(Colorado),,17 hours 9 mins,"1,817 km" +Cedar Rapids,Colorado Springs(Colorado),,12 hours 16 mins,"1,396 km" +Cedar Rapids,Gunnison(Colorado),,14 hours 42 mins,"1,598 km" +Cedar Rapids,Denver(Colorado),,11 hours 20 mins,"1,281 km" +Alamosa(Colorado),Cedar Rapids,,14 hours 27 mins,"1,541 km" +Grand Junction(Colorado),Cedar Rapids,,14 hours 53 mins,"1,668 km" +Durango(Colorado),Cedar Rapids,,17 hours 4 mins,"1,819 km" +Colorado Springs(Colorado),Cedar Rapids,,12 hours 11 mins,"1,395 km" +Gunnison(Colorado),Cedar Rapids,,14 hours 38 mins,"1,600 km" +Denver(Colorado),Cedar Rapids,,11 hours 19 mins,"1,286 km" +Valparaiso,Martha's Vineyard(Massachusetts),,, +Valparaiso,Hyannis(Massachusetts),,, +Valparaiso,Boston(Massachusetts),,, +Valparaiso,Nantucket(Massachusetts),,, +Martha's Vineyard(Massachusetts),Valparaiso,,, +Martha's Vineyard(Massachusetts),Hyannis(Massachusetts),,2 hours 7 mins,49.5 km +Martha's Vineyard(Massachusetts),Boston(Massachusetts),,2 hours 42 mins,156 km +Martha's Vineyard(Massachusetts),Nantucket(Massachusetts),,2 hours 36 mins,61.3 km +Hyannis(Massachusetts),Valparaiso,,, +Hyannis(Massachusetts),Martha's Vineyard(Massachusetts),,1 hour 58 mins,63.6 km +Hyannis(Massachusetts),Boston(Massachusetts),,1 hour 21 mins,114 km +Hyannis(Massachusetts),Nantucket(Massachusetts),,2 hours 17 mins,47.0 km +Boston(Massachusetts),Valparaiso,,, +Boston(Massachusetts),Martha's Vineyard(Massachusetts),,2 hours 34 mins,146 km +Boston(Massachusetts),Hyannis(Massachusetts),,1 hour 19 mins,114 km +Boston(Massachusetts),Nantucket(Massachusetts),,3 hours 37 mins,161 km +Nantucket(Massachusetts),Valparaiso,,, +Nantucket(Massachusetts),Martha's Vineyard(Massachusetts),,2 hours 35 mins,60.8 km +Nantucket(Massachusetts),Hyannis(Massachusetts),,2 hours 19 mins,47.0 km +Nantucket(Massachusetts),Boston(Massachusetts),,3 hours 38 mins,165 km +Houston,Buffalo(New York),,22 hours 6 mins,"2,388 km" +Houston,Manhattan(New York),,1 day 0 hours,"2,627 km" +Houston,Niagara Falls(New York),,22 hours 27 mins,"2,418 km" +Houston,Islip(New York),,1 day 1 hour,"2,705 km" +Houston,New York(New York),,23 hours 58 mins,"2,621 km" +Houston,Watertown(New York),,1 day 1 hour,"2,716 km" +Houston,Newburgh(New York),,1 day 0 hours,"2,688 km" +Houston,Syracuse(New York),,1 day 0 hours,"2,614 km" +Houston,Plattsburgh(New York),,1 day 4 hours,"3,076 km" +Houston,Ogdensburg(New York),,1 day 2 hours,"2,810 km" +Houston,Ithaca(New York),,1 day 0 hours,"2,607 km" +Houston,Elmira(New York),,23 hours 46 mins,"2,569 km" +Houston,White Plains(New York),,1 day 0 hours,"2,673 km" +Houston,Albany(New York),,1 day 2 hours,"2,819 km" +Houston,Binghamton(New York),,1 day 0 hours,"2,640 km" +Houston,Rochester(New York),,23 hours 4 mins,"2,493 km" +Buffalo(New York),Houston,,22 hours 10 mins,"2,390 km" +Manhattan(New York),Houston,,1 day 0 hours,"2,626 km" +Niagara Falls(New York),Houston,,22 hours 32 mins,"2,421 km" +Islip(New York),Houston,,1 day 1 hour,"2,704 km" +New York(New York),Houston,,23 hours 57 mins,"2,618 km" +Watertown(New York),Houston,,1 day 1 hour,"2,718 km" +Newburgh(New York),Houston,,1 day 0 hours,"2,687 km" +Syracuse(New York),Houston,,1 day 0 hours,"2,616 km" +Plattsburgh(New York),Houston,,1 day 4 hours,"3,076 km" +Ogdensburg(New York),Houston,,1 day 2 hours,"2,811 km" +Ithaca(New York),Houston,,1 day 0 hours,"2,609 km" +Elmira(New York),Houston,,23 hours 50 mins,"2,572 km" +White Plains(New York),Houston,,1 day 0 hours,"2,671 km" +Albany(New York),Houston,,1 day 2 hours,"2,818 km" +Binghamton(New York),Houston,,1 day 0 hours,"2,639 km" +Rochester(New York),Houston,,23 hours 9 mins,"2,495 km" +South Bend,Atlanta,,10 hours 14 mins,"1,087 km" +Atlanta,South Bend,,10 hours 14 mins,"1,088 km" +Sun Valley,San Diego(California),,14 hours 9 mins,"1,461 km" +Sun Valley,Redding(California),,11 hours 16 mins,"1,085 km" +Sun Valley,Sacramento(California),,10 hours 24 mins,"1,074 km" +Sun Valley,Fresno(California),,12 hours 57 mins,"1,342 km" +Sun Valley,San Luis Obispo(California),,14 hours 51 mins,"1,545 km" +Sun Valley,Oakland(California),,11 hours 38 mins,"1,204 km" +Sun Valley,Santa Barbara(California),,14 hours 39 mins,"1,505 km" +Sun Valley,Stockton(California),,11 hours 7 mins,"1,150 km" +Sun Valley,Santa Rosa(California),,11 hours 57 mins,"1,229 km" +Sun Valley,Bakersfield(California),,13 hours 28 mins,"1,361 km" +Sun Valley,Santa Ana(California),,13 hours 17 mins,"1,362 km" +Sun Valley,Santa Maria(California),,15 hours 21 mins,"1,595 km" +Sun Valley,San Jose(California),,12 hours 16 mins,"1,266 km" +Sun Valley,Burbank(California),,13 hours 20 mins,"1,372 km" +Sun Valley,Arcata(California),,13 hours 52 mins,"1,294 km" +Sun Valley,Butte(California),,11 hours 6 mins,"1,113 km" +Sun Valley,Palm Springs(California),,13 hours 22 mins,"1,377 km" +Sun Valley,Los Angeles(California),,13 hours 19 mins,"1,366 km" +Sun Valley,Long Beach(California),,13 hours 29 mins,"1,384 km" +Sun Valley,San Francisco(California),,11 hours 47 mins,"1,213 km" +Sun Valley,Monterey(California),,13 hours 17 mins,"1,374 km" +San Diego(California),Sun Valley,,14 hours 17 mins,"1,463 km" +Redding(California),Sun Valley,,11 hours 13 mins,"1,087 km" +Sacramento(California),Sun Valley,,10 hours 24 mins,"1,074 km" +Fresno(California),Sun Valley,,12 hours 54 mins,"1,342 km" +San Luis Obispo(California),Sun Valley,,14 hours 46 mins,"1,553 km" +Oakland(California),Sun Valley,,11 hours 36 mins,"1,204 km" +Santa Barbara(California),Sun Valley,,14 hours 44 mins,"1,507 km" +Stockton(California),Sun Valley,,11 hours 6 mins,"1,151 km" +Santa Rosa(California),Sun Valley,,11 hours 56 mins,"1,229 km" +Bakersfield(California),Sun Valley,,13 hours 25 mins,"1,362 km" +Santa Ana(California),Sun Valley,,13 hours 20 mins,"1,360 km" +Santa Maria(California),Sun Valley,,15 hours 16 mins,"1,606 km" +San Jose(California),Sun Valley,,12 hours 10 mins,"1,265 km" +Burbank(California),Sun Valley,,13 hours 21 mins,"1,367 km" +Arcata(California),Sun Valley,,13 hours 49 mins,"1,293 km" +Butte(California),Sun Valley,,11 hours 7 mins,"1,099 km" +Palm Springs(California),Sun Valley,,13 hours 26 mins,"1,377 km" +Los Angeles(California),Sun Valley,,13 hours 19 mins,"1,364 km" +Long Beach(California),Sun Valley,,13 hours 38 mins,"1,391 km" +San Francisco(California),Sun Valley,,11 hours 43 mins,"1,214 km" +Monterey(California),Sun Valley,,13 hours 12 mins,"1,372 km" +Fort Lauderdale,Norfolk,,13 hours 26 mins,"1,510 km" +Norfolk,Fort Lauderdale,,13 hours 30 mins,"1,513 km" +Valparaiso,Belleville,,, +Belleville,Valparaiso,,, +Colorado Springs,Moline(Illinois),,12 hours 49 mins,"1,467 km" +Colorado Springs,Belleville(Illinois),,12 hours 26 mins,"1,367 km" +Colorado Springs,Bloomington(Illinois),,14 hours 0 mins,"1,545 km" +Colorado Springs,Champaign(Illinois),,14 hours 14 mins,"1,575 km" +Colorado Springs,Chicago(Illinois),,15 hours 17 mins,"1,727 km" +Colorado Springs,Rockford(Illinois),,14 hours 35 mins,"1,655 km" +Colorado Springs,Peoria(Illinois),,14 hours 2 mins,"1,556 km" +Moline(Illinois),Colorado Springs,,12 hours 55 mins,"1,469 km" +Belleville(Illinois),Colorado Springs,,12 hours 31 mins,"1,366 km" +Bloomington(Illinois),Colorado Springs,,14 hours 6 mins,"1,546 km" +Champaign(Illinois),Colorado Springs,,14 hours 21 mins,"1,577 km" +Chicago(Illinois),Colorado Springs,,15 hours 18 mins,"1,727 km" +Rockford(Illinois),Colorado Springs,,14 hours 38 mins,"1,653 km" +Peoria(Illinois),Colorado Springs,,14 hours 9 mins,"1,506 km" +Punta Gorda,Moline(Illinois),,19 hours 16 mins,"2,150 km" +Punta Gorda,Belleville(Illinois),,15 hours 46 mins,"1,762 km" +Punta Gorda,Bloomington(Illinois),,17 hours 32 mins,"1,966 km" +Punta Gorda,Champaign(Illinois),,16 hours 49 mins,"1,889 km" +Punta Gorda,Chicago(Illinois),,18 hours 27 mins,"2,042 km" +Punta Gorda,Rockford(Illinois),,19 hours 30 mins,"2,183 km" +Punta Gorda,Peoria(Illinois),,17 hours 53 mins,"2,000 km" +Moline(Illinois),Punta Gorda,,19 hours 18 mins,"2,147 km" +Belleville(Illinois),Punta Gorda,,15 hours 47 mins,"1,758 km" +Bloomington(Illinois),Punta Gorda,,17 hours 31 mins,"1,961 km" +Champaign(Illinois),Punta Gorda,,16 hours 52 mins,"1,888 km" +Chicago(Illinois),Punta Gorda,,18 hours 27 mins,"2,040 km" +Rockford(Illinois),Punta Gorda,,19 hours 26 mins,"2,176 km" +Peoria(Illinois),Punta Gorda,,17 hours 56 mins,"1,998 km" +Cedar Rapids,Abilene(Texas),,13 hours 48 mins,"1,545 km" +Cedar Rapids,Amarillo(Texas),,13 hours 19 mins,"1,497 km" +Cedar Rapids,Harlingen(Texas),,19 hours 48 mins,"2,222 km" +Cedar Rapids,Lubbock(Texas),,14 hours 41 mins,"1,635 km" +Cedar Rapids,College Station(Texas),,15 hours 0 mins,"1,675 km" +Cedar Rapids,Corpus Christi(Texas),,18 hours 9 mins,"2,046 km" +Cedar Rapids,Wichita Falls(Texas),,11 hours 34 mins,"1,301 km" +Cedar Rapids,Waco(Texas),,13 hours 42 mins,"1,540 km" +Cedar Rapids,San Angelo(Texas),,15 hours 3 mins,"1,679 km" +Cedar Rapids,Houston(Texas),,15 hours 46 mins,"1,705 km" +Cedar Rapids,San Antonio(Texas),,16 hours 18 mins,"1,825 km" +Cedar Rapids,Del Rio(Texas),,17 hours 29 mins,"1,932 km" +Cedar Rapids,Mission(Texas),,19 hours 47 mins,"2,210 km" +Cedar Rapids,Beaumont(Texas),,15 hours 46 mins,"1,637 km" +Cedar Rapids,Longview(Texas),,12 hours 57 mins,"1,359 km" +Cedar Rapids,Midland(Texas),,15 hours 39 mins,"1,746 km" +Cedar Rapids,El Paso(Texas),,19 hours 21 mins,"2,026 km" +Cedar Rapids,Brownsville(Texas),,20 hours 9 mins,"2,261 km" +Cedar Rapids,Austin(Texas),,15 hours 7 mins,"1,698 km" +Cedar Rapids,Dallas(Texas),,12 hours 26 mins,"1,324 km" +Cedar Rapids,Killeen(Texas),,14 hours 31 mins,"1,633 km" +Cedar Rapids,Laredo(Texas),,18 hours 35 mins,"2,075 km" +Cedar Rapids,Texarkana(Texas),,11 hours 30 mins,"1,218 km" +Abilene(Texas),Cedar Rapids,,13 hours 46 mins,"1,542 km" +Amarillo(Texas),Cedar Rapids,,13 hours 16 mins,"1,493 km" +Harlingen(Texas),Cedar Rapids,,19 hours 41 mins,"2,218 km" +Lubbock(Texas),Cedar Rapids,,14 hours 36 mins,"1,632 km" +College Station(Texas),Cedar Rapids,,14 hours 57 mins,"1,672 km" +Corpus Christi(Texas),Cedar Rapids,,18 hours 5 mins,"2,042 km" +Wichita Falls(Texas),Cedar Rapids,,11 hours 31 mins,"1,298 km" +Waco(Texas),Cedar Rapids,,13 hours 40 mins,"1,534 km" +San Angelo(Texas),Cedar Rapids,,15 hours 0 mins,"1,676 km" +Houston(Texas),Cedar Rapids,,15 hours 44 mins,"1,709 km" +San Antonio(Texas),Cedar Rapids,,16 hours 15 mins,"1,821 km" +Del Rio(Texas),Cedar Rapids,,17 hours 24 mins,"1,929 km" +Mission(Texas),Cedar Rapids,,19 hours 42 mins,"2,207 km" +Beaumont(Texas),Cedar Rapids,,15 hours 49 mins,"1,642 km" +Longview(Texas),Cedar Rapids,,13 hours 0 mins,"1,363 km" +Midland(Texas),Cedar Rapids,,15 hours 36 mins,"1,745 km" +El Paso(Texas),Cedar Rapids,,19 hours 16 mins,"2,023 km" +Brownsville(Texas),Cedar Rapids,,20 hours 4 mins,"2,258 km" +Austin(Texas),Cedar Rapids,,15 hours 5 mins,"1,695 km" +Dallas(Texas),Cedar Rapids,,12 hours 26 mins,"1,328 km" +Killeen(Texas),Cedar Rapids,,14 hours 29 mins,"1,630 km" +Laredo(Texas),Cedar Rapids,,18 hours 33 mins,"2,073 km" +Texarkana(Texas),Cedar Rapids,,11 hours 33 mins,"1,221 km" +Sioux Falls,Sarasota(Florida),,1 day 0 hours,"2,689 km" +Sioux Falls,Fort Myers(Florida),,1 day 1 hour,"2,794 km" +Sioux Falls,Gainesville(Florida),,21 hours 45 mins,"2,405 km" +Sioux Falls,Orlando(Florida),,23 hours 9 mins,"2,577 km" +Sioux Falls,Daytona Beach(Florida),,23 hours 13 mins,"2,577 km" +Sioux Falls,Jacksonville(Florida),,21 hours 50 mins,"2,427 km" +Sioux Falls,Tampa(Florida),,23 hours 21 mins,"2,605 km" +Sioux Falls,Panama City(Florida),,20 hours 31 mins,"2,116 km" +Sioux Falls,Key West(Florida),,1 day 5 hours,"3,191 km" +Sioux Falls,West Palm Beach(Florida),,1 day 1 hour,"2,832 km" +Sioux Falls,Miami(Florida),,1 day 2 hours,"2,937 km" +Sioux Falls,Tallahassee(Florida),,20 hours 48 mins,"2,171 km" +Sioux Falls,Punta Gorda(Florida),,1 day 1 hour,"2,759 km" +Sioux Falls,Fort Lauderdale(Florida),,1 day 2 hours,"2,900 km" +Sioux Falls,Pensacola(Florida),,19 hours 14 mins,"2,016 km" +Sarasota(Florida),Sioux Falls,,1 day 0 hours,"2,690 km" +Fort Myers(Florida),Sioux Falls,,1 day 1 hour,"2,796 km" +Gainesville(Florida),Sioux Falls,,21 hours 40 mins,"2,404 km" +Orlando(Florida),Sioux Falls,,23 hours 2 mins,"2,576 km" +Daytona Beach(Florida),Sioux Falls,,23 hours 8 mins,"2,567 km" +Jacksonville(Florida),Sioux Falls,,21 hours 48 mins,"2,428 km" +Tampa(Florida),Sioux Falls,,23 hours 16 mins,"2,605 km" +Panama City(Florida),Sioux Falls,,20 hours 30 mins,"2,126 km" +Key West(Florida),Sioux Falls,,1 day 5 hours,"3,191 km" +West Palm Beach(Florida),Sioux Falls,,1 day 1 hour,"2,834 km" +Miami(Florida),Sioux Falls,,1 day 2 hours,"2,940 km" +Tallahassee(Florida),Sioux Falls,,20 hours 47 mins,"2,181 km" +Punta Gorda(Florida),Sioux Falls,,1 day 1 hour,"2,760 km" +Fort Lauderdale(Florida),Sioux Falls,,1 day 2 hours,"2,902 km" +Pensacola(Florida),Sioux Falls,,19 hours 10 mins,"2,030 km" +Dallas,Buffalo(New York),,20 hours 0 mins,"2,203 km" +Dallas,Manhattan(New York),,23 hours 4 mins,"2,498 km" +Dallas,Niagara Falls(New York),,20 hours 21 mins,"2,233 km" +Dallas,Islip(New York),,23 hours 45 mins,"2,576 km" +Dallas,New York(New York),,22 hours 55 mins,"2,491 km" +Dallas,Watertown(New York),,23 hours 0 mins,"2,531 km" +Dallas,Newburgh(New York),,23 hours 24 mins,"2,559 km" +Dallas,Syracuse(New York),,22 hours 3 mins,"2,429 km" +Dallas,Plattsburgh(New York),,1 day 2 hours,"2,790 km" +Dallas,Ogdensburg(New York),,23 hours 58 mins,"2,624 km" +Dallas,Ithaca(New York),,22 hours 11 mins,"2,422 km" +Dallas,Elmira(New York),,21 hours 40 mins,"2,384 km" +Dallas,White Plains(New York),,23 hours 14 mins,"2,544 km" +Dallas,Albany(New York),,1 day 0 hours,"2,655 km" +Dallas,Binghamton(New York),,22 hours 28 mins,"2,472 km" +Dallas,Rochester(New York),,20 hours 58 mins,"2,307 km" +Buffalo(New York),Dallas,,20 hours 5 mins,"2,205 km" +Manhattan(New York),Dallas,,23 hours 5 mins,"2,498 km" +Niagara Falls(New York),Dallas,,20 hours 26 mins,"2,236 km" +Islip(New York),Dallas,,23 hours 47 mins,"2,575 km" +New York(New York),Dallas,,22 hours 55 mins,"2,490 km" +Watertown(New York),Dallas,,23 hours 5 mins,"2,534 km" +Newburgh(New York),Dallas,,23 hours 27 mins,"2,559 km" +Syracuse(New York),Dallas,,22 hours 8 mins,"2,431 km" +Plattsburgh(New York),Dallas,,1 day 2 hours,"2,794 km" +Ogdensburg(New York),Dallas,,1 day 0 hours,"2,626 km" +Ithaca(New York),Dallas,,22 hours 14 mins,"2,424 km" +Elmira(New York),Dallas,,21 hours 45 mins,"2,388 km" +White Plains(New York),Dallas,,23 hours 17 mins,"2,543 km" +Albany(New York),Dallas,,1 day 0 hours,"2,656 km" +Binghamton(New York),Dallas,,22 hours 34 mins,"2,475 km" +Rochester(New York),Dallas,,21 hours 3 mins,"2,310 km" +Charlottesville,Augusta(Georgia),,6 hours 42 mins,698 km +Charlottesville,Decatur(Georgia),,7 hours 53 mins,815 km +Charlottesville,Atlanta(Georgia),,7 hours 53 mins,823 km +Charlottesville,Valdosta(Georgia),,10 hours 40 mins,"1,151 km" +Charlottesville,Savannah(Georgia),,7 hours 50 mins,867 km +Augusta(Georgia),Charlottesville,,6 hours 43 mins,700 km +Decatur(Georgia),Charlottesville,,7 hours 53 mins,815 km +Atlanta(Georgia),Charlottesville,,7 hours 52 mins,822 km +Valdosta(Georgia),Charlottesville,,10 hours 39 mins,"1,150 km" +Savannah(Georgia),Charlottesville,,7 hours 47 mins,864 km +El Paso,Augusta(Georgia),,22 hours 22 mins,"2,511 km" +El Paso,Decatur(Georgia),,20 hours 30 mins,"2,290 km" +El Paso,Atlanta(Georgia),,20 hours 16 mins,"2,279 km" +El Paso,Valdosta(Georgia),,22 hours 3 mins,"2,455 km" +El Paso,Savannah(Georgia),,23 hours 48 mins,"2,677 km" +Augusta(Georgia),El Paso,,22 hours 27 mins,"2,517 km" +Decatur(Georgia),El Paso,,20 hours 34 mins,"2,296 km" +Atlanta(Georgia),El Paso,,20 hours 19 mins,"2,284 km" +Valdosta(Georgia),El Paso,,22 hours 1 min,"2,455 km" +Savannah(Georgia),El Paso,,23 hours 53 mins,"2,682 km" +Honolulu,Sacramento,,, +Sacramento,Honolulu,,, +Atlanta,Bozeman,,1 day 4 hours,"3,155 km" +Bozeman,Atlanta,,1 day 4 hours,"3,153 km" +Asheville,Minneapolis,,15 hours 47 mins,"1,711 km" +Minneapolis,Asheville,,15 hours 43 mins,"1,710 km" +Oakland,Eugene,,8 hours 3 mins,840 km +Eugene,Oakland,,8 hours 4 mins,843 km +Grand Rapids,Abilene(Texas),,17 hours 54 mins,"1,984 km" +Grand Rapids,Amarillo(Texas),,17 hours 25 mins,"1,937 km" +Grand Rapids,Harlingen(Texas),,23 hours 10 mins,"2,486 km" +Grand Rapids,Lubbock(Texas),,18 hours 47 mins,"2,075 km" +Grand Rapids,College Station(Texas),,18 hours 16 mins,"1,931 km" +Grand Rapids,Corpus Christi(Texas),,21 hours 24 mins,"2,292 km" +Grand Rapids,Wichita Falls(Texas),,15 hours 40 mins,"1,740 km" +Grand Rapids,Waco(Texas),,17 hours 34 mins,"1,929 km" +Grand Rapids,San Angelo(Texas),,19 hours 9 mins,"2,119 km" +Grand Rapids,Houston(Texas),,18 hours 16 mins,"1,958 km" +Grand Rapids,San Antonio(Texas),,20 hours 10 mins,"2,214 km" +Grand Rapids,Del Rio(Texas),,21 hours 35 mins,"2,372 km" +Grand Rapids,Mission(Texas),,23 hours 39 mins,"2,599 km" +Grand Rapids,Beaumont(Texas),,17 hours 57 mins,"1,912 km" +Grand Rapids,Longview(Texas),,15 hours 8 mins,"1,634 km" +Grand Rapids,Midland(Texas),,19 hours 45 mins,"2,186 km" +Grand Rapids,El Paso(Texas),,1 day 0 hours,"2,634 km" +Grand Rapids,Brownsville(Texas),,23 hours 31 mins,"2,526 km" +Grand Rapids,Austin(Texas),,18 hours 58 mins,"2,088 km" +Grand Rapids,Dallas(Texas),,16 hours 11 mins,"1,773 km" +Grand Rapids,Killeen(Texas),,18 hours 22 mins,"2,022 km" +Grand Rapids,Laredo(Texas),,22 hours 26 mins,"2,465 km" +Grand Rapids,Texarkana(Texas),,13 hours 41 mins,"1,494 km" +Abilene(Texas),Grand Rapids,,17 hours 55 mins,"1,981 km" +Amarillo(Texas),Grand Rapids,,17 hours 25 mins,"1,932 km" +Harlingen(Texas),Grand Rapids,,23 hours 5 mins,"2,498 km" +Lubbock(Texas),Grand Rapids,,18 hours 45 mins,"2,071 km" +College Station(Texas),Grand Rapids,,18 hours 12 mins,"1,940 km" +Corpus Christi(Texas),Grand Rapids,,21 hours 27 mins,"2,309 km" +Wichita Falls(Texas),Grand Rapids,,15 hours 40 mins,"1,737 km" +Waco(Texas),Grand Rapids,,17 hours 31 mins,"1,937 km" +San Angelo(Texas),Grand Rapids,,19 hours 10 mins,"2,115 km" +Houston(Texas),Grand Rapids,,18 hours 15 mins,"1,970 km" +San Antonio(Texas),Grand Rapids,,20 hours 6 mins,"2,225 km" +Del Rio(Texas),Grand Rapids,,21 hours 33 mins,"2,368 km" +Mission(Texas),Grand Rapids,,23 hours 33 mins,"2,611 km" +Beaumont(Texas),Grand Rapids,,17 hours 56 mins,"1,925 km" +Longview(Texas),Grand Rapids,,15 hours 7 mins,"1,645 km" +Midland(Texas),Grand Rapids,,19 hours 45 mins,"2,184 km" +El Paso(Texas),Grand Rapids,,23 hours 58 mins,"2,628 km" +Brownsville(Texas),Grand Rapids,,23 hours 29 mins,"2,538 km" +Austin(Texas),Grand Rapids,,18 hours 55 mins,"2,099 km" +Dallas(Texas),Grand Rapids,,16 hours 9 mins,"1,785 km" +Killeen(Texas),Grand Rapids,,18 hours 20 mins,"2,033 km" +Laredo(Texas),Grand Rapids,,22 hours 24 mins,"2,476 km" +Texarkana(Texas),Grand Rapids,,13 hours 40 mins,"1,504 km" +Boston,Bemidji(Minnesota),,1 day 0 hours,"2,582 km" +Boston,Minneapolis(Minnesota),,20 hours 39 mins,"2,238 km" +Boston,Duluth(Minnesota),,21 hours 37 mins,"2,334 km" +Boston,Brainerd(Minnesota),,22 hours 35 mins,"2,439 km" +Boston,Gustavus(Minnesota),,21 hours 6 mins,"2,285 km" +Boston,St. Cloud(Minnesota),,21 hours 35 mins,"2,341 km" +Boston,Hibbing(Minnesota),,22 hours 53 mins,"2,453 km" +Boston,International Falls(Minnesota),,1 day 0 hours,"2,595 km" +Bemidji(Minnesota),Boston,,1 day 0 hours,"2,593 km" +Bemidji(Minnesota),Minneapolis(Minnesota),,3 hours 34 mins,347 km +Bemidji(Minnesota),Duluth(Minnesota),,2 hours 44 mins,239 km +Bemidji(Minnesota),Brainerd(Minnesota),,1 hour 49 mins,154 km +Bemidji(Minnesota),Gustavus(Minnesota),,4 hours 25 mins,404 km +Bemidji(Minnesota),St. Cloud(Minnesota),,2 hours 32 mins,245 km +Bemidji(Minnesota),Hibbing(Minnesota),,1 hour 56 mins,166 km +Bemidji(Minnesota),International Falls(Minnesota),,1 hour 58 mins,181 km +Minneapolis(Minnesota),Boston,,20 hours 36 mins,"2,246 km" +Minneapolis(Minnesota),Bemidji(Minnesota),,3 hours 37 mins,347 km +Minneapolis(Minnesota),Duluth(Minnesota),,2 hours 16 mins,248 km +Minneapolis(Minnesota),Brainerd(Minnesota),,2 hours 6 mins,203 km +Minneapolis(Minnesota),Gustavus(Minnesota),,1 hour 8 mins,110 km +Minneapolis(Minnesota),St. Cloud(Minnesota),,1 hour 6 mins,105 km +Minneapolis(Minnesota),Hibbing(Minnesota),,3 hours 9 mins,312 km +Minneapolis(Minnesota),International Falls(Minnesota),,4 hours 35 mins,476 km +Duluth(Minnesota),Boston,,21 hours 36 mins,"2,344 km" +Duluth(Minnesota),Bemidji(Minnesota),,2 hours 45 mins,239 km +Duluth(Minnesota),Minneapolis(Minnesota),,2 hours 18 mins,249 km +Duluth(Minnesota),Brainerd(Minnesota),,2 hours 3 mins,184 km +Duluth(Minnesota),Gustavus(Minnesota),,3 hours 19 mins,357 km +Duluth(Minnesota),St. Cloud(Minnesota),,2 hours 22 mins,232 km +Duluth(Minnesota),Hibbing(Minnesota),,1 hour 23 mins,121 km +Duluth(Minnesota),International Falls(Minnesota),,2 hours 47 mins,263 km +Brainerd(Minnesota),Boston,,22 hours 34 mins,"2,450 km" +Brainerd(Minnesota),Bemidji(Minnesota),,1 hour 50 mins,154 km +Brainerd(Minnesota),Minneapolis(Minnesota),,2 hours 5 mins,204 km +Brainerd(Minnesota),Duluth(Minnesota),,2 hours 3 mins,184 km +Brainerd(Minnesota),Gustavus(Minnesota),,2 hours 55 mins,260 km +Brainerd(Minnesota),St. Cloud(Minnesota),,1 hour 2 mins,102 km +Brainerd(Minnesota),Hibbing(Minnesota),,2 hours 8 mins,187 km +Brainerd(Minnesota),International Falls(Minnesota),,3 hours 17 mins,298 km +Gustavus(Minnesota),Boston,,21 hours 4 mins,"2,293 km" +Gustavus(Minnesota),Bemidji(Minnesota),,4 hours 25 mins,404 km +Gustavus(Minnesota),Minneapolis(Minnesota),,1 hour 11 mins,113 km +Gustavus(Minnesota),Duluth(Minnesota),,3 hours 21 mins,358 km +Gustavus(Minnesota),Brainerd(Minnesota),,2 hours 54 mins,260 km +Gustavus(Minnesota),St. Cloud(Minnesota),,1 hour 56 mins,157 km +Gustavus(Minnesota),Hibbing(Minnesota),,4 hours 13 mins,421 km +Gustavus(Minnesota),International Falls(Minnesota),,5 hours 39 mins,585 km +St. Cloud(Minnesota),Boston,,21 hours 34 mins,"2,352 km" +St. Cloud(Minnesota),Bemidji(Minnesota),,2 hours 34 mins,246 km +St. Cloud(Minnesota),Minneapolis(Minnesota),,1 hour 5 mins,106 km +St. Cloud(Minnesota),Duluth(Minnesota),,2 hours 22 mins,232 km +St. Cloud(Minnesota),Brainerd(Minnesota),,1 hour 2 mins,102 km +St. Cloud(Minnesota),Gustavus(Minnesota),,1 hour 56 mins,157 km +St. Cloud(Minnesota),Hibbing(Minnesota),,2 hours 58 mins,272 km +St. Cloud(Minnesota),International Falls(Minnesota),,4 hours 18 mins,401 km +Hibbing(Minnesota),Boston,,22 hours 52 mins,"2,464 km" +Hibbing(Minnesota),Bemidji(Minnesota),,1 hour 55 mins,166 km +Hibbing(Minnesota),Minneapolis(Minnesota),,3 hours 10 mins,311 km +Hibbing(Minnesota),Duluth(Minnesota),,1 hour 22 mins,122 km +Hibbing(Minnesota),Brainerd(Minnesota),,2 hours 8 mins,186 km +Hibbing(Minnesota),Gustavus(Minnesota),,4 hours 11 mins,420 km +Hibbing(Minnesota),St. Cloud(Minnesota),,2 hours 58 mins,272 km +Hibbing(Minnesota),International Falls(Minnesota),,1 hour 46 mins,163 km +International Falls(Minnesota),Boston,,1 day 0 hours,"2,605 km" +International Falls(Minnesota),Bemidji(Minnesota),,1 hour 58 mins,180 km +International Falls(Minnesota),Minneapolis(Minnesota),,4 hours 36 mins,476 km +International Falls(Minnesota),Duluth(Minnesota),,2 hours 46 mins,263 km +International Falls(Minnesota),Brainerd(Minnesota),,3 hours 18 mins,298 km +International Falls(Minnesota),Gustavus(Minnesota),,5 hours 37 mins,584 km +International Falls(Minnesota),St. Cloud(Minnesota),,4 hours 19 mins,400 km +International Falls(Minnesota),Hibbing(Minnesota),,1 hour 45 mins,162 km +Erie,Moline(Illinois),,8 hours 57 mins,953 km +Erie,Belleville(Illinois),,9 hours 51 mins,"1,049 km" +Erie,Bloomington(Illinois),,8 hours 25 mins,895 km +Erie,Champaign(Illinois),,8 hours 0 mins,859 km +Erie,Chicago(Illinois),,6 hours 50 mins,718 km +Erie,Rockford(Illinois),,8 hours 14 mins,858 km +Erie,Peoria(Illinois),,8 hours 45 mins,940 km +Moline(Illinois),Erie,,8 hours 57 mins,955 km +Belleville(Illinois),Erie,,9 hours 50 mins,"1,051 km" +Bloomington(Illinois),Erie,,8 hours 23 mins,890 km +Champaign(Illinois),Erie,,8 hours 1 min,859 km +Chicago(Illinois),Erie,,6 hours 48 mins,720 km +Rockford(Illinois),Erie,,8 hours 13 mins,869 km +Peoria(Illinois),Erie,,8 hours 46 mins,942 km +Minneapolis,La Crosse,,2 hours 33 mins,255 km +La Crosse,Minneapolis,,2 hours 32 mins,256 km +Miami,San Diego(California),,1 day 14 hours,"4,278 km" +Miami,Redding(California),,1 day 23 hours,"5,159 km" +Miami,Sacramento(California),,1 day 20 hours,"4,894 km" +Miami,Fresno(California),,1 day 18 hours,"4,624 km" +Miami,San Luis Obispo(California),,1 day 18 hours,"4,706 km" +Miami,Oakland(California),,1 day 20 hours,"4,885 km" +Miami,Santa Barbara(California),,1 day 17 hours,"4,555 km" +Miami,Stockton(California),,1 day 19 hours,"4,823 km" +Miami,Santa Rosa(California),,1 day 21 hours,"4,977 km" +Miami,Bakersfield(California),,1 day 16 hours,"4,447 km" +Miami,Santa Ana(California),,1 day 15 hours,"4,404 km" +Miami,Santa Maria(California),,1 day 18 hours,"4,658 km" +Miami,San Jose(California),,1 day 20 hours,"4,835 km" +Miami,Burbank(California),,1 day 15 hours,"4,422 km" +Miami,Arcata(California),,2 days 1 hour,"5,337 km" +Miami,Butte(California),,1 day 22 hours,"5,033 km" +Miami,Palm Springs(California),,1 day 14 hours,"4,234 km" +Miami,Los Angeles(California),,1 day 15 hours,"4,404 km" +Miami,Long Beach(California),,1 day 15 hours,"4,419 km" +Miami,San Francisco(California),,1 day 20 hours,"4,903 km" +Miami,Monterey(California),,1 day 20 hours,"4,801 km" +San Diego(California),Miami,,1 day 14 hours,"4,273 km" +Redding(California),Miami,,1 day 23 hours,"5,140 km" +Sacramento(California),Miami,,1 day 20 hours,"4,882 km" +Fresno(California),Miami,,1 day 18 hours,"4,610 km" +San Luis Obispo(California),Miami,,1 day 18 hours,"4,705 km" +Oakland(California),Miami,,1 day 20 hours,"4,873 km" +Santa Barbara(California),Miami,,1 day 17 hours,"4,553 km" +Stockton(California),Miami,,1 day 20 hours,"4,810 km" +Santa Rosa(California),Miami,,1 day 21 hours,"4,966 km" +Bakersfield(California),Miami,,1 day 16 hours,"4,435 km" +Santa Ana(California),Miami,,1 day 15 hours,"4,376 km" +Santa Maria(California),Miami,,1 day 18 hours,"4,655 km" +San Jose(California),Miami,,1 day 20 hours,"4,823 km" +Burbank(California),Miami,,1 day 15 hours,"4,414 km" +Arcata(California),Miami,,2 days 1 hour,"5,328 km" +Butte(California),Miami,,1 day 22 hours,"5,015 km" +Palm Springs(California),Miami,,1 day 14 hours,"4,231 km" +Los Angeles(California),Miami,,1 day 15 hours,"4,398 km" +Long Beach(California),Miami,,1 day 15 hours,"4,409 km" +San Francisco(California),Miami,,1 day 20 hours,"4,892 km" +Monterey(California),Miami,,1 day 20 hours,"4,790 km" +San Jose,Twin Falls(Idaho),,10 hours 30 mins,"1,130 km" +San Jose,Pocatello(Idaho),,12 hours 14 mins,"1,312 km" +San Jose,Idaho Falls(Idaho),,12 hours 50 mins,"1,386 km" +San Jose,Sun Valley(Idaho),,12 hours 10 mins,"1,265 km" +San Jose,Boise(Idaho),,10 hours 21 mins,"1,080 km" +San Jose,Lewiston(Idaho),,14 hours 40 mins,"1,445 km" +Twin Falls(Idaho),San Jose,,10 hours 36 mins,"1,131 km" +Twin Falls(Idaho),Pocatello(Idaho),,1 hour 46 mins,183 km +Twin Falls(Idaho),Idaho Falls(Idaho),,2 hours 22 mins,256 km +Twin Falls(Idaho),Sun Valley(Idaho),,1 hour 45 mins,134 km +Twin Falls(Idaho),Boise(Idaho),,2 hours 1 min,208 km +Twin Falls(Idaho),Lewiston(Idaho),,7 hours 0 mins,676 km +Pocatello(Idaho),San Jose,,12 hours 20 mins,"1,314 km" +Pocatello(Idaho),Twin Falls(Idaho),,1 hour 46 mins,183 km +Pocatello(Idaho),Idaho Falls(Idaho),,51 mins,83.6 km +Pocatello(Idaho),Sun Valley(Idaho),,2 hours 58 mins,270 km +Pocatello(Idaho),Boise(Idaho),,3 hours 23 mins,377 km +Pocatello(Idaho),Lewiston(Idaho),,8 hours 23 mins,845 km +Idaho Falls(Idaho),San Jose,,12 hours 56 mins,"1,388 km" +Idaho Falls(Idaho),Twin Falls(Idaho),,2 hours 22 mins,257 km +Idaho Falls(Idaho),Pocatello(Idaho),,49 mins,83.4 km +Idaho Falls(Idaho),Sun Valley(Idaho),,2 hours 43 mins,245 km +Idaho Falls(Idaho),Boise(Idaho),,3 hours 59 mins,451 km +Idaho Falls(Idaho),Lewiston(Idaho),,8 hours 48 mins,798 km +Sun Valley(Idaho),San Jose,,12 hours 16 mins,"1,266 km" +Sun Valley(Idaho),Twin Falls(Idaho),,1 hour 44 mins,134 km +Sun Valley(Idaho),Pocatello(Idaho),,2 hours 56 mins,269 km +Sun Valley(Idaho),Idaho Falls(Idaho),,2 hours 45 mins,245 km +Sun Valley(Idaho),Boise(Idaho),,2 hours 42 mins,249 km +Sun Valley(Idaho),Lewiston(Idaho),,7 hours 7 mins,604 km +Boise(Idaho),San Jose,,10 hours 26 mins,"1,083 km" +Boise(Idaho),Twin Falls(Idaho),,2 hours 0 mins,206 km +Boise(Idaho),Pocatello(Idaho),,3 hours 25 mins,378 km +Boise(Idaho),Idaho Falls(Idaho),,4 hours 1 min,451 km +Boise(Idaho),Sun Valley(Idaho),,2 hours 43 mins,249 km +Boise(Idaho),Lewiston(Idaho),,5 hours 9 mins,426 km +Lewiston(Idaho),San Jose,,14 hours 40 mins,"1,472 km" +Lewiston(Idaho),Twin Falls(Idaho),,6 hours 55 mins,641 km +Lewiston(Idaho),Pocatello(Idaho),,8 hours 21 mins,812 km +Lewiston(Idaho),Idaho Falls(Idaho),,8 hours 52 mins,852 km +Lewiston(Idaho),Sun Valley(Idaho),,7 hours 1 min,609 km +Lewiston(Idaho),Boise(Idaho),,5 hours 2 mins,430 km +Atlanta,Buffalo(New York),,13 hours 6 mins,"1,443 km" +Atlanta,Manhattan(New York),,13 hours 14 mins,"1,397 km" +Atlanta,Niagara Falls(New York),,13 hours 27 mins,"1,474 km" +Atlanta,Islip(New York),,13 hours 55 mins,"1,468 km" +Atlanta,New York(New York),,13 hours 5 mins,"1,391 km" +Atlanta,Watertown(New York),,15 hours 28 mins,"1,663 km" +Atlanta,Newburgh(New York),,13 hours 52 mins,"1,486 km" +Atlanta,Syracuse(New York),,14 hours 25 mins,"1,550 km" +Atlanta,Plattsburgh(New York),,17 hours 18 mins,"1,874 km" +Atlanta,Ogdensburg(New York),,16 hours 27 mins,"1,756 km" +Atlanta,Ithaca(New York),,14 hours 5 mins,"1,486 km" +Atlanta,Elmira(New York),,13 hours 28 mins,"1,414 km" +Atlanta,White Plains(New York),,13 hours 32 mins,"1,441 km" +Atlanta,Albany(New York),,14 hours 59 mins,"1,617 km" +Atlanta,Binghamton(New York),,13 hours 25 mins,"1,438 km" +Atlanta,Rochester(New York),,14 hours 3 mins,"1,548 km" +Buffalo(New York),Atlanta,,13 hours 7 mins,"1,443 km" +Manhattan(New York),Atlanta,,13 hours 17 mins,"1,407 km" +Niagara Falls(New York),Atlanta,,13 hours 29 mins,"1,474 km" +Islip(New York),Atlanta,,13 hours 58 mins,"1,475 km" +New York(New York),Atlanta,,13 hours 8 mins,"1,401 km" +Watertown(New York),Atlanta,,15 hours 29 mins,"1,663 km" +Newburgh(New York),Atlanta,,13 hours 55 mins,"1,485 km" +Syracuse(New York),Atlanta,,14 hours 25 mins,"1,550 km" +Plattsburgh(New York),Atlanta,,17 hours 20 mins,"1,874 km" +Ogdensburg(New York),Atlanta,,16 hours 28 mins,"1,756 km" +Ithaca(New York),Atlanta,,14 hours 6 mins,"1,486 km" +Elmira(New York),Atlanta,,13 hours 30 mins,"1,415 km" +White Plains(New York),Atlanta,,13 hours 34 mins,"1,450 km" +Albany(New York),Atlanta,,15 hours 1 min,"1,616 km" +Binghamton(New York),Atlanta,,13 hours 25 mins,"1,437 km" +Rochester(New York),Atlanta,,14 hours 6 mins,"1,548 km" +Cedar Rapids,Sarasota(Florida),,19 hours 38 mins,"2,163 km" +Cedar Rapids,Fort Myers(Florida),,20 hours 35 mins,"2,268 km" +Cedar Rapids,Gainesville(Florida),,17 hours 14 mins,"1,879 km" +Cedar Rapids,Orlando(Florida),,18 hours 38 mins,"2,051 km" +Cedar Rapids,Daytona Beach(Florida),,18 hours 42 mins,"2,051 km" +Cedar Rapids,Jacksonville(Florida),,17 hours 19 mins,"1,901 km" +Cedar Rapids,Tampa(Florida),,18 hours 50 mins,"2,079 km" +Cedar Rapids,Panama City(Florida),,16 hours 5 mins,"1,685 km" +Cedar Rapids,Key West(Florida),,1 day 1 hour,"2,665 km" +Cedar Rapids,West Palm Beach(Florida),,20 hours 51 mins,"2,306 km" +Cedar Rapids,Miami(Florida),,21 hours 49 mins,"2,411 km" +Cedar Rapids,Tallahassee(Florida),,16 hours 22 mins,"1,740 km" +Cedar Rapids,Punta Gorda(Florida),,20 hours 9 mins,"2,233 km" +Cedar Rapids,Fort Lauderdale(Florida),,21 hours 29 mins,"2,374 km" +Cedar Rapids,Pensacola(Florida),,14 hours 54 mins,"1,564 km" +Sarasota(Florida),Cedar Rapids,,19 hours 37 mins,"2,167 km" +Fort Myers(Florida),Cedar Rapids,,20 hours 33 mins,"2,273 km" +Gainesville(Florida),Cedar Rapids,,17 hours 12 mins,"1,882 km" +Orlando(Florida),Cedar Rapids,,18 hours 34 mins,"2,053 km" +Daytona Beach(Florida),Cedar Rapids,,18 hours 40 mins,"2,045 km" +Jacksonville(Florida),Cedar Rapids,,17 hours 20 mins,"1,905 km" +Tampa(Florida),Cedar Rapids,,18 hours 48 mins,"2,082 km" +Panama City(Florida),Cedar Rapids,,16 hours 7 mins,"1,683 km" +Key West(Florida),Cedar Rapids,,1 day 1 hour,"2,668 km" +West Palm Beach(Florida),Cedar Rapids,,20 hours 49 mins,"2,311 km" +Miami(Florida),Cedar Rapids,,21 hours 46 mins,"2,417 km" +Tallahassee(Florida),Cedar Rapids,,16 hours 24 mins,"1,738 km" +Punta Gorda(Florida),Cedar Rapids,,20 hours 8 mins,"2,237 km" +Fort Lauderdale(Florida),Cedar Rapids,,21 hours 27 mins,"2,379 km" +Pensacola(Florida),Cedar Rapids,,14 hours 56 mins,"1,565 km" +Bangor,Sarasota(Florida),,1 day 0 hours,"2,620 km" +Bangor,Fort Myers(Florida),,1 day 1 hour,"2,725 km" +Bangor,Gainesville(Florida),,21 hours 33 mins,"2,330 km" +Bangor,Orlando(Florida),,22 hours 25 mins,"2,447 km" +Bangor,Daytona Beach(Florida),,21 hours 48 mins,"2,373 km" +Bangor,Jacksonville(Florida),,20 hours 22 mins,"2,219 km" +Bangor,Tampa(Florida),,23 hours 25 mins,"2,535 km" +Bangor,Panama City(Florida),,1 day 0 hours,"2,640 km" +Bangor,Key West(Florida),,1 day 4 hours,"3,030 km" +Bangor,West Palm Beach(Florida),,1 day 0 hours,"2,677 km" +Bangor,Miami(Florida),,1 day 1 hour,"2,776 km" +Bangor,Tallahassee(Florida),,22 hours 46 mins,"2,478 km" +Bangor,Punta Gorda(Florida),,1 day 1 hour,"2,690 km" +Bangor,Fort Lauderdale(Florida),,1 day 1 hour,"2,745 km" +Bangor,Pensacola(Florida),,1 day 1 hour,"2,633 km" +Sarasota(Florida),Bangor,,1 day 0 hours,"2,609 km" +Fort Myers(Florida),Bangor,,1 day 1 hour,"2,714 km" +Gainesville(Florida),Bangor,,21 hours 30 mins,"2,319 km" +Orlando(Florida),Bangor,,22 hours 15 mins,"2,432 km" +Daytona Beach(Florida),Bangor,,21 hours 41 mins,"2,349 km" +Jacksonville(Florida),Bangor,,20 hours 18 mins,"2,207 km" +Tampa(Florida),Bangor,,23 hours 20 mins,"2,524 km" +Panama City(Florida),Bangor,,1 day 0 hours,"2,630 km" +Key West(Florida),Bangor,,1 day 4 hours,"3,016 km" +West Palm Beach(Florida),Bangor,,1 day 0 hours,"2,663 km" +Miami(Florida),Bangor,,1 day 1 hour,"2,764 km" +Tallahassee(Florida),Bangor,,22 hours 43 mins,"2,472 km" +Punta Gorda(Florida),Bangor,,1 day 1 hour,"2,678 km" +Fort Lauderdale(Florida),Bangor,,1 day 1 hour,"2,731 km" +Pensacola(Florida),Bangor,,1 day 0 hours,"2,619 km" +Key West,Abilene(Texas),,1 day 1 hour,"2,657 km" +Key West,Amarillo(Texas),,1 day 3 hours,"2,955 km" +Key West,Harlingen(Texas),,1 day 1 hour,"2,692 km" +Key West,Lubbock(Texas),,1 day 3 hours,"2,921 km" +Key West,College Station(Texas),,21 hours 21 mins,"2,310 km" +Key West,Corpus Christi(Texas),,23 hours 5 mins,"2,498 km" +Key West,Wichita Falls(Texas),,1 day 0 hours,"2,595 km" +Key West,Waco(Texas),,22 hours 40 mins,"2,420 km" +Key West,San Angelo(Texas),,1 day 2 hours,"2,748 km" +Key West,Houston(Texas),,19 hours 57 mins,"2,164 km" +Key West,San Antonio(Texas),,22 hours 49 mins,"2,478 km" +Key West,Del Rio(Texas),,1 day 1 hour,"2,725 km" +Key West,Mission(Texas),,1 day 1 hour,"2,732 km" +Key West,Beaumont(Texas),,18 hours 43 mins,"2,031 km" +Key West,Longview(Texas),,20 hours 21 mins,"2,168 km" +Key West,Midland(Texas),,1 day 3 hours,"2,897 km" +Key West,El Paso(Texas),,1 day 7 hours,"3,363 km" +Key West,Brownsville(Texas),,1 day 1 hour,"2,732 km" +Key West,Austin(Texas),,22 hours 24 mins,"2,427 km" +Key West,Dallas(Texas),,22 hours 3 mins,"2,368 km" +Key West,Killeen(Texas),,22 hours 59 mins,"2,482 km" +Key West,Laredo(Texas),,1 day 1 hour,"2,670 km" +Key West,Texarkana(Texas),,20 hours 23 mins,"2,179 km" +Abilene(Texas),Key West,,1 day 1 hour,"2,652 km" +Amarillo(Texas),Key West,,1 day 3 hours,"2,944 km" +Harlingen(Texas),Key West,,1 day 1 hour,"2,692 km" +Lubbock(Texas),Key West,,1 day 3 hours,"2,918 km" +College Station(Texas),Key West,,21 hours 19 mins,"2,312 km" +Corpus Christi(Texas),Key West,,23 hours 8 mins,"2,503 km" +Wichita Falls(Texas),Key West,,1 day 0 hours,"2,582 km" +Waco(Texas),Key West,,22 hours 40 mins,"2,420 km" +San Angelo(Texas),Key West,,1 day 2 hours,"2,748 km" +Houston(Texas),Key West,,19 hours 56 mins,"2,164 km" +San Antonio(Texas),Key West,,22 hours 49 mins,"2,478 km" +Del Rio(Texas),Key West,,1 day 1 hour,"2,725 km" +Mission(Texas),Key West,,1 day 1 hour,"2,732 km" +Beaumont(Texas),Key West,,18 hours 44 mins,"2,031 km" +Longview(Texas),Key West,,20 hours 19 mins,"2,162 km" +Midland(Texas),Key West,,1 day 3 hours,"2,892 km" +El Paso(Texas),Key West,,1 day 7 hours,"3,363 km" +Brownsville(Texas),Key West,,1 day 1 hour,"2,732 km" +Austin(Texas),Key West,,22 hours 24 mins,"2,427 km" +Dallas(Texas),Key West,,22 hours 3 mins,"2,361 km" +Killeen(Texas),Key West,,22 hours 58 mins,"2,476 km" +Laredo(Texas),Key West,,1 day 1 hour,"2,670 km" +Texarkana(Texas),Key West,,20 hours 24 mins,"2,180 km" +New York,Martha's Vineyard(Massachusetts),,5 hours 24 mins,428 km +New York,Hyannis(Massachusetts),,4 hours 20 mins,409 km +New York,Boston(Massachusetts),,3 hours 41 mins,346 km +New York,Nantucket(Massachusetts),,6 hours 38 mins,456 km +Martha's Vineyard(Massachusetts),New York,,5 hours 36 mins,433 km +Hyannis(Massachusetts),New York,,4 hours 27 mins,411 km +Boston(Massachusetts),New York,,3 hours 46 mins,347 km +Nantucket(Massachusetts),New York,,6 hours 44 mins,462 km +Nashville,San Diego,,1 day 5 hours,"3,203 km" +San Diego,Nashville,,1 day 5 hours,"3,198 km" +Albuquerque,Abilene(Texas),,7 hours 29 mins,785 km +Albuquerque,Amarillo(Texas),,4 hours 12 mins,464 km +Albuquerque,Harlingen(Texas),,14 hours 14 mins,"1,569 km" +Albuquerque,Lubbock(Texas),,5 hours 7 mins,518 km +Albuquerque,College Station(Texas),,11 hours 44 mins,"1,208 km" +Albuquerque,Corpus Christi(Texas),,12 hours 36 mins,"1,394 km" +Albuquerque,Wichita Falls(Texas),,7 hours 29 mins,819 km +Albuquerque,Waco(Texas),,10 hours 25 mins,"1,085 km" +Albuquerque,San Angelo(Texas),,7 hours 34 mins,818 km +Albuquerque,Houston(Texas),,12 hours 51 mins,"1,422 km" +Albuquerque,San Antonio(Texas),,10 hours 38 mins,"1,161 km" +Albuquerque,Del Rio(Texas),,9 hours 43 mins,976 km +Albuquerque,Mission(Texas),,14 hours 13 mins,"1,557 km" +Albuquerque,Beaumont(Texas),,13 hours 52 mins,"1,497 km" +Albuquerque,Longview(Texas),,11 hours 23 mins,"1,246 km" +Albuquerque,Midland(Texas),,6 hours 12 mins,652 km +Albuquerque,El Paso(Texas),,3 hours 50 mins,428 km +Albuquerque,Brownsville(Texas),,14 hours 35 mins,"1,609 km" +Albuquerque,Austin(Texas),,10 hours 55 mins,"1,121 km" +Albuquerque,Dallas(Texas),,9 hours 32 mins,"1,046 km" +Albuquerque,Killeen(Texas),,10 hours 16 mins,"1,058 km" +Albuquerque,Laredo(Texas),,12 hours 38 mins,"1,265 km" +Albuquerque,Texarkana(Texas),,11 hours 49 mins,"1,255 km" +Abilene(Texas),Albuquerque,,7 hours 31 mins,784 km +Amarillo(Texas),Albuquerque,,4 hours 14 mins,464 km +Harlingen(Texas),Albuquerque,,14 hours 9 mins,"1,566 km" +Lubbock(Texas),Albuquerque,,5 hours 7 mins,518 km +College Station(Texas),Albuquerque,,11 hours 44 mins,"1,212 km" +Corpus Christi(Texas),Albuquerque,,12 hours 33 mins,"1,390 km" +Wichita Falls(Texas),Albuquerque,,7 hours 32 mins,819 km +Waco(Texas),Albuquerque,,10 hours 28 mins,"1,144 km" +San Angelo(Texas),Albuquerque,,7 hours 33 mins,818 km +Houston(Texas),Albuquerque,,12 hours 53 mins,"1,422 km" +San Antonio(Texas),Albuquerque,,10 hours 37 mins,"1,157 km" +Del Rio(Texas),Albuquerque,,9 hours 43 mins,967 km +Mission(Texas),Albuquerque,,14 hours 11 mins,"1,555 km" +Beaumont(Texas),Albuquerque,,13 hours 54 mins,"1,497 km" +Longview(Texas),Albuquerque,,11 hours 24 mins,"1,252 km" +Midland(Texas),Albuquerque,,6 hours 12 mins,652 km +El Paso(Texas),Albuquerque,,3 hours 51 mins,428 km +Brownsville(Texas),Albuquerque,,14 hours 33 mins,"1,606 km" +Austin(Texas),Albuquerque,,10 hours 55 mins,"1,149 km" +Dallas(Texas),Albuquerque,,9 hours 33 mins,"1,045 km" +Killeen(Texas),Albuquerque,,10 hours 19 mins,"1,057 km" +Laredo(Texas),Albuquerque,,12 hours 39 mins,"1,257 km" +Texarkana(Texas),Albuquerque,,12 hours 0 mins,"1,269 km" +Oakland,Tucson,,12 hours 40 mins,"1,372 km" +Tucson,Oakland,,12 hours 42 mins,"1,373 km" +Little Rock,Abilene(Texas),,7 hours 19 mins,803 km +Little Rock,Amarillo(Texas),,8 hours 31 mins,961 km +Little Rock,Harlingen(Texas),,11 hours 41 mins,"1,226 km" +Little Rock,Lubbock(Texas),,9 hours 42 mins,"1,068 km" +Little Rock,College Station(Texas),,6 hours 47 mins,671 km +Little Rock,Corpus Christi(Texas),,9 hours 55 mins,"1,031 km" +Little Rock,Wichita Falls(Texas),,6 hours 31 mins,675 km +Little Rock,Waco(Texas),,6 hours 5 mins,669 km +Little Rock,San Angelo(Texas),,8 hours 33 mins,927 km +Little Rock,Houston(Texas),,6 hours 47 mins,698 km +Little Rock,San Antonio(Texas),,8 hours 41 mins,954 km +Little Rock,Del Rio(Texas),,10 hours 58 mins,"1,180 km" +Little Rock,Mission(Texas),,12 hours 10 mins,"1,339 km" +Little Rock,Beaumont(Texas),,6 hours 29 mins,652 km +Little Rock,Longview(Texas),,3 hours 39 mins,374 km +Little Rock,Midland(Texas),,9 hours 27 mins,"1,044 km" +Little Rock,El Paso(Texas),,13 hours 45 mins,"1,534 km" +Little Rock,Brownsville(Texas),,12 hours 2 mins,"1,265 km" +Little Rock,Austin(Texas),,7 hours 29 mins,827 km +Little Rock,Dallas(Texas),,4 hours 42 mins,513 km +Little Rock,Killeen(Texas),,6 hours 53 mins,762 km +Little Rock,Laredo(Texas),,10 hours 57 mins,"1,205 km" +Little Rock,Texarkana(Texas),,2 hours 13 mins,233 km +Abilene(Texas),Little Rock,,7 hours 17 mins,804 km +Amarillo(Texas),Little Rock,,8 hours 30 mins,963 km +Harlingen(Texas),Little Rock,,11 hours 36 mins,"1,227 km" +Lubbock(Texas),Little Rock,,9 hours 25 mins,995 km +College Station(Texas),Little Rock,,6 hours 44 mins,668 km +Corpus Christi(Texas),Little Rock,,9 hours 58 mins,"1,037 km" +Wichita Falls(Texas),Little Rock,,6 hours 23 mins,662 km +Waco(Texas),Little Rock,,6 hours 2 mins,665 km +San Angelo(Texas),Little Rock,,8 hours 29 mins,928 km +Houston(Texas),Little Rock,,6 hours 46 mins,699 km +San Antonio(Texas),Little Rock,,8 hours 37 mins,953 km +Del Rio(Texas),Little Rock,,10 hours 52 mins,"1,181 km" +Mission(Texas),Little Rock,,12 hours 4 mins,"1,339 km" +Beaumont(Texas),Little Rock,,6 hours 27 mins,653 km +Longview(Texas),Little Rock,,3 hours 39 mins,374 km +Midland(Texas),Little Rock,,9 hours 23 mins,"1,044 km" +El Paso(Texas),Little Rock,,13 hours 41 mins,"1,534 km" +Brownsville(Texas),Little Rock,,12 hours 0 mins,"1,267 km" +Austin(Texas),Little Rock,,7 hours 26 mins,827 km +Dallas(Texas),Little Rock,,4 hours 40 mins,514 km +Killeen(Texas),Little Rock,,6 hours 51 mins,762 km +Laredo(Texas),Little Rock,,10 hours 55 mins,"1,204 km" +Texarkana(Texas),Little Rock,,2 hours 11 mins,232 km +Cincinnati,Moline(Illinois),,6 hours 10 mins,669 km +Cincinnati,Belleville(Illinois),,5 hours 13 mins,558 km +Cincinnati,Bloomington(Illinois),,4 hours 16 mins,455 km +Cincinnati,Champaign(Illinois),,3 hours 33 mins,379 km +Cincinnati,Chicago(Illinois),,4 hours 34 mins,475 km +Cincinnati,Rockford(Illinois),,5 hours 54 mins,620 km +Cincinnati,Peoria(Illinois),,4 hours 47 mins,518 km +Moline(Illinois),Cincinnati,,6 hours 8 mins,666 km +Belleville(Illinois),Cincinnati,,5 hours 14 mins,557 km +Bloomington(Illinois),Cincinnati,,4 hours 17 mins,456 km +Champaign(Illinois),Cincinnati,,3 hours 34 mins,375 km +Chicago(Illinois),Cincinnati,,4 hours 34 mins,477 km +Rockford(Illinois),Cincinnati,,5 hours 53 mins,619 km +Peoria(Illinois),Cincinnati,,4 hours 47 mins,518 km +Salt Lake City,Fresno,,11 hours 44 mins,"1,309 km" +Fresno,Salt Lake City,,11 hours 56 mins,"1,311 km" +Dallas,Bemidji(Minnesota),,17 hours 36 mins,"1,861 km" +Dallas,Minneapolis(Minnesota),,14 hours 7 mins,"1,516 km" +Dallas,Duluth(Minnesota),,16 hours 14 mins,"1,759 km" +Dallas,Brainerd(Minnesota),,16 hours 4 mins,"1,717 km" +Dallas,Gustavus(Minnesota),,13 hours 52 mins,"1,478 km" +Dallas,St. Cloud(Minnesota),,15 hours 5 mins,"1,619 km" +Dallas,Hibbing(Minnesota),,17 hours 7 mins,"1,823 km" +Dallas,International Falls(Minnesota),,18 hours 33 mins,"1,987 km" +Bemidji(Minnesota),Dallas,,17 hours 33 mins,"1,857 km" +Minneapolis(Minnesota),Dallas,,14 hours 6 mins,"1,512 km" +Duluth(Minnesota),Dallas,,16 hours 13 mins,"1,756 km" +Brainerd(Minnesota),Dallas,,16 hours 4 mins,"1,714 km" +Gustavus(Minnesota),Dallas,,13 hours 52 mins,"1,473 km" +St. Cloud(Minnesota),Dallas,,15 hours 4 mins,"1,615 km" +Hibbing(Minnesota),Dallas,,17 hours 5 mins,"1,818 km" +International Falls(Minnesota),Dallas,,18 hours 31 mins,"1,982 km" +Harrisburg,Abilene(Texas),,22 hours 53 mins,"2,515 km" +Harrisburg,Amarillo(Texas),,22 hours 43 mins,"2,479 km" +Harrisburg,Harlingen(Texas),,1 day 2 hours,"2,881 km" +Harrisburg,Lubbock(Texas),,1 day 0 hours,"2,618 km" +Harrisburg,College Station(Texas),,22 hours 3 mins,"2,379 km" +Harrisburg,Corpus Christi(Texas),,1 day 0 hours,"2,686 km" +Harrisburg,Wichita Falls(Texas),,20 hours 58 mins,"2,283 km" +Harrisburg,Waco(Texas),,21 hours 39 mins,"2,380 km" +Harrisburg,San Angelo(Texas),,1 day 0 hours,"2,639 km" +Harrisburg,Houston(Texas),,21 hours 18 mins,"2,353 km" +Harrisburg,San Antonio(Texas),,1 day 0 hours,"2,667 km" +Harrisburg,Del Rio(Texas),,1 day 3 hours,"2,914 km" +Harrisburg,Mission(Texas),,1 day 3 hours,"2,921 km" +Harrisburg,Beaumont(Texas),,20 hours 5 mins,"2,220 km" +Harrisburg,Longview(Texas),,19 hours 9 mins,"2,112 km" +Harrisburg,Midland(Texas),,1 day 1 hour,"2,755 km" +Harrisburg,El Paso(Texas),,1 day 5 hours,"3,245 km" +Harrisburg,Brownsville(Texas),,1 day 3 hours,"2,920 km" +Harrisburg,Austin(Texas),,23 hours 4 mins,"2,539 km" +Harrisburg,Dallas(Texas),,20 hours 16 mins,"2,225 km" +Harrisburg,Killeen(Texas),,22 hours 27 mins,"2,473 km" +Harrisburg,Laredo(Texas),,1 day 2 hours,"2,859 km" +Harrisburg,Texarkana(Texas),,17 hours 47 mins,"1,945 km" +Abilene(Texas),Harrisburg,,22 hours 49 mins,"2,514 km" +Amarillo(Texas),Harrisburg,,22 hours 44 mins,"2,479 km" +Harlingen(Texas),Harrisburg,,1 day 2 hours,"2,881 km" +Lubbock(Texas),Harrisburg,,1 day 0 hours,"2,619 km" +College Station(Texas),Harrisburg,,21 hours 55 mins,"2,374 km" +Corpus Christi(Texas),Harrisburg,,1 day 0 hours,"2,692 km" +Wichita Falls(Texas),Harrisburg,,20 hours 59 mins,"2,284 km" +Waco(Texas),Harrisburg,,21 hours 34 mins,"2,376 km" +San Angelo(Texas),Harrisburg,,1 day 0 hours,"2,639 km" +Houston(Texas),Harrisburg,,21 hours 16 mins,"2,353 km" +San Antonio(Texas),Harrisburg,,1 day 0 hours,"2,664 km" +Del Rio(Texas),Harrisburg,,1 day 2 hours,"2,892 km" +Mission(Texas),Harrisburg,,1 day 3 hours,"2,922 km" +Beaumont(Texas),Harrisburg,,20 hours 3 mins,"2,220 km" +Longview(Texas),Harrisburg,,19 hours 5 mins,"2,107 km" +Midland(Texas),Harrisburg,,1 day 1 hour,"2,754 km" +El Paso(Texas),Harrisburg,,1 day 5 hours,"3,244 km" +Brownsville(Texas),Harrisburg,,1 day 2 hours,"2,921 km" +Austin(Texas),Harrisburg,,22 hours 59 mins,"2,538 km" +Dallas(Texas),Harrisburg,,20 hours 12 mins,"2,224 km" +Killeen(Texas),Harrisburg,,22 hours 23 mins,"2,472 km" +Laredo(Texas),Harrisburg,,1 day 2 hours,"2,859 km" +Texarkana(Texas),Harrisburg,,17 hours 43 mins,"1,943 km" +Austin,San Diego(California),,19 hours 0 mins,"2,095 km" +Austin,Redding(California),,1 day 4 hours,"3,092 km" +Austin,Sacramento(California),,1 day 2 hours,"2,834 km" +Austin,Fresno(California),,23 hours 33 mins,"2,567 km" +Austin,San Luis Obispo(California),,23 hours 17 mins,"2,523 km" +Austin,Oakland(California),,1 day 2 hours,"2,811 km" +Austin,Santa Barbara(California),,21 hours 47 mins,"2,372 km" +Austin,Stockton(California),,1 day 1 hour,"2,758 km" +Austin,Santa Rosa(California),,1 day 3 hours,"2,904 km" +Austin,Bakersfield(California),,22 hours 0 mins,"2,395 km" +Austin,Santa Ana(California),,20 hours 9 mins,"2,220 km" +Austin,Santa Maria(California),,22 hours 53 mins,"2,474 km" +Austin,San Jose(California),,1 day 1 hour,"2,762 km" +Austin,Burbank(California),,20 hours 27 mins,"2,239 km" +Austin,Arcata(California),,1 day 6 hours,"3,264 km" +Austin,Butte(California),,1 day 3 hours,"2,967 km" +Austin,Palm Springs(California),,18 hours 46 mins,"2,050 km" +Austin,Los Angeles(California),,20 hours 22 mins,"2,221 km" +Austin,Long Beach(California),,20 hours 30 mins,"2,236 km" +Austin,San Francisco(California),,1 day 2 hours,"2,830 km" +Austin,Monterey(California),,1 day 1 hour,"2,728 km" +San Diego(California),Austin,,19 hours 4 mins,"2,091 km" +Redding(California),Austin,,1 day 4 hours,"3,090 km" +Sacramento(California),Austin,,1 day 2 hours,"2,833 km" +Fresno(California),Austin,,23 hours 33 mins,"2,565 km" +San Luis Obispo(California),Austin,,23 hours 20 mins,"2,522 km" +Oakland(California),Austin,,1 day 2 hours,"2,810 km" +Santa Barbara(California),Austin,,21 hours 49 mins,"2,371 km" +Stockton(California),Austin,,1 day 1 hour,"2,757 km" +Santa Rosa(California),Austin,,1 day 3 hours,"2,903 km" +Bakersfield(California),Austin,,22 hours 0 mins,"2,394 km" +Santa Ana(California),Austin,,20 hours 9 mins,"2,193 km" +Santa Maria(California),Austin,,22 hours 53 mins,"2,472 km" +San Jose(California),Austin,,1 day 1 hour,"2,760 km" +Burbank(California),Austin,,20 hours 25 mins,"2,231 km" +Arcata(California),Austin,,1 day 6 hours,"3,264 km" +Butte(California),Austin,,1 day 3 hours,"2,965 km" +Palm Springs(California),Austin,,18 hours 48 mins,"2,048 km" +Los Angeles(California),Austin,,20 hours 18 mins,"2,215 km" +Long Beach(California),Austin,,20 hours 27 mins,"2,227 km" +San Francisco(California),Austin,,1 day 2 hours,"2,828 km" +Monterey(California),Austin,,1 day 1 hour,"2,727 km" +Memphis,Buffalo(New York),,13 hours 27 mins,"1,476 km" +Memphis,Manhattan(New York),,16 hours 31 mins,"1,770 km" +Memphis,Niagara Falls(New York),,13 hours 48 mins,"1,506 km" +Memphis,Islip(New York),,17 hours 12 mins,"1,849 km" +Memphis,New York(New York),,16 hours 21 mins,"1,764 km" +Memphis,Watertown(New York),,16 hours 27 mins,"1,804 km" +Memphis,Newburgh(New York),,16 hours 50 mins,"1,832 km" +Memphis,Syracuse(New York),,15 hours 30 mins,"1,702 km" +Memphis,Plattsburgh(New York),,19 hours 19 mins,"2,062 km" +Memphis,Ogdensburg(New York),,17 hours 25 mins,"1,897 km" +Memphis,Ithaca(New York),,15 hours 37 mins,"1,695 km" +Memphis,Elmira(New York),,15 hours 7 mins,"1,657 km" +Memphis,White Plains(New York),,16 hours 41 mins,"1,817 km" +Memphis,Albany(New York),,17 hours 30 mins,"1,928 km" +Memphis,Binghamton(New York),,15 hours 55 mins,"1,745 km" +Memphis,Rochester(New York),,14 hours 24 mins,"1,580 km" +Buffalo(New York),Memphis,,13 hours 29 mins,"1,478 km" +Manhattan(New York),Memphis,,16 hours 30 mins,"1,770 km" +Niagara Falls(New York),Memphis,,13 hours 51 mins,"1,508 km" +Islip(New York),Memphis,,17 hours 11 mins,"1,848 km" +New York(New York),Memphis,,16 hours 19 mins,"1,762 km" +Watertown(New York),Memphis,,16 hours 30 mins,"1,806 km" +Newburgh(New York),Memphis,,16 hours 52 mins,"1,832 km" +Syracuse(New York),Memphis,,15 hours 33 mins,"1,704 km" +Plattsburgh(New York),Memphis,,19 hours 22 mins,"2,066 km" +Ogdensburg(New York),Memphis,,17 hours 29 mins,"1,899 km" +Ithaca(New York),Memphis,,15 hours 39 mins,"1,697 km" +Elmira(New York),Memphis,,15 hours 9 mins,"1,660 km" +White Plains(New York),Memphis,,16 hours 41 mins,"1,815 km" +Albany(New York),Memphis,,17 hours 33 mins,"1,929 km" +Binghamton(New York),Memphis,,15 hours 58 mins,"1,748 km" +Rochester(New York),Memphis,,14 hours 28 mins,"1,583 km" +St. Louis,State College(Pennsylvania),,11 hours 19 mins,"1,191 km" +St. Louis,Johnstown(Pennsylvania),,10 hours 15 mins,"1,079 km" +St. Louis,Harrisburg(Pennsylvania),,11 hours 54 mins,"1,264 km" +St. Louis,Erie(Pennsylvania),,9 hours 42 mins,"1,056 km" +St. Louis,Pittsburgh(Pennsylvania),,9 hours 3 mins,969 km +St. Louis,Latrobe(Pennsylvania),,9 hours 41 mins,"1,015 km" +St. Louis,Philadelphia(Pennsylvania),,13 hours 23 mins,"1,426 km" +St. Louis,Lewisburg(Pennsylvania),,12 hours 2 mins,"1,309 km" +St. Louis,Scranton(Pennsylvania),,13 hours 12 mins,"1,435 km" +State College(Pennsylvania),St. Louis,,11 hours 18 mins,"1,195 km" +Johnstown(Pennsylvania),St. Louis,,10 hours 14 mins,"1,075 km" +Harrisburg(Pennsylvania),St. Louis,,11 hours 51 mins,"1,262 km" +Erie(Pennsylvania),St. Louis,,9 hours 42 mins,"1,053 km" +Pittsburgh(Pennsylvania),St. Louis,,9 hours 2 mins,968 km +Latrobe(Pennsylvania),St. Louis,,9 hours 37 mins,"1,014 km" +Philadelphia(Pennsylvania),St. Louis,,13 hours 23 mins,"1,425 km" +Lewisburg(Pennsylvania),St. Louis,,11 hours 58 mins,"1,305 km" +Scranton(Pennsylvania),St. Louis,,13 hours 8 mins,"1,430 km" +Dallas,Grand Junction,,15 hours 3 mins,"1,500 km" +Grand Junction,Dallas,,15 hours 7 mins,"1,503 km" +Fort Lauderdale,Buffalo(New York),,19 hours 54 mins,"2,200 km" +Fort Lauderdale,Manhattan(New York),,18 hours 26 mins,"2,030 km" +Fort Lauderdale,Niagara Falls(New York),,20 hours 15 mins,"2,230 km" +Fort Lauderdale,Islip(New York),,19 hours 7 mins,"2,101 km" +Fort Lauderdale,New York(New York),,18 hours 17 mins,"2,024 km" +Fort Lauderdale,Watertown(New York),,21 hours 20 mins,"2,360 km" +Fort Lauderdale,Newburgh(New York),,19 hours 7 mins,"2,116 km" +Fort Lauderdale,Syracuse(New York),,20 hours 17 mins,"2,247 km" +Fort Lauderdale,Plattsburgh(New York),,22 hours 33 mins,"2,504 km" +Fort Lauderdale,Ogdensburg(New York),,22 hours 18 mins,"2,453 km" +Fort Lauderdale,Ithaca(New York),,20 hours 1 min,"2,186 km" +Fort Lauderdale,Elmira(New York),,19 hours 24 mins,"2,114 km" +Fort Lauderdale,White Plains(New York),,18 hours 44 mins,"2,075 km" +Fort Lauderdale,Albany(New York),,20 hours 13 mins,"2,247 km" +Fort Lauderdale,Binghamton(New York),,19 hours 17 mins,"2,135 km" +Fort Lauderdale,Rochester(New York),,20 hours 40 mins,"2,276 km" +Buffalo(New York),Fort Lauderdale,,19 hours 58 mins,"2,203 km" +Manhattan(New York),Fort Lauderdale,,18 hours 31 mins,"2,040 km" +Niagara Falls(New York),Fort Lauderdale,,20 hours 19 mins,"2,233 km" +Islip(New York),Fort Lauderdale,,19 hours 12 mins,"2,109 km" +New York(New York),Fort Lauderdale,,18 hours 23 mins,"2,034 km" +Watertown(New York),Fort Lauderdale,,21 hours 32 mins,"2,365 km" +Newburgh(New York),Fort Lauderdale,,19 hours 15 mins,"2,128 km" +Syracuse(New York),Fort Lauderdale,,20 hours 28 mins,"2,252 km" +Plattsburgh(New York),Fort Lauderdale,,22 hours 40 mins,"2,517 km" +Ogdensburg(New York),Fort Lauderdale,,22 hours 31 mins,"2,458 km" +Ithaca(New York),Fort Lauderdale,,20 hours 12 mins,"2,195 km" +Elmira(New York),Fort Lauderdale,,19 hours 35 mins,"2,124 km" +White Plains(New York),Fort Lauderdale,,18 hours 49 mins,"2,084 km" +Albany(New York),Fort Lauderdale,,20 hours 22 mins,"2,259 km" +Binghamton(New York),Fort Lauderdale,,19 hours 28 mins,"2,139 km" +Rochester(New York),Fort Lauderdale,,20 hours 51 mins,"2,285 km" +Latrobe,Sarasota(Florida),,16 hours 18 mins,"1,721 km" +Latrobe,Fort Myers(Florida),,17 hours 15 mins,"1,826 km" +Latrobe,Gainesville(Florida),,13 hours 38 mins,"1,431 km" +Latrobe,Orlando(Florida),,14 hours 30 mins,"1,548 km" +Latrobe,Daytona Beach(Florida),,13 hours 53 mins,"1,474 km" +Latrobe,Jacksonville(Florida),,12 hours 27 mins,"1,320 km" +Latrobe,Tampa(Florida),,15 hours 30 mins,"1,636 km" +Latrobe,Panama City(Florida),,15 hours 26 mins,"1,550 km" +Latrobe,Key West(Florida),,20 hours 27 mins,"2,131 km" +Latrobe,West Palm Beach(Florida),,16 hours 26 mins,"1,778 km" +Latrobe,Miami(Florida),,17 hours 26 mins,"1,877 km" +Latrobe,Tallahassee(Florida),,14 hours 38 mins,"1,417 km" +Latrobe,Punta Gorda(Florida),,16 hours 50 mins,"1,791 km" +Latrobe,Fort Lauderdale(Florida),,17 hours 4 mins,"1,846 km" +Latrobe,Pensacola(Florida),,15 hours 5 mins,"1,589 km" +Sarasota(Florida),Latrobe,,16 hours 21 mins,"1,722 km" +Fort Myers(Florida),Latrobe,,17 hours 18 mins,"1,828 km" +Gainesville(Florida),Latrobe,,13 hours 43 mins,"1,432 km" +Orlando(Florida),Latrobe,,14 hours 28 mins,"1,546 km" +Daytona Beach(Florida),Latrobe,,13 hours 54 mins,"1,463 km" +Jacksonville(Florida),Latrobe,,12 hours 31 mins,"1,320 km" +Tampa(Florida),Latrobe,,15 hours 33 mins,"1,637 km" +Panama City(Florida),Latrobe,,15 hours 27 mins,"1,552 km" +Key West(Florida),Latrobe,,20 hours 28 mins,"2,129 km" +West Palm Beach(Florida),Latrobe,,16 hours 26 mins,"1,776 km" +Miami(Florida),Latrobe,,17 hours 25 mins,"1,878 km" +Tallahassee(Florida),Latrobe,,14 hours 42 mins,"1,417 km" +Punta Gorda(Florida),Latrobe,,16 hours 53 mins,"1,792 km" +Fort Lauderdale(Florida),Latrobe,,17 hours 4 mins,"1,844 km" +Pensacola(Florida),Latrobe,,15 hours 4 mins,"1,589 km" +Atlanta,San Francisco,,1 day 12 hours,"3,995 km" +San Francisco,Atlanta,,1 day 12 hours,"3,982 km" +Minneapolis,Toledo(Ohio),,9 hours 43 mins,"1,057 km" +Minneapolis,Cleveland(Ohio),,11 hours 14 mins,"1,219 km" +Minneapolis,Dayton(Ohio),,10 hours 27 mins,"1,137 km" +Minneapolis,Columbus(Ohio),,11 hours 15 mins,"1,230 km" +Minneapolis,Akron(Ohio),,11 hours 30 mins,"1,253 km" +Minneapolis,Cincinnati(Ohio),,10 hours 24 mins,"1,133 km" +Toledo(Ohio),Minneapolis,,9 hours 46 mins,"1,049 km" +Toledo(Ohio),Cleveland(Ohio),,1 hour 50 mins,183 km +Toledo(Ohio),Dayton(Ohio),,2 hours 14 mins,241 km +Toledo(Ohio),Columbus(Ohio),,2 hours 20 mins,228 km +Toledo(Ohio),Akron(Ohio),,2 hours 6 mins,218 km +Toledo(Ohio),Cincinnati(Ohio),,3 hours 1 min,326 km +Cleveland(Ohio),Minneapolis,,11 hours 14 mins,"1,209 km" +Cleveland(Ohio),Toledo(Ohio),,1 hour 47 mins,184 km +Cleveland(Ohio),Dayton(Ohio),,3 hours 11 mins,340 km +Cleveland(Ohio),Columbus(Ohio),,2 hours 8 mins,228 km +Cleveland(Ohio),Akron(Ohio),,42 mins,62.3 km +Cleveland(Ohio),Cincinnati(Ohio),,3 hours 44 mins,400 km +Dayton(Ohio),Minneapolis,,10 hours 31 mins,"1,138 km" +Dayton(Ohio),Toledo(Ohio),,2 hours 13 mins,240 km +Dayton(Ohio),Cleveland(Ohio),,3 hours 13 mins,342 km +Dayton(Ohio),Columbus(Ohio),,1 hour 7 mins,115 km +Dayton(Ohio),Akron(Ohio),,2 hours 58 mins,314 km +Dayton(Ohio),Cincinnati(Ohio),,56 mins,87.2 km +Columbus(Ohio),Minneapolis,,11 hours 19 mins,"1,233 km" +Columbus(Ohio),Toledo(Ohio),,2 hours 20 mins,229 km +Columbus(Ohio),Cleveland(Ohio),,2 hours 11 mins,230 km +Columbus(Ohio),Dayton(Ohio),,1 hour 9 mins,116 km +Columbus(Ohio),Akron(Ohio),,1 hour 57 mins,202 km +Columbus(Ohio),Cincinnati(Ohio),,1 hour 39 mins,172 km +Akron(Ohio),Minneapolis,,11 hours 32 mins,"1,247 km" +Akron(Ohio),Toledo(Ohio),,2 hours 5 mins,222 km +Akron(Ohio),Cleveland(Ohio),,44 mins,63.2 km +Akron(Ohio),Dayton(Ohio),,2 hours 55 mins,314 km +Akron(Ohio),Columbus(Ohio),,1 hour 52 mins,201 km +Akron(Ohio),Cincinnati(Ohio),,3 hours 28 mins,373 km +Cincinnati(Ohio),Minneapolis,,10 hours 26 mins,"1,135 km" +Cincinnati(Ohio),Toledo(Ohio),,3 hours 1 min,326 km +Cincinnati(Ohio),Cleveland(Ohio),,3 hours 44 mins,401 km +Cincinnati(Ohio),Dayton(Ohio),,55 mins,87.3 km +Cincinnati(Ohio),Columbus(Ohio),,1 hour 39 mins,173 km +Cincinnati(Ohio),Akron(Ohio),,3 hours 29 mins,373 km +Little Rock,Phoenix,,18 hours 54 mins,"2,087 km" +Phoenix,Little Rock,,18 hours 51 mins,"2,090 km" +Memphis,Alamosa(Colorado),,15 hours 25 mins,"1,670 km" +Memphis,Grand Junction(Colorado),,19 hours 15 mins,"2,149 km" +Memphis,Durango(Colorado),,17 hours 50 mins,"1,961 km" +Memphis,Colorado Springs(Colorado),,15 hours 32 mins,"1,734 km" +Memphis,Gunnison(Colorado),,17 hours 23 mins,"1,831 km" +Memphis,Denver(Colorado),,15 hours 35 mins,"1,760 km" +Alamosa(Colorado),Memphis,,15 hours 22 mins,"1,669 km" +Grand Junction(Colorado),Memphis,,19 hours 8 mins,"2,148 km" +Durango(Colorado),Memphis,,17 hours 45 mins,"1,960 km" +Colorado Springs(Colorado),Memphis,,15 hours 28 mins,"1,734 km" +Gunnison(Colorado),Memphis,,17 hours 19 mins,"1,830 km" +Denver(Colorado),Memphis,,15 hours 33 mins,"1,763 km" +Cleveland,Sarasota(Florida),,16 hours 59 mins,"1,842 km" +Cleveland,Fort Myers(Florida),,17 hours 57 mins,"1,948 km" +Cleveland,Gainesville(Florida),,14 hours 19 mins,"1,552 km" +Cleveland,Orlando(Florida),,15 hours 12 mins,"1,670 km" +Cleveland,Daytona Beach(Florida),,14 hours 34 mins,"1,595 km" +Cleveland,Jacksonville(Florida),,13 hours 9 mins,"1,442 km" +Cleveland,Tampa(Florida),,16 hours 12 mins,"1,758 km" +Cleveland,Panama City(Florida),,15 hours 1 min,"1,573 km" +Cleveland,Key West(Florida),,21 hours 8 mins,"2,252 km" +Cleveland,West Palm Beach(Florida),,17 hours 7 mins,"1,900 km" +Cleveland,Miami(Florida),,18 hours 8 mins,"1,999 km" +Cleveland,Tallahassee(Florida),,14 hours 38 mins,"1,572 km" +Cleveland,Punta Gorda(Florida),,17 hours 31 mins,"1,912 km" +Cleveland,Fort Lauderdale(Florida),,17 hours 45 mins,"1,968 km" +Cleveland,Pensacola(Florida),,14 hours 13 mins,"1,551 km" +Sarasota(Florida),Cleveland,,17 hours 3 mins,"1,845 km" +Fort Myers(Florida),Cleveland,,17 hours 59 mins,"1,951 km" +Gainesville(Florida),Cleveland,,14 hours 24 mins,"1,556 km" +Orlando(Florida),Cleveland,,15 hours 10 mins,"1,669 km" +Daytona Beach(Florida),Cleveland,,14 hours 35 mins,"1,586 km" +Jacksonville(Florida),Cleveland,,13 hours 13 mins,"1,443 km" +Tampa(Florida),Cleveland,,16 hours 14 mins,"1,760 km" +Panama City(Florida),Cleveland,,15 hours 2 mins,"1,568 km" +Key West(Florida),Cleveland,,21 hours 10 mins,"2,252 km" +West Palm Beach(Florida),Cleveland,,17 hours 7 mins,"1,899 km" +Miami(Florida),Cleveland,,18 hours 6 mins,"2,001 km" +Tallahassee(Florida),Cleveland,,14 hours 38 mins,"1,573 km" +Punta Gorda(Florida),Cleveland,,17 hours 34 mins,"1,915 km" +Fort Lauderdale(Florida),Cleveland,,17 hours 45 mins,"1,968 km" +Pensacola(Florida),Cleveland,,14 hours 9 mins,"1,549 km" +Denver,Bozeman,,9 hours 54 mins,"1,119 km" +Bozeman,Denver,,9 hours 46 mins,"1,115 km" +Syracuse,Newark,,3 hours 44 mins,382 km +Newark,Syracuse,,3 hours 43 mins,381 km +Boston,Newark,,3 hours 51 mins,363 km +Newark,Boston,,3 hours 50 mins,361 km +Tampa,San Diego(California),,1 day 11 hours,"3,944 km" +Tampa,Redding(California),,1 day 20 hours,"4,824 km" +Tampa,Sacramento(California),,1 day 17 hours,"4,559 km" +Tampa,Fresno(California),,1 day 15 hours,"4,289 km" +Tampa,San Luis Obispo(California),,1 day 15 hours,"4,372 km" +Tampa,Oakland(California),,1 day 17 hours,"4,550 km" +Tampa,Santa Barbara(California),,1 day 14 hours,"4,221 km" +Tampa,Stockton(California),,1 day 17 hours,"4,488 km" +Tampa,Santa Rosa(California),,1 day 18 hours,"4,643 km" +Tampa,Bakersfield(California),,1 day 13 hours,"4,113 km" +Tampa,Santa Ana(California),,1 day 12 hours,"4,069 km" +Tampa,Santa Maria(California),,1 day 15 hours,"4,323 km" +Tampa,San Jose(California),,1 day 17 hours,"4,501 km" +Tampa,Burbank(California),,1 day 12 hours,"4,088 km" +Tampa,Arcata(California),,1 day 22 hours,"5,003 km" +Tampa,Butte(California),,1 day 19 hours,"4,698 km" +Tampa,Palm Springs(California),,1 day 11 hours,"3,899 km" +Tampa,Los Angeles(California),,1 day 12 hours,"4,070 km" +Tampa,Long Beach(California),,1 day 12 hours,"4,085 km" +Tampa,San Francisco(California),,1 day 17 hours,"4,569 km" +Tampa,Monterey(California),,1 day 17 hours,"4,467 km" +San Diego(California),Tampa,,1 day 11 hours,"3,940 km" +Redding(California),Tampa,,1 day 20 hours,"4,808 km" +Sacramento(California),Tampa,,1 day 17 hours,"4,550 km" +Fresno(California),Tampa,,1 day 15 hours,"4,277 km" +San Luis Obispo(California),Tampa,,1 day 15 hours,"4,372 km" +Oakland(California),Tampa,,1 day 17 hours,"4,541 km" +Santa Barbara(California),Tampa,,1 day 14 hours,"4,220 km" +Stockton(California),Tampa,,1 day 17 hours,"4,477 km" +Santa Rosa(California),Tampa,,1 day 18 hours,"4,633 km" +Bakersfield(California),Tampa,,1 day 13 hours,"4,102 km" +Santa Ana(California),Tampa,,1 day 12 hours,"4,043 km" +Santa Maria(California),Tampa,,1 day 15 hours,"4,322 km" +San Jose(California),Tampa,,1 day 17 hours,"4,491 km" +Burbank(California),Tampa,,1 day 12 hours,"4,081 km" +Arcata(California),Tampa,,1 day 22 hours,"4,995 km" +Butte(California),Tampa,,1 day 19 hours,"4,683 km" +Palm Springs(California),Tampa,,1 day 11 hours,"3,898 km" +Los Angeles(California),Tampa,,1 day 12 hours,"4,065 km" +Long Beach(California),Tampa,,1 day 12 hours,"4,076 km" +San Francisco(California),Tampa,,1 day 17 hours,"4,559 km" +Monterey(California),Tampa,,1 day 17 hours,"4,457 km" +Wilmington,New York,,9 hours 2 mins,949 km +New York,Wilmington,,9 hours 5 mins,958 km +Boston,Jacksonville,,17 hours 8 mins,"1,853 km" +Jacksonville,Boston,,17 hours 4 mins,"1,843 km" +Boise,San Diego(California),,14 hours 24 mins,"1,533 km" +Boise,Redding(California),,8 hours 47 mins,842 km +Boise,Sacramento(California),,8 hours 35 mins,890 km +Boise,Fresno(California),,11 hours 8 mins,"1,159 km" +Boise,San Luis Obispo(California),,13 hours 2 mins,"1,361 km" +Boise,Oakland(California),,9 hours 48 mins,"1,020 km" +Boise,Santa Barbara(California),,14 hours 18 mins,"1,420 km" +Boise,Stockton(California),,9 hours 17 mins,967 km +Boise,Santa Rosa(California),,10 hours 8 mins,"1,045 km" +Boise,Bakersfield(California),,12 hours 44 mins,"1,331 km" +Boise,Santa Ana(California),,13 hours 32 mins,"1,434 km" +Boise,Santa Maria(California),,13 hours 32 mins,"1,411 km" +Boise,San Jose(California),,10 hours 26 mins,"1,083 km" +Boise,Burbank(California),,13 hours 23 mins,"1,343 km" +Boise,Arcata(California),,11 hours 23 mins,"1,051 km" +Boise,Butte(California),,9 hours 17 mins,929 km +Boise,Palm Springs(California),,13 hours 37 mins,"1,449 km" +Boise,Los Angeles(California),,13 hours 34 mins,"1,438 km" +Boise,Long Beach(California),,13 hours 44 mins,"1,457 km" +Boise,San Francisco(California),,9 hours 58 mins,"1,030 km" +Boise,Monterey(California),,11 hours 28 mins,"1,190 km" +San Diego(California),Boise,,14 hours 33 mins,"1,537 km" +Redding(California),Boise,,8 hours 43 mins,843 km +Sacramento(California),Boise,,8 hours 34 mins,890 km +Fresno(California),Boise,,11 hours 4 mins,"1,157 km" +San Luis Obispo(California),Boise,,12 hours 57 mins,"1,369 km" +Oakland(California),Boise,,9 hours 46 mins,"1,019 km" +Santa Barbara(California),Boise,,14 hours 10 mins,"1,418 km" +Stockton(California),Boise,,9 hours 16 mins,966 km +Santa Rosa(California),Boise,,10 hours 7 mins,"1,045 km" +Bakersfield(California),Boise,,12 hours 39 mins,"1,330 km" +Santa Ana(California),Boise,,13 hours 37 mins,"1,434 km" +Santa Maria(California),Boise,,13 hours 27 mins,"1,421 km" +San Jose(California),Boise,,10 hours 21 mins,"1,080 km" +Burbank(California),Boise,,13 hours 11 mins,"1,340 km" +Arcata(California),Boise,,11 hours 20 mins,"1,050 km" +Butte(California),Boise,,9 hours 17 mins,914 km +Palm Springs(California),Boise,,13 hours 42 mins,"1,451 km" +Los Angeles(California),Boise,,13 hours 24 mins,"1,355 km" +Long Beach(California),Boise,,13 hours 47 mins,"1,393 km" +San Francisco(California),Boise,,9 hours 53 mins,"1,029 km" +Monterey(California),Boise,,11 hours 22 mins,"1,187 km" +Tulsa,Phoenix,,15 hours 38 mins,"1,714 km" +Phoenix,Tulsa,,15 hours 37 mins,"1,714 km" +Roswell,Phoenix,,8 hours 42 mins,929 km +Phoenix,Roswell,,8 hours 48 mins,921 km +Philadelphia,Buffalo(New York),,6 hours 8 mins,603 km +Philadelphia,Manhattan(New York),,1 hour 51 mins,157 km +Philadelphia,Niagara Falls(New York),,6 hours 25 mins,668 km +Philadelphia,Islip(New York),,2 hours 31 mins,228 km +Philadelphia,New York(New York),,1 hour 42 mins,151 km +Philadelphia,Watertown(New York),,5 hours 4 mins,521 km +Philadelphia,Newburgh(New York),,2 hours 31 mins,243 km +Philadelphia,Syracuse(New York),,4 hours 0 mins,408 km +Philadelphia,Plattsburgh(New York),,5 hours 58 mins,631 km +Philadelphia,Ogdensburg(New York),,6 hours 2 mins,614 km +Philadelphia,Ithaca(New York),,3 hours 54 mins,369 km +Philadelphia,Elmira(New York),,3 hours 48 mins,383 km +Philadelphia,White Plains(New York),,2 hours 9 mins,202 km +Philadelphia,Albany(New York),,3 hours 38 mins,374 km +Philadelphia,Binghamton(New York),,3 hours 0 mins,296 km +Philadelphia,Rochester(New York),,5 hours 17 mins,547 km +Buffalo(New York),Philadelphia,,6 hours 8 mins,611 km +Manhattan(New York),Philadelphia,,1 hour 49 mins,158 km +Niagara Falls(New York),Philadelphia,,6 hours 23 mins,668 km +Islip(New York),Philadelphia,,2 hours 30 mins,226 km +New York(New York),Philadelphia,,1 hour 41 mins,152 km +Watertown(New York),Philadelphia,,5 hours 2 mins,521 km +Newburgh(New York),Philadelphia,,2 hours 33 mins,246 km +Syracuse(New York),Philadelphia,,3 hours 58 mins,408 km +Plattsburgh(New York),Philadelphia,,5 hours 58 mins,634 km +Ogdensburg(New York),Philadelphia,,6 hours 1 min,614 km +Ithaca(New York),Philadelphia,,3 hours 52 mins,369 km +Elmira(New York),Philadelphia,,3 hours 44 mins,382 km +White Plains(New York),Philadelphia,,2 hours 7 mins,201 km +Albany(New York),Philadelphia,,3 hours 39 mins,376 km +Binghamton(New York),Philadelphia,,2 hours 57 mins,295 km +Rochester(New York),Philadelphia,,5 hours 14 mins,547 km +Tampa,Greensboro(North Carolina),,9 hours 44 mins,"1,051 km" +Tampa,Wilmington(North Carolina),,9 hours 19 mins,"1,019 km" +Tampa,New Bern(North Carolina),,10 hours 35 mins,"1,153 km" +Tampa,Charlotte(North Carolina),,8 hours 34 mins,934 km +Tampa,Raleigh(North Carolina),,9 hours 31 mins,"1,046 km" +Tampa,Asheville(North Carolina),,9 hours 29 mins,"1,029 km" +Tampa,Fayetteville(North Carolina),,8 hours 37 mins,950 km +Greensboro(North Carolina),Tampa,,9 hours 46 mins,"1,037 km" +Wilmington(North Carolina),Tampa,,9 hours 21 mins,"1,019 km" +New Bern(North Carolina),Tampa,,10 hours 37 mins,"1,153 km" +Charlotte(North Carolina),Tampa,,8 hours 34 mins,933 km +Raleigh(North Carolina),Tampa,,9 hours 34 mins,"1,048 km" +Asheville(North Carolina),Tampa,,9 hours 28 mins,"1,028 km" +Fayetteville(North Carolina),Tampa,,8 hours 38 mins,949 km +Hartford,Abilene(Texas),,1 day 3 hours,"2,976 km" +Hartford,Amarillo(Texas),,1 day 3 hours,"2,952 km" +Hartford,Harlingen(Texas),,1 day 7 hours,"3,343 km" +Hartford,Lubbock(Texas),,1 day 4 hours,"3,090 km" +Hartford,College Station(Texas),,1 day 2 hours,"2,840 km" +Hartford,Corpus Christi(Texas),,1 day 5 hours,"3,148 km" +Hartford,Wichita Falls(Texas),,1 day 1 hour,"2,755 km" +Hartford,Waco(Texas),,1 day 2 hours,"2,842 km" +Hartford,San Angelo(Texas),,1 day 5 hours,"3,100 km" +Hartford,Houston(Texas),,1 day 2 hours,"2,815 km" +Hartford,San Antonio(Texas),,1 day 5 hours,"3,129 km" +Hartford,Del Rio(Texas),,1 day 7 hours,"3,376 km" +Hartford,Mission(Texas),,1 day 7 hours,"3,382 km" +Hartford,Beaumont(Texas),,1 day 1 hour,"2,681 km" +Hartford,Longview(Texas),,23 hours 35 mins,"2,574 km" +Hartford,Midland(Texas),,1 day 5 hours,"3,201 km" +Hartford,El Paso(Texas),,1 day 9 hours,"3,649 km" +Hartford,Brownsville(Texas),,1 day 7 hours,"3,382 km" +Hartford,Austin(Texas),,1 day 3 hours,"3,000 km" +Hartford,Dallas(Texas),,1 day 1 hour,"2,686 km" +Hartford,Killeen(Texas),,1 day 3 hours,"2,935 km" +Hartford,Laredo(Texas),,1 day 7 hours,"3,320 km" +Hartford,Texarkana(Texas),,22 hours 12 mins,"2,406 km" +Abilene(Texas),Hartford,,1 day 3 hours,"2,978 km" +Amarillo(Texas),Hartford,,1 day 3 hours,"2,954 km" +Harlingen(Texas),Hartford,,1 day 7 hours,"3,344 km" +Lubbock(Texas),Hartford,,1 day 4 hours,"3,094 km" +College Station(Texas),Hartford,,1 day 2 hours,"2,837 km" +Corpus Christi(Texas),Hartford,,1 day 5 hours,"3,155 km" +Wichita Falls(Texas),Hartford,,1 day 1 hour,"2,759 km" +Waco(Texas),Hartford,,1 day 2 hours,"2,839 km" +San Angelo(Texas),Hartford,,1 day 4 hours,"3,102 km" +Houston(Texas),Hartford,,1 day 2 hours,"2,817 km" +San Antonio(Texas),Hartford,,1 day 5 hours,"3,127 km" +Del Rio(Texas),Hartford,,1 day 7 hours,"3,355 km" +Mission(Texas),Hartford,,1 day 7 hours,"3,385 km" +Beaumont(Texas),Hartford,,1 day 1 hour,"2,683 km" +Longview(Texas),Hartford,,23 hours 33 mins,"2,570 km" +Midland(Texas),Hartford,,1 day 5 hours,"3,206 km" +El Paso(Texas),Hartford,,1 day 9 hours,"3,651 km" +Brownsville(Texas),Hartford,,1 day 7 hours,"3,385 km" +Austin(Texas),Hartford,,1 day 3 hours,"3,001 km" +Dallas(Texas),Hartford,,1 day 1 hour,"2,688 km" +Killeen(Texas),Hartford,,1 day 3 hours,"2,936 km" +Laredo(Texas),Hartford,,1 day 7 hours,"3,323 km" +Texarkana(Texas),Hartford,,22 hours 12 mins,"2,406 km" +Bloomington,Sarasota(Florida),,14 hours 55 mins,"1,646 km" +Bloomington,Fort Myers(Florida),,15 hours 52 mins,"1,751 km" +Bloomington,Gainesville(Florida),,12 hours 31 mins,"1,362 km" +Bloomington,Orlando(Florida),,13 hours 55 mins,"1,534 km" +Bloomington,Daytona Beach(Florida),,13 hours 59 mins,"1,534 km" +Bloomington,Jacksonville(Florida),,12 hours 36 mins,"1,384 km" +Bloomington,Tampa(Florida),,14 hours 7 mins,"1,562 km" +Bloomington,Panama City(Florida),,11 hours 22 mins,"1,168 km" +Bloomington,Key West(Florida),,20 hours 7 mins,"2,148 km" +Bloomington,West Palm Beach(Florida),,16 hours 8 mins,"1,789 km" +Bloomington,Miami(Florida),,17 hours 7 mins,"1,894 km" +Bloomington,Tallahassee(Florida),,11 hours 39 mins,"1,223 km" +Bloomington,Punta Gorda(Florida),,15 hours 26 mins,"1,716 km" +Bloomington,Fort Lauderdale(Florida),,16 hours 46 mins,"1,857 km" +Bloomington,Pensacola(Florida),,10 hours 34 mins,"1,146 km" +Sarasota(Florida),Bloomington,,14 hours 52 mins,"1,648 km" +Fort Myers(Florida),Bloomington,,15 hours 49 mins,"1,754 km" +Gainesville(Florida),Bloomington,,12 hours 28 mins,"1,363 km" +Orlando(Florida),Bloomington,,13 hours 50 mins,"1,534 km" +Daytona Beach(Florida),Bloomington,,13 hours 56 mins,"1,526 km" +Jacksonville(Florida),Bloomington,,12 hours 36 mins,"1,386 km" +Tampa(Florida),Bloomington,,14 hours 4 mins,"1,563 km" +Panama City(Florida),Bloomington,,11 hours 22 mins,"1,164 km" +Key West(Florida),Bloomington,,20 hours 5 mins,"2,149 km" +West Palm Beach(Florida),Bloomington,,16 hours 5 mins,"1,792 km" +Miami(Florida),Bloomington,,17 hours 2 mins,"1,898 km" +Tallahassee(Florida),Bloomington,,11 hours 39 mins,"1,219 km" +Punta Gorda(Florida),Bloomington,,15 hours 24 mins,"1,718 km" +Fort Lauderdale(Florida),Bloomington,,16 hours 43 mins,"1,860 km" +Pensacola(Florida),Bloomington,,10 hours 29 mins,"1,145 km" +Memphis,Abilene(Texas),,9 hours 16 mins,"1,018 km" +Memphis,Amarillo(Texas),,10 hours 22 mins,"1,166 km" +Memphis,Harlingen(Texas),,13 hours 38 mins,"1,441 km" +Memphis,Lubbock(Texas),,11 hours 39 mins,"1,283 km" +Memphis,College Station(Texas),,8 hours 44 mins,886 km +Memphis,Corpus Christi(Texas),,11 hours 52 mins,"1,247 km" +Memphis,Wichita Falls(Texas),,8 hours 30 mins,963 km +Memphis,Waco(Texas),,8 hours 2 mins,884 km +Memphis,San Angelo(Texas),,10 hours 30 mins,"1,142 km" +Memphis,Houston(Texas),,8 hours 44 mins,913 km +Memphis,San Antonio(Texas),,10 hours 38 mins,"1,169 km" +Memphis,Del Rio(Texas),,12 hours 55 mins,"1,395 km" +Memphis,Mission(Texas),,14 hours 7 mins,"1,554 km" +Memphis,Beaumont(Texas),,8 hours 12 mins,913 km +Memphis,Longview(Texas),,5 hours 36 mins,589 km +Memphis,Midland(Texas),,11 hours 24 mins,"1,259 km" +Memphis,El Paso(Texas),,15 hours 42 mins,"1,749 km" +Memphis,Brownsville(Texas),,13 hours 59 mins,"1,481 km" +Memphis,Austin(Texas),,9 hours 26 mins,"1,043 km" +Memphis,Dallas(Texas),,6 hours 39 mins,729 km +Memphis,Killeen(Texas),,8 hours 50 mins,977 km +Memphis,Laredo(Texas),,12 hours 54 mins,"1,420 km" +Memphis,Texarkana(Texas),,4 hours 10 mins,449 km +Abilene(Texas),Memphis,,9 hours 13 mins,"1,018 km" +Amarillo(Texas),Memphis,,10 hours 20 mins,"1,166 km" +Harlingen(Texas),Memphis,,13 hours 32 mins,"1,441 km" +Lubbock(Texas),Memphis,,11 hours 21 mins,"1,209 km" +College Station(Texas),Memphis,,8 hours 39 mins,882 km +Corpus Christi(Texas),Memphis,,11 hours 54 mins,"1,251 km" +Wichita Falls(Texas),Memphis,,8 hours 19 mins,876 km +Waco(Texas),Memphis,,7 hours 58 mins,879 km +San Angelo(Texas),Memphis,,10 hours 25 mins,"1,142 km" +Houston(Texas),Memphis,,8 hours 42 mins,913 km +San Antonio(Texas),Memphis,,10 hours 33 mins,"1,167 km" +Del Rio(Texas),Memphis,,12 hours 48 mins,"1,395 km" +Mission(Texas),Memphis,,14 hours 0 mins,"1,553 km" +Beaumont(Texas),Memphis,,8 hours 12 mins,913 km +Longview(Texas),Memphis,,5 hours 34 mins,588 km +Midland(Texas),Memphis,,11 hours 19 mins,"1,258 km" +El Paso(Texas),Memphis,,15 hours 37 mins,"1,748 km" +Brownsville(Texas),Memphis,,13 hours 56 mins,"1,481 km" +Austin(Texas),Memphis,,9 hours 22 mins,"1,041 km" +Dallas(Texas),Memphis,,6 hours 36 mins,728 km +Killeen(Texas),Memphis,,8 hours 47 mins,976 km +Laredo(Texas),Memphis,,12 hours 51 mins,"1,418 km" +Texarkana(Texas),Memphis,,4 hours 7 mins,446 km +Norfolk,Pellston(Michigan),,14 hours 21 mins,"1,566 km" +Norfolk,Traverse City(Michigan),,14 hours 21 mins,"1,525 km" +Norfolk,Alpena(Michigan),,14 hours 20 mins,"1,513 km" +Norfolk,Iron Mountain(Michigan),,17 hours 47 mins,"1,896 km" +Norfolk,Kalamazoo(Michigan),,12 hours 12 mins,"1,286 km" +Norfolk,Saginaw(Michigan),,12 hours 2 mins,"1,279 km" +Norfolk,Grand Rapids(Michigan),,12 hours 39 mins,"1,352 km" +Norfolk,Lansing(Michigan),,11 hours 41 mins,"1,244 km" +Norfolk,Muskegon(Michigan),,13 hours 12 mins,"1,416 km" +Norfolk,Hancock(Michigan),,18 hours 58 mins,"2,005 km" +Norfolk,Detroit(Michigan),,10 hours 49 mins,"1,142 km" +Norfolk,Escanaba(Michigan),,16 hours 51 mins,"1,814 km" +Pellston(Michigan),Norfolk,,14 hours 27 mins,"1,569 km" +Traverse City(Michigan),Norfolk,,14 hours 29 mins,"1,528 km" +Alpena(Michigan),Norfolk,,14 hours 25 mins,"1,515 km" +Iron Mountain(Michigan),Norfolk,,17 hours 52 mins,"1,898 km" +Kalamazoo(Michigan),Norfolk,,12 hours 16 mins,"1,287 km" +Saginaw(Michigan),Norfolk,,12 hours 6 mins,"1,281 km" +Grand Rapids(Michigan),Norfolk,,12 hours 43 mins,"1,355 km" +Lansing(Michigan),Norfolk,,11 hours 48 mins,"1,247 km" +Muskegon(Michigan),Norfolk,,13 hours 18 mins,"1,419 km" +Hancock(Michigan),Norfolk,,19 hours 4 mins,"2,009 km" +Detroit(Michigan),Norfolk,,10 hours 55 mins,"1,144 km" +Escanaba(Michigan),Norfolk,,16 hours 56 mins,"1,816 km" +North Platte,Alamosa(Colorado),,7 hours 14 mins,801 km +North Platte,Grand Junction(Colorado),,7 hours 27 mins,809 km +North Platte,Durango(Colorado),,9 hours 38 mins,959 km +North Platte,Colorado Springs(Colorado),,4 hours 45 mins,538 km +North Platte,Gunnison(Colorado),,7 hours 12 mins,740 km +North Platte,Denver(Colorado),,3 hours 50 mins,423 km +Alamosa(Colorado),North Platte,,7 hours 9 mins,800 km +Grand Junction(Colorado),North Platte,,7 hours 22 mins,809 km +Durango(Colorado),North Platte,,9 hours 33 mins,960 km +Colorado Springs(Colorado),North Platte,,4 hours 40 mins,536 km +Gunnison(Colorado),North Platte,,7 hours 7 mins,741 km +Denver(Colorado),North Platte,,3 hours 48 mins,427 km +Green Bay,Sarasota(Florida),,20 hours 59 mins,"2,309 km" +Green Bay,Fort Myers(Florida),,21 hours 56 mins,"2,414 km" +Green Bay,Gainesville(Florida),,18 hours 35 mins,"2,025 km" +Green Bay,Orlando(Florida),,19 hours 59 mins,"2,197 km" +Green Bay,Daytona Beach(Florida),,20 hours 3 mins,"2,197 km" +Green Bay,Jacksonville(Florida),,18 hours 40 mins,"2,047 km" +Green Bay,Tampa(Florida),,20 hours 11 mins,"2,225 km" +Green Bay,Panama City(Florida),,17 hours 26 mins,"1,831 km" +Green Bay,Key West(Florida),,1 day 2 hours,"2,811 km" +Green Bay,West Palm Beach(Florida),,22 hours 12 mins,"2,452 km" +Green Bay,Miami(Florida),,23 hours 11 mins,"2,557 km" +Green Bay,Tallahassee(Florida),,17 hours 43 mins,"1,886 km" +Green Bay,Punta Gorda(Florida),,21 hours 31 mins,"2,379 km" +Green Bay,Fort Lauderdale(Florida),,22 hours 50 mins,"2,520 km" +Green Bay,Pensacola(Florida),,16 hours 38 mins,"1,809 km" +Sarasota(Florida),Green Bay,,20 hours 58 mins,"2,312 km" +Fort Myers(Florida),Green Bay,,21 hours 55 mins,"2,418 km" +Gainesville(Florida),Green Bay,,18 hours 34 mins,"2,026 km" +Orlando(Florida),Green Bay,,19 hours 56 mins,"2,198 km" +Daytona Beach(Florida),Green Bay,,20 hours 2 mins,"2,189 km" +Jacksonville(Florida),Green Bay,,18 hours 41 mins,"2,050 km" +Tampa(Florida),Green Bay,,20 hours 10 mins,"2,227 km" +Panama City(Florida),Green Bay,,17 hours 28 mins,"1,828 km" +Key West(Florida),Green Bay,,1 day 2 hours,"2,813 km" +West Palm Beach(Florida),Green Bay,,22 hours 10 mins,"2,456 km" +Miami(Florida),Green Bay,,23 hours 8 mins,"2,561 km" +Tallahassee(Florida),Green Bay,,17 hours 45 mins,"1,883 km" +Punta Gorda(Florida),Green Bay,,21 hours 29 mins,"2,381 km" +Fort Lauderdale(Florida),Green Bay,,22 hours 49 mins,"2,524 km" +Pensacola(Florida),Green Bay,,16 hours 35 mins,"1,808 km" +Helena,Salt Lake City(Utah),,6 hours 52 mins,778 km +Helena,Moab(Utah),,10 hours 27 mins,"1,151 km" +Helena,Ogden(Utah),,6 hours 23 mins,722 km +Helena,Vernal(Utah),,9 hours 42 mins,"1,053 km" +Helena,Provo(Utah),,7 hours 30 mins,848 km +Helena,Cedar City(Utah),,10 hours 17 mins,"1,180 km" +Salt Lake City(Utah),Helena,,6 hours 53 mins,778 km +Salt Lake City(Utah),Moab(Utah),,3 hours 42 mins,376 km +Salt Lake City(Utah),Ogden(Utah),,37 mins,61.4 km +Salt Lake City(Utah),Vernal(Utah),,2 hours 57 mins,278 km +Salt Lake City(Utah),Provo(Utah),,45 mins,72.9 km +Salt Lake City(Utah),Cedar City(Utah),,3 hours 33 mins,405 km +Moab(Utah),Helena,,10 hours 28 mins,"1,151 km" +Moab(Utah),Salt Lake City(Utah),,3 hours 43 mins,376 km +Moab(Utah),Ogden(Utah),,4 hours 12 mins,434 km +Moab(Utah),Vernal(Utah),,3 hours 40 mins,349 km +Moab(Utah),Provo(Utah),,3 hours 5 mins,306 km +Moab(Utah),Cedar City(Utah),,4 hours 14 mins,464 km +Ogden(Utah),Helena,,6 hours 24 mins,722 km +Ogden(Utah),Salt Lake City(Utah),,38 mins,61.6 km +Ogden(Utah),Moab(Utah),,4 hours 13 mins,434 km +Ogden(Utah),Vernal(Utah),,3 hours 28 mins,336 km +Ogden(Utah),Provo(Utah),,1 hour 16 mins,131 km +Ogden(Utah),Cedar City(Utah),,4 hours 3 mins,463 km +Vernal(Utah),Helena,,9 hours 38 mins,900 km +Vernal(Utah),Salt Lake City(Utah),,3 hours 2 mins,277 km +Vernal(Utah),Moab(Utah),,3 hours 39 mins,349 km +Vernal(Utah),Ogden(Utah),,3 hours 30 mins,336 km +Vernal(Utah),Provo(Utah),,2 hours 46 mins,248 km +Vernal(Utah),Cedar City(Utah),,5 hours 37 mins,566 km +Provo(Utah),Helena,,7 hours 31 mins,847 km +Provo(Utah),Salt Lake City(Utah),,46 mins,72.3 km +Provo(Utah),Moab(Utah),,3 hours 7 mins,306 km +Provo(Utah),Ogden(Utah),,1 hour 15 mins,130 km +Provo(Utah),Vernal(Utah),,2 hours 40 mins,247 km +Provo(Utah),Cedar City(Utah),,2 hours 57 mins,335 km +Cedar City(Utah),Helena,,10 hours 18 mins,"1,180 km" +Cedar City(Utah),Salt Lake City(Utah),,3 hours 33 mins,405 km +Cedar City(Utah),Moab(Utah),,4 hours 12 mins,464 km +Cedar City(Utah),Ogden(Utah),,4 hours 2 mins,463 km +Cedar City(Utah),Vernal(Utah),,5 hours 29 mins,565 km +Cedar City(Utah),Provo(Utah),,2 hours 55 mins,335 km +Orlando,Abilene(Texas),,18 hours 23 mins,"2,041 km" +Orlando,Amarillo(Texas),,21 hours 13 mins,"2,340 km" +Orlando,Harlingen(Texas),,18 hours 35 mins,"2,077 km" +Orlando,Lubbock(Texas),,20 hours 46 mins,"2,306 km" +Orlando,College Station(Texas),,15 hours 6 mins,"1,694 km" +Orlando,Corpus Christi(Texas),,16 hours 49 mins,"1,882 km" +Orlando,Wichita Falls(Texas),,17 hours 49 mins,"1,979 km" +Orlando,Waco(Texas),,16 hours 25 mins,"1,805 km" +Orlando,San Angelo(Texas),,19 hours 23 mins,"2,133 km" +Orlando,Houston(Texas),,13 hours 41 mins,"1,549 km" +Orlando,San Antonio(Texas),,16 hours 33 mins,"1,863 km" +Orlando,Del Rio(Texas),,18 hours 57 mins,"2,110 km" +Orlando,Mission(Texas),,19 hours 1 min,"2,117 km" +Orlando,Beaumont(Texas),,12 hours 28 mins,"1,416 km" +Orlando,Longview(Texas),,14 hours 5 mins,"1,552 km" +Orlando,Midland(Texas),,20 hours 31 mins,"2,282 km" +Orlando,El Paso(Texas),,1 day 0 hours,"2,748 km" +Orlando,Brownsville(Texas),,18 hours 56 mins,"2,116 km" +Orlando,Austin(Texas),,16 hours 9 mins,"1,812 km" +Orlando,Dallas(Texas),,15 hours 48 mins,"1,753 km" +Orlando,Killeen(Texas),,16 hours 44 mins,"1,867 km" +Orlando,Laredo(Texas),,18 hours 42 mins,"2,055 km" +Orlando,Texarkana(Texas),,14 hours 7 mins,"1,563 km" +Abilene(Texas),Orlando,,18 hours 25 mins,"2,038 km" +Amarillo(Texas),Orlando,,21 hours 16 mins,"2,330 km" +Harlingen(Texas),Orlando,,18 hours 35 mins,"2,078 km" +Lubbock(Texas),Orlando,,20 hours 45 mins,"2,304 km" +College Station(Texas),Orlando,,15 hours 7 mins,"1,699 km" +Corpus Christi(Texas),Orlando,,16 hours 57 mins,"1,889 km" +Wichita Falls(Texas),Orlando,,17 hours 54 mins,"1,968 km" +Waco(Texas),Orlando,,16 hours 28 mins,"1,806 km" +San Angelo(Texas),Orlando,,19 hours 27 mins,"2,134 km" +Houston(Texas),Orlando,,13 hours 45 mins,"1,550 km" +San Antonio(Texas),Orlando,,16 hours 38 mins,"1,864 km" +Del Rio(Texas),Orlando,,19 hours 3 mins,"2,111 km" +Mission(Texas),Orlando,,19 hours 3 mins,"2,118 km" +Beaumont(Texas),Orlando,,12 hours 32 mins,"1,417 km" +Longview(Texas),Orlando,,14 hours 7 mins,"1,548 km" +Midland(Texas),Orlando,,20 hours 31 mins,"2,278 km" +El Paso(Texas),Orlando,,1 day 0 hours,"2,749 km" +Brownsville(Texas),Orlando,,18 hours 59 mins,"2,118 km" +Austin(Texas),Orlando,,16 hours 12 mins,"1,814 km" +Dallas(Texas),Orlando,,15 hours 51 mins,"1,747 km" +Killeen(Texas),Orlando,,16 hours 47 mins,"1,862 km" +Laredo(Texas),Orlando,,18 hours 42 mins,"2,056 km" +Texarkana(Texas),Orlando,,14 hours 13 mins,"1,566 km" +Minneapolis,Baltimore,,16 hours 36 mins,"1,795 km" +Baltimore,Minneapolis,,16 hours 36 mins,"1,785 km" +Madison,Moline(Illinois),,2 hours 41 mins,269 km +Madison,Belleville(Illinois),,5 hours 24 mins,575 km +Madison,Bloomington(Illinois),,3 hours 1 min,322 km +Madison,Champaign(Illinois),,3 hours 42 mins,402 km +Madison,Chicago(Illinois),,2 hours 22 mins,237 km +Madison,Rockford(Illinois),,1 hour 18 mins,118 km +Madison,Peoria(Illinois),,3 hours 12 mins,324 km +Moline(Illinois),Madison,,2 hours 44 mins,267 km +Belleville(Illinois),Madison,,5 hours 27 mins,575 km +Bloomington(Illinois),Madison,,3 hours 3 mins,319 km +Champaign(Illinois),Madison,,3 hours 46 mins,404 km +Chicago(Illinois),Madison,,2 hours 23 mins,237 km +Rockford(Illinois),Madison,,1 hour 21 mins,119 km +Peoria(Illinois),Madison,,3 hours 15 mins,322 km +San Francisco,Kahului,,, +Kahului,San Francisco,,, +Dallas,Indianapolis,,13 hours 10 mins,"1,447 km" +Indianapolis,Dallas,,13 hours 14 mins,"1,432 km" +Washington,Pellston(Michigan),,11 hours 36 mins,"1,262 km" +Washington,Traverse City(Michigan),,11 hours 36 mins,"1,221 km" +Washington,Alpena(Michigan),,11 hours 34 mins,"1,210 km" +Washington,Iron Mountain(Michigan),,15 hours 2 mins,"1,592 km" +Washington,Kalamazoo(Michigan),,9 hours 27 mins,982 km +Washington,Saginaw(Michigan),,9 hours 16 mins,975 km +Washington,Grand Rapids(Michigan),,9 hours 54 mins,"1,049 km" +Washington,Lansing(Michigan),,8 hours 56 mins,941 km +Washington,Muskegon(Michigan),,10 hours 27 mins,"1,112 km" +Washington,Hancock(Michigan),,16 hours 13 mins,"1,702 km" +Washington,Detroit(Michigan),,8 hours 4 mins,838 km +Washington,Escanaba(Michigan),,14 hours 6 mins,"1,510 km" +Pellston(Michigan),Washington,,11 hours 48 mins,"1,262 km" +Traverse City(Michigan),Washington,,11 hours 50 mins,"1,221 km" +Alpena(Michigan),Washington,,11 hours 46 mins,"1,208 km" +Iron Mountain(Michigan),Washington,,15 hours 13 mins,"1,592 km" +Kalamazoo(Michigan),Washington,,9 hours 37 mins,981 km +Saginaw(Michigan),Washington,,9 hours 27 mins,975 km +Grand Rapids(Michigan),Washington,,10 hours 4 mins,"1,048 km" +Lansing(Michigan),Washington,,9 hours 9 mins,941 km +Muskegon(Michigan),Washington,,10 hours 39 mins,"1,112 km" +Hancock(Michigan),Washington,,16 hours 25 mins,"1,702 km" +Detroit(Michigan),Washington,,8 hours 15 mins,838 km +Escanaba(Michigan),Washington,,14 hours 17 mins,"1,510 km" +Chicago,Sarasota(Florida),,17 hours 56 mins,"1,970 km" +Chicago,Fort Myers(Florida),,18 hours 53 mins,"2,076 km" +Chicago,Gainesville(Florida),,15 hours 32 mins,"1,686 km" +Chicago,Orlando(Florida),,16 hours 56 mins,"1,858 km" +Chicago,Daytona Beach(Florida),,17 hours 0 mins,"1,858 km" +Chicago,Jacksonville(Florida),,15 hours 37 mins,"1,708 km" +Chicago,Tampa(Florida),,17 hours 8 mins,"1,886 km" +Chicago,Panama City(Florida),,14 hours 23 mins,"1,492 km" +Chicago,Key West(Florida),,23 hours 8 mins,"2,472 km" +Chicago,West Palm Beach(Florida),,19 hours 9 mins,"2,114 km" +Chicago,Miami(Florida),,20 hours 7 mins,"2,218 km" +Chicago,Tallahassee(Florida),,14 hours 40 mins,"1,547 km" +Chicago,Punta Gorda(Florida),,18 hours 27 mins,"2,040 km" +Chicago,Fort Lauderdale(Florida),,19 hours 47 mins,"2,182 km" +Chicago,Pensacola(Florida),,13 hours 35 mins,"1,470 km" +Sarasota(Florida),Chicago,,17 hours 55 mins,"1,972 km" +Fort Myers(Florida),Chicago,,18 hours 52 mins,"2,078 km" +Gainesville(Florida),Chicago,,15 hours 31 mins,"1,687 km" +Orlando(Florida),Chicago,,16 hours 53 mins,"1,858 km" +Daytona Beach(Florida),Chicago,,16 hours 59 mins,"1,850 km" +Jacksonville(Florida),Chicago,,15 hours 38 mins,"1,710 km" +Tampa(Florida),Chicago,,17 hours 7 mins,"1,887 km" +Panama City(Florida),Chicago,,14 hours 25 mins,"1,488 km" +Key West(Florida),Chicago,,23 hours 8 mins,"2,473 km" +West Palm Beach(Florida),Chicago,,19 hours 8 mins,"2,116 km" +Miami(Florida),Chicago,,20 hours 5 mins,"2,222 km" +Tallahassee(Florida),Chicago,,14 hours 42 mins,"1,543 km" +Punta Gorda(Florida),Chicago,,18 hours 27 mins,"2,042 km" +Fort Lauderdale(Florida),Chicago,,19 hours 46 mins,"2,184 km" +Pensacola(Florida),Chicago,,13 hours 32 mins,"1,469 km" +Chicago,Buffalo(New York),,8 hours 6 mins,865 km +Chicago,Manhattan(New York),,12 hours 4 mins,"1,285 km" +Chicago,Niagara Falls(New York),,8 hours 27 mins,896 km +Chicago,Islip(New York),,12 hours 51 mins,"1,355 km" +Chicago,New York(New York),,12 hours 1 min,"1,271 km" +Chicago,Watertown(New York),,11 hours 5 mins,"1,194 km" +Chicago,Newburgh(New York),,11 hours 58 mins,"1,284 km" +Chicago,Syracuse(New York),,10 hours 9 mins,"1,091 km" +Chicago,Plattsburgh(New York),,13 hours 13 mins,"1,371 km" +Chicago,Ogdensburg(New York),,11 hours 9 mins,"1,184 km" +Chicago,Ithaca(New York),,10 hours 16 mins,"1,084 km" +Chicago,Elmira(New York),,9 hours 46 mins,"1,047 km" +Chicago,White Plains(New York),,12 hours 8 mins,"1,309 km" +Chicago,Albany(New York),,12 hours 9 mins,"1,318 km" +Chicago,Binghamton(New York),,10 hours 34 mins,"1,135 km" +Chicago,Rochester(New York),,9 hours 3 mins,970 km +Buffalo(New York),Chicago,,8 hours 7 mins,864 km +Manhattan(New York),Chicago,,12 hours 2 mins,"1,284 km" +Niagara Falls(New York),Chicago,,8 hours 28 mins,895 km +Islip(New York),Chicago,,12 hours 52 mins,"1,353 km" +New York(New York),Chicago,,11 hours 59 mins,"1,271 km" +Watertown(New York),Chicago,,11 hours 7 mins,"1,193 km" +Newburgh(New York),Chicago,,11 hours 59 mins,"1,284 km" +Syracuse(New York),Chicago,,10 hours 10 mins,"1,090 km" +Plattsburgh(New York),Chicago,,13 hours 17 mins,"1,371 km" +Ogdensburg(New York),Chicago,,11 hours 12 mins,"1,184 km" +Ithaca(New York),Chicago,,10 hours 16 mins,"1,083 km" +Elmira(New York),Chicago,,9 hours 46 mins,"1,047 km" +White Plains(New York),Chicago,,12 hours 9 mins,"1,308 km" +Albany(New York),Chicago,,12 hours 10 mins,"1,315 km" +Binghamton(New York),Chicago,,10 hours 35 mins,"1,134 km" +Rochester(New York),Chicago,,9 hours 5 mins,969 km +Little Rock,Atlanta,,7 hours 43 mins,836 km +Atlanta,Little Rock,,7 hours 41 mins,850 km +Miami,Pellston(Michigan),,23 hours 19 mins,"2,637 km" +Miami,Traverse City(Michigan),,23 hours 17 mins,"2,567 km" +Miami,Alpena(Michigan),,23 hours 17 mins,"2,584 km" +Miami,Iron Mountain(Michigan),,1 day 1 hour,"2,719 km" +Miami,Kalamazoo(Michigan),,20 hours 46 mins,"2,289 km" +Miami,Saginaw(Michigan),,20 hours 59 mins,"2,350 km" +Miami,Grand Rapids(Michigan),,21 hours 11 mins,"2,338 km" +Miami,Lansing(Michigan),,20 hours 39 mins,"2,315 km" +Miami,Muskegon(Michigan),,21 hours 27 mins,"2,353 km" +Miami,Hancock(Michigan),,1 day 3 hours,"2,899 km" +Miami,Detroit(Michigan),,19 hours 56 mins,"2,230 km" +Miami,Escanaba(Michigan),,1 day 1 hour,"2,738 km" +Pellston(Michigan),Miami,,23 hours 22 mins,"2,634 km" +Traverse City(Michigan),Miami,,23 hours 23 mins,"2,593 km" +Alpena(Michigan),Miami,,23 hours 19 mins,"2,579 km" +Iron Mountain(Michigan),Miami,,1 day 1 hour,"2,715 km" +Kalamazoo(Michigan),Miami,,20 hours 48 mins,"2,291 km" +Saginaw(Michigan),Miami,,21 hours 1 min,"2,346 km" +Grand Rapids(Michigan),Miami,,21 hours 14 mins,"2,338 km" +Lansing(Michigan),Miami,,20 hours 42 mins,"2,312 km" +Muskegon(Michigan),Miami,,21 hours 31 mins,"2,349 km" +Hancock(Michigan),Miami,,1 day 3 hours,"2,895 km" +Detroit(Michigan),Miami,,20 hours 0 mins,"2,228 km" +Escanaba(Michigan),Miami,,1 day 1 hour,"2,734 km" +Punta Gorda,Cedar Rapids(Iowa),,20 hours 8 mins,"2,237 km" +Punta Gorda,Sioux City(Iowa),,23 hours 24 mins,"2,623 km" +Punta Gorda,Dubuque(Iowa),,20 hours 23 mins,"2,268 km" +Punta Gorda,Des Moines(Iowa),,21 hours 14 mins,"2,343 km" +Punta Gorda,Fort Dodge(Iowa),,22 hours 23 mins,"2,479 km" +Punta Gorda,Mason City(Iowa),,22 hours 16 mins,"2,453 km" +Cedar Rapids(Iowa),Punta Gorda,,20 hours 9 mins,"2,233 km" +Cedar Rapids(Iowa),Sioux City(Iowa),,4 hours 7 mins,425 km +Cedar Rapids(Iowa),Dubuque(Iowa),,1 hour 20 mins,119 km +Cedar Rapids(Iowa),Des Moines(Iowa),,1 hour 56 mins,205 km +Cedar Rapids(Iowa),Fort Dodge(Iowa),,2 hours 19 mins,243 km +Cedar Rapids(Iowa),Mason City(Iowa),,2 hours 13 mins,216 km +Sioux City(Iowa),Punta Gorda,,23 hours 28 mins,"2,622 km" +Sioux City(Iowa),Cedar Rapids(Iowa),,4 hours 5 mins,425 km +Sioux City(Iowa),Dubuque(Iowa),,4 hours 43 mins,483 km +Sioux City(Iowa),Des Moines(Iowa),,2 hours 55 mins,319 km +Sioux City(Iowa),Fort Dodge(Iowa),,2 hours 1 min,189 km +Sioux City(Iowa),Mason City(Iowa),,3 hours 17 mins,332 km +Dubuque(Iowa),Punta Gorda,,20 hours 26 mins,"2,267 km" +Dubuque(Iowa),Cedar Rapids(Iowa),,1 hour 19 mins,118 km +Dubuque(Iowa),Sioux City(Iowa),,4 hours 44 mins,483 km +Dubuque(Iowa),Des Moines(Iowa),,3 hours 6 mins,325 km +Dubuque(Iowa),Fort Dodge(Iowa),,2 hours 56 mins,301 km +Dubuque(Iowa),Mason City(Iowa),,2 hours 50 mins,274 km +Des Moines(Iowa),Punta Gorda,,21 hours 14 mins,"2,339 km" +Des Moines(Iowa),Cedar Rapids(Iowa),,1 hour 55 mins,206 km +Des Moines(Iowa),Sioux City(Iowa),,2 hours 54 mins,318 km +Des Moines(Iowa),Dubuque(Iowa),,3 hours 5 mins,325 km +Des Moines(Iowa),Fort Dodge(Iowa),,1 hour 30 mins,154 km +Des Moines(Iowa),Mason City(Iowa),,1 hour 52 mins,195 km +Fort Dodge(Iowa),Punta Gorda,,22 hours 24 mins,"2,476 km" +Fort Dodge(Iowa),Cedar Rapids(Iowa),,2 hours 20 mins,243 km +Fort Dodge(Iowa),Sioux City(Iowa),,2 hours 3 mins,189 km +Fort Dodge(Iowa),Dubuque(Iowa),,2 hours 58 mins,301 km +Fort Dodge(Iowa),Des Moines(Iowa),,1 hour 31 mins,154 km +Fort Dodge(Iowa),Mason City(Iowa),,1 hour 32 mins,150 km +Mason City(Iowa),Punta Gorda,,22 hours 17 mins,"2,454 km" +Mason City(Iowa),Cedar Rapids(Iowa),,2 hours 13 mins,221 km +Mason City(Iowa),Sioux City(Iowa),,3 hours 19 mins,331 km +Mason City(Iowa),Dubuque(Iowa),,2 hours 51 mins,279 km +Mason City(Iowa),Des Moines(Iowa),,1 hour 53 mins,196 km +Mason City(Iowa),Fort Dodge(Iowa),,1 hour 32 mins,149 km +Knoxville,Abilene(Texas),,14 hours 57 mins,"1,646 km" +Knoxville,Amarillo(Texas),,16 hours 3 mins,"1,794 km" +Knoxville,Harlingen(Texas),,18 hours 16 mins,"2,013 km" +Knoxville,Lubbock(Texas),,17 hours 20 mins,"1,911 km" +Knoxville,College Station(Texas),,14 hours 7 mins,"1,511 km" +Knoxville,Corpus Christi(Texas),,16 hours 30 mins,"1,818 km" +Knoxville,Wichita Falls(Texas),,14 hours 11 mins,"1,591 km" +Knoxville,Waco(Texas),,13 hours 43 mins,"1,512 km" +Knoxville,San Angelo(Texas),,16 hours 10 mins,"1,770 km" +Knoxville,Houston(Texas),,13 hours 22 mins,"1,485 km" +Knoxville,San Antonio(Texas),,16 hours 14 mins,"1,799 km" +Knoxville,Del Rio(Texas),,18 hours 37 mins,"2,046 km" +Knoxville,Mission(Texas),,18 hours 42 mins,"2,053 km" +Knoxville,Beaumont(Texas),,12 hours 9 mins,"1,352 km" +Knoxville,Longview(Texas),,11 hours 13 mins,"1,244 km" +Knoxville,Midland(Texas),,17 hours 5 mins,"1,887 km" +Knoxville,El Paso(Texas),,21 hours 23 mins,"2,377 km" +Knoxville,Brownsville(Texas),,18 hours 37 mins,"2,052 km" +Knoxville,Austin(Texas),,15 hours 7 mins,"1,671 km" +Knoxville,Dallas(Texas),,12 hours 19 mins,"1,357 km" +Knoxville,Killeen(Texas),,14 hours 31 mins,"1,605 km" +Knoxville,Laredo(Texas),,18 hours 22 mins,"1,991 km" +Knoxville,Texarkana(Texas),,9 hours 50 mins,"1,077 km" +Abilene(Texas),Knoxville,,14 hours 55 mins,"1,646 km" +Amarillo(Texas),Knoxville,,16 hours 2 mins,"1,794 km" +Harlingen(Texas),Knoxville,,18 hours 12 mins,"2,013 km" +Lubbock(Texas),Knoxville,,17 hours 3 mins,"1,837 km" +College Station(Texas),Knoxville,,14 hours 1 min,"1,505 km" +Corpus Christi(Texas),Knoxville,,16 hours 34 mins,"1,823 km" +Wichita Falls(Texas),Knoxville,,14 hours 1 min,"1,504 km" +Waco(Texas),Knoxville,,13 hours 40 mins,"1,508 km" +San Angelo(Texas),Knoxville,,16 hours 7 mins,"1,770 km" +Houston(Texas),Knoxville,,13 hours 22 mins,"1,485 km" +San Antonio(Texas),Knoxville,,16 hours 15 mins,"1,795 km" +Del Rio(Texas),Knoxville,,18 hours 30 mins,"2,024 km" +Mission(Texas),Knoxville,,18 hours 40 mins,"2,053 km" +Beaumont(Texas),Knoxville,,12 hours 9 mins,"1,351 km" +Longview(Texas),Knoxville,,11 hours 11 mins,"1,239 km" +Midland(Texas),Knoxville,,17 hours 1 min,"1,886 km" +El Paso(Texas),Knoxville,,21 hours 19 mins,"2,376 km" +Brownsville(Texas),Knoxville,,18 hours 36 mins,"2,053 km" +Austin(Texas),Knoxville,,15 hours 4 mins,"1,669 km" +Dallas(Texas),Knoxville,,12 hours 18 mins,"1,356 km" +Killeen(Texas),Knoxville,,14 hours 29 mins,"1,604 km" +Laredo(Texas),Knoxville,,18 hours 19 mins,"1,991 km" +Texarkana(Texas),Knoxville,,9 hours 49 mins,"1,075 km" +Grand Rapids,Greensboro(North Carolina),,11 hours 11 mins,"1,162 km" +Grand Rapids,Wilmington(North Carolina),,14 hours 5 mins,"1,488 km" +Grand Rapids,New Bern(North Carolina),,14 hours 5 mins,"1,467 km" +Grand Rapids,Charlotte(North Carolina),,11 hours 30 mins,"1,197 km" +Grand Rapids,Raleigh(North Carolina),,12 hours 21 mins,"1,281 km" +Grand Rapids,Asheville(North Carolina),,10 hours 51 mins,"1,157 km" +Grand Rapids,Fayetteville(North Carolina),,12 hours 42 mins,"1,306 km" +Greensboro(North Carolina),Grand Rapids,,11 hours 10 mins,"1,167 km" +Wilmington(North Carolina),Grand Rapids,,14 hours 3 mins,"1,494 km" +New Bern(North Carolina),Grand Rapids,,14 hours 3 mins,"1,472 km" +Charlotte(North Carolina),Grand Rapids,,11 hours 30 mins,"1,205 km" +Raleigh(North Carolina),Grand Rapids,,12 hours 18 mins,"1,287 km" +Asheville(North Carolina),Grand Rapids,,10 hours 53 mins,"1,156 km" +Fayetteville(North Carolina),Grand Rapids,,12 hours 41 mins,"1,313 km" +Charlotte,Buffalo(New York),,9 hours 59 mins,"1,061 km" +Charlotte,Manhattan(New York),,9 hours 42 mins,"1,012 km" +Charlotte,Niagara Falls(New York),,10 hours 20 mins,"1,092 km" +Charlotte,Islip(New York),,10 hours 22 mins,"1,083 km" +Charlotte,New York(New York),,9 hours 33 mins,"1,006 km" +Charlotte,Watertown(New York),,11 hours 57 mins,"1,281 km" +Charlotte,Newburgh(New York),,10 hours 22 mins,"1,097 km" +Charlotte,Syracuse(New York),,10 hours 54 mins,"1,168 km" +Charlotte,Plattsburgh(New York),,13 hours 49 mins,"1,486 km" +Charlotte,Ogdensburg(New York),,12 hours 56 mins,"1,374 km" +Charlotte,Ithaca(New York),,10 hours 34 mins,"1,104 km" +Charlotte,Elmira(New York),,9 hours 57 mins,"1,032 km" +Charlotte,White Plains(New York),,10 hours 0 mins,"1,056 km" +Charlotte,Albany(New York),,11 hours 29 mins,"1,228 km" +Charlotte,Binghamton(New York),,9 hours 54 mins,"1,056 km" +Charlotte,Rochester(New York),,10 hours 57 mins,"1,166 km" +Buffalo(New York),Charlotte,,10 hours 1 min,"1,062 km" +Manhattan(New York),Charlotte,,9 hours 43 mins,"1,022 km" +Niagara Falls(New York),Charlotte,,10 hours 22 mins,"1,093 km" +Islip(New York),Charlotte,,10 hours 25 mins,"1,091 km" +New York(New York),Charlotte,,9 hours 35 mins,"1,016 km" +Watertown(New York),Charlotte,,11 hours 58 mins,"1,283 km" +Newburgh(New York),Charlotte,,10 hours 23 mins,"1,105 km" +Syracuse(New York),Charlotte,,10 hours 54 mins,"1,170 km" +Plattsburgh(New York),Charlotte,,13 hours 48 mins,"1,493 km" +Ogdensburg(New York),Charlotte,,12 hours 57 mins,"1,376 km" +Ithaca(New York),Charlotte,,10 hours 35 mins,"1,105 km" +Elmira(New York),Charlotte,,9 hours 58 mins,"1,035 km" +White Plains(New York),Charlotte,,10 hours 1 min,"1,065 km" +Albany(New York),Charlotte,,11 hours 30 mins,"1,235 km" +Binghamton(New York),Charlotte,,9 hours 53 mins,"1,057 km" +Rochester(New York),Charlotte,,10 hours 59 mins,"1,167 km" +Prescott,Alamosa(Colorado),,9 hours 21 mins,891 km +Prescott,Grand Junction(Colorado),,8 hours 30 mins,854 km +Prescott,Durango(Colorado),,6 hours 35 mins,652 km +Prescott,Colorado Springs(Colorado),,11 hours 24 mins,"1,274 km" +Prescott,Gunnison(Colorado),,9 hours 44 mins,899 km +Prescott,Denver(Colorado),,12 hours 8 mins,"1,242 km" +Alamosa(Colorado),Prescott,,9 hours 26 mins,889 km +Grand Junction(Colorado),Prescott,,8 hours 38 mins,854 km +Durango(Colorado),Prescott,,6 hours 39 mins,651 km +Colorado Springs(Colorado),Prescott,,11 hours 29 mins,"1,276 km" +Gunnison(Colorado),Prescott,,9 hours 43 mins,898 km +Denver(Colorado),Prescott,,12 hours 17 mins,"1,242 km" +Philadelphia,Pellston(Michigan),,12 hours 21 mins,"1,364 km" +Philadelphia,Traverse City(Michigan),,12 hours 21 mins,"1,323 km" +Philadelphia,Alpena(Michigan),,12 hours 20 mins,"1,312 km" +Philadelphia,Iron Mountain(Michigan),,15 hours 47 mins,"1,694 km" +Philadelphia,Kalamazoo(Michigan),,10 hours 12 mins,"1,084 km" +Philadelphia,Saginaw(Michigan),,10 hours 2 mins,"1,077 km" +Philadelphia,Grand Rapids(Michigan),,10 hours 39 mins,"1,151 km" +Philadelphia,Lansing(Michigan),,9 hours 41 mins,"1,043 km" +Philadelphia,Muskegon(Michigan),,11 hours 12 mins,"1,214 km" +Philadelphia,Hancock(Michigan),,16 hours 58 mins,"1,804 km" +Philadelphia,Detroit(Michigan),,8 hours 49 mins,940 km +Philadelphia,Escanaba(Michigan),,14 hours 51 mins,"1,612 km" +Pellston(Michigan),Philadelphia,,12 hours 20 mins,"1,364 km" +Traverse City(Michigan),Philadelphia,,12 hours 21 mins,"1,323 km" +Alpena(Michigan),Philadelphia,,12 hours 18 mins,"1,310 km" +Iron Mountain(Michigan),Philadelphia,,15 hours 45 mins,"1,694 km" +Kalamazoo(Michigan),Philadelphia,,10 hours 9 mins,"1,082 km" +Saginaw(Michigan),Philadelphia,,9 hours 59 mins,"1,076 km" +Grand Rapids(Michigan),Philadelphia,,10 hours 36 mins,"1,150 km" +Lansing(Michigan),Philadelphia,,9 hours 40 mins,"1,042 km" +Muskegon(Michigan),Philadelphia,,11 hours 11 mins,"1,214 km" +Hancock(Michigan),Philadelphia,,16 hours 56 mins,"1,804 km" +Detroit(Michigan),Philadelphia,,8 hours 47 mins,939 km +Escanaba(Michigan),Philadelphia,,14 hours 49 mins,"1,612 km" +Panama City,Baltimore,,14 hours 57 mins,"1,623 km" +Baltimore,Panama City,,14 hours 55 mins,"1,629 km" +Charlotte,Sarasota(Florida),,9 hours 21 mins,"1,017 km" +Charlotte,Fort Myers(Florida),,10 hours 19 mins,"1,123 km" +Charlotte,Gainesville(Florida),,6 hours 41 mins,727 km +Charlotte,Orlando(Florida),,7 hours 34 mins,845 km +Charlotte,Daytona Beach(Florida),,6 hours 56 mins,770 km +Charlotte,Jacksonville(Florida),,5 hours 31 mins,617 km +Charlotte,Tampa(Florida),,8 hours 34 mins,933 km +Charlotte,Panama City(Florida),,8 hours 36 mins,856 km +Charlotte,Key West(Florida),,13 hours 30 mins,"1,427 km" +Charlotte,West Palm Beach(Florida),,9 hours 29 mins,"1,075 km" +Charlotte,Miami(Florida),,10 hours 30 mins,"1,174 km" +Charlotte,Tallahassee(Florida),,7 hours 41 mins,714 km +Charlotte,Punta Gorda(Florida),,9 hours 53 mins,"1,088 km" +Charlotte,Fort Lauderdale(Florida),,10 hours 7 mins,"1,143 km" +Charlotte,Pensacola(Florida),,8 hours 39 mins,913 km +Sarasota(Florida),Charlotte,,9 hours 23 mins,"1,019 km" +Fort Myers(Florida),Charlotte,,10 hours 19 mins,"1,125 km" +Gainesville(Florida),Charlotte,,6 hours 44 mins,729 km +Orlando(Florida),Charlotte,,7 hours 30 mins,843 km +Daytona Beach(Florida),Charlotte,,6 hours 55 mins,759 km +Jacksonville(Florida),Charlotte,,5 hours 32 mins,617 km +Tampa(Florida),Charlotte,,8 hours 34 mins,934 km +Panama City(Florida),Charlotte,,8 hours 34 mins,858 km +Key West(Florida),Charlotte,,13 hours 29 mins,"1,426 km" +West Palm Beach(Florida),Charlotte,,9 hours 27 mins,"1,073 km" +Miami(Florida),Charlotte,,10 hours 26 mins,"1,174 km" +Tallahassee(Florida),Charlotte,,7 hours 44 mins,714 km +Punta Gorda(Florida),Charlotte,,9 hours 54 mins,"1,088 km" +Fort Lauderdale(Florida),Charlotte,,10 hours 5 mins,"1,141 km" +Pensacola(Florida),Charlotte,,8 hours 35 mins,915 km +Los Angeles,Reno,,7 hours 59 mins,761 km +Reno,Los Angeles,,7 hours 57 mins,831 km +Santa Fe,Abilene(Texas),,7 hours 27 mins,770 km +Santa Fe,Amarillo(Texas),,4 hours 10 mins,450 km +Santa Fe,Harlingen(Texas),,14 hours 11 mins,"1,555 km" +Santa Fe,Lubbock(Texas),,5 hours 4 mins,504 km +Santa Fe,College Station(Texas),,11 hours 42 mins,"1,194 km" +Santa Fe,Corpus Christi(Texas),,12 hours 33 mins,"1,379 km" +Santa Fe,Wichita Falls(Texas),,7 hours 27 mins,804 km +Santa Fe,Waco(Texas),,10 hours 23 mins,"1,071 km" +Santa Fe,San Angelo(Texas),,7 hours 31 mins,804 km +Santa Fe,Houston(Texas),,12 hours 49 mins,"1,407 km" +Santa Fe,San Antonio(Texas),,10 hours 35 mins,"1,147 km" +Santa Fe,Del Rio(Texas),,9 hours 40 mins,961 km +Santa Fe,Mission(Texas),,14 hours 11 mins,"1,543 km" +Santa Fe,Beaumont(Texas),,13 hours 49 mins,"1,482 km" +Santa Fe,Longview(Texas),,11 hours 21 mins,"1,231 km" +Santa Fe,Midland(Texas),,6 hours 9 mins,637 km +Santa Fe,El Paso(Texas),,4 hours 45 mins,529 km +Santa Fe,Brownsville(Texas),,14 hours 33 mins,"1,594 km" +Santa Fe,Austin(Texas),,10 hours 53 mins,"1,106 km" +Santa Fe,Dallas(Texas),,9 hours 29 mins,"1,031 km" +Santa Fe,Killeen(Texas),,10 hours 14 mins,"1,043 km" +Santa Fe,Laredo(Texas),,12 hours 36 mins,"1,251 km" +Santa Fe,Texarkana(Texas),,11 hours 47 mins,"1,241 km" +Abilene(Texas),Santa Fe,,7 hours 28 mins,769 km +Amarillo(Texas),Santa Fe,,4 hours 12 mins,449 km +Harlingen(Texas),Santa Fe,,14 hours 6 mins,"1,550 km" +Lubbock(Texas),Santa Fe,,5 hours 5 mins,503 km +College Station(Texas),Santa Fe,,11 hours 42 mins,"1,196 km" +Corpus Christi(Texas),Santa Fe,,12 hours 30 mins,"1,374 km" +Wichita Falls(Texas),Santa Fe,,7 hours 29 mins,804 km +Waco(Texas),Santa Fe,,10 hours 25 mins,"1,128 km" +San Angelo(Texas),Santa Fe,,7 hours 30 mins,802 km +Houston(Texas),Santa Fe,,12 hours 51 mins,"1,407 km" +San Antonio(Texas),Santa Fe,,10 hours 34 mins,"1,142 km" +Del Rio(Texas),Santa Fe,,9 hours 40 mins,952 km +Mission(Texas),Santa Fe,,14 hours 8 mins,"1,539 km" +Beaumont(Texas),Santa Fe,,13 hours 52 mins,"1,481 km" +Longview(Texas),Santa Fe,,11 hours 22 mins,"1,237 km" +Midland(Texas),Santa Fe,,6 hours 9 mins,636 km +El Paso(Texas),Santa Fe,,4 hours 46 mins,529 km +Brownsville(Texas),Santa Fe,,14 hours 30 mins,"1,590 km" +Austin(Texas),Santa Fe,,10 hours 52 mins,"1,133 km" +Dallas(Texas),Santa Fe,,9 hours 31 mins,"1,030 km" +Killeen(Texas),Santa Fe,,10 hours 16 mins,"1,042 km" +Laredo(Texas),Santa Fe,,12 hours 36 mins,"1,242 km" +Texarkana(Texas),Santa Fe,,11 hours 58 mins,"1,253 km" +Dallas,Moline,,13 hours 4 mins,"1,316 km" +Moline,Dallas,,13 hours 3 mins,"1,316 km" +Charleston,Indianapolis,,10 hours 56 mins,"1,171 km" +Indianapolis,Charleston,,10 hours 55 mins,"1,171 km" +South Bend,Sarasota(Florida),,17 hours 26 mins,"1,905 km" +South Bend,Fort Myers(Florida),,18 hours 23 mins,"2,010 km" +South Bend,Gainesville(Florida),,15 hours 2 mins,"1,620 km" +South Bend,Orlando(Florida),,16 hours 26 mins,"1,793 km" +South Bend,Daytona Beach(Florida),,16 hours 30 mins,"1,792 km" +South Bend,Jacksonville(Florida),,15 hours 7 mins,"1,643 km" +South Bend,Tampa(Florida),,16 hours 39 mins,"1,820 km" +South Bend,Panama City(Florida),,13 hours 53 mins,"1,427 km" +South Bend,Key West(Florida),,22 hours 38 mins,"2,406 km" +South Bend,West Palm Beach(Florida),,18 hours 39 mins,"2,048 km" +South Bend,Miami(Florida),,19 hours 38 mins,"2,153 km" +South Bend,Tallahassee(Florida),,14 hours 10 mins,"1,482 km" +South Bend,Punta Gorda(Florida),,17 hours 58 mins,"1,975 km" +South Bend,Fort Lauderdale(Florida),,19 hours 17 mins,"2,116 km" +South Bend,Pensacola(Florida),,13 hours 5 mins,"1,404 km" +Sarasota(Florida),South Bend,,17 hours 25 mins,"1,907 km" +Fort Myers(Florida),South Bend,,18 hours 21 mins,"2,012 km" +Gainesville(Florida),South Bend,,15 hours 0 mins,"1,621 km" +Orlando(Florida),South Bend,,16 hours 22 mins,"1,792 km" +Daytona Beach(Florida),South Bend,,16 hours 28 mins,"1,784 km" +Jacksonville(Florida),South Bend,,15 hours 8 mins,"1,644 km" +Tampa(Florida),South Bend,,16 hours 36 mins,"1,822 km" +Panama City(Florida),South Bend,,13 hours 54 mins,"1,422 km" +Key West(Florida),South Bend,,22 hours 37 mins,"2,408 km" +West Palm Beach(Florida),South Bend,,18 hours 37 mins,"2,050 km" +Miami(Florida),South Bend,,19 hours 34 mins,"2,156 km" +Tallahassee(Florida),South Bend,,14 hours 11 mins,"1,477 km" +Punta Gorda(Florida),South Bend,,17 hours 56 mins,"1,976 km" +Fort Lauderdale(Florida),South Bend,,19 hours 15 mins,"2,118 km" +Pensacola(Florida),South Bend,,13 hours 1 min,"1,403 km" +Detroit,Sarasota(Florida),,17 hours 48 mins,"1,980 km" +Detroit,Fort Myers(Florida),,18 hours 46 mins,"2,086 km" +Detroit,Gainesville(Florida),,15 hours 25 mins,"1,696 km" +Detroit,Orlando(Florida),,16 hours 49 mins,"1,868 km" +Detroit,Daytona Beach(Florida),,16 hours 39 mins,"1,774 km" +Detroit,Jacksonville(Florida),,15 hours 13 mins,"1,620 km" +Detroit,Tampa(Florida),,17 hours 1 min,"1,896 km" +Detroit,Panama City(Florida),,15 hours 13 mins,"1,595 km" +Detroit,Key West(Florida),,23 hours 0 mins,"2,482 km" +Detroit,West Palm Beach(Florida),,19 hours 2 mins,"2,124 km" +Detroit,Miami(Florida),,20 hours 0 mins,"2,228 km" +Detroit,Tallahassee(Florida),,14 hours 50 mins,"1,594 km" +Detroit,Punta Gorda(Florida),,18 hours 20 mins,"2,050 km" +Detroit,Fort Lauderdale(Florida),,19 hours 39 mins,"2,192 km" +Detroit,Pensacola(Florida),,14 hours 25 mins,"1,572 km" +Sarasota(Florida),Detroit,,17 hours 47 mins,"1,981 km" +Fort Myers(Florida),Detroit,,18 hours 43 mins,"2,086 km" +Gainesville(Florida),Detroit,,15 hours 22 mins,"1,695 km" +Orlando(Florida),Detroit,,16 hours 44 mins,"1,866 km" +Daytona Beach(Florida),Detroit,,16 hours 34 mins,"1,768 km" +Jacksonville(Florida),Detroit,,15 hours 11 mins,"1,626 km" +Tampa(Florida),Detroit,,16 hours 58 mins,"1,896 km" +Panama City(Florida),Detroit,,15 hours 13 mins,"1,589 km" +Key West(Florida),Detroit,,23 hours 0 mins,"2,482 km" +West Palm Beach(Florida),Detroit,,18 hours 59 mins,"2,125 km" +Miami(Florida),Detroit,,19 hours 56 mins,"2,230 km" +Tallahassee(Florida),Detroit,,14 hours 49 mins,"1,593 km" +Punta Gorda(Florida),Detroit,,18 hours 18 mins,"2,050 km" +Fort Lauderdale(Florida),Detroit,,19 hours 37 mins,"2,193 km" +Pensacola(Florida),Detroit,,14 hours 20 mins,"1,570 km" +Cedar Rapids,Pellston(Michigan),,9 hours 16 mins,924 km +Cedar Rapids,Traverse City(Michigan),,8 hours 14 mins,884 km +Cedar Rapids,Alpena(Michigan),,9 hours 53 mins,"1,039 km" +Cedar Rapids,Iron Mountain(Michigan),,6 hours 26 mins,645 km +Cedar Rapids,Kalamazoo(Michigan),,5 hours 42 mins,607 km +Cedar Rapids,Saginaw(Michigan),,7 hours 54 mins,841 km +Cedar Rapids,Grand Rapids(Michigan),,6 hours 8 mins,656 km +Cedar Rapids,Lansing(Michigan),,6 hours 44 mins,721 km +Cedar Rapids,Muskegon(Michigan),,6 hours 24 mins,670 km +Cedar Rapids,Hancock(Michigan),,7 hours 58 mins,764 km +Cedar Rapids,Detroit(Michigan),,7 hours 36 mins,825 km +Cedar Rapids,Escanaba(Michigan),,6 hours 37 mins,664 km +Pellston(Michigan),Cedar Rapids,,9 hours 18 mins,924 km +Traverse City(Michigan),Cedar Rapids,,8 hours 15 mins,884 km +Alpena(Michigan),Cedar Rapids,,9 hours 48 mins,"1,036 km" +Iron Mountain(Michigan),Cedar Rapids,,6 hours 25 mins,644 km +Kalamazoo(Michigan),Cedar Rapids,,5 hours 42 mins,605 km +Saginaw(Michigan),Cedar Rapids,,7 hours 49 mins,837 km +Grand Rapids(Michigan),Cedar Rapids,,6 hours 5 mins,657 km +Lansing(Michigan),Cedar Rapids,,6 hours 42 mins,720 km +Muskegon(Michigan),Cedar Rapids,,6 hours 22 mins,668 km +Hancock(Michigan),Cedar Rapids,,7 hours 55 mins,770 km +Detroit(Michigan),Cedar Rapids,,7 hours 38 mins,824 km +Escanaba(Michigan),Cedar Rapids,,6 hours 38 mins,663 km +Nashville,Lynchburg(Virginia),,7 hours 29 mins,790 km +Nashville,Richmond(Virginia),,9 hours 1 min,988 km +Nashville,Petersburg(Virginia),,9 hours 17 mins,967 km +Nashville,Newport News(Virginia),,10 hours 0 mins,"1,095 km" +Nashville,Charlottesville(Virginia),,8 hours 5 mins,879 km +Nashville,Staunton(Virginia),,7 hours 37 mins,824 km +Nashville,Jamestown(Virginia),,9 hours 55 mins,"1,077 km" +Nashville,Norfolk(Virginia),,10 hours 29 mins,"1,135 km" +Nashville,Roanoke(Virginia),,6 hours 30 mins,705 km +Lynchburg(Virginia),Nashville,,7 hours 30 mins,794 km +Richmond(Virginia),Nashville,,9 hours 3 mins,989 km +Petersburg(Virginia),Nashville,,9 hours 19 mins,967 km +Newport News(Virginia),Nashville,,9 hours 59 mins,"1,098 km" +Charlottesville(Virginia),Nashville,,8 hours 4 mins,878 km +Staunton(Virginia),Nashville,,7 hours 36 mins,824 km +Jamestown(Virginia),Nashville,,9 hours 55 mins,"1,080 km" +Norfolk(Virginia),Nashville,,10 hours 29 mins,"1,136 km" +Roanoke(Virginia),Nashville,,6 hours 31 mins,706 km +Rochester,Pellston(Michigan),,8 hours 15 mins,898 km +Rochester,Traverse City(Michigan),,8 hours 15 mins,857 km +Rochester,Alpena(Michigan),,8 hours 13 mins,846 km +Rochester,Iron Mountain(Michigan),,11 hours 41 mins,"1,228 km" +Rochester,Kalamazoo(Michigan),,7 hours 48 mins,831 km +Rochester,Saginaw(Michigan),,5 hours 55 mins,611 km +Rochester,Grand Rapids(Michigan),,6 hours 57 mins,733 km +Rochester,Lansing(Michigan),,6 hours 8 mins,642 km +Rochester,Muskegon(Michigan),,7 hours 30 mins,796 km +Rochester,Hancock(Michigan),,12 hours 52 mins,"1,338 km" +Rochester,Detroit(Michigan),,5 hours 14 mins,524 km +Rochester,Escanaba(Michigan),,10 hours 45 mins,"1,146 km" +Pellston(Michigan),Rochester,,8 hours 10 mins,898 km +Traverse City(Michigan),Rochester,,8 hours 12 mins,857 km +Alpena(Michigan),Rochester,,8 hours 8 mins,844 km +Iron Mountain(Michigan),Rochester,,11 hours 35 mins,"1,228 km" +Kalamazoo(Michigan),Rochester,,7 hours 46 mins,830 km +Saginaw(Michigan),Rochester,,5 hours 50 mins,611 km +Grand Rapids(Michigan),Rochester,,6 hours 51 mins,733 km +Lansing(Michigan),Rochester,,6 hours 3 mins,640 km +Muskegon(Michigan),Rochester,,7 hours 25 mins,797 km +Hancock(Michigan),Rochester,,12 hours 47 mins,"1,338 km" +Detroit(Michigan),Rochester,,5 hours 9 mins,524 km +Escanaba(Michigan),Rochester,,10 hours 39 mins,"1,146 km" +Bemidji,Minneapolis(Minnesota),,3 hours 34 mins,347 km +Bemidji,Duluth(Minnesota),,2 hours 44 mins,239 km +Bemidji,Brainerd(Minnesota),,1 hour 49 mins,154 km +Bemidji,Gustavus(Minnesota),,4 hours 25 mins,404 km +Bemidji,St. Cloud(Minnesota),,2 hours 32 mins,245 km +Bemidji,Hibbing(Minnesota),,1 hour 56 mins,166 km +Bemidji,International Falls(Minnesota),,1 hour 58 mins,181 km +Minneapolis(Minnesota),Bemidji,,3 hours 37 mins,347 km +Duluth(Minnesota),Bemidji,,2 hours 45 mins,239 km +Brainerd(Minnesota),Bemidji,,1 hour 50 mins,154 km +Gustavus(Minnesota),Bemidji,,4 hours 25 mins,404 km +St. Cloud(Minnesota),Bemidji,,2 hours 34 mins,246 km +Hibbing(Minnesota),Bemidji,,1 hour 55 mins,166 km +International Falls(Minnesota),Bemidji,,1 hour 58 mins,180 km +Philadelphia,Cleveland,,6 hours 40 mins,694 km +Cleveland,Philadelphia,,6 hours 39 mins,695 km +New Orleans,Sarasota(Florida),,10 hours 4 mins,"1,141 km" +New Orleans,Fort Myers(Florida),,11 hours 2 mins,"1,246 km" +New Orleans,Gainesville(Florida),,7 hours 41 mins,857 km +New Orleans,Orlando(Florida),,9 hours 5 mins,"1,029 km" +New Orleans,Daytona Beach(Florida),,9 hours 9 mins,"1,029 km" +New Orleans,Jacksonville(Florida),,7 hours 46 mins,879 km +New Orleans,Tampa(Florida),,9 hours 17 mins,"1,057 km" +New Orleans,Panama City(Florida),,5 hours 4 mins,527 km +New Orleans,Key West(Florida),,15 hours 17 mins,"1,643 km" +New Orleans,West Palm Beach(Florida),,11 hours 18 mins,"1,285 km" +New Orleans,Miami(Florida),,12 hours 16 mins,"1,389 km" +New Orleans,Tallahassee(Florida),,5 hours 36 mins,620 km +New Orleans,Punta Gorda(Florida),,10 hours 36 mins,"1,211 km" +New Orleans,Fort Lauderdale(Florida),,11 hours 56 mins,"1,353 km" +New Orleans,Pensacola(Florida),,2 hours 59 mins,323 km +Sarasota(Florida),New Orleans,,10 hours 4 mins,"1,144 km" +Fort Myers(Florida),New Orleans,,11 hours 1 min,"1,250 km" +Gainesville(Florida),New Orleans,,7 hours 39 mins,859 km +Orlando(Florida),New Orleans,,9 hours 1 min,"1,030 km" +Daytona Beach(Florida),New Orleans,,9 hours 7 mins,"1,022 km" +Jacksonville(Florida),New Orleans,,7 hours 47 mins,882 km +Tampa(Florida),New Orleans,,9 hours 15 mins,"1,059 km" +Panama City(Florida),New Orleans,,5 hours 2 mins,529 km +Key West(Florida),New Orleans,,15 hours 17 mins,"1,646 km" +West Palm Beach(Florida),New Orleans,,11 hours 16 mins,"1,288 km" +Miami(Florida),New Orleans,,12 hours 13 mins,"1,394 km" +Tallahassee(Florida),New Orleans,,5 hours 35 mins,623 km +Punta Gorda(Florida),New Orleans,,10 hours 35 mins,"1,214 km" +Fort Lauderdale(Florida),New Orleans,,11 hours 54 mins,"1,356 km" +Pensacola(Florida),New Orleans,,2 hours 57 mins,326 km +Denver,Laramie,,2 hours 11 mins,212 km +Laramie,Denver,,2 hours 9 mins,208 km +Denver,Cheyenne,,1 hour 38 mins,164 km +Cheyenne,Denver,,1 hour 37 mins,161 km +New York,Reno,,1 day 15 hours,"4,319 km" +Reno,New York,,1 day 15 hours,"4,327 km" +Memphis,Los Angeles,,1 day 2 hours,"2,889 km" +Los Angeles,Memphis,,1 day 2 hours,"2,884 km" +Atlanta,Bemidji(Minnesota),,19 hours 53 mins,"2,166 km" +Atlanta,Minneapolis(Minnesota),,16 hours 26 mins,"1,821 km" +Atlanta,Duluth(Minnesota),,17 hours 24 mins,"1,917 km" +Atlanta,Brainerd(Minnesota),,18 hours 22 mins,"2,022 km" +Atlanta,Gustavus(Minnesota),,16 hours 17 mins,"1,754 km" +Atlanta,St. Cloud(Minnesota),,17 hours 23 mins,"1,924 km" +Atlanta,Hibbing(Minnesota),,18 hours 41 mins,"2,037 km" +Atlanta,International Falls(Minnesota),,20 hours 5 mins,"2,178 km" +Bemidji(Minnesota),Atlanta,,19 hours 48 mins,"2,160 km" +Minneapolis(Minnesota),Atlanta,,16 hours 20 mins,"1,814 km" +Duluth(Minnesota),Atlanta,,17 hours 20 mins,"1,911 km" +Brainerd(Minnesota),Atlanta,,18 hours 18 mins,"2,017 km" +Gustavus(Minnesota),Atlanta,,16 hours 18 mins,"1,751 km" +St. Cloud(Minnesota),Atlanta,,17 hours 19 mins,"1,919 km" +Hibbing(Minnesota),Atlanta,,18 hours 37 mins,"2,031 km" +International Falls(Minnesota),Atlanta,,20 hours 0 mins,"2,172 km" +La Crosse,Moline(Illinois),,3 hours 34 mins,310 km +La Crosse,Belleville(Illinois),,7 hours 17 mins,791 km +La Crosse,Bloomington(Illinois),,4 hours 54 mins,539 km +La Crosse,Champaign(Illinois),,5 hours 35 mins,619 km +La Crosse,Chicago(Illinois),,4 hours 16 mins,453 km +La Crosse,Rockford(Illinois),,3 hours 11 mins,334 km +La Crosse,Peoria(Illinois),,4 hours 53 mins,458 km +Moline(Illinois),La Crosse,,3 hours 35 mins,311 km +Belleville(Illinois),La Crosse,,7 hours 19 mins,792 km +Bloomington(Illinois),La Crosse,,4 hours 55 mins,535 km +Champaign(Illinois),La Crosse,,5 hours 38 mins,620 km +Chicago(Illinois),La Crosse,,4 hours 14 mins,454 km +Rockford(Illinois),La Crosse,,3 hours 13 mins,335 km +Peoria(Illinois),La Crosse,,4 hours 55 mins,459 km +Tulsa,Augusta(Georgia),,13 hours 32 mins,"1,493 km" +Tulsa,Decatur(Georgia),,11 hours 40 mins,"1,273 km" +Tulsa,Atlanta(Georgia),,11 hours 26 mins,"1,261 km" +Tulsa,Valdosta(Georgia),,14 hours 40 mins,"1,627 km" +Tulsa,Savannah(Georgia),,14 hours 58 mins,"1,659 km" +Augusta(Georgia),Tulsa,,13 hours 32 mins,"1,509 km" +Decatur(Georgia),Tulsa,,11 hours 39 mins,"1,287 km" +Atlanta(Georgia),Tulsa,,11 hours 24 mins,"1,275 km" +Valdosta(Georgia),Tulsa,,14 hours 37 mins,"1,641 km" +Savannah(Georgia),Tulsa,,14 hours 58 mins,"1,673 km" +Houston,Moline(Illinois),,15 hours 50 mins,"1,673 km" +Houston,Belleville(Illinois),,12 hours 18 mins,"1,275 km" +Houston,Bloomington(Illinois),,14 hours 25 mins,"1,512 km" +Houston,Champaign(Illinois),,14 hours 16 mins,"1,529 km" +Houston,Chicago(Illinois),,16 hours 12 mins,"1,743 km" +Houston,Rockford(Illinois),,16 hours 20 mins,"1,726 km" +Houston,Peoria(Illinois),,14 hours 26 mins,"1,523 km" +Moline(Illinois),Houston,,15 hours 47 mins,"1,668 km" +Belleville(Illinois),Houston,,12 hours 18 mins,"1,273 km" +Bloomington(Illinois),Houston,,14 hours 24 mins,"1,510 km" +Champaign(Illinois),Houston,,14 hours 20 mins,"1,515 km" +Chicago(Illinois),Houston,,16 hours 14 mins,"1,728 km" +Rockford(Illinois),Houston,,16 hours 17 mins,"1,722 km" +Peoria(Illinois),Houston,,14 hours 25 mins,"1,520 km" +Peoria,Dallas,,12 hours 7 mins,"1,283 km" +Dallas,Peoria,,12 hours 8 mins,"1,285 km" +Baton Rouge,Abilene(Texas),,8 hours 50 mins,976 km +Baton Rouge,Amarillo(Texas),,11 hours 40 mins,"1,274 km" +Baton Rouge,Harlingen(Texas),,8 hours 54 mins,959 km +Baton Rouge,Lubbock(Texas),,11 hours 13 mins,"1,240 km" +Baton Rouge,College Station(Texas),,5 hours 24 mins,577 km +Baton Rouge,Corpus Christi(Texas),,7 hours 8 mins,764 km +Baton Rouge,Wichita Falls(Texas),,8 hours 16 mins,914 km +Baton Rouge,Waco(Texas),,6 hours 44 mins,687 km +Baton Rouge,San Angelo(Texas),,9 hours 42 mins,"1,015 km" +Baton Rouge,Houston(Texas),,4 hours 0 mins,431 km +Baton Rouge,San Antonio(Texas),,6 hours 52 mins,745 km +Baton Rouge,Del Rio(Texas),,9 hours 16 mins,992 km +Baton Rouge,Mission(Texas),,9 hours 20 mins,999 km +Baton Rouge,Beaumont(Texas),,2 hours 47 mins,298 km +Baton Rouge,Longview(Texas),,4 hours 32 mins,487 km +Baton Rouge,Midland(Texas),,10 hours 58 mins,"1,216 km" +Baton Rouge,El Paso(Texas),,14 hours 35 mins,"1,630 km" +Baton Rouge,Brownsville(Texas),,9 hours 15 mins,998 km +Baton Rouge,Austin(Texas),,6 hours 28 mins,694 km +Baton Rouge,Dallas(Texas),,6 hours 15 mins,687 km +Baton Rouge,Killeen(Texas),,7 hours 3 mins,749 km +Baton Rouge,Laredo(Texas),,9 hours 0 mins,937 km +Baton Rouge,Texarkana(Texas),,4 hours 46 mins,519 km +Abilene(Texas),Baton Rouge,,8 hours 51 mins,978 km +Amarillo(Texas),Baton Rouge,,11 hours 42 mins,"1,270 km" +Harlingen(Texas),Baton Rouge,,8 hours 49 mins,960 km +Lubbock(Texas),Baton Rouge,,11 hours 10 mins,"1,244 km" +College Station(Texas),Baton Rouge,,5 hours 22 mins,581 km +Corpus Christi(Texas),Baton Rouge,,7 hours 11 mins,771 km +Wichita Falls(Texas),Baton Rouge,,8 hours 20 mins,908 km +Waco(Texas),Baton Rouge,,6 hours 42 mins,688 km +San Angelo(Texas),Baton Rouge,,9 hours 41 mins,"1,016 km" +Houston(Texas),Baton Rouge,,3 hours 59 mins,433 km +San Antonio(Texas),Baton Rouge,,6 hours 52 mins,746 km +Del Rio(Texas),Baton Rouge,,9 hours 18 mins,994 km +Mission(Texas),Baton Rouge,,9 hours 17 mins,"1,001 km" +Beaumont(Texas),Baton Rouge,,2 hours 47 mins,299 km +Longview(Texas),Baton Rouge,,4 hours 33 mins,488 km +Midland(Texas),Baton Rouge,,10 hours 57 mins,"1,218 km" +El Paso(Texas),Baton Rouge,,14 hours 34 mins,"1,631 km" +Brownsville(Texas),Baton Rouge,,9 hours 13 mins,"1,000 km" +Austin(Texas),Baton Rouge,,6 hours 26 mins,696 km +Dallas(Texas),Baton Rouge,,6 hours 17 mins,687 km +Killeen(Texas),Baton Rouge,,7 hours 1 min,745 km +Laredo(Texas),Baton Rouge,,8 hours 57 mins,938 km +Texarkana(Texas),Baton Rouge,,4 hours 47 mins,521 km +Dallas,Pensacola,,9 hours 45 mins,"1,041 km" +Pensacola,Dallas,,9 hours 44 mins,"1,049 km" +New Orleans,Paducah(Kentucky),,8 hours 53 mins,916 km +New Orleans,Owensboro(Kentucky),,9 hours 38 mins,"1,070 km" +New Orleans,Lexington(Kentucky),,10 hours 51 mins,"1,198 km" +New Orleans,Louisville(Kentucky),,10 hours 14 mins,"1,136 km" +Paducah(Kentucky),New Orleans,,8 hours 54 mins,918 km +Paducah(Kentucky),Owensboro(Kentucky),,2 hours 10 mins,205 km +Paducah(Kentucky),Lexington(Kentucky),,3 hours 54 mins,411 km +Paducah(Kentucky),Louisville(Kentucky),,3 hours 17 mins,349 km +Owensboro(Kentucky),New Orleans,,9 hours 39 mins,"1,072 km" +Owensboro(Kentucky),Paducah(Kentucky),,2 hours 9 mins,205 km +Owensboro(Kentucky),Lexington(Kentucky),,2 hours 47 mins,286 km +Owensboro(Kentucky),Louisville(Kentucky),,1 hour 43 mins,171 km +Lexington(Kentucky),New Orleans,,10 hours 53 mins,"1,201 km" +Lexington(Kentucky),Paducah(Kentucky),,3 hours 54 mins,410 km +Lexington(Kentucky),Owensboro(Kentucky),,2 hours 46 mins,284 km +Lexington(Kentucky),Louisville(Kentucky),,1 hour 20 mins,127 km +Louisville(Kentucky),New Orleans,,10 hours 15 mins,"1,139 km" +Louisville(Kentucky),Paducah(Kentucky),,3 hours 16 mins,347 km +Louisville(Kentucky),Owensboro(Kentucky),,1 hour 48 mins,173 km +Louisville(Kentucky),Lexington(Kentucky),,1 hour 22 mins,125 km +Houston,Twin Falls(Idaho),,1 day 1 hour,"2,775 km" +Houston,Pocatello(Idaho),,23 hours 55 mins,"2,593 km" +Houston,Idaho Falls(Idaho),,1 day 0 hours,"2,612 km" +Houston,Sun Valley(Idaho),,1 day 3 hours,"2,896 km" +Houston,Boise(Idaho),,1 day 3 hours,"2,969 km" +Houston,Lewiston(Idaho),,1 day 8 hours,"3,437 km" +Twin Falls(Idaho),Houston,,1 day 1 hour,"2,742 km" +Pocatello(Idaho),Houston,,23 hours 52 mins,"2,560 km" +Idaho Falls(Idaho),Houston,,1 day 0 hours,"2,579 km" +Sun Valley(Idaho),Houston,,1 day 3 hours,"2,865 km" +Boise(Idaho),Houston,,1 day 3 hours,"2,937 km" +Lewiston(Idaho),Houston,,1 day 8 hours,"3,371 km" +Pittsburgh,Sarasota(Florida),,16 hours 8 mins,"1,736 km" +Pittsburgh,Fort Myers(Florida),,17 hours 5 mins,"1,841 km" +Pittsburgh,Gainesville(Florida),,13 hours 28 mins,"1,445 km" +Pittsburgh,Orlando(Florida),,14 hours 20 mins,"1,563 km" +Pittsburgh,Daytona Beach(Florida),,13 hours 43 mins,"1,489 km" +Pittsburgh,Jacksonville(Florida),,12 hours 17 mins,"1,335 km" +Pittsburgh,Tampa(Florida),,15 hours 20 mins,"1,651 km" +Pittsburgh,Panama City(Florida),,15 hours 16 mins,"1,565 km" +Pittsburgh,Key West(Florida),,20 hours 16 mins,"2,145 km" +Pittsburgh,West Palm Beach(Florida),,16 hours 16 mins,"1,793 km" +Pittsburgh,Miami(Florida),,17 hours 16 mins,"1,892 km" +Pittsburgh,Tallahassee(Florida),,14 hours 28 mins,"1,432 km" +Pittsburgh,Punta Gorda(Florida),,16 hours 40 mins,"1,806 km" +Pittsburgh,Fort Lauderdale(Florida),,16 hours 54 mins,"1,861 km" +Pittsburgh,Pensacola(Florida),,14 hours 55 mins,"1,616 km" +Sarasota(Florida),Pittsburgh,,16 hours 9 mins,"1,736 km" +Fort Myers(Florida),Pittsburgh,,17 hours 6 mins,"1,842 km" +Gainesville(Florida),Pittsburgh,,13 hours 31 mins,"1,446 km" +Orlando(Florida),Pittsburgh,,14 hours 16 mins,"1,559 km" +Daytona Beach(Florida),Pittsburgh,,13 hours 42 mins,"1,476 km" +Jacksonville(Florida),Pittsburgh,,12 hours 19 mins,"1,334 km" +Tampa(Florida),Pittsburgh,,15 hours 21 mins,"1,651 km" +Panama City(Florida),Pittsburgh,,15 hours 15 mins,"1,566 km" +Key West(Florida),Pittsburgh,,20 hours 16 mins,"2,143 km" +West Palm Beach(Florida),Pittsburgh,,16 hours 14 mins,"1,790 km" +Miami(Florida),Pittsburgh,,17 hours 13 mins,"1,891 km" +Tallahassee(Florida),Pittsburgh,,14 hours 31 mins,"1,431 km" +Punta Gorda(Florida),Pittsburgh,,16 hours 41 mins,"1,805 km" +Fort Lauderdale(Florida),Pittsburgh,,16 hours 52 mins,"1,858 km" +Pensacola(Florida),Pittsburgh,,14 hours 49 mins,"1,612 km" +Asheville,Buffalo(New York),,10 hours 26 mins,"1,109 km" +Asheville,Manhattan(New York),,10 hours 44 mins,"1,118 km" +Asheville,Niagara Falls(New York),,10 hours 48 mins,"1,139 km" +Asheville,Islip(New York),,11 hours 25 mins,"1,196 km" +Asheville,New York(New York),,10 hours 34 mins,"1,112 km" +Asheville,Watertown(New York),,12 hours 39 mins,"1,356 km" +Asheville,Newburgh(New York),,11 hours 3 mins,"1,180 km" +Asheville,Syracuse(New York),,11 hours 36 mins,"1,244 km" +Asheville,Plattsburgh(New York),,14 hours 30 mins,"1,568 km" +Asheville,Ogdensburg(New York),,13 hours 38 mins,"1,449 km" +Asheville,Ithaca(New York),,11 hours 17 mins,"1,180 km" +Asheville,Elmira(New York),,10 hours 39 mins,"1,107 km" +Asheville,White Plains(New York),,10 hours 54 mins,"1,165 km" +Asheville,Albany(New York),,12 hours 10 mins,"1,310 km" +Asheville,Binghamton(New York),,10 hours 36 mins,"1,132 km" +Asheville,Rochester(New York),,11 hours 24 mins,"1,213 km" +Buffalo(New York),Asheville,,10 hours 29 mins,"1,110 km" +Manhattan(New York),Asheville,,10 hours 44 mins,"1,119 km" +Niagara Falls(New York),Asheville,,10 hours 50 mins,"1,140 km" +Islip(New York),Asheville,,11 hours 26 mins,"1,196 km" +New York(New York),Asheville,,10 hours 34 mins,"1,110 km" +Watertown(New York),Asheville,,12 hours 41 mins,"1,358 km" +Newburgh(New York),Asheville,,11 hours 6 mins,"1,180 km" +Syracuse(New York),Asheville,,11 hours 37 mins,"1,244 km" +Plattsburgh(New York),Asheville,,14 hours 31 mins,"1,568 km" +Ogdensburg(New York),Asheville,,13 hours 39 mins,"1,450 km" +Ithaca(New York),Asheville,,11 hours 18 mins,"1,180 km" +Elmira(New York),Asheville,,10 hours 41 mins,"1,109 km" +White Plains(New York),Asheville,,10 hours 56 mins,"1,163 km" +Albany(New York),Asheville,,12 hours 13 mins,"1,310 km" +Binghamton(New York),Asheville,,10 hours 36 mins,"1,131 km" +Rochester(New York),Asheville,,11 hours 27 mins,"1,215 km" +Cleveland,Pellston(Michigan),,6 hours 10 mins,696 km +Cleveland,Traverse City(Michigan),,6 hours 10 mins,655 km +Cleveland,Alpena(Michigan),,6 hours 8 mins,643 km +Cleveland,Iron Mountain(Michigan),,9 hours 36 mins,"1,025 km" +Cleveland,Kalamazoo(Michigan),,4 hours 1 min,416 km +Cleveland,Saginaw(Michigan),,3 hours 50 mins,409 km +Cleveland,Grand Rapids(Michigan),,4 hours 28 mins,482 km +Cleveland,Lansing(Michigan),,3 hours 30 mins,374 km +Cleveland,Muskegon(Michigan),,5 hours 1 min,545 km +Cleveland,Hancock(Michigan),,10 hours 47 mins,"1,135 km" +Cleveland,Detroit(Michigan),,2 hours 37 mins,271 km +Cleveland,Escanaba(Michigan),,8 hours 40 mins,944 km +Pellston(Michigan),Cleveland,,6 hours 12 mins,698 km +Traverse City(Michigan),Cleveland,,6 hours 13 mins,657 km +Alpena(Michigan),Cleveland,,6 hours 10 mins,644 km +Iron Mountain(Michigan),Cleveland,,9 hours 37 mins,"1,027 km" +Kalamazoo(Michigan),Cleveland,,4 hours 1 min,416 km +Saginaw(Michigan),Cleveland,,3 hours 51 mins,410 km +Grand Rapids(Michigan),Cleveland,,4 hours 28 mins,484 km +Lansing(Michigan),Cleveland,,3 hours 32 mins,376 km +Muskegon(Michigan),Cleveland,,5 hours 3 mins,548 km +Hancock(Michigan),Cleveland,,10 hours 48 mins,"1,138 km" +Detroit(Michigan),Cleveland,,2 hours 39 mins,273 km +Escanaba(Michigan),Cleveland,,8 hours 41 mins,945 km +Charlotte,Newark(New Jersey),,9 hours 20 mins,992 km +Charlotte,Atlantic City(New Jersey),,8 hours 53 mins,945 km +Charlotte,Trenton(New Jersey),,8 hours 38 mins,915 km +Newark(New Jersey),Charlotte,,9 hours 23 mins,"1,002 km" +Newark(New Jersey),Atlantic City(New Jersey),,1 hour 56 mins,190 km +Newark(New Jersey),Trenton(New Jersey),,1 hour 5 mins,93.8 km +Atlantic City(New Jersey),Charlotte,,8 hours 56 mins,955 km +Atlantic City(New Jersey),Newark(New Jersey),,1 hour 57 mins,192 km +Atlantic City(New Jersey),Trenton(New Jersey),,1 hour 31 mins,147 km +Trenton(New Jersey),Charlotte,,8 hours 40 mins,924 km +Trenton(New Jersey),Newark(New Jersey),,1 hour 3 mins,93.0 km +Trenton(New Jersey),Atlantic City(New Jersey),,1 hour 29 mins,146 km +Houston,Boise,,1 day 3 hours,"2,969 km" +Boise,Houston,,1 day 3 hours,"2,937 km" +Memphis,Houston,,8 hours 44 mins,913 km +Houston,Memphis,,8 hours 42 mins,913 km +Fort Lauderdale,State College(Pennsylvania),,17 hours 56 mins,"1,993 km" +Fort Lauderdale,Johnstown(Pennsylvania),,17 hours 25 mins,"1,912 km" +Fort Lauderdale,Harrisburg(Pennsylvania),,16 hours 28 mins,"1,839 km" +Fort Lauderdale,Erie(Pennsylvania),,18 hours 36 mins,"2,053 km" +Fort Lauderdale,Pittsburgh(Pennsylvania),,16 hours 52 mins,"1,858 km" +Fort Lauderdale,Latrobe(Pennsylvania),,17 hours 4 mins,"1,844 km" +Fort Lauderdale,Philadelphia(Pennsylvania),,16 hours 55 mins,"1,886 km" +Fort Lauderdale,Lewisburg(Pennsylvania),,17 hours 36 mins,"1,938 km" +Fort Lauderdale,Scranton(Pennsylvania),,18 hours 19 mins,"2,036 km" +State College(Pennsylvania),Fort Lauderdale,,18 hours 6 mins,"2,004 km" +Johnstown(Pennsylvania),Fort Lauderdale,,17 hours 26 mins,"1,914 km" +Harrisburg(Pennsylvania),Fort Lauderdale,,16 hours 40 mins,"1,843 km" +Erie(Pennsylvania),Fort Lauderdale,,18 hours 40 mins,"2,055 km" +Pittsburgh(Pennsylvania),Fort Lauderdale,,16 hours 54 mins,"1,861 km" +Latrobe(Pennsylvania),Fort Lauderdale,,17 hours 4 mins,"1,846 km" +Philadelphia(Pennsylvania),Fort Lauderdale,,17 hours 2 mins,"1,895 km" +Lewisburg(Pennsylvania),Fort Lauderdale,,17 hours 47 mins,"1,947 km" +Scranton(Pennsylvania),Fort Lauderdale,,18 hours 31 mins,"2,040 km" +Harrisburg,Greensboro(North Carolina),,6 hours 13 mins,633 km +Harrisburg,Wilmington(North Carolina),,7 hours 22 mins,767 km +Harrisburg,New Bern(North Carolina),,6 hours 57 mins,702 km +Harrisburg,Charlotte(North Carolina),,7 hours 12 mins,771 km +Harrisburg,Raleigh(North Carolina),,6 hours 6 mins,628 km +Harrisburg,Asheville(North Carolina),,7 hours 55 mins,846 km +Harrisburg,Fayetteville(North Carolina),,6 hours 38 mins,689 km +Greensboro(North Carolina),Harrisburg,,6 hours 9 mins,632 km +Wilmington(North Carolina),Harrisburg,,7 hours 13 mins,764 km +New Bern(North Carolina),Harrisburg,,6 hours 47 mins,712 km +Charlotte(North Carolina),Harrisburg,,7 hours 10 mins,769 km +Raleigh(North Carolina),Harrisburg,,5 hours 58 mins,626 km +Asheville(North Carolina),Harrisburg,,7 hours 52 mins,845 km +Fayetteville(North Carolina),Harrisburg,,6 hours 30 mins,687 km +South Bend,Greensboro(North Carolina),,10 hours 34 mins,"1,065 km" +South Bend,Wilmington(North Carolina),,13 hours 28 mins,"1,392 km" +South Bend,New Bern(North Carolina),,13 hours 27 mins,"1,370 km" +South Bend,Charlotte(North Carolina),,10 hours 52 mins,"1,101 km" +South Bend,Raleigh(North Carolina),,11 hours 44 mins,"1,185 km" +South Bend,Asheville(North Carolina),,9 hours 18 mins,979 km +South Bend,Fayetteville(North Carolina),,12 hours 4 mins,"1,210 km" +Greensboro(North Carolina),South Bend,,10 hours 33 mins,"1,063 km" +Wilmington(North Carolina),South Bend,,13 hours 26 mins,"1,390 km" +New Bern(North Carolina),South Bend,,13 hours 26 mins,"1,367 km" +Charlotte(North Carolina),South Bend,,10 hours 53 mins,"1,101 km" +Raleigh(North Carolina),South Bend,,11 hours 41 mins,"1,183 km" +Asheville(North Carolina),South Bend,,9 hours 20 mins,978 km +Fayetteville(North Carolina),South Bend,,12 hours 4 mins,"1,209 km" +Fresno,Flagstaff(Arizona),,8 hours 54 mins,949 km +Fresno,Yuma(Arizona),,7 hours 30 mins,788 km +Fresno,Phoenix(Arizona),,8 hours 54 mins,950 km +Fresno,Prescott(Arizona),,9 hours 4 mins,950 km +Fresno,Tucson(Arizona),,10 hours 25 mins,"1,127 km" +Flagstaff(Arizona),Fresno,,8 hours 47 mins,948 km +Yuma(Arizona),Fresno,,7 hours 35 mins,788 km +Phoenix(Arizona),Fresno,,8 hours 56 mins,949 km +Prescott(Arizona),Fresno,,8 hours 58 mins,951 km +Tucson(Arizona),Fresno,,10 hours 27 mins,"1,129 km" +Ithaca,Pellston(Michigan),,9 hours 39 mins,"1,023 km" +Ithaca,Traverse City(Michigan),,9 hours 39 mins,982 km +Ithaca,Alpena(Michigan),,9 hours 37 mins,971 km +Ithaca,Iron Mountain(Michigan),,13 hours 5 mins,"1,353 km" +Ithaca,Kalamazoo(Michigan),,8 hours 59 mins,945 km +Ithaca,Saginaw(Michigan),,7 hours 19 mins,736 km +Ithaca,Grand Rapids(Michigan),,8 hours 21 mins,858 km +Ithaca,Lansing(Michigan),,7 hours 32 mins,767 km +Ithaca,Muskegon(Michigan),,8 hours 54 mins,922 km +Ithaca,Hancock(Michigan),,14 hours 16 mins,"1,463 km" +Ithaca,Detroit(Michigan),,6 hours 38 mins,649 km +Ithaca,Escanaba(Michigan),,12 hours 9 mins,"1,271 km" +Pellston(Michigan),Ithaca,,9 hours 36 mins,"1,025 km" +Traverse City(Michigan),Ithaca,,9 hours 37 mins,984 km +Alpena(Michigan),Ithaca,,9 hours 34 mins,970 km +Iron Mountain(Michigan),Ithaca,,13 hours 1 min,"1,354 km" +Kalamazoo(Michigan),Ithaca,,8 hours 59 mins,945 km +Saginaw(Michigan),Ithaca,,7 hours 15 mins,737 km +Grand Rapids(Michigan),Ithaca,,8 hours 16 mins,859 km +Lansing(Michigan),Ithaca,,7 hours 29 mins,767 km +Muskegon(Michigan),Ithaca,,8 hours 50 mins,923 km +Hancock(Michigan),Ithaca,,14 hours 12 mins,"1,465 km" +Detroit(Michigan),Ithaca,,6 hours 34 mins,650 km +Escanaba(Michigan),Ithaca,,12 hours 5 mins,"1,272 km" +Las Vegas,Minneapolis,,23 hours 38 mins,"2,666 km" +Minneapolis,Las Vegas,,23 hours 40 mins,"2,669 km" +Oakland,Salt Lake City(Utah),,10 hours 41 mins,"1,175 km" +Oakland,Moab(Utah),,14 hours 15 mins,"1,546 km" +Oakland,Ogden(Utah),,11 hours 9 mins,"1,229 km" +Oakland,Vernal(Utah),,13 hours 30 mins,"1,448 km" +Oakland,Provo(Utah),,11 hours 18 mins,"1,243 km" +Oakland,Cedar City(Utah),,11 hours 4 mins,"1,172 km" +Salt Lake City(Utah),Oakland,,10 hours 42 mins,"1,174 km" +Moab(Utah),Oakland,,14 hours 16 mins,"1,467 km" +Ogden(Utah),Oakland,,11 hours 11 mins,"1,228 km" +Vernal(Utah),Oakland,,13 hours 35 mins,"1,443 km" +Provo(Utah),Oakland,,11 hours 20 mins,"1,237 km" +Cedar City(Utah),Oakland,,10 hours 51 mins,"1,168 km" +Portland,Abilene(Texas),,1 day 4 hours,"2,969 km" +Portland,Amarillo(Texas),,1 day 0 hours,"2,660 km" +Portland,Harlingen(Texas),,1 day 11 hours,"3,754 km" +Portland,Lubbock(Texas),,1 day 2 hours,"2,703 km" +Portland,College Station(Texas),,1 day 8 hours,"3,484 km" +Portland,Corpus Christi(Texas),,1 day 9 hours,"3,579 km" +Portland,Wichita Falls(Texas),,1 day 4 hours,"3,021 km" +Portland,Waco(Texas),,1 day 7 hours,"3,348 km" +Portland,San Angelo(Texas),,1 day 4 hours,"3,003 km" +Portland,Houston(Texas),,1 day 9 hours,"3,623 km" +Portland,San Antonio(Texas),,1 day 7 hours,"3,346 km" +Portland,Del Rio(Texas),,1 day 6 hours,"3,160 km" +Portland,Mission(Texas),,1 day 11 hours,"3,742 km" +Portland,Beaumont(Texas),,1 day 10 hours,"3,699 km" +Portland,Longview(Texas),,1 day 8 hours,"3,448 km" +Portland,Midland(Texas),,1 day 3 hours,"2,836 km" +Portland,El Paso(Texas),,1 day 0 hours,"2,620 km" +Portland,Brownsville(Texas),,1 day 11 hours,"3,793 km" +Portland,Austin(Texas),,1 day 7 hours,"3,305 km" +Portland,Dallas(Texas),,1 day 6 hours,"3,248 km" +Portland,Killeen(Texas),,1 day 7 hours,"3,242 km" +Portland,Laredo(Texas),,1 day 9 hours,"3,450 km" +Portland,Texarkana(Texas),,1 day 8 hours,"3,536 km" +Abilene(Texas),Portland,,1 day 4 hours,"2,967 km" +Amarillo(Texas),Portland,,1 day 0 hours,"2,660 km" +Harlingen(Texas),Portland,,1 day 11 hours,"3,749 km" +Lubbock(Texas),Portland,,1 day 2 hours,"2,701 km" +College Station(Texas),Portland,,1 day 8 hours,"3,516 km" +Corpus Christi(Texas),Portland,,1 day 9 hours,"3,573 km" +Wichita Falls(Texas),Portland,,1 day 4 hours,"3,053 km" +Waco(Texas),Portland,,1 day 7 hours,"3,378 km" +San Angelo(Texas),Portland,,1 day 4 hours,"3,001 km" +Houston(Texas),Portland,,1 day 9 hours,"3,656 km" +San Antonio(Texas),Portland,,1 day 7 hours,"3,341 km" +Del Rio(Texas),Portland,,1 day 6 hours,"3,151 km" +Mission(Texas),Portland,,1 day 11 hours,"3,738 km" +Beaumont(Texas),Portland,,1 day 10 hours,"3,731 km" +Longview(Texas),Portland,,1 day 8 hours,"3,486 km" +Midland(Texas),Portland,,1 day 3 hours,"2,835 km" +El Paso(Texas),Portland,,1 day 0 hours,"2,619 km" +Brownsville(Texas),Portland,,1 day 11 hours,"3,789 km" +Austin(Texas),Portland,,1 day 7 hours,"3,332 km" +Dallas(Texas),Portland,,1 day 6 hours,"3,279 km" +Killeen(Texas),Portland,,1 day 7 hours,"3,241 km" +Laredo(Texas),Portland,,1 day 9 hours,"3,440 km" +Texarkana(Texas),Portland,,1 day 8 hours,"3,542 km" +Minneapolis,Seattle,,23 hours 48 mins,"2,666 km" +Seattle,Minneapolis,,23 hours 47 mins,"2,665 km" +New York,Augusta(Georgia),,11 hours 44 mins,"1,256 km" +New York,Decatur(Georgia),,13 hours 8 mins,"1,393 km" +New York,Atlanta(Georgia),,13 hours 8 mins,"1,401 km" +New York,Valdosta(Georgia),,14 hours 53 mins,"1,582 km" +New York,Savannah(Georgia),,12 hours 4 mins,"1,298 km" +Augusta(Georgia),New York,,11 hours 41 mins,"1,250 km" +Decatur(Georgia),New York,,13 hours 6 mins,"1,383 km" +Atlanta(Georgia),New York,,13 hours 5 mins,"1,391 km" +Valdosta(Georgia),New York,,14 hours 51 mins,"1,574 km" +Savannah(Georgia),New York,,12 hours 0 mins,"1,288 km" +Dallas,Nashville(Tennessee),,9 hours 44 mins,"1,068 km" +Dallas,Bristol(Tennessee),,13 hours 58 mins,"1,535 km" +Dallas,Knoxville(Tennessee),,12 hours 18 mins,"1,356 km" +Dallas,Chattanooga(Tennessee),,11 hours 19 mins,"1,261 km" +Dallas,Memphis(Tennessee),,6 hours 36 mins,728 km +Nashville(Tennessee),Dallas,,9 hours 45 mins,"1,069 km" +Bristol(Tennessee),Dallas,,13 hours 59 mins,"1,536 km" +Knoxville(Tennessee),Dallas,,12 hours 19 mins,"1,357 km" +Chattanooga(Tennessee),Dallas,,11 hours 20 mins,"1,268 km" +Memphis(Tennessee),Dallas,,6 hours 39 mins,729 km +Everett,North Bend(Oregon),,6 hours 45 mins,676 km +Everett,Portland(Oregon),,3 hours 12 mins,325 km +Everett,Medford(Oregon),,7 hours 22 mins,762 km +Everett,Bend(Oregon),,6 hours 7 mins,573 km +Everett,Eugene(Oregon),,4 hours 53 mins,500 km +North Bend(Oregon),Everett,,6 hours 47 mins,676 km +North Bend(Oregon),Portland(Oregon),,3 hours 39 mins,353 km +North Bend(Oregon),Medford(Oregon),,3 hours 2 mins,270 km +North Bend(Oregon),Bend(Oregon),,4 hours 17 mins,384 km +North Bend(Oregon),Eugene(Oregon),,2 hours 3 mins,181 km +Portland(Oregon),Everett,,3 hours 14 mins,325 km +Portland(Oregon),North Bend(Oregon),,3 hours 41 mins,353 km +Portland(Oregon),Medford(Oregon),,4 hours 17 mins,439 km +Portland(Oregon),Bend(Oregon),,3 hours 11 mins,262 km +Portland(Oregon),Eugene(Oregon),,1 hour 48 mins,177 km +Medford(Oregon),Everett,,7 hours 24 mins,763 km +Medford(Oregon),North Bend(Oregon),,3 hours 4 mins,270 km +Medford(Oregon),Portland(Oregon),,4 hours 16 mins,439 km +Medford(Oregon),Bend(Oregon),,3 hours 11 mins,279 km +Medford(Oregon),Eugene(Oregon),,2 hours 40 mins,268 km +Bend(Oregon),Everett,,6 hours 9 mins,573 km +Bend(Oregon),North Bend(Oregon),,4 hours 18 mins,385 km +Bend(Oregon),Portland(Oregon),,3 hours 12 mins,262 km +Bend(Oregon),Medford(Oregon),,3 hours 11 mins,279 km +Bend(Oregon),Eugene(Oregon),,2 hours 31 mins,208 km +Eugene(Oregon),Everett,,4 hours 52 mins,500 km +Eugene(Oregon),North Bend(Oregon),,2 hours 2 mins,184 km +Eugene(Oregon),Portland(Oregon),,1 hour 44 mins,176 km +Eugene(Oregon),Medford(Oregon),,2 hours 39 mins,270 km +Eugene(Oregon),Bend(Oregon),,2 hours 27 mins,207 km +Washington,San Diego(California),,1 day 15 hours,"4,273 km" +Washington,Redding(California),,1 day 17 hours,"4,482 km" +Washington,Sacramento(California),,1 day 16 hours,"4,379 km" +Washington,Fresno(California),,1 day 16 hours,"4,496 km" +Washington,San Luis Obispo(California),,1 day 17 hours,"4,539 km" +Washington,Oakland(California),,1 day 17 hours,"4,509 km" +Washington,Santa Barbara(California),,1 day 16 hours,"4,438 km" +Washington,Stockton(California),,1 day 17 hours,"4,456 km" +Washington,Santa Rosa(California),,1 day 17 hours,"4,534 km" +Washington,Bakersfield(California),,1 day 15 hours,"4,320 km" +Washington,Santa Ana(California),,1 day 15 hours,"4,295 km" +Washington,Santa Maria(California),,1 day 17 hours,"4,494 km" +Washington,San Jose(California),,1 day 18 hours,"4,572 km" +Washington,Burbank(California),,1 day 15 hours,"4,305 km" +Washington,Arcata(California),,1 day 20 hours,"4,706 km" +Washington,Butte(California),,1 day 17 hours,"4,419 km" +Washington,Palm Springs(California),,1 day 14 hours,"4,131 km" +Washington,Los Angeles(California),,1 day 15 hours,"4,299 km" +Washington,Long Beach(California),,1 day 15 hours,"4,317 km" +Washington,San Francisco(California),,1 day 17 hours,"4,519 km" +Washington,Monterey(California),,1 day 18 hours,"4,674 km" +San Diego(California),Washington,,1 day 15 hours,"4,268 km" +Redding(California),Washington,,1 day 17 hours,"4,489 km" +Sacramento(California),Washington,,1 day 16 hours,"4,387 km" +Fresno(California),Washington,,1 day 16 hours,"4,495 km" +San Luis Obispo(California),Washington,,1 day 17 hours,"4,540 km" +Oakland(California),Washington,,1 day 17 hours,"4,516 km" +Santa Barbara(California),Washington,,1 day 16 hours,"4,437 km" +Stockton(California),Washington,,1 day 17 hours,"4,463 km" +Santa Rosa(California),Washington,,1 day 18 hours,"4,542 km" +Bakersfield(California),Washington,,1 day 15 hours,"4,320 km" +Santa Ana(California),Washington,,1 day 15 hours,"4,291 km" +Santa Maria(California),Washington,,1 day 17 hours,"4,496 km" +San Jose(California),Washington,,1 day 18 hours,"4,578 km" +Burbank(California),Washington,,1 day 15 hours,"4,298 km" +Arcata(California),Washington,,1 day 20 hours,"4,713 km" +Butte(California),Washington,,1 day 17 hours,"4,411 km" +Palm Springs(California),Washington,,1 day 13 hours,"4,130 km" +Los Angeles(California),Washington,,1 day 15 hours,"4,294 km" +Long Beach(California),Washington,,1 day 15 hours,"4,321 km" +San Francisco(California),Washington,,1 day 17 hours,"4,526 km" +Monterey(California),Washington,,1 day 18 hours,"4,675 km" +Savannah,Indianapolis,,11 hours 30 mins,"1,240 km" +Indianapolis,Savannah,,11 hours 31 mins,"1,242 km" +Louisville,Sarasota(Florida),,13 hours 29 mins,"1,493 km" +Louisville,Fort Myers(Florida),,14 hours 26 mins,"1,598 km" +Louisville,Gainesville(Florida),,11 hours 5 mins,"1,209 km" +Louisville,Orlando(Florida),,12 hours 29 mins,"1,381 km" +Louisville,Daytona Beach(Florida),,12 hours 33 mins,"1,381 km" +Louisville,Jacksonville(Florida),,11 hours 10 mins,"1,231 km" +Louisville,Tampa(Florida),,12 hours 41 mins,"1,409 km" +Louisville,Panama City(Florida),,9 hours 56 mins,"1,015 km" +Louisville,Key West(Florida),,18 hours 41 mins,"1,995 km" +Louisville,West Palm Beach(Florida),,14 hours 42 mins,"1,637 km" +Louisville,Miami(Florida),,15 hours 41 mins,"1,741 km" +Louisville,Tallahassee(Florida),,10 hours 13 mins,"1,070 km" +Louisville,Punta Gorda(Florida),,14 hours 1 min,"1,563 km" +Louisville,Fort Lauderdale(Florida),,15 hours 20 mins,"1,705 km" +Louisville,Pensacola(Florida),,9 hours 8 mins,993 km +Sarasota(Florida),Louisville,,13 hours 28 mins,"1,496 km" +Fort Myers(Florida),Louisville,,14 hours 25 mins,"1,602 km" +Gainesville(Florida),Louisville,,11 hours 4 mins,"1,211 km" +Orlando(Florida),Louisville,,12 hours 26 mins,"1,382 km" +Daytona Beach(Florida),Louisville,,12 hours 32 mins,"1,374 km" +Jacksonville(Florida),Louisville,,11 hours 11 mins,"1,234 km" +Tampa(Florida),Louisville,,12 hours 40 mins,"1,411 km" +Panama City(Florida),Louisville,,9 hours 58 mins,"1,012 km" +Key West(Florida),Louisville,,18 hours 41 mins,"1,997 km" +West Palm Beach(Florida),Louisville,,14 hours 41 mins,"1,640 km" +Miami(Florida),Louisville,,15 hours 38 mins,"1,746 km" +Tallahassee(Florida),Louisville,,10 hours 15 mins,"1,067 km" +Punta Gorda(Florida),Louisville,,14 hours 0 mins,"1,566 km" +Fort Lauderdale(Florida),Louisville,,15 hours 19 mins,"1,708 km" +Pensacola(Florida),Louisville,,9 hours 5 mins,993 km +Panama City,Nashville,,7 hours 25 mins,731 km +Nashville,Panama City,,7 hours 23 mins,735 km +White Plains,Moline(Illinois),,14 hours 17 mins,"1,543 km" +White Plains,Belleville(Illinois),,14 hours 57 mins,"1,604 km" +White Plains,Bloomington(Illinois),,13 hours 45 mins,"1,484 km" +White Plains,Champaign(Illinois),,13 hours 7 mins,"1,413 km" +White Plains,Chicago(Illinois),,12 hours 9 mins,"1,308 km" +White Plains,Rockford(Illinois),,13 hours 34 mins,"1,448 km" +White Plains,Peoria(Illinois),,14 hours 5 mins,"1,530 km" +Moline(Illinois),White Plains,,14 hours 17 mins,"1,545 km" +Belleville(Illinois),White Plains,,14 hours 58 mins,"1,608 km" +Bloomington(Illinois),White Plains,,13 hours 43 mins,"1,479 km" +Champaign(Illinois),White Plains,,13 hours 9 mins,"1,415 km" +Chicago(Illinois),White Plains,,12 hours 8 mins,"1,309 km" +Rockford(Illinois),White Plains,,13 hours 33 mins,"1,459 km" +Peoria(Illinois),White Plains,,14 hours 6 mins,"1,532 km" +Mosinee,Moline(Illinois),,4 hours 26 mins,457 km +Mosinee,Belleville(Illinois),,7 hours 1 min,771 km +Mosinee,Bloomington(Illinois),,4 hours 38 mins,518 km +Mosinee,Champaign(Illinois),,5 hours 19 mins,598 km +Mosinee,Chicago(Illinois),,4 hours 0 mins,433 km +Mosinee,Rockford(Illinois),,2 hours 55 mins,314 km +Mosinee,Peoria(Illinois),,4 hours 50 mins,520 km +Moline(Illinois),Mosinee,,4 hours 28 mins,451 km +Belleville(Illinois),Mosinee,,7 hours 2 mins,771 km +Bloomington(Illinois),Mosinee,,4 hours 38 mins,515 km +Champaign(Illinois),Mosinee,,5 hours 22 mins,599 km +Chicago(Illinois),Mosinee,,3 hours 58 mins,433 km +Rockford(Illinois),Mosinee,,2 hours 57 mins,314 km +Peoria(Illinois),Mosinee,,4 hours 50 mins,517 km +Indianapolis,Pellston(Michigan),,6 hours 52 mins,765 km +Indianapolis,Traverse City(Michigan),,6 hours 16 mins,652 km +Indianapolis,Alpena(Michigan),,7 hours 23 mins,780 km +Indianapolis,Iron Mountain(Michigan),,7 hours 36 mins,792 km +Indianapolis,Kalamazoo(Michigan),,3 hours 44 mins,374 km +Indianapolis,Saginaw(Michigan),,5 hours 3 mins,529 km +Indianapolis,Grand Rapids(Michigan),,4 hours 10 mins,423 km +Indianapolis,Lansing(Michigan),,3 hours 53 mins,409 km +Indianapolis,Muskegon(Michigan),,4 hours 26 mins,437 km +Indianapolis,Hancock(Michigan),,9 hours 32 mins,971 km +Indianapolis,Detroit(Michigan),,4 hours 22 mins,461 km +Indianapolis,Escanaba(Michigan),,7 hours 47 mins,810 km +Pellston(Michigan),Indianapolis,,6 hours 48 mins,764 km +Traverse City(Michigan),Indianapolis,,6 hours 17 mins,650 km +Alpena(Michigan),Indianapolis,,7 hours 18 mins,779 km +Iron Mountain(Michigan),Indianapolis,,7 hours 36 mins,792 km +Kalamazoo(Michigan),Indianapolis,,3 hours 44 mins,392 km +Saginaw(Michigan),Indianapolis,,4 hours 58 mins,528 km +Grand Rapids(Michigan),Indianapolis,,4 hours 8 mins,422 km +Lansing(Michigan),Indianapolis,,3 hours 51 mins,410 km +Muskegon(Michigan),Indianapolis,,4 hours 25 mins,434 km +Hancock(Michigan),Indianapolis,,9 hours 33 mins,972 km +Detroit(Michigan),Indianapolis,,4 hours 24 mins,462 km +Escanaba(Michigan),Indianapolis,,7 hours 48 mins,811 km +Denver,Flagstaff(Arizona),,10 hours 45 mins,"1,091 km" +Denver,Yuma(Arizona),,15 hours 19 mins,"1,593 km" +Denver,Phoenix(Arizona),,12 hours 47 mins,"1,391 km" +Denver,Prescott(Arizona),,12 hours 17 mins,"1,242 km" +Denver,Tucson(Arizona),,12 hours 53 mins,"1,447 km" +Flagstaff(Arizona),Denver,,10 hours 37 mins,"1,089 km" +Yuma(Arizona),Denver,,15 hours 14 mins,"1,601 km" +Phoenix(Arizona),Denver,,12 hours 41 mins,"1,321 km" +Prescott(Arizona),Denver,,12 hours 8 mins,"1,242 km" +Tucson(Arizona),Denver,,12 hours 51 mins,"1,448 km" +Valparaiso,Abilene(Texas),,, +Valparaiso,Amarillo(Texas),,, +Valparaiso,Harlingen(Texas),,, +Valparaiso,Lubbock(Texas),,, +Valparaiso,College Station(Texas),,, +Valparaiso,Corpus Christi(Texas),,, +Valparaiso,Wichita Falls(Texas),,, +Valparaiso,Waco(Texas),,, +Valparaiso,San Angelo(Texas),,, +Valparaiso,Houston(Texas),,, +Valparaiso,San Antonio(Texas),,, +Valparaiso,Del Rio(Texas),,, +Valparaiso,Mission(Texas),,, +Valparaiso,Beaumont(Texas),,, +Valparaiso,Longview(Texas),,, +Valparaiso,Midland(Texas),,, +Valparaiso,El Paso(Texas),,, +Valparaiso,Brownsville(Texas),,, +Valparaiso,Austin(Texas),,, +Valparaiso,Dallas(Texas),,, +Valparaiso,Killeen(Texas),,, +Valparaiso,Laredo(Texas),,, +Valparaiso,Texarkana(Texas),,, +Abilene(Texas),Valparaiso,,, +Amarillo(Texas),Valparaiso,,, +Harlingen(Texas),Valparaiso,,, +Lubbock(Texas),Valparaiso,,, +College Station(Texas),Valparaiso,,, +Corpus Christi(Texas),Valparaiso,,, +Wichita Falls(Texas),Valparaiso,,, +Waco(Texas),Valparaiso,,, +San Angelo(Texas),Valparaiso,,, +Houston(Texas),Valparaiso,,, +San Antonio(Texas),Valparaiso,,, +Del Rio(Texas),Valparaiso,,, +Mission(Texas),Valparaiso,,, +Beaumont(Texas),Valparaiso,,, +Longview(Texas),Valparaiso,,, +Midland(Texas),Valparaiso,,, +El Paso(Texas),Valparaiso,,, +Brownsville(Texas),Valparaiso,,, +Austin(Texas),Valparaiso,,, +Dallas(Texas),Valparaiso,,, +Killeen(Texas),Valparaiso,,, +Laredo(Texas),Valparaiso,,, +Texarkana(Texas),Valparaiso,,, +Louisville,Greensboro(North Carolina),,7 hours 30 mins,785 km +Louisville,Wilmington(North Carolina),,10 hours 24 mins,"1,112 km" +Louisville,New Bern(North Carolina),,10 hours 24 mins,"1,090 km" +Louisville,Charlotte(North Carolina),,7 hours 23 mins,763 km +Louisville,Raleigh(North Carolina),,8 hours 40 mins,905 km +Louisville,Asheville(North Carolina),,5 hours 30 mins,579 km +Louisville,Fayetteville(North Carolina),,9 hours 1 min,930 km +Greensboro(North Carolina),Louisville,,7 hours 29 mins,784 km +Wilmington(North Carolina),Louisville,,10 hours 22 mins,"1,112 km" +New Bern(North Carolina),Louisville,,10 hours 21 mins,"1,089 km" +Charlotte(North Carolina),Louisville,,7 hours 21 mins,762 km +Raleigh(North Carolina),Louisville,,8 hours 36 mins,905 km +Asheville(North Carolina),Louisville,,5 hours 28 mins,579 km +Fayetteville(North Carolina),Louisville,,9 hours 0 mins,931 km +Denver,Philadelphia,,1 day 1 hour,"2,781 km" +Philadelphia,Denver,,1 day 1 hour,"2,779 km" +Fayetteville,Chicago,,12 hours 50 mins,"1,323 km" +Chicago,Fayetteville,,12 hours 48 mins,"1,323 km" +Atlanta,State College(Pennsylvania),,11 hours 44 mins,"1,220 km" +Atlanta,Johnstown(Pennsylvania),,11 hours 1 min,"1,155 km" +Atlanta,Harrisburg(Pennsylvania),,10 hours 41 mins,"1,151 km" +Atlanta,Erie(Pennsylvania),,11 hours 49 mins,"1,298 km" +Atlanta,Pittsburgh(Pennsylvania),,10 hours 28 mins,"1,102 km" +Atlanta,Latrobe(Pennsylvania),,10 hours 40 mins,"1,088 km" +Atlanta,Philadelphia(Pennsylvania),,11 hours 44 mins,"1,253 km" +Atlanta,Lewisburg(Pennsylvania),,11 hours 40 mins,"1,238 km" +Atlanta,Scranton(Pennsylvania),,12 hours 28 mins,"1,339 km" +State College(Pennsylvania),Atlanta,,11 hours 43 mins,"1,227 km" +Johnstown(Pennsylvania),Atlanta,,11 hours 0 mins,"1,154 km" +Harrisburg(Pennsylvania),Atlanta,,10 hours 43 mins,"1,151 km" +Erie(Pennsylvania),Atlanta,,11 hours 51 mins,"1,297 km" +Pittsburgh(Pennsylvania),Atlanta,,10 hours 28 mins,"1,101 km" +Latrobe(Pennsylvania),Atlanta,,10 hours 38 mins,"1,086 km" +Philadelphia(Pennsylvania),Atlanta,,11 hours 47 mins,"1,261 km" +Lewisburg(Pennsylvania),Atlanta,,11 hours 42 mins,"1,238 km" +Scranton(Pennsylvania),Atlanta,,12 hours 28 mins,"1,339 km" +Elmira,Detroit,,7 hours 7 mins,764 km +Detroit,Elmira,,7 hours 7 mins,764 km +Syracuse,Augusta(Georgia),,13 hours 17 mins,"1,431 km" +Syracuse,Decatur(Georgia),,14 hours 25 mins,"1,542 km" +Syracuse,Atlanta(Georgia),,14 hours 25 mins,"1,550 km" +Syracuse,Valdosta(Georgia),,16 hours 59 mins,"1,800 km" +Syracuse,Savannah(Georgia),,14 hours 10 mins,"1,516 km" +Augusta(Georgia),Syracuse,,13 hours 17 mins,"1,431 km" +Decatur(Georgia),Syracuse,,14 hours 26 mins,"1,542 km" +Atlanta(Georgia),Syracuse,,14 hours 25 mins,"1,550 km" +Valdosta(Georgia),Syracuse,,16 hours 51 mins,"1,797 km" +Savannah(Georgia),Syracuse,,13 hours 59 mins,"1,511 km" +San Jose,Seattle(Washington),,12 hours 53 mins,"1,351 km" +San Jose,Wenatchee(Washington),,13 hours 56 mins,"1,374 km" +San Jose,Pasco(Washington),,12 hours 25 mins,"1,243 km" +San Jose,Yakima(Washington),,12 hours 8 mins,"1,194 km" +San Jose,Walla Walla(Washington),,12 hours 49 mins,"1,284 km" +San Jose,Everett(Washington),,13 hours 22 mins,"1,397 km" +San Jose,Spokane(Washington),,14 hours 24 mins,"1,460 km" +Seattle(Washington),San Jose,,12 hours 57 mins,"1,353 km" +Wenatchee(Washington),San Jose,,14 hours 6 mins,"1,366 km" +Pasco(Washington),San Jose,,12 hours 35 mins,"1,244 km" +Yakima(Washington),San Jose,,12 hours 17 mins,"1,194 km" +Walla Walla(Washington),San Jose,,12 hours 59 mins,"1,285 km" +Everett(Washington),San Jose,,13 hours 25 mins,"1,398 km" +Spokane(Washington),San Jose,,14 hours 33 mins,"1,462 km" +St. Louis,Grand Island(Nebraska),,7 hours 58 mins,866 km +St. Louis,North Platte(Nebraska),,9 hours 47 mins,"1,078 km" +St. Louis,Omaha(Nebraska),,6 hours 21 mins,695 km +St. Louis,Scottsbluff(Nebraska),,12 hours 27 mins,"1,355 km" +Grand Island(Nebraska),St. Louis,,7 hours 58 mins,866 km +Grand Island(Nebraska),North Platte(Nebraska),,2 hours 14 mins,235 km +Grand Island(Nebraska),Omaha(Nebraska),,2 hours 14 mins,240 km +Grand Island(Nebraska),Scottsbluff(Nebraska),,4 hours 54 mins,511 km +North Platte(Nebraska),St. Louis,,9 hours 47 mins,"1,077 km" +North Platte(Nebraska),Grand Island(Nebraska),,2 hours 15 mins,235 km +North Platte(Nebraska),Omaha(Nebraska),,4 hours 3 mins,451 km +North Platte(Nebraska),Scottsbluff(Nebraska),,2 hours 54 mins,284 km +Omaha(Nebraska),St. Louis,,6 hours 22 mins,695 km +Omaha(Nebraska),Grand Island(Nebraska),,2 hours 15 mins,239 km +Omaha(Nebraska),North Platte(Nebraska),,4 hours 4 mins,451 km +Omaha(Nebraska),Scottsbluff(Nebraska),,6 hours 44 mins,728 km +Scottsbluff(Nebraska),St. Louis,,12 hours 25 mins,"1,358 km" +Scottsbluff(Nebraska),Grand Island(Nebraska),,4 hours 53 mins,516 km +Scottsbluff(Nebraska),North Platte(Nebraska),,2 hours 52 mins,288 km +Scottsbluff(Nebraska),Omaha(Nebraska),,6 hours 41 mins,732 km +Wilmington,State College(Pennsylvania),,8 hours 41 mins,918 km +Wilmington,Johnstown(Pennsylvania),,8 hours 15 mins,859 km +Wilmington,Harrisburg(Pennsylvania),,7 hours 13 mins,764 km +Wilmington,Erie(Pennsylvania),,10 hours 49 mins,"1,162 km" +Wilmington,Pittsburgh(Pennsylvania),,9 hours 6 mins,964 km +Wilmington,Latrobe(Pennsylvania),,8 hours 41 mins,889 km +Wilmington,Philadelphia(Pennsylvania),,7 hours 41 mins,811 km +Wilmington,Lewisburg(Pennsylvania),,8 hours 21 mins,863 km +Wilmington,Scranton(Pennsylvania),,9 hours 4 mins,961 km +State College(Pennsylvania),Wilmington,,8 hours 49 mins,928 km +Johnstown(Pennsylvania),Wilmington,,8 hours 23 mins,863 km +Harrisburg(Pennsylvania),Wilmington,,7 hours 22 mins,767 km +Erie(Pennsylvania),Wilmington,,10 hours 59 mins,"1,164 km" +Pittsburgh(Pennsylvania),Wilmington,,9 hours 13 mins,967 km +Latrobe(Pennsylvania),Wilmington,,8 hours 51 mins,889 km +Philadelphia(Pennsylvania),Wilmington,,7 hours 44 mins,819 km +Lewisburg(Pennsylvania),Wilmington,,8 hours 30 mins,871 km +Scranton(Pennsylvania),Wilmington,,9 hours 13 mins,965 km +Burbank,Salt Lake City,,10 hours 4 mins,"1,114 km" +Salt Lake City,Burbank,,9 hours 59 mins,"1,118 km" +Oakland,Honolulu,,, +Honolulu,Oakland,,, +Washington,Charleston(South Carolina),,7 hours 54 mins,856 km +Washington,Hilton Head(South Carolina),,8 hours 30 mins,917 km +Washington,Greer(South Carolina),,7 hours 21 mins,783 km +Washington,Greenville(South Carolina),,7 hours 26 mins,799 km +Washington,Myrtle Beach(South Carolina),,6 hours 47 mins,693 km +Charleston(South Carolina),Washington,,7 hours 55 mins,856 km +Hilton Head(South Carolina),Washington,,8 hours 29 mins,916 km +Greer(South Carolina),Washington,,7 hours 22 mins,784 km +Greenville(South Carolina),Washington,,7 hours 27 mins,798 km +Myrtle Beach(South Carolina),Washington,,6 hours 45 mins,693 km +Pensacola,Greensboro(North Carolina),,9 hours 47 mins,"1,054 km" +Pensacola,Wilmington(North Carolina),,10 hours 48 mins,"1,185 km" +Pensacola,New Bern(North Carolina),,12 hours 3 mins,"1,320 km" +Pensacola,Charlotte(North Carolina),,8 hours 35 mins,915 km +Pensacola,Raleigh(North Carolina),,10 hours 57 mins,"1,173 km" +Pensacola,Asheville(North Carolina),,8 hours 10 mins,839 km +Pensacola,Fayetteville(North Carolina),,10 hours 5 mins,"1,116 km" +Greensboro(North Carolina),Pensacola,,9 hours 51 mins,"1,054 km" +Wilmington(North Carolina),Pensacola,,10 hours 55 mins,"1,187 km" +New Bern(North Carolina),Pensacola,,12 hours 10 mins,"1,321 km" +Charlotte(North Carolina),Pensacola,,8 hours 39 mins,913 km +Raleigh(North Carolina),Pensacola,,10 hours 58 mins,"1,175 km" +Asheville(North Carolina),Pensacola,,8 hours 14 mins,841 km +Fayetteville(North Carolina),Pensacola,,10 hours 11 mins,"1,117 km" +San Antonio,San Diego(California),,18 hours 10 mins,"2,054 km" +San Antonio,Redding(California),,1 day 4 hours,"3,052 km" +San Antonio,Sacramento(California),,1 day 1 hour,"2,793 km" +San Antonio,Fresno(California),,22 hours 44 mins,"2,527 km" +San Antonio,San Luis Obispo(California),,22 hours 27 mins,"2,482 km" +San Antonio,Oakland(California),,1 day 1 hour,"2,771 km" +San Antonio,Santa Barbara(California),,20 hours 57 mins,"2,331 km" +San Antonio,Stockton(California),,1 day 0 hours,"2,717 km" +San Antonio,Santa Rosa(California),,1 day 2 hours,"2,863 km" +San Antonio,Bakersfield(California),,21 hours 10 mins,"2,354 km" +San Antonio,Santa Ana(California),,19 hours 20 mins,"2,179 km" +San Antonio,Santa Maria(California),,22 hours 4 mins,"2,433 km" +San Antonio,San Jose(California),,1 day 1 hour,"2,721 km" +San Antonio,Burbank(California),,19 hours 38 mins,"2,198 km" +San Antonio,Arcata(California),,1 day 6 hours,"3,224 km" +San Antonio,Butte(California),,1 day 3 hours,"2,926 km" +San Antonio,Palm Springs(California),,17 hours 57 mins,"2,010 km" +San Antonio,Los Angeles(California),,19 hours 32 mins,"2,180 km" +San Antonio,Long Beach(California),,19 hours 40 mins,"2,195 km" +San Antonio,San Francisco(California),,1 day 1 hour,"2,789 km" +San Antonio,Monterey(California),,1 day 0 hours,"2,687 km" +San Diego(California),San Antonio,,18 hours 14 mins,"2,051 km" +Redding(California),San Antonio,,1 day 3 hours,"3,050 km" +Sacramento(California),San Antonio,,1 day 1 hour,"2,793 km" +Fresno(California),San Antonio,,22 hours 44 mins,"2,526 km" +San Luis Obispo(California),San Antonio,,22 hours 30 mins,"2,482 km" +Oakland(California),San Antonio,,1 day 1 hour,"2,770 km" +Santa Barbara(California),San Antonio,,20 hours 59 mins,"2,331 km" +Stockton(California),San Antonio,,1 day 0 hours,"2,717 km" +Santa Rosa(California),San Antonio,,1 day 2 hours,"2,863 km" +Bakersfield(California),San Antonio,,21 hours 10 mins,"2,354 km" +Santa Ana(California),San Antonio,,19 hours 19 mins,"2,153 km" +Santa Maria(California),San Antonio,,22 hours 4 mins,"2,432 km" +San Jose(California),San Antonio,,1 day 1 hour,"2,720 km" +Burbank(California),San Antonio,,19 hours 36 mins,"2,192 km" +Arcata(California),San Antonio,,1 day 6 hours,"3,225 km" +Butte(California),San Antonio,,1 day 3 hours,"2,925 km" +Palm Springs(California),San Antonio,,17 hours 58 mins,"2,008 km" +Los Angeles(California),San Antonio,,19 hours 28 mins,"2,175 km" +Long Beach(California),San Antonio,,19 hours 37 mins,"2,187 km" +San Francisco(California),San Antonio,,1 day 1 hour,"2,788 km" +Monterey(California),San Antonio,,1 day 0 hours,"2,687 km" +Pensacola,Abilene(Texas),,12 hours 19 mins,"1,337 km" +Pensacola,Amarillo(Texas),,15 hours 9 mins,"1,636 km" +Pensacola,Harlingen(Texas),,12 hours 30 mins,"1,373 km" +Pensacola,Lubbock(Texas),,14 hours 42 mins,"1,602 km" +Pensacola,College Station(Texas),,9 hours 1 min,990 km +Pensacola,Corpus Christi(Texas),,10 hours 45 mins,"1,178 km" +Pensacola,Wichita Falls(Texas),,11 hours 44 mins,"1,275 km" +Pensacola,Waco(Texas),,10 hours 20 mins,"1,101 km" +Pensacola,San Angelo(Texas),,13 hours 19 mins,"1,429 km" +Pensacola,Houston(Texas),,7 hours 37 mins,845 km +Pensacola,San Antonio(Texas),,10 hours 29 mins,"1,159 km" +Pensacola,Del Rio(Texas),,12 hours 52 mins,"1,406 km" +Pensacola,Mission(Texas),,12 hours 57 mins,"1,413 km" +Pensacola,Beaumont(Texas),,6 hours 24 mins,712 km +Pensacola,Longview(Texas),,8 hours 1 min,848 km +Pensacola,Midland(Texas),,14 hours 27 mins,"1,578 km" +Pensacola,El Paso(Texas),,18 hours 11 mins,"2,043 km" +Pensacola,Brownsville(Texas),,12 hours 52 mins,"1,412 km" +Pensacola,Austin(Texas),,10 hours 5 mins,"1,108 km" +Pensacola,Dallas(Texas),,9 hours 44 mins,"1,049 km" +Pensacola,Killeen(Texas),,10 hours 40 mins,"1,163 km" +Pensacola,Laredo(Texas),,12 hours 37 mins,"1,351 km" +Pensacola,Texarkana(Texas),,8 hours 3 mins,859 km +Abilene(Texas),Pensacola,,12 hours 19 mins,"1,332 km" +Amarillo(Texas),Pensacola,,15 hours 10 mins,"1,625 km" +Harlingen(Texas),Pensacola,,12 hours 28 mins,"1,372 km" +Lubbock(Texas),Pensacola,,14 hours 39 mins,"1,598 km" +College Station(Texas),Pensacola,,9 hours 1 min,993 km +Corpus Christi(Texas),Pensacola,,10 hours 50 mins,"1,183 km" +Wichita Falls(Texas),Pensacola,,11 hours 48 mins,"1,262 km" +Waco(Texas),Pensacola,,10 hours 22 mins,"1,100 km" +San Angelo(Texas),Pensacola,,13 hours 20 mins,"1,428 km" +Houston(Texas),Pensacola,,7 hours 38 mins,845 km +San Antonio(Texas),Pensacola,,10 hours 31 mins,"1,159 km" +Del Rio(Texas),Pensacola,,12 hours 57 mins,"1,406 km" +Mission(Texas),Pensacola,,12 hours 57 mins,"1,413 km" +Beaumont(Texas),Pensacola,,6 hours 26 mins,711 km +Longview(Texas),Pensacola,,8 hours 1 min,843 km +Midland(Texas),Pensacola,,14 hours 25 mins,"1,572 km" +El Paso(Texas),Pensacola,,18 hours 13 mins,"2,043 km" +Brownsville(Texas),Pensacola,,12 hours 52 mins,"1,412 km" +Austin(Texas),Pensacola,,10 hours 6 mins,"1,108 km" +Dallas(Texas),Pensacola,,9 hours 45 mins,"1,041 km" +Killeen(Texas),Pensacola,,10 hours 41 mins,"1,157 km" +Laredo(Texas),Pensacola,,12 hours 36 mins,"1,350 km" +Texarkana(Texas),Pensacola,,8 hours 6 mins,861 km +Albany,Sarasota(Florida),,, +Albany,Fort Myers(Florida),,, +Albany,Gainesville(Florida),,, +Albany,Orlando(Florida),,, +Albany,Daytona Beach(Florida),,, +Albany,Jacksonville(Florida),,, +Albany,Tampa(Florida),,, +Albany,Panama City(Florida),,, +Albany,Key West(Florida),,, +Albany,West Palm Beach(Florida),,, +Albany,Miami(Florida),,, +Albany,Tallahassee(Florida),,, +Albany,Punta Gorda(Florida),,, +Albany,Fort Lauderdale(Florida),,, +Albany,Pensacola(Florida),,, +Sarasota(Florida),Albany,,, +Fort Myers(Florida),Albany,,, +Gainesville(Florida),Albany,,, +Orlando(Florida),Albany,,, +Daytona Beach(Florida),Albany,,, +Jacksonville(Florida),Albany,,, +Tampa(Florida),Albany,,, +Panama City(Florida),Albany,,, +Key West(Florida),Albany,,, +West Palm Beach(Florida),Albany,,, +Miami(Florida),Albany,,, +Tallahassee(Florida),Albany,,, +Punta Gorda(Florida),Albany,,, +Fort Lauderdale(Florida),Albany,,, +Pensacola(Florida),Albany,,, +Evansville,Abilene(Texas),,13 hours 51 mins,"1,459 km" +Evansville,Amarillo(Texas),,13 hours 30 mins,"1,486 km" +Evansville,Harlingen(Texas),,18 hours 13 mins,"1,882 km" +Evansville,Lubbock(Texas),,14 hours 53 mins,"1,625 km" +Evansville,College Station(Texas),,13 hours 19 mins,"1,327 km" +Evansville,Corpus Christi(Texas),,16 hours 27 mins,"1,687 km" +Evansville,Wichita Falls(Texas),,11 hours 46 mins,"1,290 km" +Evansville,Waco(Texas),,12 hours 37 mins,"1,325 km" +Evansville,San Angelo(Texas),,15 hours 5 mins,"1,583 km" +Evansville,Houston(Texas),,13 hours 19 mins,"1,354 km" +Evansville,San Antonio(Texas),,15 hours 13 mins,"1,610 km" +Evansville,Del Rio(Texas),,17 hours 30 mins,"1,836 km" +Evansville,Mission(Texas),,18 hours 42 mins,"1,995 km" +Evansville,Beaumont(Texas),,12 hours 52 mins,"1,375 km" +Evansville,Longview(Texas),,10 hours 11 mins,"1,030 km" +Evansville,Midland(Texas),,15 hours 51 mins,"1,736 km" +Evansville,El Paso(Texas),,20 hours 6 mins,"2,184 km" +Evansville,Brownsville(Texas),,18 hours 34 mins,"1,921 km" +Evansville,Austin(Texas),,14 hours 1 min,"1,483 km" +Evansville,Dallas(Texas),,11 hours 14 mins,"1,169 km" +Evansville,Killeen(Texas),,13 hours 25 mins,"1,418 km" +Evansville,Laredo(Texas),,17 hours 29 mins,"1,860 km" +Evansville,Texarkana(Texas),,8 hours 45 mins,889 km +Abilene(Texas),Evansville,,13 hours 46 mins,"1,475 km" +Amarillo(Texas),Evansville,,13 hours 31 mins,"1,482 km" +Harlingen(Texas),Evansville,,18 hours 6 mins,"1,898 km" +Lubbock(Texas),Evansville,,14 hours 50 mins,"1,622 km" +College Station(Texas),Evansville,,13 hours 13 mins,"1,339 km" +Corpus Christi(Texas),Evansville,,16 hours 28 mins,"1,708 km" +Wichita Falls(Texas),Evansville,,11 hours 45 mins,"1,287 km" +Waco(Texas),Evansville,,12 hours 31 mins,"1,336 km" +San Angelo(Texas),Evansville,,14 hours 59 mins,"1,599 km" +Houston(Texas),Evansville,,13 hours 16 mins,"1,370 km" +San Antonio(Texas),Evansville,,15 hours 7 mins,"1,624 km" +Del Rio(Texas),Evansville,,17 hours 22 mins,"1,852 km" +Mission(Texas),Evansville,,18 hours 34 mins,"2,010 km" +Beaumont(Texas),Evansville,,12 hours 53 mins,"1,375 km" +Longview(Texas),Evansville,,10 hours 8 mins,"1,045 km" +Midland(Texas),Evansville,,15 hours 52 mins,"1,714 km" +El Paso(Texas),Evansville,,20 hours 3 mins,"2,179 km" +Brownsville(Texas),Evansville,,18 hours 29 mins,"1,938 km" +Austin(Texas),Evansville,,13 hours 56 mins,"1,498 km" +Dallas(Texas),Evansville,,11 hours 10 mins,"1,184 km" +Killeen(Texas),Evansville,,13 hours 21 mins,"1,433 km" +Laredo(Texas),Evansville,,17 hours 24 mins,"1,875 km" +Texarkana(Texas),Evansville,,8 hours 41 mins,903 km +Fort Myers,Toledo(Ohio),,17 hours 48 mins,"1,989 km" +Fort Myers,Cleveland(Ohio),,17 hours 59 mins,"1,951 km" +Fort Myers,Dayton(Ohio),,15 hours 42 mins,"1,751 km" +Fort Myers,Columbus(Ohio),,16 hours 28 mins,"1,837 km" +Fort Myers,Akron(Ohio),,17 hours 24 mins,"1,892 km" +Fort Myers,Cincinnati(Ohio),,14 hours 54 mins,"1,665 km" +Toledo(Ohio),Fort Myers,,17 hours 50 mins,"1,988 km" +Cleveland(Ohio),Fort Myers,,17 hours 57 mins,"1,948 km" +Dayton(Ohio),Fort Myers,,15 hours 45 mins,"1,749 km" +Columbus(Ohio),Fort Myers,,16 hours 29 mins,"1,836 km" +Akron(Ohio),Fort Myers,,17 hours 22 mins,"1,891 km" +Cincinnati(Ohio),Fort Myers,,14 hours 56 mins,"1,664 km" +Monterey,Seattle(Washington),,13 hours 54 mins,"1,458 km" +Monterey,Wenatchee(Washington),,14 hours 57 mins,"1,481 km" +Monterey,Pasco(Washington),,13 hours 26 mins,"1,350 km" +Monterey,Yakima(Washington),,13 hours 9 mins,"1,301 km" +Monterey,Walla Walla(Washington),,13 hours 50 mins,"1,391 km" +Monterey,Everett(Washington),,14 hours 23 mins,"1,504 km" +Monterey,Spokane(Washington),,15 hours 26 mins,"1,567 km" +Seattle(Washington),Monterey,,13 hours 59 mins,"1,460 km" +Wenatchee(Washington),Monterey,,15 hours 7 mins,"1,473 km" +Pasco(Washington),Monterey,,13 hours 36 mins,"1,352 km" +Yakima(Washington),Monterey,,13 hours 18 mins,"1,302 km" +Walla Walla(Washington),Monterey,,14 hours 0 mins,"1,393 km" +Everett(Washington),Monterey,,14 hours 26 mins,"1,505 km" +Spokane(Washington),Monterey,,15 hours 35 mins,"1,569 km" +St. Louis,Sarasota(Florida),,15 hours 21 mins,"1,709 km" +St. Louis,Fort Myers(Florida),,16 hours 19 mins,"1,814 km" +St. Louis,Gainesville(Florida),,12 hours 58 mins,"1,424 km" +St. Louis,Orlando(Florida),,14 hours 22 mins,"1,597 km" +St. Louis,Daytona Beach(Florida),,14 hours 26 mins,"1,596 km" +St. Louis,Jacksonville(Florida),,13 hours 3 mins,"1,447 km" +St. Louis,Tampa(Florida),,14 hours 34 mins,"1,624 km" +St. Louis,Panama City(Florida),,11 hours 49 mins,"1,231 km" +St. Louis,Key West(Florida),,20 hours 34 mins,"2,210 km" +St. Louis,West Palm Beach(Florida),,16 hours 35 mins,"1,852 km" +St. Louis,Miami(Florida),,17 hours 33 mins,"1,957 km" +St. Louis,Tallahassee(Florida),,12 hours 6 mins,"1,286 km" +St. Louis,Punta Gorda(Florida),,15 hours 53 mins,"1,779 km" +St. Louis,Fort Lauderdale(Florida),,17 hours 13 mins,"1,920 km" +St. Louis,Pensacola(Florida),,10 hours 52 mins,"1,132 km" +Sarasota(Florida),St. Louis,,15 hours 19 mins,"1,711 km" +Fort Myers(Florida),St. Louis,,16 hours 16 mins,"1,817 km" +Gainesville(Florida),St. Louis,,12 hours 55 mins,"1,425 km" +Orlando(Florida),St. Louis,,14 hours 16 mins,"1,597 km" +Daytona Beach(Florida),St. Louis,,14 hours 23 mins,"1,588 km" +Jacksonville(Florida),St. Louis,,13 hours 2 mins,"1,449 km" +Tampa(Florida),St. Louis,,14 hours 31 mins,"1,626 km" +Panama City(Florida),St. Louis,,11 hours 49 mins,"1,227 km" +Key West(Florida),St. Louis,,20 hours 32 mins,"2,212 km" +West Palm Beach(Florida),St. Louis,,16 hours 31 mins,"1,855 km" +Miami(Florida),St. Louis,,17 hours 28 mins,"1,961 km" +Tallahassee(Florida),St. Louis,,12 hours 6 mins,"1,282 km" +Punta Gorda(Florida),St. Louis,,15 hours 50 mins,"1,781 km" +Fort Lauderdale(Florida),St. Louis,,17 hours 10 mins,"1,923 km" +Pensacola(Florida),St. Louis,,10 hours 53 mins,"1,132 km" +Fort Myers,Buffalo(New York),,20 hours 8 mins,"2,183 km" +Fort Myers,Manhattan(New York),,18 hours 41 mins,"2,014 km" +Fort Myers,Niagara Falls(New York),,20 hours 29 mins,"2,214 km" +Fort Myers,Islip(New York),,19 hours 21 mins,"2,084 km" +Fort Myers,New York(New York),,18 hours 31 mins,"2,008 km" +Fort Myers,Watertown(New York),,21 hours 34 mins,"2,343 km" +Fort Myers,Newburgh(New York),,19 hours 21 mins,"2,099 km" +Fort Myers,Syracuse(New York),,20 hours 31 mins,"2,231 km" +Fort Myers,Plattsburgh(New York),,22 hours 47 mins,"2,488 km" +Fort Myers,Ogdensburg(New York),,22 hours 32 mins,"2,436 km" +Fort Myers,Ithaca(New York),,20 hours 15 mins,"2,170 km" +Fort Myers,Elmira(New York),,19 hours 38 mins,"2,097 km" +Fort Myers,White Plains(New York),,18 hours 58 mins,"2,058 km" +Fort Myers,Albany(New York),,20 hours 27 mins,"2,230 km" +Fort Myers,Binghamton(New York),,19 hours 31 mins,"2,119 km" +Fort Myers,Rochester(New York),,20 hours 54 mins,"2,259 km" +Buffalo(New York),Fort Myers,,20 hours 9 mins,"2,182 km" +Manhattan(New York),Fort Myers,,18 hours 43 mins,"2,020 km" +Niagara Falls(New York),Fort Myers,,20 hours 31 mins,"2,213 km" +Islip(New York),Fort Myers,,19 hours 24 mins,"2,089 km" +New York(New York),Fort Myers,,18 hours 34 mins,"2,014 km" +Watertown(New York),Fort Myers,,21 hours 44 mins,"2,345 km" +Newburgh(New York),Fort Myers,,19 hours 27 mins,"2,108 km" +Syracuse(New York),Fort Myers,,20 hours 40 mins,"2,232 km" +Plattsburgh(New York),Fort Myers,,22 hours 52 mins,"2,496 km" +Ogdensburg(New York),Fort Myers,,22 hours 43 mins,"2,438 km" +Ithaca(New York),Fort Myers,,20 hours 24 mins,"2,174 km" +Elmira(New York),Fort Myers,,19 hours 47 mins,"2,104 km" +White Plains(New York),Fort Myers,,19 hours 1 min,"2,063 km" +Albany(New York),Fort Myers,,20 hours 33 mins,"2,238 km" +Binghamton(New York),Fort Myers,,19 hours 40 mins,"2,119 km" +Rochester(New York),Fort Myers,,21 hours 2 mins,"2,265 km" +State College,Moline(Illinois),,10 hours 50 mins,"1,154 km" +State College,Belleville(Illinois),,11 hours 27 mins,"1,192 km" +State College,Bloomington(Illinois),,10 hours 17 mins,"1,095 km" +State College,Champaign(Illinois),,9 hours 36 mins,"1,001 km" +State College,Chicago(Illinois),,8 hours 42 mins,918 km +State College,Rockford(Illinois),,10 hours 7 mins,"1,058 km" +State College,Peoria(Illinois),,10 hours 37 mins,"1,140 km" +Moline(Illinois),State College,,10 hours 52 mins,"1,148 km" +Belleville(Illinois),State College,,11 hours 27 mins,"1,186 km" +Bloomington(Illinois),State College,,10 hours 18 mins,"1,083 km" +Champaign(Illinois),State College,,9 hours 37 mins,994 km +Chicago(Illinois),State College,,8 hours 43 mins,913 km +Rockford(Illinois),State College,,10 hours 8 mins,"1,062 km" +Peoria(Illinois),State College,,10 hours 41 mins,"1,136 km" +Detroit,Greensboro(North Carolina),,9 hours 34 mins,970 km +Detroit,Wilmington(North Carolina),,12 hours 28 mins,"1,297 km" +Detroit,New Bern(North Carolina),,12 hours 27 mins,"1,275 km" +Detroit,Charlotte(North Carolina),,9 hours 52 mins,"1,006 km" +Detroit,Raleigh(North Carolina),,10 hours 44 mins,"1,090 km" +Detroit,Asheville(North Carolina),,9 hours 22 mins,"1,008 km" +Detroit,Fayetteville(North Carolina),,11 hours 4 mins,"1,115 km" +Greensboro(North Carolina),Detroit,,9 hours 30 mins,974 km +Wilmington(North Carolina),Detroit,,12 hours 23 mins,"1,301 km" +New Bern(North Carolina),Detroit,,12 hours 22 mins,"1,279 km" +Charlotte(North Carolina),Detroit,,9 hours 49 mins,"1,012 km" +Raleigh(North Carolina),Detroit,,10 hours 37 mins,"1,094 km" +Asheville(North Carolina),Detroit,,9 hours 22 mins,"1,007 km" +Fayetteville(North Carolina),Detroit,,11 hours 1 min,"1,120 km" +St. Petersburg,State College(Pennsylvania),,, +St. Petersburg,Johnstown(Pennsylvania),,, +St. Petersburg,Harrisburg(Pennsylvania),,, +St. Petersburg,Erie(Pennsylvania),,, +St. Petersburg,Pittsburgh(Pennsylvania),,, +St. Petersburg,Latrobe(Pennsylvania),,, +St. Petersburg,Philadelphia(Pennsylvania),,, +St. Petersburg,Lewisburg(Pennsylvania),,, +St. Petersburg,Scranton(Pennsylvania),,, +State College(Pennsylvania),St. Petersburg,,, +Johnstown(Pennsylvania),St. Petersburg,,, +Harrisburg(Pennsylvania),St. Petersburg,,, +Erie(Pennsylvania),St. Petersburg,,, +Pittsburgh(Pennsylvania),St. Petersburg,,, +Latrobe(Pennsylvania),St. Petersburg,,, +Philadelphia(Pennsylvania),St. Petersburg,,, +Lewisburg(Pennsylvania),St. Petersburg,,, +Scranton(Pennsylvania),St. Petersburg,,, +Bakersfield,Abilene(Texas),,19 hours 6 mins,"2,072 km" +Bakersfield,Amarillo(Texas),,15 hours 49 mins,"1,752 km" +Bakersfield,Harlingen(Texas),,1 day 1 hour,"2,762 km" +Bakersfield,Lubbock(Texas),,16 hours 44 mins,"1,806 km" +Bakersfield,College Station(Texas),,23 hours 21 mins,"2,496 km" +Bakersfield,Corpus Christi(Texas),,23 hours 8 mins,"2,587 km" +Bakersfield,Wichita Falls(Texas),,19 hours 6 mins,"2,106 km" +Bakersfield,Waco(Texas),,22 hours 2 mins,"2,373 km" +Bakersfield,San Angelo(Texas),,19 hours 11 mins,"2,106 km" +Bakersfield,Houston(Texas),,23 hours 59 mins,"2,669 km" +Bakersfield,San Antonio(Texas),,21 hours 10 mins,"2,354 km" +Bakersfield,Del Rio(Texas),,19 hours 44 mins,"2,150 km" +Bakersfield,Mission(Texas),,1 day 1 hour,"2,750 km" +Bakersfield,Beaumont(Texas),,1 day 1 hour,"2,803 km" +Bakersfield,Longview(Texas),,23 hours 0 mins,"2,533 km" +Bakersfield,Midland(Texas),,17 hours 48 mins,"1,959 km" +Bakersfield,El Paso(Texas),,13 hours 25 mins,"1,468 km" +Bakersfield,Brownsville(Texas),,1 day 1 hour,"2,802 km" +Bakersfield,Austin(Texas),,22 hours 0 mins,"2,394 km" +Bakersfield,Dallas(Texas),,21 hours 9 mins,"2,333 km" +Bakersfield,Killeen(Texas),,21 hours 49 mins,"2,388 km" +Bakersfield,Laredo(Texas),,22 hours 40 mins,"2,440 km" +Bakersfield,Texarkana(Texas),,23 hours 27 mins,"2,543 km" +Abilene(Texas),Bakersfield,,19 hours 2 mins,"2,071 km" +Amarillo(Texas),Bakersfield,,15 hours 45 mins,"1,751 km" +Harlingen(Texas),Bakersfield,,1 day 1 hour,"2,762 km" +Lubbock(Texas),Bakersfield,,16 hours 39 mins,"1,805 km" +College Station(Texas),Bakersfield,,23 hours 16 mins,"2,499 km" +Corpus Christi(Texas),Bakersfield,,23 hours 7 mins,"2,586 km" +Wichita Falls(Texas),Bakersfield,,19 hours 3 mins,"2,106 km" +Waco(Texas),Bakersfield,,21 hours 59 mins,"2,431 km" +San Angelo(Texas),Bakersfield,,19 hours 5 mins,"2,104 km" +Houston(Texas),Bakersfield,,23 hours 58 mins,"2,668 km" +San Antonio(Texas),Bakersfield,,21 hours 10 mins,"2,354 km" +Del Rio(Texas),Bakersfield,,19 hours 45 mins,"2,151 km" +Mission(Texas),Bakersfield,,1 day 1 hour,"2,751 km" +Beaumont(Texas),Bakersfield,,1 day 1 hour,"2,803 km" +Longview(Texas),Bakersfield,,22 hours 55 mins,"2,539 km" +Midland(Texas),Bakersfield,,17 hours 44 mins,"1,938 km" +El Paso(Texas),Bakersfield,,13 hours 27 mins,"1,468 km" +Brownsville(Texas),Bakersfield,,1 day 1 hour,"2,802 km" +Austin(Texas),Bakersfield,,22 hours 0 mins,"2,395 km" +Dallas(Texas),Bakersfield,,21 hours 5 mins,"2,332 km" +Killeen(Texas),Bakersfield,,21 hours 49 mins,"2,387 km" +Laredo(Texas),Bakersfield,,22 hours 41 mins,"2,440 km" +Texarkana(Texas),Bakersfield,,23 hours 31 mins,"2,555 km" +Los Angeles,Sarasota(Florida),,1 day 13 hours,"4,150 km" +Los Angeles,Fort Myers(Florida),,1 day 14 hours,"4,255 km" +Los Angeles,Gainesville(Florida),,1 day 11 hours,"3,865 km" +Los Angeles,Orlando(Florida),,1 day 12 hours,"4,037 km" +Los Angeles,Daytona Beach(Florida),,1 day 12 hours,"4,037 km" +Los Angeles,Jacksonville(Florida),,1 day 11 hours,"3,887 km" +Los Angeles,Tampa(Florida),,1 day 12 hours,"4,065 km" +Los Angeles,Panama City(Florida),,1 day 8 hours,"3,535 km" +Los Angeles,Key West(Florida),,1 day 18 hours,"4,651 km" +Los Angeles,West Palm Beach(Florida),,1 day 14 hours,"4,293 km" +Los Angeles,Miami(Florida),,1 day 15 hours,"4,398 km" +Los Angeles,Tallahassee(Florida),,1 day 8 hours,"3,628 km" +Los Angeles,Punta Gorda(Florida),,1 day 13 hours,"4,220 km" +Los Angeles,Fort Lauderdale(Florida),,1 day 15 hours,"4,361 km" +Los Angeles,Pensacola(Florida),,1 day 6 hours,"3,332 km" +Sarasota(Florida),Los Angeles,,1 day 13 hours,"4,155 km" +Fort Myers(Florida),Los Angeles,,1 day 14 hours,"4,260 km" +Gainesville(Florida),Los Angeles,,1 day 11 hours,"3,869 km" +Orlando(Florida),Los Angeles,,1 day 12 hours,"4,041 km" +Daytona Beach(Florida),Los Angeles,,1 day 12 hours,"4,032 km" +Jacksonville(Florida),Los Angeles,,1 day 11 hours,"3,892 km" +Tampa(Florida),Los Angeles,,1 day 12 hours,"4,070 km" +Panama City(Florida),Los Angeles,,1 day 8 hours,"3,540 km" +Key West(Florida),Los Angeles,,1 day 18 hours,"4,656 km" +West Palm Beach(Florida),Los Angeles,,1 day 14 hours,"4,299 km" +Miami(Florida),Los Angeles,,1 day 15 hours,"4,404 km" +Tallahassee(Florida),Los Angeles,,1 day 9 hours,"3,633 km" +Punta Gorda(Florida),Los Angeles,,1 day 14 hours,"4,224 km" +Fort Lauderdale(Florida),Los Angeles,,1 day 15 hours,"4,367 km" +Pensacola(Florida),Los Angeles,,1 day 6 hours,"3,336 km" +Milwaukee,New York,,13 hours 29 mins,"1,417 km" +New York,Milwaukee,,13 hours 22 mins,"1,416 km" +Knoxville,State College(Pennsylvania),,9 hours 1 min,940 km +Knoxville,Johnstown(Pennsylvania),,8 hours 3 mins,847 km +Knoxville,Harrisburg(Pennsylvania),,7 hours 58 mins,871 km +Knoxville,Erie(Pennsylvania),,8 hours 46 mins,960 km +Knoxville,Pittsburgh(Pennsylvania),,7 hours 30 mins,793 km +Knoxville,Latrobe(Pennsylvania),,7 hours 42 mins,779 km +Knoxville,Philadelphia(Pennsylvania),,9 hours 20 mins,"1,007 km" +Knoxville,Lewisburg(Pennsylvania),,8 hours 57 mins,957 km +Knoxville,Scranton(Pennsylvania),,9 hours 45 mins,"1,058 km" +State College(Pennsylvania),Knoxville,,9 hours 1 min,947 km +Johnstown(Pennsylvania),Knoxville,,8 hours 3 mins,846 km +Harrisburg(Pennsylvania),Knoxville,,8 hours 1 min,871 km +Erie(Pennsylvania),Knoxville,,8 hours 48 mins,959 km +Pittsburgh(Pennsylvania),Knoxville,,7 hours 31 mins,794 km +Latrobe(Pennsylvania),Knoxville,,7 hours 41 mins,779 km +Philadelphia(Pennsylvania),Knoxville,,9 hours 21 mins,"1,007 km" +Lewisburg(Pennsylvania),Knoxville,,9 hours 0 mins,957 km +Scranton(Pennsylvania),Knoxville,,9 hours 45 mins,"1,058 km" +Santa Ana,Twin Falls(Idaho),,11 hours 40 mins,"1,225 km" +Santa Ana,Pocatello(Idaho),,12 hours 16 mins,"1,366 km" +Santa Ana,Idaho Falls(Idaho),,12 hours 56 mins,"1,446 km" +Santa Ana,Sun Valley(Idaho),,13 hours 20 mins,"1,360 km" +Santa Ana,Boise(Idaho),,13 hours 37 mins,"1,434 km" +Santa Ana,Lewiston(Idaho),,18 hours 10 mins,"1,788 km" +Twin Falls(Idaho),Santa Ana,,11 hours 37 mins,"1,227 km" +Pocatello(Idaho),Santa Ana,,12 hours 9 mins,"1,368 km" +Idaho Falls(Idaho),Santa Ana,,12 hours 49 mins,"1,448 km" +Sun Valley(Idaho),Santa Ana,,13 hours 17 mins,"1,362 km" +Boise(Idaho),Santa Ana,,13 hours 32 mins,"1,434 km" +Lewiston(Idaho),Santa Ana,,18 hours 15 mins,"1,797 km" +Nashville,Austin,,12 hours 33 mins,"1,383 km" +Austin,Nashville,,12 hours 31 mins,"1,382 km" +San Luis Obispo,Phoenix,,8 hours 41 mins,907 km +Phoenix,San Luis Obispo,,8 hours 40 mins,905 km +Missoula,Las Vegas,,13 hours 6 mins,"1,517 km" +Las Vegas,Missoula,,13 hours 9 mins,"1,516 km" +Charleston,Nashville(Tennessee),,8 hours 22 mins,888 km +Charleston,Bristol(Tennessee),,5 hours 33 mins,563 km +Charleston,Knoxville(Tennessee),,5 hours 45 mins,601 km +Charleston,Chattanooga(Tennessee),,6 hours 31 mins,671 km +Charleston,Memphis(Tennessee),,10 hours 23 mins,"1,110 km" +Nashville(Tennessee),Charleston,,8 hours 20 mins,887 km +Bristol(Tennessee),Charleston,,5 hours 33 mins,563 km +Knoxville(Tennessee),Charleston,,5 hours 41 mins,600 km +Chattanooga(Tennessee),Charleston,,6 hours 30 mins,681 km +Memphis(Tennessee),Charleston,,10 hours 21 mins,"1,108 km" +Baltimore,Buffalo(New York),,6 hours 9 mins,594 km +Baltimore,Manhattan(New York),,3 hours 17 mins,314 km +Baltimore,Niagara Falls(New York),,6 hours 30 mins,631 km +Baltimore,Islip(New York),,3 hours 57 mins,385 km +Baltimore,New York(New York),,3 hours 7 mins,308 km +Baltimore,Watertown(New York),,6 hours 13 mins,647 km +Baltimore,Newburgh(New York),,3 hours 57 mins,400 km +Baltimore,Syracuse(New York),,5 hours 10 mins,534 km +Baltimore,Plattsburgh(New York),,7 hours 23 mins,788 km +Baltimore,Ogdensburg(New York),,7 hours 12 mins,740 km +Baltimore,Ithaca(New York),,4 hours 55 mins,473 km +Baltimore,Elmira(New York),,4 hours 17 mins,401 km +Baltimore,White Plains(New York),,3 hours 34 mins,359 km +Baltimore,Albany(New York),,5 hours 3 mins,531 km +Baltimore,Binghamton(New York),,4 hours 10 mins,422 km +Baltimore,Rochester(New York),,5 hours 33 mins,563 km +Buffalo(New York),Baltimore,,6 hours 10 mins,596 km +Manhattan(New York),Baltimore,,3 hours 18 mins,307 km +Niagara Falls(New York),Baltimore,,6 hours 31 mins,633 km +Islip(New York),Baltimore,,3 hours 59 mins,376 km +New York(New York),Baltimore,,3 hours 9 mins,302 km +Watertown(New York),Baltimore,,6 hours 12 mins,648 km +Newburgh(New York),Baltimore,,4 hours 2 mins,396 km +Syracuse(New York),Baltimore,,5 hours 8 mins,535 km +Plattsburgh(New York),Baltimore,,7 hours 26 mins,784 km +Ogdensburg(New York),Baltimore,,7 hours 11 mins,741 km +Ithaca(New York),Baltimore,,4 hours 54 mins,474 km +Elmira(New York),Baltimore,,4 hours 17 mins,404 km +White Plains(New York),Baltimore,,3 hours 36 mins,351 km +Albany(New York),Baltimore,,5 hours 8 mins,526 km +Binghamton(New York),Baltimore,,4 hours 8 mins,422 km +Rochester(New York),Baltimore,,5 hours 32 mins,565 km +Bloomington,Pellston(Michigan),,7 hours 40 mins,845 km +Bloomington,Traverse City(Michigan),,7 hours 4 mins,727 km +Bloomington,Alpena(Michigan),,8 hours 11 mins,860 km +Bloomington,Iron Mountain(Michigan),,8 hours 24 mins,871 km +Bloomington,Kalamazoo(Michigan),,4 hours 33 mins,450 km +Bloomington,Saginaw(Michigan),,5 hours 51 mins,609 km +Bloomington,Grand Rapids(Michigan),,4 hours 58 mins,499 km +Bloomington,Lansing(Michigan),,4 hours 41 mins,489 km +Bloomington,Muskegon(Michigan),,5 hours 14 mins,513 km +Bloomington,Hancock(Michigan),,10 hours 21 mins,"1,050 km" +Bloomington,Detroit(Michigan),,5 hours 10 mins,541 km +Bloomington,Escanaba(Michigan),,8 hours 36 mins,889 km +Pellston(Michigan),Bloomington,,7 hours 39 mins,844 km +Traverse City(Michigan),Bloomington,,7 hours 8 mins,733 km +Alpena(Michigan),Bloomington,,8 hours 8 mins,859 km +Iron Mountain(Michigan),Bloomington,,8 hours 24 mins,871 km +Kalamazoo(Michigan),Bloomington,,4 hours 35 mins,454 km +Saginaw(Michigan),Bloomington,,5 hours 49 mins,608 km +Grand Rapids(Michigan),Bloomington,,4 hours 58 mins,505 km +Lansing(Michigan),Bloomington,,4 hours 42 mins,491 km +Muskegon(Michigan),Bloomington,,5 hours 15 mins,517 km +Hancock(Michigan),Bloomington,,10 hours 21 mins,"1,051 km" +Detroit(Michigan),Bloomington,,5 hours 14 mins,543 km +Escanaba(Michigan),Bloomington,,8 hours 37 mins,889 km +Denver,Seattle(Washington),,19 hours 14 mins,"2,103 km" +Denver,Wenatchee(Washington),,18 hours 16 mins,"2,030 km" +Denver,Pasco(Washington),,16 hours 9 mins,"1,776 km" +Denver,Yakima(Washington),,17 hours 6 mins,"1,875 km" +Denver,Walla Walla(Washington),,15 hours 42 mins,"1,717 km" +Denver,Everett(Washington),,19 hours 35 mins,"2,138 km" +Denver,Spokane(Washington),,15 hours 42 mins,"1,759 km" +Seattle(Washington),Denver,,19 hours 11 mins,"2,100 km" +Wenatchee(Washington),Denver,,18 hours 10 mins,"2,027 km" +Pasco(Washington),Denver,,16 hours 8 mins,"1,774 km" +Yakima(Washington),Denver,,17 hours 4 mins,"1,872 km" +Walla Walla(Washington),Denver,,15 hours 42 mins,"1,714 km" +Everett(Washington),Denver,,19 hours 32 mins,"2,135 km" +Spokane(Washington),Denver,,15 hours 37 mins,"1,757 km" +Las Vegas,Milwaukee,,1 day 2 hours,"2,878 km" +Milwaukee,Las Vegas,,1 day 2 hours,"2,877 km" +Phoenix,New Orleans,,21 hours 57 mins,"2,451 km" +New Orleans,Phoenix,,21 hours 55 mins,"2,449 km" +Baton Rouge,Dallas,,6 hours 15 mins,687 km +Dallas,Baton Rouge,,6 hours 17 mins,687 km +Anchorage,Seattle,,1 day 17 hours,"3,644 km" +Seattle,Anchorage,,1 day 16 hours,"3,642 km" +St. Louis,Pellston(Michigan),,9 hours 47 mins,"1,041 km" +St. Louis,Traverse City(Michigan),,8 hours 41 mins,945 km +St. Louis,Alpena(Michigan),,10 hours 20 mins,"1,099 km" +St. Louis,Iron Mountain(Michigan),,8 hours 44 mins,939 km +St. Louis,Kalamazoo(Michigan),,6 hours 10 mins,667 km +St. Louis,Saginaw(Michigan),,8 hours 21 mins,901 km +St. Louis,Grand Rapids(Michigan),,6 hours 35 mins,716 km +St. Louis,Lansing(Michigan),,7 hours 11 mins,782 km +St. Louis,Muskegon(Michigan),,6 hours 51 mins,730 km +St. Louis,Hancock(Michigan),,10 hours 18 mins,"1,091 km" +St. Louis,Detroit(Michigan),,7 hours 53 mins,852 km +St. Louis,Escanaba(Michigan),,8 hours 55 mins,958 km +Pellston(Michigan),St. Louis,,9 hours 48 mins,"1,041 km" +Traverse City(Michigan),St. Louis,,8 hours 43 mins,946 km +Alpena(Michigan),St. Louis,,10 hours 17 mins,"1,098 km" +Iron Mountain(Michigan),St. Louis,,8 hours 42 mins,938 km +Kalamazoo(Michigan),St. Louis,,6 hours 10 mins,667 km +Saginaw(Michigan),St. Louis,,8 hours 17 mins,899 km +Grand Rapids(Michigan),St. Louis,,6 hours 33 mins,719 km +Lansing(Michigan),St. Louis,,7 hours 10 mins,782 km +Muskegon(Michigan),St. Louis,,6 hours 50 mins,730 km +Hancock(Michigan),St. Louis,,10 hours 16 mins,"1,090 km" +Detroit(Michigan),St. Louis,,7 hours 55 mins,852 km +Escanaba(Michigan),St. Louis,,8 hours 55 mins,957 km +State College,Pellston(Michigan),,9 hours 35 mins,"1,060 km" +State College,Traverse City(Michigan),,9 hours 35 mins,"1,019 km" +State College,Alpena(Michigan),,9 hours 33 mins,"1,007 km" +State College,Iron Mountain(Michigan),,13 hours 1 min,"1,390 km" +State College,Kalamazoo(Michigan),,7 hours 25 mins,780 km +State College,Saginaw(Michigan),,7 hours 15 mins,773 km +State College,Grand Rapids(Michigan),,7 hours 53 mins,847 km +State College,Lansing(Michigan),,6 hours 54 mins,739 km +State College,Muskegon(Michigan),,8 hours 26 mins,910 km +State College,Hancock(Michigan),,14 hours 12 mins,"1,500 km" +State College,Detroit(Michigan),,6 hours 2 mins,636 km +State College,Escanaba(Michigan),,12 hours 4 mins,"1,308 km" +Pellston(Michigan),State College,,9 hours 37 mins,"1,055 km" +Traverse City(Michigan),State College,,9 hours 39 mins,"1,014 km" +Alpena(Michigan),State College,,9 hours 35 mins,"1,001 km" +Iron Mountain(Michigan),State College,,13 hours 2 mins,"1,385 km" +Kalamazoo(Michigan),State College,,7 hours 26 mins,774 km +Saginaw(Michigan),State College,,7 hours 16 mins,768 km +Grand Rapids(Michigan),State College,,7 hours 53 mins,841 km +Lansing(Michigan),State College,,6 hours 57 mins,734 km +Muskegon(Michigan),State College,,8 hours 28 mins,905 km +Hancock(Michigan),State College,,14 hours 13 mins,"1,495 km" +Detroit(Michigan),State College,,6 hours 4 mins,631 km +Escanaba(Michigan),State College,,12 hours 6 mins,"1,303 km" +Chicago,Greensboro(North Carolina),,11 hours 18 mins,"1,179 km" +Chicago,Wilmington(North Carolina),,14 hours 11 mins,"1,505 km" +Chicago,New Bern(North Carolina),,14 hours 11 mins,"1,484 km" +Chicago,Charlotte(North Carolina),,11 hours 36 mins,"1,215 km" +Chicago,Raleigh(North Carolina),,12 hours 28 mins,"1,298 km" +Chicago,Asheville(North Carolina),,9 hours 54 mins,"1,053 km" +Chicago,Fayetteville(North Carolina),,12 hours 48 mins,"1,323 km" +Greensboro(North Carolina),Chicago,,11 hours 20 mins,"1,177 km" +Wilmington(North Carolina),Chicago,,14 hours 12 mins,"1,504 km" +New Bern(North Carolina),Chicago,,14 hours 12 mins,"1,482 km" +Charlotte(North Carolina),Chicago,,11 hours 39 mins,"1,215 km" +Raleigh(North Carolina),Chicago,,12 hours 27 mins,"1,297 km" +Asheville(North Carolina),Chicago,,9 hours 54 mins,"1,051 km" +Fayetteville(North Carolina),Chicago,,12 hours 50 mins,"1,323 km" +Detroit,Cedar Rapids(Iowa),,7 hours 38 mins,824 km +Detroit,Sioux City(Iowa),,11 hours 40 mins,"1,248 km" +Detroit,Dubuque(Iowa),,7 hours 18 mins,749 km +Detroit,Des Moines(Iowa),,8 hours 53 mins,965 km +Detroit,Fort Dodge(Iowa),,9 hours 52 mins,"1,066 km" +Detroit,Mason City(Iowa),,9 hours 46 mins,"1,040 km" +Cedar Rapids(Iowa),Detroit,,7 hours 36 mins,825 km +Sioux City(Iowa),Detroit,,11 hours 36 mins,"1,249 km" +Dubuque(Iowa),Detroit,,7 hours 12 mins,746 km +Des Moines(Iowa),Detroit,,8 hours 49 mins,964 km +Fort Dodge(Iowa),Detroit,,9 hours 51 mins,"1,067 km" +Mason City(Iowa),Detroit,,9 hours 44 mins,"1,045 km" +San Jose,Las Vegas,,8 hours 11 mins,850 km +Las Vegas,San Jose,,8 hours 4 mins,847 km +Houston,Atlanta,,11 hours 23 mins,"1,276 km" +Atlanta,Houston,,11 hours 23 mins,"1,276 km" +Dallas,Helena(Montana),,23 hours 7 mins,"2,553 km" +Dallas,Billings(Montana),,19 hours 36 mins,"2,171 km" +Dallas,Missoula(Montana),,1 day 0 hours,"2,721 km" +Dallas,Kalispell(Montana),,1 day 2 hours,"2,891 km" +Dallas,Great Falls(Montana),,23 hours 5 mins,"2,520 km" +Dallas,Bozeman(Montana),,21 hours 36 mins,"2,397 km" +Dallas,West Yellowstone(Montana),,21 hours 56 mins,"2,305 km" +Helena(Montana),Dallas,,22 hours 59 mins,"2,522 km" +Helena(Montana),Billings(Montana),,3 hours 37 mins,384 km +Helena(Montana),Missoula(Montana),,1 hour 46 mins,182 km +Helena(Montana),Kalispell(Montana),,3 hours 19 mins,311 km +Helena(Montana),Great Falls(Montana),,1 hour 29 mins,146 km +Helena(Montana),Bozeman(Montana),,1 hour 39 mins,158 km +Helena(Montana),West Yellowstone(Montana),,2 hours 59 mins,284 km +Billings(Montana),Dallas,,19 hours 29 mins,"2,137 km" +Billings(Montana),Helena(Montana),,3 hours 39 mins,388 km +Billings(Montana),Missoula(Montana),,4 hours 58 mins,555 km +Billings(Montana),Kalispell(Montana),,6 hours 56 mins,726 km +Billings(Montana),Great Falls(Montana),,3 hours 35 mins,352 km +Billings(Montana),Bozeman(Montana),,2 hours 9 mins,231 km +Billings(Montana),West Yellowstone(Montana),,3 hours 48 mins,372 km +Missoula(Montana),Dallas,,1 day 0 hours,"2,689 km" +Missoula(Montana),Helena(Montana),,1 hour 45 mins,182 km +Missoula(Montana),Billings(Montana),,4 hours 56 mins,551 km +Missoula(Montana),Kalispell(Montana),,2 hours 13 mins,188 km +Missoula(Montana),Great Falls(Montana),,2 hours 41 mins,266 km +Missoula(Montana),Bozeman(Montana),,2 hours 59 mins,325 km +Missoula(Montana),West Yellowstone(Montana),,4 hours 7 mins,425 km +Kalispell(Montana),Dallas,,1 day 2 hours,"2,832 km" +Kalispell(Montana),Helena(Montana),,3 hours 19 mins,310 km +Kalispell(Montana),Billings(Montana),,6 hours 54 mins,695 km +Kalispell(Montana),Missoula(Montana),,2 hours 13 mins,195 km +Kalispell(Montana),Great Falls(Montana),,3 hours 42 mins,365 km +Kalispell(Montana),Bozeman(Montana),,4 hours 56 mins,468 km +Kalispell(Montana),West Yellowstone(Montana),,6 hours 5 mins,595 km +Great Falls(Montana),Dallas,,22 hours 58 mins,"2,489 km" +Great Falls(Montana),Helena(Montana),,1 hour 28 mins,145 km +Great Falls(Montana),Billings(Montana),,3 hours 32 mins,352 km +Great Falls(Montana),Missoula(Montana),,2 hours 42 mins,266 km +Great Falls(Montana),Kalispell(Montana),,3 hours 45 mins,365 km +Great Falls(Montana),Bozeman(Montana),,2 hours 55 mins,299 km +Great Falls(Montana),West Yellowstone(Montana),,4 hours 14 mins,425 km +Bozeman(Montana),Dallas,,21 hours 28 mins,"2,365 km" +Bozeman(Montana),Helena(Montana),,1 hour 40 mins,158 km +Bozeman(Montana),Billings(Montana),,2 hours 6 mins,227 km +Bozeman(Montana),Missoula(Montana),,2 hours 59 mins,326 km +Bozeman(Montana),Kalispell(Montana),,4 hours 57 mins,496 km +Bozeman(Montana),Great Falls(Montana),,2 hours 55 mins,299 km +Bozeman(Montana),West Yellowstone(Montana),,1 hour 42 mins,144 km +West Yellowstone(Montana),Dallas,,21 hours 55 mins,"2,273 km" +West Yellowstone(Montana),Helena(Montana),,2 hours 58 mins,285 km +West Yellowstone(Montana),Billings(Montana),,3 hours 44 mins,368 km +West Yellowstone(Montana),Missoula(Montana),,4 hours 4 mins,425 km +West Yellowstone(Montana),Kalispell(Montana),,6 hours 2 mins,596 km +West Yellowstone(Montana),Great Falls(Montana),,4 hours 12 mins,425 km +West Yellowstone(Montana),Bozeman(Montana),,1 hour 41 mins,144 km +Jacksonville,Evansville(Indiana),,10 hours 51 mins,"1,198 km" +Jacksonville,South Bend(Indiana),,15 hours 8 mins,"1,644 km" +Jacksonville,Fort Wayne(Indiana),,14 hours 40 mins,"1,567 km" +Jacksonville,Valparaiso(Indiana),,15 hours 12 mins,"1,657 km" +Jacksonville,Indianapolis(Indiana),,12 hours 50 mins,"1,416 km" +Evansville(Indiana),Jacksonville,,10 hours 50 mins,"1,194 km" +Evansville(Indiana),South Bend(Indiana),,5 hours 1 min,512 km +Evansville(Indiana),Fort Wayne(Indiana),,4 hours 34 mins,476 km +Evansville(Indiana),Valparaiso(Indiana),,4 hours 55 mins,441 km +Evansville(Indiana),Indianapolis(Indiana),,2 hours 44 mins,277 km +South Bend(Indiana),Jacksonville,,15 hours 7 mins,"1,643 km" +South Bend(Indiana),Evansville(Indiana),,5 hours 1 min,515 km +South Bend(Indiana),Fort Wayne(Indiana),,1 hour 46 mins,145 km +South Bend(Indiana),Valparaiso(Indiana),,1 hour 5 mins,90.0 km +South Bend(Indiana),Indianapolis(Indiana),,2 hours 32 mins,237 km +Fort Wayne(Indiana),Jacksonville,,14 hours 36 mins,"1,566 km" +Fort Wayne(Indiana),Evansville(Indiana),,4 hours 32 mins,478 km +Fort Wayne(Indiana),South Bend(Indiana),,1 hour 46 mins,146 km +Fort Wayne(Indiana),Valparaiso(Indiana),,2 hours 7 mins,177 km +Fort Wayne(Indiana),Indianapolis(Indiana),,2 hours 3 mins,203 km +Valparaiso(Indiana),Jacksonville,,15 hours 12 mins,"1,655 km" +Valparaiso(Indiana),Evansville(Indiana),,4 hours 55 mins,441 km +Valparaiso(Indiana),South Bend(Indiana),,1 hour 6 mins,90.3 km +Valparaiso(Indiana),Fort Wayne(Indiana),,2 hours 7 mins,175 km +Valparaiso(Indiana),Indianapolis(Indiana),,2 hours 32 mins,242 km +Indianapolis(Indiana),Jacksonville,,12 hours 51 mins,"1,414 km" +Indianapolis(Indiana),Evansville(Indiana),,2 hours 44 mins,277 km +Indianapolis(Indiana),South Bend(Indiana),,2 hours 33 mins,241 km +Indianapolis(Indiana),Fort Wayne(Indiana),,2 hours 6 mins,201 km +Indianapolis(Indiana),Valparaiso(Indiana),,2 hours 30 mins,241 km +Dallas,Cedar Rapids(Iowa),,12 hours 26 mins,"1,328 km" +Dallas,Sioux City(Iowa),,11 hours 2 mins,"1,214 km" +Dallas,Dubuque(Iowa),,13 hours 36 mins,"1,448 km" +Dallas,Des Moines(Iowa),,10 hours 37 mins,"1,123 km" +Dallas,Fort Dodge(Iowa),,11 hours 56 mins,"1,243 km" +Dallas,Mason City(Iowa),,12 hours 24 mins,"1,318 km" +Cedar Rapids(Iowa),Dallas,,12 hours 26 mins,"1,324 km" +Sioux City(Iowa),Dallas,,11 hours 6 mins,"1,216 km" +Dubuque(Iowa),Dallas,,13 hours 36 mins,"1,443 km" +Des Moines(Iowa),Dallas,,10 hours 38 mins,"1,121 km" +Fort Dodge(Iowa),Dallas,,11 hours 57 mins,"1,238 km" +Mason City(Iowa),Dallas,,12 hours 23 mins,"1,314 km" +Los Angeles,Eugene,,13 hours 7 mins,"1,377 km" +Eugene,Los Angeles,,13 hours 6 mins,"1,381 km" +Denver,Green Bay(Wisconsin),,16 hours 2 mins,"1,779 km" +Denver,Rhinelander(Wisconsin),,16 hours 25 mins,"1,844 km" +Denver,Marquette(Wisconsin),,14 hours 59 mins,"1,645 km" +Denver,Madison(Wisconsin),,14 hours 0 mins,"1,551 km" +Denver,La Crosse(Wisconsin),,13 hours 23 mins,"1,517 km" +Denver,Devils Lake(Wisconsin),,14 hours 11 mins,"1,566 km" +Denver,Appleton(Wisconsin),,15 hours 36 mins,"1,728 km" +Denver,Mosinee(Wisconsin),,15 hours 30 mins,"1,716 km" +Denver,Milwaukee(Wisconsin),,14 hours 55 mins,"1,684 km" +Denver,Eau Claire(Wisconsin),,14 hours 15 mins,"1,603 km" +Green Bay(Wisconsin),Denver,,16 hours 4 mins,"1,775 km" +Green Bay(Wisconsin),Rhinelander(Wisconsin),,2 hours 23 mins,219 km +Green Bay(Wisconsin),Marquette(Wisconsin),,1 hour 40 mins,153 km +Green Bay(Wisconsin),Madison(Wisconsin),,2 hours 22 mins,222 km +Green Bay(Wisconsin),La Crosse(Wisconsin),,3 hours 29 mins,325 km +Green Bay(Wisconsin),Devils Lake(Wisconsin),,2 hours 40 mins,235 km +Green Bay(Wisconsin),Appleton(Wisconsin),,38 mins,52.5 km +Green Bay(Wisconsin),Mosinee(Wisconsin),,1 hour 35 mins,162 km +Green Bay(Wisconsin),Milwaukee(Wisconsin),,1 hour 49 mins,188 km +Green Bay(Wisconsin),Eau Claire(Wisconsin),,2 hours 59 mins,313 km +Rhinelander(Wisconsin),Denver,,16 hours 26 mins,"1,843 km" +Rhinelander(Wisconsin),Green Bay(Wisconsin),,2 hours 26 mins,215 km +Rhinelander(Wisconsin),Marquette(Wisconsin),,2 hours 42 mins,274 km +Rhinelander(Wisconsin),Madison(Wisconsin),,3 hours 6 mins,321 km +Rhinelander(Wisconsin),La Crosse(Wisconsin),,3 hours 25 mins,325 km +Rhinelander(Wisconsin),Devils Lake(Wisconsin),,2 hours 52 mins,294 km +Rhinelander(Wisconsin),Appleton(Wisconsin),,2 hours 31 mins,257 km +Rhinelander(Wisconsin),Mosinee(Wisconsin),,1 hour 11 mins,116 km +Rhinelander(Wisconsin),Milwaukee(Wisconsin),,3 hours 42 mins,395 km +Rhinelander(Wisconsin),Eau Claire(Wisconsin),,2 hours 28 mins,253 km +Marquette(Wisconsin),Denver,,15 hours 2 mins,"1,642 km" +Marquette(Wisconsin),Green Bay(Wisconsin),,1 hour 40 mins,152 km +Marquette(Wisconsin),Rhinelander(Wisconsin),,2 hours 41 mins,274 km +Marquette(Wisconsin),Madison(Wisconsin),,1 hour 16 mins,86.8 km +Marquette(Wisconsin),La Crosse(Wisconsin),,2 hours 12 mins,201 km +Marquette(Wisconsin),Devils Lake(Wisconsin),,1 hour 7 mins,73.8 km +Marquette(Wisconsin),Appleton(Wisconsin),,1 hour 13 mins,101 km +Marquette(Wisconsin),Mosinee(Wisconsin),,1 hour 38 mins,161 km +Marquette(Wisconsin),Milwaukee(Wisconsin),,1 hour 45 mins,158 km +Marquette(Wisconsin),Eau Claire(Wisconsin),,2 hours 42 mins,259 km +Madison(Wisconsin),Denver,,13 hours 58 mins,"1,548 km" +Madison(Wisconsin),Green Bay(Wisconsin),,2 hours 20 mins,226 km +Madison(Wisconsin),Rhinelander(Wisconsin),,3 hours 6 mins,321 km +Madison(Wisconsin),Marquette(Wisconsin),,1 hour 16 mins,85.8 km +Madison(Wisconsin),La Crosse(Wisconsin),,2 hours 19 mins,229 km +Madison(Wisconsin),Devils Lake(Wisconsin),,56 mins,70.7 km +Madison(Wisconsin),Appleton(Wisconsin),,1 hour 53 mins,175 km +Madison(Wisconsin),Mosinee(Wisconsin),,2 hours 3 mins,209 km +Madison(Wisconsin),Milwaukee(Wisconsin),,1 hour 19 mins,128 km +Madison(Wisconsin),Eau Claire(Wisconsin),,2 hours 49 mins,287 km +La Crosse(Wisconsin),Denver,,13 hours 23 mins,"1,515 km" +La Crosse(Wisconsin),Green Bay(Wisconsin),,3 hours 29 mins,323 km +La Crosse(Wisconsin),Rhinelander(Wisconsin),,3 hours 26 mins,323 km +La Crosse(Wisconsin),Marquette(Wisconsin),,2 hours 11 mins,201 km +La Crosse(Wisconsin),Madison(Wisconsin),,2 hours 18 mins,228 km +La Crosse(Wisconsin),Devils Lake(Wisconsin),,1 hour 40 mins,170 km +La Crosse(Wisconsin),Appleton(Wisconsin),,3 hours 2 mins,273 km +La Crosse(Wisconsin),Mosinee(Wisconsin),,2 hours 23 mins,209 km +La Crosse(Wisconsin),Milwaukee(Wisconsin),,3 hours 6 mins,338 km +La Crosse(Wisconsin),Eau Claire(Wisconsin),,1 hour 42 mins,143 km +Devils Lake(Wisconsin),Denver,,14 hours 13 mins,"1,561 km" +Devils Lake(Wisconsin),Green Bay(Wisconsin),,2 hours 42 mins,234 km +Devils Lake(Wisconsin),Rhinelander(Wisconsin),,2 hours 54 mins,294 km +Devils Lake(Wisconsin),Marquette(Wisconsin),,1 hour 8 mins,73.3 km +Devils Lake(Wisconsin),Madison(Wisconsin),,1 hour 0 mins,63.4 km +Devils Lake(Wisconsin),La Crosse(Wisconsin),,1 hour 42 mins,171 km +Devils Lake(Wisconsin),Appleton(Wisconsin),,2 hours 15 mins,183 km +Devils Lake(Wisconsin),Mosinee(Wisconsin),,1 hour 51 mins,182 km +Devils Lake(Wisconsin),Milwaukee(Wisconsin),,1 hour 56 mins,189 km +Devils Lake(Wisconsin),Eau Claire(Wisconsin),,2 hours 12 mins,229 km +Appleton(Wisconsin),Denver,,15 hours 36 mins,"1,722 km" +Appleton(Wisconsin),Green Bay(Wisconsin),,36 mins,51.0 km +Appleton(Wisconsin),Rhinelander(Wisconsin),,2 hours 28 mins,256 km +Appleton(Wisconsin),Marquette(Wisconsin),,1 hour 12 mins,100 km +Appleton(Wisconsin),Madison(Wisconsin),,1 hour 53 mins,169 km +Appleton(Wisconsin),La Crosse(Wisconsin),,3 hours 1 min,273 km +Appleton(Wisconsin),Devils Lake(Wisconsin),,2 hours 12 mins,182 km +Appleton(Wisconsin),Mosinee(Wisconsin),,1 hour 25 mins,144 km +Appleton(Wisconsin),Milwaukee(Wisconsin),,1 hour 38 mins,172 km +Appleton(Wisconsin),Eau Claire(Wisconsin),,3 hours 0 mins,293 km +Mosinee(Wisconsin),Denver,,15 hours 30 mins,"1,716 km" +Mosinee(Wisconsin),Green Bay(Wisconsin),,1 hour 36 mins,160 km +Mosinee(Wisconsin),Rhinelander(Wisconsin),,1 hour 11 mins,116 km +Mosinee(Wisconsin),Marquette(Wisconsin),,1 hour 38 mins,161 km +Mosinee(Wisconsin),Madison(Wisconsin),,2 hours 2 mins,208 km +Mosinee(Wisconsin),La Crosse(Wisconsin),,2 hours 22 mins,211 km +Mosinee(Wisconsin),Devils Lake(Wisconsin),,1 hour 48 mins,181 km +Mosinee(Wisconsin),Appleton(Wisconsin),,1 hour 26 mins,144 km +Mosinee(Wisconsin),Milwaukee(Wisconsin),,2 hours 38 mins,282 km +Mosinee(Wisconsin),Eau Claire(Wisconsin),,1 hour 41 mins,167 km +Milwaukee(Wisconsin),Denver,,14 hours 54 mins,"1,677 km" +Milwaukee(Wisconsin),Green Bay(Wisconsin),,1 hour 48 mins,188 km +Milwaukee(Wisconsin),Rhinelander(Wisconsin),,3 hours 42 mins,395 km +Milwaukee(Wisconsin),Marquette(Wisconsin),,1 hour 46 mins,158 km +Milwaukee(Wisconsin),Madison(Wisconsin),,1 hour 20 mins,128 km +Milwaukee(Wisconsin),La Crosse(Wisconsin),,3 hours 7 mins,338 km +Milwaukee(Wisconsin),Devils Lake(Wisconsin),,1 hour 55 mins,190 km +Milwaukee(Wisconsin),Appleton(Wisconsin),,1 hour 39 mins,172 km +Milwaukee(Wisconsin),Mosinee(Wisconsin),,2 hours 38 mins,282 km +Milwaukee(Wisconsin),Eau Claire(Wisconsin),,3 hours 36 mins,395 km +Eau Claire(Wisconsin),Denver,,14 hours 15 mins,"1,563 km" +Eau Claire(Wisconsin),Green Bay(Wisconsin),,3 hours 0 mins,309 km +Eau Claire(Wisconsin),Rhinelander(Wisconsin),,2 hours 27 mins,251 km +Eau Claire(Wisconsin),Marquette(Wisconsin),,2 hours 42 mins,259 km +Eau Claire(Wisconsin),Madison(Wisconsin),,2 hours 48 mins,286 km +Eau Claire(Wisconsin),La Crosse(Wisconsin),,1 hour 43 mins,138 km +Eau Claire(Wisconsin),Devils Lake(Wisconsin),,2 hours 11 mins,228 km +Eau Claire(Wisconsin),Appleton(Wisconsin),,3 hours 3 mins,294 km +Eau Claire(Wisconsin),Mosinee(Wisconsin),,1 hour 40 mins,165 km +Eau Claire(Wisconsin),Milwaukee(Wisconsin),,3 hours 36 mins,396 km +Newark,Charleston,,11 hours 17 mins,"1,214 km" +Charleston,Newark,,11 hours 13 mins,"1,206 km" +Gainesville,Augusta(Georgia),,5 hours 18 mins,524 km +Gainesville,Decatur(Georgia),,5 hours 1 min,541 km +Gainesville,Atlanta(Georgia),,4 hours 50 mins,533 km +Gainesville,Valdosta(Georgia),,1 hour 43 mins,171 km +Gainesville,Savannah(Georgia),,3 hours 16 mins,336 km +Augusta(Georgia),Gainesville,,5 hours 15 mins,522 km +Decatur(Georgia),Gainesville,,5 hours 3 mins,535 km +Atlanta(Georgia),Gainesville,,4 hours 52 mins,534 km +Valdosta(Georgia),Gainesville,,1 hour 44 mins,172 km +Savannah(Georgia),Gainesville,,3 hours 15 mins,335 km +St. Petersburg,Rockford,,, +Rockford,St. Petersburg,,, +Dallas,Huntsville,,10 hours 10 mins,"1,071 km" +Huntsville,Dallas,,10 hours 13 mins,"1,072 km" +Kansas City,Bemidji(Minnesota),,9 hours 50 mins,"1,047 km" +Kansas City,Minneapolis(Minnesota),,6 hours 21 mins,703 km +Kansas City,Duluth(Minnesota),,8 hours 28 mins,946 km +Kansas City,Brainerd(Minnesota),,8 hours 18 mins,904 km +Kansas City,Gustavus(Minnesota),,6 hours 6 mins,665 km +Kansas City,St. Cloud(Minnesota),,7 hours 19 mins,806 km +Kansas City,Hibbing(Minnesota),,9 hours 21 mins,"1,009 km" +Kansas City,International Falls(Minnesota),,10 hours 47 mins,"1,173 km" +Bemidji(Minnesota),Kansas City,,9 hours 48 mins,"1,047 km" +Minneapolis(Minnesota),Kansas City,,6 hours 21 mins,702 km +Duluth(Minnesota),Kansas City,,8 hours 28 mins,945 km +Brainerd(Minnesota),Kansas City,,8 hours 18 mins,904 km +Gustavus(Minnesota),Kansas City,,6 hours 6 mins,663 km +St. Cloud(Minnesota),Kansas City,,7 hours 19 mins,805 km +Hibbing(Minnesota),Kansas City,,9 hours 20 mins,"1,008 km" +International Falls(Minnesota),Kansas City,,10 hours 46 mins,"1,172 km" +Buffalo,Abilene(Texas),,22 hours 19 mins,"2,465 km" +Buffalo,Amarillo(Texas),,21 hours 50 mins,"2,417 km" +Buffalo,Harlingen(Texas),,1 day 3 hours,"2,918 km" +Buffalo,Lubbock(Texas),,23 hours 13 mins,"2,555 km" +Buffalo,College Station(Texas),,22 hours 11 mins,"2,363 km" +Buffalo,Corpus Christi(Texas),,1 day 1 hour,"2,723 km" +Buffalo,Wichita Falls(Texas),,20 hours 5 mins,"2,221 km" +Buffalo,Waco(Texas),,21 hours 28 mins,"2,361 km" +Buffalo,San Angelo(Texas),,23 hours 35 mins,"2,599 km" +Buffalo,Houston(Texas),,22 hours 10 mins,"2,390 km" +Buffalo,San Antonio(Texas),,1 day 0 hours,"2,646 km" +Buffalo,Del Rio(Texas),,1 day 2 hours,"2,852 km" +Buffalo,Mission(Texas),,1 day 4 hours,"3,031 km" +Buffalo,Beaumont(Texas),,21 hours 30 mins,"2,384 km" +Buffalo,Longview(Texas),,19 hours 2 mins,"2,066 km" +Buffalo,Midland(Texas),,1 day 0 hours,"2,666 km" +Buffalo,El Paso(Texas),,1 day 4 hours,"3,115 km" +Buffalo,Brownsville(Texas),,1 day 3 hours,"2,957 km" +Buffalo,Austin(Texas),,22 hours 53 mins,"2,519 km" +Buffalo,Dallas(Texas),,20 hours 5 mins,"2,205 km" +Buffalo,Killeen(Texas),,22 hours 16 mins,"2,454 km" +Buffalo,Laredo(Texas),,1 day 2 hours,"2,897 km" +Buffalo,Texarkana(Texas),,17 hours 36 mins,"1,925 km" +Abilene(Texas),Buffalo,,22 hours 20 mins,"2,467 km" +Amarillo(Texas),Buffalo,,21 hours 50 mins,"2,417 km" +Harlingen(Texas),Buffalo,,1 day 3 hours,"2,916 km" +Lubbock(Texas),Buffalo,,23 hours 10 mins,"2,556 km" +College Station(Texas),Buffalo,,22 hours 3 mins,"2,357 km" +Corpus Christi(Texas),Buffalo,,1 day 1 hour,"2,727 km" +Wichita Falls(Texas),Buffalo,,20 hours 5 mins,"2,222 km" +Waco(Texas),Buffalo,,21 hours 22 mins,"2,355 km" +San Angelo(Texas),Buffalo,,23 hours 34 mins,"2,600 km" +Houston(Texas),Buffalo,,22 hours 6 mins,"2,388 km" +San Antonio(Texas),Buffalo,,23 hours 57 mins,"2,642 km" +Del Rio(Texas),Buffalo,,1 day 2 hours,"2,853 km" +Mission(Texas),Buffalo,,1 day 3 hours,"3,028 km" +Beaumont(Texas),Buffalo,,21 hours 27 mins,"2,382 km" +Longview(Texas),Buffalo,,18 hours 58 mins,"2,063 km" +Midland(Texas),Buffalo,,1 day 0 hours,"2,669 km" +El Paso(Texas),Buffalo,,1 day 4 hours,"3,114 km" +Brownsville(Texas),Buffalo,,1 day 3 hours,"2,956 km" +Austin(Texas),Buffalo,,22 hours 46 mins,"2,516 km" +Dallas(Texas),Buffalo,,20 hours 0 mins,"2,203 km" +Killeen(Texas),Buffalo,,22 hours 11 mins,"2,451 km" +Laredo(Texas),Buffalo,,1 day 2 hours,"2,893 km" +Texarkana(Texas),Buffalo,,17 hours 31 mins,"1,922 km" +Dallas,Bismarck(North Dakota),,17 hours 36 mins,"1,822 km" +Dallas,Grand Forks(North Dakota),,16 hours 32 mins,"1,857 km" +Dallas,Minot(North Dakota),,18 hours 58 mins,"1,986 km" +Dallas,Williston(North Dakota),,20 hours 41 mins,"2,171 km" +Bismarck(North Dakota),Dallas,,17 hours 37 mins,"1,822 km" +Bismarck(North Dakota),Grand Forks(North Dakota),,3 hours 49 mins,407 km +Bismarck(North Dakota),Minot(North Dakota),,1 hour 51 mins,178 km +Bismarck(North Dakota),Williston(North Dakota),,3 hours 30 mins,366 km +Grand Forks(North Dakota),Dallas,,16 hours 34 mins,"1,858 km" +Grand Forks(North Dakota),Bismarck(North Dakota),,3 hours 51 mins,407 km +Grand Forks(North Dakota),Minot(North Dakota),,3 hours 17 mins,338 km +Grand Forks(North Dakota),Williston(North Dakota),,5 hours 12 mins,535 km +Minot(North Dakota),Dallas,,18 hours 57 mins,"1,972 km" +Minot(North Dakota),Bismarck(North Dakota),,1 hour 50 mins,178 km +Minot(North Dakota),Grand Forks(North Dakota),,3 hours 17 mins,338 km +Minot(North Dakota),Williston(North Dakota),,2 hours 1 min,196 km +Williston(North Dakota),Dallas,,20 hours 38 mins,"2,172 km" +Williston(North Dakota),Bismarck(North Dakota),,3 hours 32 mins,366 km +Williston(North Dakota),Grand Forks(North Dakota),,5 hours 11 mins,535 km +Williston(North Dakota),Minot(North Dakota),,2 hours 1 min,196 km +Raleigh,Abilene(Texas),,19 hours 57 mins,"2,207 km" +Raleigh,Amarillo(Texas),,21 hours 28 mins,"2,371 km" +Raleigh,Harlingen(Texas),,22 hours 21 mins,"2,458 km" +Raleigh,Lubbock(Texas),,22 hours 20 mins,"2,472 km" +Raleigh,College Station(Texas),,18 hours 33 mins,"1,985 km" +Raleigh,Corpus Christi(Texas),,20 hours 35 mins,"2,263 km" +Raleigh,Wichita Falls(Texas),,19 hours 22 mins,"2,145 km" +Raleigh,Waco(Texas),,18 hours 25 mins,"1,994 km" +Raleigh,San Angelo(Texas),,21 hours 11 mins,"2,331 km" +Raleigh,Houston(Texas),,17 hours 27 mins,"1,930 km" +Raleigh,San Antonio(Texas),,20 hours 19 mins,"2,244 km" +Raleigh,Del Rio(Texas),,22 hours 43 mins,"2,491 km" +Raleigh,Mission(Texas),,22 hours 47 mins,"2,497 km" +Raleigh,Beaumont(Texas),,16 hours 14 mins,"1,797 km" +Raleigh,Longview(Texas),,15 hours 39 mins,"1,718 km" +Raleigh,Midland(Texas),,22 hours 5 mins,"2,448 km" +Raleigh,El Paso(Texas),,1 day 2 hours,"2,938 km" +Raleigh,Brownsville(Texas),,22 hours 42 mins,"2,497 km" +Raleigh,Austin(Texas),,19 hours 49 mins,"2,155 km" +Raleigh,Dallas(Texas),,17 hours 22 mins,"1,919 km" +Raleigh,Killeen(Texas),,19 hours 13 mins,"2,089 km" +Raleigh,Laredo(Texas),,22 hours 28 mins,"2,436 km" +Raleigh,Texarkana(Texas),,15 hours 16 mins,"1,654 km" +Abilene(Texas),Raleigh,,19 hours 58 mins,"2,201 km" +Amarillo(Texas),Raleigh,,21 hours 30 mins,"2,372 km" +Harlingen(Texas),Raleigh,,22 hours 19 mins,"2,456 km" +Lubbock(Texas),Raleigh,,22 hours 17 mins,"2,467 km" +College Station(Texas),Raleigh,,18 hours 30 mins,"1,978 km" +Corpus Christi(Texas),Raleigh,,20 hours 41 mins,"2,266 km" +Wichita Falls(Texas),Raleigh,,19 hours 26 mins,"2,131 km" +Waco(Texas),Raleigh,,18 hours 23 mins,"1,987 km" +San Angelo(Texas),Raleigh,,21 hours 10 mins,"2,325 km" +Houston(Texas),Raleigh,,17 hours 29 mins,"1,928 km" +San Antonio(Texas),Raleigh,,20 hours 21 mins,"2,242 km" +Del Rio(Texas),Raleigh,,22 hours 47 mins,"2,489 km" +Mission(Texas),Raleigh,,22 hours 47 mins,"2,496 km" +Beaumont(Texas),Raleigh,,16 hours 16 mins,"1,794 km" +Longview(Texas),Raleigh,,15 hours 39 mins,"1,711 km" +Midland(Texas),Raleigh,,22 hours 3 mins,"2,441 km" +El Paso(Texas),Raleigh,,1 day 2 hours,"2,931 km" +Brownsville(Texas),Raleigh,,22 hours 42 mins,"2,496 km" +Austin(Texas),Raleigh,,19 hours 49 mins,"2,149 km" +Dallas(Texas),Raleigh,,17 hours 23 mins,"1,910 km" +Killeen(Texas),Raleigh,,19 hours 14 mins,"2,083 km" +Laredo(Texas),Raleigh,,22 hours 26 mins,"2,434 km" +Texarkana(Texas),Raleigh,,15 hours 17 mins,"1,652 km" +Bozeman,San Diego(California),,17 hours 1 min,"1,863 km" +Bozeman,Redding(California),,15 hours 34 mins,"1,613 km" +Bozeman,Sacramento(California),,14 hours 24 mins,"1,511 km" +Bozeman,Fresno(California),,16 hours 58 mins,"1,779 km" +Bozeman,San Luis Obispo(California),,18 hours 33 mins,"2,008 km" +Bozeman,Oakland(California),,15 hours 38 mins,"1,641 km" +Bozeman,Santa Barbara(California),,17 hours 31 mins,"1,907 km" +Bozeman,Stockton(California),,15 hours 7 mins,"1,587 km" +Bozeman,Santa Rosa(California),,15 hours 57 mins,"1,666 km" +Bozeman,Bakersfield(California),,16 hours 20 mins,"1,788 km" +Bozeman,Santa Ana(California),,16 hours 9 mins,"1,764 km" +Bozeman,Santa Maria(California),,18 hours 20 mins,"1,963 km" +Bozeman,San Jose(California),,16 hours 16 mins,"1,703 km" +Bozeman,Burbank(California),,16 hours 12 mins,"1,774 km" +Bozeman,Arcata(California),,18 hours 10 mins,"1,856 km" +Bozeman,Butte(California),,15 hours 6 mins,"1,550 km" +Bozeman,Palm Springs(California),,16 hours 14 mins,"1,779 km" +Bozeman,Los Angeles(California),,16 hours 11 mins,"1,768 km" +Bozeman,Long Beach(California),,16 hours 21 mins,"1,786 km" +Bozeman,San Francisco(California),,15 hours 47 mins,"1,650 km" +Bozeman,Monterey(California),,17 hours 17 mins,"1,811 km" +San Diego(California),Bozeman,,17 hours 10 mins,"1,863 km" +Redding(California),Bozeman,,15 hours 27 mins,"1,613 km" +Sacramento(California),Bozeman,,14 hours 21 mins,"1,510 km" +Fresno(California),Bozeman,,16 hours 50 mins,"1,778 km" +San Luis Obispo(California),Bozeman,,18 hours 40 mins,"2,010 km" +Oakland(California),Bozeman,,15 hours 32 mins,"1,640 km" +Santa Barbara(California),Bozeman,,17 hours 37 mins,"1,907 km" +Stockton(California),Bozeman,,15 hours 3 mins,"1,587 km" +Santa Rosa(California),Bozeman,,15 hours 53 mins,"1,665 km" +Bakersfield(California),Bozeman,,16 hours 30 mins,"1,790 km" +Santa Ana(California),Bozeman,,16 hours 13 mins,"1,761 km" +Santa Maria(California),Bozeman,,18 hours 29 mins,"1,966 km" +San Jose(California),Bozeman,,16 hours 7 mins,"1,701 km" +Burbank(California),Bozeman,,16 hours 14 mins,"1,768 km" +Arcata(California),Bozeman,,18 hours 5 mins,"1,853 km" +Butte(California),Bozeman,,15 hours 3 mins,"1,534 km" +Palm Springs(California),Bozeman,,16 hours 19 mins,"1,778 km" +Los Angeles(California),Bozeman,,16 hours 12 mins,"1,764 km" +Long Beach(California),Bozeman,,16 hours 30 mins,"1,791 km" +San Francisco(California),Bozeman,,15 hours 39 mins,"1,649 km" +Monterey(California),Bozeman,,17 hours 8 mins,"1,808 km" +Atlantic City,Miami,,18 hours 7 mins,"2,004 km" +Miami,Atlantic City,,17 hours 59 mins,"1,997 km" +Greer,State College(Pennsylvania),,9 hours 32 mins,977 km +Greer,Johnstown(Pennsylvania),,8 hours 49 mins,912 km +Greer,Harrisburg(Pennsylvania),,8 hours 29 mins,908 km +Greer,Erie(Pennsylvania),,10 hours 0 mins,"1,053 km" +Greer,Pittsburgh(Pennsylvania),,8 hours 16 mins,858 km +Greer,Latrobe(Pennsylvania),,8 hours 28 mins,844 km +Greer,Philadelphia(Pennsylvania),,9 hours 32 mins,"1,009 km" +Greer,Lewisburg(Pennsylvania),,9 hours 28 mins,994 km +Greer,Scranton(Pennsylvania),,10 hours 16 mins,"1,095 km" +State College(Pennsylvania),Greer,,9 hours 30 mins,982 km +Johnstown(Pennsylvania),Greer,,8 hours 48 mins,909 km +Harrisburg(Pennsylvania),Greer,,8 hours 31 mins,906 km +Erie(Pennsylvania),Greer,,10 hours 2 mins,"1,050 km" +Pittsburgh(Pennsylvania),Greer,,8 hours 15 mins,856 km +Latrobe(Pennsylvania),Greer,,8 hours 25 mins,841 km +Philadelphia(Pennsylvania),Greer,,9 hours 34 mins,"1,016 km" +Lewisburg(Pennsylvania),Greer,,9 hours 29 mins,992 km +Scranton(Pennsylvania),Greer,,10 hours 15 mins,"1,093 km" +Bend,Los Angeles,,12 hours 46 mins,"1,320 km" +Los Angeles,Bend,,12 hours 46 mins,"1,318 km" +Denver,Oklahoma City,,9 hours 39 mins,"1,093 km" +Oklahoma City,Denver,,9 hours 43 mins,"1,091 km" +Washington,Lynchburg(Virginia),,3 hours 19 mins,290 km +Washington,Richmond(Virginia),,1 hour 49 mins,175 km +Washington,Petersburg(Virginia),,2 hours 8 mins,211 km +Washington,Newport News(Virginia),,2 hours 41 mins,274 km +Washington,Charlottesville(Virginia),,2 hours 19 mins,188 km +Washington,Staunton(Virginia),,2 hours 31 mins,253 km +Washington,Jamestown(Virginia),,2 hours 36 mins,256 km +Washington,Norfolk(Virginia),,3 hours 10 mins,313 km +Washington,Roanoke(Virginia),,3 hours 42 mins,387 km +Lynchburg(Virginia),Washington,,3 hours 19 mins,291 km +Richmond(Virginia),Washington,,1 hour 51 mins,176 km +Petersburg(Virginia),Washington,,2 hours 11 mins,212 km +Newport News(Virginia),Washington,,2 hours 43 mins,275 km +Charlottesville(Virginia),Washington,,2 hours 18 mins,188 km +Staunton(Virginia),Washington,,2 hours 30 mins,253 km +Jamestown(Virginia),Washington,,2 hours 39 mins,257 km +Norfolk(Virginia),Washington,,3 hours 13 mins,314 km +Roanoke(Virginia),Washington,,3 hours 42 mins,387 km +Orlando,Moline(Illinois),,17 hours 42 mins,"1,966 km" +Orlando,Belleville(Illinois),,14 hours 12 mins,"1,579 km" +Orlando,Bloomington(Illinois),,15 hours 58 mins,"1,782 km" +Orlando,Champaign(Illinois),,15 hours 15 mins,"1,705 km" +Orlando,Chicago(Illinois),,16 hours 53 mins,"1,858 km" +Orlando,Rockford(Illinois),,17 hours 56 mins,"2,000 km" +Orlando,Peoria(Illinois),,16 hours 19 mins,"1,816 km" +Moline(Illinois),Orlando,,17 hours 46 mins,"1,964 km" +Belleville(Illinois),Orlando,,14 hours 16 mins,"1,576 km" +Bloomington(Illinois),Orlando,,16 hours 0 mins,"1,779 km" +Champaign(Illinois),Orlando,,15 hours 20 mins,"1,705 km" +Chicago(Illinois),Orlando,,16 hours 56 mins,"1,858 km" +Rockford(Illinois),Orlando,,17 hours 55 mins,"1,994 km" +Peoria(Illinois),Orlando,,16 hours 25 mins,"1,816 km" +Boston,New Orleans,,22 hours 37 mins,"2,456 km" +New Orleans,Boston,,22 hours 36 mins,"2,454 km" +Appleton,Moline(Illinois),,4 hours 19 mins,443 km +Appleton,Belleville(Illinois),,6 hours 51 mins,731 km +Appleton,Bloomington(Illinois),,4 hours 27 mins,478 km +Appleton,Champaign(Illinois),,4 hours 54 mins,525 km +Appleton,Chicago(Illinois),,3 hours 4 mins,314 km +Appleton,Rockford(Illinois),,2 hours 45 mins,274 km +Appleton,Peoria(Illinois),,4 hours 39 mins,480 km +Moline(Illinois),Appleton,,4 hours 19 mins,444 km +Belleville(Illinois),Appleton,,6 hours 52 mins,731 km +Bloomington(Illinois),Appleton,,4 hours 28 mins,475 km +Champaign(Illinois),Appleton,,4 hours 57 mins,526 km +Chicago(Illinois),Appleton,,3 hours 1 min,314 km +Rockford(Illinois),Appleton,,2 hours 47 mins,274 km +Peoria(Illinois),Appleton,,4 hours 41 mins,477 km +Norfolk,Buffalo(New York),,9 hours 39 mins,915 km +Norfolk,Manhattan(New York),,6 hours 32 mins,590 km +Norfolk,Niagara Falls(New York),,10 hours 0 mins,946 km +Norfolk,Islip(New York),,7 hours 12 mins,660 km +Norfolk,New York(New York),,6 hours 23 mins,583 km +Norfolk,Watertown(New York),,9 hours 39 mins,942 km +Norfolk,Newburgh(New York),,7 hours 12 mins,675 km +Norfolk,Syracuse(New York),,8 hours 36 mins,830 km +Norfolk,Plattsburgh(New York),,10 hours 39 mins,"1,064 km" +Norfolk,Ogdensburg(New York),,10 hours 38 mins,"1,035 km" +Norfolk,Ithaca(New York),,8 hours 30 mins,791 km +Norfolk,Elmira(New York),,7 hours 51 mins,767 km +Norfolk,White Plains(New York),,6 hours 50 mins,634 km +Norfolk,Albany(New York),,8 hours 19 mins,806 km +Norfolk,Binghamton(New York),,7 hours 36 mins,718 km +Norfolk,Rochester(New York),,9 hours 7 mins,929 km +Buffalo(New York),Norfolk,,9 hours 44 mins,915 km +Manhattan(New York),Norfolk,,6 hours 31 mins,590 km +Niagara Falls(New York),Norfolk,,10 hours 6 mins,945 km +Islip(New York),Norfolk,,7 hours 12 mins,659 km +New York(New York),Norfolk,,6 hours 22 mins,584 km +Watertown(New York),Norfolk,,9 hours 38 mins,941 km +Newburgh(New York),Norfolk,,7 hours 15 mins,678 km +Syracuse(New York),Norfolk,,8 hours 34 mins,828 km +Plattsburgh(New York),Norfolk,,10 hours 39 mins,"1,067 km" +Ogdensburg(New York),Norfolk,,10 hours 37 mins,"1,034 km" +Ithaca(New York),Norfolk,,8 hours 28 mins,790 km +Elmira(New York),Norfolk,,7 hours 57 mins,775 km +White Plains(New York),Norfolk,,6 hours 49 mins,634 km +Albany(New York),Norfolk,,8 hours 21 mins,809 km +Binghamton(New York),Norfolk,,7 hours 34 mins,715 km +Rochester(New York),Norfolk,,9 hours 12 mins,936 km +Richmond,Moline(Illinois),,14 hours 2 mins,"1,495 km" +Richmond,Belleville(Illinois),,12 hours 9 mins,"1,305 km" +Richmond,Bloomington(Illinois),,12 hours 7 mins,"1,282 km" +Richmond,Champaign(Illinois),,11 hours 25 mins,"1,205 km" +Richmond,Chicago(Illinois),,12 hours 7 mins,"1,286 km" +Richmond,Rockford(Illinois),,13 hours 32 mins,"1,426 km" +Richmond,Peoria(Illinois),,12 hours 38 mins,"1,345 km" +Moline(Illinois),Richmond,,13 hours 58 mins,"1,493 km" +Belleville(Illinois),Richmond,,12 hours 7 mins,"1,302 km" +Bloomington(Illinois),Richmond,,12 hours 7 mins,"1,282 km" +Champaign(Illinois),Richmond,,11 hours 24 mins,"1,201 km" +Chicago(Illinois),Richmond,,12 hours 12 mins,"1,288 km" +Rockford(Illinois),Richmond,,13 hours 36 mins,"1,442 km" +Peoria(Illinois),Richmond,,12 hours 37 mins,"1,344 km" +Myrtle Beach,Baltimore,,7 hours 28 mins,757 km +Baltimore,Myrtle Beach,,7 hours 28 mins,766 km +Houston,Pensacola,,7 hours 38 mins,845 km +Pensacola,Houston,,7 hours 37 mins,845 km +Omaha,Seattle,,1 day 0 hours,"2,663 km" +Seattle,Omaha,,1 day 0 hours,"2,662 km" +Denver,Fort Lauderdale,,1 day 5 hours,"3,288 km" +Fort Lauderdale,Denver,,1 day 5 hours,"3,287 km" +Pensacola,Kansas City,,14 hours 0 mins,"1,447 km" +Kansas City,Pensacola,,14 hours 4 mins,"1,433 km" +Panama City,Atlanta,,4 hours 50 mins,465 km +Atlanta,Panama City,,4 hours 51 mins,464 km +Fort Lauderdale,Abilene(Texas),,21 hours 16 mins,"2,367 km" +Fort Lauderdale,Amarillo(Texas),,1 day 0 hours,"2,666 km" +Fort Lauderdale,Harlingen(Texas),,21 hours 28 mins,"2,403 km" +Fort Lauderdale,Lubbock(Texas),,23 hours 40 mins,"2,632 km" +Fort Lauderdale,College Station(Texas),,17 hours 59 mins,"2,021 km" +Fort Lauderdale,Corpus Christi(Texas),,19 hours 42 mins,"2,208 km" +Fort Lauderdale,Wichita Falls(Texas),,20 hours 42 mins,"2,305 km" +Fort Lauderdale,Waco(Texas),,19 hours 18 mins,"2,131 km" +Fort Lauderdale,San Angelo(Texas),,22 hours 16 mins,"2,459 km" +Fort Lauderdale,Houston(Texas),,16 hours 34 mins,"1,875 km" +Fort Lauderdale,San Antonio(Texas),,19 hours 26 mins,"2,189 km" +Fort Lauderdale,Del Rio(Texas),,21 hours 50 mins,"2,436 km" +Fort Lauderdale,Mission(Texas),,21 hours 54 mins,"2,443 km" +Fort Lauderdale,Beaumont(Texas),,15 hours 21 mins,"1,742 km" +Fort Lauderdale,Longview(Texas),,16 hours 59 mins,"1,879 km" +Fort Lauderdale,Midland(Texas),,23 hours 24 mins,"2,608 km" +Fort Lauderdale,El Paso(Texas),,1 day 3 hours,"3,074 km" +Fort Lauderdale,Brownsville(Texas),,21 hours 50 mins,"2,442 km" +Fort Lauderdale,Austin(Texas),,19 hours 2 mins,"2,138 km" +Fort Lauderdale,Dallas(Texas),,18 hours 41 mins,"2,079 km" +Fort Lauderdale,Killeen(Texas),,19 hours 37 mins,"2,193 km" +Fort Lauderdale,Laredo(Texas),,21 hours 35 mins,"2,381 km" +Fort Lauderdale,Texarkana(Texas),,17 hours 0 mins,"1,889 km" +Abilene(Texas),Fort Lauderdale,,21 hours 16 mins,"2,361 km" +Amarillo(Texas),Fort Lauderdale,,1 day 0 hours,"2,654 km" +Harlingen(Texas),Fort Lauderdale,,21 hours 25 mins,"2,402 km" +Lubbock(Texas),Fort Lauderdale,,23 hours 35 mins,"2,627 km" +College Station(Texas),Fort Lauderdale,,17 hours 58 mins,"2,022 km" +Corpus Christi(Texas),Fort Lauderdale,,19 hours 47 mins,"2,212 km" +Wichita Falls(Texas),Fort Lauderdale,,20 hours 45 mins,"2,291 km" +Waco(Texas),Fort Lauderdale,,19 hours 19 mins,"2,129 km" +San Angelo(Texas),Fort Lauderdale,,22 hours 17 mins,"2,457 km" +Houston(Texas),Fort Lauderdale,,16 hours 35 mins,"1,874 km" +San Antonio(Texas),Fort Lauderdale,,19 hours 28 mins,"2,188 km" +Del Rio(Texas),Fort Lauderdale,,21 hours 54 mins,"2,435 km" +Mission(Texas),Fort Lauderdale,,21 hours 54 mins,"2,442 km" +Beaumont(Texas),Fort Lauderdale,,15 hours 23 mins,"1,740 km" +Longview(Texas),Fort Lauderdale,,16 hours 58 mins,"1,872 km" +Midland(Texas),Fort Lauderdale,,23 hours 22 mins,"2,601 km" +El Paso(Texas),Fort Lauderdale,,1 day 3 hours,"3,072 km" +Brownsville(Texas),Fort Lauderdale,,21 hours 49 mins,"2,442 km" +Austin(Texas),Fort Lauderdale,,19 hours 3 mins,"2,137 km" +Dallas(Texas),Fort Lauderdale,,18 hours 42 mins,"2,070 km" +Killeen(Texas),Fort Lauderdale,,19 hours 37 mins,"2,186 km" +Laredo(Texas),Fort Lauderdale,,21 hours 33 mins,"2,380 km" +Texarkana(Texas),Fort Lauderdale,,17 hours 3 mins,"1,890 km" +Missoula,San Diego(California),,18 hours 0 mins,"2,047 km" +Missoula,Redding(California),,13 hours 48 mins,"1,382 km" +Missoula,Sacramento(California),,15 hours 12 mins,"1,435 km" +Missoula,Fresno(California),,17 hours 46 mins,"1,703 km" +Missoula,San Luis Obispo(California),,19 hours 39 mins,"1,906 km" +Missoula,Oakland(California),,16 hours 26 mins,"1,565 km" +Missoula,Santa Barbara(California),,18 hours 30 mins,"2,090 km" +Missoula,Stockton(California),,15 hours 55 mins,"1,512 km" +Missoula,Santa Rosa(California),,16 hours 45 mins,"1,590 km" +Missoula,Bakersfield(California),,17 hours 19 mins,"1,972 km" +Missoula,Santa Ana(California),,17 hours 8 mins,"1,947 km" +Missoula,Santa Maria(California),,19 hours 19 mins,"2,146 km" +Missoula,San Jose(California),,17 hours 4 mins,"1,628 km" +Missoula,Burbank(California),,17 hours 11 mins,"1,957 km" +Missoula,Arcata(California),,15 hours 16 mins,"1,532 km" +Missoula,Butte(California),,15 hours 26 mins,"1,533 km" +Missoula,Palm Springs(California),,17 hours 13 mins,"1,962 km" +Missoula,Los Angeles(California),,17 hours 10 mins,"1,951 km" +Missoula,Long Beach(California),,17 hours 20 mins,"1,970 km" +Missoula,San Francisco(California),,16 hours 35 mins,"1,575 km" +Missoula,Monterey(California),,18 hours 5 mins,"1,735 km" +San Diego(California),Missoula,,18 hours 12 mins,"2,049 km" +Redding(California),Missoula,,13 hours 44 mins,"1,381 km" +Sacramento(California),Missoula,,15 hours 17 mins,"1,436 km" +Fresno(California),Missoula,,17 hours 46 mins,"1,703 km" +San Luis Obispo(California),Missoula,,19 hours 39 mins,"1,915 km" +Oakland(California),Missoula,,16 hours 28 mins,"1,565 km" +Santa Barbara(California),Missoula,,18 hours 39 mins,"2,093 km" +Stockton(California),Missoula,,15 hours 59 mins,"1,512 km" +Santa Rosa(California),Missoula,,16 hours 49 mins,"1,591 km" +Bakersfield(California),Missoula,,17 hours 32 mins,"1,976 km" +Santa Ana(California),Missoula,,17 hours 15 mins,"1,947 km" +Santa Maria(California),Missoula,,19 hours 32 mins,"2,152 km" +San Jose(California),Missoula,,17 hours 3 mins,"1,626 km" +Burbank(California),Missoula,,17 hours 16 mins,"1,954 km" +Arcata(California),Missoula,,15 hours 12 mins,"1,529 km" +Butte(California),Missoula,,15 hours 20 mins,"1,526 km" +Palm Springs(California),Missoula,,17 hours 21 mins,"1,963 km" +Los Angeles(California),Missoula,,17 hours 14 mins,"1,950 km" +Long Beach(California),Missoula,,17 hours 33 mins,"1,977 km" +San Francisco(California),Missoula,,16 hours 35 mins,"1,575 km" +Monterey(California),Missoula,,18 hours 4 mins,"1,733 km" +Pittsburgh,Buffalo(New York),,3 hours 14 mins,352 km +Pittsburgh,Manhattan(New York),,6 hours 8 mins,608 km +Pittsburgh,Niagara Falls(New York),,3 hours 35 mins,383 km +Pittsburgh,Islip(New York),,6 hours 52 mins,701 km +Pittsburgh,New York(New York),,6 hours 0 mins,597 km +Pittsburgh,Watertown(New York),,6 hours 13 mins,681 km +Pittsburgh,Newburgh(New York),,6 hours 2 mins,608 km +Pittsburgh,Syracuse(New York),,5 hours 17 mins,578 km +Pittsburgh,Plattsburgh(New York),,9 hours 6 mins,939 km +Pittsburgh,Ogdensburg(New York),,7 hours 12 mins,774 km +Pittsburgh,Ithaca(New York),,5 hours 14 mins,511 km +Pittsburgh,Elmira(New York),,4 hours 36 mins,438 km +Pittsburgh,White Plains(New York),,6 hours 12 mins,633 km +Pittsburgh,Albany(New York),,7 hours 10 mins,739 km +Pittsburgh,Binghamton(New York),,5 hours 24 mins,504 km +Pittsburgh,Rochester(New York),,4 hours 11 mins,457 km +Buffalo(New York),Pittsburgh,,3 hours 15 mins,353 km +Manhattan(New York),Pittsburgh,,6 hours 8 mins,603 km +Niagara Falls(New York),Pittsburgh,,3 hours 37 mins,383 km +Islip(New York),Pittsburgh,,6 hours 53 mins,700 km +New York(New York),Pittsburgh,,5 hours 57 mins,594 km +Watertown(New York),Pittsburgh,,6 hours 15 mins,681 km +Newburgh(New York),Pittsburgh,,6 hours 6 mins,607 km +Syracuse(New York),Pittsburgh,,5 hours 19 mins,579 km +Plattsburgh(New York),Pittsburgh,,9 hours 8 mins,941 km +Ogdensburg(New York),Pittsburgh,,7 hours 14 mins,774 km +Ithaca(New York),Pittsburgh,,5 hours 14 mins,503 km +Elmira(New York),Pittsburgh,,4 hours 37 mins,432 km +White Plains(New York),Pittsburgh,,6 hours 16 mins,631 km +Albany(New York),Pittsburgh,,7 hours 15 mins,740 km +Binghamton(New York),Pittsburgh,,5 hours 27 mins,497 km +Rochester(New York),Pittsburgh,,4 hours 13 mins,458 km +Atlanta,San Diego,,1 day 7 hours,"3,451 km" +San Diego,Atlanta,,1 day 7 hours,"3,443 km" +Austin,Bemidji(Minnesota),,20 hours 14 mins,"2,228 km" +Austin,Minneapolis(Minnesota),,16 hours 46 mins,"1,883 km" +Austin,Duluth(Minnesota),,18 hours 52 mins,"2,126 km" +Austin,Brainerd(Minnesota),,18 hours 43 mins,"2,084 km" +Austin,Gustavus(Minnesota),,16 hours 31 mins,"1,845 km" +Austin,St. Cloud(Minnesota),,17 hours 43 mins,"1,986 km" +Austin,Hibbing(Minnesota),,19 hours 45 mins,"2,190 km" +Austin,International Falls(Minnesota),,21 hours 11 mins,"2,354 km" +Bemidji(Minnesota),Austin,,20 hours 14 mins,"2,231 km" +Minneapolis(Minnesota),Austin,,16 hours 47 mins,"1,886 km" +Duluth(Minnesota),Austin,,18 hours 55 mins,"2,130 km" +Brainerd(Minnesota),Austin,,18 hours 45 mins,"2,088 km" +Gustavus(Minnesota),Austin,,16 hours 33 mins,"1,847 km" +St. Cloud(Minnesota),Austin,,17 hours 45 mins,"1,989 km" +Hibbing(Minnesota),Austin,,19 hours 47 mins,"2,192 km" +International Falls(Minnesota),Austin,,21 hours 12 mins,"2,357 km" +South Bend,Moline(Illinois),,3 hours 47 mins,380 km +South Bend,Belleville(Illinois),,5 hours 38 mins,574 km +South Bend,Bloomington(Illinois),,3 hours 14 mins,321 km +South Bend,Champaign(Illinois),,3 hours 5 mins,307 km +South Bend,Chicago(Illinois),,1 hour 40 mins,154 km +South Bend,Rockford(Illinois),,3 hours 4 mins,294 km +South Bend,Peoria(Illinois),,3 hours 34 mins,367 km +Moline(Illinois),South Bend,,3 hours 46 mins,379 km +Belleville(Illinois),South Bend,,5 hours 37 mins,572 km +Bloomington(Illinois),South Bend,,3 hours 12 mins,314 km +Champaign(Illinois),South Bend,,3 hours 5 mins,305 km +Chicago(Illinois),South Bend,,1 hour 39 mins,154 km +Rockford(Illinois),South Bend,,3 hours 2 mins,293 km +Peoria(Illinois),South Bend,,3 hours 35 mins,367 km +Johnstown,Moline(Illinois),,10 hours 17 mins,"1,075 km" +Johnstown,Belleville(Illinois),,10 hours 23 mins,"1,072 km" +Johnstown,Bloomington(Illinois),,9 hours 15 mins,958 km +Johnstown,Champaign(Illinois),,8 hours 32 mins,881 km +Johnstown,Chicago(Illinois),,8 hours 9 mins,839 km +Johnstown,Rockford(Illinois),,9 hours 34 mins,979 km +Johnstown,Peoria(Illinois),,9 hours 46 mins,"1,021 km" +Moline(Illinois),Johnstown,,10 hours 15 mins,"1,076 km" +Belleville(Illinois),Johnstown,,10 hours 23 mins,"1,074 km" +Bloomington(Illinois),Johnstown,,9 hours 16 mins,962 km +Champaign(Illinois),Johnstown,,8 hours 33 mins,882 km +Chicago(Illinois),Johnstown,,8 hours 6 mins,841 km +Rockford(Illinois),Johnstown,,9 hours 31 mins,990 km +Peoria(Illinois),Johnstown,,9 hours 46 mins,"1,024 km" +Louisville,Abilene(Texas),,14 hours 54 mins,"1,635 km" +Louisville,Amarillo(Texas),,14 hours 46 mins,"1,636 km" +Louisville,Harlingen(Texas),,19 hours 16 mins,"2,058 km" +Louisville,Lubbock(Texas),,16 hours 8 mins,"1,775 km" +Louisville,College Station(Texas),,14 hours 22 mins,"1,503 km" +Louisville,Corpus Christi(Texas),,17 hours 30 mins,"1,864 km" +Louisville,Wichita Falls(Texas),,13 hours 1 min,"1,440 km" +Louisville,Waco(Texas),,13 hours 40 mins,"1,501 km" +Louisville,San Angelo(Texas),,16 hours 8 mins,"1,759 km" +Louisville,Houston(Texas),,14 hours 22 mins,"1,530 km" +Louisville,San Antonio(Texas),,16 hours 16 mins,"1,786 km" +Louisville,Del Rio(Texas),,18 hours 33 mins,"2,012 km" +Louisville,Mission(Texas),,19 hours 45 mins,"2,171 km" +Louisville,Beaumont(Texas),,13 hours 42 mins,"1,524 km" +Louisville,Longview(Texas),,11 hours 14 mins,"1,206 km" +Louisville,Midland(Texas),,17 hours 2 mins,"1,876 km" +Louisville,El Paso(Texas),,21 hours 20 mins,"2,366 km" +Louisville,Brownsville(Texas),,19 hours 37 mins,"2,098 km" +Louisville,Austin(Texas),,15 hours 4 mins,"1,659 km" +Louisville,Dallas(Texas),,12 hours 17 mins,"1,345 km" +Louisville,Killeen(Texas),,14 hours 28 mins,"1,594 km" +Louisville,Laredo(Texas),,18 hours 32 mins,"2,037 km" +Louisville,Texarkana(Texas),,9 hours 48 mins,"1,065 km" +Abilene(Texas),Louisville,,14 hours 52 mins,"1,635 km" +Amarillo(Texas),Louisville,,14 hours 42 mins,"1,635 km" +Harlingen(Texas),Louisville,,19 hours 11 mins,"2,058 km" +Lubbock(Texas),Louisville,,16 hours 2 mins,"1,774 km" +College Station(Texas),Louisville,,14 hours 18 mins,"1,499 km" +Corpus Christi(Texas),Louisville,,17 hours 33 mins,"1,869 km" +Wichita Falls(Texas),Louisville,,12 hours 57 mins,"1,440 km" +Waco(Texas),Louisville,,13 hours 37 mins,"1,497 km" +San Angelo(Texas),Louisville,,16 hours 4 mins,"1,759 km" +Houston(Texas),Louisville,,14 hours 21 mins,"1,530 km" +San Antonio(Texas),Louisville,,16 hours 12 mins,"1,784 km" +Del Rio(Texas),Louisville,,18 hours 27 mins,"2,013 km" +Mission(Texas),Louisville,,19 hours 39 mins,"2,170 km" +Beaumont(Texas),Louisville,,13 hours 42 mins,"1,524 km" +Longview(Texas),Louisville,,11 hours 13 mins,"1,205 km" +Midland(Texas),Louisville,,16 hours 57 mins,"1,875 km" +El Paso(Texas),Louisville,,21 hours 15 mins,"2,365 km" +Brownsville(Texas),Louisville,,19 hours 35 mins,"2,098 km" +Austin(Texas),Louisville,,15 hours 1 min,"1,659 km" +Dallas(Texas),Louisville,,12 hours 15 mins,"1,345 km" +Killeen(Texas),Louisville,,14 hours 26 mins,"1,593 km" +Laredo(Texas),Louisville,,18 hours 30 mins,"2,036 km" +Texarkana(Texas),Louisville,,9 hours 46 mins,"1,064 km" +Fort Lauderdale,Milwaukee,,21 hours 8 mins,"2,340 km" +Milwaukee,Fort Lauderdale,,21 hours 9 mins,"2,336 km" +Philadelphia,Bemidji(Minnesota),,20 hours 53 mins,"2,222 km" +Philadelphia,Minneapolis(Minnesota),,17 hours 26 mins,"1,878 km" +Philadelphia,Duluth(Minnesota),,18 hours 24 mins,"1,973 km" +Philadelphia,Brainerd(Minnesota),,19 hours 22 mins,"2,078 km" +Philadelphia,Gustavus(Minnesota),,17 hours 53 mins,"1,924 km" +Philadelphia,St. Cloud(Minnesota),,18 hours 22 mins,"1,980 km" +Philadelphia,Hibbing(Minnesota),,19 hours 41 mins,"2,093 km" +Philadelphia,International Falls(Minnesota),,21 hours 5 mins,"2,234 km" +Bemidji(Minnesota),Philadelphia,,20 hours 49 mins,"2,231 km" +Minneapolis(Minnesota),Philadelphia,,17 hours 22 mins,"1,885 km" +Duluth(Minnesota),Philadelphia,,18 hours 22 mins,"1,982 km" +Brainerd(Minnesota),Philadelphia,,19 hours 20 mins,"2,088 km" +Gustavus(Minnesota),Philadelphia,,17 hours 50 mins,"1,932 km" +St. Cloud(Minnesota),Philadelphia,,18 hours 20 mins,"1,990 km" +Hibbing(Minnesota),Philadelphia,,19 hours 38 mins,"2,102 km" +International Falls(Minnesota),Philadelphia,,21 hours 2 mins,"2,244 km" +Memphis,State College(Pennsylvania),,13 hours 42 mins,"1,459 km" +Memphis,Johnstown(Pennsylvania),,12 hours 37 mins,"1,347 km" +Memphis,Harrisburg(Pennsylvania),,13 hours 39 mins,"1,497 km" +Memphis,Erie(Pennsylvania),,12 hours 9 mins,"1,330 km" +Memphis,Pittsburgh(Pennsylvania),,11 hours 26 mins,"1,237 km" +Memphis,Latrobe(Pennsylvania),,12 hours 4 mins,"1,284 km" +Memphis,Philadelphia(Pennsylvania),,15 hours 1 min,"1,634 km" +Memphis,Lewisburg(Pennsylvania),,14 hours 28 mins,"1,583 km" +Memphis,Scranton(Pennsylvania),,15 hours 26 mins,"1,685 km" +State College(Pennsylvania),Memphis,,13 hours 44 mins,"1,468 km" +Johnstown(Pennsylvania),Memphis,,12 hours 40 mins,"1,348 km" +Harrisburg(Pennsylvania),Memphis,,13 hours 40 mins,"1,497 km" +Erie(Pennsylvania),Memphis,,12 hours 13 mins,"1,331 km" +Pittsburgh(Pennsylvania),Memphis,,11 hours 28 mins,"1,241 km" +Latrobe(Pennsylvania),Memphis,,12 hours 4 mins,"1,287 km" +Philadelphia(Pennsylvania),Memphis,,15 hours 1 min,"1,634 km" +Lewisburg(Pennsylvania),Memphis,,14 hours 29 mins,"1,584 km" +Scranton(Pennsylvania),Memphis,,15 hours 25 mins,"1,685 km" +Denver,Savannah,,23 hours 49 mins,"2,658 km" +Savannah,Denver,,23 hours 53 mins,"2,656 km" +Atlanta,Abilene(Texas),,13 hours 53 mins,"1,553 km" +Atlanta,Amarillo(Texas),,16 hours 0 mins,"1,795 km" +Atlanta,Harlingen(Texas),,16 hours 17 mins,"1,804 km" +Atlanta,Lubbock(Texas),,16 hours 16 mins,"1,818 km" +Atlanta,College Station(Texas),,12 hours 29 mins,"1,331 km" +Atlanta,Corpus Christi(Texas),,14 hours 31 mins,"1,609 km" +Atlanta,Wichita Falls(Texas),,13 hours 19 mins,"1,491 km" +Atlanta,Waco(Texas),,12 hours 21 mins,"1,340 km" +Atlanta,San Angelo(Texas),,15 hours 7 mins,"1,677 km" +Atlanta,Houston(Texas),,11 hours 23 mins,"1,276 km" +Atlanta,San Antonio(Texas),,14 hours 15 mins,"1,590 km" +Atlanta,Del Rio(Texas),,16 hours 38 mins,"1,837 km" +Atlanta,Mission(Texas),,16 hours 43 mins,"1,844 km" +Atlanta,Beaumont(Texas),,10 hours 10 mins,"1,143 km" +Atlanta,Longview(Texas),,9 hours 35 mins,"1,064 km" +Atlanta,Midland(Texas),,16 hours 1 min,"1,794 km" +Atlanta,El Paso(Texas),,20 hours 19 mins,"2,284 km" +Atlanta,Brownsville(Texas),,16 hours 38 mins,"1,843 km" +Atlanta,Austin(Texas),,13 hours 46 mins,"1,501 km" +Atlanta,Dallas(Texas),,11 hours 18 mins,"1,265 km" +Atlanta,Killeen(Texas),,13 hours 9 mins,"1,435 km" +Atlanta,Laredo(Texas),,16 hours 23 mins,"1,782 km" +Atlanta,Texarkana(Texas),,9 hours 37 mins,"1,075 km" +Abilene(Texas),Atlanta,,13 hours 53 mins,"1,549 km" +Amarillo(Texas),Atlanta,,16 hours 0 mins,"1,781 km" +Harlingen(Texas),Atlanta,,16 hours 13 mins,"1,804 km" +Lubbock(Texas),Atlanta,,16 hours 12 mins,"1,815 km" +College Station(Texas),Atlanta,,12 hours 25 mins,"1,326 km" +Corpus Christi(Texas),Atlanta,,14 hours 35 mins,"1,614 km" +Wichita Falls(Texas),Atlanta,,13 hours 21 mins,"1,478 km" +Waco(Texas),Atlanta,,12 hours 19 mins,"1,335 km" +San Angelo(Texas),Atlanta,,15 hours 5 mins,"1,673 km" +Houston(Texas),Atlanta,,11 hours 23 mins,"1,276 km" +San Antonio(Texas),Atlanta,,14 hours 16 mins,"1,590 km" +Del Rio(Texas),Atlanta,,16 hours 42 mins,"1,837 km" +Mission(Texas),Atlanta,,16 hours 42 mins,"1,844 km" +Beaumont(Texas),Atlanta,,10 hours 11 mins,"1,142 km" +Longview(Texas),Atlanta,,9 hours 34 mins,"1,059 km" +Midland(Texas),Atlanta,,15 hours 58 mins,"1,789 km" +El Paso(Texas),Atlanta,,20 hours 16 mins,"2,279 km" +Brownsville(Texas),Atlanta,,16 hours 37 mins,"1,844 km" +Austin(Texas),Atlanta,,13 hours 44 mins,"1,496 km" +Dallas(Texas),Atlanta,,11 hours 18 mins,"1,258 km" +Killeen(Texas),Atlanta,,13 hours 9 mins,"1,431 km" +Laredo(Texas),Atlanta,,16 hours 21 mins,"1,782 km" +Texarkana(Texas),Atlanta,,9 hours 40 mins,"1,077 km" +Peoria,Moline(Illinois),,1 hour 27 mins,151 km +Peoria,Belleville(Illinois),,2 hours 38 mins,268 km +Peoria,Bloomington(Illinois),,41 mins,61.5 km +Peoria,Champaign(Illinois),,1 hour 22 mins,144 km +Peoria,Chicago(Illinois),,2 hours 34 mins,269 km +Peoria,Rockford(Illinois),,2 hours 18 mins,217 km +Moline(Illinois),Peoria,,1 hour 24 mins,149 km +Belleville(Illinois),Peoria,,2 hours 37 mins,267 km +Bloomington(Illinois),Peoria,,39 mins,61.1 km +Champaign(Illinois),Peoria,,1 hour 23 mins,145 km +Chicago(Illinois),Peoria,,2 hours 31 mins,267 km +Rockford(Illinois),Peoria,,2 hours 17 mins,219 km +Fort Wayne,Pellston(Michigan),,5 hours 3 mins,567 km +Fort Wayne,Traverse City(Michigan),,4 hours 47 mins,509 km +Fort Wayne,Alpena(Michigan),,5 hours 34 mins,581 km +Fort Wayne,Iron Mountain(Michigan),,7 hours 41 mins,749 km +Fort Wayne,Kalamazoo(Michigan),,1 hour 58 mins,195 km +Fort Wayne,Saginaw(Michigan),,3 hours 14 mins,330 km +Fort Wayne,Grand Rapids(Michigan),,2 hours 39 mins,280 km +Fort Wayne,Lansing(Michigan),,2 hours 4 mins,211 km +Fort Wayne,Muskegon(Michigan),,3 hours 15 mins,346 km +Fort Wayne,Hancock(Michigan),,9 hours 37 mins,928 km +Fort Wayne,Detroit(Michigan),,2 hours 36 mins,261 km +Fort Wayne,Escanaba(Michigan),,7 hours 33 mins,815 km +Pellston(Michigan),Fort Wayne,,5 hours 1 min,567 km +Traverse City(Michigan),Fort Wayne,,4 hours 49 mins,512 km +Alpena(Michigan),Fort Wayne,,5 hours 30 mins,582 km +Iron Mountain(Michigan),Fort Wayne,,7 hours 44 mins,749 km +Kalamazoo(Michigan),Fort Wayne,,1 hour 56 mins,195 km +Saginaw(Michigan),Fort Wayne,,3 hours 11 mins,331 km +Grand Rapids(Michigan),Fort Wayne,,2 hours 38 mins,282 km +Lansing(Michigan),Fort Wayne,,2 hours 4 mins,213 km +Muskegon(Michigan),Fort Wayne,,3 hours 14 mins,348 km +Hancock(Michigan),Fort Wayne,,9 hours 37 mins,"1,007 km" +Detroit(Michigan),Fort Wayne,,2 hours 36 mins,262 km +Escanaba(Michigan),Fort Wayne,,7 hours 30 mins,814 km +Great Falls,Seattle(Washington),,9 hours 45 mins,"1,030 km" +Great Falls,Wenatchee(Washington),,8 hours 15 mins,854 km +Great Falls,Pasco(Washington),,7 hours 37 mins,799 km +Great Falls,Yakima(Washington),,8 hours 38 mins,908 km +Great Falls,Walla Walla(Washington),,8 hours 18 mins,828 km +Great Falls,Everett(Washington),,10 hours 6 mins,"1,065 km" +Great Falls,Spokane(Washington),,5 hours 40 mins,583 km +Seattle(Washington),Great Falls,,9 hours 45 mins,"1,030 km" +Wenatchee(Washington),Great Falls,,8 hours 15 mins,854 km +Pasco(Washington),Great Falls,,7 hours 38 mins,799 km +Yakima(Washington),Great Falls,,8 hours 36 mins,906 km +Walla Walla(Washington),Great Falls,,8 hours 19 mins,827 km +Everett(Washington),Great Falls,,10 hours 5 mins,"1,065 km" +Spokane(Washington),Great Falls,,5 hours 42 mins,583 km +Fort Smith,Dallas,,4 hours 19 mins,447 km +Dallas,Fort Smith,,4 hours 18 mins,446 km +Chattanooga,Augusta(Georgia),,3 hours 57 mins,423 km +Chattanooga,Decatur(Georgia),,2 hours 3 mins,198 km +Chattanooga,Atlanta(Georgia),,1 hour 48 mins,190 km +Chattanooga,Valdosta(Georgia),,5 hours 5 mins,557 km +Chattanooga,Savannah(Georgia),,5 hours 23 mins,589 km +Augusta(Georgia),Chattanooga,,3 hours 58 mins,424 km +Decatur(Georgia),Chattanooga,,2 hours 3 mins,197 km +Atlanta(Georgia),Chattanooga,,1 hour 47 mins,190 km +Valdosta(Georgia),Chattanooga,,5 hours 2 mins,556 km +Savannah(Georgia),Chattanooga,,5 hours 23 mins,588 km +Escanaba,Bemidji(Minnesota),,7 hours 40 mins,688 km +Escanaba,Minneapolis(Minnesota),,5 hours 51 mins,590 km +Escanaba,Duluth(Minnesota),,5 hours 5 mins,451 km +Escanaba,Brainerd(Minnesota),,6 hours 58 mins,626 km +Escanaba,Gustavus(Minnesota),,6 hours 48 mins,691 km +Escanaba,St. Cloud(Minnesota),,6 hours 48 mins,692 km +Escanaba,Hibbing(Minnesota),,6 hours 22 mins,571 km +Escanaba,International Falls(Minnesota),,7 hours 46 mins,712 km +Bemidji(Minnesota),Escanaba,,7 hours 40 mins,688 km +Minneapolis(Minnesota),Escanaba,,5 hours 51 mins,589 km +Duluth(Minnesota),Escanaba,,5 hours 8 mins,451 km +Brainerd(Minnesota),Escanaba,,7 hours 0 mins,626 km +Gustavus(Minnesota),Escanaba,,6 hours 49 mins,691 km +St. Cloud(Minnesota),Escanaba,,6 hours 50 mins,694 km +Hibbing(Minnesota),Escanaba,,6 hours 24 mins,571 km +International Falls(Minnesota),Escanaba,,7 hours 48 mins,713 km +St. Louis,San Diego(California),,1 day 2 hours,"2,916 km" +St. Louis,Redding(California),,1 day 6 hours,"3,269 km" +St. Louis,Sacramento(California),,1 day 5 hours,"3,166 km" +St. Louis,Fresno(California),,1 day 4 hours,"3,139 km" +St. Louis,San Luis Obispo(California),,1 day 5 hours,"3,182 km" +St. Louis,Oakland(California),,1 day 6 hours,"3,296 km" +St. Louis,Santa Barbara(California),,1 day 4 hours,"3,081 km" +St. Louis,Stockton(California),,1 day 5 hours,"3,243 km" +St. Louis,Santa Rosa(California),,1 day 6 hours,"3,321 km" +St. Louis,Bakersfield(California),,1 day 3 hours,"2,963 km" +St. Louis,Santa Ana(California),,1 day 2 hours,"2,938 km" +St. Louis,Santa Maria(California),,1 day 5 hours,"3,138 km" +St. Louis,San Jose(California),,1 day 6 hours,"3,351 km" +St. Louis,Burbank(California),,1 day 2 hours,"2,948 km" +St. Louis,Arcata(California),,1 day 8 hours,"3,493 km" +St. Louis,Butte(California),,1 day 5 hours,"3,205 km" +St. Louis,Palm Springs(California),,1 day 1 hour,"2,774 km" +St. Louis,Los Angeles(California),,1 day 2 hours,"2,942 km" +St. Louis,Long Beach(California),,1 day 3 hours,"2,961 km" +St. Louis,San Francisco(California),,1 day 6 hours,"3,306 km" +St. Louis,Monterey(California),,1 day 6 hours,"3,317 km" +San Diego(California),St. Louis,,1 day 2 hours,"2,911 km" +Redding(California),St. Louis,,1 day 6 hours,"3,274 km" +Sacramento(California),St. Louis,,1 day 4 hours,"3,172 km" +Fresno(California),St. Louis,,1 day 4 hours,"3,138 km" +San Luis Obispo(California),St. Louis,,1 day 5 hours,"3,184 km" +Oakland(California),St. Louis,,1 day 6 hours,"3,301 km" +Santa Barbara(California),St. Louis,,1 day 4 hours,"3,080 km" +Stockton(California),St. Louis,,1 day 5 hours,"3,248 km" +Santa Rosa(California),St. Louis,,1 day 6 hours,"3,327 km" +Bakersfield(California),St. Louis,,1 day 3 hours,"2,963 km" +Santa Ana(California),St. Louis,,1 day 2 hours,"2,934 km" +Santa Maria(California),St. Louis,,1 day 5 hours,"3,139 km" +San Jose(California),St. Louis,,1 day 6 hours,"3,362 km" +Burbank(California),St. Louis,,1 day 2 hours,"2,941 km" +Arcata(California),St. Louis,,1 day 8 hours,"3,497 km" +Butte(California),St. Louis,,1 day 5 hours,"3,196 km" +Palm Springs(California),St. Louis,,1 day 1 hour,"2,773 km" +Los Angeles(California),St. Louis,,1 day 2 hours,"2,937 km" +Long Beach(California),St. Louis,,1 day 3 hours,"2,964 km" +San Francisco(California),St. Louis,,1 day 6 hours,"3,311 km" +Monterey(California),St. Louis,,1 day 6 hours,"3,318 km" +Salt Lake City,Green Bay(Wisconsin),,21 hours 47 mins,"2,413 km" +Salt Lake City,Rhinelander(Wisconsin),,21 hours 31 mins,"2,365 km" +Salt Lake City,Marquette(Wisconsin),,20 hours 34 mins,"2,275 km" +Salt Lake City,Madison(Wisconsin),,19 hours 45 mins,"2,186 km" +Salt Lake City,La Crosse(Wisconsin),,18 hours 39 mins,"2,084 km" +Salt Lake City,Devils Lake(Wisconsin),,19 hours 56 mins,"2,201 km" +Salt Lake City,Appleton(Wisconsin),,21 hours 20 mins,"2,362 km" +Salt Lake City,Mosinee(Wisconsin),,20 hours 44 mins,"2,279 km" +Salt Lake City,Milwaukee(Wisconsin),,20 hours 39 mins,"2,318 km" +Salt Lake City,Eau Claire(Wisconsin),,19 hours 21 mins,"2,124 km" +Green Bay(Wisconsin),Salt Lake City,,21 hours 52 mins,"2,410 km" +Rhinelander(Wisconsin),Salt Lake City,,21 hours 41 mins,"2,381 km" +Marquette(Wisconsin),Salt Lake City,,20 hours 45 mins,"2,292 km" +Madison(Wisconsin),Salt Lake City,,19 hours 46 mins,"2,183 km" +La Crosse(Wisconsin),Salt Lake City,,18 hours 48 mins,"2,100 km" +Devils Lake(Wisconsin),Salt Lake City,,20 hours 1 min,"2,197 km" +Appleton(Wisconsin),Salt Lake City,,21 hours 24 mins,"2,358 km" +Mosinee(Wisconsin),Salt Lake City,,20 hours 55 mins,"2,295 km" +Milwaukee(Wisconsin),Salt Lake City,,20 hours 41 mins,"2,313 km" +Eau Claire(Wisconsin),Salt Lake City,,19 hours 32 mins,"2,141 km" +Denver,Oakland,,18 hours 23 mins,"2,004 km" +Oakland,Denver,,18 hours 19 mins,"2,006 km" +El Paso,Phoenix,,6 hours 15 mins,692 km +Phoenix,El Paso,,6 hours 17 mins,694 km +Milwaukee,Pellston(Michigan),,6 hours 14 mins,625 km +Milwaukee,Traverse City(Michigan),,6 hours 18 mins,674 km +Milwaukee,Alpena(Michigan),,7 hours 37 mins,749 km +Milwaukee,Iron Mountain(Michigan),,3 hours 24 mins,346 km +Milwaukee,Kalamazoo(Michigan),,3 hours 46 mins,396 km +Milwaukee,Saginaw(Michigan),,5 hours 57 mins,631 km +Milwaukee,Grand Rapids(Michigan),,4 hours 12 mins,445 km +Milwaukee,Lansing(Michigan),,4 hours 47 mins,511 km +Milwaukee,Muskegon(Michigan),,4 hours 28 mins,460 km +Milwaukee,Hancock(Michigan),,5 hours 20 mins,525 km +Milwaukee,Detroit(Michigan),,5 hours 40 mins,614 km +Milwaukee,Escanaba(Michigan),,3 hours 35 mins,365 km +Pellston(Michigan),Milwaukee,,6 hours 17 mins,626 km +Traverse City(Michigan),Milwaukee,,6 hours 18 mins,661 km +Alpena(Michigan),Milwaukee,,7 hours 39 mins,750 km +Iron Mountain(Michigan),Milwaukee,,3 hours 24 mins,346 km +Kalamazoo(Michigan),Milwaukee,,3 hours 45 mins,382 km +Saginaw(Michigan),Milwaukee,,5 hours 52 mins,614 km +Grand Rapids(Michigan),Milwaukee,,4 hours 8 mins,433 km +Lansing(Michigan),Milwaukee,,4 hours 45 mins,497 km +Muskegon(Michigan),Milwaukee,,4 hours 25 mins,444 km +Hancock(Michigan),Milwaukee,,5 hours 21 mins,526 km +Detroit(Michigan),Milwaukee,,5 hours 41 mins,600 km +Escanaba(Michigan),Milwaukee,,3 hours 37 mins,365 km +Greensboro,Buffalo(New York),,9 hours 40 mins,"1,023 km" +Greensboro,Manhattan(New York),,8 hours 26 mins,868 km +Greensboro,Niagara Falls(New York),,10 hours 1 min,"1,054 km" +Greensboro,Islip(New York),,9 hours 6 mins,939 km +Greensboro,New York(New York),,8 hours 16 mins,862 km +Greensboro,Watertown(New York),,10 hours 57 mins,"1,144 km" +Greensboro,Newburgh(New York),,9 hours 6 mins,954 km +Greensboro,Syracuse(New York),,9 hours 54 mins,"1,031 km" +Greensboro,Plattsburgh(New York),,12 hours 32 mins,"1,342 km" +Greensboro,Ogdensburg(New York),,11 hours 55 mins,"1,237 km" +Greensboro,Ithaca(New York),,9 hours 34 mins,967 km +Greensboro,Elmira(New York),,8 hours 56 mins,895 km +Greensboro,White Plains(New York),,8 hours 43 mins,912 km +Greensboro,Albany(New York),,10 hours 13 mins,"1,085 km" +Greensboro,Binghamton(New York),,8 hours 54 mins,919 km +Greensboro,Rochester(New York),,10 hours 12 mins,"1,057 km" +Buffalo(New York),Greensboro,,9 hours 42 mins,"1,027 km" +Manhattan(New York),Greensboro,,8 hours 27 mins,876 km +Niagara Falls(New York),Greensboro,,10 hours 4 mins,"1,057 km" +Islip(New York),Greensboro,,9 hours 9 mins,945 km +New York(New York),Greensboro,,8 hours 19 mins,870 km +Watertown(New York),Greensboro,,10 hours 59 mins,"1,145 km" +Newburgh(New York),Greensboro,,9 hours 11 mins,964 km +Syracuse(New York),Greensboro,,9 hours 56 mins,"1,032 km" +Plattsburgh(New York),Greensboro,,12 hours 36 mins,"1,353 km" +Ogdensburg(New York),Greensboro,,11 hours 58 mins,"1,238 km" +Ithaca(New York),Greensboro,,9 hours 36 mins,967 km +Elmira(New York),Greensboro,,9 hours 0 mins,897 km +White Plains(New York),Greensboro,,8 hours 45 mins,920 km +Albany(New York),Greensboro,,10 hours 18 mins,"1,094 km" +Binghamton(New York),Greensboro,,8 hours 55 mins,919 km +Rochester(New York),Greensboro,,10 hours 15 mins,"1,058 km" +Sun Valley,Salt Lake City(Utah),,4 hours 39 mins,474 km +Sun Valley,Moab(Utah),,8 hours 13 mins,847 km +Sun Valley,Ogden(Utah),,4 hours 9 mins,418 km +Sun Valley,Vernal(Utah),,7 hours 28 mins,748 km +Sun Valley,Provo(Utah),,5 hours 16 mins,543 km +Sun Valley,Cedar City(Utah),,8 hours 3 mins,876 km +Salt Lake City(Utah),Sun Valley,,4 hours 36 mins,473 km +Moab(Utah),Sun Valley,,8 hours 11 mins,846 km +Ogden(Utah),Sun Valley,,4 hours 8 mins,417 km +Vernal(Utah),Sun Valley,,7 hours 30 mins,747 km +Provo(Utah),Sun Valley,,5 hours 14 mins,542 km +Cedar City(Utah),Sun Valley,,8 hours 1 min,874 km +El Paso,Los Angeles,,11 hours 49 mins,"1,294 km" +Los Angeles,El Paso,,11 hours 43 mins,"1,289 km" +Newark,Savannah,,11 hours 52 mins,"1,284 km" +Savannah,Newark,,11 hours 47 mins,"1,275 km" +Albany,Newark,,, +Newark,Albany,,, +Portland,Hilo(Hawaii),,, +Portland,Kahului(Hawaii),,, +Portland,Kona(Hawaii),,, +Portland,Lihue(Hawaii),,, +Portland,Honolulu(Hawaii),,, +Hilo(Hawaii),Portland,,, +Kahului(Hawaii),Portland,,, +Kona(Hawaii),Portland,,, +Lihue(Hawaii),Portland,,, +Honolulu(Hawaii),Portland,,, +Washington,Syracuse,,5 hours 58 mins,597 km +Syracuse,Washington,,5 hours 59 mins,600 km +Chicago,Cincinnati,,4 hours 34 mins,477 km +Cincinnati,Chicago,,4 hours 34 mins,475 km +Punta Gorda,Plattsburgh,,22 hours 22 mins,"2,451 km" +Plattsburgh,Punta Gorda,,22 hours 26 mins,"2,461 km" +Atlanta,Knoxville,,3 hours 8 mins,344 km +Knoxville,Atlanta,,3 hours 9 mins,344 km +Fort Myers,Atlantic City,,17 hours 52 mins,"1,947 km" +Atlantic City,Fort Myers,,17 hours 56 mins,"1,953 km" +Atlanta,Chattanooga,,1 hour 47 mins,190 km +Chattanooga,Atlanta,,1 hour 48 mins,190 km +Islip,State College(Pennsylvania),,4 hours 46 mins,463 km +Islip,Johnstown(Pennsylvania),,5 hours 59 mins,589 km +Islip,Harrisburg(Pennsylvania),,3 hours 53 mins,365 km +Islip,Erie(Pennsylvania),,7 hours 32 mins,777 km +Islip,Pittsburgh(Pennsylvania),,6 hours 53 mins,700 km +Islip,Latrobe(Pennsylvania),,6 hours 25 mins,635 km +Islip,Philadelphia(Pennsylvania),,2 hours 30 mins,226 km +Islip,Lewisburg(Pennsylvania),,3 hours 50 mins,361 km +Islip,Scranton(Pennsylvania),,3 hours 1 min,276 km +State College(Pennsylvania),Islip,,4 hours 44 mins,464 km +Johnstown(Pennsylvania),Islip,,5 hours 57 mins,590 km +Harrisburg(Pennsylvania),Islip,,3 hours 54 mins,368 km +Erie(Pennsylvania),Islip,,7 hours 33 mins,779 km +Pittsburgh(Pennsylvania),Islip,,6 hours 52 mins,701 km +Latrobe(Pennsylvania),Islip,,6 hours 25 mins,633 km +Philadelphia(Pennsylvania),Islip,,2 hours 31 mins,228 km +Lewisburg(Pennsylvania),Islip,,3 hours 49 mins,361 km +Scranton(Pennsylvania),Islip,,3 hours 1 min,278 km +Bloomington,Augusta(Georgia),,9 hours 52 mins,"1,062 km" +Bloomington,Decatur(Georgia),,7 hours 58 mins,836 km +Bloomington,Atlanta(Georgia),,7 hours 43 mins,828 km +Bloomington,Valdosta(Georgia),,11 hours 0 mins,"1,196 km" +Bloomington,Savannah(Georgia),,11 hours 18 mins,"1,227 km" +Augusta(Georgia),Bloomington,,9 hours 52 mins,"1,064 km" +Decatur(Georgia),Bloomington,,7 hours 58 mins,838 km +Atlanta(Georgia),Bloomington,,7 hours 42 mins,830 km +Valdosta(Georgia),Bloomington,,10 hours 57 mins,"1,197 km" +Savannah(Georgia),Bloomington,,11 hours 18 mins,"1,229 km" +Milwaukee,Greensboro(North Carolina),,12 hours 40 mins,"1,333 km" +Milwaukee,Wilmington(North Carolina),,15 hours 33 mins,"1,660 km" +Milwaukee,New Bern(North Carolina),,15 hours 33 mins,"1,639 km" +Milwaukee,Charlotte(North Carolina),,12 hours 58 mins,"1,369 km" +Milwaukee,Raleigh(North Carolina),,13 hours 50 mins,"1,453 km" +Milwaukee,Asheville(North Carolina),,11 hours 15 mins,"1,208 km" +Milwaukee,Fayetteville(North Carolina),,14 hours 10 mins,"1,478 km" +Greensboro(North Carolina),Milwaukee,,12 hours 41 mins,"1,332 km" +Wilmington(North Carolina),Milwaukee,,15 hours 34 mins,"1,660 km" +New Bern(North Carolina),Milwaukee,,15 hours 34 mins,"1,637 km" +Charlotte(North Carolina),Milwaukee,,13 hours 1 min,"1,370 km" +Raleigh(North Carolina),Milwaukee,,13 hours 49 mins,"1,452 km" +Asheville(North Carolina),Milwaukee,,11 hours 16 mins,"1,207 km" +Fayetteville(North Carolina),Milwaukee,,14 hours 12 mins,"1,478 km" +Fort Lauderdale,Charlotte Amalie,,, +Charlotte Amalie,Fort Lauderdale,,, +Boise,Moline(Illinois),,21 hours 50 mins,"2,467 km" +Boise,Belleville(Illinois),,23 hours 32 mins,"2,632 km" +Boise,Bloomington(Illinois),,23 hours 46 mins,"2,676 km" +Boise,Champaign(Illinois),,1 day 0 hours,"2,726 km" +Boise,Chicago(Illinois),,1 day 0 hours,"2,726 km" +Boise,Rockford(Illinois),,23 hours 36 mins,"2,655 km" +Boise,Peoria(Illinois),,23 hours 9 mins,"2,615 km" +Moline(Illinois),Boise,,21 hours 53 mins,"2,466 km" +Belleville(Illinois),Boise,,23 hours 36 mins,"2,631 km" +Bloomington(Illinois),Boise,,23 hours 49 mins,"2,674 km" +Champaign(Illinois),Boise,,1 day 0 hours,"2,727 km" +Chicago(Illinois),Boise,,1 day 0 hours,"2,724 km" +Rockford(Illinois),Boise,,23 hours 36 mins,"2,650 km" +Peoria(Illinois),Boise,,23 hours 13 mins,"2,614 km" +Indianapolis,Alamosa(Colorado),,17 hours 30 mins,"1,886 km" +Indianapolis,Grand Junction(Colorado),,19 hours 23 mins,"2,132 km" +Indianapolis,Durango(Colorado),,20 hours 22 mins,"2,126 km" +Indianapolis,Colorado Springs(Colorado),,15 hours 40 mins,"1,718 km" +Indianapolis,Gunnison(Colorado),,18 hours 51 mins,"1,993 km" +Indianapolis,Denver(Colorado),,15 hours 44 mins,"1,744 km" +Alamosa(Colorado),Indianapolis,,17 hours 24 mins,"1,886 km" +Grand Junction(Colorado),Indianapolis,,19 hours 16 mins,"2,132 km" +Durango(Colorado),Indianapolis,,20 hours 15 mins,"2,126 km" +Colorado Springs(Colorado),Indianapolis,,15 hours 35 mins,"1,718 km" +Gunnison(Colorado),Indianapolis,,18 hours 42 mins,"1,984 km" +Denver(Colorado),Indianapolis,,15 hours 40 mins,"1,747 km" +Salt Lake City,Bozeman,,6 hours 17 mins,658 km +Bozeman,Salt Lake City,,6 hours 20 mins,660 km +Washington,Myrtle Beach,,6 hours 47 mins,693 km +Myrtle Beach,Washington,,6 hours 45 mins,693 km +Oakland,North Bend(Oregon),,8 hours 27 mins,843 km +Oakland,Portland(Oregon),,9 hours 39 mins,"1,012 km" +Oakland,Medford(Oregon),,5 hours 35 mins,575 km +Oakland,Bend(Oregon),,7 hours 42 mins,782 km +Oakland,Eugene(Oregon),,8 hours 3 mins,840 km +North Bend(Oregon),Oakland,,8 hours 27 mins,843 km +Portland(Oregon),Oakland,,9 hours 42 mins,"1,012 km" +Medford(Oregon),Oakland,,5 hours 36 mins,574 km +Bend(Oregon),Oakland,,7 hours 45 mins,781 km +Eugene(Oregon),Oakland,,8 hours 4 mins,843 km +Austin,Pellston(Michigan),,22 hours 7 mins,"2,424 km" +Austin,Traverse City(Michigan),,21 hours 1 min,"2,327 km" +Austin,Alpena(Michigan),,22 hours 40 mins,"2,482 km" +Austin,Iron Mountain(Michigan),,21 hours 10 mins,"2,265 km" +Austin,Kalamazoo(Michigan),,18 hours 30 mins,"2,050 km" +Austin,Saginaw(Michigan),,20 hours 41 mins,"2,284 km" +Austin,Grand Rapids(Michigan),,18 hours 55 mins,"2,099 km" +Austin,Lansing(Michigan),,19 hours 31 mins,"2,165 km" +Austin,Muskegon(Michigan),,19 hours 11 mins,"2,113 km" +Austin,Hancock(Michigan),,22 hours 31 mins,"2,458 km" +Austin,Detroit(Michigan),,20 hours 9 mins,"2,221 km" +Austin,Escanaba(Michigan),,21 hours 21 mins,"2,283 km" +Pellston(Michigan),Austin,,22 hours 13 mins,"2,410 km" +Traverse City(Michigan),Austin,,21 hours 8 mins,"2,315 km" +Alpena(Michigan),Austin,,22 hours 42 mins,"2,467 km" +Iron Mountain(Michigan),Austin,,21 hours 10 mins,"2,263 km" +Kalamazoo(Michigan),Austin,,18 hours 35 mins,"2,036 km" +Saginaw(Michigan),Austin,,20 hours 42 mins,"2,268 km" +Grand Rapids(Michigan),Austin,,18 hours 58 mins,"2,088 km" +Lansing(Michigan),Austin,,19 hours 35 mins,"2,151 km" +Muskegon(Michigan),Austin,,19 hours 15 mins,"2,099 km" +Hancock(Michigan),Austin,,22 hours 32 mins,"2,462 km" +Detroit(Michigan),Austin,,20 hours 16 mins,"2,208 km" +Escanaba(Michigan),Austin,,21 hours 22 mins,"2,282 km" +Minneapolis,Nashville(Tennessee),,12 hours 45 mins,"1,420 km" +Minneapolis,Bristol(Tennessee),,15 hours 29 mins,"1,619 km" +Minneapolis,Knoxville(Tennessee),,13 hours 55 mins,"1,527 km" +Minneapolis,Chattanooga(Tennessee),,14 hours 38 mins,"1,628 km" +Minneapolis,Memphis(Tennessee),,12 hours 18 mins,"1,333 km" +Nashville(Tennessee),Minneapolis,,12 hours 50 mins,"1,426 km" +Bristol(Tennessee),Minneapolis,,15 hours 29 mins,"1,621 km" +Knoxville(Tennessee),Minneapolis,,13 hours 58 mins,"1,529 km" +Chattanooga(Tennessee),Minneapolis,,14 hours 45 mins,"1,636 km" +Memphis(Tennessee),Minneapolis,,12 hours 18 mins,"1,333 km" +Chicago,Sacramento,,1 day 5 hours,"3,284 km" +Sacramento,Chicago,,1 day 6 hours,"3,292 km" +Miami,Abilene(Texas),,21 hours 35 mins,"2,405 km" +Miami,Amarillo(Texas),,1 day 0 hours,"2,703 km" +Miami,Harlingen(Texas),,21 hours 47 mins,"2,441 km" +Miami,Lubbock(Texas),,23 hours 58 mins,"2,670 km" +Miami,College Station(Texas),,18 hours 18 mins,"2,058 km" +Miami,Corpus Christi(Texas),,20 hours 1 min,"2,246 km" +Miami,Wichita Falls(Texas),,21 hours 1 min,"2,343 km" +Miami,Waco(Texas),,19 hours 37 mins,"2,168 km" +Miami,San Angelo(Texas),,22 hours 35 mins,"2,497 km" +Miami,Houston(Texas),,16 hours 53 mins,"1,913 km" +Miami,San Antonio(Texas),,19 hours 45 mins,"2,227 km" +Miami,Del Rio(Texas),,22 hours 9 mins,"2,474 km" +Miami,Mission(Texas),,22 hours 13 mins,"2,480 km" +Miami,Beaumont(Texas),,15 hours 40 mins,"1,780 km" +Miami,Longview(Texas),,17 hours 17 mins,"1,916 km" +Miami,Midland(Texas),,23 hours 43 mins,"2,646 km" +Miami,El Paso(Texas),,1 day 3 hours,"3,111 km" +Miami,Brownsville(Texas),,22 hours 8 mins,"2,480 km" +Miami,Austin(Texas),,19 hours 21 mins,"2,176 km" +Miami,Dallas(Texas),,19 hours 0 mins,"2,117 km" +Miami,Killeen(Texas),,19 hours 56 mins,"2,231 km" +Miami,Laredo(Texas),,21 hours 54 mins,"2,419 km" +Miami,Texarkana(Texas),,17 hours 19 mins,"1,927 km" +Abilene(Texas),Miami,,21 hours 37 mins,"2,398 km" +Amarillo(Texas),Miami,,1 day 0 hours,"2,690 km" +Harlingen(Texas),Miami,,21 hours 46 mins,"2,438 km" +Lubbock(Texas),Miami,,23 hours 56 mins,"2,664 km" +College Station(Texas),Miami,,18 hours 19 mins,"2,059 km" +Corpus Christi(Texas),Miami,,20 hours 8 mins,"2,249 km" +Wichita Falls(Texas),Miami,,21 hours 6 mins,"2,328 km" +Waco(Texas),Miami,,19 hours 40 mins,"2,166 km" +San Angelo(Texas),Miami,,22 hours 38 mins,"2,494 km" +Houston(Texas),Miami,,16 hours 56 mins,"1,911 km" +San Antonio(Texas),Miami,,19 hours 49 mins,"2,224 km" +Del Rio(Texas),Miami,,22 hours 15 mins,"2,472 km" +Mission(Texas),Miami,,22 hours 15 mins,"2,479 km" +Beaumont(Texas),Miami,,15 hours 44 mins,"1,777 km" +Longview(Texas),Miami,,17 hours 19 mins,"1,909 km" +Midland(Texas),Miami,,23 hours 43 mins,"2,638 km" +El Paso(Texas),Miami,,1 day 4 hours,"3,109 km" +Brownsville(Texas),Miami,,22 hours 10 mins,"2,478 km" +Austin(Texas),Miami,,19 hours 23 mins,"2,174 km" +Dallas(Texas),Miami,,19 hours 2 mins,"2,107 km" +Killeen(Texas),Miami,,19 hours 58 mins,"2,223 km" +Laredo(Texas),Miami,,21 hours 54 mins,"2,416 km" +Texarkana(Texas),Miami,,17 hours 24 mins,"1,926 km" +Des Moines,Dallas,,10 hours 38 mins,"1,121 km" +Dallas,Des Moines,,10 hours 37 mins,"1,123 km" +Dallas,Kansas City(Missouri),,7 hours 56 mins,818 km +Dallas,Cape Girardeau(Missouri),,8 hours 52 mins,977 km +Dallas,Branson(Missouri),,6 hours 47 mins,687 km +Dallas,Fort Leonard Wood(Missouri),,8 hours 0 mins,816 km +Dallas,St. Louis(Missouri),,9 hours 46 mins,"1,016 km" +Kansas City(Missouri),Dallas,,7 hours 55 mins,814 km +Kansas City(Missouri),Cape Girardeau(Missouri),,5 hours 12 mins,563 km +Kansas City(Missouri),Branson(Missouri),,3 hours 16 mins,337 km +Kansas City(Missouri),Fort Leonard Wood(Missouri),,3 hours 38 mins,334 km +Kansas City(Missouri),St. Louis(Missouri),,3 hours 42 mins,399 km +Cape Girardeau(Missouri),Dallas,,8 hours 56 mins,978 km +Cape Girardeau(Missouri),Kansas City(Missouri),,5 hours 13 mins,562 km +Cape Girardeau(Missouri),Branson(Missouri),,4 hours 36 mins,475 km +Cape Girardeau(Missouri),Fort Leonard Wood(Missouri),,3 hours 55 mins,293 km +Cape Girardeau(Missouri),St. Louis(Missouri),,1 hour 51 mins,186 km +Branson(Missouri),Dallas,,6 hours 54 mins,690 km +Branson(Missouri),Kansas City(Missouri),,3 hours 14 mins,337 km +Branson(Missouri),Cape Girardeau(Missouri),,4 hours 34 mins,475 km +Branson(Missouri),Fort Leonard Wood(Missouri),,2 hours 3 mins,205 km +Branson(Missouri),St. Louis(Missouri),,3 hours 49 mins,405 km +Fort Leonard Wood(Missouri),Dallas,,8 hours 0 mins,815 km +Fort Leonard Wood(Missouri),Kansas City(Missouri),,3 hours 36 mins,334 km +Fort Leonard Wood(Missouri),Cape Girardeau(Missouri),,3 hours 55 mins,293 km +Fort Leonard Wood(Missouri),Branson(Missouri),,2 hours 4 mins,206 km +Fort Leonard Wood(Missouri),St. Louis(Missouri),,2 hours 19 mins,225 km +St. Louis(Missouri),Dallas,,9 hours 44 mins,"1,014 km" +St. Louis(Missouri),Kansas City(Missouri),,3 hours 41 mins,399 km +St. Louis(Missouri),Cape Girardeau(Missouri),,1 hour 51 mins,188 km +St. Louis(Missouri),Branson(Missouri),,3 hours 48 mins,405 km +St. Louis(Missouri),Fort Leonard Wood(Missouri),,2 hours 19 mins,224 km +Harrisburg,Sarasota(Florida),,15 hours 54 mins,"1,717 km" +Harrisburg,Fort Myers(Florida),,16 hours 51 mins,"1,823 km" +Harrisburg,Gainesville(Florida),,13 hours 14 mins,"1,427 km" +Harrisburg,Orlando(Florida),,14 hours 7 mins,"1,544 km" +Harrisburg,Daytona Beach(Florida),,13 hours 29 mins,"1,470 km" +Harrisburg,Jacksonville(Florida),,12 hours 4 mins,"1,317 km" +Harrisburg,Tampa(Florida),,15 hours 7 mins,"1,633 km" +Harrisburg,Panama City(Florida),,15 hours 31 mins,"1,615 km" +Harrisburg,Key West(Florida),,20 hours 3 mins,"2,127 km" +Harrisburg,West Palm Beach(Florida),,16 hours 2 mins,"1,775 km" +Harrisburg,Miami(Florida),,17 hours 2 mins,"1,874 km" +Harrisburg,Tallahassee(Florida),,14 hours 27 mins,"1,576 km" +Harrisburg,Punta Gorda(Florida),,16 hours 26 mins,"1,787 km" +Harrisburg,Fort Lauderdale(Florida),,16 hours 40 mins,"1,843 km" +Harrisburg,Pensacola(Florida),,15 hours 26 mins,"1,681 km" +Sarasota(Florida),Harrisburg,,15 hours 45 mins,"1,717 km" +Fort Myers(Florida),Harrisburg,,16 hours 42 mins,"1,822 km" +Gainesville(Florida),Harrisburg,,13 hours 7 mins,"1,427 km" +Orlando(Florida),Harrisburg,,13 hours 52 mins,"1,540 km" +Daytona Beach(Florida),Harrisburg,,13 hours 18 mins,"1,457 km" +Jacksonville(Florida),Harrisburg,,11 hours 55 mins,"1,315 km" +Tampa(Florida),Harrisburg,,14 hours 57 mins,"1,632 km" +Panama City(Florida),Harrisburg,,15 hours 27 mins,"1,616 km" +Key West(Florida),Harrisburg,,19 hours 52 mins,"2,124 km" +West Palm Beach(Florida),Harrisburg,,15 hours 50 mins,"1,771 km" +Miami(Florida),Harrisburg,,16 hours 49 mins,"1,872 km" +Tallahassee(Florida),Harrisburg,,14 hours 19 mins,"1,580 km" +Punta Gorda(Florida),Harrisburg,,16 hours 17 mins,"1,786 km" +Fort Lauderdale(Florida),Harrisburg,,16 hours 28 mins,"1,839 km" +Pensacola(Florida),Harrisburg,,15 hours 20 mins,"1,680 km" +Washington,Evansville(Indiana),,10 hours 59 mins,"1,168 km" +Washington,South Bend(Indiana),,9 hours 22 mins,978 km +Washington,Fort Wayne(Indiana),,8 hours 42 mins,890 km +Washington,Valparaiso(Indiana),,10 hours 9 mins,"1,056 km" +Washington,Indianapolis(Indiana),,8 hours 59 mins,922 km +Evansville(Indiana),Washington,,11 hours 3 mins,"1,135 km" +South Bend(Indiana),Washington,,9 hours 33 mins,977 km +Fort Wayne(Indiana),Washington,,8 hours 52 mins,893 km +Valparaiso(Indiana),Washington,,10 hours 21 mins,"1,057 km" +Indianapolis(Indiana),Washington,,9 hours 13 mins,920 km +Gulfport,Charlotte,,9 hours 30 mins,"1,037 km" +Charlotte,Gulfport,,9 hours 31 mins,"1,036 km" +Phoenix,Kansas City(Missouri),,18 hours 31 mins,"1,939 km" +Phoenix,Cape Girardeau(Missouri),,22 hours 13 mins,"2,430 km" +Phoenix,Branson(Missouri),,18 hours 45 mins,"2,064 km" +Phoenix,Fort Leonard Wood(Missouri),,19 hours 33 mins,"2,146 km" +Phoenix,St. Louis(Missouri),,21 hours 19 mins,"2,346 km" +Kansas City(Missouri),Phoenix,,18 hours 33 mins,"1,938 km" +Cape Girardeau(Missouri),Phoenix,,22 hours 17 mins,"2,429 km" +Branson(Missouri),Phoenix,,18 hours 48 mins,"2,066 km" +Fort Leonard Wood(Missouri),Phoenix,,19 hours 36 mins,"2,146 km" +St. Louis(Missouri),Phoenix,,21 hours 20 mins,"2,345 km" +San Antonio,Pellston(Michigan),,23 hours 18 mins,"2,550 km" +San Antonio,Traverse City(Michigan),,22 hours 12 mins,"2,453 km" +San Antonio,Alpena(Michigan),,23 hours 51 mins,"2,608 km" +San Antonio,Iron Mountain(Michigan),,22 hours 20 mins,"2,390 km" +San Antonio,Kalamazoo(Michigan),,19 hours 41 mins,"2,176 km" +San Antonio,Saginaw(Michigan),,21 hours 52 mins,"2,410 km" +San Antonio,Grand Rapids(Michigan),,20 hours 6 mins,"2,225 km" +San Antonio,Lansing(Michigan),,20 hours 42 mins,"2,290 km" +San Antonio,Muskegon(Michigan),,20 hours 22 mins,"2,239 km" +San Antonio,Hancock(Michigan),,23 hours 42 mins,"2,584 km" +San Antonio,Detroit(Michigan),,21 hours 19 mins,"2,347 km" +San Antonio,Escanaba(Michigan),,22 hours 32 mins,"2,409 km" +Pellston(Michigan),San Antonio,,23 hours 24 mins,"2,537 km" +Traverse City(Michigan),San Antonio,,22 hours 19 mins,"2,442 km" +Alpena(Michigan),San Antonio,,23 hours 53 mins,"2,594 km" +Iron Mountain(Michigan),San Antonio,,22 hours 21 mins,"2,390 km" +Kalamazoo(Michigan),San Antonio,,19 hours 47 mins,"2,163 km" +Saginaw(Michigan),San Antonio,,21 hours 54 mins,"2,395 km" +Grand Rapids(Michigan),San Antonio,,20 hours 10 mins,"2,214 km" +Lansing(Michigan),San Antonio,,20 hours 47 mins,"2,277 km" +Muskegon(Michigan),San Antonio,,20 hours 27 mins,"2,225 km" +Hancock(Michigan),San Antonio,,23 hours 44 mins,"2,589 km" +Detroit(Michigan),San Antonio,,21 hours 28 mins,"2,335 km" +Escanaba(Michigan),San Antonio,,22 hours 34 mins,"2,409 km" +Tucson,Abilene(Texas),,11 hours 10 mins,"1,244 km" +Tucson,Amarillo(Texas),,10 hours 30 mins,"1,117 km" +Tucson,Harlingen(Texas),,16 hours 3 mins,"1,810 km" +Tucson,Lubbock(Texas),,9 hours 53 mins,"1,019 km" +Tucson,College Station(Texas),,14 hours 48 mins,"1,603 km" +Tucson,Corpus Christi(Texas),,14 hours 25 mins,"1,635 km" +Tucson,Wichita Falls(Texas),,12 hours 56 mins,"1,353 km" +Tucson,Waco(Texas),,13 hours 49 mins,"1,505 km" +Tucson,San Angelo(Texas),,10 hours 34 mins,"1,166 km" +Tucson,Houston(Texas),,15 hours 16 mins,"1,717 km" +Tucson,San Antonio(Texas),,12 hours 27 mins,"1,402 km" +Tucson,Del Rio(Texas),,11 hours 1 min,"1,198 km" +Tucson,Mission(Texas),,16 hours 3 mins,"1,798 km" +Tucson,Beaumont(Texas),,16 hours 31 mins,"1,851 km" +Tucson,Longview(Texas),,15 hours 31 mins,"1,743 km" +Tucson,Midland(Texas),,9 hours 5 mins,"1,007 km" +Tucson,El Paso(Texas),,4 hours 42 mins,516 km +Tucson,Brownsville(Texas),,16 hours 25 mins,"1,850 km" +Tucson,Austin(Texas),,13 hours 17 mins,"1,442 km" +Tucson,Dallas(Texas),,13 hours 44 mins,"1,537 km" +Tucson,Killeen(Texas),,13 hours 6 mins,"1,436 km" +Tucson,Laredo(Texas),,13 hours 57 mins,"1,488 km" +Tucson,Texarkana(Texas),,16 hours 20 mins,"1,823 km" +Abilene(Texas),Tucson,,11 hours 9 mins,"1,243 km" +Amarillo(Texas),Tucson,,10 hours 28 mins,"1,126 km" +Harlingen(Texas),Tucson,,15 hours 58 mins,"1,809 km" +Lubbock(Texas),Tucson,,9 hours 47 mins,"1,028 km" +College Station(Texas),Tucson,,14 hours 47 mins,"1,608 km" +Corpus Christi(Texas),Tucson,,14 hours 22 mins,"1,634 km" +Wichita Falls(Texas),Tucson,,12 hours 54 mins,"1,362 km" +Waco(Texas),Tucson,,13 hours 49 mins,"1,504 km" +San Angelo(Texas),Tucson,,10 hours 32 mins,"1,164 km" +Houston(Texas),Tucson,,15 hours 14 mins,"1,715 km" +San Antonio(Texas),Tucson,,12 hours 25 mins,"1,401 km" +Del Rio(Texas),Tucson,,11 hours 0 mins,"1,198 km" +Mission(Texas),Tucson,,16 hours 0 mins,"1,798 km" +Beaumont(Texas),Tucson,,16 hours 32 mins,"1,850 km" +Longview(Texas),Tucson,,15 hours 31 mins,"1,741 km" +Midland(Texas),Tucson,,9 hours 3 mins,"1,005 km" +El Paso(Texas),Tucson,,4 hours 42 mins,515 km +Brownsville(Texas),Tucson,,16 hours 22 mins,"1,849 km" +Austin(Texas),Tucson,,13 hours 15 mins,"1,442 km" +Dallas(Texas),Tucson,,13 hours 43 mins,"1,536 km" +Killeen(Texas),Tucson,,13 hours 4 mins,"1,434 km" +Laredo(Texas),Tucson,,13 hours 56 mins,"1,487 km" +Texarkana(Texas),Tucson,,16 hours 21 mins,"1,823 km" +Billings,Abilene(Texas),,18 hours 11 mins,"2,010 km" +Billings,Amarillo(Texas),,14 hours 1 min,"1,549 km" +Billings,Harlingen(Texas),,1 day 1 hour,"2,774 km" +Billings,Lubbock(Texas),,15 hours 47 mins,"1,746 km" +Billings,College Station(Texas),,21 hours 40 mins,"2,373 km" +Billings,Corpus Christi(Texas),,23 hours 28 mins,"2,599 km" +Billings,Wichita Falls(Texas),,17 hours 26 mins,"1,910 km" +Billings,Waco(Texas),,20 hours 22 mins,"2,238 km" +Billings,San Angelo(Texas),,18 hours 35 mins,"2,041 km" +Billings,Houston(Texas),,22 hours 48 mins,"2,513 km" +Billings,San Antonio(Texas),,21 hours 30 mins,"2,366 km" +Billings,Del Rio(Texas),,21 hours 2 mins,"2,292 km" +Billings,Mission(Texas),,1 day 1 hour,"2,762 km" +Billings,Beaumont(Texas),,23 hours 48 mins,"2,588 km" +Billings,Longview(Texas),,21 hours 20 mins,"2,337 km" +Billings,Midland(Texas),,17 hours 33 mins,"1,936 km" +Billings,El Paso(Texas),,17 hours 12 mins,"1,910 km" +Billings,Brownsville(Texas),,1 day 1 hour,"2,814 km" +Billings,Austin(Texas),,21 hours 38 mins,"2,346 km" +Billings,Dallas(Texas),,19 hours 29 mins,"2,137 km" +Billings,Killeen(Texas),,20 hours 58 mins,"2,283 km" +Billings,Laredo(Texas),,23 hours 38 mins,"2,556 km" +Billings,Texarkana(Texas),,21 hours 34 mins,"2,425 km" +Abilene(Texas),Billings,,18 hours 17 mins,"2,018 km" +Amarillo(Texas),Billings,,14 hours 9 mins,"1,552 km" +Harlingen(Texas),Billings,,1 day 1 hour,"2,783 km" +Lubbock(Texas),Billings,,15 hours 54 mins,"1,769 km" +College Station(Texas),Billings,,21 hours 47 mins,"2,407 km" +Corpus Christi(Texas),Billings,,23 hours 31 mins,"2,607 km" +Wichita Falls(Texas),Billings,,17 hours 34 mins,"1,945 km" +Waco(Texas),Billings,,20 hours 30 mins,"2,269 km" +San Angelo(Texas),Billings,,18 hours 41 mins,"2,083 km" +Houston(Texas),Billings,,22 hours 56 mins,"2,548 km" +San Antonio(Texas),Billings,,21 hours 34 mins,"2,374 km" +Del Rio(Texas),Billings,,21 hours 6 mins,"2,326 km" +Mission(Texas),Billings,,1 day 1 hour,"2,772 km" +Beaumont(Texas),Billings,,23 hours 56 mins,"2,622 km" +Longview(Texas),Billings,,21 hours 26 mins,"2,378 km" +Midland(Texas),Billings,,17 hours 39 mins,"1,959 km" +El Paso(Texas),Billings,,17 hours 14 mins,"1,913 km" +Brownsville(Texas),Billings,,1 day 2 hours,"2,823 km" +Austin(Texas),Billings,,21 hours 43 mins,"2,355 km" +Dallas(Texas),Billings,,19 hours 36 mins,"2,171 km" +Killeen(Texas),Billings,,21 hours 4 mins,"2,292 km" +Laredo(Texas),Billings,,23 hours 44 mins,"2,565 km" +Texarkana(Texas),Billings,,21 hours 43 mins,"2,434 km" +Tampa,Augusta(Georgia),,7 hours 8 mins,729 km +Tampa,Decatur(Georgia),,6 hours 37 mins,742 km +Tampa,Atlanta(Georgia),,6 hours 26 mins,734 km +Tampa,Valdosta(Georgia),,3 hours 19 mins,372 km +Tampa,Savannah(Georgia),,5 hours 6 mins,540 km +Augusta(Georgia),Tampa,,7 hours 7 mins,728 km +Decatur(Georgia),Tampa,,6 hours 39 mins,735 km +Atlanta(Georgia),Tampa,,6 hours 28 mins,734 km +Valdosta(Georgia),Tampa,,3 hours 21 mins,372 km +Savannah(Georgia),Tampa,,5 hours 7 mins,540 km +Milwaukee,Bemidji(Minnesota),,8 hours 24 mins,887 km +Milwaukee,Minneapolis(Minnesota),,4 hours 57 mins,543 km +Milwaukee,Duluth(Minnesota),,5 hours 55 mins,638 km +Milwaukee,Brainerd(Minnesota),,6 hours 53 mins,743 km +Milwaukee,Gustavus(Minnesota),,5 hours 24 mins,589 km +Milwaukee,St. Cloud(Minnesota),,5 hours 53 mins,645 km +Milwaukee,Hibbing(Minnesota),,7 hours 11 mins,758 km +Milwaukee,International Falls(Minnesota),,8 hours 36 mins,899 km +Bemidji(Minnesota),Milwaukee,,8 hours 23 mins,888 km +Minneapolis(Minnesota),Milwaukee,,4 hours 56 mins,542 km +Duluth(Minnesota),Milwaukee,,5 hours 55 mins,639 km +Brainerd(Minnesota),Milwaukee,,6 hours 53 mins,745 km +Gustavus(Minnesota),Milwaukee,,5 hours 23 mins,588 km +St. Cloud(Minnesota),Milwaukee,,5 hours 54 mins,647 km +Hibbing(Minnesota),Milwaukee,,7 hours 12 mins,759 km +International Falls(Minnesota),Milwaukee,,8 hours 36 mins,900 km +Seattle,Sarasota(Florida),,1 day 22 hours,"5,060 km" +Seattle,Fort Myers(Florida),,1 day 22 hours,"5,165 km" +Seattle,Gainesville(Florida),,1 day 19 hours,"4,775 km" +Seattle,Orlando(Florida),,1 day 21 hours,"4,948 km" +Seattle,Daytona Beach(Florida),,1 day 21 hours,"4,947 km" +Seattle,Jacksonville(Florida),,1 day 19 hours,"4,798 km" +Seattle,Tampa(Florida),,1 day 21 hours,"4,975 km" +Seattle,Panama City(Florida),,1 day 18 hours,"4,486 km" +Seattle,Key West(Florida),,2 days 3 hours,"5,561 km" +Seattle,West Palm Beach(Florida),,1 day 23 hours,"5,203 km" +Seattle,Miami(Florida),,2 days 0 hours,"5,308 km" +Seattle,Tallahassee(Florida),,1 day 18 hours,"4,541 km" +Seattle,Punta Gorda(Florida),,1 day 22 hours,"5,130 km" +Seattle,Fort Lauderdale(Florida),,1 day 23 hours,"5,271 km" +Seattle,Pensacola(Florida),,1 day 16 hours,"4,445 km" +Sarasota(Florida),Seattle,,1 day 22 hours,"5,061 km" +Fort Myers(Florida),Seattle,,1 day 22 hours,"5,167 km" +Gainesville(Florida),Seattle,,1 day 19 hours,"4,776 km" +Orlando(Florida),Seattle,,1 day 20 hours,"4,947 km" +Daytona Beach(Florida),Seattle,,1 day 21 hours,"4,939 km" +Jacksonville(Florida),Seattle,,1 day 19 hours,"4,799 km" +Tampa(Florida),Seattle,,1 day 21 hours,"4,976 km" +Panama City(Florida),Seattle,,1 day 18 hours,"4,497 km" +Key West(Florida),Seattle,,2 days 3 hours,"5,562 km" +West Palm Beach(Florida),Seattle,,1 day 23 hours,"5,205 km" +Miami(Florida),Seattle,,2 days 0 hours,"5,311 km" +Tallahassee(Florida),Seattle,,1 day 18 hours,"4,552 km" +Punta Gorda(Florida),Seattle,,1 day 22 hours,"5,131 km" +Fort Lauderdale(Florida),Seattle,,1 day 23 hours,"5,273 km" +Pensacola(Florida),Seattle,,1 day 17 hours,"4,452 km" +Austin,Buffalo(New York),,22 hours 46 mins,"2,516 km" +Austin,Manhattan(New York),,1 day 2 hours,"2,811 km" +Austin,Niagara Falls(New York),,23 hours 7 mins,"2,547 km" +Austin,Islip(New York),,1 day 3 hours,"2,889 km" +Austin,New York(New York),,1 day 2 hours,"2,805 km" +Austin,Watertown(New York),,1 day 2 hours,"2,845 km" +Austin,Newburgh(New York),,1 day 2 hours,"2,873 km" +Austin,Syracuse(New York),,1 day 1 hour,"2,742 km" +Austin,Plattsburgh(New York),,1 day 5 hours,"3,103 km" +Austin,Ogdensburg(New York),,1 day 3 hours,"2,938 km" +Austin,Ithaca(New York),,1 day 1 hour,"2,736 km" +Austin,Elmira(New York),,1 day 0 hours,"2,698 km" +Austin,White Plains(New York),,1 day 2 hours,"2,858 km" +Austin,Albany(New York),,1 day 3 hours,"2,969 km" +Austin,Binghamton(New York),,1 day 1 hour,"2,786 km" +Austin,Rochester(New York),,23 hours 44 mins,"2,621 km" +Buffalo(New York),Austin,,22 hours 53 mins,"2,519 km" +Manhattan(New York),Austin,,1 day 2 hours,"2,812 km" +Niagara Falls(New York),Austin,,23 hours 14 mins,"2,550 km" +Islip(New York),Austin,,1 day 3 hours,"2,889 km" +New York(New York),Austin,,1 day 2 hours,"2,804 km" +Watertown(New York),Austin,,1 day 2 hours,"2,848 km" +Newburgh(New York),Austin,,1 day 2 hours,"2,873 km" +Syracuse(New York),Austin,,1 day 1 hour,"2,745 km" +Plattsburgh(New York),Austin,,1 day 5 hours,"3,108 km" +Ogdensburg(New York),Austin,,1 day 3 hours,"2,940 km" +Ithaca(New York),Austin,,1 day 1 hour,"2,738 km" +Elmira(New York),Austin,,1 day 1 hour,"2,702 km" +White Plains(New York),Austin,,1 day 2 hours,"2,857 km" +Albany(New York),Austin,,1 day 3 hours,"2,970 km" +Binghamton(New York),Austin,,1 day 1 hour,"2,789 km" +Rochester(New York),Austin,,23 hours 51 mins,"2,624 km" +Las Vegas,Denver,,10 hours 55 mins,"1,203 km" +Denver,Las Vegas,,10 hours 57 mins,"1,205 km" +Kansas City,Seattle(Washington),,1 day 3 hours,"2,956 km" +Kansas City,Wenatchee(Washington),,1 day 1 hour,"2,780 km" +Kansas City,Pasco(Washington),,23 hours 55 mins,"2,671 km" +Kansas City,Yakima(Washington),,1 day 1 hour,"2,770 km" +Kansas City,Walla Walla(Washington),,23 hours 29 mins,"2,611 km" +Kansas City,Everett(Washington),,1 day 3 hours,"2,991 km" +Kansas City,Spokane(Washington),,22 hours 39 mins,"2,509 km" +Seattle(Washington),Kansas City,,1 day 3 hours,"2,955 km" +Wenatchee(Washington),Kansas City,,1 day 1 hour,"2,779 km" +Pasco(Washington),Kansas City,,23 hours 51 mins,"2,671 km" +Yakima(Washington),Kansas City,,1 day 1 hour,"2,770 km" +Walla Walla(Washington),Kansas City,,23 hours 25 mins,"2,611 km" +Everett(Washington),Kansas City,,1 day 3 hours,"2,990 km" +Spokane(Washington),Kansas City,,22 hours 35 mins,"2,508 km" +Memphis,Bemidji(Minnesota),,15 hours 47 mins,"1,678 km" +Memphis,Minneapolis(Minnesota),,12 hours 18 mins,"1,333 km" +Memphis,Duluth(Minnesota),,14 hours 0 mins,"1,550 km" +Memphis,Brainerd(Minnesota),,14 hours 15 mins,"1,534 km" +Memphis,Gustavus(Minnesota),,12 hours 3 mins,"1,295 km" +Memphis,St. Cloud(Minnesota),,13 hours 16 mins,"1,436 km" +Memphis,Hibbing(Minnesota),,15 hours 12 mins,"1,588 km" +Memphis,International Falls(Minnesota),,16 hours 38 mins,"1,752 km" +Bemidji(Minnesota),Memphis,,15 hours 45 mins,"1,678 km" +Minneapolis(Minnesota),Memphis,,12 hours 18 mins,"1,333 km" +Duluth(Minnesota),Memphis,,14 hours 1 min,"1,550 km" +Brainerd(Minnesota),Memphis,,14 hours 15 mins,"1,535 km" +Gustavus(Minnesota),Memphis,,12 hours 4 mins,"1,294 km" +St. Cloud(Minnesota),Memphis,,13 hours 16 mins,"1,436 km" +Hibbing(Minnesota),Memphis,,15 hours 10 mins,"1,585 km" +International Falls(Minnesota),Memphis,,16 hours 36 mins,"1,750 km" +Chicago,Roanoke,,10 hours 30 mins,"1,080 km" +Roanoke,Chicago,,10 hours 32 mins,"1,079 km" +Cincinnati,Buffalo(New York),,6 hours 25 mins,702 km +Cincinnati,Manhattan(New York),,10 hours 10 mins,"1,035 km" +Cincinnati,Niagara Falls(New York),,6 hours 46 mins,733 km +Cincinnati,Islip(New York),,10 hours 52 mins,"1,132 km" +Cincinnati,New York(New York),,10 hours 0 mins,"1,029 km" +Cincinnati,Watertown(New York),,9 hours 25 mins,"1,031 km" +Cincinnati,Newburgh(New York),,10 hours 5 mins,"1,088 km" +Cincinnati,Syracuse(New York),,8 hours 29 mins,928 km +Cincinnati,Plattsburgh(New York),,12 hours 17 mins,"1,289 km" +Cincinnati,Ogdensburg(New York),,10 hours 24 mins,"1,124 km" +Cincinnati,Ithaca(New York),,8 hours 36 mins,922 km +Cincinnati,Elmira(New York),,8 hours 5 mins,884 km +Cincinnati,White Plains(New York),,10 hours 16 mins,"1,113 km" +Cincinnati,Albany(New York),,10 hours 28 mins,"1,155 km" +Cincinnati,Binghamton(New York),,8 hours 54 mins,972 km +Cincinnati,Rochester(New York),,7 hours 23 mins,807 km +Buffalo(New York),Cincinnati,,6 hours 27 mins,702 km +Manhattan(New York),Cincinnati,,10 hours 7 mins,"1,034 km" +Niagara Falls(New York),Cincinnati,,6 hours 48 mins,732 km +Islip(New York),Cincinnati,,10 hours 52 mins,"1,131 km" +New York(New York),Cincinnati,,9 hours 56 mins,"1,025 km" +Watertown(New York),Cincinnati,,9 hours 27 mins,"1,030 km" +Newburgh(New York),Cincinnati,,10 hours 6 mins,"1,086 km" +Syracuse(New York),Cincinnati,,8 hours 30 mins,928 km +Plattsburgh(New York),Cincinnati,,12 hours 19 mins,"1,290 km" +Ogdensburg(New York),Cincinnati,,10 hours 26 mins,"1,123 km" +Ithaca(New York),Cincinnati,,8 hours 36 mins,921 km +Elmira(New York),Cincinnati,,8 hours 6 mins,884 km +White Plains(New York),Cincinnati,,10 hours 16 mins,"1,110 km" +Albany(New York),Cincinnati,,10 hours 30 mins,"1,153 km" +Binghamton(New York),Cincinnati,,8 hours 55 mins,972 km +Rochester(New York),Cincinnati,,7 hours 25 mins,807 km +St. Louis,Washington,,12 hours 44 mins,"1,310 km" +Washington,St. Louis,,12 hours 31 mins,"1,311 km" +Panama City,Chicago,,14 hours 25 mins,"1,488 km" +Chicago,Panama City,,14 hours 23 mins,"1,492 km" +Myrtle Beach,Syracuse,,12 hours 16 mins,"1,280 km" +Syracuse,Myrtle Beach,,12 hours 27 mins,"1,283 km" +Philadelphia,Lynchburg(Virginia),,5 hours 25 mins,513 km +Philadelphia,Richmond(Virginia),,4 hours 2 mins,407 km +Philadelphia,Petersburg(Virginia),,4 hours 21 mins,443 km +Philadelphia,Newport News(Virginia),,4 hours 54 mins,507 km +Philadelphia,Charlottesville(Virginia),,4 hours 25 mins,411 km +Philadelphia,Staunton(Virginia),,4 hours 37 mins,476 km +Philadelphia,Jamestown(Virginia),,4 hours 50 mins,489 km +Philadelphia,Norfolk(Virginia),,5 hours 1 min,445 km +Philadelphia,Roanoke(Virginia),,5 hours 48 mins,610 km +Lynchburg(Virginia),Philadelphia,,5 hours 25 mins,515 km +Richmond(Virginia),Philadelphia,,4 hours 1 min,402 km +Petersburg(Virginia),Philadelphia,,4 hours 21 mins,438 km +Newport News(Virginia),Philadelphia,,4 hours 53 mins,501 km +Charlottesville(Virginia),Philadelphia,,4 hours 24 mins,411 km +Staunton(Virginia),Philadelphia,,4 hours 36 mins,477 km +Jamestown(Virginia),Philadelphia,,4 hours 48 mins,483 km +Norfolk(Virginia),Philadelphia,,5 hours 1 min,445 km +Roanoke(Virginia),Philadelphia,,5 hours 49 mins,611 km +Richmond,Nashville(Tennessee),,9 hours 3 mins,989 km +Richmond,Bristol(Tennessee),,4 hours 51 mins,523 km +Richmond,Knoxville(Tennessee),,6 hours 26 mins,702 km +Richmond,Chattanooga(Tennessee),,8 hours 2 mins,879 km +Richmond,Memphis(Tennessee),,12 hours 5 mins,"1,328 km" +Nashville(Tennessee),Richmond,,9 hours 1 min,988 km +Bristol(Tennessee),Richmond,,4 hours 49 mins,522 km +Knoxville(Tennessee),Richmond,,6 hours 23 mins,701 km +Chattanooga(Tennessee),Richmond,,8 hours 1 min,879 km +Memphis(Tennessee),Richmond,,12 hours 4 mins,"1,327 km" +Huntsville,Pellston(Michigan),,12 hours 44 mins,"1,397 km" +Huntsville,Traverse City(Michigan),,12 hours 9 mins,"1,279 km" +Huntsville,Alpena(Michigan),,13 hours 5 mins,"1,389 km" +Huntsville,Iron Mountain(Michigan),,13 hours 35 mins,"1,432 km" +Huntsville,Kalamazoo(Michigan),,9 hours 37 mins,"1,002 km" +Huntsville,Saginaw(Michigan),,10 hours 47 mins,"1,155 km" +Huntsville,Grand Rapids(Michigan),,10 hours 2 mins,"1,051 km" +Huntsville,Lansing(Michigan),,9 hours 45 mins,"1,041 km" +Huntsville,Muskegon(Michigan),,10 hours 19 mins,"1,065 km" +Huntsville,Hancock(Michigan),,15 hours 31 mins,"1,612 km" +Huntsville,Detroit(Michigan),,9 hours 44 mins,"1,035 km" +Huntsville,Escanaba(Michigan),,13 hours 46 mins,"1,451 km" +Pellston(Michigan),Huntsville,,12 hours 42 mins,"1,404 km" +Traverse City(Michigan),Huntsville,,12 hours 10 mins,"1,290 km" +Alpena(Michigan),Huntsville,,13 hours 4 mins,"1,396 km" +Iron Mountain(Michigan),Huntsville,,13 hours 33 mins,"1,440 km" +Kalamazoo(Michigan),Huntsville,,9 hours 37 mins,"1,033 km" +Saginaw(Michigan),Huntsville,,10 hours 46 mins,"1,163 km" +Grand Rapids(Michigan),Huntsville,,10 hours 1 min,"1,063 km" +Lansing(Michigan),Huntsville,,9 hours 44 mins,"1,051 km" +Muskegon(Michigan),Huntsville,,10 hours 18 mins,"1,074 km" +Hancock(Michigan),Huntsville,,15 hours 30 mins,"1,620 km" +Detroit(Michigan),Huntsville,,9 hours 45 mins,"1,046 km" +Escanaba(Michigan),Huntsville,,13 hours 46 mins,"1,459 km" +Salt Lake City,San Diego(California),,10 hours 48 mins,"1,207 km" +Salt Lake City,Redding(California),,10 hours 38 mins,"1,147 km" +Salt Lake City,Sacramento(California),,9 hours 28 mins,"1,045 km" +Salt Lake City,Fresno(California),,11 hours 44 mins,"1,309 km" +Salt Lake City,San Luis Obispo(California),,12 hours 20 mins,"1,352 km" +Salt Lake City,Oakland(California),,10 hours 42 mins,"1,174 km" +Salt Lake City,Santa Barbara(California),,11 hours 19 mins,"1,251 km" +Salt Lake City,Stockton(California),,10 hours 11 mins,"1,121 km" +Salt Lake City,Santa Rosa(California),,11 hours 2 mins,"1,200 km" +Salt Lake City,Bakersfield(California),,10 hours 7 mins,"1,133 km" +Salt Lake City,Santa Ana(California),,9 hours 56 mins,"1,108 km" +Salt Lake City,Santa Maria(California),,12 hours 7 mins,"1,307 km" +Salt Lake City,San Jose(California),,11 hours 20 mins,"1,237 km" +Salt Lake City,Burbank(California),,9 hours 59 mins,"1,118 km" +Salt Lake City,Arcata(California),,13 hours 25 mins,"1,372 km" +Salt Lake City,Butte(California),,10 hours 11 mins,"1,084 km" +Salt Lake City,Palm Springs(California),,10 hours 1 min,"1,123 km" +Salt Lake City,Los Angeles(California),,9 hours 58 mins,"1,112 km" +Salt Lake City,Long Beach(California),,10 hours 8 mins,"1,130 km" +Salt Lake City,San Francisco(California),,10 hours 51 mins,"1,184 km" +Salt Lake City,Monterey(California),,12 hours 22 mins,"1,344 km" +San Diego(California),Salt Lake City,,11 hours 1 min,"1,209 km" +Redding(California),Salt Lake City,,10 hours 36 mins,"1,148 km" +Sacramento(California),Salt Lake City,,9 hours 30 mins,"1,045 km" +Fresno(California),Salt Lake City,,11 hours 56 mins,"1,311 km" +San Luis Obispo(California),Salt Lake City,,12 hours 31 mins,"1,356 km" +Oakland(California),Salt Lake City,,10 hours 41 mins,"1,175 km" +Santa Barbara(California),Salt Lake City,,11 hours 28 mins,"1,253 km" +Stockton(California),Salt Lake City,,10 hours 12 mins,"1,122 km" +Santa Rosa(California),Salt Lake City,,11 hours 2 mins,"1,200 km" +Bakersfield(California),Salt Lake City,,10 hours 21 mins,"1,136 km" +Santa Ana(California),Salt Lake City,,10 hours 4 mins,"1,107 km" +Santa Maria(California),Salt Lake City,,12 hours 20 mins,"1,312 km" +San Jose(California),Salt Lake City,,11 hours 16 mins,"1,236 km" +Burbank(California),Salt Lake City,,10 hours 4 mins,"1,114 km" +Arcata(California),Salt Lake City,,13 hours 21 mins,"1,371 km" +Butte(California),Salt Lake City,,10 hours 12 mins,"1,069 km" +Palm Springs(California),Salt Lake City,,10 hours 9 mins,"1,123 km" +Los Angeles(California),Salt Lake City,,10 hours 3 mins,"1,110 km" +Long Beach(California),Salt Lake City,,10 hours 21 mins,"1,137 km" +San Francisco(California),Salt Lake City,,10 hours 48 mins,"1,184 km" +Monterey(California),Salt Lake City,,12 hours 17 mins,"1,343 km" +Cleveland,Baltimore,,5 hours 53 mins,605 km +Baltimore,Cleveland,,5 hours 51 mins,601 km +Las Vegas,North Bend(Oregon),,14 hours 46 mins,"1,459 km" +Las Vegas,Portland(Oregon),,15 hours 21 mins,"1,562 km" +Las Vegas,Medford(Oregon),,11 hours 54 mins,"1,190 km" +Las Vegas,Bend(Oregon),,12 hours 32 mins,"1,318 km" +Las Vegas,Eugene(Oregon),,13 hours 56 mins,"1,383 km" +North Bend(Oregon),Las Vegas,,14 hours 45 mins,"1,460 km" +Portland(Oregon),Las Vegas,,15 hours 20 mins,"1,561 km" +Medford(Oregon),Las Vegas,,11 hours 54 mins,"1,192 km" +Bend(Oregon),Las Vegas,,12 hours 29 mins,"1,318 km" +Eugene(Oregon),Las Vegas,,13 hours 55 mins,"1,386 km" +Seattle,Salt Lake City(Utah),,12 hours 11 mins,"1,336 km" +Seattle,Moab(Utah),,15 hours 45 mins,"1,708 km" +Seattle,Ogden(Utah),,11 hours 41 mins,"1,280 km" +Seattle,Vernal(Utah),,15 hours 0 mins,"1,610 km" +Seattle,Provo(Utah),,12 hours 48 mins,"1,405 km" +Seattle,Cedar City(Utah),,15 hours 35 mins,"1,737 km" +Salt Lake City(Utah),Seattle,,12 hours 9 mins,"1,334 km" +Moab(Utah),Seattle,,15 hours 44 mins,"1,707 km" +Ogden(Utah),Seattle,,11 hours 41 mins,"1,278 km" +Vernal(Utah),Seattle,,15 hours 3 mins,"1,609 km" +Provo(Utah),Seattle,,12 hours 47 mins,"1,403 km" +Cedar City(Utah),Seattle,,15 hours 34 mins,"1,736 km" +Washington,Savannah,,8 hours 29 mins,925 km +Savannah,Washington,,8 hours 28 mins,924 km +San Diego,North Bend(Oregon),,15 hours 26 mins,"1,573 km" +San Diego,Portland(Oregon),,16 hours 38 mins,"1,741 km" +San Diego,Medford(Oregon),,12 hours 34 mins,"1,304 km" +San Diego,Bend(Oregon),,14 hours 41 mins,"1,511 km" +San Diego,Eugene(Oregon),,15 hours 2 mins,"1,570 km" +North Bend(Oregon),San Diego,,15 hours 22 mins,"1,573 km" +Portland(Oregon),San Diego,,16 hours 36 mins,"1,742 km" +Medford(Oregon),San Diego,,12 hours 31 mins,"1,304 km" +Bend(Oregon),San Diego,,14 hours 39 mins,"1,511 km" +Eugene(Oregon),San Diego,,14 hours 58 mins,"1,572 km" +Huntsville,Indianapolis,,6 hours 8 mins,640 km +Indianapolis,Huntsville,,6 hours 8 mins,648 km +Twin Falls,Salt Lake City(Utah),,3 hours 14 mins,351 km +Twin Falls,Moab(Utah),,6 hours 48 mins,724 km +Twin Falls,Ogden(Utah),,2 hours 44 mins,295 km +Twin Falls,Vernal(Utah),,6 hours 3 mins,625 km +Twin Falls,Provo(Utah),,3 hours 51 mins,420 km +Twin Falls,Cedar City(Utah),,6 hours 38 mins,753 km +Salt Lake City(Utah),Twin Falls,,3 hours 13 mins,351 km +Moab(Utah),Twin Falls,,6 hours 48 mins,724 km +Ogden(Utah),Twin Falls,,2 hours 45 mins,295 km +Vernal(Utah),Twin Falls,,6 hours 7 mins,626 km +Provo(Utah),Twin Falls,,3 hours 51 mins,420 km +Cedar City(Utah),Twin Falls,,6 hours 38 mins,753 km +Columbus,Augusta(Georgia),,9 hours 5 mins,944 km +Columbus,Decatur(Georgia),,8 hours 34 mins,921 km +Columbus,Atlanta(Georgia),,8 hours 19 mins,913 km +Columbus,Valdosta(Georgia),,11 hours 36 mins,"1,280 km" +Columbus,Savannah(Georgia),,10 hours 20 mins,"1,087 km" +Augusta(Georgia),Columbus,,9 hours 4 mins,947 km +Decatur(Georgia),Columbus,,8 hours 36 mins,921 km +Atlanta(Georgia),Columbus,,8 hours 20 mins,913 km +Valdosta(Georgia),Columbus,,11 hours 35 mins,"1,280 km" +Savannah(Georgia),Columbus,,10 hours 18 mins,"1,087 km" +Knoxville,Buffalo(New York),,10 hours 4 mins,"1,105 km" +Knoxville,Manhattan(New York),,10 hours 50 mins,"1,144 km" +Knoxville,Niagara Falls(New York),,10 hours 25 mins,"1,136 km" +Knoxville,Islip(New York),,11 hours 31 mins,"1,222 km" +Knoxville,New York(New York),,10 hours 40 mins,"1,138 km" +Knoxville,Watertown(New York),,12 hours 46 mins,"1,382 km" +Knoxville,Newburgh(New York),,11 hours 9 mins,"1,205 km" +Knoxville,Syracuse(New York),,11 hours 42 mins,"1,270 km" +Knoxville,Plattsburgh(New York),,14 hours 36 mins,"1,594 km" +Knoxville,Ogdensburg(New York),,13 hours 44 mins,"1,475 km" +Knoxville,Ithaca(New York),,11 hours 23 mins,"1,205 km" +Knoxville,Elmira(New York),,10 hours 45 mins,"1,133 km" +Knoxville,White Plains(New York),,11 hours 0 mins,"1,191 km" +Knoxville,Albany(New York),,12 hours 16 mins,"1,336 km" +Knoxville,Binghamton(New York),,10 hours 42 mins,"1,158 km" +Knoxville,Rochester(New York),,11 hours 1 min,"1,210 km" +Buffalo(New York),Knoxville,,10 hours 5 mins,"1,106 km" +Manhattan(New York),Knoxville,,10 hours 51 mins,"1,144 km" +Niagara Falls(New York),Knoxville,,10 hours 27 mins,"1,136 km" +Islip(New York),Knoxville,,11 hours 32 mins,"1,221 km" +New York(New York),Knoxville,,10 hours 40 mins,"1,136 km" +Watertown(New York),Knoxville,,12 hours 47 mins,"1,383 km" +Newburgh(New York),Knoxville,,11 hours 13 mins,"1,205 km" +Syracuse(New York),Knoxville,,11 hours 43 mins,"1,270 km" +Plattsburgh(New York),Knoxville,,14 hours 37 mins,"1,594 km" +Ogdensburg(New York),Knoxville,,13 hours 46 mins,"1,476 km" +Ithaca(New York),Knoxville,,11 hours 24 mins,"1,205 km" +Elmira(New York),Knoxville,,10 hours 47 mins,"1,135 km" +White Plains(New York),Knoxville,,11 hours 2 mins,"1,189 km" +Albany(New York),Knoxville,,12 hours 19 mins,"1,335 km" +Binghamton(New York),Knoxville,,10 hours 43 mins,"1,157 km" +Rochester(New York),Knoxville,,11 hours 3 mins,"1,211 km" +Boston,Pellston(Michigan),,13 hours 51 mins,"1,511 km" +Boston,Traverse City(Michigan),,13 hours 51 mins,"1,470 km" +Boston,Alpena(Michigan),,13 hours 50 mins,"1,459 km" +Boston,Iron Mountain(Michigan),,17 hours 17 mins,"1,841 km" +Boston,Kalamazoo(Michigan),,13 hours 25 mins,"1,445 km" +Boston,Saginaw(Michigan),,11 hours 32 mins,"1,225 km" +Boston,Grand Rapids(Michigan),,12 hours 34 mins,"1,347 km" +Boston,Lansing(Michigan),,11 hours 45 mins,"1,255 km" +Boston,Muskegon(Michigan),,13 hours 7 mins,"1,410 km" +Boston,Hancock(Michigan),,18 hours 28 mins,"1,951 km" +Boston,Detroit(Michigan),,10 hours 51 mins,"1,138 km" +Boston,Escanaba(Michigan),,16 hours 21 mins,"1,759 km" +Pellston(Michigan),Boston,,13 hours 47 mins,"1,512 km" +Traverse City(Michigan),Boston,,13 hours 49 mins,"1,471 km" +Alpena(Michigan),Boston,,13 hours 45 mins,"1,457 km" +Iron Mountain(Michigan),Boston,,17 hours 12 mins,"1,841 km" +Kalamazoo(Michigan),Boston,,13 hours 23 mins,"1,444 km" +Saginaw(Michigan),Boston,,11 hours 26 mins,"1,224 km" +Grand Rapids(Michigan),Boston,,12 hours 27 mins,"1,347 km" +Lansing(Michigan),Boston,,11 hours 40 mins,"1,254 km" +Muskegon(Michigan),Boston,,13 hours 2 mins,"1,411 km" +Hancock(Michigan),Boston,,18 hours 23 mins,"1,952 km" +Detroit(Michigan),Boston,,10 hours 46 mins,"1,137 km" +Escanaba(Michigan),Boston,,16 hours 16 mins,"1,759 km" +Flagstaff,Abilene(Texas),,11 hours 58 mins,"1,299 km" +Flagstaff,Amarillo(Texas),,8 hours 41 mins,979 km +Flagstaff,Harlingen(Texas),,18 hours 43 mins,"2,084 km" +Flagstaff,Lubbock(Texas),,9 hours 36 mins,"1,032 km" +Flagstaff,College Station(Texas),,16 hours 13 mins,"1,723 km" +Flagstaff,Corpus Christi(Texas),,17 hours 5 mins,"1,908 km" +Flagstaff,Wichita Falls(Texas),,11 hours 58 mins,"1,333 km" +Flagstaff,Waco(Texas),,14 hours 55 mins,"1,599 km" +Flagstaff,San Angelo(Texas),,12 hours 3 mins,"1,333 km" +Flagstaff,Houston(Texas),,17 hours 20 mins,"1,936 km" +Flagstaff,San Antonio(Texas),,15 hours 7 mins,"1,676 km" +Flagstaff,Del Rio(Texas),,14 hours 12 mins,"1,445 km" +Flagstaff,Mission(Texas),,18 hours 42 mins,"2,072 km" +Flagstaff,Beaumont(Texas),,18 hours 21 mins,"2,011 km" +Flagstaff,Longview(Texas),,15 hours 52 mins,"1,760 km" +Flagstaff,Midland(Texas),,10 hours 41 mins,"1,166 km" +Flagstaff,El Paso(Texas),,7 hours 53 mins,763 km +Flagstaff,Brownsville(Texas),,19 hours 5 mins,"2,123 km" +Flagstaff,Austin(Texas),,15 hours 24 mins,"1,635 km" +Flagstaff,Dallas(Texas),,14 hours 1 min,"1,560 km" +Flagstaff,Killeen(Texas),,14 hours 45 mins,"1,572 km" +Flagstaff,Laredo(Texas),,17 hours 7 mins,"1,735 km" +Flagstaff,Texarkana(Texas),,16 hours 19 mins,"1,769 km" +Abilene(Texas),Flagstaff,,12 hours 2 mins,"1,298 km" +Amarillo(Texas),Flagstaff,,8 hours 46 mins,978 km +Harlingen(Texas),Flagstaff,,18 hours 41 mins,"2,080 km" +Lubbock(Texas),Flagstaff,,9 hours 39 mins,"1,033 km" +College Station(Texas),Flagstaff,,16 hours 16 mins,"1,726 km" +Corpus Christi(Texas),Flagstaff,,17 hours 5 mins,"1,904 km" +Wichita Falls(Texas),Flagstaff,,12 hours 3 mins,"1,334 km" +Waco(Texas),Flagstaff,,14 hours 59 mins,"1,658 km" +San Angelo(Texas),Flagstaff,,12 hours 5 mins,"1,332 km" +Houston(Texas),Flagstaff,,17 hours 25 mins,"1,936 km" +San Antonio(Texas),Flagstaff,,15 hours 8 mins,"1,672 km" +Del Rio(Texas),Flagstaff,,14 hours 12 mins,"1,446 km" +Mission(Texas),Flagstaff,,18 hours 43 mins,"2,069 km" +Beaumont(Texas),Flagstaff,,18 hours 26 mins,"2,011 km" +Longview(Texas),Flagstaff,,15 hours 56 mins,"1,767 km" +Midland(Texas),Flagstaff,,10 hours 44 mins,"1,166 km" +El Paso(Texas),Flagstaff,,7 hours 54 mins,763 km +Brownsville(Texas),Flagstaff,,19 hours 5 mins,"2,120 km" +Austin(Texas),Flagstaff,,15 hours 27 mins,"1,663 km" +Dallas(Texas),Flagstaff,,14 hours 5 mins,"1,560 km" +Killeen(Texas),Flagstaff,,14 hours 50 mins,"1,572 km" +Laredo(Texas),Flagstaff,,17 hours 8 mins,"1,735 km" +Texarkana(Texas),Flagstaff,,16 hours 32 mins,"1,783 km" +Las Vegas,Sarasota(Florida),,1 day 10 hours,"3,821 km" +Las Vegas,Fort Myers(Florida),,1 day 11 hours,"3,926 km" +Las Vegas,Gainesville(Florida),,1 day 8 hours,"3,536 km" +Las Vegas,Orlando(Florida),,1 day 9 hours,"3,709 km" +Las Vegas,Daytona Beach(Florida),,1 day 10 hours,"3,708 km" +Las Vegas,Jacksonville(Florida),,1 day 8 hours,"3,559 km" +Las Vegas,Tampa(Florida),,1 day 10 hours,"3,736 km" +Las Vegas,Panama City(Florida),,1 day 5 hours,"3,206 km" +Las Vegas,Key West(Florida),,1 day 16 hours,"4,323 km" +Las Vegas,West Palm Beach(Florida),,1 day 12 hours,"3,964 km" +Las Vegas,Miami(Florida),,1 day 13 hours,"4,069 km" +Las Vegas,Tallahassee(Florida),,1 day 6 hours,"3,300 km" +Las Vegas,Punta Gorda(Florida),,1 day 11 hours,"3,891 km" +Las Vegas,Fort Lauderdale(Florida),,1 day 12 hours,"4,032 km" +Las Vegas,Pensacola(Florida),,1 day 3 hours,"3,003 km" +Sarasota(Florida),Las Vegas,,1 day 10 hours,"3,833 km" +Fort Myers(Florida),Las Vegas,,1 day 11 hours,"3,939 km" +Gainesville(Florida),Las Vegas,,1 day 8 hours,"3,547 km" +Orlando(Florida),Las Vegas,,1 day 9 hours,"3,719 km" +Daytona Beach(Florida),Las Vegas,,1 day 9 hours,"3,710 km" +Jacksonville(Florida),Las Vegas,,1 day 8 hours,"3,571 km" +Tampa(Florida),Las Vegas,,1 day 10 hours,"3,748 km" +Panama City(Florida),Las Vegas,,1 day 5 hours,"3,218 km" +Key West(Florida),Las Vegas,,1 day 16 hours,"4,334 km" +West Palm Beach(Florida),Las Vegas,,1 day 12 hours,"3,977 km" +Miami(Florida),Las Vegas,,1 day 13 hours,"4,082 km" +Tallahassee(Florida),Las Vegas,,1 day 6 hours,"3,311 km" +Punta Gorda(Florida),Las Vegas,,1 day 11 hours,"3,902 km" +Fort Lauderdale(Florida),Las Vegas,,1 day 12 hours,"4,045 km" +Pensacola(Florida),Las Vegas,,1 day 3 hours,"3,015 km" +St. Louis,Moline(Illinois),,3 hours 52 mins,422 km +St. Louis,Belleville(Illinois),,26 mins,28.1 km +St. Louis,Bloomington(Illinois),,2 hours 28 mins,261 km +St. Louis,Champaign(Illinois),,2 hours 41 mins,291 km +St. Louis,Chicago(Illinois),,4 hours 28 mins,478 km +St. Louis,Rockford(Illinois),,4 hours 22 mins,475 km +St. Louis,Peoria(Illinois),,2 hours 29 mins,272 km +Moline(Illinois),St. Louis,,3 hours 50 mins,420 km +Belleville(Illinois),St. Louis,,26 mins,28.0 km +Bloomington(Illinois),St. Louis,,2 hours 27 mins,261 km +Champaign(Illinois),St. Louis,,2 hours 42 mins,291 km +Chicago(Illinois),St. Louis,,4 hours 25 mins,477 km +Rockford(Illinois),St. Louis,,4 hours 20 mins,473 km +Peoria(Illinois),St. Louis,,2 hours 29 mins,271 km +Boston,Buffalo(New York),,6 hours 50 mins,733 km +Boston,Manhattan(New York),,3 hours 34 mins,340 km +Boston,Niagara Falls(New York),,7 hours 2 mins,752 km +Boston,Islip(New York),,4 hours 4 mins,391 km +Boston,New York(New York),,3 hours 46 mins,347 km +Boston,Watertown(New York),,5 hours 29 mins,544 km +Boston,Newburgh(New York),,3 hours 14 mins,318 km +Boston,Syracuse(New York),,4 hours 43 mins,502 km +Boston,Plattsburgh(New York),,4 hours 20 mins,393 km +Boston,Ogdensburg(New York),,6 hours 27 mins,625 km +Boston,Ithaca(New York),,5 hours 29 mins,535 km +Boston,Elmira(New York),,5 hours 30 mins,581 km +Boston,White Plains(New York),,3 hours 3 mins,304 km +Boston,Albany(New York),,2 hours 41 mins,273 km +Boston,Binghamton(New York),,4 hours 42 mins,493 km +Boston,Rochester(New York),,5 hours 54 mins,631 km +Buffalo(New York),Boston,,6 hours 50 mins,737 km +Manhattan(New York),Boston,,3 hours 32 mins,340 km +Niagara Falls(New York),Boston,,7 hours 2 mins,752 km +Islip(New York),Boston,,4 hours 3 mins,390 km +New York(New York),Boston,,3 hours 41 mins,346 km +Watertown(New York),Boston,,5 hours 28 mins,546 km +Newburgh(New York),Boston,,3 hours 12 mins,317 km +Syracuse(New York),Boston,,4 hours 43 mins,502 km +Plattsburgh(New York),Boston,,4 hours 22 mins,392 km +Ogdensburg(New York),Boston,,6 hours 26 mins,627 km +Ithaca(New York),Boston,,5 hours 28 mins,535 km +Elmira(New York),Boston,,5 hours 28 mins,580 km +White Plains(New York),Boston,,3 hours 4 mins,304 km +Albany(New York),Boston,,2 hours 40 mins,273 km +Binghamton(New York),Boston,,4 hours 40 mins,492 km +Rochester(New York),Boston,,5 hours 53 mins,631 km +San Diego,Austin,,19 hours 4 mins,"2,091 km" +Austin,San Diego,,19 hours 0 mins,"2,095 km" +Oklahoma City,Greensboro(North Carolina),,16 hours 41 mins,"1,836 km" +Oklahoma City,Wilmington(North Carolina),,18 hours 21 mins,"2,038 km" +Oklahoma City,New Bern(North Carolina),,19 hours 34 mins,"2,141 km" +Oklahoma City,Charlotte(North Carolina),,16 hours 5 mins,"1,747 km" +Oklahoma City,Raleigh(North Carolina),,17 hours 51 mins,"1,956 km" +Oklahoma City,Asheville(North Carolina),,14 hours 12 mins,"1,563 km" +Oklahoma City,Fayetteville(North Carolina),,17 hours 39 mins,"1,969 km" +Greensboro(North Carolina),Oklahoma City,,16 hours 39 mins,"1,835 km" +Wilmington(North Carolina),Oklahoma City,,18 hours 22 mins,"2,053 km" +New Bern(North Carolina),Oklahoma City,,19 hours 31 mins,"2,140 km" +Charlotte(North Carolina),Oklahoma City,,16 hours 4 mins,"1,745 km" +Raleigh(North Carolina),Oklahoma City,,17 hours 46 mins,"1,955 km" +Asheville(North Carolina),Oklahoma City,,14 hours 10 mins,"1,562 km" +Fayetteville(North Carolina),Oklahoma City,,17 hours 39 mins,"1,982 km" +Kansas City,Abilene(Texas),,9 hours 13 mins,"1,028 km" +Kansas City,Amarillo(Texas),,8 hours 44 mins,980 km +Kansas City,Harlingen(Texas),,15 hours 13 mins,"1,705 km" +Kansas City,Lubbock(Texas),,10 hours 7 mins,"1,118 km" +Kansas City,College Station(Texas),,10 hours 26 mins,"1,158 km" +Kansas City,Corpus Christi(Texas),,13 hours 35 mins,"1,529 km" +Kansas City,Wichita Falls(Texas),,6 hours 59 mins,784 km +Kansas City,Waco(Texas),,9 hours 8 mins,"1,022 km" +Kansas City,San Angelo(Texas),,10 hours 29 mins,"1,162 km" +Kansas City,Houston(Texas),,11 hours 15 mins,"1,195 km" +Kansas City,San Antonio(Texas),,11 hours 44 mins,"1,308 km" +Kansas City,Del Rio(Texas),,12 hours 54 mins,"1,415 km" +Kansas City,Mission(Texas),,15 hours 13 mins,"1,693 km" +Kansas City,Beaumont(Texas),,11 hours 46 mins,"1,165 km" +Kansas City,Longview(Texas),,8 hours 33 mins,859 km +Kansas City,Midland(Texas),,11 hours 5 mins,"1,229 km" +Kansas City,El Paso(Texas),,14 hours 46 mins,"1,509 km" +Kansas City,Brownsville(Texas),,15 hours 35 mins,"1,744 km" +Kansas City,Austin(Texas),,10 hours 32 mins,"1,181 km" +Kansas City,Dallas(Texas),,7 hours 55 mins,814 km +Kansas City,Killeen(Texas),,9 hours 56 mins,"1,116 km" +Kansas City,Laredo(Texas),,14 hours 0 mins,"1,558 km" +Kansas City,Texarkana(Texas),,7 hours 48 mins,771 km +Abilene(Texas),Kansas City,,9 hours 12 mins,"1,028 km" +Amarillo(Texas),Kansas City,,8 hours 42 mins,978 km +Harlingen(Texas),Kansas City,,15 hours 6 mins,"1,704 km" +Lubbock(Texas),Kansas City,,10 hours 2 mins,"1,118 km" +College Station(Texas),Kansas City,,10 hours 22 mins,"1,157 km" +Corpus Christi(Texas),Kansas City,,13 hours 30 mins,"1,528 km" +Wichita Falls(Texas),Kansas City,,6 hours 57 mins,783 km +Waco(Texas),Kansas City,,9 hours 6 mins,"1,019 km" +San Angelo(Texas),Kansas City,,10 hours 26 mins,"1,161 km" +Houston(Texas),Kansas City,,11 hours 14 mins,"1,198 km" +San Antonio(Texas),Kansas City,,11 hours 41 mins,"1,307 km" +Del Rio(Texas),Kansas City,,12 hours 50 mins,"1,414 km" +Mission(Texas),Kansas City,,15 hours 8 mins,"1,693 km" +Beaumont(Texas),Kansas City,,11 hours 46 mins,"1,180 km" +Longview(Texas),Kansas City,,8 hours 31 mins,861 km +Midland(Texas),Kansas City,,11 hours 2 mins,"1,230 km" +El Paso(Texas),Kansas City,,14 hours 42 mins,"1,509 km" +Brownsville(Texas),Kansas City,,15 hours 30 mins,"1,744 km" +Austin(Texas),Kansas City,,10 hours 31 mins,"1,181 km" +Dallas(Texas),Kansas City,,7 hours 56 mins,818 km +Killeen(Texas),Kansas City,,9 hours 55 mins,"1,115 km" +Laredo(Texas),Kansas City,,13 hours 59 mins,"1,558 km" +Texarkana(Texas),Kansas City,,7 hours 42 mins,767 km +St. Petersburg,Appleton,,, +Appleton,St. Petersburg,,, +Charlotte,Charlottesville,,4 hours 20 mins,437 km +Charlottesville,Charlotte,,4 hours 20 mins,438 km +Denver,Buffalo(New York),,22 hours 7 mins,"2,457 km" +Denver,Manhattan(New York),,1 day 2 hours,"2,877 km" +Denver,Niagara Falls(New York),,22 hours 28 mins,"2,487 km" +Denver,Islip(New York),,1 day 3 hours,"2,947 km" +Denver,New York(New York),,1 day 2 hours,"2,863 km" +Denver,Watertown(New York),,1 day 1 hour,"2,785 km" +Denver,Newburgh(New York),,1 day 2 hours,"2,876 km" +Denver,Syracuse(New York),,1 day 0 hours,"2,683 km" +Denver,Plattsburgh(New York),,1 day 3 hours,"2,961 km" +Denver,Ogdensburg(New York),,1 day 1 hour,"2,773 km" +Denver,Ithaca(New York),,1 day 0 hours,"2,676 km" +Denver,Elmira(New York),,23 hours 47 mins,"2,638 km" +Denver,White Plains(New York),,1 day 2 hours,"2,901 km" +Denver,Albany(New York),,1 day 2 hours,"2,909 km" +Denver,Binghamton(New York),,1 day 1 hour,"2,726 km" +Denver,Rochester(New York),,23 hours 5 mins,"2,561 km" +Buffalo(New York),Denver,,22 hours 8 mins,"2,452 km" +Manhattan(New York),Denver,,1 day 2 hours,"2,871 km" +Niagara Falls(New York),Denver,,22 hours 30 mins,"2,482 km" +Islip(New York),Denver,,1 day 3 hours,"2,940 km" +New York(New York),Denver,,1 day 2 hours,"2,858 km" +Watertown(New York),Denver,,1 day 1 hour,"2,780 km" +Newburgh(New York),Denver,,1 day 2 hours,"2,871 km" +Syracuse(New York),Denver,,1 day 0 hours,"2,678 km" +Plattsburgh(New York),Denver,,1 day 3 hours,"2,957 km" +Ogdensburg(New York),Denver,,1 day 1 hour,"2,769 km" +Ithaca(New York),Denver,,1 day 0 hours,"2,670 km" +Elmira(New York),Denver,,23 hours 48 mins,"2,634 km" +White Plains(New York),Denver,,1 day 2 hours,"2,895 km" +Albany(New York),Denver,,1 day 2 hours,"2,902 km" +Binghamton(New York),Denver,,1 day 1 hour,"2,721 km" +Rochester(New York),Denver,,23 hours 6 mins,"2,556 km" +Plattsburgh,Fort Lauderdale,,22 hours 40 mins,"2,517 km" +Fort Lauderdale,Plattsburgh,,22 hours 33 mins,"2,504 km" +Punta Gorda,Green Bay(Wisconsin),,21 hours 29 mins,"2,381 km" +Punta Gorda,Rhinelander(Wisconsin),,23 hours 5 mins,"2,596 km" +Punta Gorda,Marquette(Wisconsin),,21 hours 15 mins,"2,362 km" +Punta Gorda,Madison(Wisconsin),,20 hours 27 mins,"2,288 km" +Punta Gorda,La Crosse(Wisconsin),,22 hours 18 mins,"2,505 km" +Punta Gorda,Devils Lake(Wisconsin),,21 hours 6 mins,"2,353 km" +Punta Gorda,Appleton(Wisconsin),,21 hours 19 mins,"2,363 km" +Punta Gorda,Mosinee(Wisconsin),,22 hours 2 mins,"2,484 km" +Punta Gorda,Milwaukee(Wisconsin),,19 hours 49 mins,"2,197 km" +Punta Gorda,Eau Claire(Wisconsin),,22 hours 48 mins,"2,562 km" +Green Bay(Wisconsin),Punta Gorda,,21 hours 31 mins,"2,379 km" +Rhinelander(Wisconsin),Punta Gorda,,23 hours 3 mins,"2,590 km" +Marquette(Wisconsin),Punta Gorda,,21 hours 14 mins,"2,357 km" +Madison(Wisconsin),Punta Gorda,,20 hours 21 mins,"2,281 km" +La Crosse(Wisconsin),Punta Gorda,,22 hours 14 mins,"2,498 km" +Devils Lake(Wisconsin),Punta Gorda,,21 hours 4 mins,"2,346 km" +Appleton(Wisconsin),Punta Gorda,,21 hours 18 mins,"2,360 km" +Mosinee(Wisconsin),Punta Gorda,,21 hours 58 mins,"2,477 km" +Milwaukee(Wisconsin),Punta Gorda,,19 hours 49 mins,"2,195 km" +Eau Claire(Wisconsin),Punta Gorda,,22 hours 45 mins,"2,556 km" +Charleston,St. Louis,,12 hours 43 mins,"1,379 km" +St. Louis,Charleston,,12 hours 43 mins,"1,379 km" +Santa Ana,Houston,,22 hours 8 mins,"2,468 km" +Houston,Santa Ana,,22 hours 8 mins,"2,494 km" +Cincinnati,Bemidji(Minnesota),,13 hours 54 mins,"1,479 km" +Cincinnati,Minneapolis(Minnesota),,10 hours 26 mins,"1,135 km" +Cincinnati,Duluth(Minnesota),,11 hours 24 mins,"1,230 km" +Cincinnati,Brainerd(Minnesota),,12 hours 22 mins,"1,336 km" +Cincinnati,Gustavus(Minnesota),,10 hours 53 mins,"1,182 km" +Cincinnati,St. Cloud(Minnesota),,11 hours 23 mins,"1,238 km" +Cincinnati,Hibbing(Minnesota),,12 hours 41 mins,"1,350 km" +Cincinnati,International Falls(Minnesota),,14 hours 5 mins,"1,492 km" +Bemidji(Minnesota),Cincinnati,,13 hours 51 mins,"1,480 km" +Minneapolis(Minnesota),Cincinnati,,10 hours 24 mins,"1,133 km" +Duluth(Minnesota),Cincinnati,,11 hours 23 mins,"1,231 km" +Brainerd(Minnesota),Cincinnati,,12 hours 21 mins,"1,337 km" +Gustavus(Minnesota),Cincinnati,,10 hours 52 mins,"1,180 km" +St. Cloud(Minnesota),Cincinnati,,11 hours 22 mins,"1,238 km" +Hibbing(Minnesota),Cincinnati,,12 hours 40 mins,"1,351 km" +International Falls(Minnesota),Cincinnati,,14 hours 4 mins,"1,492 km" +Valparaiso,Chicago,,, +Chicago,Valparaiso,,, +Everett,Boise,,7 hours 52 mins,830 km +Boise,Everett,,7 hours 53 mins,830 km +Spokane,San Francisco,,14 hours 5 mins,"1,409 km" +San Francisco,Spokane,,13 hours 57 mins,"1,409 km" +Atlanta,Pellston(Michigan),,13 hours 58 mins,"1,569 km" +Atlanta,Traverse City(Michigan),,13 hours 57 mins,"1,499 km" +Atlanta,Alpena(Michigan),,13 hours 57 mins,"1,516 km" +Atlanta,Iron Mountain(Michigan),,15 hours 23 mins,"1,652 km" +Atlanta,Kalamazoo(Michigan),,11 hours 25 mins,"1,221 km" +Atlanta,Saginaw(Michigan),,11 hours 38 mins,"1,282 km" +Atlanta,Grand Rapids(Michigan),,11 hours 51 mins,"1,270 km" +Atlanta,Lansing(Michigan),,11 hours 18 mins,"1,247 km" +Atlanta,Muskegon(Michigan),,12 hours 7 mins,"1,285 km" +Atlanta,Hancock(Michigan),,17 hours 19 mins,"1,831 km" +Atlanta,Detroit(Michigan),,10 hours 36 mins,"1,162 km" +Atlanta,Escanaba(Michigan),,15 hours 34 mins,"1,670 km" +Pellston(Michigan),Atlanta,,13 hours 58 mins,"1,568 km" +Traverse City(Michigan),Atlanta,,13 hours 59 mins,"1,527 km" +Alpena(Michigan),Atlanta,,13 hours 56 mins,"1,513 km" +Iron Mountain(Michigan),Atlanta,,15 hours 22 mins,"1,649 km" +Kalamazoo(Michigan),Atlanta,,11 hours 24 mins,"1,225 km" +Saginaw(Michigan),Atlanta,,11 hours 37 mins,"1,280 km" +Grand Rapids(Michigan),Atlanta,,11 hours 50 mins,"1,272 km" +Lansing(Michigan),Atlanta,,11 hours 18 mins,"1,246 km" +Muskegon(Michigan),Atlanta,,12 hours 7 mins,"1,284 km" +Hancock(Michigan),Atlanta,,17 hours 19 mins,"1,829 km" +Detroit(Michigan),Atlanta,,10 hours 37 mins,"1,163 km" +Escanaba(Michigan),Atlanta,,15 hours 35 mins,"1,668 km" +Baltimore,Syracuse,,5 hours 10 mins,534 km +Syracuse,Baltimore,,5 hours 8 mins,535 km +Fort Myers,Abilene(Texas),,20 hours 22 mins,"2,261 km" +Fort Myers,Amarillo(Texas),,23 hours 13 mins,"2,560 km" +Fort Myers,Harlingen(Texas),,20 hours 34 mins,"2,297 km" +Fort Myers,Lubbock(Texas),,22 hours 46 mins,"2,526 km" +Fort Myers,College Station(Texas),,17 hours 5 mins,"1,914 km" +Fort Myers,Corpus Christi(Texas),,18 hours 49 mins,"2,102 km" +Fort Myers,Wichita Falls(Texas),,19 hours 48 mins,"2,199 km" +Fort Myers,Waco(Texas),,18 hours 24 mins,"2,025 km" +Fort Myers,San Angelo(Texas),,21 hours 23 mins,"2,353 km" +Fort Myers,Houston(Texas),,15 hours 41 mins,"1,769 km" +Fort Myers,San Antonio(Texas),,18 hours 33 mins,"2,083 km" +Fort Myers,Del Rio(Texas),,20 hours 56 mins,"2,330 km" +Fort Myers,Mission(Texas),,21 hours 0 mins,"2,337 km" +Fort Myers,Beaumont(Texas),,14 hours 27 mins,"1,636 km" +Fort Myers,Longview(Texas),,16 hours 5 mins,"1,772 km" +Fort Myers,Midland(Texas),,22 hours 30 mins,"2,502 km" +Fort Myers,El Paso(Texas),,1 day 2 hours,"2,967 km" +Fort Myers,Brownsville(Texas),,20 hours 56 mins,"2,336 km" +Fort Myers,Austin(Texas),,18 hours 8 mins,"2,032 km" +Fort Myers,Dallas(Texas),,17 hours 47 mins,"1,973 km" +Fort Myers,Killeen(Texas),,18 hours 43 mins,"2,087 km" +Fort Myers,Laredo(Texas),,20 hours 41 mins,"2,275 km" +Fort Myers,Texarkana(Texas),,16 hours 7 mins,"1,783 km" +Abilene(Texas),Fort Myers,,20 hours 23 mins,"2,255 km" +Amarillo(Texas),Fort Myers,,23 hours 13 mins,"2,548 km" +Harlingen(Texas),Fort Myers,,20 hours 32 mins,"2,296 km" +Lubbock(Texas),Fort Myers,,22 hours 42 mins,"2,521 km" +College Station(Texas),Fort Myers,,17 hours 5 mins,"1,916 km" +Corpus Christi(Texas),Fort Myers,,18 hours 54 mins,"2,106 km" +Wichita Falls(Texas),Fort Myers,,19 hours 52 mins,"2,185 km" +Waco(Texas),Fort Myers,,18 hours 25 mins,"2,023 km" +San Angelo(Texas),Fort Myers,,21 hours 24 mins,"2,351 km" +Houston(Texas),Fort Myers,,15 hours 42 mins,"1,768 km" +San Antonio(Texas),Fort Myers,,18 hours 35 mins,"2,082 km" +Del Rio(Texas),Fort Myers,,21 hours 0 mins,"2,329 km" +Mission(Texas),Fort Myers,,21 hours 0 mins,"2,336 km" +Beaumont(Texas),Fort Myers,,14 hours 29 mins,"1,634 km" +Longview(Texas),Fort Myers,,16 hours 4 mins,"1,766 km" +Midland(Texas),Fort Myers,,22 hours 28 mins,"2,495 km" +El Paso(Texas),Fort Myers,,1 day 2 hours,"2,966 km" +Brownsville(Texas),Fort Myers,,20 hours 56 mins,"2,336 km" +Austin(Texas),Fort Myers,,18 hours 9 mins,"2,031 km" +Dallas(Texas),Fort Myers,,17 hours 48 mins,"1,964 km" +Killeen(Texas),Fort Myers,,18 hours 44 mins,"2,080 km" +Laredo(Texas),Fort Myers,,20 hours 40 mins,"2,274 km" +Texarkana(Texas),Fort Myers,,16 hours 10 mins,"1,784 km" +Madison,State College(Pennsylvania),,10 hours 56 mins,"1,156 km" +Madison,Johnstown(Pennsylvania),,10 hours 20 mins,"1,084 km" +Madison,Harrisburg(Pennsylvania),,12 hours 10 mins,"1,303 km" +Madison,Erie(Pennsylvania),,9 hours 2 mins,963 km +Madison,Pittsburgh(Pennsylvania),,9 hours 9 mins,986 km +Madison,Latrobe(Pennsylvania),,9 hours 48 mins,"1,040 km" +Madison,Philadelphia(Pennsylvania),,13 hours 39 mins,"1,465 km" +Madison,Lewisburg(Pennsylvania),,11 hours 33 mins,"1,249 km" +Madison,Scranton(Pennsylvania),,12 hours 43 mins,"1,375 km" +State College(Pennsylvania),Madison,,10 hours 57 mins,"1,153 km" +Johnstown(Pennsylvania),Madison,,10 hours 24 mins,"1,073 km" +Harrisburg(Pennsylvania),Madison,,12 hours 12 mins,"1,293 km" +Erie(Pennsylvania),Madison,,9 hours 5 mins,952 km +Pittsburgh(Pennsylvania),Madison,,9 hours 11 mins,976 km +Latrobe(Pennsylvania),Madison,,9 hours 55 mins,"1,033 km" +Philadelphia(Pennsylvania),Madison,,13 hours 44 mins,"1,457 km" +Lewisburg(Pennsylvania),Madison,,11 hours 35 mins,"1,240 km" +Scranton(Pennsylvania),Madison,,12 hours 45 mins,"1,365 km" +Miami,Atlanta,,9 hours 24 mins,"1,068 km" +Atlanta,Miami,,9 hours 27 mins,"1,066 km" +Cincinnati,Sarasota(Florida),,13 hours 58 mins,"1,559 km" +Cincinnati,Fort Myers(Florida),,14 hours 56 mins,"1,664 km" +Cincinnati,Gainesville(Florida),,11 hours 34 mins,"1,274 km" +Cincinnati,Orlando(Florida),,12 hours 58 mins,"1,447 km" +Cincinnati,Daytona Beach(Florida),,13 hours 4 mins,"1,434 km" +Cincinnati,Jacksonville(Florida),,11 hours 39 mins,"1,280 km" +Cincinnati,Tampa(Florida),,13 hours 11 mins,"1,474 km" +Cincinnati,Panama City(Florida),,11 hours 23 mins,"1,173 km" +Cincinnati,Key West(Florida),,19 hours 10 mins,"2,061 km" +Cincinnati,West Palm Beach(Florida),,15 hours 12 mins,"1,702 km" +Cincinnati,Miami(Florida),,16 hours 10 mins,"1,807 km" +Cincinnati,Tallahassee(Florida),,11 hours 0 mins,"1,173 km" +Cincinnati,Punta Gorda(Florida),,14 hours 30 mins,"1,629 km" +Cincinnati,Fort Lauderdale(Florida),,15 hours 49 mins,"1,770 km" +Cincinnati,Pensacola(Florida),,10 hours 35 mins,"1,151 km" +Sarasota(Florida),Cincinnati,,13 hours 57 mins,"1,560 km" +Fort Myers(Florida),Cincinnati,,14 hours 54 mins,"1,665 km" +Gainesville(Florida),Cincinnati,,11 hours 33 mins,"1,274 km" +Orlando(Florida),Cincinnati,,12 hours 55 mins,"1,446 km" +Daytona Beach(Florida),Cincinnati,,13 hours 1 min,"1,437 km" +Jacksonville(Florida),Cincinnati,,11 hours 42 mins,"1,280 km" +Tampa(Florida),Cincinnati,,13 hours 9 mins,"1,475 km" +Panama City(Florida),Cincinnati,,11 hours 24 mins,"1,168 km" +Key West(Florida),Cincinnati,,19 hours 10 mins,"2,061 km" +West Palm Beach(Florida),Cincinnati,,15 hours 9 mins,"1,704 km" +Miami(Florida),Cincinnati,,16 hours 6 mins,"1,809 km" +Tallahassee(Florida),Cincinnati,,11 hours 0 mins,"1,172 km" +Punta Gorda(Florida),Cincinnati,,14 hours 28 mins,"1,629 km" +Fort Lauderdale(Florida),Cincinnati,,15 hours 48 mins,"1,772 km" +Pensacola(Florida),Cincinnati,,10 hours 30 mins,"1,149 km" +Jacksonville,Pellston(Michigan),,18 hours 34 mins,"2,032 km" +Jacksonville,Traverse City(Michigan),,18 hours 34 mins,"1,991 km" +Jacksonville,Alpena(Michigan),,18 hours 32 mins,"1,980 km" +Jacksonville,Iron Mountain(Michigan),,20 hours 17 mins,"2,208 km" +Jacksonville,Kalamazoo(Michigan),,16 hours 19 mins,"1,777 km" +Jacksonville,Saginaw(Michigan),,16 hours 14 mins,"1,746 km" +Jacksonville,Grand Rapids(Michigan),,16 hours 45 mins,"1,826 km" +Jacksonville,Lansing(Michigan),,15 hours 54 mins,"1,711 km" +Jacksonville,Muskegon(Michigan),,17 hours 1 min,"1,841 km" +Jacksonville,Hancock(Michigan),,22 hours 13 mins,"2,387 km" +Jacksonville,Detroit(Michigan),,15 hours 11 mins,"1,626 km" +Jacksonville,Escanaba(Michigan),,20 hours 28 mins,"2,226 km" +Pellston(Michigan),Jacksonville,,18 hours 35 mins,"2,025 km" +Traverse City(Michigan),Jacksonville,,18 hours 36 mins,"1,984 km" +Alpena(Michigan),Jacksonville,,18 hours 32 mins,"1,971 km" +Iron Mountain(Michigan),Jacksonville,,20 hours 15 mins,"2,205 km" +Kalamazoo(Michigan),Jacksonville,,16 hours 16 mins,"1,765 km" +Saginaw(Michigan),Jacksonville,,16 hours 14 mins,"1,738 km" +Grand Rapids(Michigan),Jacksonville,,16 hours 43 mins,"1,828 km" +Lansing(Michigan),Jacksonville,,15 hours 55 mins,"1,704 km" +Muskegon(Michigan),Jacksonville,,17 hours 0 mins,"1,839 km" +Hancock(Michigan),Jacksonville,,22 hours 12 mins,"2,385 km" +Detroit(Michigan),Jacksonville,,15 hours 13 mins,"1,620 km" +Escanaba(Michigan),Jacksonville,,20 hours 28 mins,"2,224 km" +Wilmington,Newark,,8 hours 50 mins,936 km +Newark,Wilmington,,8 hours 53 mins,944 km +Chicago,Johnstown,,8 hours 6 mins,841 km +Johnstown,Chicago,,8 hours 9 mins,839 km +Denver,Lake Charles(Louisiana),,17 hours 5 mins,"1,828 km" +Denver,Baton Rouge(Louisiana),,18 hours 9 mins,"1,967 km" +Denver,New Orleans(Louisiana),,19 hours 20 mins,"2,094 km" +Denver,Shreveport(Louisiana),,14 hours 39 mins,"1,583 km" +Lake Charles(Louisiana),Denver,,17 hours 5 mins,"1,825 km" +Baton Rouge(Louisiana),Denver,,18 hours 6 mins,"1,969 km" +New Orleans(Louisiana),Denver,,19 hours 18 mins,"2,097 km" +Shreveport(Louisiana),Denver,,14 hours 38 mins,"1,586 km" +Providence,Orlando,,18 hours 43 mins,"2,025 km" +Orlando,Providence,,18 hours 32 mins,"2,015 km" +New York,Evansville(Indiana),,13 hours 12 mins,"1,381 km" +New York,South Bend(Indiana),,10 hours 38 mins,"1,129 km" +New York,Fort Wayne(Indiana),,9 hours 55 mins,"1,039 km" +New York,Valparaiso(Indiana),,11 hours 24 mins,"1,207 km" +New York,Indianapolis(Indiana),,11 hours 1 min,"1,139 km" +Evansville(Indiana),New York,,13 hours 15 mins,"1,384 km" +South Bend(Indiana),New York,,10 hours 40 mins,"1,128 km" +Fort Wayne(Indiana),New York,,9 hours 59 mins,"1,044 km" +Valparaiso(Indiana),New York,,11 hours 28 mins,"1,208 km" +Indianapolis(Indiana),New York,,11 hours 7 mins,"1,143 km" +Baton Rouge,Greensboro(North Carolina),,12 hours 26 mins,"1,380 km" +Baton Rouge,Wilmington(North Carolina),,13 hours 27 mins,"1,511 km" +Baton Rouge,New Bern(North Carolina),,14 hours 42 mins,"1,645 km" +Baton Rouge,Charlotte(North Carolina),,11 hours 14 mins,"1,241 km" +Baton Rouge,Raleigh(North Carolina),,13 hours 35 mins,"1,499 km" +Baton Rouge,Asheville(North Carolina),,10 hours 49 mins,"1,165 km" +Baton Rouge,Fayetteville(North Carolina),,12 hours 44 mins,"1,442 km" +Greensboro(North Carolina),Baton Rouge,,12 hours 26 mins,"1,380 km" +Wilmington(North Carolina),Baton Rouge,,13 hours 29 mins,"1,513 km" +New Bern(North Carolina),Baton Rouge,,14 hours 45 mins,"1,646 km" +Charlotte(North Carolina),Baton Rouge,,11 hours 13 mins,"1,239 km" +Raleigh(North Carolina),Baton Rouge,,13 hours 33 mins,"1,501 km" +Asheville(North Carolina),Baton Rouge,,10 hours 49 mins,"1,166 km" +Fayetteville(North Carolina),Baton Rouge,,12 hours 46 mins,"1,442 km" +Atlanta,Minneapolis,,16 hours 26 mins,"1,821 km" +Minneapolis,Atlanta,,16 hours 20 mins,"1,814 km" +Raleigh,San Diego(California),,1 day 13 hours,"4,105 km" +Raleigh,Redding(California),,1 day 18 hours,"4,586 km" +Raleigh,Sacramento(California),,1 day 17 hours,"4,484 km" +Raleigh,Fresno(California),,1 day 15 hours,"4,291 km" +Raleigh,San Luis Obispo(California),,1 day 15 hours,"4,334 km" +Raleigh,Oakland(California),,1 day 17 hours,"4,552 km" +Raleigh,Santa Barbara(California),,1 day 14 hours,"4,233 km" +Raleigh,Stockton(California),,1 day 17 hours,"4,490 km" +Raleigh,Santa Rosa(California),,1 day 18 hours,"4,645 km" +Raleigh,Bakersfield(California),,1 day 13 hours,"4,115 km" +Raleigh,Santa Ana(California),,1 day 13 hours,"4,090 km" +Raleigh,Santa Maria(California),,1 day 15 hours,"4,290 km" +Raleigh,San Jose(California),,1 day 17 hours,"4,503 km" +Raleigh,Burbank(California),,1 day 13 hours,"4,100 km" +Raleigh,Arcata(California),,1 day 21 hours,"4,811 km" +Raleigh,Butte(California),,1 day 17 hours,"4,523 km" +Raleigh,Palm Springs(California),,1 day 12 hours,"3,926 km" +Raleigh,Los Angeles(California),,1 day 13 hours,"4,094 km" +Raleigh,Long Beach(California),,1 day 13 hours,"4,113 km" +Raleigh,San Francisco(California),,1 day 17 hours,"4,571 km" +Raleigh,Monterey(California),,1 day 17 hours,"4,469 km" +San Diego(California),Raleigh,,1 day 13 hours,"4,095 km" +Redding(California),Raleigh,,1 day 18 hours,"4,594 km" +Sacramento(California),Raleigh,,1 day 17 hours,"4,492 km" +Fresno(California),Raleigh,,1 day 15 hours,"4,291 km" +San Luis Obispo(California),Raleigh,,1 day 15 hours,"4,336 km" +Oakland(California),Raleigh,,1 day 17 hours,"4,555 km" +Santa Barbara(California),Raleigh,,1 day 14 hours,"4,233 km" +Stockton(California),Raleigh,,1 day 17 hours,"4,491 km" +Santa Rosa(California),Raleigh,,1 day 18 hours,"4,647 km" +Bakersfield(California),Raleigh,,1 day 13 hours,"4,116 km" +Santa Ana(California),Raleigh,,1 day 13 hours,"4,087 km" +Santa Maria(California),Raleigh,,1 day 15 hours,"4,292 km" +San Jose(California),Raleigh,,1 day 17 hours,"4,504 km" +Burbank(California),Raleigh,,1 day 13 hours,"4,094 km" +Arcata(California),Raleigh,,1 day 21 hours,"4,818 km" +Butte(California),Raleigh,,1 day 17 hours,"4,516 km" +Palm Springs(California),Raleigh,,1 day 12 hours,"3,926 km" +Los Angeles(California),Raleigh,,1 day 13 hours,"4,090 km" +Long Beach(California),Raleigh,,1 day 13 hours,"4,117 km" +San Francisco(California),Raleigh,,1 day 17 hours,"4,573 km" +Monterey(California),Raleigh,,1 day 17 hours,"4,471 km" +Moab,Alamosa(Colorado),,5 hours 30 mins,492 km +Moab,Grand Junction(Colorado),,1 hour 45 mins,182 km +Moab,Durango(Colorado),,2 hours 45 mins,254 km +Moab,Colorado Springs(Colorado),,6 hours 18 mins,677 km +Moab,Gunnison(Colorado),,4 hours 6 mins,379 km +Moab,Denver(Colorado),,5 hours 23 mins,570 km +Alamosa(Colorado),Moab,,5 hours 29 mins,492 km +Grand Junction(Colorado),Moab,,1 hour 46 mins,182 km +Durango(Colorado),Moab,,2 hours 42 mins,254 km +Colorado Springs(Colorado),Moab,,6 hours 18 mins,679 km +Gunnison(Colorado),Moab,,4 hours 1 min,380 km +Denver(Colorado),Moab,,5 hours 25 mins,571 km +Austin,Nashville(Tennessee),,12 hours 31 mins,"1,382 km" +Austin,Bristol(Tennessee),,16 hours 45 mins,"1,849 km" +Austin,Knoxville(Tennessee),,15 hours 4 mins,"1,669 km" +Austin,Chattanooga(Tennessee),,13 hours 45 mins,"1,500 km" +Austin,Memphis(Tennessee),,9 hours 22 mins,"1,041 km" +Nashville(Tennessee),Austin,,12 hours 33 mins,"1,383 km" +Bristol(Tennessee),Austin,,16 hours 47 mins,"1,850 km" +Knoxville(Tennessee),Austin,,15 hours 7 mins,"1,671 km" +Chattanooga(Tennessee),Austin,,13 hours 48 mins,"1,505 km" +Memphis(Tennessee),Austin,,9 hours 26 mins,"1,043 km" +Albuquerque,Alamosa(Colorado),,3 hours 28 mins,327 km +Albuquerque,Grand Junction(Colorado),,7 hours 3 mins,614 km +Albuquerque,Durango(Colorado),,3 hours 36 mins,346 km +Albuquerque,Colorado Springs(Colorado),,5 hours 23 mins,609 km +Albuquerque,Gunnison(Colorado),,5 hours 34 mins,519 km +Albuquerque,Denver(Colorado),,6 hours 26 mins,722 km +Alamosa(Colorado),Albuquerque,,3 hours 24 mins,325 km +Grand Junction(Colorado),Albuquerque,,7 hours 5 mins,615 km +Durango(Colorado),Albuquerque,,3 hours 35 mins,345 km +Colorado Springs(Colorado),Albuquerque,,5 hours 25 mins,611 km +Gunnison(Colorado),Albuquerque,,5 hours 30 mins,518 km +Denver(Colorado),Albuquerque,,6 hours 28 mins,722 km +Tampa,Austin,,16 hours 23 mins,"1,841 km" +Austin,Tampa,,16 hours 24 mins,"1,841 km" +Dallas,Grand Island(Nebraska),,9 hours 18 mins,"1,023 km" +Dallas,North Platte(Nebraska),,11 hours 1 min,"1,191 km" +Dallas,Omaha(Nebraska),,9 hours 43 mins,"1,058 km" +Dallas,Scottsbluff(Nebraska),,13 hours 41 mins,"1,468 km" +Grand Island(Nebraska),Dallas,,9 hours 18 mins,"1,025 km" +North Platte(Nebraska),Dallas,,11 hours 2 mins,"1,199 km" +Omaha(Nebraska),Dallas,,9 hours 46 mins,"1,059 km" +Scottsbluff(Nebraska),Dallas,,13 hours 40 mins,"1,480 km" +Grand Rapids,Moline(Illinois),,4 hours 51 mins,522 km +Grand Rapids,Belleville(Illinois),,6 hours 42 mins,716 km +Grand Rapids,Bloomington(Illinois),,4 hours 19 mins,463 km +Grand Rapids,Champaign(Illinois),,4 hours 9 mins,448 km +Grand Rapids,Chicago(Illinois),,2 hours 45 mins,288 km +Grand Rapids,Rockford(Illinois),,4 hours 8 mins,437 km +Grand Rapids,Peoria(Illinois),,4 hours 38 mins,508 km +Moline(Illinois),Grand Rapids,,4 hours 52 mins,519 km +Belleville(Illinois),Grand Rapids,,6 hours 43 mins,711 km +Bloomington(Illinois),Grand Rapids,,4 hours 18 mins,454 km +Champaign(Illinois),Grand Rapids,,4 hours 11 mins,445 km +Chicago(Illinois),Grand Rapids,,2 hours 46 mins,286 km +Rockford(Illinois),Grand Rapids,,4 hours 8 mins,433 km +Peoria(Illinois),Grand Rapids,,4 hours 41 mins,507 km +San Francisco,Tucson,,12 hours 50 mins,"1,390 km" +Tucson,San Francisco,,12 hours 55 mins,"1,391 km" +Knoxville,Sarasota(Florida),,10 hours 21 mins,"1,161 km" +Knoxville,Fort Myers(Florida),,11 hours 18 mins,"1,267 km" +Knoxville,Gainesville(Florida),,7 hours 57 mins,877 km +Knoxville,Orlando(Florida),,9 hours 21 mins,"1,049 km" +Knoxville,Daytona Beach(Florida),,9 hours 25 mins,"1,034 km" +Knoxville,Jacksonville(Florida),,8 hours 0 mins,880 km +Knoxville,Tampa(Florida),,9 hours 33 mins,"1,077 km" +Knoxville,Panama City(Florida),,7 hours 52 mins,801 km +Knoxville,Key West(Florida),,15 hours 33 mins,"1,663 km" +Knoxville,West Palm Beach(Florida),,11 hours 34 mins,"1,305 km" +Knoxville,Miami(Florida),,12 hours 33 mins,"1,410 km" +Knoxville,Tallahassee(Florida),,7 hours 23 mins,775 km +Knoxville,Punta Gorda(Florida),,10 hours 53 mins,"1,231 km" +Knoxville,Fort Lauderdale(Florida),,12 hours 12 mins,"1,373 km" +Knoxville,Pensacola(Florida),,7 hours 29 mins,813 km +Sarasota(Florida),Knoxville,,10 hours 19 mins,"1,162 km" +Fort Myers(Florida),Knoxville,,11 hours 16 mins,"1,268 km" +Gainesville(Florida),Knoxville,,7 hours 55 mins,876 km +Orlando(Florida),Knoxville,,9 hours 16 mins,"1,048 km" +Daytona Beach(Florida),Knoxville,,9 hours 23 mins,"1,039 km" +Jacksonville(Florida),Knoxville,,8 hours 4 mins,881 km +Tampa(Florida),Knoxville,,9 hours 31 mins,"1,077 km" +Panama City(Florida),Knoxville,,7 hours 50 mins,802 km +Key West(Florida),Knoxville,,15 hours 32 mins,"1,663 km" +West Palm Beach(Florida),Knoxville,,11 hours 31 mins,"1,306 km" +Miami(Florida),Knoxville,,12 hours 28 mins,"1,411 km" +Tallahassee(Florida),Knoxville,,7 hours 22 mins,775 km +Punta Gorda(Florida),Knoxville,,10 hours 50 mins,"1,231 km" +Fort Lauderdale(Florida),Knoxville,,12 hours 10 mins,"1,374 km" +Pensacola(Florida),Knoxville,,7 hours 26 mins,811 km +Dallas,Paducah(Kentucky),,9 hours 36 mins,"1,027 km" +Dallas,Owensboro(Kentucky),,11 hours 17 mins,"1,212 km" +Dallas,Lexington(Kentucky),,12 hours 51 mins,"1,407 km" +Dallas,Louisville(Kentucky),,12 hours 15 mins,"1,345 km" +Paducah(Kentucky),Dallas,,9 hours 42 mins,"1,013 km" +Owensboro(Kentucky),Dallas,,11 hours 18 mins,"1,212 km" +Lexington(Kentucky),Dallas,,12 hours 55 mins,"1,408 km" +Louisville(Kentucky),Dallas,,12 hours 17 mins,"1,345 km" +St. Louis,Detroit,,7 hours 53 mins,852 km +Detroit,St. Louis,,7 hours 55 mins,852 km +Detroit,Kansas City(Missouri),,11 hours 17 mins,"1,229 km" +Detroit,Cape Girardeau(Missouri),,9 hours 2 mins,952 km +Detroit,Branson(Missouri),,11 hours 38 mins,"1,256 km" +Detroit,Fort Leonard Wood(Missouri),,10 hours 8 mins,"1,075 km" +Detroit,St. Louis(Missouri),,7 hours 55 mins,852 km +Kansas City(Missouri),Detroit,,11 hours 13 mins,"1,227 km" +Cape Girardeau(Missouri),Detroit,,9 hours 1 min,951 km +Branson(Missouri),Detroit,,11 hours 35 mins,"1,254 km" +Fort Leonard Wood(Missouri),Detroit,,10 hours 5 mins,"1,073 km" +St. Louis(Missouri),Detroit,,7 hours 53 mins,852 km +Nashville,Salt Lake City(Utah),,23 hours 37 mins,"2,624 km" +Nashville,Moab(Utah),,21 hours 50 mins,"2,429 km" +Nashville,Ogden(Utah),,23 hours 28 mins,"2,616 km" +Nashville,Vernal(Utah),,21 hours 59 mins,"2,387 km" +Nashville,Provo(Utah),,23 hours 51 mins,"2,633 km" +Nashville,Cedar City(Utah),,1 day 1 hour,"2,792 km" +Salt Lake City(Utah),Nashville,,23 hours 34 mins,"2,626 km" +Moab(Utah),Nashville,,21 hours 47 mins,"2,429 km" +Ogden(Utah),Nashville,,23 hours 27 mins,"2,616 km" +Vernal(Utah),Nashville,,21 hours 56 mins,"2,371 km" +Provo(Utah),Nashville,,23 hours 50 mins,"2,634 km" +Cedar City(Utah),Nashville,,1 day 1 hour,"2,791 km" +Charlotte,State College(Pennsylvania),,8 hours 13 mins,839 km +Charlotte,Johnstown(Pennsylvania),,7 hours 30 mins,773 km +Charlotte,Harrisburg(Pennsylvania),,7 hours 10 mins,769 km +Charlotte,Erie(Pennsylvania),,8 hours 41 mins,915 km +Charlotte,Pittsburgh(Pennsylvania),,6 hours 57 mins,720 km +Charlotte,Latrobe(Pennsylvania),,7 hours 9 mins,706 km +Charlotte,Philadelphia(Pennsylvania),,8 hours 11 mins,868 km +Charlotte,Lewisburg(Pennsylvania),,8 hours 9 mins,856 km +Charlotte,Scranton(Pennsylvania),,8 hours 57 mins,957 km +State College(Pennsylvania),Charlotte,,8 hours 11 mins,847 km +Johnstown(Pennsylvania),Charlotte,,7 hours 29 mins,774 km +Harrisburg(Pennsylvania),Charlotte,,7 hours 12 mins,771 km +Erie(Pennsylvania),Charlotte,,8 hours 43 mins,915 km +Pittsburgh(Pennsylvania),Charlotte,,6 hours 56 mins,721 km +Latrobe(Pennsylvania),Charlotte,,7 hours 7 mins,706 km +Philadelphia(Pennsylvania),Charlotte,,8 hours 14 mins,876 km +Lewisburg(Pennsylvania),Charlotte,,8 hours 10 mins,857 km +Scranton(Pennsylvania),Charlotte,,8 hours 56 mins,958 km +Kansas City,Orlando,,17 hours 58 mins,"1,994 km" +Orlando,Kansas City,,17 hours 52 mins,"1,993 km" +Washington,Abilene(Texas),,22 hours 7 mins,"2,428 km" +Washington,Amarillo(Texas),,23 hours 13 mins,"2,576 km" +Washington,Harlingen(Texas),,1 day 1 hour,"2,794 km" +Washington,Lubbock(Texas),,1 day 1 hour,"2,693 km" +Washington,College Station(Texas),,21 hours 17 mins,"2,292 km" +Washington,Corpus Christi(Texas),,23 hours 41 mins,"2,600 km" +Washington,Wichita Falls(Texas),,21 hours 22 mins,"2,373 km" +Washington,Waco(Texas),,20 hours 53 mins,"2,294 km" +Washington,San Angelo(Texas),,23 hours 21 mins,"2,552 km" +Washington,Houston(Texas),,20 hours 33 mins,"2,267 km" +Washington,San Antonio(Texas),,23 hours 25 mins,"2,580 km" +Washington,Del Rio(Texas),,1 day 2 hours,"2,827 km" +Washington,Mission(Texas),,1 day 2 hours,"2,834 km" +Washington,Beaumont(Texas),,19 hours 19 mins,"2,133 km" +Washington,Longview(Texas),,18 hours 23 mins,"2,026 km" +Washington,Midland(Texas),,1 day 0 hours,"2,669 km" +Washington,El Paso(Texas),,1 day 5 hours,"3,159 km" +Washington,Brownsville(Texas),,1 day 2 hours,"2,834 km" +Washington,Austin(Texas),,22 hours 18 mins,"2,452 km" +Washington,Dallas(Texas),,19 hours 30 mins,"2,138 km" +Washington,Killeen(Texas),,21 hours 42 mins,"2,387 km" +Washington,Laredo(Texas),,1 day 2 hours,"2,772 km" +Washington,Texarkana(Texas),,17 hours 1 min,"1,858 km" +Abilene(Texas),Washington,,22 hours 5 mins,"2,428 km" +Amarillo(Texas),Washington,,23 hours 12 mins,"2,576 km" +Harlingen(Texas),Washington,,1 day 1 hour,"2,794 km" +Lubbock(Texas),Washington,,1 day 0 hours,"2,619 km" +College Station(Texas),Washington,,21 hours 11 mins,"2,287 km" +Corpus Christi(Texas),Washington,,23 hours 44 mins,"2,605 km" +Wichita Falls(Texas),Washington,,21 hours 11 mins,"2,286 km" +Waco(Texas),Washington,,20 hours 50 mins,"2,289 km" +San Angelo(Texas),Washington,,23 hours 17 mins,"2,552 km" +Houston(Texas),Washington,,20 hours 32 mins,"2,267 km" +San Antonio(Texas),Washington,,23 hours 25 mins,"2,577 km" +Del Rio(Texas),Washington,,1 day 2 hours,"2,805 km" +Mission(Texas),Washington,,1 day 2 hours,"2,835 km" +Beaumont(Texas),Washington,,19 hours 19 mins,"2,133 km" +Longview(Texas),Washington,,18 hours 21 mins,"2,020 km" +Midland(Texas),Washington,,1 day 0 hours,"2,668 km" +El Paso(Texas),Washington,,1 day 4 hours,"3,158 km" +Brownsville(Texas),Washington,,1 day 2 hours,"2,834 km" +Austin(Texas),Washington,,22 hours 14 mins,"2,451 km" +Dallas(Texas),Washington,,19 hours 28 mins,"2,137 km" +Killeen(Texas),Washington,,21 hours 39 mins,"2,386 km" +Laredo(Texas),Washington,,1 day 1 hour,"2,772 km" +Texarkana(Texas),Washington,,16 hours 59 mins,"1,856 km" +Minneapolis,Moline(Illinois),,5 hours 27 mins,582 km +Minneapolis,Belleville(Illinois),,8 hours 48 mins,927 km +Minneapolis,Bloomington(Illinois),,6 hours 44 mins,743 km +Minneapolis,Champaign(Illinois),,7 hours 25 mins,822 km +Minneapolis,Chicago(Illinois),,6 hours 5 mins,657 km +Minneapolis,Rockford(Illinois),,5 hours 1 min,538 km +Minneapolis,Peoria(Illinois),,6 hours 46 mins,730 km +Moline(Illinois),Minneapolis,,5 hours 26 mins,580 km +Belleville(Illinois),Minneapolis,,8 hours 50 mins,927 km +Bloomington(Illinois),Minneapolis,,6 hours 45 mins,740 km +Champaign(Illinois),Minneapolis,,7 hours 28 mins,825 km +Chicago(Illinois),Minneapolis,,6 hours 5 mins,658 km +Rockford(Illinois),Minneapolis,,5 hours 3 mins,540 km +Peoria(Illinois),Minneapolis,,6 hours 46 mins,729 km +Norfolk,State College(Pennsylvania),,6 hours 23 mins,646 km +Norfolk,Johnstown(Pennsylvania),,5 hours 57 mins,588 km +Norfolk,Harrisburg(Pennsylvania),,4 hours 55 mins,492 km +Norfolk,Erie(Pennsylvania),,8 hours 31 mins,890 km +Norfolk,Pittsburgh(Pennsylvania),,6 hours 48 mins,693 km +Norfolk,Latrobe(Pennsylvania),,6 hours 23 mins,617 km +Norfolk,Philadelphia(Pennsylvania),,5 hours 1 min,445 km +Norfolk,Lewisburg(Pennsylvania),,6 hours 3 mins,591 km +Norfolk,Scranton(Pennsylvania),,6 hours 41 mins,622 km +State College(Pennsylvania),Norfolk,,6 hours 28 mins,655 km +Johnstown(Pennsylvania),Norfolk,,6 hours 2 mins,590 km +Harrisburg(Pennsylvania),Norfolk,,5 hours 1 min,494 km +Erie(Pennsylvania),Norfolk,,8 hours 38 mins,892 km +Pittsburgh(Pennsylvania),Norfolk,,6 hours 52 mins,694 km +Latrobe(Pennsylvania),Norfolk,,6 hours 30 mins,616 km +Philadelphia(Pennsylvania),Norfolk,,5 hours 1 min,445 km +Lewisburg(Pennsylvania),Norfolk,,6 hours 9 mins,598 km +Scranton(Pennsylvania),Norfolk,,6 hours 40 mins,621 km +Minneapolis,Miami,,1 day 2 hours,"2,880 km" +Miami,Minneapolis,,1 day 2 hours,"2,889 km" +Chicago,Bemidji(Minnesota),,9 hours 32 mins,"1,002 km" +Chicago,Minneapolis(Minnesota),,6 hours 5 mins,658 km +Chicago,Duluth(Minnesota),,7 hours 2 mins,754 km +Chicago,Brainerd(Minnesota),,8 hours 1 min,859 km +Chicago,Gustavus(Minnesota),,6 hours 31 mins,705 km +Chicago,St. Cloud(Minnesota),,7 hours 1 min,761 km +Chicago,Hibbing(Minnesota),,8 hours 19 mins,873 km +Chicago,International Falls(Minnesota),,9 hours 43 mins,"1,015 km" +Bemidji(Minnesota),Chicago,,9 hours 33 mins,"1,004 km" +Minneapolis(Minnesota),Chicago,,6 hours 5 mins,657 km +Duluth(Minnesota),Chicago,,7 hours 5 mins,755 km +Brainerd(Minnesota),Chicago,,8 hours 3 mins,861 km +Gustavus(Minnesota),Chicago,,6 hours 33 mins,704 km +St. Cloud(Minnesota),Chicago,,7 hours 4 mins,762 km +Hibbing(Minnesota),Chicago,,8 hours 21 mins,875 km +International Falls(Minnesota),Chicago,,9 hours 45 mins,"1,016 km" +Columbus,Newark,,8 hours 14 mins,844 km +Newark,Columbus,,8 hours 11 mins,844 km +San Juan,Sarasota(Florida),,, +San Juan,Fort Myers(Florida),,, +San Juan,Gainesville(Florida),,, +San Juan,Orlando(Florida),,, +San Juan,Daytona Beach(Florida),,, +San Juan,Jacksonville(Florida),,, +San Juan,Tampa(Florida),,, +San Juan,Panama City(Florida),,, +San Juan,Key West(Florida),,, +San Juan,West Palm Beach(Florida),,, +San Juan,Miami(Florida),,, +San Juan,Tallahassee(Florida),,, +San Juan,Punta Gorda(Florida),,, +San Juan,Fort Lauderdale(Florida),,, +San Juan,Pensacola(Florida),,, +Sarasota(Florida),San Juan,,, +Fort Myers(Florida),San Juan,,, +Gainesville(Florida),San Juan,,, +Orlando(Florida),San Juan,,, +Daytona Beach(Florida),San Juan,,, +Jacksonville(Florida),San Juan,,, +Tampa(Florida),San Juan,,, +Panama City(Florida),San Juan,,, +Key West(Florida),San Juan,,, +West Palm Beach(Florida),San Juan,,, +Miami(Florida),San Juan,,, +Tallahassee(Florida),San Juan,,, +Punta Gorda(Florida),San Juan,,, +Fort Lauderdale(Florida),San Juan,,, +Pensacola(Florida),San Juan,,, +Pittsburgh,Abilene(Texas),,20 hours 22 mins,"2,234 km" +Pittsburgh,Amarillo(Texas),,19 hours 53 mins,"2,186 km" +Pittsburgh,Harlingen(Texas),,1 day 1 hour,"2,681 km" +Pittsburgh,Lubbock(Texas),,21 hours 16 mins,"2,325 km" +Pittsburgh,College Station(Texas),,20 hours 9 mins,"2,126 km" +Pittsburgh,Corpus Christi(Texas),,23 hours 17 mins,"2,487 km" +Pittsburgh,Wichita Falls(Texas),,18 hours 8 mins,"1,990 km" +Pittsburgh,Waco(Texas),,19 hours 27 mins,"2,124 km" +Pittsburgh,San Angelo(Texas),,21 hours 38 mins,"2,368 km" +Pittsburgh,Houston(Texas),,20 hours 9 mins,"2,153 km" +Pittsburgh,San Antonio(Texas),,22 hours 3 mins,"2,409 km" +Pittsburgh,Del Rio(Texas),,1 day 0 hours,"2,621 km" +Pittsburgh,Mission(Texas),,1 day 2 hours,"2,794 km" +Pittsburgh,Beaumont(Texas),,19 hours 29 mins,"2,147 km" +Pittsburgh,Longview(Texas),,17 hours 1 min,"1,829 km" +Pittsburgh,Midland(Texas),,22 hours 14 mins,"2,436 km" +Pittsburgh,El Paso(Texas),,1 day 2 hours,"2,884 km" +Pittsburgh,Brownsville(Texas),,1 day 1 hour,"2,721 km" +Pittsburgh,Austin(Texas),,20 hours 51 mins,"2,283 km" +Pittsburgh,Dallas(Texas),,18 hours 4 mins,"1,968 km" +Pittsburgh,Killeen(Texas),,20 hours 15 mins,"2,217 km" +Pittsburgh,Laredo(Texas),,1 day 0 hours,"2,660 km" +Pittsburgh,Texarkana(Texas),,15 hours 35 mins,"1,689 km" +Abilene(Texas),Pittsburgh,,20 hours 23 mins,"2,234 km" +Amarillo(Texas),Pittsburgh,,19 hours 53 mins,"2,185 km" +Harlingen(Texas),Pittsburgh,,1 day 1 hour,"2,677 km" +Lubbock(Texas),Pittsburgh,,21 hours 13 mins,"2,324 km" +College Station(Texas),Pittsburgh,,20 hours 3 mins,"2,118 km" +Corpus Christi(Texas),Pittsburgh,,23 hours 17 mins,"2,488 km" +Wichita Falls(Texas),Pittsburgh,,18 hours 8 mins,"1,990 km" +Waco(Texas),Pittsburgh,,19 hours 21 mins,"2,116 km" +San Angelo(Texas),Pittsburgh,,21 hours 37 mins,"2,368 km" +Houston(Texas),Pittsburgh,,20 hours 5 mins,"2,149 km" +San Antonio(Texas),Pittsburgh,,21 hours 56 mins,"2,404 km" +Del Rio(Texas),Pittsburgh,,1 day 0 hours,"2,621 km" +Mission(Texas),Pittsburgh,,1 day 1 hour,"2,790 km" +Beaumont(Texas),Pittsburgh,,19 hours 26 mins,"2,143 km" +Longview(Texas),Pittsburgh,,16 hours 58 mins,"1,824 km" +Midland(Texas),Pittsburgh,,22 hours 13 mins,"2,437 km" +El Paso(Texas),Pittsburgh,,1 day 2 hours,"2,881 km" +Brownsville(Texas),Pittsburgh,,1 day 1 hour,"2,717 km" +Austin(Texas),Pittsburgh,,20 hours 45 mins,"2,278 km" +Dallas(Texas),Pittsburgh,,17 hours 59 mins,"1,964 km" +Killeen(Texas),Pittsburgh,,20 hours 10 mins,"2,212 km" +Laredo(Texas),Pittsburgh,,1 day 0 hours,"2,655 km" +Texarkana(Texas),Pittsburgh,,15 hours 30 mins,"1,683 km" +Cincinnati,State College(Pennsylvania),,6 hours 40 mins,686 km +Cincinnati,Johnstown(Pennsylvania),,5 hours 36 mins,574 km +Cincinnati,Harrisburg(Pennsylvania),,7 hours 16 mins,759 km +Cincinnati,Erie(Pennsylvania),,5 hours 8 mins,557 km +Cincinnati,Pittsburgh(Pennsylvania),,4 hours 24 mins,464 km +Cincinnati,Latrobe(Pennsylvania),,5 hours 2 mins,510 km +Cincinnati,Philadelphia(Pennsylvania),,8 hours 44 mins,921 km +Cincinnati,Lewisburg(Pennsylvania),,7 hours 27 mins,810 km +Cincinnati,Scranton(Pennsylvania),,8 hours 37 mins,936 km +State College(Pennsylvania),Cincinnati,,6 hours 42 mins,692 km +Johnstown(Pennsylvania),Cincinnati,,5 hours 38 mins,572 km +Harrisburg(Pennsylvania),Cincinnati,,7 hours 15 mins,758 km +Erie(Pennsylvania),Cincinnati,,5 hours 10 mins,556 km +Pittsburgh(Pennsylvania),Cincinnati,,4 hours 26 mins,465 km +Latrobe(Pennsylvania),Cincinnati,,5 hours 1 min,511 km +Philadelphia(Pennsylvania),Cincinnati,,8 hours 47 mins,922 km +Lewisburg(Pennsylvania),Cincinnati,,7 hours 26 mins,808 km +Scranton(Pennsylvania),Cincinnati,,8 hours 36 mins,933 km +Reno,Austin,,1 day 2 hours,"2,748 km" +Austin,Reno,,1 day 2 hours,"2,775 km" +Durango,Abilene(Texas),,10 hours 53 mins,"1,122 km" +Durango,Amarillo(Texas),,7 hours 36 mins,802 km +Durango,Harlingen(Texas),,17 hours 38 mins,"1,907 km" +Durango,Lubbock(Texas),,8 hours 31 mins,856 km +Durango,College Station(Texas),,15 hours 8 mins,"1,546 km" +Durango,Corpus Christi(Texas),,15 hours 59 mins,"1,732 km" +Durango,Wichita Falls(Texas),,10 hours 53 mins,"1,157 km" +Durango,Waco(Texas),,13 hours 49 mins,"1,423 km" +Durango,San Angelo(Texas),,10 hours 58 mins,"1,156 km" +Durango,Houston(Texas),,16 hours 15 mins,"1,759 km" +Durango,San Antonio(Texas),,14 hours 2 mins,"1,499 km" +Durango,Del Rio(Texas),,13 hours 7 mins,"1,313 km" +Durango,Mission(Texas),,17 hours 37 mins,"1,895 km" +Durango,Beaumont(Texas),,17 hours 15 mins,"1,835 km" +Durango,Longview(Texas),,14 hours 47 mins,"1,584 km" +Durango,Midland(Texas),,9 hours 36 mins,989 km +Durango,El Paso(Texas),,7 hours 17 mins,771 km +Durango,Brownsville(Texas),,17 hours 59 mins,"1,946 km" +Durango,Austin(Texas),,14 hours 19 mins,"1,459 km" +Durango,Dallas(Texas),,12 hours 56 mins,"1,384 km" +Durango,Killeen(Texas),,13 hours 40 mins,"1,395 km" +Durango,Laredo(Texas),,16 hours 2 mins,"1,603 km" +Durango,Texarkana(Texas),,15 hours 13 mins,"1,593 km" +Abilene(Texas),Durango,,10 hours 55 mins,"1,121 km" +Amarillo(Texas),Durango,,7 hours 38 mins,801 km +Harlingen(Texas),Durango,,17 hours 33 mins,"1,903 km" +Lubbock(Texas),Durango,,8 hours 32 mins,855 km +College Station(Texas),Durango,,15 hours 8 mins,"1,549 km" +Corpus Christi(Texas),Durango,,15 hours 57 mins,"1,727 km" +Wichita Falls(Texas),Durango,,10 hours 56 mins,"1,157 km" +Waco(Texas),Durango,,13 hours 52 mins,"1,481 km" +San Angelo(Texas),Durango,,10 hours 57 mins,"1,155 km" +Houston(Texas),Durango,,16 hours 18 mins,"1,759 km" +San Antonio(Texas),Durango,,14 hours 1 min,"1,495 km" +Del Rio(Texas),Durango,,13 hours 7 mins,"1,304 km" +Mission(Texas),Durango,,17 hours 35 mins,"1,892 km" +Beaumont(Texas),Durango,,17 hours 18 mins,"1,834 km" +Longview(Texas),Durango,,14 hours 48 mins,"1,589 km" +Midland(Texas),Durango,,9 hours 36 mins,989 km +El Paso(Texas),Durango,,7 hours 18 mins,771 km +Brownsville(Texas),Durango,,17 hours 57 mins,"1,943 km" +Austin(Texas),Durango,,14 hours 19 mins,"1,486 km" +Dallas(Texas),Durango,,12 hours 57 mins,"1,382 km" +Killeen(Texas),Durango,,13 hours 43 mins,"1,394 km" +Laredo(Texas),Durango,,16 hours 3 mins,"1,594 km" +Texarkana(Texas),Durango,,15 hours 24 mins,"1,606 km" +Manchester,Baltimore,,, +Baltimore,Manchester,,, +Appleton,Greensboro(North Carolina),,14 hours 8 mins,"1,498 km" +Appleton,Wilmington(North Carolina),,17 hours 2 mins,"1,825 km" +Appleton,New Bern(North Carolina),,17 hours 1 min,"1,803 km" +Appleton,Charlotte(North Carolina),,14 hours 27 mins,"1,534 km" +Appleton,Raleigh(North Carolina),,15 hours 18 mins,"1,618 km" +Appleton,Asheville(North Carolina),,12 hours 44 mins,"1,373 km" +Appleton,Fayetteville(North Carolina),,15 hours 38 mins,"1,643 km" +Greensboro(North Carolina),Appleton,,14 hours 12 mins,"1,498 km" +Wilmington(North Carolina),Appleton,,17 hours 5 mins,"1,825 km" +New Bern(North Carolina),Appleton,,17 hours 4 mins,"1,803 km" +Charlotte(North Carolina),Appleton,,14 hours 31 mins,"1,536 km" +Raleigh(North Carolina),Appleton,,15 hours 19 mins,"1,618 km" +Asheville(North Carolina),Appleton,,12 hours 46 mins,"1,372 km" +Fayetteville(North Carolina),Appleton,,15 hours 42 mins,"1,644 km" +Fort Wayne,Charlotte,,9 hours 15 mins,938 km +Charlotte,Fort Wayne,,9 hours 17 mins,939 km +Memphis,Baltimore,,13 hours 30 mins,"1,471 km" +Baltimore,Memphis,,13 hours 28 mins,"1,471 km" +Spokane,Bemidji(Minnesota),,18 hours 39 mins,"2,056 km" +Spokane,Minneapolis(Minnesota),,19 hours 44 mins,"2,218 km" +Spokane,Duluth(Minnesota),,20 hours 43 mins,"2,238 km" +Spokane,Brainerd(Minnesota),,18 hours 44 mins,"2,070 km" +Spokane,Gustavus(Minnesota),,19 hours 54 mins,"2,188 km" +Spokane,St. Cloud(Minnesota),,18 hours 56 mins,"2,117 km" +Spokane,Hibbing(Minnesota),,20 hours 11 mins,"2,183 km" +Spokane,International Falls(Minnesota),,20 hours 31 mins,"2,230 km" +Bemidji(Minnesota),Spokane,,18 hours 37 mins,"2,055 km" +Minneapolis(Minnesota),Spokane,,19 hours 44 mins,"2,218 km" +Duluth(Minnesota),Spokane,,20 hours 43 mins,"2,238 km" +Brainerd(Minnesota),Spokane,,18 hours 43 mins,"2,070 km" +Gustavus(Minnesota),Spokane,,19 hours 56 mins,"2,187 km" +St. Cloud(Minnesota),Spokane,,18 hours 54 mins,"2,124 km" +Hibbing(Minnesota),Spokane,,20 hours 9 mins,"2,182 km" +International Falls(Minnesota),Spokane,,20 hours 30 mins,"2,228 km" +Seattle,San Francisco,,12 hours 28 mins,"1,300 km" +San Francisco,Seattle,,12 hours 25 mins,"1,300 km" +Lawton,Abilene(Texas),,3 hours 6 mins,328 km +Lawton,Amarillo(Texas),,3 hours 30 mins,345 km +Lawton,Harlingen(Texas),,9 hours 53 mins,"1,094 km" +Lawton,Lubbock(Texas),,3 hours 59 mins,419 km +Lawton,College Station(Texas),,5 hours 6 mins,547 km +Lawton,Corpus Christi(Texas),,8 hours 15 mins,919 km +Lawton,Wichita Falls(Texas),,52 mins,84.3 km +Lawton,Waco(Texas),,3 hours 48 mins,412 km +Lawton,San Angelo(Texas),,4 hours 21 mins,463 km +Lawton,Houston(Texas),,6 hours 14 mins,687 km +Lawton,San Antonio(Texas),,6 hours 24 mins,697 km +Lawton,Del Rio(Texas),,6 hours 47 mins,716 km +Lawton,Mission(Texas),,9 hours 53 mins,"1,082 km" +Lawton,Beaumont(Texas),,7 hours 14 mins,762 km +Lawton,Longview(Texas),,4 hours 45 mins,511 km +Lawton,Midland(Texas),,4 hours 57 mins,530 km +Lawton,El Paso(Texas),,9 hours 15 mins,"1,020 km" +Lawton,Brownsville(Texas),,10 hours 15 mins,"1,134 km" +Lawton,Austin(Texas),,5 hours 13 mins,571 km +Lawton,Dallas(Texas),,2 hours 54 mins,311 km +Lawton,Killeen(Texas),,4 hours 36 mins,505 km +Lawton,Laredo(Texas),,8 hours 40 mins,948 km +Lawton,Texarkana(Texas),,5 hours 12 mins,521 km +Abilene(Texas),Lawton,,3 hours 7 mins,329 km +Amarillo(Texas),Lawton,,3 hours 30 mins,346 km +Harlingen(Texas),Lawton,,9 hours 48 mins,"1,094 km" +Lubbock(Texas),Lawton,,3 hours 57 mins,419 km +College Station(Texas),Lawton,,5 hours 4 mins,547 km +Corpus Christi(Texas),Lawton,,8 hours 12 mins,918 km +Wichita Falls(Texas),Lawton,,52 mins,84.9 km +Waco(Texas),Lawton,,3 hours 48 mins,409 km +San Angelo(Texas),Lawton,,4 hours 22 mins,463 km +Houston(Texas),Lawton,,6 hours 14 mins,687 km +San Antonio(Texas),Lawton,,6 hours 23 mins,697 km +Del Rio(Texas),Lawton,,6 hours 45 mins,716 km +Mission(Texas),Lawton,,9 hours 50 mins,"1,083 km" +Beaumont(Texas),Lawton,,7 hours 14 mins,762 km +Longview(Texas),Lawton,,4 hours 44 mins,518 km +Midland(Texas),Lawton,,4 hours 57 mins,532 km +El Paso(Texas),Lawton,,9 hours 15 mins,"1,022 km" +Brownsville(Texas),Lawton,,10 hours 12 mins,"1,134 km" +Austin(Texas),Lawton,,5 hours 12 mins,571 km +Dallas(Texas),Lawton,,2 hours 54 mins,311 km +Killeen(Texas),Lawton,,4 hours 37 mins,506 km +Laredo(Texas),Lawton,,8 hours 41 mins,948 km +Texarkana(Texas),Lawton,,5 hours 15 mins,525 km +Nashville,Detroit,,7 hours 56 mins,859 km +Detroit,Nashville,,7 hours 59 mins,861 km +Austin,Lake Charles(Louisiana),,4 hours 37 mins,494 km +Austin,Baton Rouge(Louisiana),,6 hours 26 mins,696 km +Austin,New Orleans(Louisiana),,7 hours 37 mins,823 km +Austin,Shreveport(Louisiana),,5 hours 13 mins,541 km +Lake Charles(Louisiana),Austin,,4 hours 39 mins,494 km +Baton Rouge(Louisiana),Austin,,6 hours 28 mins,694 km +New Orleans(Louisiana),Austin,,7 hours 39 mins,823 km +Shreveport(Louisiana),Austin,,5 hours 15 mins,541 km +Nashville,State College(Pennsylvania),,10 hours 42 mins,"1,124 km" +Nashville,Johnstown(Pennsylvania),,9 hours 37 mins,"1,012 km" +Nashville,Harrisburg(Pennsylvania),,10 hours 37 mins,"1,158 km" +Nashville,Erie(Pennsylvania),,9 hours 9 mins,995 km +Nashville,Pittsburgh(Pennsylvania),,8 hours 25 mins,902 km +Nashville,Latrobe(Pennsylvania),,9 hours 3 mins,948 km +Nashville,Philadelphia(Pennsylvania),,11 hours 59 mins,"1,295 km" +Nashville,Lewisburg(Pennsylvania),,11 hours 28 mins,"1,248 km" +Nashville,Scranton(Pennsylvania),,12 hours 24 mins,"1,346 km" +State College(Pennsylvania),Nashville,,10 hours 45 mins,"1,131 km" +Johnstown(Pennsylvania),Nashville,,9 hours 41 mins,"1,012 km" +Harrisburg(Pennsylvania),Nashville,,10 hours 38 mins,"1,158 km" +Erie(Pennsylvania),Nashville,,9 hours 13 mins,995 km +Pittsburgh(Pennsylvania),Nashville,,8 hours 29 mins,905 km +Latrobe(Pennsylvania),Nashville,,9 hours 4 mins,950 km +Philadelphia(Pennsylvania),Nashville,,11 hours 59 mins,"1,294 km" +Lewisburg(Pennsylvania),Nashville,,11 hours 30 mins,"1,248 km" +Scranton(Pennsylvania),Nashville,,12 hours 23 mins,"1,345 km" +Charlotte,Charleston(South Carolina),,3 hours 12 mins,336 km +Charlotte,Hilton Head(South Carolina),,3 hours 49 mins,398 km +Charlotte,Greer(South Carolina),,1 hour 36 mins,147 km +Charlotte,Greenville(South Carolina),,1 hour 41 mins,163 km +Charlotte,Myrtle Beach(South Carolina),,3 hours 28 mins,282 km +Charleston(South Carolina),Charlotte,,3 hours 13 mins,336 km +Hilton Head(South Carolina),Charlotte,,3 hours 49 mins,397 km +Greer(South Carolina),Charlotte,,1 hour 36 mins,150 km +Greenville(South Carolina),Charlotte,,1 hour 41 mins,165 km +Myrtle Beach(South Carolina),Charlotte,,3 hours 26 mins,282 km +Houston,Gunnison,,16 hours 5 mins,"1,677 km" +Gunnison,Houston,,16 hours 2 mins,"1,679 km" +Midland,Las Vegas,,14 hours 18 mins,"1,573 km" +Las Vegas,Midland,,14 hours 20 mins,"1,573 km" +El Paso,Alamosa(Colorado),,7 hours 11 mins,753 km +El Paso,Grand Junction(Colorado),,10 hours 46 mins,"1,040 km" +El Paso,Durango(Colorado),,7 hours 18 mins,771 km +El Paso,Colorado Springs(Colorado),,8 hours 31 mins,911 km +El Paso,Gunnison(Colorado),,9 hours 16 mins,945 km +El Paso,Denver(Colorado),,9 hours 34 mins,"1,025 km" +Alamosa(Colorado),El Paso,,7 hours 7 mins,751 km +Grand Junction(Colorado),El Paso,,10 hours 48 mins,"1,040 km" +Durango(Colorado),El Paso,,7 hours 17 mins,771 km +Colorado Springs(Colorado),El Paso,,8 hours 36 mins,914 km +Gunnison(Colorado),El Paso,,9 hours 13 mins,943 km +Denver(Colorado),El Paso,,9 hours 39 mins,"1,026 km" +Ontario,San Diego(California),,, +Ontario,Redding(California),,, +Ontario,Sacramento(California),,, +Ontario,Fresno(California),,, +Ontario,San Luis Obispo(California),,, +Ontario,Oakland(California),,, +Ontario,Santa Barbara(California),,, +Ontario,Stockton(California),,, +Ontario,Santa Rosa(California),,, +Ontario,Bakersfield(California),,, +Ontario,Santa Ana(California),,, +Ontario,Santa Maria(California),,, +Ontario,San Jose(California),,, +Ontario,Burbank(California),,, +Ontario,Arcata(California),,, +Ontario,Butte(California),,, +Ontario,Palm Springs(California),,, +Ontario,Los Angeles(California),,, +Ontario,Long Beach(California),,, +Ontario,San Francisco(California),,, +Ontario,Monterey(California),,, +San Diego(California),Ontario,,, +Redding(California),Ontario,,, +Sacramento(California),Ontario,,, +Fresno(California),Ontario,,, +San Luis Obispo(California),Ontario,,, +Oakland(California),Ontario,,, +Santa Barbara(California),Ontario,,, +Stockton(California),Ontario,,, +Santa Rosa(California),Ontario,,, +Bakersfield(California),Ontario,,, +Santa Ana(California),Ontario,,, +Santa Maria(California),Ontario,,, +San Jose(California),Ontario,,, +Burbank(California),Ontario,,, +Arcata(California),Ontario,,, +Butte(California),Ontario,,, +Palm Springs(California),Ontario,,, +Los Angeles(California),Ontario,,, +Long Beach(California),Ontario,,, +San Francisco(California),Ontario,,, +Monterey(California),Ontario,,, +Cleveland,San Diego(California),,1 day 11 hours,"3,811 km" +Cleveland,Redding(California),,1 day 12 hours,"3,915 km" +Cleveland,Sacramento(California),,1 day 10 hours,"3,813 km" +Cleveland,Fresno(California),,1 day 12 hours,"3,972 km" +Cleveland,San Luis Obispo(California),,1 day 12 hours,"4,015 km" +Cleveland,Oakland(California),,1 day 12 hours,"3,943 km" +Cleveland,Santa Barbara(California),,1 day 11 hours,"3,914 km" +Cleveland,Stockton(California),,1 day 11 hours,"3,889 km" +Cleveland,Santa Rosa(California),,1 day 12 hours,"3,968 km" +Cleveland,Bakersfield(California),,1 day 10 hours,"3,796 km" +Cleveland,Santa Ana(California),,1 day 10 hours,"3,771 km" +Cleveland,Santa Maria(California),,1 day 12 hours,"3,970 km" +Cleveland,San Jose(California),,1 day 12 hours,"4,005 km" +Cleveland,Burbank(California),,1 day 10 hours,"3,781 km" +Cleveland,Arcata(California),,1 day 14 hours,"4,140 km" +Cleveland,Butte(California),,1 day 11 hours,"3,852 km" +Cleveland,Palm Springs(California),,1 day 9 hours,"3,670 km" +Cleveland,Los Angeles(California),,1 day 10 hours,"3,775 km" +Cleveland,Long Beach(California),,1 day 10 hours,"3,794 km" +Cleveland,San Francisco(California),,1 day 12 hours,"3,953 km" +Cleveland,Monterey(California),,1 day 13 hours,"4,113 km" +San Diego(California),Cleveland,,1 day 11 hours,"3,808 km" +Redding(California),Cleveland,,1 day 12 hours,"3,925 km" +Sacramento(California),Cleveland,,1 day 10 hours,"3,822 km" +Fresno(California),Cleveland,,1 day 12 hours,"3,976 km" +San Luis Obispo(California),Cleveland,,1 day 13 hours,"4,022 km" +Oakland(California),Cleveland,,1 day 12 hours,"3,952 km" +Santa Barbara(California),Cleveland,,1 day 11 hours,"3,918 km" +Stockton(California),Cleveland,,1 day 11 hours,"3,899 km" +Santa Rosa(California),Cleveland,,1 day 12 hours,"3,977 km" +Bakersfield(California),Cleveland,,1 day 10 hours,"3,801 km" +Santa Ana(California),Cleveland,,1 day 10 hours,"3,772 km" +Santa Maria(California),Cleveland,,1 day 12 hours,"3,977 km" +San Jose(California),Cleveland,,1 day 12 hours,"4,013 km" +Burbank(California),Cleveland,,1 day 10 hours,"3,779 km" +Arcata(California),Cleveland,,1 day 14 hours,"4,148 km" +Butte(California),Cleveland,,1 day 11 hours,"3,847 km" +Palm Springs(California),Cleveland,,1 day 9 hours,"3,670 km" +Los Angeles(California),Cleveland,,1 day 10 hours,"3,775 km" +Long Beach(California),Cleveland,,1 day 10 hours,"3,802 km" +San Francisco(California),Cleveland,,1 day 12 hours,"3,962 km" +Monterey(California),Cleveland,,1 day 13 hours,"4,120 km" +Minneapolis,Abilene(Texas),,15 hours 28 mins,"1,732 km" +Minneapolis,Amarillo(Texas),,14 hours 59 mins,"1,684 km" +Minneapolis,Harlingen(Texas),,21 hours 28 mins,"2,409 km" +Minneapolis,Lubbock(Texas),,16 hours 22 mins,"1,823 km" +Minneapolis,College Station(Texas),,16 hours 41 mins,"1,863 km" +Minneapolis,Corpus Christi(Texas),,19 hours 50 mins,"2,234 km" +Minneapolis,Wichita Falls(Texas),,13 hours 14 mins,"1,488 km" +Minneapolis,Waco(Texas),,15 hours 23 mins,"1,727 km" +Minneapolis,San Angelo(Texas),,16 hours 44 mins,"1,867 km" +Minneapolis,Houston(Texas),,17 hours 26 mins,"1,893 km" +Minneapolis,San Antonio(Texas),,17 hours 59 mins,"2,013 km" +Minneapolis,Del Rio(Texas),,19 hours 9 mins,"2,120 km" +Minneapolis,Mission(Texas),,21 hours 28 mins,"2,398 km" +Minneapolis,Beaumont(Texas),,17 hours 56 mins,"1,863 km" +Minneapolis,Longview(Texas),,14 hours 44 mins,"1,556 km" +Minneapolis,Midland(Texas),,17 hours 20 mins,"1,934 km" +Minneapolis,El Paso(Texas),,21 hours 1 min,"2,214 km" +Minneapolis,Brownsville(Texas),,21 hours 50 mins,"2,449 km" +Minneapolis,Austin(Texas),,16 hours 47 mins,"1,886 km" +Minneapolis,Dallas(Texas),,14 hours 6 mins,"1,512 km" +Minneapolis,Killeen(Texas),,16 hours 11 mins,"1,820 km" +Minneapolis,Laredo(Texas),,20 hours 15 mins,"2,263 km" +Minneapolis,Texarkana(Texas),,13 hours 59 mins,"1,469 km" +Abilene(Texas),Minneapolis,,15 hours 27 mins,"1,730 km" +Amarillo(Texas),Minneapolis,,14 hours 57 mins,"1,680 km" +Harlingen(Texas),Minneapolis,,21 hours 21 mins,"2,406 km" +Lubbock(Texas),Minneapolis,,16 hours 17 mins,"1,820 km" +College Station(Texas),Minneapolis,,16 hours 37 mins,"1,859 km" +Corpus Christi(Texas),Minneapolis,,19 hours 45 mins,"2,230 km" +Wichita Falls(Texas),Minneapolis,,13 hours 12 mins,"1,485 km" +Waco(Texas),Minneapolis,,15 hours 21 mins,"1,721 km" +San Angelo(Texas),Minneapolis,,16 hours 41 mins,"1,863 km" +Houston(Texas),Minneapolis,,17 hours 25 mins,"1,896 km" +San Antonio(Texas),Minneapolis,,17 hours 56 mins,"2,009 km" +Del Rio(Texas),Minneapolis,,19 hours 5 mins,"2,117 km" +Mission(Texas),Minneapolis,,21 hours 23 mins,"2,395 km" +Beaumont(Texas),Minneapolis,,17 hours 57 mins,"1,878 km" +Longview(Texas),Minneapolis,,14 hours 42 mins,"1,559 km" +Midland(Texas),Minneapolis,,17 hours 17 mins,"1,932 km" +El Paso(Texas),Minneapolis,,20 hours 57 mins,"2,211 km" +Brownsville(Texas),Minneapolis,,21 hours 45 mins,"2,446 km" +Austin(Texas),Minneapolis,,16 hours 46 mins,"1,883 km" +Dallas(Texas),Minneapolis,,14 hours 7 mins,"1,516 km" +Killeen(Texas),Minneapolis,,16 hours 10 mins,"1,817 km" +Laredo(Texas),Minneapolis,,20 hours 14 mins,"2,260 km" +Texarkana(Texas),Minneapolis,,13 hours 53 mins,"1,465 km" +Orlando,San Diego(California),,1 day 11 hours,"3,915 km" +Orlando,Redding(California),,1 day 19 hours,"4,795 km" +Orlando,Sacramento(California),,1 day 17 hours,"4,530 km" +Orlando,Fresno(California),,1 day 14 hours,"4,260 km" +Orlando,San Luis Obispo(California),,1 day 15 hours,"4,343 km" +Orlando,Oakland(California),,1 day 17 hours,"4,521 km" +Orlando,Santa Barbara(California),,1 day 13 hours,"4,192 km" +Orlando,Stockton(California),,1 day 16 hours,"4,459 km" +Orlando,Santa Rosa(California),,1 day 18 hours,"4,613 km" +Orlando,Bakersfield(California),,1 day 13 hours,"4,084 km" +Orlando,Santa Ana(California),,1 day 12 hours,"4,040 km" +Orlando,Santa Maria(California),,1 day 14 hours,"4,294 km" +Orlando,San Jose(California),,1 day 17 hours,"4,471 km" +Orlando,Burbank(California),,1 day 12 hours,"4,059 km" +Orlando,Arcata(California),,1 day 22 hours,"4,974 km" +Orlando,Butte(California),,1 day 18 hours,"4,669 km" +Orlando,Palm Springs(California),,1 day 10 hours,"3,870 km" +Orlando,Los Angeles(California),,1 day 12 hours,"4,041 km" +Orlando,Long Beach(California),,1 day 12 hours,"4,055 km" +Orlando,San Francisco(California),,1 day 17 hours,"4,539 km" +Orlando,Monterey(California),,1 day 16 hours,"4,438 km" +San Diego(California),Orlando,,1 day 11 hours,"3,913 km" +Redding(California),Orlando,,1 day 19 hours,"4,780 km" +Sacramento(California),Orlando,,1 day 17 hours,"4,522 km" +Fresno(California),Orlando,,1 day 15 hours,"4,250 km" +San Luis Obispo(California),Orlando,,1 day 15 hours,"4,344 km" +Oakland(California),Orlando,,1 day 17 hours,"4,513 km" +Santa Barbara(California),Orlando,,1 day 13 hours,"4,193 km" +Stockton(California),Orlando,,1 day 16 hours,"4,450 km" +Santa Rosa(California),Orlando,,1 day 18 hours,"4,606 km" +Bakersfield(California),Orlando,,1 day 13 hours,"4,075 km" +Santa Ana(California),Orlando,,1 day 12 hours,"4,015 km" +Santa Maria(California),Orlando,,1 day 15 hours,"4,295 km" +San Jose(California),Orlando,,1 day 17 hours,"4,463 km" +Burbank(California),Orlando,,1 day 12 hours,"4,054 km" +Arcata(California),Orlando,,1 day 22 hours,"4,967 km" +Butte(California),Orlando,,1 day 19 hours,"4,655 km" +Palm Springs(California),Orlando,,1 day 10 hours,"3,871 km" +Los Angeles(California),Orlando,,1 day 12 hours,"4,037 km" +Long Beach(California),Orlando,,1 day 12 hours,"4,049 km" +San Francisco(California),Orlando,,1 day 17 hours,"4,531 km" +Monterey(California),Orlando,,1 day 17 hours,"4,430 km" +Atlanta,Alamosa(Colorado),,21 hours 3 mins,"2,298 km" +Atlanta,Grand Junction(Colorado),,23 hours 56 mins,"2,646 km" +Atlanta,Durango(Colorado),,23 hours 28 mins,"2,589 km" +Atlanta,Colorado Springs(Colorado),,20 hours 13 mins,"2,231 km" +Atlanta,Gunnison(Colorado),,23 hours 1 min,"2,459 km" +Atlanta,Denver(Colorado),,20 hours 16 mins,"2,257 km" +Alamosa(Colorado),Atlanta,,21 hours 3 mins,"2,284 km" +Grand Junction(Colorado),Atlanta,,23 hours 50 mins,"2,644 km" +Durango(Colorado),Atlanta,,23 hours 26 mins,"2,575 km" +Colorado Springs(Colorado),Atlanta,,20 hours 10 mins,"2,230 km" +Gunnison(Colorado),Atlanta,,22 hours 59 mins,"2,445 km" +Denver(Colorado),Atlanta,,20 hours 14 mins,"2,259 km" +Columbus,Alamosa(Colorado),,20 hours 2 mins,"2,168 km" +Columbus,Grand Junction(Colorado),,21 hours 55 mins,"2,415 km" +Columbus,Durango(Colorado),,22 hours 54 mins,"2,408 km" +Columbus,Colorado Springs(Colorado),,18 hours 12 mins,"2,000 km" +Columbus,Gunnison(Colorado),,21 hours 23 mins,"2,276 km" +Columbus,Denver(Colorado),,18 hours 16 mins,"2,026 km" +Alamosa(Colorado),Columbus,,19 hours 56 mins,"2,168 km" +Grand Junction(Colorado),Columbus,,21 hours 47 mins,"2,414 km" +Durango(Colorado),Columbus,,22 hours 47 mins,"2,408 km" +Colorado Springs(Colorado),Columbus,,18 hours 6 mins,"2,000 km" +Gunnison(Colorado),Columbus,,21 hours 14 mins,"2,266 km" +Denver(Colorado),Columbus,,18 hours 11 mins,"2,029 km" +Dayton,Abilene(Texas),,16 hours 46 mins,"1,843 km" +Dayton,Amarillo(Texas),,16 hours 17 mins,"1,796 km" +Dayton,Harlingen(Texas),,21 hours 32 mins,"2,301 km" +Dayton,Lubbock(Texas),,17 hours 39 mins,"1,934 km" +Dayton,College Station(Texas),,16 hours 38 mins,"1,746 km" +Dayton,Corpus Christi(Texas),,19 hours 46 mins,"2,107 km" +Dayton,Wichita Falls(Texas),,14 hours 32 mins,"1,599 km" +Dayton,Waco(Texas),,15 hours 56 mins,"1,744 km" +Dayton,San Angelo(Texas),,18 hours 2 mins,"1,978 km" +Dayton,Houston(Texas),,16 hours 38 mins,"1,773 km" +Dayton,San Antonio(Texas),,18 hours 32 mins,"2,029 km" +Dayton,Del Rio(Texas),,20 hours 27 mins,"2,231 km" +Dayton,Mission(Texas),,22 hours 1 min,"2,414 km" +Dayton,Beaumont(Texas),,15 hours 57 mins,"1,767 km" +Dayton,Longview(Texas),,13 hours 30 mins,"1,449 km" +Dayton,Midland(Texas),,18 hours 37 mins,"2,045 km" +Dayton,El Paso(Texas),,22 hours 52 mins,"2,493 km" +Dayton,Brownsville(Texas),,21 hours 53 mins,"2,341 km" +Dayton,Austin(Texas),,17 hours 20 mins,"1,903 km" +Dayton,Dallas(Texas),,14 hours 32 mins,"1,588 km" +Dayton,Killeen(Texas),,16 hours 44 mins,"1,837 km" +Dayton,Laredo(Texas),,20 hours 48 mins,"2,280 km" +Dayton,Texarkana(Texas),,12 hours 3 mins,"1,309 km" +Abilene(Texas),Dayton,,16 hours 46 mins,"1,845 km" +Amarillo(Texas),Dayton,,16 hours 15 mins,"1,795 km" +Harlingen(Texas),Dayton,,21 hours 25 mins,"2,299 km" +Lubbock(Texas),Dayton,,17 hours 35 mins,"1,935 km" +College Station(Texas),Dayton,,16 hours 32 mins,"1,741 km" +Corpus Christi(Texas),Dayton,,19 hours 47 mins,"2,110 km" +Wichita Falls(Texas),Dayton,,14 hours 30 mins,"1,600 km" +Waco(Texas),Dayton,,15 hours 51 mins,"1,738 km" +San Angelo(Texas),Dayton,,18 hours 0 mins,"1,978 km" +Houston(Texas),Dayton,,16 hours 35 mins,"1,772 km" +San Antonio(Texas),Dayton,,18 hours 26 mins,"2,026 km" +Del Rio(Texas),Dayton,,20 hours 23 mins,"2,232 km" +Mission(Texas),Dayton,,21 hours 53 mins,"2,412 km" +Beaumont(Texas),Dayton,,15 hours 56 mins,"1,765 km" +Longview(Texas),Dayton,,13 hours 27 mins,"1,446 km" +Midland(Texas),Dayton,,18 hours 35 mins,"2,047 km" +El Paso(Texas),Dayton,,22 hours 48 mins,"2,492 km" +Brownsville(Texas),Dayton,,21 hours 49 mins,"2,339 km" +Austin(Texas),Dayton,,17 hours 15 mins,"1,900 km" +Dallas(Texas),Dayton,,14 hours 29 mins,"1,586 km" +Killeen(Texas),Dayton,,16 hours 40 mins,"1,834 km" +Laredo(Texas),Dayton,,20 hours 44 mins,"2,277 km" +Texarkana(Texas),Dayton,,12 hours 0 mins,"1,305 km" +Chicago,Ogdensburg,,11 hours 9 mins,"1,184 km" +Ogdensburg,Chicago,,11 hours 12 mins,"1,184 km" +Reno,Dallas,,1 day 0 hours,"2,673 km" +Dallas,Reno,,1 day 0 hours,"2,672 km" +Omaha,Las Vegas,,18 hours 19 mins,"2,067 km" +Las Vegas,Omaha,,18 hours 15 mins,"2,065 km" +Nashville,Greensboro(North Carolina),,7 hours 0 mins,748 km +Nashville,Wilmington(North Carolina),,9 hours 36 mins,988 km +Nashville,New Bern(North Carolina),,9 hours 54 mins,"1,053 km" +Nashville,Charlotte(North Carolina),,6 hours 25 mins,659 km +Nashville,Raleigh(North Carolina),,8 hours 10 mins,868 km +Nashville,Asheville(North Carolina),,4 hours 31 mins,474 km +Nashville,Fayetteville(North Carolina),,8 hours 31 mins,893 km +Greensboro(North Carolina),Nashville,,7 hours 0 mins,747 km +Wilmington(North Carolina),Nashville,,9 hours 37 mins,989 km +New Bern(North Carolina),Nashville,,9 hours 53 mins,"1,052 km" +Charlotte(North Carolina),Nashville,,6 hours 25 mins,657 km +Raleigh(North Carolina),Nashville,,8 hours 8 mins,867 km +Asheville(North Carolina),Nashville,,4 hours 31 mins,474 km +Fayetteville(North Carolina),Nashville,,8 hours 31 mins,893 km +Salt Lake City,Las Vegas,,5 hours 55 mins,677 km +Las Vegas,Salt Lake City,,5 hours 57 mins,676 km +Houston,Alamosa(Colorado),,14 hours 7 mins,"1,516 km" +Houston,Grand Junction(Colorado),,18 hours 24 mins,"1,877 km" +Houston,Durango(Colorado),,16 hours 18 mins,"1,759 km" +Houston,Colorado Springs(Colorado),,14 hours 13 mins,"1,546 km" +Houston,Gunnison(Colorado),,16 hours 5 mins,"1,677 km" +Houston,Denver(Colorado),,15 hours 16 mins,"1,659 km" +Alamosa(Colorado),Houston,,14 hours 5 mins,"1,518 km" +Grand Junction(Colorado),Houston,,18 hours 27 mins,"1,879 km" +Durango(Colorado),Houston,,16 hours 15 mins,"1,759 km" +Colorado Springs(Colorado),Houston,,14 hours 13 mins,"1,551 km" +Gunnison(Colorado),Houston,,16 hours 2 mins,"1,679 km" +Denver(Colorado),Houston,,15 hours 16 mins,"1,662 km" +Des Moines,Detroit,,8 hours 49 mins,964 km +Detroit,Des Moines,,8 hours 53 mins,965 km +Los Angeles,Abilene(Texas),,18 hours 11 mins,"2,017 km" +Los Angeles,Amarillo(Texas),,15 hours 31 mins,"1,726 km" +Los Angeles,Harlingen(Texas),,23 hours 4 mins,"2,583 km" +Los Angeles,Lubbock(Texas),,16 hours 26 mins,"1,780 km" +Los Angeles,College Station(Texas),,21 hours 49 mins,"2,376 km" +Los Angeles,Corpus Christi(Texas),,21 hours 26 mins,"2,408 km" +Los Angeles,Wichita Falls(Texas),,18 hours 48 mins,"2,080 km" +Los Angeles,Waco(Texas),,20 hours 50 mins,"2,278 km" +Los Angeles,San Angelo(Texas),,17 hours 34 mins,"1,939 km" +Los Angeles,Houston(Texas),,22 hours 17 mins,"2,490 km" +Los Angeles,San Antonio(Texas),,19 hours 28 mins,"2,175 km" +Los Angeles,Del Rio(Texas),,18 hours 2 mins,"1,971 km" +Los Angeles,Mission(Texas),,23 hours 4 mins,"2,571 km" +Los Angeles,Beaumont(Texas),,23 hours 32 mins,"2,624 km" +Los Angeles,Longview(Texas),,22 hours 32 mins,"2,515 km" +Los Angeles,Midland(Texas),,16 hours 6 mins,"1,780 km" +Los Angeles,El Paso(Texas),,11 hours 43 mins,"1,289 km" +Los Angeles,Brownsville(Texas),,23 hours 26 mins,"2,623 km" +Los Angeles,Austin(Texas),,20 hours 18 mins,"2,215 km" +Los Angeles,Dallas(Texas),,20 hours 44 mins,"2,310 km" +Los Angeles,Killeen(Texas),,20 hours 7 mins,"2,209 km" +Los Angeles,Laredo(Texas),,20 hours 58 mins,"2,261 km" +Los Angeles,Texarkana(Texas),,23 hours 8 mins,"2,517 km" +Abilene(Texas),Los Angeles,,18 hours 16 mins,"2,022 km" +Amarillo(Texas),Los Angeles,,15 hours 36 mins,"1,730 km" +Harlingen(Texas),Los Angeles,,23 hours 5 mins,"2,588 km" +Lubbock(Texas),Los Angeles,,16 hours 30 mins,"1,784 km" +College Station(Texas),Los Angeles,,21 hours 54 mins,"2,387 km" +Corpus Christi(Texas),Los Angeles,,21 hours 29 mins,"2,412 km" +Wichita Falls(Texas),Los Angeles,,18 hours 54 mins,"2,085 km" +Waco(Texas),Los Angeles,,20 hours 56 mins,"2,283 km" +San Angelo(Texas),Los Angeles,,17 hours 39 mins,"1,943 km" +Houston(Texas),Los Angeles,,22 hours 21 mins,"2,494 km" +San Antonio(Texas),Los Angeles,,19 hours 32 mins,"2,180 km" +Del Rio(Texas),Los Angeles,,18 hours 8 mins,"1,977 km" +Mission(Texas),Los Angeles,,23 hours 7 mins,"2,577 km" +Beaumont(Texas),Los Angeles,,23 hours 39 mins,"2,629 km" +Longview(Texas),Los Angeles,,22 hours 38 mins,"2,520 km" +Midland(Texas),Los Angeles,,16 hours 10 mins,"1,784 km" +El Paso(Texas),Los Angeles,,11 hours 49 mins,"1,294 km" +Brownsville(Texas),Los Angeles,,23 hours 29 mins,"2,628 km" +Austin(Texas),Los Angeles,,20 hours 22 mins,"2,221 km" +Dallas(Texas),Los Angeles,,20 hours 51 mins,"2,314 km" +Killeen(Texas),Los Angeles,,20 hours 11 mins,"2,213 km" +Laredo(Texas),Los Angeles,,21 hours 4 mins,"2,266 km" +Texarkana(Texas),Los Angeles,,23 hours 22 mins,"2,534 km" +Denver,Miami,,1 day 6 hours,"3,325 km" +Miami,Denver,,1 day 6 hours,"3,325 km" +Milwaukee,Buffalo(New York),,9 hours 33 mins,"1,011 km" +Milwaukee,Manhattan(New York),,13 hours 32 mins,"1,431 km" +Milwaukee,Niagara Falls(New York),,9 hours 54 mins,"1,041 km" +Milwaukee,Islip(New York),,14 hours 19 mins,"1,501 km" +Milwaukee,New York(New York),,13 hours 29 mins,"1,417 km" +Milwaukee,Watertown(New York),,12 hours 33 mins,"1,339 km" +Milwaukee,Newburgh(New York),,13 hours 25 mins,"1,430 km" +Milwaukee,Syracuse(New York),,11 hours 36 mins,"1,237 km" +Milwaukee,Plattsburgh(New York),,14 hours 38 mins,"1,531 km" +Milwaukee,Ogdensburg(New York),,12 hours 34 mins,"1,343 km" +Milwaukee,Ithaca(New York),,11 hours 44 mins,"1,230 km" +Milwaukee,Elmira(New York),,11 hours 13 mins,"1,192 km" +Milwaukee,White Plains(New York),,13 hours 36 mins,"1,455 km" +Milwaukee,Albany(New York),,13 hours 36 mins,"1,463 km" +Milwaukee,Binghamton(New York),,12 hours 2 mins,"1,280 km" +Milwaukee,Rochester(New York),,10 hours 31 mins,"1,115 km" +Buffalo(New York),Milwaukee,,9 hours 30 mins,"1,010 km" +Manhattan(New York),Milwaukee,,13 hours 25 mins,"1,429 km" +Niagara Falls(New York),Milwaukee,,9 hours 51 mins,"1,040 km" +Islip(New York),Milwaukee,,14 hours 15 mins,"1,498 km" +New York(New York),Milwaukee,,13 hours 22 mins,"1,416 km" +Watertown(New York),Milwaukee,,12 hours 30 mins,"1,338 km" +Newburgh(New York),Milwaukee,,13 hours 22 mins,"1,429 km" +Syracuse(New York),Milwaukee,,11 hours 33 mins,"1,236 km" +Plattsburgh(New York),Milwaukee,,14 hours 40 mins,"1,516 km" +Ogdensburg(New York),Milwaukee,,12 hours 35 mins,"1,329 km" +Ithaca(New York),Milwaukee,,11 hours 39 mins,"1,229 km" +Elmira(New York),Milwaukee,,11 hours 9 mins,"1,192 km" +White Plains(New York),Milwaukee,,13 hours 32 mins,"1,453 km" +Albany(New York),Milwaukee,,13 hours 33 mins,"1,460 km" +Binghamton(New York),Milwaukee,,11 hours 58 mins,"1,279 km" +Rochester(New York),Milwaukee,,10 hours 28 mins,"1,115 km" +Marquette,Pellston(Michigan),,6 hours 12 mins,622 km +Marquette,Traverse City(Michigan),,6 hours 17 mins,673 km +Marquette,Alpena(Michigan),,7 hours 35 mins,747 km +Marquette,Iron Mountain(Michigan),,3 hours 22 mins,343 km +Marquette,Kalamazoo(Michigan),,3 hours 45 mins,395 km +Marquette,Saginaw(Michigan),,5 hours 56 mins,630 km +Marquette,Grand Rapids(Michigan),,4 hours 11 mins,444 km +Marquette,Lansing(Michigan),,4 hours 46 mins,510 km +Marquette,Muskegon(Michigan),,4 hours 27 mins,458 km +Marquette,Hancock(Michigan),,5 hours 18 mins,523 km +Marquette,Detroit(Michigan),,5 hours 39 mins,613 km +Marquette,Escanaba(Michigan),,3 hours 34 mins,362 km +Pellston(Michigan),Marquette,,6 hours 14 mins,624 km +Traverse City(Michigan),Marquette,,6 hours 17 mins,662 km +Alpena(Michigan),Marquette,,7 hours 36 mins,748 km +Iron Mountain(Michigan),Marquette,,3 hours 21 mins,344 km +Kalamazoo(Michigan),Marquette,,3 hours 44 mins,383 km +Saginaw(Michigan),Marquette,,5 hours 51 mins,615 km +Grand Rapids(Michigan),Marquette,,4 hours 7 mins,434 km +Lansing(Michigan),Marquette,,4 hours 45 mins,498 km +Muskegon(Michigan),Marquette,,4 hours 24 mins,446 km +Hancock(Michigan),Marquette,,5 hours 18 mins,524 km +Detroit(Michigan),Marquette,,5 hours 40 mins,602 km +Escanaba(Michigan),Marquette,,3 hours 34 mins,363 km +Montgomery,Abilene(Texas),,12 hours 21 mins,"1,338 km" +Montgomery,Amarillo(Texas),,15 hours 8 mins,"1,702 km" +Montgomery,Harlingen(Texas),,14 hours 1 min,"1,547 km" +Montgomery,Lubbock(Texas),,14 hours 44 mins,"1,602 km" +Montgomery,College Station(Texas),,10 hours 32 mins,"1,165 km" +Montgomery,Corpus Christi(Texas),,12 hours 16 mins,"1,352 km" +Montgomery,Wichita Falls(Texas),,11 hours 47 mins,"1,276 km" +Montgomery,Waco(Texas),,10 hours 49 mins,"1,124 km" +Montgomery,San Angelo(Texas),,13 hours 35 mins,"1,461 km" +Montgomery,Houston(Texas),,9 hours 8 mins,"1,019 km" +Montgomery,San Antonio(Texas),,12 hours 0 mins,"1,333 km" +Montgomery,Del Rio(Texas),,14 hours 23 mins,"1,580 km" +Montgomery,Mission(Texas),,14 hours 28 mins,"1,587 km" +Montgomery,Beaumont(Texas),,7 hours 55 mins,886 km +Montgomery,Longview(Texas),,8 hours 3 mins,849 km +Montgomery,Midland(Texas),,14 hours 29 mins,"1,578 km" +Montgomery,El Paso(Texas),,18 hours 47 mins,"2,068 km" +Montgomery,Brownsville(Texas),,14 hours 23 mins,"1,586 km" +Montgomery,Austin(Texas),,11 hours 36 mins,"1,282 km" +Montgomery,Dallas(Texas),,9 hours 46 mins,"1,049 km" +Montgomery,Killeen(Texas),,11 hours 37 mins,"1,220 km" +Montgomery,Laredo(Texas),,14 hours 8 mins,"1,525 km" +Montgomery,Texarkana(Texas),,8 hours 5 mins,860 km +Abilene(Texas),Montgomery,,12 hours 19 mins,"1,334 km" +Amarillo(Texas),Montgomery,,15 hours 8 mins,"1,689 km" +Harlingen(Texas),Montgomery,,13 hours 57 mins,"1,547 km" +Lubbock(Texas),Montgomery,,14 hours 38 mins,"1,600 km" +College Station(Texas),Montgomery,,10 hours 30 mins,"1,168 km" +Corpus Christi(Texas),Montgomery,,12 hours 19 mins,"1,358 km" +Wichita Falls(Texas),Montgomery,,11 hours 48 mins,"1,264 km" +Waco(Texas),Montgomery,,10 hours 45 mins,"1,120 km" +San Angelo(Texas),Montgomery,,13 hours 31 mins,"1,458 km" +Houston(Texas),Montgomery,,9 hours 7 mins,"1,019 km" +San Antonio(Texas),Montgomery,,12 hours 0 mins,"1,333 km" +Del Rio(Texas),Montgomery,,14 hours 25 mins,"1,580 km" +Mission(Texas),Montgomery,,14 hours 25 mins,"1,587 km" +Beaumont(Texas),Montgomery,,7 hours 55 mins,886 km +Longview(Texas),Montgomery,,8 hours 1 min,844 km +Midland(Texas),Montgomery,,14 hours 25 mins,"1,574 km" +El Paso(Texas),Montgomery,,18 hours 43 mins,"2,064 km" +Brownsville(Texas),Montgomery,,14 hours 21 mins,"1,587 km" +Austin(Texas),Montgomery,,11 hours 34 mins,"1,282 km" +Dallas(Texas),Montgomery,,9 hours 45 mins,"1,043 km" +Killeen(Texas),Montgomery,,11 hours 36 mins,"1,216 km" +Laredo(Texas),Montgomery,,14 hours 5 mins,"1,525 km" +Texarkana(Texas),Montgomery,,8 hours 6 mins,862 km +Newark,Bemidji(Minnesota),,21 hours 6 mins,"2,254 km" +Newark,Minneapolis(Minnesota),,17 hours 39 mins,"1,910 km" +Newark,Duluth(Minnesota),,18 hours 37 mins,"2,006 km" +Newark,Brainerd(Minnesota),,19 hours 35 mins,"2,111 km" +Newark,Gustavus(Minnesota),,18 hours 6 mins,"1,957 km" +Newark,St. Cloud(Minnesota),,18 hours 36 mins,"2,013 km" +Newark,Hibbing(Minnesota),,19 hours 54 mins,"2,125 km" +Newark,International Falls(Minnesota),,21 hours 18 mins,"2,267 km" +Bemidji(Minnesota),Newark,,21 hours 5 mins,"2,266 km" +Minneapolis(Minnesota),Newark,,17 hours 37 mins,"1,919 km" +Duluth(Minnesota),Newark,,18 hours 37 mins,"2,017 km" +Brainerd(Minnesota),Newark,,19 hours 35 mins,"2,123 km" +Gustavus(Minnesota),Newark,,18 hours 5 mins,"1,966 km" +St. Cloud(Minnesota),Newark,,18 hours 36 mins,"2,024 km" +Hibbing(Minnesota),Newark,,19 hours 54 mins,"2,137 km" +International Falls(Minnesota),Newark,,21 hours 17 mins,"2,278 km" +Key West,State College(Pennsylvania),,21 hours 20 mins,"2,278 km" +Key West,Johnstown(Pennsylvania),,20 hours 49 mins,"2,196 km" +Key West,Harrisburg(Pennsylvania),,19 hours 52 mins,"2,124 km" +Key West,Erie(Pennsylvania),,22 hours 0 mins,"2,338 km" +Key West,Pittsburgh(Pennsylvania),,20 hours 16 mins,"2,143 km" +Key West,Latrobe(Pennsylvania),,20 hours 28 mins,"2,129 km" +Key West,Philadelphia(Pennsylvania),,20 hours 20 mins,"2,171 km" +Key West,Lewisburg(Pennsylvania),,21 hours 0 mins,"2,223 km" +Key West,Scranton(Pennsylvania),,21 hours 43 mins,"2,321 km" +State College(Pennsylvania),Key West,,21 hours 29 mins,"2,288 km" +Johnstown(Pennsylvania),Key West,,20 hours 49 mins,"2,198 km" +Harrisburg(Pennsylvania),Key West,,20 hours 3 mins,"2,127 km" +Erie(Pennsylvania),Key West,,22 hours 3 mins,"2,340 km" +Pittsburgh(Pennsylvania),Key West,,20 hours 16 mins,"2,145 km" +Latrobe(Pennsylvania),Key West,,20 hours 27 mins,"2,131 km" +Philadelphia(Pennsylvania),Key West,,20 hours 25 mins,"2,179 km" +Lewisburg(Pennsylvania),Key West,,21 hours 10 mins,"2,231 km" +Scranton(Pennsylvania),Key West,,21 hours 54 mins,"2,325 km" +Cincinnati,Norfolk,,9 hours 33 mins,974 km +Norfolk,Cincinnati,,9 hours 32 mins,976 km +Indianapolis,Abilene(Texas),,15 hours 2 mins,"1,656 km" +Indianapolis,Amarillo(Texas),,14 hours 33 mins,"1,608 km" +Indianapolis,Harlingen(Texas),,20 hours 14 mins,"2,145 km" +Indianapolis,Lubbock(Texas),,15 hours 56 mins,"1,746 km" +Indianapolis,College Station(Texas),,15 hours 20 mins,"1,590 km" +Indianapolis,Corpus Christi(Texas),,18 hours 28 mins,"1,950 km" +Indianapolis,Wichita Falls(Texas),,12 hours 48 mins,"1,412 km" +Indianapolis,Waco(Texas),,14 hours 38 mins,"1,587 km" +Indianapolis,San Angelo(Texas),,16 hours 18 mins,"1,790 km" +Indianapolis,Houston(Texas),,15 hours 20 mins,"1,617 km" +Indianapolis,San Antonio(Texas),,17 hours 14 mins,"1,873 km" +Indianapolis,Del Rio(Texas),,18 hours 43 mins,"2,043 km" +Indianapolis,Mission(Texas),,20 hours 43 mins,"2,258 km" +Indianapolis,Beaumont(Texas),,15 hours 1 min,"1,571 km" +Indianapolis,Longview(Texas),,12 hours 12 mins,"1,292 km" +Indianapolis,Midland(Texas),,16 hours 54 mins,"1,857 km" +Indianapolis,El Paso(Texas),,21 hours 8 mins,"2,305 km" +Indianapolis,Brownsville(Texas),,20 hours 35 mins,"2,184 km" +Indianapolis,Austin(Texas),,16 hours 2 mins,"1,746 km" +Indianapolis,Dallas(Texas),,13 hours 14 mins,"1,432 km" +Indianapolis,Killeen(Texas),,15 hours 26 mins,"1,681 km" +Indianapolis,Laredo(Texas),,19 hours 30 mins,"2,123 km" +Indianapolis,Texarkana(Texas),,10 hours 45 mins,"1,152 km" +Abilene(Texas),Indianapolis,,15 hours 2 mins,"1,656 km" +Amarillo(Texas),Indianapolis,,14 hours 32 mins,"1,607 km" +Harlingen(Texas),Indianapolis,,20 hours 6 mins,"2,160 km" +Lubbock(Texas),Indianapolis,,15 hours 52 mins,"1,746 km" +College Station(Texas),Indianapolis,,15 hours 14 mins,"1,601 km" +Corpus Christi(Texas),Indianapolis,,18 hours 28 mins,"1,970 km" +Wichita Falls(Texas),Indianapolis,,12 hours 46 mins,"1,412 km" +Waco(Texas),Indianapolis,,14 hours 32 mins,"1,599 km" +San Angelo(Texas),Indianapolis,,16 hours 16 mins,"1,790 km" +Houston(Texas),Indianapolis,,15 hours 17 mins,"1,632 km" +San Antonio(Texas),Indianapolis,,17 hours 8 mins,"1,886 km" +Del Rio(Texas),Indianapolis,,18 hours 39 mins,"2,043 km" +Mission(Texas),Indianapolis,,20 hours 35 mins,"2,272 km" +Beaumont(Texas),Indianapolis,,14 hours 58 mins,"1,586 km" +Longview(Texas),Indianapolis,,12 hours 9 mins,"1,307 km" +Midland(Texas),Indianapolis,,16 hours 52 mins,"1,859 km" +El Paso(Texas),Indianapolis,,21 hours 4 mins,"2,303 km" +Brownsville(Texas),Indianapolis,,20 hours 30 mins,"2,200 km" +Austin(Texas),Indianapolis,,15 hours 57 mins,"1,760 km" +Dallas(Texas),Indianapolis,,13 hours 10 mins,"1,447 km" +Killeen(Texas),Indianapolis,,15 hours 22 mins,"1,695 km" +Laredo(Texas),Indianapolis,,19 hours 25 mins,"2,137 km" +Texarkana(Texas),Indianapolis,,10 hours 41 mins,"1,166 km" +St. Louis,San Antonio,,13 hours 45 mins,"1,453 km" +San Antonio,St. Louis,,13 hours 44 mins,"1,455 km" +El Paso,San Diego(California),,10 hours 27 mins,"1,168 km" +El Paso,Redding(California),,19 hours 48 mins,"2,166 km" +El Paso,Sacramento(California),,17 hours 28 mins,"1,907 km" +El Paso,Fresno(California),,15 hours 0 mins,"1,641 km" +El Paso,San Luis Obispo(California),,14 hours 44 mins,"1,596 km" +El Paso,Oakland(California),,17 hours 16 mins,"1,885 km" +El Paso,Santa Barbara(California),,13 hours 14 mins,"1,445 km" +El Paso,Stockton(California),,16 hours 45 mins,"1,831 km" +El Paso,Santa Rosa(California),,18 hours 8 mins,"1,977 km" +El Paso,Bakersfield(California),,13 hours 27 mins,"1,468 km" +El Paso,Santa Ana(California),,11 hours 36 mins,"1,293 km" +El Paso,Santa Maria(California),,14 hours 20 mins,"1,547 km" +El Paso,San Jose(California),,16 hours 55 mins,"1,835 km" +El Paso,Burbank(California),,11 hours 54 mins,"1,312 km" +El Paso,Arcata(California),,21 hours 53 mins,"2,338 km" +El Paso,Butte(California),,18 hours 53 mins,"2,040 km" +El Paso,Palm Springs(California),,10 hours 13 mins,"1,124 km" +El Paso,Los Angeles(California),,11 hours 49 mins,"1,294 km" +El Paso,Long Beach(California),,11 hours 57 mins,"1,309 km" +El Paso,San Francisco(California),,17 hours 29 mins,"1,903 km" +El Paso,Monterey(California),,16 hours 44 mins,"1,801 km" +San Diego(California),El Paso,,10 hours 29 mins,"1,165 km" +Redding(California),El Paso,,19 hours 45 mins,"2,164 km" +Sacramento(California),El Paso,,17 hours 25 mins,"1,907 km" +Fresno(California),El Paso,,14 hours 58 mins,"1,639 km" +San Luis Obispo(California),El Paso,,14 hours 45 mins,"1,596 km" +Oakland(California),El Paso,,17 hours 13 mins,"1,884 km" +Santa Barbara(California),El Paso,,13 hours 14 mins,"1,445 km" +Stockton(California),El Paso,,16 hours 41 mins,"1,831 km" +Santa Rosa(California),El Paso,,18 hours 6 mins,"1,977 km" +Bakersfield(California),El Paso,,13 hours 25 mins,"1,468 km" +Santa Ana(California),El Paso,,11 hours 34 mins,"1,267 km" +Santa Maria(California),El Paso,,14 hours 19 mins,"1,546 km" +San Jose(California),El Paso,,16 hours 51 mins,"1,834 km" +Burbank(California),El Paso,,11 hours 50 mins,"1,305 km" +Arcata(California),El Paso,,21 hours 51 mins,"2,338 km" +Butte(California),El Paso,,18 hours 51 mins,"2,039 km" +Palm Springs(California),El Paso,,10 hours 13 mins,"1,122 km" +Los Angeles(California),El Paso,,11 hours 43 mins,"1,289 km" +Long Beach(California),El Paso,,11 hours 52 mins,"1,301 km" +San Francisco(California),El Paso,,17 hours 23 mins,"1,902 km" +Monterey(California),El Paso,,16 hours 41 mins,"1,801 km" +White Plains,Atlanta,,13 hours 34 mins,"1,450 km" +Atlanta,White Plains,,13 hours 32 mins,"1,441 km" +Peoria,Las Vegas,,23 hours 59 mins,"2,702 km" +Las Vegas,Peoria,,23 hours 55 mins,"2,700 km" +Washington,Phoenix,,1 day 10 hours,"3,702 km" +Phoenix,Washington,,1 day 10 hours,"3,702 km" +Bozeman,Abilene(Texas),,20 hours 11 mins,"2,238 km" +Bozeman,Amarillo(Texas),,16 hours 1 min,"1,777 km" +Bozeman,Harlingen(Texas),,1 day 3 hours,"3,002 km" +Bozeman,Lubbock(Texas),,17 hours 47 mins,"1,974 km" +Bozeman,College Station(Texas),,23 hours 40 mins,"2,601 km" +Bozeman,Corpus Christi(Texas),,1 day 1 hour,"2,827 km" +Bozeman,Wichita Falls(Texas),,19 hours 25 mins,"2,138 km" +Bozeman,Waco(Texas),,22 hours 22 mins,"2,466 km" +Bozeman,San Angelo(Texas),,20 hours 34 mins,"2,269 km" +Bozeman,Houston(Texas),,1 day 1 hour,"2,741 km" +Bozeman,San Antonio(Texas),,23 hours 30 mins,"2,594 km" +Bozeman,Del Rio(Texas),,23 hours 1 min,"2,520 km" +Bozeman,Mission(Texas),,1 day 3 hours,"2,990 km" +Bozeman,Beaumont(Texas),,1 day 2 hours,"2,816 km" +Bozeman,Longview(Texas),,23 hours 19 mins,"2,565 km" +Bozeman,Midland(Texas),,19 hours 33 mins,"2,164 km" +Bozeman,El Paso(Texas),,19 hours 12 mins,"2,138 km" +Bozeman,Brownsville(Texas),,1 day 3 hours,"3,041 km" +Bozeman,Austin(Texas),,23 hours 37 mins,"2,574 km" +Bozeman,Dallas(Texas),,21 hours 28 mins,"2,365 km" +Bozeman,Killeen(Texas),,22 hours 58 mins,"2,511 km" +Bozeman,Laredo(Texas),,1 day 2 hours,"2,784 km" +Bozeman,Texarkana(Texas),,23 hours 34 mins,"2,653 km" +Abilene(Texas),Bozeman,,20 hours 17 mins,"2,244 km" +Amarillo(Texas),Bozeman,,16 hours 9 mins,"1,778 km" +Harlingen(Texas),Bozeman,,1 day 3 hours,"3,009 km" +Lubbock(Texas),Bozeman,,17 hours 54 mins,"1,995 km" +College Station(Texas),Bozeman,,23 hours 47 mins,"2,633 km" +Corpus Christi(Texas),Bozeman,,1 day 2 hours,"2,833 km" +Wichita Falls(Texas),Bozeman,,19 hours 34 mins,"2,171 km" +Waco(Texas),Bozeman,,22 hours 30 mins,"2,495 km" +San Angelo(Texas),Bozeman,,20 hours 41 mins,"2,309 km" +Houston(Texas),Bozeman,,1 day 1 hour,"2,773 km" +San Antonio(Texas),Bozeman,,23 hours 34 mins,"2,600 km" +Del Rio(Texas),Bozeman,,23 hours 6 mins,"2,552 km" +Mission(Texas),Bozeman,,1 day 3 hours,"2,998 km" +Beaumont(Texas),Bozeman,,1 day 2 hours,"2,848 km" +Longview(Texas),Bozeman,,23 hours 26 mins,"2,604 km" +Midland(Texas),Bozeman,,19 hours 40 mins,"2,185 km" +El Paso(Texas),Bozeman,,19 hours 14 mins,"2,139 km" +Brownsville(Texas),Bozeman,,1 day 4 hours,"3,049 km" +Austin(Texas),Bozeman,,23 hours 43 mins,"2,581 km" +Dallas(Texas),Bozeman,,21 hours 36 mins,"2,397 km" +Killeen(Texas),Bozeman,,23 hours 5 mins,"2,518 km" +Laredo(Texas),Bozeman,,1 day 2 hours,"2,791 km" +Texarkana(Texas),Bozeman,,23 hours 44 mins,"2,660 km" +Atlanta,Greensboro(North Carolina),,4 hours 59 mins,534 km +Atlanta,Wilmington(North Carolina),,6 hours 7 mins,674 km +Atlanta,New Bern(North Carolina),,7 hours 23 mins,808 km +Atlanta,Charlotte(North Carolina),,3 hours 47 mins,394 km +Atlanta,Raleigh(North Carolina),,6 hours 9 mins,653 km +Atlanta,Asheville(North Carolina),,3 hours 22 mins,319 km +Atlanta,Fayetteville(North Carolina),,5 hours 25 mins,605 km +Greensboro(North Carolina),Atlanta,,5 hours 1 min,533 km +Wilmington(North Carolina),Atlanta,,6 hours 8 mins,674 km +New Bern(North Carolina),Atlanta,,7 hours 24 mins,808 km +Charlotte(North Carolina),Atlanta,,3 hours 48 mins,393 km +Raleigh(North Carolina),Atlanta,,6 hours 8 mins,654 km +Asheville(North Carolina),Atlanta,,3 hours 24 mins,320 km +Fayetteville(North Carolina),Atlanta,,5 hours 25 mins,604 km +Los Angeles,Tucson,,7 hours 10 mins,777 km +Tucson,Los Angeles,,7 hours 15 mins,782 km +Savannah,Charlotte,,3 hours 48 mins,405 km +Charlotte,Savannah,,3 hours 48 mins,406 km +Everett,San Francisco,,12 hours 56 mins,"1,345 km" +San Francisco,Everett,,12 hours 54 mins,"1,345 km" +Peoria,Flagstaff(Arizona),,21 hours 56 mins,"2,461 km" +Peoria,Yuma(Arizona),,1 day 2 hours,"2,909 km" +Peoria,Phoenix(Arizona),,23 hours 42 mins,"2,615 km" +Peoria,Prescott(Arizona),,23 hours 27 mins,"2,611 km" +Peoria,Tucson(Arizona),,23 hours 38 mins,"2,608 km" +Flagstaff(Arizona),Peoria,,21 hours 50 mins,"2,458 km" +Yuma(Arizona),Peoria,,1 day 2 hours,"2,906 km" +Phoenix(Arizona),Peoria,,23 hours 40 mins,"2,614 km" +Prescott(Arizona),Peoria,,23 hours 21 mins,"2,610 km" +Tucson(Arizona),Peoria,,23 hours 39 mins,"2,597 km" +Houston,Punta Gorda,,15 hours 16 mins,"1,732 km" +Punta Gorda,Houston,,15 hours 15 mins,"1,733 km" +Dallas,Toledo(Ohio),,16 hours 27 mins,"1,810 km" +Dallas,Cleveland(Ohio),,17 hours 19 mins,"1,901 km" +Dallas,Dayton(Ohio),,14 hours 29 mins,"1,586 km" +Dallas,Columbus(Ohio),,15 hours 14 mins,"1,673 km" +Dallas,Akron(Ohio),,17 hours 4 mins,"1,873 km" +Dallas,Cincinnati(Ohio),,13 hours 40 mins,"1,501 km" +Toledo(Ohio),Dallas,,16 hours 38 mins,"1,827 km" +Cleveland(Ohio),Dallas,,17 hours 22 mins,"1,903 km" +Dayton(Ohio),Dallas,,14 hours 32 mins,"1,588 km" +Columbus(Ohio),Dallas,,15 hours 17 mins,"1,675 km" +Akron(Ohio),Dallas,,17 hours 6 mins,"1,877 km" +Cincinnati(Ohio),Dallas,,13 hours 43 mins,"1,503 km" +San Antonio,Tampa,,16 hours 50 mins,"1,892 km" +Tampa,San Antonio,,16 hours 48 mins,"1,892 km" +Albany,Pellston(Michigan),,, +Albany,Traverse City(Michigan),,, +Albany,Alpena(Michigan),,, +Albany,Iron Mountain(Michigan),,, +Albany,Kalamazoo(Michigan),,, +Albany,Saginaw(Michigan),,, +Albany,Grand Rapids(Michigan),,, +Albany,Lansing(Michigan),,, +Albany,Muskegon(Michigan),,, +Albany,Hancock(Michigan),,, +Albany,Detroit(Michigan),,, +Albany,Escanaba(Michigan),,, +Pellston(Michigan),Albany,,, +Traverse City(Michigan),Albany,,, +Alpena(Michigan),Albany,,, +Iron Mountain(Michigan),Albany,,, +Kalamazoo(Michigan),Albany,,, +Saginaw(Michigan),Albany,,, +Grand Rapids(Michigan),Albany,,, +Lansing(Michigan),Albany,,, +Muskegon(Michigan),Albany,,, +Hancock(Michigan),Albany,,, +Detroit(Michigan),Albany,,, +Escanaba(Michigan),Albany,,, +Minneapolis,Alamosa(Colorado),,16 hours 12 mins,"1,727 km" +Minneapolis,Grand Junction(Colorado),,16 hours 38 mins,"1,855 km" +Minneapolis,Durango(Colorado),,18 hours 49 mins,"2,005 km" +Minneapolis,Colorado Springs(Colorado),,13 hours 56 mins,"1,584 km" +Minneapolis,Gunnison(Colorado),,16 hours 23 mins,"1,786 km" +Minneapolis,Denver(Colorado),,13 hours 1 min,"1,469 km" +Alamosa(Colorado),Minneapolis,,16 hours 8 mins,"1,727 km" +Grand Junction(Colorado),Minneapolis,,16 hours 33 mins,"1,854 km" +Durango(Colorado),Minneapolis,,18 hours 45 mins,"2,005 km" +Colorado Springs(Colorado),Minneapolis,,13 hours 52 mins,"1,581 km" +Gunnison(Colorado),Minneapolis,,16 hours 19 mins,"1,786 km" +Denver(Colorado),Minneapolis,,13 hours 0 mins,"1,471 km" +Las Vegas,Green Bay(Wisconsin),,1 day 3 hours,"2,973 km" +Las Vegas,Rhinelander(Wisconsin),,1 day 3 hours,"3,039 km" +Las Vegas,Marquette(Wisconsin),,1 day 2 hours,"2,840 km" +Las Vegas,Madison(Wisconsin),,1 day 1 hour,"2,746 km" +Las Vegas,La Crosse(Wisconsin),,1 day 0 hours,"2,711 km" +Las Vegas,Devils Lake(Wisconsin),,1 day 1 hour,"2,760 km" +Las Vegas,Appleton(Wisconsin),,1 day 2 hours,"2,922 km" +Las Vegas,Mosinee(Wisconsin),,1 day 2 hours,"2,910 km" +Las Vegas,Milwaukee(Wisconsin),,1 day 2 hours,"2,878 km" +Las Vegas,Eau Claire(Wisconsin),,1 day 1 hour,"2,798 km" +Green Bay(Wisconsin),Las Vegas,,1 day 3 hours,"2,974 km" +Rhinelander(Wisconsin),Las Vegas,,1 day 3 hours,"3,042 km" +Marquette(Wisconsin),Las Vegas,,1 day 2 hours,"2,841 km" +Madison(Wisconsin),Las Vegas,,1 day 1 hour,"2,747 km" +La Crosse(Wisconsin),Las Vegas,,1 day 0 hours,"2,715 km" +Devils Lake(Wisconsin),Las Vegas,,1 day 1 hour,"2,761 km" +Appleton(Wisconsin),Las Vegas,,1 day 2 hours,"2,922 km" +Mosinee(Wisconsin),Las Vegas,,1 day 2 hours,"2,916 km" +Milwaukee(Wisconsin),Las Vegas,,1 day 2 hours,"2,877 km" +Eau Claire(Wisconsin),Las Vegas,,1 day 1 hour,"2,762 km" +Harrisburg,Moline(Illinois),,12 hours 4 mins,"1,294 km" +Harrisburg,Belleville(Illinois),,12 hours 0 mins,"1,258 km" +Harrisburg,Bloomington(Illinois),,10 hours 52 mins,"1,144 km" +Harrisburg,Champaign(Illinois),,10 hours 10 mins,"1,068 km" +Harrisburg,Chicago(Illinois),,9 hours 57 mins,"1,059 km" +Harrisburg,Rockford(Illinois),,11 hours 21 mins,"1,199 km" +Harrisburg,Peoria(Illinois),,11 hours 23 mins,"1,208 km" +Moline(Illinois),Harrisburg,,12 hours 6 mins,"1,295 km" +Belleville(Illinois),Harrisburg,,12 hours 2 mins,"1,259 km" +Bloomington(Illinois),Harrisburg,,10 hours 56 mins,"1,147 km" +Champaign(Illinois),Harrisburg,,10 hours 13 mins,"1,066 km" +Chicago(Illinois),Harrisburg,,9 hours 57 mins,"1,060 km" +Rockford(Illinois),Harrisburg,,11 hours 22 mins,"1,209 km" +Peoria(Illinois),Harrisburg,,11 hours 26 mins,"1,209 km" +Chattanooga,Abilene(Texas),,13 hours 55 mins,"1,557 km" +Chattanooga,Amarillo(Texas),,15 hours 18 mins,"1,711 km" +Chattanooga,Harlingen(Texas),,16 hours 40 mins,"1,837 km" +Chattanooga,Lubbock(Texas),,16 hours 19 mins,"1,822 km" +Chattanooga,College Station(Texas),,12 hours 32 mins,"1,335 km" +Chattanooga,Corpus Christi(Texas),,14 hours 55 mins,"1,642 km" +Chattanooga,Wichita Falls(Texas),,13 hours 21 mins,"1,495 km" +Chattanooga,Waco(Texas),,12 hours 23 mins,"1,343 km" +Chattanooga,San Angelo(Texas),,15 hours 9 mins,"1,681 km" +Chattanooga,Houston(Texas),,11 hours 47 mins,"1,309 km" +Chattanooga,San Antonio(Texas),,14 hours 39 mins,"1,623 km" +Chattanooga,Del Rio(Texas),,17 hours 2 mins,"1,870 km" +Chattanooga,Mission(Texas),,17 hours 7 mins,"1,876 km" +Chattanooga,Beaumont(Texas),,10 hours 34 mins,"1,176 km" +Chattanooga,Longview(Texas),,9 hours 38 mins,"1,068 km" +Chattanooga,Midland(Texas),,16 hours 3 mins,"1,797 km" +Chattanooga,El Paso(Texas),,20 hours 21 mins,"2,287 km" +Chattanooga,Brownsville(Texas),,17 hours 2 mins,"1,876 km" +Chattanooga,Austin(Texas),,13 hours 48 mins,"1,505 km" +Chattanooga,Dallas(Texas),,11 hours 20 mins,"1,268 km" +Chattanooga,Killeen(Texas),,13 hours 12 mins,"1,439 km" +Chattanooga,Laredo(Texas),,16 hours 47 mins,"1,815 km" +Chattanooga,Texarkana(Texas),,9 hours 6 mins,994 km +Abilene(Texas),Chattanooga,,13 hours 53 mins,"1,552 km" +Amarillo(Texas),Chattanooga,,15 hours 14 mins,"1,707 km" +Harlingen(Texas),Chattanooga,,16 hours 36 mins,"1,836 km" +Lubbock(Texas),Chattanooga,,16 hours 13 mins,"1,818 km" +College Station(Texas),Chattanooga,,12 hours 25 mins,"1,329 km" +Corpus Christi(Texas),Chattanooga,,14 hours 58 mins,"1,647 km" +Wichita Falls(Texas),Chattanooga,,13 hours 14 mins,"1,418 km" +Waco(Texas),Chattanooga,,12 hours 19 mins,"1,338 km" +San Angelo(Texas),Chattanooga,,15 hours 5 mins,"1,676 km" +Houston(Texas),Chattanooga,,11 hours 46 mins,"1,309 km" +San Antonio(Texas),Chattanooga,,14 hours 39 mins,"1,623 km" +Del Rio(Texas),Chattanooga,,17 hours 4 mins,"1,870 km" +Mission(Texas),Chattanooga,,17 hours 4 mins,"1,877 km" +Beaumont(Texas),Chattanooga,,10 hours 34 mins,"1,175 km" +Longview(Texas),Chattanooga,,9 hours 35 mins,"1,062 km" +Midland(Texas),Chattanooga,,15 hours 59 mins,"1,792 km" +El Paso(Texas),Chattanooga,,20 hours 17 mins,"2,282 km" +Brownsville(Texas),Chattanooga,,17 hours 0 mins,"1,876 km" +Austin(Texas),Chattanooga,,13 hours 45 mins,"1,500 km" +Dallas(Texas),Chattanooga,,11 hours 19 mins,"1,261 km" +Killeen(Texas),Chattanooga,,13 hours 10 mins,"1,434 km" +Laredo(Texas),Chattanooga,,16 hours 44 mins,"1,814 km" +Texarkana(Texas),Chattanooga,,9 hours 2 mins,988 km +Phoenix,Sarasota(Florida),,1 day 8 hours,"3,554 km" +Phoenix,Fort Myers(Florida),,1 day 8 hours,"3,659 km" +Phoenix,Gainesville(Florida),,1 day 5 hours,"3,269 km" +Phoenix,Orlando(Florida),,1 day 7 hours,"3,442 km" +Phoenix,Daytona Beach(Florida),,1 day 7 hours,"3,441 km" +Phoenix,Jacksonville(Florida),,1 day 5 hours,"3,292 km" +Phoenix,Tampa(Florida),,1 day 7 hours,"3,469 km" +Phoenix,Panama City(Florida),,1 day 3 hours,"2,939 km" +Phoenix,Key West(Florida),,1 day 13 hours,"4,056 km" +Phoenix,West Palm Beach(Florida),,1 day 9 hours,"3,697 km" +Phoenix,Miami(Florida),,1 day 10 hours,"3,802 km" +Phoenix,Tallahassee(Florida),,1 day 3 hours,"3,033 km" +Phoenix,Punta Gorda(Florida),,1 day 8 hours,"3,624 km" +Phoenix,Fort Lauderdale(Florida),,1 day 9 hours,"3,765 km" +Phoenix,Pensacola(Florida),,1 day 0 hours,"2,736 km" +Sarasota(Florida),Phoenix,,1 day 7 hours,"3,553 km" +Fort Myers(Florida),Phoenix,,1 day 8 hours,"3,658 km" +Gainesville(Florida),Phoenix,,1 day 5 hours,"3,267 km" +Orlando(Florida),Phoenix,,1 day 6 hours,"3,438 km" +Daytona Beach(Florida),Phoenix,,1 day 7 hours,"3,430 km" +Jacksonville(Florida),Phoenix,,1 day 5 hours,"3,290 km" +Tampa(Florida),Phoenix,,1 day 7 hours,"3,468 km" +Panama City(Florida),Phoenix,,1 day 2 hours,"2,938 km" +Key West(Florida),Phoenix,,1 day 13 hours,"4,054 km" +West Palm Beach(Florida),Phoenix,,1 day 9 hours,"3,697 km" +Miami(Florida),Phoenix,,1 day 10 hours,"3,802 km" +Tallahassee(Florida),Phoenix,,1 day 3 hours,"3,031 km" +Punta Gorda(Florida),Phoenix,,1 day 8 hours,"3,622 km" +Fort Lauderdale(Florida),Phoenix,,1 day 9 hours,"3,765 km" +Pensacola(Florida),Phoenix,,1 day 0 hours,"2,734 km" +Fort Lauderdale,Kansas City,,20 hours 45 mins,"2,319 km" +Kansas City,Fort Lauderdale,,20 hours 48 mins,"2,317 km" +Dallas,Santa Ana,,20 hours 38 mins,"2,314 km" +Santa Ana,Dallas,,20 hours 36 mins,"2,288 km" +Charlotte,Akron,,7 hours 15 mins,771 km +Akron,Charlotte,,7 hours 13 mins,771 km +Roswell,Abilene(Texas),,4 hours 40 mins,498 km +Roswell,Amarillo(Texas),,3 hours 29 mins,344 km +Roswell,Harlingen(Texas),,11 hours 17 mins,"1,246 km" +Roswell,Lubbock(Texas),,2 hours 40 mins,275 km +Roswell,College Station(Texas),,8 hours 54 mins,922 km +Roswell,Corpus Christi(Texas),,9 hours 39 mins,"1,071 km" +Roswell,Wichita Falls(Texas),,5 hours 43 mins,610 km +Roswell,Waco(Texas),,7 hours 36 mins,799 km +Roswell,San Angelo(Texas),,4 hours 37 mins,495 km +Roswell,Houston(Texas),,10 hours 12 mins,"1,072 km" +Roswell,San Antonio(Texas),,7 hours 41 mins,838 km +Roswell,Del Rio(Texas),,6 hours 43 mins,644 km +Roswell,Mission(Texas),,11 hours 16 mins,"1,234 km" +Roswell,Beaumont(Texas),,11 hours 27 mins,"1,232 km" +Roswell,Longview(Texas),,9 hours 1 min,996 km +Roswell,Midland(Texas),,3 hours 15 mins,328 km +Roswell,El Paso(Texas),,3 hours 27 mins,331 km +Roswell,Brownsville(Texas),,11 hours 38 mins,"1,285 km" +Roswell,Austin(Texas),,7 hours 59 mins,829 km +Roswell,Dallas(Texas),,7 hours 13 mins,791 km +Roswell,Killeen(Texas),,7 hours 26 mins,771 km +Roswell,Laredo(Texas),,9 hours 39 mins,934 km +Roswell,Texarkana(Texas),,9 hours 50 mins,"1,077 km" +Abilene(Texas),Roswell,,4 hours 41 mins,498 km +Amarillo(Texas),Roswell,,3 hours 29 mins,345 km +Harlingen(Texas),Roswell,,11 hours 12 mins,"1,242 km" +Lubbock(Texas),Roswell,,2 hours 39 mins,275 km +College Station(Texas),Roswell,,8 hours 54 mins,926 km +Corpus Christi(Texas),Roswell,,9 hours 36 mins,"1,066 km" +Wichita Falls(Texas),Roswell,,5 hours 45 mins,609 km +Waco(Texas),Roswell,,7 hours 40 mins,799 km +San Angelo(Texas),Roswell,,4 hours 36 mins,494 km +Houston(Texas),Roswell,,10 hours 13 mins,"1,076 km" +San Antonio(Texas),Roswell,,7 hours 40 mins,834 km +Del Rio(Texas),Roswell,,6 hours 41 mins,644 km +Mission(Texas),Roswell,,11 hours 14 mins,"1,231 km" +Beaumont(Texas),Roswell,,11 hours 29 mins,"1,232 km" +Longview(Texas),Roswell,,9 hours 3 mins,996 km +Midland(Texas),Roswell,,3 hours 15 mins,328 km +El Paso(Texas),Roswell,,3 hours 26 mins,330 km +Brownsville(Texas),Roswell,,11 hours 36 mins,"1,282 km" +Austin(Texas),Roswell,,7 hours 58 mins,825 km +Dallas(Texas),Roswell,,7 hours 15 mins,791 km +Killeen(Texas),Roswell,,7 hours 28 mins,791 km +Laredo(Texas),Roswell,,9 hours 38 mins,934 km +Texarkana(Texas),Roswell,,9 hours 53 mins,"1,079 km" +Syracuse,Abilene(Texas),,1 day 0 hours,"2,691 km" +Syracuse,Amarillo(Texas),,23 hours 54 mins,"2,643 km" +Syracuse,Harlingen(Texas),,1 day 5 hours,"3,144 km" +Syracuse,Lubbock(Texas),,1 day 1 hour,"2,781 km" +Syracuse,College Station(Texas),,1 day 0 hours,"2,589 km" +Syracuse,Corpus Christi(Texas),,1 day 3 hours,"2,949 km" +Syracuse,Wichita Falls(Texas),,22 hours 9 mins,"2,447 km" +Syracuse,Waco(Texas),,23 hours 32 mins,"2,587 km" +Syracuse,San Angelo(Texas),,1 day 2 hours,"2,825 km" +Syracuse,Houston(Texas),,1 day 0 hours,"2,616 km" +Syracuse,San Antonio(Texas),,1 day 2 hours,"2,872 km" +Syracuse,Del Rio(Texas),,1 day 4 hours,"3,078 km" +Syracuse,Mission(Texas),,1 day 6 hours,"3,257 km" +Syracuse,Beaumont(Texas),,23 hours 34 mins,"2,610 km" +Syracuse,Longview(Texas),,21 hours 6 mins,"2,292 km" +Syracuse,Midland(Texas),,1 day 2 hours,"2,892 km" +Syracuse,El Paso(Texas),,1 day 6 hours,"3,341 km" +Syracuse,Brownsville(Texas),,1 day 5 hours,"3,183 km" +Syracuse,Austin(Texas),,1 day 1 hour,"2,745 km" +Syracuse,Dallas(Texas),,22 hours 8 mins,"2,431 km" +Syracuse,Killeen(Texas),,1 day 0 hours,"2,680 km" +Syracuse,Laredo(Texas),,1 day 4 hours,"3,123 km" +Syracuse,Texarkana(Texas),,19 hours 39 mins,"2,151 km" +Abilene(Texas),Syracuse,,1 day 0 hours,"2,692 km" +Amarillo(Texas),Syracuse,,23 hours 53 mins,"2,643 km" +Harlingen(Texas),Syracuse,,1 day 5 hours,"3,142 km" +Lubbock(Texas),Syracuse,,1 day 1 hour,"2,782 km" +College Station(Texas),Syracuse,,1 day 0 hours,"2,583 km" +Corpus Christi(Texas),Syracuse,,1 day 3 hours,"2,952 km" +Wichita Falls(Texas),Syracuse,,22 hours 8 mins,"2,448 km" +Waco(Texas),Syracuse,,23 hours 25 mins,"2,581 km" +San Angelo(Texas),Syracuse,,1 day 2 hours,"2,826 km" +Houston(Texas),Syracuse,,1 day 0 hours,"2,614 km" +San Antonio(Texas),Syracuse,,1 day 2 hours,"2,868 km" +Del Rio(Texas),Syracuse,,1 day 4 hours,"3,079 km" +Mission(Texas),Syracuse,,1 day 5 hours,"3,254 km" +Beaumont(Texas),Syracuse,,23 hours 31 mins,"2,608 km" +Longview(Texas),Syracuse,,21 hours 2 mins,"2,289 km" +Midland(Texas),Syracuse,,1 day 2 hours,"2,895 km" +El Paso(Texas),Syracuse,,1 day 6 hours,"3,339 km" +Brownsville(Texas),Syracuse,,1 day 5 hours,"3,182 km" +Austin(Texas),Syracuse,,1 day 1 hour,"2,742 km" +Dallas(Texas),Syracuse,,22 hours 3 mins,"2,429 km" +Killeen(Texas),Syracuse,,1 day 0 hours,"2,677 km" +Laredo(Texas),Syracuse,,1 day 4 hours,"3,119 km" +Texarkana(Texas),Syracuse,,19 hours 34 mins,"2,148 km" +Detroit,Mosinee,,8 hours 7 mins,894 km +Mosinee,Detroit,,8 hours 2 mins,892 km +Omaha,Dallas,,9 hours 46 mins,"1,059 km" +Dallas,Omaha,,9 hours 43 mins,"1,058 km" +Huntsville,Sarasota(Florida),,10 hours 28 mins,"1,107 km" +Huntsville,Fort Myers(Florida),,11 hours 26 mins,"1,213 km" +Huntsville,Gainesville(Florida),,8 hours 4 mins,823 km +Huntsville,Orlando(Florida),,9 hours 29 mins,995 km +Huntsville,Daytona Beach(Florida),,9 hours 33 mins,995 km +Huntsville,Jacksonville(Florida),,8 hours 10 mins,845 km +Huntsville,Tampa(Florida),,9 hours 41 mins,"1,023 km" +Huntsville,Panama City(Florida),,6 hours 6 mins,590 km +Huntsville,Key West(Florida),,15 hours 40 mins,"1,609 km" +Huntsville,West Palm Beach(Florida),,11 hours 42 mins,"1,251 km" +Huntsville,Miami(Florida),,12 hours 40 mins,"1,356 km" +Huntsville,Tallahassee(Florida),,6 hours 23 mins,645 km +Huntsville,Punta Gorda(Florida),,11 hours 0 mins,"1,177 km" +Huntsville,Fort Lauderdale(Florida),,12 hours 19 mins,"1,319 km" +Huntsville,Pensacola(Florida),,5 hours 18 mins,567 km +Sarasota(Florida),Huntsville,,10 hours 28 mins,"1,108 km" +Fort Myers(Florida),Huntsville,,11 hours 24 mins,"1,214 km" +Gainesville(Florida),Huntsville,,8 hours 3 mins,823 km +Orlando(Florida),Huntsville,,9 hours 25 mins,994 km +Daytona Beach(Florida),Huntsville,,9 hours 31 mins,986 km +Jacksonville(Florida),Huntsville,,8 hours 11 mins,846 km +Tampa(Florida),Huntsville,,9 hours 39 mins,"1,023 km" +Panama City(Florida),Huntsville,,6 hours 6 mins,585 km +Key West(Florida),Huntsville,,15 hours 40 mins,"1,609 km" +West Palm Beach(Florida),Huntsville,,11 hours 40 mins,"1,252 km" +Miami(Florida),Huntsville,,12 hours 37 mins,"1,358 km" +Tallahassee(Florida),Huntsville,,6 hours 23 mins,640 km +Punta Gorda(Florida),Huntsville,,10 hours 59 mins,"1,178 km" +Fort Lauderdale(Florida),Huntsville,,12 hours 18 mins,"1,320 km" +Pensacola(Florida),Huntsville,,5 hours 13 mins,566 km +Chicago,Norfolk,,13 hours 33 mins,"1,427 km" +Norfolk,Chicago,,13 hours 29 mins,"1,424 km" +Appleton,Sarasota(Florida),,20 hours 46 mins,"2,290 km" +Appleton,Fort Myers(Florida),,21 hours 44 mins,"2,395 km" +Appleton,Gainesville(Florida),,18 hours 22 mins,"2,005 km" +Appleton,Orlando(Florida),,19 hours 46 mins,"2,178 km" +Appleton,Daytona Beach(Florida),,19 hours 51 mins,"2,177 km" +Appleton,Jacksonville(Florida),,18 hours 27 mins,"2,028 km" +Appleton,Tampa(Florida),,19 hours 59 mins,"2,205 km" +Appleton,Panama City(Florida),,17 hours 14 mins,"1,812 km" +Appleton,Key West(Florida),,1 day 2 hours,"2,791 km" +Appleton,West Palm Beach(Florida),,22 hours 0 mins,"2,433 km" +Appleton,Miami(Florida),,22 hours 58 mins,"2,538 km" +Appleton,Tallahassee(Florida),,17 hours 31 mins,"1,867 km" +Appleton,Punta Gorda(Florida),,21 hours 18 mins,"2,360 km" +Appleton,Fort Lauderdale(Florida),,22 hours 37 mins,"2,501 km" +Appleton,Pensacola(Florida),,16 hours 25 mins,"1,789 km" +Sarasota(Florida),Appleton,,20 hours 48 mins,"2,293 km" +Fort Myers(Florida),Appleton,,21 hours 44 mins,"2,399 km" +Gainesville(Florida),Appleton,,18 hours 23 mins,"2,007 km" +Orlando(Florida),Appleton,,19 hours 45 mins,"2,179 km" +Daytona Beach(Florida),Appleton,,19 hours 51 mins,"2,170 km" +Jacksonville(Florida),Appleton,,18 hours 31 mins,"2,031 km" +Tampa(Florida),Appleton,,19 hours 59 mins,"2,208 km" +Panama City(Florida),Appleton,,17 hours 17 mins,"1,809 km" +Key West(Florida),Appleton,,1 day 2 hours,"2,794 km" +West Palm Beach(Florida),Appleton,,22 hours 0 mins,"2,437 km" +Miami(Florida),Appleton,,22 hours 57 mins,"2,543 km" +Tallahassee(Florida),Appleton,,17 hours 34 mins,"1,864 km" +Punta Gorda(Florida),Appleton,,21 hours 19 mins,"2,363 km" +Fort Lauderdale(Florida),Appleton,,22 hours 38 mins,"2,505 km" +Pensacola(Florida),Appleton,,16 hours 24 mins,"1,790 km" +Moab,Denver,,5 hours 23 mins,570 km +Denver,Moab,,5 hours 25 mins,571 km +Hilton Head,Philadelphia,,10 hours 39 mins,"1,142 km" +Philadelphia,Hilton Head,,10 hours 44 mins,"1,149 km" +Miami,State College(Pennsylvania),,18 hours 17 mins,"2,026 km" +Miami,Johnstown(Pennsylvania),,17 hours 46 mins,"1,945 km" +Miami,Harrisburg(Pennsylvania),,16 hours 49 mins,"1,872 km" +Miami,Erie(Pennsylvania),,18 hours 57 mins,"2,086 km" +Miami,Pittsburgh(Pennsylvania),,17 hours 13 mins,"1,891 km" +Miami,Latrobe(Pennsylvania),,17 hours 25 mins,"1,878 km" +Miami,Philadelphia(Pennsylvania),,17 hours 16 mins,"1,919 km" +Miami,Lewisburg(Pennsylvania),,17 hours 57 mins,"1,971 km" +Miami,Scranton(Pennsylvania),,18 hours 40 mins,"2,069 km" +State College(Pennsylvania),Miami,,18 hours 28 mins,"2,034 km" +Johnstown(Pennsylvania),Miami,,17 hours 48 mins,"1,945 km" +Harrisburg(Pennsylvania),Miami,,17 hours 2 mins,"1,874 km" +Erie(Pennsylvania),Miami,,19 hours 3 mins,"2,086 km" +Pittsburgh(Pennsylvania),Miami,,17 hours 16 mins,"1,892 km" +Latrobe(Pennsylvania),Miami,,17 hours 26 mins,"1,877 km" +Philadelphia(Pennsylvania),Miami,,17 hours 24 mins,"1,925 km" +Lewisburg(Pennsylvania),Miami,,18 hours 10 mins,"1,977 km" +Scranton(Pennsylvania),Miami,,18 hours 53 mins,"2,071 km" +Newark,Paducah(Kentucky),,14 hours 20 mins,"1,516 km" +Newark,Owensboro(Kentucky),,12 hours 49 mins,"1,341 km" +Newark,Lexington(Kentucky),,10 hours 38 mins,"1,118 km" +Newark,Louisville(Kentucky),,11 hours 12 mins,"1,172 km" +Paducah(Kentucky),Newark,,14 hours 20 mins,"1,529 km" +Owensboro(Kentucky),Newark,,12 hours 49 mins,"1,340 km" +Lexington(Kentucky),Newark,,10 hours 38 mins,"1,118 km" +Louisville(Kentucky),Newark,,11 hours 16 mins,"1,170 km" +Miami,Tulsa,,20 hours 42 mins,"2,342 km" +Tulsa,Miami,,20 hours 47 mins,"2,326 km" +Cedar Rapids,Augusta(Georgia),,14 hours 35 mins,"1,579 km" +Cedar Rapids,Decatur(Georgia),,12 hours 41 mins,"1,353 km" +Cedar Rapids,Atlanta(Georgia),,12 hours 26 mins,"1,345 km" +Cedar Rapids,Valdosta(Georgia),,15 hours 43 mins,"1,713 km" +Cedar Rapids,Savannah(Georgia),,16 hours 1 min,"1,745 km" +Augusta(Georgia),Cedar Rapids,,14 hours 36 mins,"1,583 km" +Decatur(Georgia),Cedar Rapids,,12 hours 42 mins,"1,357 km" +Atlanta(Georgia),Cedar Rapids,,12 hours 26 mins,"1,349 km" +Valdosta(Georgia),Cedar Rapids,,15 hours 41 mins,"1,716 km" +Savannah(Georgia),Cedar Rapids,,16 hours 2 mins,"1,748 km" +New Orleans,Houston,,5 hours 12 mins,560 km +Houston,New Orleans,,5 hours 10 mins,559 km +Shreveport,Abilene(Texas),,5 hours 22 mins,593 km +Shreveport,Amarillo(Texas),,8 hours 12 mins,892 km +Shreveport,Harlingen(Texas),,8 hours 50 mins,912 km +Shreveport,Lubbock(Texas),,7 hours 45 mins,858 km +Shreveport,College Station(Texas),,3 hours 58 mins,371 km +Shreveport,Corpus Christi(Texas),,7 hours 5 mins,717 km +Shreveport,Wichita Falls(Texas),,4 hours 48 mins,531 km +Shreveport,Waco(Texas),,3 hours 50 mins,380 km +Shreveport,San Angelo(Texas),,6 hours 36 mins,717 km +Shreveport,Houston(Texas),,3 hours 57 mins,384 km +Shreveport,San Antonio(Texas),,6 hours 26 mins,668 km +Shreveport,Del Rio(Texas),,8 hours 51 mins,916 km +Shreveport,Mission(Texas),,9 hours 16 mins,952 km +Shreveport,Beaumont(Texas),,3 hours 30 mins,323 km +Shreveport,Longview(Texas),,1 hour 4 mins,104 km +Shreveport,Midland(Texas),,7 hours 30 mins,834 km +Shreveport,El Paso(Texas),,11 hours 48 mins,"1,324 km" +Shreveport,Brownsville(Texas),,9 hours 12 mins,951 km +Shreveport,Austin(Texas),,5 hours 15 mins,541 km +Shreveport,Dallas(Texas),,2 hours 47 mins,305 km +Shreveport,Killeen(Texas),,4 hours 38 mins,476 km +Shreveport,Laredo(Texas),,8 hours 42 mins,918 km +Shreveport,Texarkana(Texas),,1 hour 8 mins,117 km +Abilene(Texas),Shreveport,,5 hours 21 mins,594 km +Amarillo(Texas),Shreveport,,8 hours 12 mins,886 km +Harlingen(Texas),Shreveport,,8 hours 44 mins,912 km +Lubbock(Texas),Shreveport,,7 hours 40 mins,859 km +College Station(Texas),Shreveport,,3 hours 53 mins,370 km +Corpus Christi(Texas),Shreveport,,7 hours 6 mins,722 km +Wichita Falls(Texas),Shreveport,,4 hours 50 mins,523 km +Waco(Texas),Shreveport,,3 hours 47 mins,380 km +San Angelo(Texas),Shreveport,,6 hours 33 mins,718 km +Houston(Texas),Shreveport,,3 hours 54 mins,384 km +San Antonio(Texas),Shreveport,,6 hours 24 mins,667 km +Del Rio(Texas),Shreveport,,8 hours 52 mins,916 km +Mission(Texas),Shreveport,,9 hours 12 mins,952 km +Beaumont(Texas),Shreveport,,3 hours 28 mins,323 km +Longview(Texas),Shreveport,,1 hour 3 mins,104 km +Midland(Texas),Shreveport,,7 hours 27 mins,834 km +El Paso(Texas),Shreveport,,11 hours 45 mins,"1,324 km" +Brownsville(Texas),Shreveport,,9 hours 7 mins,952 km +Austin(Texas),Shreveport,,5 hours 13 mins,541 km +Dallas(Texas),Shreveport,,2 hours 46 mins,303 km +Killeen(Texas),Shreveport,,4 hours 38 mins,476 km +Laredo(Texas),Shreveport,,8 hours 41 mins,918 km +Texarkana(Texas),Shreveport,,1 hour 9 mins,118 km +Baton Rouge,Houston,,4 hours 0 mins,431 km +Houston,Baton Rouge,,3 hours 59 mins,433 km +Charlotte Amalie,Atlanta,,, +Atlanta,Charlotte Amalie,,, +Los Angeles,Seattle(Washington),,17 hours 22 mins,"1,826 km" +Los Angeles,Wenatchee(Washington),,18 hours 25 mins,"1,850 km" +Los Angeles,Pasco(Washington),,16 hours 54 mins,"1,718 km" +Los Angeles,Yakima(Washington),,16 hours 36 mins,"1,669 km" +Los Angeles,Walla Walla(Washington),,16 hours 32 mins,"1,675 km" +Los Angeles,Everett(Washington),,17 hours 51 mins,"1,872 km" +Los Angeles,Spokane(Washington),,18 hours 53 mins,"1,935 km" +Seattle(Washington),Los Angeles,,17 hours 21 mins,"1,829 km" +Wenatchee(Washington),Los Angeles,,18 hours 30 mins,"1,842 km" +Pasco(Washington),Los Angeles,,16 hours 59 mins,"1,720 km" +Yakima(Washington),Los Angeles,,16 hours 41 mins,"1,670 km" +Walla Walla(Washington),Los Angeles,,16 hours 45 mins,"1,679 km" +Everett(Washington),Los Angeles,,17 hours 49 mins,"1,874 km" +Spokane(Washington),Los Angeles,,18 hours 57 mins,"1,938 km" +Salt Lake City,San Jose,,11 hours 20 mins,"1,237 km" +San Jose,Salt Lake City,,11 hours 16 mins,"1,236 km" +Newark,Lynchburg(Virginia),,6 hours 34 mins,639 km +Newark,Richmond(Virginia),,5 hours 11 mins,533 km +Newark,Petersburg(Virginia),,5 hours 30 mins,569 km +Newark,Newport News(Virginia),,6 hours 3 mins,632 km +Newark,Charlottesville(Virginia),,5 hours 34 mins,536 km +Newark,Staunton(Virginia),,5 hours 42 mins,590 km +Newark,Jamestown(Virginia),,5 hours 59 mins,614 km +Newark,Norfolk(Virginia),,6 hours 10 mins,570 km +Newark,Roanoke(Virginia),,6 hours 53 mins,724 km +Lynchburg(Virginia),Newark,,6 hours 34 mins,639 km +Richmond(Virginia),Newark,,5 hours 10 mins,526 km +Petersburg(Virginia),Newark,,5 hours 30 mins,562 km +Newport News(Virginia),Newark,,6 hours 2 mins,625 km +Charlottesville(Virginia),Newark,,5 hours 33 mins,536 km +Staunton(Virginia),Newark,,5 hours 41 mins,589 km +Jamestown(Virginia),Newark,,5 hours 57 mins,607 km +Norfolk(Virginia),Newark,,6 hours 10 mins,570 km +Roanoke(Virginia),Newark,,6 hours 53 mins,723 km +Cleveland,Nashville(Tennessee),,7 hours 47 mins,839 km +Cleveland,Bristol(Tennessee),,6 hours 48 mins,721 km +Cleveland,Knoxville(Tennessee),,7 hours 22 mins,804 km +Cleveland,Chattanooga(Tennessee),,8 hours 57 mins,978 km +Cleveland,Memphis(Tennessee),,10 hours 46 mins,"1,176 km" +Nashville(Tennessee),Cleveland,,7 hours 45 mins,839 km +Bristol(Tennessee),Cleveland,,6 hours 49 mins,723 km +Knoxville(Tennessee),Cleveland,,7 hours 22 mins,804 km +Chattanooga(Tennessee),Cleveland,,8 hours 58 mins,979 km +Memphis(Tennessee),Cleveland,,10 hours 46 mins,"1,174 km" +Punta Gorda,Appleton,,21 hours 19 mins,"2,363 km" +Appleton,Punta Gorda,,21 hours 18 mins,"2,360 km" +Valparaiso,Moline(Illinois),,, +Valparaiso,Belleville(Illinois),,, +Valparaiso,Bloomington(Illinois),,, +Valparaiso,Champaign(Illinois),,, +Valparaiso,Chicago(Illinois),,, +Valparaiso,Rockford(Illinois),,, +Valparaiso,Peoria(Illinois),,, +Moline(Illinois),Valparaiso,,, +Belleville(Illinois),Valparaiso,,, +Bloomington(Illinois),Valparaiso,,, +Champaign(Illinois),Valparaiso,,, +Chicago(Illinois),Valparaiso,,, +Rockford(Illinois),Valparaiso,,, +Peoria(Illinois),Valparaiso,,, +Key West,Greensboro(North Carolina),,14 hours 39 mins,"1,543 km" +Key West,Wilmington(North Carolina),,14 hours 15 mins,"1,511 km" +Key West,New Bern(North Carolina),,15 hours 30 mins,"1,645 km" +Key West,Charlotte(North Carolina),,13 hours 29 mins,"1,426 km" +Key West,Raleigh(North Carolina),,14 hours 26 mins,"1,538 km" +Key West,Asheville(North Carolina),,14 hours 24 mins,"1,521 km" +Key West,Fayetteville(North Carolina),,13 hours 32 mins,"1,442 km" +Greensboro(North Carolina),Key West,,14 hours 42 mins,"1,532 km" +Wilmington(North Carolina),Key West,,14 hours 17 mins,"1,513 km" +New Bern(North Carolina),Key West,,15 hours 33 mins,"1,647 km" +Charlotte(North Carolina),Key West,,13 hours 30 mins,"1,427 km" +Raleigh(North Carolina),Key West,,14 hours 30 mins,"1,542 km" +Asheville(North Carolina),Key West,,14 hours 24 mins,"1,522 km" +Fayetteville(North Carolina),Key West,,13 hours 34 mins,"1,443 km" +Houston,San Diego,,20 hours 59 mins,"2,369 km" +San Diego,Houston,,21 hours 3 mins,"2,365 km" +Washington,Greensboro(North Carolina),,4 hours 45 mins,498 km +Washington,Wilmington(North Carolina),,5 hours 31 mins,586 km +Washington,New Bern(North Carolina),,5 hours 5 mins,521 km +Washington,Charlotte(North Carolina),,6 hours 0 mins,644 km +Washington,Raleigh(North Carolina),,4 hours 15 mins,447 km +Washington,Asheville(North Carolina),,7 hours 9 mins,759 km +Washington,Fayetteville(North Carolina),,4 hours 46 mins,508 km +Greensboro(North Carolina),Washington,,4 hours 45 mins,498 km +Wilmington(North Carolina),Washington,,5 hours 31 mins,585 km +New Bern(North Carolina),Washington,,5 hours 5 mins,534 km +Charlotte(North Carolina),Washington,,6 hours 1 min,642 km +Raleigh(North Carolina),Washington,,4 hours 15 mins,448 km +Asheville(North Carolina),Washington,,7 hours 8 mins,758 km +Fayetteville(North Carolina),Washington,,4 hours 48 mins,509 km +Rochester,Moline(Illinois),,11 hours 12 mins,"1,205 km" +Rochester,Belleville(Illinois),,12 hours 6 mins,"1,301 km" +Rochester,Bloomington(Illinois),,10 hours 40 mins,"1,146 km" +Rochester,Champaign(Illinois),,10 hours 15 mins,"1,110 km" +Rochester,Chicago(Illinois),,9 hours 5 mins,969 km +Rochester,Rockford(Illinois),,10 hours 29 mins,"1,109 km" +Rochester,Peoria(Illinois),,11 hours 0 mins,"1,191 km" +Moline(Illinois),Rochester,,11 hours 12 mins,"1,205 km" +Belleville(Illinois),Rochester,,12 hours 5 mins,"1,301 km" +Bloomington(Illinois),Rochester,,10 hours 38 mins,"1,140 km" +Champaign(Illinois),Rochester,,10 hours 16 mins,"1,109 km" +Chicago(Illinois),Rochester,,9 hours 3 mins,970 km +Rockford(Illinois),Rochester,,10 hours 28 mins,"1,119 km" +Peoria(Illinois),Rochester,,11 hours 1 min,"1,192 km" +Boston,San Diego(California),,1 day 20 hours,"4,832 km" +Boston,Redding(California),,1 day 21 hours,"4,944 km" +Boston,Sacramento(California),,1 day 20 hours,"4,842 km" +Boston,Fresno(California),,1 day 21 hours,"5,001 km" +Boston,San Luis Obispo(California),,1 day 22 hours,"5,044 km" +Boston,Oakland(California),,1 day 21 hours,"4,972 km" +Boston,Santa Barbara(California),,1 day 21 hours,"4,943 km" +Boston,Stockton(California),,1 day 21 hours,"4,918 km" +Boston,Santa Rosa(California),,1 day 21 hours,"4,997 km" +Boston,Bakersfield(California),,1 day 20 hours,"4,825 km" +Boston,Santa Ana(California),,1 day 19 hours,"4,800 km" +Boston,Santa Maria(California),,1 day 22 hours,"4,999 km" +Boston,San Jose(California),,1 day 22 hours,"5,034 km" +Boston,Burbank(California),,1 day 19 hours,"4,810 km" +Boston,Arcata(California),,2 days 0 hours,"5,169 km" +Boston,Butte(California),,1 day 21 hours,"4,881 km" +Boston,Palm Springs(California),,1 day 19 hours,"4,691 km" +Boston,Los Angeles(California),,1 day 19 hours,"4,804 km" +Boston,Long Beach(California),,1 day 20 hours,"4,823 km" +Boston,San Francisco(California),,1 day 21 hours,"4,981 km" +Boston,Monterey(California),,1 day 23 hours,"5,142 km" +San Diego(California),Boston,,1 day 20 hours,"4,827 km" +Redding(California),Boston,,1 day 21 hours,"4,952 km" +Sacramento(California),Boston,,1 day 20 hours,"4,850 km" +Fresno(California),Boston,,1 day 21 hours,"5,004 km" +San Luis Obispo(California),Boston,,1 day 22 hours,"5,049 km" +Oakland(California),Boston,,1 day 21 hours,"4,979 km" +Santa Barbara(California),Boston,,1 day 21 hours,"4,946 km" +Stockton(California),Boston,,1 day 20 hours,"4,926 km" +Santa Rosa(California),Boston,,1 day 21 hours,"5,005 km" +Bakersfield(California),Boston,,1 day 20 hours,"4,829 km" +Santa Ana(California),Boston,,1 day 19 hours,"4,800 km" +Santa Maria(California),Boston,,1 day 22 hours,"5,005 km" +San Jose(California),Boston,,1 day 22 hours,"5,041 km" +Burbank(California),Boston,,1 day 19 hours,"4,807 km" +Arcata(California),Boston,,2 days 0 hours,"5,176 km" +Butte(California),Boston,,1 day 21 hours,"4,874 km" +Palm Springs(California),Boston,,1 day 19 hours,"4,689 km" +Los Angeles(California),Boston,,1 day 19 hours,"4,803 km" +Long Beach(California),Boston,,1 day 20 hours,"4,830 km" +San Francisco(California),Boston,,1 day 21 hours,"4,989 km" +Monterey(California),Boston,,1 day 23 hours,"5,147 km" +Providence,Greensboro(North Carolina),,11 hours 12 mins,"1,159 km" +Providence,Wilmington(North Carolina),,11 hours 59 mins,"1,247 km" +Providence,New Bern(North Carolina),,11 hours 33 mins,"1,182 km" +Providence,Charlotte(North Carolina),,12 hours 28 mins,"1,305 km" +Providence,Raleigh(North Carolina),,10 hours 43 mins,"1,108 km" +Providence,Asheville(North Carolina),,13 hours 24 mins,"1,413 km" +Providence,Fayetteville(North Carolina),,11 hours 14 mins,"1,169 km" +Greensboro(North Carolina),Providence,,11 hours 7 mins,"1,152 km" +Wilmington(North Carolina),Providence,,11 hours 53 mins,"1,239 km" +New Bern(North Carolina),Providence,,11 hours 27 mins,"1,187 km" +Charlotte(North Carolina),Providence,,12 hours 24 mins,"1,296 km" +Raleigh(North Carolina),Providence,,10 hours 38 mins,"1,102 km" +Asheville(North Carolina),Providence,,13 hours 21 mins,"1,415 km" +Fayetteville(North Carolina),Providence,,11 hours 10 mins,"1,163 km" +Des Moines,Punta Gorda,,21 hours 14 mins,"2,339 km" +Punta Gorda,Des Moines,,21 hours 14 mins,"2,343 km" +Moline,Abilene(Texas),,14 hours 27 mins,"1,618 km" +Moline,Amarillo(Texas),,13 hours 58 mins,"1,570 km" +Moline,Harlingen(Texas),,20 hours 27 mins,"2,295 km" +Moline,Lubbock(Texas),,15 hours 20 mins,"1,709 km" +Moline,College Station(Texas),,15 hours 40 mins,"1,748 km" +Moline,Corpus Christi(Texas),,18 hours 49 mins,"2,119 km" +Moline,Wichita Falls(Texas),,12 hours 13 mins,"1,374 km" +Moline,Waco(Texas),,14 hours 22 mins,"1,613 km" +Moline,San Angelo(Texas),,15 hours 43 mins,"1,752 km" +Moline,Houston(Texas),,15 hours 47 mins,"1,668 km" +Moline,San Antonio(Texas),,16 hours 58 mins,"1,898 km" +Moline,Del Rio(Texas),,18 hours 8 mins,"2,005 km" +Moline,Mission(Texas),,20 hours 27 mins,"2,283 km" +Moline,Beaumont(Texas),,15 hours 28 mins,"1,623 km" +Moline,Longview(Texas),,12 hours 38 mins,"1,344 km" +Moline,Midland(Texas),,16 hours 19 mins,"1,819 km" +Moline,El Paso(Texas),,20 hours 0 mins,"2,099 km" +Moline,Brownsville(Texas),,20 hours 49 mins,"2,334 km" +Moline,Austin(Texas),,15 hours 46 mins,"1,771 km" +Moline,Dallas(Texas),,13 hours 3 mins,"1,316 km" +Moline,Killeen(Texas),,15 hours 10 mins,"1,706 km" +Moline,Laredo(Texas),,19 hours 14 mins,"2,149 km" +Moline,Texarkana(Texas),,11 hours 12 mins,"1,204 km" +Abilene(Texas),Moline,,14 hours 25 mins,"1,614 km" +Amarillo(Texas),Moline,,13 hours 55 mins,"1,565 km" +Harlingen(Texas),Moline,,20 hours 19 mins,"2,290 km" +Lubbock(Texas),Moline,,15 hours 14 mins,"1,704 km" +College Station(Texas),Moline,,15 hours 35 mins,"1,743 km" +Corpus Christi(Texas),Moline,,18 hours 43 mins,"2,114 km" +Wichita Falls(Texas),Moline,,12 hours 9 mins,"1,370 km" +Waco(Texas),Moline,,14 hours 18 mins,"1,606 km" +San Angelo(Texas),Moline,,15 hours 39 mins,"1,748 km" +Houston(Texas),Moline,,15 hours 50 mins,"1,673 km" +San Antonio(Texas),Moline,,16 hours 54 mins,"1,893 km" +Del Rio(Texas),Moline,,18 hours 2 mins,"2,001 km" +Mission(Texas),Moline,,20 hours 21 mins,"2,279 km" +Beaumont(Texas),Moline,,15 hours 31 mins,"1,627 km" +Longview(Texas),Moline,,12 hours 42 mins,"1,348 km" +Midland(Texas),Moline,,16 hours 15 mins,"1,817 km" +El Paso(Texas),Moline,,19 hours 55 mins,"2,095 km" +Brownsville(Texas),Moline,,20 hours 43 mins,"2,330 km" +Austin(Texas),Moline,,15 hours 43 mins,"1,767 km" +Dallas(Texas),Moline,,13 hours 4 mins,"1,316 km" +Killeen(Texas),Moline,,15 hours 8 mins,"1,702 km" +Laredo(Texas),Moline,,19 hours 11 mins,"2,144 km" +Texarkana(Texas),Moline,,11 hours 15 mins,"1,206 km" +Hartford,Sarasota(Florida),,19 hours 25 mins,"2,095 km" +Hartford,Fort Myers(Florida),,20 hours 23 mins,"2,200 km" +Hartford,Gainesville(Florida),,16 hours 45 mins,"1,805 km" +Hartford,Orlando(Florida),,17 hours 38 mins,"1,922 km" +Hartford,Daytona Beach(Florida),,17 hours 0 mins,"1,848 km" +Hartford,Jacksonville(Florida),,15 hours 35 mins,"1,694 km" +Hartford,Tampa(Florida),,18 hours 38 mins,"2,010 km" +Hartford,Panama City(Florida),,19 hours 36 mins,"2,115 km" +Hartford,Key West(Florida),,23 hours 34 mins,"2,505 km" +Hartford,West Palm Beach(Florida),,19 hours 33 mins,"2,152 km" +Hartford,Miami(Florida),,20 hours 34 mins,"2,251 km" +Hartford,Tallahassee(Florida),,17 hours 58 mins,"1,953 km" +Hartford,Punta Gorda(Florida),,19 hours 57 mins,"2,165 km" +Hartford,Fort Lauderdale(Florida),,20 hours 11 mins,"2,220 km" +Hartford,Pensacola(Florida),,19 hours 47 mins,"2,108 km" +Sarasota(Florida),Hartford,,19 hours 23 mins,"2,086 km" +Fort Myers(Florida),Hartford,,20 hours 19 mins,"2,191 km" +Gainesville(Florida),Hartford,,16 hours 44 mins,"1,796 km" +Orlando(Florida),Hartford,,17 hours 30 mins,"1,909 km" +Daytona Beach(Florida),Hartford,,16 hours 55 mins,"1,826 km" +Jacksonville(Florida),Hartford,,15 hours 32 mins,"1,684 km" +Tampa(Florida),Hartford,,18 hours 34 mins,"2,001 km" +Panama City(Florida),Hartford,,19 hours 34 mins,"2,106 km" +Key West(Florida),Hartford,,23 hours 30 mins,"2,493 km" +West Palm Beach(Florida),Hartford,,19 hours 27 mins,"2,140 km" +Miami(Florida),Hartford,,20 hours 26 mins,"2,241 km" +Tallahassee(Florida),Hartford,,17 hours 57 mins,"1,948 km" +Punta Gorda(Florida),Hartford,,19 hours 54 mins,"2,155 km" +Fort Lauderdale(Florida),Hartford,,20 hours 5 mins,"2,208 km" +Pensacola(Florida),Hartford,,19 hours 41 mins,"2,095 km" +Kalispell,San Diego(California),,19 hours 59 mins,"2,217 km" +Kalispell,Redding(California),,14 hours 41 mins,"1,446 km" +Kalispell,Sacramento(California),,17 hours 2 mins,"1,701 km" +Kalispell,Fresno(California),,19 hours 38 mins,"1,973 km" +Kalispell,San Luis Obispo(California),,21 hours 0 mins,"2,131 km" +Kalispell,Oakland(California),,17 hours 45 mins,"1,780 km" +Kalispell,Santa Barbara(California),,20 hours 29 mins,"2,261 km" +Kalispell,Stockton(California),,17 hours 44 mins,"1,776 km" +Kalispell,Santa Rosa(California),,18 hours 7 mins,"1,752 km" +Kalispell,Bakersfield(California),,19 hours 18 mins,"2,142 km" +Kalispell,Santa Ana(California),,19 hours 7 mins,"2,118 km" +Kalispell,Santa Maria(California),,21 hours 18 mins,"2,317 km" +Kalispell,San Jose(California),,18 hours 23 mins,"1,842 km" +Kalispell,Burbank(California),,19 hours 10 mins,"2,128 km" +Kalispell,Arcata(California),,16 hours 8 mins,"1,596 km" +Kalispell,Butte(California),,16 hours 19 mins,"1,597 km" +Kalispell,Palm Springs(California),,19 hours 12 mins,"2,133 km" +Kalispell,Los Angeles(California),,19 hours 9 mins,"2,122 km" +Kalispell,Long Beach(California),,19 hours 19 mins,"2,140 km" +Kalispell,San Francisco(California),,17 hours 55 mins,"1,790 km" +Kalispell,Monterey(California),,19 hours 25 mins,"1,950 km" +San Diego(California),Kalispell,,20 hours 10 mins,"2,220 km" +Redding(California),Kalispell,,14 hours 37 mins,"1,446 km" +Sacramento(California),Kalispell,,16 hours 58 mins,"1,700 km" +Fresno(California),Kalispell,,19 hours 34 mins,"1,978 km" +San Luis Obispo(California),Kalispell,,20 hours 52 mins,"2,129 km" +Oakland(California),Kalispell,,17 hours 41 mins,"1,780 km" +Santa Barbara(California),Kalispell,,20 hours 37 mins,"2,263 km" +Stockton(California),Kalispell,,17 hours 40 mins,"1,777 km" +Santa Rosa(California),Kalispell,,18 hours 2 mins,"1,752 km" +Bakersfield(California),Kalispell,,19 hours 30 mins,"2,146 km" +Santa Ana(California),Kalispell,,19 hours 13 mins,"2,117 km" +Santa Maria(California),Kalispell,,21 hours 22 mins,"2,182 km" +San Jose(California),Kalispell,,18 hours 16 mins,"1,841 km" +Burbank(California),Kalispell,,19 hours 14 mins,"2,124 km" +Arcata(California),Kalispell,,16 hours 5 mins,"1,594 km" +Butte(California),Kalispell,,16 hours 13 mins,"1,591 km" +Palm Springs(California),Kalispell,,19 hours 19 mins,"2,134 km" +Los Angeles(California),Kalispell,,19 hours 12 mins,"2,120 km" +Long Beach(California),Kalispell,,19 hours 31 mins,"2,147 km" +San Francisco(California),Kalispell,,17 hours 48 mins,"1,789 km" +Monterey(California),Kalispell,,19 hours 17 mins,"1,948 km" +Greer,Sarasota(Florida),,9 hours 29 mins,"1,030 km" +Greer,Fort Myers(Florida),,10 hours 27 mins,"1,135 km" +Greer,Gainesville(Florida),,6 hours 49 mins,740 km +Greer,Orlando(Florida),,7 hours 42 mins,857 km +Greer,Daytona Beach(Florida),,7 hours 5 mins,783 km +Greer,Jacksonville(Florida),,5 hours 39 mins,629 km +Greer,Tampa(Florida),,8 hours 42 mins,946 km +Greer,Panama City(Florida),,7 hours 17 mins,720 km +Greer,Key West(Florida),,13 hours 38 mins,"1,440 km" +Greer,West Palm Beach(Florida),,9 hours 38 mins,"1,088 km" +Greer,Miami(Florida),,10 hours 38 mins,"1,186 km" +Greer,Tallahassee(Florida),,6 hours 41 mins,669 km +Greer,Punta Gorda(Florida),,10 hours 1 min,"1,100 km" +Greer,Fort Lauderdale(Florida),,10 hours 15 mins,"1,156 km" +Greer,Pensacola(Florida),,7 hours 19 mins,777 km +Sarasota(Florida),Greer,,9 hours 34 mins,"1,067 km" +Fort Myers(Florida),Greer,,10 hours 31 mins,"1,173 km" +Gainesville(Florida),Greer,,6 hours 53 mins,742 km +Orlando(Florida),Greer,,7 hours 39 mins,855 km +Daytona Beach(Florida),Greer,,7 hours 4 mins,772 km +Jacksonville(Florida),Greer,,5 hours 42 mins,630 km +Tampa(Florida),Greer,,8 hours 46 mins,982 km +Panama City(Florida),Greer,,7 hours 15 mins,721 km +Key West(Florida),Greer,,13 hours 39 mins,"1,439 km" +West Palm Beach(Florida),Greer,,9 hours 36 mins,"1,086 km" +Miami(Florida),Greer,,10 hours 36 mins,"1,187 km" +Tallahassee(Florida),Greer,,6 hours 41 mins,668 km +Punta Gorda(Florida),Greer,,10 hours 6 mins,"1,136 km" +Fort Lauderdale(Florida),Greer,,10 hours 15 mins,"1,154 km" +Pensacola(Florida),Greer,,7 hours 16 mins,777 km +Newark,State College(Pennsylvania),,3 hours 36 mins,365 km +Newark,Johnstown(Pennsylvania),,4 hours 49 mins,491 km +Newark,Harrisburg(Pennsylvania),,2 hours 38 mins,258 km +Newark,Erie(Pennsylvania),,6 hours 22 mins,679 km +Newark,Pittsburgh(Pennsylvania),,5 hours 43 mins,580 km +Newark,Latrobe(Pennsylvania),,5 hours 15 mins,537 km +Newark,Philadelphia(Pennsylvania),,1 hour 28 mins,138 km +Newark,Lewisburg(Pennsylvania),,2 hours 40 mins,263 km +Newark,Scranton(Pennsylvania),,1 hour 51 mins,178 km +State College(Pennsylvania),Newark,,3 hours 34 mins,365 km +Johnstown(Pennsylvania),Newark,,4 hours 47 mins,491 km +Harrisburg(Pennsylvania),Newark,,2 hours 38 mins,257 km +Erie(Pennsylvania),Newark,,6 hours 23 mins,680 km +Pittsburgh(Pennsylvania),Newark,,5 hours 44 mins,580 km +Latrobe(Pennsylvania),Newark,,5 hours 15 mins,534 km +Philadelphia(Pennsylvania),Newark,,1 hour 29 mins,138 km +Lewisburg(Pennsylvania),Newark,,2 hours 39 mins,262 km +Scranton(Pennsylvania),Newark,,1 hour 51 mins,179 km +Provo,San Diego(California),,10 hours 13 mins,"1,137 km" +Provo,Redding(California),,11 hours 16 mins,"1,210 km" +Provo,Sacramento(California),,10 hours 6 mins,"1,107 km" +Provo,Fresno(California),,11 hours 9 mins,"1,239 km" +Provo,San Luis Obispo(California),,11 hours 45 mins,"1,282 km" +Provo,Oakland(California),,11 hours 20 mins,"1,237 km" +Provo,Santa Barbara(California),,10 hours 44 mins,"1,181 km" +Provo,Stockton(California),,10 hours 49 mins,"1,184 km" +Provo,Santa Rosa(California),,11 hours 39 mins,"1,262 km" +Provo,Bakersfield(California),,9 hours 32 mins,"1,063 km" +Provo,Santa Ana(California),,9 hours 21 mins,"1,038 km" +Provo,Santa Maria(California),,11 hours 32 mins,"1,237 km" +Provo,San Jose(California),,11 hours 58 mins,"1,300 km" +Provo,Burbank(California),,9 hours 24 mins,"1,048 km" +Provo,Arcata(California),,14 hours 2 mins,"1,434 km" +Provo,Butte(California),,10 hours 48 mins,"1,146 km" +Provo,Palm Springs(California),,9 hours 26 mins,"1,053 km" +Provo,Los Angeles(California),,9 hours 23 mins,"1,042 km" +Provo,Long Beach(California),,9 hours 33 mins,"1,061 km" +Provo,San Francisco(California),,11 hours 29 mins,"1,247 km" +Provo,Monterey(California),,12 hours 59 mins,"1,407 km" +San Diego(California),Provo,,10 hours 23 mins,"1,138 km" +Redding(California),Provo,,11 hours 13 mins,"1,216 km" +Sacramento(California),Provo,,10 hours 7 mins,"1,114 km" +Fresno(California),Provo,,11 hours 19 mins,"1,240 km" +San Luis Obispo(California),Provo,,11 hours 54 mins,"1,285 km" +Oakland(California),Provo,,11 hours 18 mins,"1,243 km" +Santa Barbara(California),Provo,,10 hours 51 mins,"1,182 km" +Stockton(California),Provo,,10 hours 49 mins,"1,190 km" +Santa Rosa(California),Provo,,11 hours 39 mins,"1,269 km" +Bakersfield(California),Provo,,9 hours 44 mins,"1,065 km" +Santa Ana(California),Provo,,9 hours 26 mins,"1,036 km" +Santa Maria(California),Provo,,11 hours 43 mins,"1,241 km" +San Jose(California),Provo,,11 hours 53 mins,"1,304 km" +Burbank(California),Provo,,9 hours 27 mins,"1,043 km" +Arcata(California),Provo,,13 hours 58 mins,"1,440 km" +Butte(California),Provo,,10 hours 49 mins,"1,138 km" +Palm Springs(California),Provo,,9 hours 32 mins,"1,053 km" +Los Angeles(California),Provo,,9 hours 25 mins,"1,039 km" +Long Beach(California),Provo,,9 hours 44 mins,"1,066 km" +San Francisco(California),Provo,,11 hours 25 mins,"1,253 km" +Monterey(California),Provo,,12 hours 54 mins,"1,411 km" +Houston,Pellston(Michigan),,21 hours 27 mins,"2,296 km" +Houston,Traverse City(Michigan),,20 hours 21 mins,"2,199 km" +Houston,Alpena(Michigan),,22 hours 0 mins,"2,354 km" +Houston,Iron Mountain(Michigan),,20 hours 41 mins,"2,190 km" +Houston,Kalamazoo(Michigan),,17 hours 50 mins,"1,921 km" +Houston,Saginaw(Michigan),,20 hours 1 min,"2,156 km" +Houston,Grand Rapids(Michigan),,18 hours 15 mins,"1,970 km" +Houston,Lansing(Michigan),,18 hours 51 mins,"2,036 km" +Houston,Muskegon(Michigan),,18 hours 31 mins,"1,985 km" +Houston,Hancock(Michigan),,22 hours 15 mins,"2,342 km" +Houston,Detroit(Michigan),,19 hours 28 mins,"2,092 km" +Houston,Escanaba(Michigan),,20 hours 53 mins,"2,209 km" +Pellston(Michigan),Houston,,21 hours 30 mins,"2,281 km" +Traverse City(Michigan),Houston,,20 hours 26 mins,"2,186 km" +Alpena(Michigan),Houston,,21 hours 59 mins,"2,338 km" +Iron Mountain(Michigan),Houston,,20 hours 39 mins,"2,187 km" +Kalamazoo(Michigan),Houston,,17 hours 53 mins,"1,907 km" +Saginaw(Michigan),Houston,,20 hours 0 mins,"2,139 km" +Grand Rapids(Michigan),Houston,,18 hours 16 mins,"1,958 km" +Lansing(Michigan),Houston,,18 hours 53 mins,"2,022 km" +Muskegon(Michigan),Houston,,18 hours 33 mins,"1,970 km" +Hancock(Michigan),Houston,,22 hours 13 mins,"2,339 km" +Detroit(Michigan),Houston,,19 hours 34 mins,"2,079 km" +Escanaba(Michigan),Houston,,20 hours 52 mins,"2,206 km" +Wilmington,Abilene(Texas),,19 hours 57 mins,"2,227 km" +Wilmington,Amarillo(Texas),,22 hours 4 mins,"2,468 km" +Wilmington,Harlingen(Texas),,22 hours 18 mins,"2,470 km" +Wilmington,Lubbock(Texas),,22 hours 21 mins,"2,492 km" +Wilmington,College Station(Texas),,18 hours 33 mins,"2,005 km" +Wilmington,Corpus Christi(Texas),,20 hours 32 mins,"2,275 km" +Wilmington,Wichita Falls(Texas),,19 hours 23 mins,"2,165 km" +Wilmington,Waco(Texas),,18 hours 25 mins,"2,013 km" +Wilmington,San Angelo(Texas),,21 hours 11 mins,"2,351 km" +Wilmington,Houston(Texas),,17 hours 24 mins,"1,942 km" +Wilmington,San Antonio(Texas),,20 hours 16 mins,"2,256 km" +Wilmington,Del Rio(Texas),,22 hours 39 mins,"2,503 km" +Wilmington,Mission(Texas),,22 hours 44 mins,"2,509 km" +Wilmington,Beaumont(Texas),,16 hours 11 mins,"1,808 km" +Wilmington,Longview(Texas),,15 hours 39 mins,"1,738 km" +Wilmington,Midland(Texas),,22 hours 5 mins,"2,467 km" +Wilmington,El Paso(Texas),,1 day 2 hours,"2,957 km" +Wilmington,Brownsville(Texas),,22 hours 39 mins,"2,509 km" +Wilmington,Austin(Texas),,19 hours 50 mins,"2,175 km" +Wilmington,Dallas(Texas),,17 hours 22 mins,"1,938 km" +Wilmington,Killeen(Texas),,19 hours 14 mins,"2,109 km" +Wilmington,Laredo(Texas),,22 hours 24 mins,"2,447 km" +Wilmington,Texarkana(Texas),,15 hours 41 mins,"1,749 km" +Abilene(Texas),Wilmington,,19 hours 53 mins,"2,222 km" +Amarillo(Texas),Wilmington,,22 hours 0 mins,"2,454 km" +Harlingen(Texas),Wilmington,,22 hours 10 mins,"2,468 km" +Lubbock(Texas),Wilmington,,22 hours 12 mins,"2,487 km" +College Station(Texas),Wilmington,,18 hours 25 mins,"1,998 km" +Corpus Christi(Texas),Wilmington,,20 hours 32 mins,"2,279 km" +Wichita Falls(Texas),Wilmington,,19 hours 22 mins,"2,151 km" +Waco(Texas),Wilmington,,18 hours 19 mins,"2,008 km" +San Angelo(Texas),Wilmington,,21 hours 5 mins,"2,346 km" +Houston(Texas),Wilmington,,17 hours 20 mins,"1,940 km" +San Antonio(Texas),Wilmington,,20 hours 13 mins,"2,254 km" +Del Rio(Texas),Wilmington,,22 hours 38 mins,"2,501 km" +Mission(Texas),Wilmington,,22 hours 38 mins,"2,508 km" +Beaumont(Texas),Wilmington,,16 hours 7 mins,"1,807 km" +Longview(Texas),Wilmington,,15 hours 35 mins,"1,732 km" +Midland(Texas),Wilmington,,21 hours 59 mins,"2,462 km" +El Paso(Texas),Wilmington,,1 day 2 hours,"2,952 km" +Brownsville(Texas),Wilmington,,22 hours 34 mins,"2,508 km" +Austin(Texas),Wilmington,,19 hours 45 mins,"2,169 km" +Dallas(Texas),Wilmington,,17 hours 18 mins,"1,931 km" +Killeen(Texas),Wilmington,,19 hours 9 mins,"2,104 km" +Laredo(Texas),Wilmington,,22 hours 17 mins,"2,446 km" +Texarkana(Texas),Wilmington,,15 hours 40 mins,"1,750 km" +Burbank,Seattle(Washington),,17 hours 9 mins,"1,811 km" +Burbank,Wenatchee(Washington),,18 hours 12 mins,"1,834 km" +Burbank,Pasco(Washington),,16 hours 41 mins,"1,703 km" +Burbank,Yakima(Washington),,16 hours 24 mins,"1,653 km" +Burbank,Walla Walla(Washington),,16 hours 19 mins,"1,660 km" +Burbank,Everett(Washington),,17 hours 38 mins,"1,856 km" +Burbank,Spokane(Washington),,18 hours 40 mins,"1,920 km" +Seattle(Washington),Burbank,,17 hours 8 mins,"1,812 km" +Wenatchee(Washington),Burbank,,18 hours 17 mins,"1,825 km" +Pasco(Washington),Burbank,,16 hours 46 mins,"1,703 km" +Yakima(Washington),Burbank,,16 hours 28 mins,"1,654 km" +Walla Walla(Washington),Burbank,,16 hours 32 mins,"1,663 km" +Everett(Washington),Burbank,,17 hours 35 mins,"1,857 km" +Spokane(Washington),Burbank,,18 hours 44 mins,"1,921 km" +Des Moines,Nashville(Tennessee),,9 hours 55 mins,"1,057 km" +Des Moines,Bristol(Tennessee),,13 hours 42 mins,"1,430 km" +Des Moines,Knoxville(Tennessee),,12 hours 8 mins,"1,337 km" +Des Moines,Chattanooga(Tennessee),,11 hours 49 mins,"1,266 km" +Des Moines,Memphis(Tennessee),,9 hours 16 mins,994 km +Nashville(Tennessee),Des Moines,,9 hours 55 mins,"1,060 km" +Bristol(Tennessee),Des Moines,,13 hours 42 mins,"1,431 km" +Knoxville(Tennessee),Des Moines,,12 hours 10 mins,"1,339 km" +Chattanooga(Tennessee),Des Moines,,11 hours 51 mins,"1,270 km" +Memphis(Tennessee),Des Moines,,9 hours 18 mins,996 km +Sacramento,North Bend(Oregon),,7 hours 44 mins,764 km +Sacramento,Portland(Oregon),,8 hours 56 mins,932 km +Sacramento,Medford(Oregon),,4 hours 51 mins,495 km +Sacramento,Bend(Oregon),,6 hours 59 mins,702 km +Sacramento,Eugene(Oregon),,7 hours 20 mins,761 km +North Bend(Oregon),Sacramento,,7 hours 44 mins,763 km +Portland(Oregon),Sacramento,,8 hours 59 mins,932 km +Medford(Oregon),Sacramento,,4 hours 53 mins,495 km +Bend(Oregon),Sacramento,,7 hours 1 min,702 km +Eugene(Oregon),Sacramento,,7 hours 21 mins,763 km +Phoenix,Bozeman,,16 hours 20 mins,"1,721 km" +Bozeman,Phoenix,,16 hours 28 mins,"1,723 km" +Austin,State College(Pennsylvania),,23 hours 2 mins,"2,500 km" +Austin,Johnstown(Pennsylvania),,21 hours 57 mins,"2,388 km" +Austin,Harrisburg(Pennsylvania),,22 hours 59 mins,"2,538 km" +Austin,Erie(Pennsylvania),,21 hours 29 mins,"2,371 km" +Austin,Pittsburgh(Pennsylvania),,20 hours 45 mins,"2,278 km" +Austin,Latrobe(Pennsylvania),,21 hours 23 mins,"2,324 km" +Austin,Philadelphia(Pennsylvania),,1 day 0 hours,"2,674 km" +Austin,Lewisburg(Pennsylvania),,23 hours 48 mins,"2,624 km" +Austin,Scranton(Pennsylvania),,1 day 1 hour,"2,726 km" +State College(Pennsylvania),Austin,,23 hours 8 mins,"2,509 km" +Johnstown(Pennsylvania),Austin,,22 hours 4 mins,"2,390 km" +Harrisburg(Pennsylvania),Austin,,23 hours 4 mins,"2,539 km" +Erie(Pennsylvania),Austin,,21 hours 36 mins,"2,373 km" +Pittsburgh(Pennsylvania),Austin,,20 hours 51 mins,"2,283 km" +Latrobe(Pennsylvania),Austin,,21 hours 27 mins,"2,328 km" +Philadelphia(Pennsylvania),Austin,,1 day 0 hours,"2,675 km" +Lewisburg(Pennsylvania),Austin,,23 hours 52 mins,"2,626 km" +Scranton(Pennsylvania),Austin,,1 day 1 hour,"2,726 km" +Washington,Traverse City,,11 hours 36 mins,"1,221 km" +Traverse City,Washington,,11 hours 50 mins,"1,221 km" +Greensboro,Abilene(Texas),,18 hours 50 mins,"2,086 km" +Greensboro,Amarillo(Texas),,20 hours 21 mins,"2,251 km" +Greensboro,Harlingen(Texas),,21 hours 14 mins,"2,337 km" +Greensboro,Lubbock(Texas),,21 hours 13 mins,"2,351 km" +Greensboro,College Station(Texas),,17 hours 26 mins,"1,864 km" +Greensboro,Corpus Christi(Texas),,19 hours 28 mins,"2,142 km" +Greensboro,Wichita Falls(Texas),,18 hours 16 mins,"2,024 km" +Greensboro,Waco(Texas),,17 hours 18 mins,"1,873 km" +Greensboro,San Angelo(Texas),,20 hours 4 mins,"2,210 km" +Greensboro,Houston(Texas),,16 hours 20 mins,"1,809 km" +Greensboro,San Antonio(Texas),,19 hours 12 mins,"2,123 km" +Greensboro,Del Rio(Texas),,21 hours 36 mins,"2,370 km" +Greensboro,Mission(Texas),,21 hours 40 mins,"2,377 km" +Greensboro,Beaumont(Texas),,15 hours 7 mins,"1,676 km" +Greensboro,Longview(Texas),,14 hours 31 mins,"1,593 km" +Greensboro,Midland(Texas),,20 hours 58 mins,"2,327 km" +Greensboro,El Paso(Texas),,1 day 1 hour,"2,817 km" +Greensboro,Brownsville(Texas),,21 hours 36 mins,"2,376 km" +Greensboro,Austin(Texas),,18 hours 43 mins,"2,034 km" +Greensboro,Dallas(Texas),,16 hours 15 mins,"1,798 km" +Greensboro,Killeen(Texas),,18 hours 6 mins,"1,968 km" +Greensboro,Laredo(Texas),,21 hours 21 mins,"2,315 km" +Greensboro,Texarkana(Texas),,14 hours 9 mins,"1,533 km" +Abilene(Texas),Greensboro,,18 hours 48 mins,"2,082 km" +Amarillo(Texas),Greensboro,,20 hours 19 mins,"2,252 km" +Harlingen(Texas),Greensboro,,21 hours 9 mins,"2,337 km" +Lubbock(Texas),Greensboro,,21 hours 7 mins,"2,348 km" +College Station(Texas),Greensboro,,17 hours 20 mins,"1,859 km" +Corpus Christi(Texas),Greensboro,,19 hours 31 mins,"2,148 km" +Wichita Falls(Texas),Greensboro,,18 hours 17 mins,"2,012 km" +Waco(Texas),Greensboro,,17 hours 14 mins,"1,868 km" +San Angelo(Texas),Greensboro,,20 hours 0 mins,"2,207 km" +Houston(Texas),Greensboro,,16 hours 19 mins,"1,809 km" +San Antonio(Texas),Greensboro,,19 hours 12 mins,"2,123 km" +Del Rio(Texas),Greensboro,,21 hours 38 mins,"2,370 km" +Mission(Texas),Greensboro,,21 hours 38 mins,"2,377 km" +Beaumont(Texas),Greensboro,,15 hours 7 mins,"1,676 km" +Longview(Texas),Greensboro,,14 hours 30 mins,"1,593 km" +Midland(Texas),Greensboro,,20 hours 54 mins,"2,322 km" +El Paso(Texas),Greensboro,,1 day 1 hour,"2,812 km" +Brownsville(Texas),Greensboro,,21 hours 33 mins,"2,377 km" +Austin(Texas),Greensboro,,18 hours 40 mins,"2,030 km" +Dallas(Texas),Greensboro,,16 hours 14 mins,"1,791 km" +Killeen(Texas),Greensboro,,18 hours 5 mins,"1,964 km" +Laredo(Texas),Greensboro,,21 hours 17 mins,"2,315 km" +Texarkana(Texas),Greensboro,,14 hours 7 mins,"1,533 km" +St. Louis,Baltimore,,12 hours 30 mins,"1,321 km" +Baltimore,St. Louis,,12 hours 27 mins,"1,321 km" +Dallas,Charlotte,,15 hours 2 mins,"1,651 km" +Charlotte,Dallas,,15 hours 2 mins,"1,657 km" +Sarasota,Abilene(Texas),,19 hours 25 mins,"2,156 km" +Sarasota,Amarillo(Texas),,22 hours 16 mins,"2,454 km" +Sarasota,Harlingen(Texas),,19 hours 37 mins,"2,191 km" +Sarasota,Lubbock(Texas),,21 hours 49 mins,"2,420 km" +Sarasota,College Station(Texas),,16 hours 8 mins,"1,809 km" +Sarasota,Corpus Christi(Texas),,17 hours 52 mins,"1,997 km" +Sarasota,Wichita Falls(Texas),,18 hours 51 mins,"2,094 km" +Sarasota,Waco(Texas),,17 hours 27 mins,"1,919 km" +Sarasota,San Angelo(Texas),,20 hours 26 mins,"2,247 km" +Sarasota,Houston(Texas),,14 hours 44 mins,"1,663 km" +Sarasota,San Antonio(Texas),,17 hours 36 mins,"1,977 km" +Sarasota,Del Rio(Texas),,19 hours 59 mins,"2,224 km" +Sarasota,Mission(Texas),,20 hours 4 mins,"2,231 km" +Sarasota,Beaumont(Texas),,13 hours 30 mins,"1,530 km" +Sarasota,Longview(Texas),,15 hours 8 mins,"1,667 km" +Sarasota,Midland(Texas),,21 hours 34 mins,"2,396 km" +Sarasota,El Paso(Texas),,1 day 1 hour,"2,862 km" +Sarasota,Brownsville(Texas),,19 hours 59 mins,"2,231 km" +Sarasota,Austin(Texas),,17 hours 11 mins,"1,926 km" +Sarasota,Dallas(Texas),,16 hours 50 mins,"1,867 km" +Sarasota,Killeen(Texas),,17 hours 47 mins,"1,981 km" +Sarasota,Laredo(Texas),,19 hours 44 mins,"2,169 km" +Sarasota,Texarkana(Texas),,15 hours 10 mins,"1,678 km" +Abilene(Texas),Sarasota,,19 hours 25 mins,"2,150 km" +Amarillo(Texas),Sarasota,,22 hours 16 mins,"2,442 km" +Harlingen(Texas),Sarasota,,19 hours 34 mins,"2,190 km" +Lubbock(Texas),Sarasota,,21 hours 44 mins,"2,416 km" +College Station(Texas),Sarasota,,16 hours 7 mins,"1,811 km" +Corpus Christi(Texas),Sarasota,,17 hours 56 mins,"2,001 km" +Wichita Falls(Texas),Sarasota,,18 hours 54 mins,"2,080 km" +Waco(Texas),Sarasota,,17 hours 28 mins,"1,918 km" +San Angelo(Texas),Sarasota,,20 hours 26 mins,"2,246 km" +Houston(Texas),Sarasota,,14 hours 44 mins,"1,662 km" +San Antonio(Texas),Sarasota,,17 hours 37 mins,"1,976 km" +Del Rio(Texas),Sarasota,,20 hours 3 mins,"2,223 km" +Mission(Texas),Sarasota,,20 hours 3 mins,"2,231 km" +Beaumont(Texas),Sarasota,,13 hours 32 mins,"1,529 km" +Longview(Texas),Sarasota,,15 hours 7 mins,"1,660 km" +Midland(Texas),Sarasota,,21 hours 31 mins,"2,390 km" +El Paso(Texas),Sarasota,,1 day 1 hour,"2,861 km" +Brownsville(Texas),Sarasota,,19 hours 58 mins,"2,230 km" +Austin(Texas),Sarasota,,17 hours 12 mins,"1,926 km" +Dallas(Texas),Sarasota,,16 hours 51 mins,"1,859 km" +Killeen(Texas),Sarasota,,17 hours 46 mins,"1,974 km" +Laredo(Texas),Sarasota,,19 hours 42 mins,"2,168 km" +Texarkana(Texas),Sarasota,,15 hours 12 mins,"1,678 km" +Chicago,Abilene(Texas),,15 hours 46 mins,"1,743 km" +Chicago,Amarillo(Texas),,15 hours 17 mins,"1,695 km" +Chicago,Harlingen(Texas),,21 hours 8 mins,"2,256 km" +Chicago,Lubbock(Texas),,16 hours 39 mins,"1,834 km" +Chicago,College Station(Texas),,16 hours 15 mins,"1,701 km" +Chicago,Corpus Christi(Texas),,19 hours 22 mins,"2,061 km" +Chicago,Wichita Falls(Texas),,13 hours 32 mins,"1,499 km" +Chicago,Waco(Texas),,15 hours 28 mins,"1,644 km" +Chicago,San Angelo(Texas),,17 hours 2 mins,"1,877 km" +Chicago,Houston(Texas),,16 hours 14 mins,"1,728 km" +Chicago,San Antonio(Texas),,18 hours 4 mins,"1,930 km" +Chicago,Del Rio(Texas),,19 hours 27 mins,"2,130 km" +Chicago,Mission(Texas),,21 hours 33 mins,"2,315 km" +Chicago,Beaumont(Texas),,15 hours 56 mins,"1,682 km" +Chicago,Longview(Texas),,13 hours 6 mins,"1,404 km" +Chicago,Midland(Texas),,17 hours 37 mins,"1,945 km" +Chicago,El Paso(Texas),,21 hours 52 mins,"2,393 km" +Chicago,Brownsville(Texas),,21 hours 30 mins,"2,295 km" +Chicago,Austin(Texas),,16 hours 52 mins,"1,803 km" +Chicago,Dallas(Texas),,14 hours 4 mins,"1,490 km" +Chicago,Killeen(Texas),,16 hours 16 mins,"1,738 km" +Chicago,Laredo(Texas),,20 hours 20 mins,"2,180 km" +Chicago,Texarkana(Texas),,11 hours 40 mins,"1,263 km" +Abilene(Texas),Chicago,,15 hours 48 mins,"1,743 km" +Amarillo(Texas),Chicago,,15 hours 18 mins,"1,694 km" +Harlingen(Texas),Chicago,,21 hours 2 mins,"2,270 km" +Lubbock(Texas),Chicago,,16 hours 38 mins,"1,833 km" +College Station(Texas),Chicago,,16 hours 10 mins,"1,712 km" +Corpus Christi(Texas),Chicago,,19 hours 24 mins,"2,081 km" +Wichita Falls(Texas),Chicago,,13 hours 32 mins,"1,499 km" +Waco(Texas),Chicago,,15 hours 28 mins,"1,709 km" +San Angelo(Texas),Chicago,,17 hours 2 mins,"1,877 km" +Houston(Texas),Chicago,,16 hours 12 mins,"1,743 km" +San Antonio(Texas),Chicago,,18 hours 4 mins,"1,997 km" +Del Rio(Texas),Chicago,,19 hours 25 mins,"2,130 km" +Mission(Texas),Chicago,,21 hours 31 mins,"2,383 km" +Beaumont(Texas),Chicago,,15 hours 54 mins,"1,697 km" +Longview(Texas),Chicago,,13 hours 5 mins,"1,417 km" +Midland(Texas),Chicago,,17 hours 38 mins,"1,946 km" +El Paso(Texas),Chicago,,21 hours 50 mins,"2,390 km" +Brownsville(Texas),Chicago,,21 hours 26 mins,"2,310 km" +Austin(Texas),Chicago,,16 hours 53 mins,"1,871 km" +Dallas(Texas),Chicago,,14 hours 6 mins,"1,557 km" +Killeen(Texas),Chicago,,16 hours 17 mins,"1,805 km" +Laredo(Texas),Chicago,,20 hours 21 mins,"2,248 km" +Texarkana(Texas),Chicago,,11 hours 37 mins,"1,276 km" +Sioux Falls,Flagstaff(Arizona),,20 hours 6 mins,"2,085 km" +Sioux Falls,Yuma(Arizona),,1 day 1 hour,"2,573 km" +Sioux Falls,Phoenix(Arizona),,21 hours 58 mins,"2,279 km" +Sioux Falls,Prescott(Arizona),,21 hours 38 mins,"2,237 km" +Sioux Falls,Tucson(Arizona),,22 hours 4 mins,"2,334 km" +Flagstaff(Arizona),Sioux Falls,,19 hours 57 mins,"2,086 km" +Yuma(Arizona),Sioux Falls,,1 day 1 hour,"2,598 km" +Phoenix(Arizona),Sioux Falls,,21 hours 53 mins,"2,280 km" +Prescott(Arizona),Sioux Falls,,21 hours 28 mins,"2,239 km" +Tucson(Arizona),Sioux Falls,,21 hours 59 mins,"2,335 km" +Dallas,Lynchburg(Virginia),,17 hours 4 mins,"1,856 km" +Dallas,Richmond(Virginia),,18 hours 37 mins,"2,054 km" +Dallas,Petersburg(Virginia),,18 hours 41 mins,"2,075 km" +Dallas,Newport News(Virginia),,19 hours 35 mins,"2,161 km" +Dallas,Charlottesville(Virginia),,17 hours 41 mins,"1,945 km" +Dallas,Staunton(Virginia),,17 hours 12 mins,"1,890 km" +Dallas,Jamestown(Virginia),,19 hours 31 mins,"2,143 km" +Dallas,Norfolk(Virginia),,19 hours 52 mins,"2,165 km" +Dallas,Roanoke(Virginia),,16 hours 5 mins,"1,771 km" +Lynchburg(Virginia),Dallas,,17 hours 7 mins,"1,861 km" +Richmond(Virginia),Dallas,,18 hours 40 mins,"2,056 km" +Petersburg(Virginia),Dallas,,18 hours 44 mins,"2,084 km" +Newport News(Virginia),Dallas,,19 hours 37 mins,"2,164 km" +Charlottesville(Virginia),Dallas,,17 hours 42 mins,"1,945 km" +Staunton(Virginia),Dallas,,17 hours 13 mins,"1,891 km" +Jamestown(Virginia),Dallas,,19 hours 32 mins,"2,146 km" +Norfolk(Virginia),Dallas,,19 hours 53 mins,"2,171 km" +Roanoke(Virginia),Dallas,,16 hours 8 mins,"1,772 km" +Sacramento,Denver,,17 hours 7 mins,"1,876 km" +Denver,Sacramento,,17 hours 9 mins,"1,875 km" +Chicago,Albuquerque,,19 hours 20 mins,"2,153 km" +Albuquerque,Chicago,,19 hours 20 mins,"2,151 km" +Boston,Syracuse,,4 hours 43 mins,502 km +Syracuse,Boston,,4 hours 43 mins,502 km +Rapid City,Bemidji(Minnesota),,9 hours 45 mins,"1,004 km" +Rapid City,Minneapolis(Minnesota),,8 hours 18 mins,927 km +Rapid City,Duluth(Minnesota),,10 hours 28 mins,"1,172 km" +Rapid City,Brainerd(Minnesota),,9 hours 18 mins,988 km +Rapid City,Gustavus(Minnesota),,7 hours 10 mins,815 km +Rapid City,St. Cloud(Minnesota),,8 hours 25 mins,902 km +Rapid City,Hibbing(Minnesota),,11 hours 16 mins,"1,131 km" +Rapid City,International Falls(Minnesota),,11 hours 37 mins,"1,179 km" +Bemidji(Minnesota),Rapid City,,9 hours 46 mins,"1,005 km" +Minneapolis(Minnesota),Rapid City,,8 hours 21 mins,925 km +Duluth(Minnesota),Rapid City,,10 hours 31 mins,"1,172 km" +Brainerd(Minnesota),Rapid City,,9 hours 24 mins,989 km +Gustavus(Minnesota),Rapid City,,7 hours 14 mins,815 km +St. Cloud(Minnesota),Rapid City,,8 hours 31 mins,901 km +Hibbing(Minnesota),Rapid City,,11 hours 18 mins,"1,131 km" +International Falls(Minnesota),Rapid City,,11 hours 39 mins,"1,178 km" +Norfolk,Moline(Illinois),,15 hours 28 mins,"1,643 km" +Norfolk,Belleville(Illinois),,13 hours 35 mins,"1,452 km" +Norfolk,Bloomington(Illinois),,13 hours 34 mins,"1,429 km" +Norfolk,Champaign(Illinois),,12 hours 51 mins,"1,352 km" +Norfolk,Chicago(Illinois),,13 hours 29 mins,"1,424 km" +Norfolk,Rockford(Illinois),,14 hours 53 mins,"1,564 km" +Norfolk,Peoria(Illinois),,14 hours 5 mins,"1,492 km" +Moline(Illinois),Norfolk,,15 hours 25 mins,"1,639 km" +Belleville(Illinois),Norfolk,,13 hours 35 mins,"1,448 km" +Bloomington(Illinois),Norfolk,,13 hours 34 mins,"1,428 km" +Champaign(Illinois),Norfolk,,12 hours 51 mins,"1,348 km" +Chicago(Illinois),Norfolk,,13 hours 33 mins,"1,427 km" +Rockford(Illinois),Norfolk,,14 hours 58 mins,"1,576 km" +Peoria(Illinois),Norfolk,,14 hours 4 mins,"1,490 km" +New York,Charlottesville,,5 hours 46 mins,550 km +Charlottesville,New York,,5 hours 46 mins,549 km +Punta Gorda,Abilene(Texas),,19 hours 57 mins,"2,225 km" +Punta Gorda,Amarillo(Texas),,22 hours 47 mins,"2,523 km" +Punta Gorda,Harlingen(Texas),,20 hours 9 mins,"2,261 km" +Punta Gorda,Lubbock(Texas),,22 hours 20 mins,"2,490 km" +Punta Gorda,College Station(Texas),,16 hours 39 mins,"1,878 km" +Punta Gorda,Corpus Christi(Texas),,18 hours 23 mins,"2,066 km" +Punta Gorda,Wichita Falls(Texas),,19 hours 23 mins,"2,163 km" +Punta Gorda,Waco(Texas),,17 hours 59 mins,"1,988 km" +Punta Gorda,San Angelo(Texas),,20 hours 57 mins,"2,317 km" +Punta Gorda,Houston(Texas),,15 hours 15 mins,"1,733 km" +Punta Gorda,San Antonio(Texas),,18 hours 7 mins,"2,047 km" +Punta Gorda,Del Rio(Texas),,20 hours 31 mins,"2,294 km" +Punta Gorda,Mission(Texas),,20 hours 35 mins,"2,300 km" +Punta Gorda,Beaumont(Texas),,14 hours 2 mins,"1,600 km" +Punta Gorda,Longview(Texas),,15 hours 39 mins,"1,736 km" +Punta Gorda,Midland(Texas),,22 hours 5 mins,"2,466 km" +Punta Gorda,El Paso(Texas),,1 day 2 hours,"2,931 km" +Punta Gorda,Brownsville(Texas),,20 hours 30 mins,"2,300 km" +Punta Gorda,Austin(Texas),,17 hours 43 mins,"1,996 km" +Punta Gorda,Dallas(Texas),,17 hours 22 mins,"1,937 km" +Punta Gorda,Killeen(Texas),,18 hours 18 mins,"2,051 km" +Punta Gorda,Laredo(Texas),,20 hours 15 mins,"2,239 km" +Punta Gorda,Texarkana(Texas),,15 hours 41 mins,"1,747 km" +Abilene(Texas),Punta Gorda,,19 hours 57 mins,"2,220 km" +Amarillo(Texas),Punta Gorda,,22 hours 48 mins,"2,512 km" +Harlingen(Texas),Punta Gorda,,20 hours 6 mins,"2,260 km" +Lubbock(Texas),Punta Gorda,,22 hours 16 mins,"2,486 km" +College Station(Texas),Punta Gorda,,16 hours 39 mins,"1,881 km" +Corpus Christi(Texas),Punta Gorda,,18 hours 28 mins,"2,071 km" +Wichita Falls(Texas),Punta Gorda,,19 hours 26 mins,"2,150 km" +Waco(Texas),Punta Gorda,,18 hours 0 mins,"1,988 km" +San Angelo(Texas),Punta Gorda,,20 hours 58 mins,"2,316 km" +Houston(Texas),Punta Gorda,,15 hours 16 mins,"1,732 km" +San Antonio(Texas),Punta Gorda,,18 hours 9 mins,"2,046 km" +Del Rio(Texas),Punta Gorda,,20 hours 35 mins,"2,293 km" +Mission(Texas),Punta Gorda,,20 hours 35 mins,"2,301 km" +Beaumont(Texas),Punta Gorda,,14 hours 4 mins,"1,599 km" +Longview(Texas),Punta Gorda,,15 hours 39 mins,"1,731 km" +Midland(Texas),Punta Gorda,,22 hours 3 mins,"2,460 km" +El Paso(Texas),Punta Gorda,,1 day 2 hours,"2,931 km" +Brownsville(Texas),Punta Gorda,,20 hours 30 mins,"2,300 km" +Austin(Texas),Punta Gorda,,17 hours 43 mins,"1,996 km" +Dallas(Texas),Punta Gorda,,17 hours 22 mins,"1,929 km" +Killeen(Texas),Punta Gorda,,18 hours 18 mins,"2,045 km" +Laredo(Texas),Punta Gorda,,20 hours 14 mins,"2,238 km" +Texarkana(Texas),Punta Gorda,,15 hours 44 mins,"1,748 km" +Cedar Rapids,Moline(Illinois),,1 hour 20 mins,138 km +Cedar Rapids,Belleville(Illinois),,4 hours 42 mins,483 km +Cedar Rapids,Bloomington(Illinois),,3 hours 17 mins,347 km +Cedar Rapids,Champaign(Illinois),,3 hours 58 mins,429 km +Cedar Rapids,Chicago(Illinois),,3 hours 48 mins,397 km +Cedar Rapids,Rockford(Illinois),,3 hours 4 mins,265 km +Cedar Rapids,Peoria(Illinois),,2 hours 40 mins,286 km +Moline(Illinois),Cedar Rapids,,1 hour 20 mins,137 km +Belleville(Illinois),Cedar Rapids,,4 hours 44 mins,484 km +Bloomington(Illinois),Cedar Rapids,,3 hours 16 mins,346 km +Champaign(Illinois),Cedar Rapids,,4 hours 0 mins,429 km +Chicago(Illinois),Cedar Rapids,,3 hours 43 mins,395 km +Rockford(Illinois),Cedar Rapids,,3 hours 3 mins,265 km +Peoria(Illinois),Cedar Rapids,,2 hours 40 mins,286 km +Green Bay,Orlando,,19 hours 59 mins,"2,197 km" +Orlando,Green Bay,,19 hours 56 mins,"2,198 km" +Boise,San Diego,,14 hours 24 mins,"1,533 km" +San Diego,Boise,,14 hours 33 mins,"1,537 km" +Portland,San Diego(California),,16 hours 36 mins,"1,742 km" +Portland,Redding(California),,6 hours 37 mins,678 km +Portland,Sacramento(California),,8 hours 59 mins,932 km +Portland,Fresno(California),,11 hours 35 mins,"1,205 km" +Portland,San Luis Obispo(California),,12 hours 57 mins,"1,363 km" +Portland,Oakland(California),,9 hours 42 mins,"1,012 km" +Portland,Santa Barbara(California),,14 hours 30 mins,"1,514 km" +Portland,Stockton(California),,9 hours 40 mins,"1,008 km" +Portland,Santa Rosa(California),,10 hours 3 mins,984 km +Portland,Bakersfield(California),,13 hours 11 mins,"1,378 km" +Portland,Santa Ana(California),,15 hours 21 mins,"1,600 km" +Portland,Santa Maria(California),,13 hours 27 mins,"1,413 km" +Portland,San Jose(California),,10 hours 20 mins,"1,074 km" +Portland,Burbank(California),,14 hours 31 mins,"1,533 km" +Portland,Arcata(California),,7 hours 3 mins,650 km +Portland,Butte(California),,8 hours 15 mins,829 km +Portland,Palm Springs(California),,16 hours 15 mins,"1,719 km" +Portland,Los Angeles(California),,14 hours 44 mins,"1,550 km" +Portland,Long Beach(California),,15 hours 4 mins,"1,585 km" +Portland,San Francisco(California),,9 hours 51 mins,"1,021 km" +Portland,Monterey(California),,11 hours 21 mins,"1,182 km" +San Diego(California),Portland,,16 hours 38 mins,"1,741 km" +Redding(California),Portland,,6 hours 35 mins,678 km +Sacramento(California),Portland,,8 hours 56 mins,932 km +Fresno(California),Portland,,11 hours 32 mins,"1,209 km" +San Luis Obispo(California),Portland,,12 hours 50 mins,"1,361 km" +Oakland(California),Portland,,9 hours 39 mins,"1,012 km" +Santa Barbara(California),Portland,,14 hours 23 mins,"1,514 km" +Stockton(California),Portland,,9 hours 38 mins,"1,009 km" +Santa Rosa(California),Portland,,10 hours 0 mins,984 km +Bakersfield(California),Portland,,13 hours 7 mins,"1,382 km" +Santa Ana(California),Portland,,15 hours 21 mins,"1,600 km" +Santa Maria(California),Portland,,13 hours 20 mins,"1,414 km" +San Jose(California),Portland,,10 hours 14 mins,"1,073 km" +Burbank(California),Portland,,14 hours 30 mins,"1,532 km" +Arcata(California),Portland,,6 hours 57 mins,648 km +Butte(California),Portland,,8 hours 11 mins,823 km +Palm Springs(California),Portland,,16 hours 17 mins,"1,718 km" +Los Angeles(California),Portland,,14 hours 43 mins,"1,548 km" +Long Beach(California),Portland,,15 hours 6 mins,"1,586 km" +San Francisco(California),Portland,,9 hours 46 mins,"1,021 km" +Monterey(California),Portland,,11 hours 15 mins,"1,180 km" +Long Beach,Dallas,,20 hours 54 mins,"2,322 km" +Dallas,Long Beach,,20 hours 58 mins,"2,329 km" +Oakland,Seattle(Washington),,12 hours 18 mins,"1,290 km" +Oakland,Wenatchee(Washington),,13 hours 21 mins,"1,313 km" +Oakland,Pasco(Washington),,11 hours 50 mins,"1,182 km" +Oakland,Yakima(Washington),,11 hours 33 mins,"1,133 km" +Oakland,Walla Walla(Washington),,12 hours 14 mins,"1,223 km" +Oakland,Everett(Washington),,12 hours 47 mins,"1,335 km" +Oakland,Spokane(Washington),,13 hours 49 mins,"1,399 km" +Seattle(Washington),Oakland,,12 hours 19 mins,"1,290 km" +Wenatchee(Washington),Oakland,,13 hours 28 mins,"1,303 km" +Pasco(Washington),Oakland,,11 hours 57 mins,"1,182 km" +Yakima(Washington),Oakland,,11 hours 39 mins,"1,132 km" +Walla Walla(Washington),Oakland,,12 hours 21 mins,"1,223 km" +Everett(Washington),Oakland,,12 hours 47 mins,"1,335 km" +Spokane(Washington),Oakland,,13 hours 55 mins,"1,399 km" +Orlando,Cedar Rapids(Iowa),,18 hours 34 mins,"2,053 km" +Orlando,Sioux City(Iowa),,21 hours 50 mins,"2,439 km" +Orlando,Dubuque(Iowa),,18 hours 49 mins,"2,085 km" +Orlando,Des Moines(Iowa),,19 hours 40 mins,"2,159 km" +Orlando,Fort Dodge(Iowa),,20 hours 49 mins,"2,296 km" +Orlando,Mason City(Iowa),,20 hours 42 mins,"2,269 km" +Cedar Rapids(Iowa),Orlando,,18 hours 38 mins,"2,051 km" +Sioux City(Iowa),Orlando,,21 hours 56 mins,"2,440 km" +Dubuque(Iowa),Orlando,,18 hours 54 mins,"2,085 km" +Des Moines(Iowa),Orlando,,19 hours 43 mins,"2,156 km" +Fort Dodge(Iowa),Orlando,,20 hours 53 mins,"2,294 km" +Mason City(Iowa),Orlando,,20 hours 46 mins,"2,272 km" +Washington,Cleveland,,5 hours 55 mins,592 km +Cleveland,Washington,,6 hours 7 mins,593 km +Baltimore,Milwaukee,,12 hours 2 mins,"1,275 km" +Milwaukee,Baltimore,,12 hours 8 mins,"1,277 km" +Charlotte,Charlotte Amalie,,, +Charlotte Amalie,Charlotte,,, +Seattle,Ketchikan,,1 day 1 hour,"1,798 km" +Ketchikan,Seattle,,1 day 1 hour,"1,799 km" +Reno,Seattle(Washington),,11 hours 26 mins,"1,133 km" +Reno,Wenatchee(Washington),,12 hours 10 mins,"1,159 km" +Reno,Pasco(Washington),,10 hours 0 mins,"1,058 km" +Reno,Yakima(Washington),,10 hours 21 mins,978 km +Reno,Walla Walla(Washington),,9 hours 34 mins,999 km +Reno,Everett(Washington),,11 hours 55 mins,"1,179 km" +Reno,Spokane(Washington),,12 hours 0 mins,"1,268 km" +Seattle(Washington),Reno,,11 hours 26 mins,"1,133 km" +Wenatchee(Washington),Reno,,12 hours 15 mins,"1,149 km" +Pasco(Washington),Reno,,10 hours 4 mins,"1,060 km" +Yakima(Washington),Reno,,10 hours 26 mins,977 km +Walla Walla(Washington),Reno,,9 hours 38 mins,999 km +Everett(Washington),Reno,,11 hours 54 mins,"1,178 km" +Spokane(Washington),Reno,,12 hours 3 mins,"1,269 km" +Houston,Fayetteville,,16 hours 37 mins,"1,871 km" +Fayetteville,Houston,,16 hours 41 mins,"1,872 km" +Birmingham,Sarasota(Florida),,, +Birmingham,Fort Myers(Florida),,, +Birmingham,Gainesville(Florida),,, +Birmingham,Orlando(Florida),,, +Birmingham,Daytona Beach(Florida),,, +Birmingham,Jacksonville(Florida),,, +Birmingham,Tampa(Florida),,, +Birmingham,Panama City(Florida),,, +Birmingham,Key West(Florida),,, +Birmingham,West Palm Beach(Florida),,, +Birmingham,Miami(Florida),,, +Birmingham,Tallahassee(Florida),,, +Birmingham,Punta Gorda(Florida),,, +Birmingham,Fort Lauderdale(Florida),,, +Birmingham,Pensacola(Florida),,, +Sarasota(Florida),Birmingham,,, +Fort Myers(Florida),Birmingham,,, +Gainesville(Florida),Birmingham,,, +Orlando(Florida),Birmingham,,, +Daytona Beach(Florida),Birmingham,,, +Jacksonville(Florida),Birmingham,,, +Tampa(Florida),Birmingham,,, +Panama City(Florida),Birmingham,,, +Key West(Florida),Birmingham,,, +West Palm Beach(Florida),Birmingham,,, +Miami(Florida),Birmingham,,, +Tallahassee(Florida),Birmingham,,, +Punta Gorda(Florida),Birmingham,,, +Fort Lauderdale(Florida),Birmingham,,, +Pensacola(Florida),Birmingham,,, +Tampa,Abilene(Texas),,18 hours 37 mins,"2,071 km" +Tampa,Amarillo(Texas),,21 hours 28 mins,"2,369 km" +Tampa,Harlingen(Texas),,18 hours 49 mins,"2,106 km" +Tampa,Lubbock(Texas),,21 hours 1 min,"2,335 km" +Tampa,College Station(Texas),,15 hours 20 mins,"1,724 km" +Tampa,Corpus Christi(Texas),,17 hours 2 mins,"1,912 km" +Tampa,Wichita Falls(Texas),,18 hours 3 mins,"2,009 km" +Tampa,Waco(Texas),,16 hours 39 mins,"1,834 km" +Tampa,San Angelo(Texas),,19 hours 38 mins,"2,162 km" +Tampa,Houston(Texas),,13 hours 55 mins,"1,578 km" +Tampa,San Antonio(Texas),,16 hours 48 mins,"1,892 km" +Tampa,Del Rio(Texas),,19 hours 11 mins,"2,139 km" +Tampa,Mission(Texas),,19 hours 15 mins,"2,146 km" +Tampa,Beaumont(Texas),,12 hours 42 mins,"1,445 km" +Tampa,Longview(Texas),,14 hours 20 mins,"1,582 km" +Tampa,Midland(Texas),,20 hours 45 mins,"2,311 km" +Tampa,El Paso(Texas),,1 day 0 hours,"2,777 km" +Tampa,Brownsville(Texas),,19 hours 11 mins,"2,146 km" +Tampa,Austin(Texas),,16 hours 23 mins,"1,841 km" +Tampa,Dallas(Texas),,16 hours 2 mins,"1,782 km" +Tampa,Killeen(Texas),,16 hours 58 mins,"1,896 km" +Tampa,Laredo(Texas),,18 hours 55 mins,"2,084 km" +Tampa,Texarkana(Texas),,14 hours 22 mins,"1,593 km" +Abilene(Texas),Tampa,,18 hours 38 mins,"2,066 km" +Amarillo(Texas),Tampa,,21 hours 28 mins,"2,358 km" +Harlingen(Texas),Tampa,,18 hours 47 mins,"2,106 km" +Lubbock(Texas),Tampa,,20 hours 57 mins,"2,331 km" +College Station(Texas),Tampa,,15 hours 20 mins,"1,726 km" +Corpus Christi(Texas),Tampa,,17 hours 9 mins,"1,916 km" +Wichita Falls(Texas),Tampa,,18 hours 7 mins,"1,995 km" +Waco(Texas),Tampa,,16 hours 40 mins,"1,833 km" +San Angelo(Texas),Tampa,,19 hours 39 mins,"2,161 km" +Houston(Texas),Tampa,,13 hours 57 mins,"1,578 km" +San Antonio(Texas),Tampa,,16 hours 50 mins,"1,892 km" +Del Rio(Texas),Tampa,,19 hours 15 mins,"2,139 km" +Mission(Texas),Tampa,,19 hours 15 mins,"2,146 km" +Beaumont(Texas),Tampa,,12 hours 44 mins,"1,444 km" +Longview(Texas),Tampa,,14 hours 20 mins,"1,576 km" +Midland(Texas),Tampa,,20 hours 43 mins,"2,305 km" +El Paso(Texas),Tampa,,1 day 1 hour,"2,776 km" +Brownsville(Texas),Tampa,,19 hours 11 mins,"2,146 km" +Austin(Texas),Tampa,,16 hours 24 mins,"1,841 km" +Dallas(Texas),Tampa,,16 hours 3 mins,"1,774 km" +Killeen(Texas),Tampa,,16 hours 59 mins,"1,890 km" +Laredo(Texas),Tampa,,18 hours 55 mins,"2,084 km" +Texarkana(Texas),Tampa,,14 hours 25 mins,"1,594 km" +Austin,Kansas City(Missouri),,10 hours 31 mins,"1,181 km" +Austin,Cape Girardeau(Missouri),,11 hours 38 mins,"1,290 km" +Austin,Branson(Missouri),,9 hours 34 mins,"1,000 km" +Austin,Fort Leonard Wood(Missouri),,10 hours 47 mins,"1,129 km" +Austin,St. Louis(Missouri),,12 hours 33 mins,"1,329 km" +Kansas City(Missouri),Austin,,10 hours 32 mins,"1,181 km" +Cape Girardeau(Missouri),Austin,,11 hours 44 mins,"1,292 km" +Branson(Missouri),Austin,,9 hours 43 mins,"1,003 km" +Fort Leonard Wood(Missouri),Austin,,10 hours 49 mins,"1,128 km" +St. Louis(Missouri),Austin,,12 hours 33 mins,"1,327 km" +Denver,Medford,,19 hours 14 mins,"2,017 km" +Medford,Denver,,19 hours 12 mins,"2,019 km" +Baltimore,Lynchburg(Virginia),,3 hours 52 mins,350 km +Baltimore,Richmond(Virginia),,2 hours 29 mins,248 km +Baltimore,Petersburg(Virginia),,2 hours 49 mins,284 km +Baltimore,Newport News(Virginia),,3 hours 22 mins,347 km +Baltimore,Charlottesville(Virginia),,2 hours 52 mins,247 km +Baltimore,Staunton(Virginia),,3 hours 4 mins,313 km +Baltimore,Jamestown(Virginia),,3 hours 17 mins,329 km +Baltimore,Norfolk(Virginia),,3 hours 51 mins,386 km +Baltimore,Roanoke(Virginia),,4 hours 15 mins,447 km +Lynchburg(Virginia),Baltimore,,3 hours 55 mins,352 km +Richmond(Virginia),Baltimore,,2 hours 34 mins,240 km +Petersburg(Virginia),Baltimore,,2 hours 54 mins,276 km +Newport News(Virginia),Baltimore,,3 hours 26 mins,339 km +Charlottesville(Virginia),Baltimore,,2 hours 54 mins,248 km +Staunton(Virginia),Baltimore,,3 hours 6 mins,314 km +Jamestown(Virginia),Baltimore,,3 hours 22 mins,321 km +Norfolk(Virginia),Baltimore,,3 hours 56 mins,378 km +Roanoke(Virginia),Baltimore,,4 hours 18 mins,448 km +San Francisco,Tampa,,1 day 17 hours,"4,559 km" +Tampa,San Francisco,,1 day 17 hours,"4,569 km" +Washington,Toledo(Ohio),,7 hours 14 mins,750 km +Washington,Cleveland(Ohio),,5 hours 55 mins,592 km +Washington,Dayton(Ohio),,7 hours 26 mins,755 km +Washington,Columbus(Ohio),,6 hours 23 mins,641 km +Washington,Akron(Ohio),,5 hours 33 mins,555 km +Washington,Cincinnati(Ohio),,7 hours 55 mins,808 km +Toledo(Ohio),Washington,,7 hours 26 mins,748 km +Cleveland(Ohio),Washington,,6 hours 7 mins,593 km +Dayton(Ohio),Washington,,7 hours 38 mins,751 km +Columbus(Ohio),Washington,,6 hours 36 mins,638 km +Akron(Ohio),Washington,,5 hours 46 mins,557 km +Cincinnati(Ohio),Washington,,8 hours 5 mins,805 km +San Diego,Flagstaff(Arizona),,7 hours 18 mins,785 km +San Diego,Yuma(Arizona),,2 hours 41 mins,276 km +San Diego,Phoenix(Arizona),,5 hours 22 mins,571 km +San Diego,Prescott(Arizona),,6 hours 9 mins,599 km +San Diego,Tucson(Arizona),,5 hours 56 mins,653 km +Flagstaff(Arizona),San Diego,,7 hours 17 mins,780 km +Yuma(Arizona),San Diego,,2 hours 41 mins,277 km +Phoenix(Arizona),San Diego,,5 hours 19 mins,573 km +Prescott(Arizona),San Diego,,6 hours 11 mins,601 km +Tucson(Arizona),San Diego,,5 hours 53 mins,656 km +Columbus,Greensboro(North Carolina),,6 hours 24 mins,648 km +Columbus,Wilmington(North Carolina),,9 hours 17 mins,974 km +Columbus,New Bern(North Carolina),,9 hours 17 mins,953 km +Columbus,Charlotte(North Carolina),,6 hours 42 mins,684 km +Columbus,Raleigh(North Carolina),,7 hours 34 mins,768 km +Columbus,Asheville(North Carolina),,6 hours 56 mins,636 km +Columbus,Fayetteville(North Carolina),,7 hours 54 mins,793 km +Greensboro(North Carolina),Columbus,,6 hours 22 mins,647 km +Wilmington(North Carolina),Columbus,,9 hours 14 mins,974 km +New Bern(North Carolina),Columbus,,9 hours 14 mins,952 km +Charlotte(North Carolina),Columbus,,6 hours 41 mins,685 km +Raleigh(North Carolina),Columbus,,7 hours 29 mins,767 km +Asheville(North Carolina),Columbus,,6 hours 56 mins,636 km +Fayetteville(North Carolina),Columbus,,7 hours 52 mins,793 km +Milwaukee,Phoenix,,1 day 3 hours,"2,944 km" +Phoenix,Milwaukee,,1 day 3 hours,"2,943 km" +Bangor,Chicago,,17 hours 56 mins,"1,949 km" +Chicago,Bangor,,17 hours 54 mins,"1,947 km" +San Jose,Portland,,10 hours 14 mins,"1,073 km" +Portland,San Jose,,10 hours 20 mins,"1,074 km" +Hartford,Greensboro(North Carolina),,10 hours 7 mins,"1,056 km" +Hartford,Wilmington(North Carolina),,10 hours 54 mins,"1,144 km" +Hartford,New Bern(North Carolina),,10 hours 28 mins,"1,079 km" +Hartford,Charlotte(North Carolina),,11 hours 23 mins,"1,202 km" +Hartford,Raleigh(North Carolina),,9 hours 38 mins,"1,005 km" +Hartford,Asheville(North Carolina),,12 hours 20 mins,"1,307 km" +Hartford,Fayetteville(North Carolina),,10 hours 9 mins,"1,067 km" +Greensboro(North Carolina),Hartford,,10 hours 5 mins,"1,046 km" +Wilmington(North Carolina),Hartford,,10 hours 51 mins,"1,133 km" +New Bern(North Carolina),Hartford,,10 hours 24 mins,"1,081 km" +Charlotte(North Carolina),Hartford,,11 hours 21 mins,"1,189 km" +Raleigh(North Carolina),Hartford,,9 hours 35 mins,995 km +Asheville(North Carolina),Hartford,,12 hours 20 mins,"1,308 km" +Fayetteville(North Carolina),Hartford,,10 hours 7 mins,"1,056 km" +Rapid City,Alamosa(Colorado),,9 hours 28 mins,998 km +Rapid City,Grand Junction(Colorado),,9 hours 38 mins,"1,009 km" +Rapid City,Durango(Colorado),,11 hours 49 mins,"1,159 km" +Rapid City,Colorado Springs(Colorado),,6 hours 59 mins,735 km +Rapid City,Gunnison(Colorado),,9 hours 23 mins,940 km +Rapid City,Denver(Colorado),,6 hours 1 min,623 km +Alamosa(Colorado),Rapid City,,9 hours 27 mins,998 km +Grand Junction(Colorado),Rapid City,,9 hours 37 mins,"1,009 km" +Durango(Colorado),Rapid City,,11 hours 48 mins,"1,160 km" +Colorado Springs(Colorado),Rapid City,,6 hours 58 mins,735 km +Gunnison(Colorado),Rapid City,,9 hours 23 mins,941 km +Denver(Colorado),Rapid City,,6 hours 3 mins,626 km +Clarksburg,Chicago,,8 hours 18 mins,867 km +Chicago,Clarksburg,,8 hours 16 mins,867 km +Fort Dodge,Denver,,10 hours 24 mins,"1,131 km" +Denver,Fort Dodge,,10 hours 21 mins,"1,134 km" +Latrobe,Charleston(South Carolina),,10 hours 9 mins,"1,040 km" +Latrobe,Hilton Head(South Carolina),,10 hours 46 mins,"1,101 km" +Latrobe,Greer(South Carolina),,8 hours 25 mins,841 km +Latrobe,Greenville(South Carolina),,8 hours 31 mins,857 km +Latrobe,Myrtle Beach(South Carolina),,10 hours 2 mins,970 km +Charleston(South Carolina),Latrobe,,10 hours 12 mins,"1,039 km" +Hilton Head(South Carolina),Latrobe,,10 hours 48 mins,"1,100 km" +Greer(South Carolina),Latrobe,,8 hours 28 mins,844 km +Greenville(South Carolina),Latrobe,,8 hours 34 mins,858 km +Myrtle Beach(South Carolina),Latrobe,,9 hours 55 mins,997 km +Eugene,Salt Lake City(Utah),,12 hours 11 mins,"1,268 km" +Eugene,Moab(Utah),,15 hours 46 mins,"1,640 km" +Eugene,Ogden(Utah),,11 hours 42 mins,"1,212 km" +Eugene,Vernal(Utah),,15 hours 1 min,"1,542 km" +Eugene,Provo(Utah),,12 hours 49 mins,"1,337 km" +Eugene,Cedar City(Utah),,14 hours 38 mins,"1,484 km" +Salt Lake City(Utah),Eugene,,12 hours 13 mins,"1,267 km" +Moab(Utah),Eugene,,15 hours 49 mins,"1,639 km" +Ogden(Utah),Eugene,,11 hours 45 mins,"1,211 km" +Vernal(Utah),Eugene,,15 hours 7 mins,"1,541 km" +Provo(Utah),Eugene,,12 hours 51 mins,"1,336 km" +Cedar City(Utah),Eugene,,14 hours 39 mins,"1,482 km" +Dallas,San Diego(California),,19 hours 28 mins,"2,189 km" +Dallas,Redding(California),,1 day 4 hours,"3,043 km" +Dallas,Sacramento(California),,1 day 1 hour,"2,778 km" +Dallas,Fresno(California),,22 hours 42 mins,"2,508 km" +Dallas,San Luis Obispo(California),,23 hours 17 mins,"2,551 km" +Dallas,Oakland(California),,1 day 1 hour,"2,769 km" +Dallas,Santa Barbara(California),,22 hours 15 mins,"2,465 km" +Dallas,Stockton(California),,1 day 1 hour,"2,707 km" +Dallas,Santa Rosa(California),,1 day 2 hours,"2,862 km" +Dallas,Bakersfield(California),,21 hours 5 mins,"2,332 km" +Dallas,Santa Ana(California),,20 hours 38 mins,"2,314 km" +Dallas,Santa Maria(California),,23 hours 4 mins,"2,506 km" +Dallas,San Jose(California),,1 day 1 hour,"2,719 km" +Dallas,Burbank(California),,20 hours 56 mins,"2,332 km" +Dallas,Arcata(California),,1 day 6 hours,"3,222 km" +Dallas,Butte(California),,1 day 3 hours,"2,917 km" +Dallas,Palm Springs(California),,19 hours 15 mins,"2,144 km" +Dallas,Los Angeles(California),,20 hours 51 mins,"2,314 km" +Dallas,Long Beach(California),,20 hours 58 mins,"2,329 km" +Dallas,San Francisco(California),,1 day 1 hour,"2,787 km" +Dallas,Monterey(California),,1 day 1 hour,"2,686 km" +San Diego(California),Dallas,,19 hours 31 mins,"2,186 km" +Redding(California),Dallas,,1 day 4 hours,"3,039 km" +Sacramento(California),Dallas,,1 day 1 hour,"2,781 km" +Fresno(California),Dallas,,22 hours 44 mins,"2,508 km" +San Luis Obispo(California),Dallas,,23 hours 19 mins,"2,554 km" +Oakland(California),Dallas,,1 day 1 hour,"2,772 km" +Santa Barbara(California),Dallas,,22 hours 16 mins,"2,466 km" +Stockton(California),Dallas,,1 day 1 hour,"2,708 km" +Santa Rosa(California),Dallas,,1 day 2 hours,"2,864 km" +Bakersfield(California),Dallas,,21 hours 9 mins,"2,333 km" +Santa Ana(California),Dallas,,20 hours 36 mins,"2,288 km" +Santa Maria(California),Dallas,,23 hours 8 mins,"2,509 km" +San Jose(California),Dallas,,1 day 1 hour,"2,722 km" +Burbank(California),Dallas,,20 hours 52 mins,"2,327 km" +Arcata(California),Dallas,,1 day 6 hours,"3,226 km" +Butte(California),Dallas,,1 day 3 hours,"2,914 km" +Palm Springs(California),Dallas,,19 hours 15 mins,"2,144 km" +Los Angeles(California),Dallas,,20 hours 44 mins,"2,310 km" +Long Beach(California),Dallas,,20 hours 54 mins,"2,322 km" +San Francisco(California),Dallas,,1 day 1 hour,"2,790 km" +Monterey(California),Dallas,,1 day 1 hour,"2,688 km" +West Palm Beach,Atlanta,,8 hours 27 mins,963 km +Atlanta,West Palm Beach,,8 hours 29 mins,962 km +Los Angeles,Denver,,15 hours 1 min,"1,637 km" +Denver,Los Angeles,,15 hours 0 mins,"1,640 km" +Columbus,Charlotte,,6 hours 42 mins,684 km +Charlotte,Columbus,,6 hours 41 mins,685 km +Minneapolis,Escanaba,,5 hours 51 mins,589 km +Escanaba,Minneapolis,,5 hours 51 mins,590 km +Sacramento,Seattle(Washington),,11 hours 35 mins,"1,211 km" +Sacramento,Wenatchee(Washington),,12 hours 38 mins,"1,234 km" +Sacramento,Pasco(Washington),,11 hours 7 mins,"1,102 km" +Sacramento,Yakima(Washington),,10 hours 49 mins,"1,053 km" +Sacramento,Walla Walla(Washington),,11 hours 31 mins,"1,143 km" +Sacramento,Everett(Washington),,12 hours 4 mins,"1,256 km" +Sacramento,Spokane(Washington),,13 hours 6 mins,"1,319 km" +Seattle(Washington),Sacramento,,11 hours 36 mins,"1,211 km" +Wenatchee(Washington),Sacramento,,12 hours 45 mins,"1,224 km" +Pasco(Washington),Sacramento,,11 hours 14 mins,"1,103 km" +Yakima(Washington),Sacramento,,10 hours 56 mins,"1,053 km" +Walla Walla(Washington),Sacramento,,11 hours 38 mins,"1,143 km" +Everett(Washington),Sacramento,,12 hours 4 mins,"1,256 km" +Spokane(Washington),Sacramento,,13 hours 12 mins,"1,320 km" +Denver,Abilene(Texas),,10 hours 37 mins,"1,146 km" +Denver,Amarillo(Texas),,6 hours 29 mins,699 km +Denver,Harlingen(Texas),,17 hours 32 mins,"1,911 km" +Denver,Lubbock(Texas),,8 hours 13 mins,882 km +Denver,College Station(Texas),,14 hours 9 mins,"1,523 km" +Denver,Corpus Christi(Texas),,15 hours 54 mins,"1,735 km" +Denver,Wichita Falls(Texas),,9 hours 54 mins,"1,059 km" +Denver,Waco(Texas),,12 hours 51 mins,"1,387 km" +Denver,San Angelo(Texas),,11 hours 0 mins,"1,177 km" +Denver,Houston(Texas),,15 hours 16 mins,"1,662 km" +Denver,San Antonio(Texas),,13 hours 56 mins,"1,503 km" +Denver,Del Rio(Texas),,13 hours 27 mins,"1,428 km" +Denver,Mission(Texas),,17 hours 32 mins,"1,899 km" +Denver,Beaumont(Texas),,16 hours 17 mins,"1,737 km" +Denver,Longview(Texas),,13 hours 48 mins,"1,486 km" +Denver,Midland(Texas),,9 hours 59 mins,"1,073 km" +Denver,El Paso(Texas),,9 hours 39 mins,"1,026 km" +Denver,Brownsville(Texas),,17 hours 54 mins,"1,950 km" +Denver,Austin(Texas),,14 hours 3 mins,"1,482 km" +Denver,Dallas(Texas),,11 hours 57 mins,"1,286 km" +Denver,Killeen(Texas),,13 hours 24 mins,"1,419 km" +Denver,Laredo(Texas),,16 hours 4 mins,"1,692 km" +Denver,Texarkana(Texas),,14 hours 13 mins,"1,556 km" +Abilene(Texas),Denver,,10 hours 36 mins,"1,130 km" +Amarillo(Texas),Denver,,6 hours 28 mins,698 km +Harlingen(Texas),Denver,,17 hours 27 mins,"1,894 km" +Lubbock(Texas),Denver,,8 hours 14 mins,881 km +College Station(Texas),Denver,,14 hours 6 mins,"1,519 km" +Corpus Christi(Texas),Denver,,15 hours 51 mins,"1,718 km" +Wichita Falls(Texas),Denver,,9 hours 54 mins,"1,057 km" +Waco(Texas),Denver,,12 hours 50 mins,"1,381 km" +San Angelo(Texas),Denver,,11 hours 1 min,"1,195 km" +Houston(Texas),Denver,,15 hours 16 mins,"1,659 km" +San Antonio(Texas),Denver,,13 hours 54 mins,"1,486 km" +Del Rio(Texas),Denver,,13 hours 26 mins,"1,438 km" +Mission(Texas),Denver,,17 hours 29 mins,"1,883 km" +Beaumont(Texas),Denver,,16 hours 16 mins,"1,734 km" +Longview(Texas),Denver,,13 hours 46 mins,"1,489 km" +Midland(Texas),Denver,,9 hours 59 mins,"1,071 km" +El Paso(Texas),Denver,,9 hours 34 mins,"1,025 km" +Brownsville(Texas),Denver,,17 hours 50 mins,"1,934 km" +Austin(Texas),Denver,,14 hours 3 mins,"1,467 km" +Dallas(Texas),Denver,,11 hours 56 mins,"1,282 km" +Killeen(Texas),Denver,,13 hours 24 mins,"1,403 km" +Laredo(Texas),Denver,,16 hours 4 mins,"1,677 km" +Texarkana(Texas),Denver,,14 hours 16 mins,"1,559 km" +Akron,Augusta(Georgia),,9 hours 36 mins,"1,031 km" +Akron,Decatur(Georgia),,10 hours 24 mins,"1,122 km" +Akron,Atlanta(Georgia),,10 hours 9 mins,"1,114 km" +Akron,Valdosta(Georgia),,13 hours 26 mins,"1,482 km" +Akron,Savannah(Georgia),,10 hours 51 mins,"1,174 km" +Augusta(Georgia),Akron,,9 hours 38 mins,"1,033 km" +Decatur(Georgia),Akron,,10 hours 26 mins,"1,121 km" +Atlanta(Georgia),Akron,,10 hours 10 mins,"1,114 km" +Valdosta(Georgia),Akron,,13 hours 25 mins,"1,481 km" +Savannah(Georgia),Akron,,10 hours 53 mins,"1,173 km" +Detroit,Salt Lake City(Utah),,1 day 0 hours,"2,676 km" +Detroit,Moab(Utah),,23 hours 26 mins,"2,605 km" +Detroit,Ogden(Utah),,23 hours 57 mins,"2,668 km" +Detroit,Vernal(Utah),,23 hours 17 mins,"2,508 km" +Detroit,Provo(Utah),,1 day 1 hour,"2,704 km" +Detroit,Cedar City(Utah),,1 day 3 hours,"2,968 km" +Salt Lake City(Utah),Detroit,,23 hours 58 mins,"2,679 km" +Moab(Utah),Detroit,,23 hours 19 mins,"2,605 km" +Ogden(Utah),Detroit,,23 hours 51 mins,"2,669 km" +Vernal(Utah),Detroit,,23 hours 8 mins,"2,509 km" +Provo(Utah),Detroit,,1 day 0 hours,"2,705 km" +Cedar City(Utah),Detroit,,1 day 2 hours,"2,968 km" +Rochester,Sarasota(Florida),,20 hours 5 mins,"2,159 km" +Rochester,Fort Myers(Florida),,21 hours 2 mins,"2,265 km" +Rochester,Gainesville(Florida),,17 hours 25 mins,"1,869 km" +Rochester,Orlando(Florida),,18 hours 17 mins,"1,987 km" +Rochester,Daytona Beach(Florida),,17 hours 40 mins,"1,912 km" +Rochester,Jacksonville(Florida),,16 hours 14 mins,"1,759 km" +Rochester,Tampa(Florida),,19 hours 17 mins,"2,075 km" +Rochester,Panama City(Florida),,18 hours 43 mins,"1,980 km" +Rochester,Key West(Florida),,1 day 0 hours,"2,569 km" +Rochester,West Palm Beach(Florida),,20 hours 13 mins,"2,217 km" +Rochester,Miami(Florida),,21 hours 13 mins,"2,316 km" +Rochester,Tallahassee(Florida),,18 hours 20 mins,"1,979 km" +Rochester,Punta Gorda(Florida),,20 hours 37 mins,"2,230 km" +Rochester,Fort Lauderdale(Florida),,20 hours 51 mins,"2,285 km" +Rochester,Pensacola(Florida),,17 hours 54 mins,"1,958 km" +Sarasota(Florida),Rochester,,19 hours 57 mins,"2,154 km" +Fort Myers(Florida),Rochester,,20 hours 54 mins,"2,259 km" +Gainesville(Florida),Rochester,,17 hours 19 mins,"1,864 km" +Orlando(Florida),Rochester,,18 hours 4 mins,"1,977 km" +Daytona Beach(Florida),Rochester,,17 hours 30 mins,"1,894 km" +Jacksonville(Florida),Rochester,,16 hours 7 mins,"1,752 km" +Tampa(Florida),Rochester,,19 hours 9 mins,"2,069 km" +Panama City(Florida),Rochester,,18 hours 41 mins,"1,974 km" +Key West(Florida),Rochester,,1 day 0 hours,"2,561 km" +West Palm Beach(Florida),Rochester,,20 hours 2 mins,"2,208 km" +Miami(Florida),Rochester,,21 hours 1 min,"2,309 km" +Tallahassee(Florida),Rochester,,18 hours 17 mins,"1,979 km" +Punta Gorda(Florida),Rochester,,20 hours 28 mins,"2,223 km" +Fort Lauderdale(Florida),Rochester,,20 hours 40 mins,"2,276 km" +Pensacola(Florida),Rochester,,17 hours 48 mins,"1,955 km" +Cincinnati,Augusta(Georgia),,8 hours 32 mins,863 km +Cincinnati,Decatur(Georgia),,7 hours 1 min,749 km +Cincinnati,Atlanta(Georgia),,6 hours 46 mins,741 km +Cincinnati,Valdosta(Georgia),,10 hours 3 mins,"1,108 km" +Cincinnati,Savannah(Georgia),,9 hours 56 mins,"1,070 km" +Augusta(Georgia),Cincinnati,,8 hours 32 mins,862 km +Decatur(Georgia),Cincinnati,,7 hours 2 mins,749 km +Atlanta(Georgia),Cincinnati,,6 hours 46 mins,741 km +Valdosta(Georgia),Cincinnati,,10 hours 2 mins,"1,108 km" +Savannah(Georgia),Cincinnati,,9 hours 58 mins,"1,069 km" +Louisville,Buffalo(New York),,7 hours 57 mins,862 km +Louisville,Manhattan(New York),,11 hours 41 mins,"1,194 km" +Louisville,Niagara Falls(New York),,8 hours 18 mins,892 km +Louisville,Islip(New York),,12 hours 23 mins,"1,292 km" +Louisville,New York(New York),,11 hours 31 mins,"1,188 km" +Louisville,Watertown(New York),,10 hours 57 mins,"1,190 km" +Louisville,Newburgh(New York),,11 hours 37 mins,"1,248 km" +Louisville,Syracuse(New York),,10 hours 0 mins,"1,088 km" +Louisville,Plattsburgh(New York),,13 hours 49 mins,"1,449 km" +Louisville,Ogdensburg(New York),,11 hours 55 mins,"1,284 km" +Louisville,Ithaca(New York),,10 hours 7 mins,"1,081 km" +Louisville,Elmira(New York),,9 hours 37 mins,"1,043 km" +Louisville,White Plains(New York),,11 hours 47 mins,"1,273 km" +Louisville,Albany(New York),,12 hours 0 mins,"1,314 km" +Louisville,Binghamton(New York),,10 hours 25 mins,"1,131 km" +Louisville,Rochester(New York),,8 hours 54 mins,966 km +Buffalo(New York),Louisville,,7 hours 56 mins,863 km +Manhattan(New York),Louisville,,11 hours 36 mins,"1,194 km" +Niagara Falls(New York),Louisville,,8 hours 17 mins,893 km +Islip(New York),Louisville,,12 hours 21 mins,"1,291 km" +New York(New York),Louisville,,11 hours 26 mins,"1,186 km" +Watertown(New York),Louisville,,10 hours 56 mins,"1,191 km" +Newburgh(New York),Louisville,,11 hours 35 mins,"1,246 km" +Syracuse(New York),Louisville,,9 hours 59 mins,"1,089 km" +Plattsburgh(New York),Louisville,,13 hours 48 mins,"1,451 km" +Ogdensburg(New York),Louisville,,11 hours 55 mins,"1,284 km" +Ithaca(New York),Louisville,,10 hours 5 mins,"1,082 km" +Elmira(New York),Louisville,,9 hours 35 mins,"1,045 km" +White Plains(New York),Louisville,,11 hours 45 mins,"1,271 km" +Albany(New York),Louisville,,11 hours 59 mins,"1,313 km" +Binghamton(New York),Louisville,,10 hours 25 mins,"1,132 km" +Rochester(New York),Louisville,,8 hours 54 mins,968 km +Bloomington,Abilene(Texas),,15 hours 5 mins,"1,631 km" +Bloomington,Amarillo(Texas),,14 hours 36 mins,"1,583 km" +Bloomington,Harlingen(Texas),,19 hours 46 mins,"2,098 km" +Bloomington,Lubbock(Texas),,15 hours 58 mins,"1,718 km" +Bloomington,College Station(Texas),,14 hours 53 mins,"1,543 km" +Bloomington,Corpus Christi(Texas),,18 hours 0 mins,"1,903 km" +Bloomington,Wichita Falls(Texas),,12 hours 51 mins,"1,387 km" +Bloomington,Waco(Texas),,14 hours 11 mins,"1,540 km" +Bloomington,San Angelo(Texas),,16 hours 21 mins,"1,765 km" +Bloomington,Houston(Texas),,14 hours 53 mins,"1,570 km" +Bloomington,San Antonio(Texas),,16 hours 47 mins,"1,826 km" +Bloomington,Del Rio(Texas),,18 hours 46 mins,"2,018 km" +Bloomington,Mission(Texas),,20 hours 16 mins,"2,211 km" +Bloomington,Beaumont(Texas),,14 hours 34 mins,"1,524 km" +Bloomington,Longview(Texas),,11 hours 45 mins,"1,246 km" +Bloomington,Midland(Texas),,16 hours 57 mins,"1,833 km" +Bloomington,El Paso(Texas),,21 hours 11 mins,"2,281 km" +Bloomington,Brownsville(Texas),,20 hours 8 mins,"2,137 km" +Bloomington,Austin(Texas),,15 hours 35 mins,"1,699 km" +Bloomington,Dallas(Texas),,12 hours 47 mins,"1,385 km" +Bloomington,Killeen(Texas),,14 hours 59 mins,"1,634 km" +Bloomington,Laredo(Texas),,19 hours 3 mins,"2,076 km" +Bloomington,Texarkana(Texas),,10 hours 18 mins,"1,105 km" +Abilene(Texas),Bloomington,,15 hours 7 mins,"1,631 km" +Amarillo(Texas),Bloomington,,14 hours 37 mins,"1,582 km" +Harlingen(Texas),Bloomington,,19 hours 40 mins,"2,114 km" +Lubbock(Texas),Bloomington,,15 hours 56 mins,"1,721 km" +College Station(Texas),Bloomington,,14 hours 47 mins,"1,555 km" +Corpus Christi(Texas),Bloomington,,18 hours 2 mins,"1,924 km" +Wichita Falls(Texas),Bloomington,,12 hours 51 mins,"1,387 km" +Waco(Texas),Bloomington,,14 hours 6 mins,"1,552 km" +San Angelo(Texas),Bloomington,,16 hours 21 mins,"1,765 km" +Houston(Texas),Bloomington,,14 hours 50 mins,"1,586 km" +San Antonio(Texas),Bloomington,,16 hours 41 mins,"1,840 km" +Del Rio(Texas),Bloomington,,18 hours 44 mins,"2,018 km" +Mission(Texas),Bloomington,,20 hours 8 mins,"2,226 km" +Beaumont(Texas),Bloomington,,14 hours 31 mins,"1,540 km" +Longview(Texas),Bloomington,,11 hours 42 mins,"1,260 km" +Midland(Texas),Bloomington,,16 hours 57 mins,"1,834 km" +El Paso(Texas),Bloomington,,21 hours 9 mins,"2,278 km" +Brownsville(Texas),Bloomington,,20 hours 4 mins,"2,154 km" +Austin(Texas),Bloomington,,15 hours 30 mins,"1,714 km" +Dallas(Texas),Bloomington,,12 hours 44 mins,"1,400 km" +Killeen(Texas),Bloomington,,14 hours 55 mins,"1,649 km" +Laredo(Texas),Bloomington,,18 hours 59 mins,"2,091 km" +Texarkana(Texas),Bloomington,,10 hours 15 mins,"1,119 km" +New York,Cleveland,,7 hours 10 mins,743 km +Cleveland,New York,,7 hours 14 mins,744 km +Newark,Toledo(Ohio),,8 hours 12 mins,885 km +Newark,Cleveland(Ohio),,6 hours 54 mins,727 km +Newark,Dayton(Ohio),,9 hours 14 mins,958 km +Newark,Columbus(Ohio),,8 hours 11 mins,844 km +Newark,Akron(Ohio),,6 hours 29 mins,689 km +Newark,Cincinnati(Ohio),,9 hours 43 mins,"1,011 km" +Toledo(Ohio),Newark,,8 hours 13 mins,884 km +Cleveland(Ohio),Newark,,6 hours 54 mins,729 km +Dayton(Ohio),Newark,,9 hours 17 mins,957 km +Columbus(Ohio),Newark,,8 hours 14 mins,844 km +Akron(Ohio),Newark,,6 hours 28 mins,689 km +Cincinnati(Ohio),Newark,,9 hours 44 mins,"1,011 km" +Detroit,Buffalo(New York),,4 hours 7 mins,411 km +Detroit,Manhattan(New York),,9 hours 25 mins,"1,002 km" +Detroit,Niagara Falls(New York),,3 hours 55 mins,389 km +Detroit,Islip(New York),,10 hours 12 mins,"1,073 km" +Detroit,New York(New York),,9 hours 22 mins,989 km +Detroit,Watertown(New York),,6 hours 56 mins,713 km +Detroit,Newburgh(New York),,9 hours 19 mins,"1,002 km" +Detroit,Syracuse(New York),,6 hours 15 mins,645 km +Detroit,Plattsburgh(New York),,9 hours 6 mins,917 km +Detroit,Ogdensburg(New York),,7 hours 2 mins,729 km +Detroit,Ithaca(New York),,6 hours 34 mins,650 km +Detroit,Elmira(New York),,7 hours 7 mins,764 km +Detroit,White Plains(New York),,9 hours 29 mins,"1,027 km" +Detroit,Albany(New York),,8 hours 15 mins,872 km +Detroit,Binghamton(New York),,7 hours 55 mins,852 km +Detroit,Rochester(New York),,5 hours 9 mins,524 km +Buffalo(New York),Detroit,,4 hours 10 mins,412 km +Manhattan(New York),Detroit,,9 hours 22 mins,"1,001 km" +Niagara Falls(New York),Detroit,,3 hours 59 mins,385 km +Islip(New York),Detroit,,10 hours 12 mins,"1,071 km" +New York(New York),Detroit,,9 hours 19 mins,988 km +Watertown(New York),Detroit,,6 hours 57 mins,713 km +Newburgh(New York),Detroit,,9 hours 19 mins,"1,001 km" +Syracuse(New York),Detroit,,6 hours 19 mins,645 km +Plattsburgh(New York),Detroit,,9 hours 11 mins,918 km +Ogdensburg(New York),Detroit,,7 hours 5 mins,730 km +Ithaca(New York),Detroit,,6 hours 38 mins,649 km +Elmira(New York),Detroit,,7 hours 7 mins,764 km +White Plains(New York),Detroit,,9 hours 30 mins,"1,025 km" +Albany(New York),Detroit,,8 hours 19 mins,870 km +Binghamton(New York),Detroit,,7 hours 56 mins,851 km +Rochester(New York),Detroit,,5 hours 14 mins,524 km +Orlando,Sarasota(Florida),,2 hours 2 mins,211 km +Orlando,Fort Myers(Florida),,2 hours 58 mins,255 km +Orlando,Gainesville(Florida),,1 hour 43 mins,179 km +Orlando,Daytona Beach(Florida),,55 mins,89.8 km +Orlando,Jacksonville(Florida),,2 hours 2 mins,226 km +Orlando,Tampa(Florida),,1 hour 18 mins,136 km +Orlando,Panama City(Florida),,5 hours 24 mins,574 km +Orlando,Key West(Florida),,6 hours 27 mins,632 km +Orlando,West Palm Beach(Florida),,2 hours 28 mins,273 km +Orlando,Miami(Florida),,3 hours 26 mins,378 km +Orlando,Tallahassee(Florida),,3 hours 46 mins,413 km +Orlando,Punta Gorda(Florida),,2 hours 31 mins,223 km +Orlando,Fort Lauderdale(Florida),,3 hours 6 mins,341 km +Orlando,Pensacola(Florida),,6 hours 19 mins,724 km +Sarasota(Florida),Orlando,,2 hours 5 mins,211 km +Fort Myers(Florida),Orlando,,2 hours 59 mins,257 km +Gainesville(Florida),Orlando,,1 hour 46 mins,181 km +Daytona Beach(Florida),Orlando,,1 hour 0 mins,91.5 km +Jacksonville(Florida),Orlando,,2 hours 7 mins,227 km +Tampa(Florida),Orlando,,1 hour 21 mins,135 km +Panama City(Florida),Orlando,,5 hours 25 mins,575 km +Key West(Florida),Orlando,,6 hours 30 mins,632 km +West Palm Beach(Florida),Orlando,,2 hours 30 mins,275 km +Miami(Florida),Orlando,,3 hours 27 mins,380 km +Tallahassee(Florida),Orlando,,3 hours 48 mins,417 km +Punta Gorda(Florida),Orlando,,2 hours 33 mins,221 km +Fort Lauderdale(Florida),Orlando,,3 hours 8 mins,343 km +Pensacola(Florida),Orlando,,6 hours 21 mins,725 km +Myrtle Beach,Buffalo(New York),,12 hours 51 mins,"1,324 km" +Myrtle Beach,Manhattan(New York),,10 hours 25 mins,"1,063 km" +Myrtle Beach,Niagara Falls(New York),,13 hours 12 mins,"1,354 km" +Myrtle Beach,Islip(New York),,11 hours 6 mins,"1,134 km" +Myrtle Beach,New York(New York),,10 hours 16 mins,"1,057 km" +Myrtle Beach,Watertown(New York),,13 hours 19 mins,"1,393 km" +Myrtle Beach,Newburgh(New York),,11 hours 6 mins,"1,149 km" +Myrtle Beach,Syracuse(New York),,12 hours 16 mins,"1,280 km" +Myrtle Beach,Plattsburgh(New York),,14 hours 32 mins,"1,537 km" +Myrtle Beach,Ogdensburg(New York),,14 hours 17 mins,"1,486 km" +Myrtle Beach,Ithaca(New York),,12 hours 0 mins,"1,219 km" +Myrtle Beach,Elmira(New York),,11 hours 23 mins,"1,147 km" +Myrtle Beach,White Plains(New York),,10 hours 43 mins,"1,108 km" +Myrtle Beach,Albany(New York),,12 hours 12 mins,"1,280 km" +Myrtle Beach,Binghamton(New York),,11 hours 15 mins,"1,168 km" +Myrtle Beach,Rochester(New York),,12 hours 39 mins,"1,309 km" +Buffalo(New York),Myrtle Beach,,12 hours 56 mins,"1,326 km" +Manhattan(New York),Myrtle Beach,,10 hours 30 mins,"1,071 km" +Niagara Falls(New York),Myrtle Beach,,13 hours 17 mins,"1,356 km" +Islip(New York),Myrtle Beach,,11 hours 11 mins,"1,140 km" +New York(New York),Myrtle Beach,,10 hours 21 mins,"1,066 km" +Watertown(New York),Myrtle Beach,,13 hours 31 mins,"1,396 km" +Newburgh(New York),Myrtle Beach,,11 hours 14 mins,"1,160 km" +Syracuse(New York),Myrtle Beach,,12 hours 27 mins,"1,283 km" +Plattsburgh(New York),Myrtle Beach,,14 hours 38 mins,"1,548 km" +Ogdensburg(New York),Myrtle Beach,,14 hours 30 mins,"1,489 km" +Ithaca(New York),Myrtle Beach,,12 hours 10 mins,"1,226 km" +Elmira(New York),Myrtle Beach,,11 hours 34 mins,"1,155 km" +White Plains(New York),Myrtle Beach,,10 hours 47 mins,"1,115 km" +Albany(New York),Myrtle Beach,,12 hours 20 mins,"1,290 km" +Binghamton(New York),Myrtle Beach,,11 hours 27 mins,"1,170 km" +Rochester(New York),Myrtle Beach,,12 hours 49 mins,"1,316 km" +Nashville,Sarasota(Florida),,10 hours 58 mins,"1,217 km" +Nashville,Fort Myers(Florida),,11 hours 56 mins,"1,322 km" +Nashville,Gainesville(Florida),,8 hours 34 mins,933 km +Nashville,Orlando(Florida),,9 hours 59 mins,"1,105 km" +Nashville,Daytona Beach(Florida),,10 hours 3 mins,"1,105 km" +Nashville,Jacksonville(Florida),,8 hours 40 mins,955 km +Nashville,Tampa(Florida),,10 hours 11 mins,"1,133 km" +Nashville,Panama City(Florida),,7 hours 23 mins,735 km +Nashville,Key West(Florida),,16 hours 10 mins,"1,719 km" +Nashville,West Palm Beach(Florida),,12 hours 12 mins,"1,360 km" +Nashville,Miami(Florida),,13 hours 10 mins,"1,465 km" +Nashville,Tallahassee(Florida),,7 hours 40 mins,790 km +Nashville,Punta Gorda(Florida),,11 hours 30 mins,"1,287 km" +Nashville,Fort Lauderdale(Florida),,12 hours 49 mins,"1,428 km" +Nashville,Pensacola(Florida),,6 hours 35 mins,712 km +Sarasota(Florida),Nashville,,10 hours 58 mins,"1,220 km" +Fort Myers(Florida),Nashville,,11 hours 55 mins,"1,326 km" +Gainesville(Florida),Nashville,,8 hours 34 mins,934 km +Orlando(Florida),Nashville,,9 hours 55 mins,"1,106 km" +Daytona Beach(Florida),Nashville,,10 hours 1 min,"1,097 km" +Jacksonville(Florida),Nashville,,8 hours 41 mins,958 km +Tampa(Florida),Nashville,,10 hours 10 mins,"1,135 km" +Panama City(Florida),Nashville,,7 hours 25 mins,731 km +Key West(Florida),Nashville,,16 hours 11 mins,"1,721 km" +West Palm Beach(Florida),Nashville,,12 hours 10 mins,"1,364 km" +Miami(Florida),Nashville,,13 hours 7 mins,"1,469 km" +Tallahassee(Florida),Nashville,,7 hours 42 mins,786 km +Punta Gorda(Florida),Nashville,,11 hours 29 mins,"1,289 km" +Fort Lauderdale(Florida),Nashville,,12 hours 48 mins,"1,432 km" +Pensacola(Florida),Nashville,,6 hours 32 mins,712 km +Charleston,Buffalo(New York),,13 hours 2 mins,"1,395 km" +Charleston,Manhattan(New York),,11 hours 35 mins,"1,226 km" +Charleston,Niagara Falls(New York),,13 hours 23 mins,"1,425 km" +Charleston,Islip(New York),,12 hours 16 mins,"1,296 km" +Charleston,New York(New York),,11 hours 26 mins,"1,220 km" +Charleston,Watertown(New York),,14 hours 29 mins,"1,555 km" +Charleston,Newburgh(New York),,12 hours 16 mins,"1,311 km" +Charleston,Syracuse(New York),,13 hours 25 mins,"1,443 km" +Charleston,Plattsburgh(New York),,15 hours 42 mins,"1,700 km" +Charleston,Ogdensburg(New York),,15 hours 27 mins,"1,648 km" +Charleston,Ithaca(New York),,13 hours 10 mins,"1,382 km" +Charleston,Elmira(New York),,12 hours 33 mins,"1,309 km" +Charleston,White Plains(New York),,11 hours 53 mins,"1,270 km" +Charleston,Albany(New York),,13 hours 22 mins,"1,442 km" +Charleston,Binghamton(New York),,12 hours 25 mins,"1,331 km" +Charleston,Rochester(New York),,13 hours 49 mins,"1,471 km" +Buffalo(New York),Charleston,,13 hours 3 mins,"1,396 km" +Manhattan(New York),Charleston,,11 hours 37 mins,"1,234 km" +Niagara Falls(New York),Charleston,,13 hours 25 mins,"1,426 km" +Islip(New York),Charleston,,12 hours 19 mins,"1,302 km" +New York(New York),Charleston,,11 hours 29 mins,"1,228 km" +Watertown(New York),Charleston,,14 hours 38 mins,"1,559 km" +Newburgh(New York),Charleston,,12 hours 21 mins,"1,321 km" +Syracuse(New York),Charleston,,13 hours 35 mins,"1,446 km" +Plattsburgh(New York),Charleston,,15 hours 46 mins,"1,710 km" +Ogdensburg(New York),Charleston,,15 hours 37 mins,"1,652 km" +Ithaca(New York),Charleston,,13 hours 18 mins,"1,388 km" +Elmira(New York),Charleston,,12 hours 41 mins,"1,318 km" +White Plains(New York),Charleston,,11 hours 55 mins,"1,277 km" +Albany(New York),Charleston,,13 hours 28 mins,"1,451 km" +Binghamton(New York),Charleston,,12 hours 34 mins,"1,333 km" +Rochester(New York),Charleston,,13 hours 57 mins,"1,479 km" +Raleigh,Nashville(Tennessee),,8 hours 8 mins,867 km +Raleigh,Bristol(Tennessee),,3 hours 59 mins,418 km +Raleigh,Knoxville(Tennessee),,5 hours 30 mins,580 km +Raleigh,Chattanooga(Tennessee),,7 hours 7 mins,757 km +Raleigh,Memphis(Tennessee),,11 hours 10 mins,"1,206 km" +Nashville(Tennessee),Raleigh,,8 hours 10 mins,868 km +Bristol(Tennessee),Raleigh,,4 hours 1 min,419 km +Knoxville(Tennessee),Raleigh,,5 hours 32 mins,580 km +Chattanooga(Tennessee),Raleigh,,7 hours 10 mins,758 km +Memphis(Tennessee),Raleigh,,11 hours 13 mins,"1,206 km" +Minneapolis,Buffalo,,14 hours 2 mins,"1,528 km" +Buffalo,Minneapolis,,14 hours 4 mins,"1,520 km" +Charleston,State College(Pennsylvania),,11 hours 5 mins,"1,188 km" +Charleston,Johnstown(Pennsylvania),,10 hours 33 mins,"1,107 km" +Charleston,Harrisburg(Pennsylvania),,9 hours 37 mins,"1,034 km" +Charleston,Erie(Pennsylvania),,11 hours 44 mins,"1,248 km" +Charleston,Pittsburgh(Pennsylvania),,10 hours 0 mins,"1,053 km" +Charleston,Latrobe(Pennsylvania),,10 hours 12 mins,"1,039 km" +Charleston,Philadelphia(Pennsylvania),,10 hours 4 mins,"1,082 km" +Charleston,Lewisburg(Pennsylvania),,10 hours 45 mins,"1,133 km" +Charleston,Scranton(Pennsylvania),,11 hours 28 mins,"1,232 km" +State College(Pennsylvania),Charleston,,11 hours 12 mins,"1,197 km" +Johnstown(Pennsylvania),Charleston,,10 hours 31 mins,"1,107 km" +Harrisburg(Pennsylvania),Charleston,,9 hours 46 mins,"1,036 km" +Erie(Pennsylvania),Charleston,,11 hours 45 mins,"1,249 km" +Pittsburgh(Pennsylvania),Charleston,,9 hours 59 mins,"1,054 km" +Latrobe(Pennsylvania),Charleston,,10 hours 9 mins,"1,040 km" +Philadelphia(Pennsylvania),Charleston,,10 hours 8 mins,"1,088 km" +Lewisburg(Pennsylvania),Charleston,,10 hours 54 mins,"1,140 km" +Scranton(Pennsylvania),Charleston,,11 hours 37 mins,"1,234 km" +Los Angeles,Colorado Springs,,15 hours 56 mins,"1,744 km" +Colorado Springs,Los Angeles,,15 hours 51 mins,"1,744 km" +Phoenix,Des Moines,,21 hours 16 mins,"2,249 km" +Des Moines,Phoenix,,21 hours 20 mins,"2,252 km" +San Antonio,Salt Lake City(Utah),,20 hours 7 mins,"2,112 km" +San Antonio,Moab(Utah),,16 hours 25 mins,"1,736 km" +San Antonio,Ogden(Utah),,20 hours 36 mins,"2,170 km" +San Antonio,Vernal(Utah),,19 hours 10 mins,"1,910 km" +San Antonio,Provo(Utah),,19 hours 30 mins,"2,042 km" +San Antonio,Cedar City(Utah),,19 hours 20 mins,"2,032 km" +Salt Lake City(Utah),San Antonio,,20 hours 7 mins,"2,117 km" +Moab(Utah),San Antonio,,16 hours 26 mins,"1,741 km" +Ogden(Utah),San Antonio,,20 hours 38 mins,"2,175 km" +Vernal(Utah),San Antonio,,19 hours 11 mins,"2,008 km" +Provo(Utah),San Antonio,,19 hours 32 mins,"2,047 km" +Cedar City(Utah),San Antonio,,19 hours 20 mins,"2,036 km" +Omaha,Pellston(Michigan),,12 hours 30 mins,"1,336 km" +Omaha,Traverse City(Michigan),,11 hours 25 mins,"1,240 km" +Omaha,Alpena(Michigan),,13 hours 4 mins,"1,395 km" +Omaha,Iron Mountain(Michigan),,10 hours 9 mins,"1,067 km" +Omaha,Kalamazoo(Michigan),,8 hours 53 mins,962 km +Omaha,Saginaw(Michigan),,11 hours 4 mins,"1,197 km" +Omaha,Grand Rapids(Michigan),,9 hours 19 mins,"1,011 km" +Omaha,Lansing(Michigan),,9 hours 54 mins,"1,077 km" +Omaha,Muskegon(Michigan),,9 hours 35 mins,"1,026 km" +Omaha,Hancock(Michigan),,11 hours 19 mins,"1,183 km" +Omaha,Detroit(Michigan),,10 hours 47 mins,"1,180 km" +Omaha,Escanaba(Michigan),,10 hours 20 mins,"1,086 km" +Pellston(Michigan),Omaha,,12 hours 30 mins,"1,335 km" +Traverse City(Michigan),Omaha,,11 hours 25 mins,"1,239 km" +Alpena(Michigan),Omaha,,12 hours 59 mins,"1,391 km" +Iron Mountain(Michigan),Omaha,,10 hours 7 mins,"1,064 km" +Kalamazoo(Michigan),Omaha,,8 hours 52 mins,960 km +Saginaw(Michigan),Omaha,,11 hours 0 mins,"1,192 km" +Grand Rapids(Michigan),Omaha,,9 hours 16 mins,"1,012 km" +Lansing(Michigan),Omaha,,9 hours 53 mins,"1,075 km" +Muskegon(Michigan),Omaha,,9 hours 33 mins,"1,023 km" +Hancock(Michigan),Omaha,,11 hours 17 mins,"1,184 km" +Detroit(Michigan),Omaha,,10 hours 49 mins,"1,179 km" +Escanaba(Michigan),Omaha,,10 hours 20 mins,"1,083 km" +New Orleans,Charlotte,,10 hours 27 mins,"1,148 km" +Charlotte,New Orleans,,10 hours 28 mins,"1,149 km" +Chicago,Green Bay(Wisconsin),,3 hours 11 mins,332 km +Chicago,Rhinelander(Wisconsin),,5 hours 1 min,546 km +Chicago,Marquette(Wisconsin),,3 hours 7 mins,300 km +Chicago,Madison(Wisconsin),,2 hours 23 mins,237 km +Chicago,La Crosse(Wisconsin),,4 hours 14 mins,454 km +Chicago,Devils Lake(Wisconsin),,3 hours 2 mins,302 km +Chicago,Appleton(Wisconsin),,3 hours 1 min,314 km +Chicago,Mosinee(Wisconsin),,3 hours 58 mins,433 km +Chicago,Milwaukee(Wisconsin),,1 hour 31 mins,148 km +Chicago,Eau Claire(Wisconsin),,4 hours 44 mins,511 km +Green Bay(Wisconsin),Chicago,,3 hours 17 mins,333 km +Rhinelander(Wisconsin),Chicago,,5 hours 4 mins,546 km +Marquette(Wisconsin),Chicago,,3 hours 11 mins,300 km +Madison(Wisconsin),Chicago,,2 hours 22 mins,237 km +La Crosse(Wisconsin),Chicago,,4 hours 16 mins,453 km +Devils Lake(Wisconsin),Chicago,,3 hours 5 mins,302 km +Appleton(Wisconsin),Chicago,,3 hours 4 mins,314 km +Mosinee(Wisconsin),Chicago,,4 hours 0 mins,433 km +Milwaukee(Wisconsin),Chicago,,1 hour 36 mins,149 km +Eau Claire(Wisconsin),Chicago,,4 hours 46 mins,511 km +Philadelphia,Abilene(Texas),,1 day 0 hours,"2,651 km" +Philadelphia,Amarillo(Texas),,1 day 0 hours,"2,643 km" +Philadelphia,Harlingen(Texas),,1 day 4 hours,"3,017 km" +Philadelphia,Lubbock(Texas),,1 day 2 hours,"2,781 km" +Philadelphia,College Station(Texas),,23 hours 23 mins,"2,515 km" +Philadelphia,Corpus Christi(Texas),,1 day 2 hours,"2,823 km" +Philadelphia,Wichita Falls(Texas),,22 hours 30 mins,"2,447 km" +Philadelphia,Waco(Texas),,22 hours 59 mins,"2,516 km" +Philadelphia,San Angelo(Texas),,1 day 1 hour,"2,773 km" +Philadelphia,Houston(Texas),,22 hours 39 mins,"2,489 km" +Philadelphia,San Antonio(Texas),,1 day 2 hours,"2,803 km" +Philadelphia,Del Rio(Texas),,1 day 4 hours,"3,050 km" +Philadelphia,Mission(Texas),,1 day 4 hours,"3,057 km" +Philadelphia,Beaumont(Texas),,21 hours 25 mins,"2,356 km" +Philadelphia,Longview(Texas),,20 hours 29 mins,"2,248 km" +Philadelphia,Midland(Texas),,1 day 2 hours,"2,891 km" +Philadelphia,El Paso(Texas),,1 day 7 hours,"3,382 km" +Philadelphia,Brownsville(Texas),,1 day 4 hours,"3,057 km" +Philadelphia,Austin(Texas),,1 day 0 hours,"2,674 km" +Philadelphia,Dallas(Texas),,21 hours 36 mins,"2,361 km" +Philadelphia,Killeen(Texas),,23 hours 48 mins,"2,610 km" +Philadelphia,Laredo(Texas),,1 day 4 hours,"2,995 km" +Philadelphia,Texarkana(Texas),,19 hours 7 mins,"2,081 km" +Abilene(Texas),Philadelphia,,1 day 0 hours,"2,651 km" +Amarillo(Texas),Philadelphia,,1 day 0 hours,"2,641 km" +Harlingen(Texas),Philadelphia,,1 day 3 hours,"3,018 km" +Lubbock(Texas),Philadelphia,,1 day 2 hours,"2,781 km" +College Station(Texas),Philadelphia,,23 hours 17 mins,"2,510 km" +Corpus Christi(Texas),Philadelphia,,1 day 2 hours,"2,828 km" +Wichita Falls(Texas),Philadelphia,,22 hours 28 mins,"2,446 km" +Waco(Texas),Philadelphia,,22 hours 56 mins,"2,513 km" +San Angelo(Texas),Philadelphia,,1 day 1 hour,"2,775 km" +Houston(Texas),Philadelphia,,22 hours 38 mins,"2,490 km" +San Antonio(Texas),Philadelphia,,1 day 2 hours,"2,800 km" +Del Rio(Texas),Philadelphia,,1 day 4 hours,"3,029 km" +Mission(Texas),Philadelphia,,1 day 4 hours,"3,058 km" +Beaumont(Texas),Philadelphia,,21 hours 25 mins,"2,356 km" +Longview(Texas),Philadelphia,,20 hours 27 mins,"2,244 km" +Midland(Texas),Philadelphia,,1 day 2 hours,"2,891 km" +El Paso(Texas),Philadelphia,,1 day 7 hours,"3,381 km" +Brownsville(Texas),Philadelphia,,1 day 4 hours,"3,058 km" +Austin(Texas),Philadelphia,,1 day 0 hours,"2,674 km" +Dallas(Texas),Philadelphia,,21 hours 34 mins,"2,361 km" +Killeen(Texas),Philadelphia,,23 hours 45 mins,"2,609 km" +Laredo(Texas),Philadelphia,,1 day 4 hours,"2,996 km" +Texarkana(Texas),Philadelphia,,19 hours 5 mins,"2,080 km" +Atlanta,Philadelphia,,11 hours 44 mins,"1,253 km" +Philadelphia,Atlanta,,11 hours 49 mins,"1,260 km" +Salt Lake City,Pellston(Michigan),,1 day 2 hours,"2,835 km" +Salt Lake City,Traverse City(Michigan),,1 day 1 hour,"2,738 km" +Salt Lake City,Alpena(Michigan),,1 day 2 hours,"2,893 km" +Salt Lake City,Iron Mountain(Michigan),,23 hours 0 mins,"2,479 km" +Salt Lake City,Kalamazoo(Michigan),,22 hours 4 mins,"2,461 km" +Salt Lake City,Saginaw(Michigan),,1 day 0 hours,"2,695 km" +Salt Lake City,Grand Rapids(Michigan),,22 hours 30 mins,"2,510 km" +Salt Lake City,Lansing(Michigan),,23 hours 6 mins,"2,576 km" +Salt Lake City,Muskegon(Michigan),,22 hours 46 mins,"2,524 km" +Salt Lake City,Hancock(Michigan),,23 hours 51 mins,"2,568 km" +Salt Lake City,Detroit(Michigan),,23 hours 58 mins,"2,679 km" +Salt Lake City,Escanaba(Michigan),,23 hours 31 mins,"2,584 km" +Pellston(Michigan),Salt Lake City,,1 day 2 hours,"2,832 km" +Traverse City(Michigan),Salt Lake City,,1 day 1 hour,"2,737 km" +Alpena(Michigan),Salt Lake City,,1 day 2 hours,"2,889 km" +Iron Mountain(Michigan),Salt Lake City,,23 hours 11 mins,"2,498 km" +Kalamazoo(Michigan),Salt Lake City,,22 hours 9 mins,"2,458 km" +Saginaw(Michigan),Salt Lake City,,1 day 0 hours,"2,690 km" +Grand Rapids(Michigan),Salt Lake City,,22 hours 32 mins,"2,509 km" +Lansing(Michigan),Salt Lake City,,23 hours 9 mins,"2,573 km" +Muskegon(Michigan),Salt Lake City,,22 hours 49 mins,"2,520 km" +Hancock(Michigan),Salt Lake City,,1 day 0 hours,"2,584 km" +Detroit(Michigan),Salt Lake City,,1 day 0 hours,"2,676 km" +Escanaba(Michigan),Salt Lake City,,23 hours 37 mins,"2,580 km" +Oklahoma City,Abilene(Texas),,4 hours 18 mins,468 km +Oklahoma City,Amarillo(Texas),,3 hours 50 mins,418 km +Oklahoma City,Harlingen(Texas),,10 hours 20 mins,"1,148 km" +Oklahoma City,Lubbock(Texas),,5 hours 11 mins,559 km +Oklahoma City,College Station(Texas),,5 hours 33 mins,601 km +Oklahoma City,Corpus Christi(Texas),,8 hours 42 mins,973 km +Oklahoma City,Wichita Falls(Texas),,2 hours 4 mins,224 km +Oklahoma City,Waco(Texas),,4 hours 15 mins,466 km +Oklahoma City,San Angelo(Texas),,5 hours 33 mins,602 km +Oklahoma City,Houston(Texas),,6 hours 29 mins,716 km +Oklahoma City,San Antonio(Texas),,6 hours 51 mins,751 km +Oklahoma City,Del Rio(Texas),,7 hours 59 mins,855 km +Oklahoma City,Mission(Texas),,10 hours 20 mins,"1,136 km" +Oklahoma City,Beaumont(Texas),,7 hours 29 mins,791 km +Oklahoma City,Longview(Texas),,4 hours 52 mins,533 km +Oklahoma City,Midland(Texas),,6 hours 9 mins,670 km +Oklahoma City,El Paso(Texas),,10 hours 25 mins,"1,116 km" +Oklahoma City,Brownsville(Texas),,10 hours 42 mins,"1,187 km" +Oklahoma City,Austin(Texas),,5 hours 39 mins,625 km +Oklahoma City,Dallas(Texas),,3 hours 6 mins,333 km +Oklahoma City,Killeen(Texas),,5 hours 3 mins,559 km +Oklahoma City,Laredo(Texas),,9 hours 7 mins,"1,002 km" +Oklahoma City,Texarkana(Texas),,4 hours 51 mins,502 km +Abilene(Texas),Oklahoma City,,4 hours 18 mins,467 km +Amarillo(Texas),Oklahoma City,,3 hours 48 mins,417 km +Harlingen(Texas),Oklahoma City,,10 hours 14 mins,"1,147 km" +Lubbock(Texas),Oklahoma City,,5 hours 8 mins,557 km +College Station(Texas),Oklahoma City,,5 hours 30 mins,601 km +Corpus Christi(Texas),Oklahoma City,,8 hours 37 mins,971 km +Wichita Falls(Texas),Oklahoma City,,2 hours 3 mins,223 km +Waco(Texas),Oklahoma City,,4 hours 13 mins,463 km +San Angelo(Texas),Oklahoma City,,5 hours 32 mins,601 km +Houston(Texas),Oklahoma City,,6 hours 27 mins,716 km +San Antonio(Texas),Oklahoma City,,6 hours 48 mins,750 km +Del Rio(Texas),Oklahoma City,,7 hours 55 mins,854 km +Mission(Texas),Oklahoma City,,10 hours 15 mins,"1,136 km" +Beaumont(Texas),Oklahoma City,,7 hours 28 mins,790 km +Longview(Texas),Oklahoma City,,4 hours 55 mins,539 km +Midland(Texas),Oklahoma City,,6 hours 8 mins,670 km +El Paso(Texas),Oklahoma City,,10 hours 20 mins,"1,114 km" +Brownsville(Texas),Oklahoma City,,10 hours 37 mins,"1,187 km" +Austin(Texas),Oklahoma City,,5 hours 38 mins,624 km +Dallas(Texas),Oklahoma City,,3 hours 4 mins,332 km +Killeen(Texas),Oklahoma City,,5 hours 2 mins,559 km +Laredo(Texas),Oklahoma City,,9 hours 6 mins,"1,002 km" +Texarkana(Texas),Oklahoma City,,4 hours 50 mins,509 km +Lexington,State College(Pennsylvania),,7 hours 49 mins,815 km +Lexington,Johnstown(Pennsylvania),,6 hours 41 mins,699 km +Lexington,Harrisburg(Pennsylvania),,8 hours 12 mins,868 km +Lexington,Erie(Pennsylvania),,6 hours 27 mins,689 km +Lexington,Pittsburgh(Pennsylvania),,5 hours 44 mins,596 km +Lexington,Latrobe(Pennsylvania),,6 hours 20 mins,632 km +Lexington,Philadelphia(Pennsylvania),,9 hours 43 mins,"1,030 km" +Lexington,Lewisburg(Pennsylvania),,8 hours 45 mins,925 km +Lexington,Scranton(Pennsylvania),,9 hours 55 mins,"1,051 km" +State College(Pennsylvania),Lexington,,7 hours 48 mins,821 km +Johnstown(Pennsylvania),Lexington,,6 hours 41 mins,698 km +Harrisburg(Pennsylvania),Lexington,,8 hours 13 mins,868 km +Erie(Pennsylvania),Lexington,,6 hours 29 mins,689 km +Pittsburgh(Pennsylvania),Lexington,,5 hours 44 mins,598 km +Latrobe(Pennsylvania),Lexington,,6 hours 19 mins,631 km +Philadelphia(Pennsylvania),Lexington,,9 hours 44 mins,"1,029 km" +Lewisburg(Pennsylvania),Lexington,,8 hours 45 mins,941 km +Scranton(Pennsylvania),Lexington,,9 hours 55 mins,"1,066 km" +Baltimore,Abilene(Texas),,22 hours 40 mins,"2,488 km" +Baltimore,Amarillo(Texas),,23 hours 18 mins,"2,538 km" +Baltimore,Harlingen(Texas),,1 day 2 hours,"2,854 km" +Baltimore,Lubbock(Texas),,1 day 1 hour,"2,677 km" +Baltimore,College Station(Texas),,21 hours 50 mins,"2,352 km" +Baltimore,Corpus Christi(Texas),,1 day 0 hours,"2,659 km" +Baltimore,Wichita Falls(Texas),,21 hours 33 mins,"2,342 km" +Baltimore,Waco(Texas),,21 hours 26 mins,"2,353 km" +Baltimore,San Angelo(Texas),,23 hours 54 mins,"2,612 km" +Baltimore,Houston(Texas),,21 hours 6 mins,"2,326 km" +Baltimore,San Antonio(Texas),,23 hours 58 mins,"2,640 km" +Baltimore,Del Rio(Texas),,1 day 2 hours,"2,887 km" +Baltimore,Mission(Texas),,1 day 2 hours,"2,894 km" +Baltimore,Beaumont(Texas),,19 hours 52 mins,"2,193 km" +Baltimore,Longview(Texas),,18 hours 56 mins,"2,085 km" +Baltimore,Midland(Texas),,1 day 1 hour,"2,728 km" +Baltimore,El Paso(Texas),,1 day 5 hours,"3,218 km" +Baltimore,Brownsville(Texas),,1 day 2 hours,"2,893 km" +Baltimore,Austin(Texas),,22 hours 51 mins,"2,512 km" +Baltimore,Dallas(Texas),,20 hours 3 mins,"2,198 km" +Baltimore,Killeen(Texas),,22 hours 15 mins,"2,447 km" +Baltimore,Laredo(Texas),,1 day 2 hours,"2,832 km" +Baltimore,Texarkana(Texas),,17 hours 34 mins,"1,918 km" +Abilene(Texas),Baltimore,,22 hours 40 mins,"2,488 km" +Amarillo(Texas),Baltimore,,23 hours 20 mins,"2,537 km" +Harlingen(Texas),Baltimore,,1 day 2 hours,"2,855 km" +Lubbock(Texas),Baltimore,,1 day 1 hour,"2,677 km" +College Station(Texas),Baltimore,,21 hours 47 mins,"2,348 km" +Corpus Christi(Texas),Baltimore,,1 day 0 hours,"2,666 km" +Wichita Falls(Texas),Baltimore,,21 hours 35 mins,"2,342 km" +Waco(Texas),Baltimore,,21 hours 25 mins,"2,350 km" +San Angelo(Texas),Baltimore,,23 hours 53 mins,"2,613 km" +Houston(Texas),Baltimore,,21 hours 7 mins,"2,327 km" +San Antonio(Texas),Baltimore,,1 day 0 hours,"2,638 km" +Del Rio(Texas),Baltimore,,1 day 2 hours,"2,866 km" +Mission(Texas),Baltimore,,1 day 2 hours,"2,895 km" +Beaumont(Texas),Baltimore,,19 hours 55 mins,"2,194 km" +Longview(Texas),Baltimore,,18 hours 56 mins,"2,081 km" +Midland(Texas),Baltimore,,1 day 1 hour,"2,728 km" +El Paso(Texas),Baltimore,,1 day 5 hours,"3,218 km" +Brownsville(Texas),Baltimore,,1 day 2 hours,"2,895 km" +Austin(Texas),Baltimore,,22 hours 50 mins,"2,512 km" +Dallas(Texas),Baltimore,,20 hours 4 mins,"2,198 km" +Killeen(Texas),Baltimore,,22 hours 15 mins,"2,446 km" +Laredo(Texas),Baltimore,,1 day 2 hours,"2,833 km" +Texarkana(Texas),Baltimore,,17 hours 35 mins,"1,917 km" +Kansas City,Newark,,17 hours 52 mins,"1,901 km" +Newark,Kansas City,,17 hours 48 mins,"1,900 km" +St. Petersburg,Toledo(Ohio),,, +St. Petersburg,Cleveland(Ohio),,, +St. Petersburg,Dayton(Ohio),,, +St. Petersburg,Columbus(Ohio),,, +St. Petersburg,Akron(Ohio),,, +St. Petersburg,Cincinnati(Ohio),,, +Toledo(Ohio),St. Petersburg,,, +Cleveland(Ohio),St. Petersburg,,, +Dayton(Ohio),St. Petersburg,,, +Columbus(Ohio),St. Petersburg,,, +Akron(Ohio),St. Petersburg,,, +Cincinnati(Ohio),St. Petersburg,,, +Dallas,Charleston(South Carolina),,15 hours 56 mins,"1,748 km" +Dallas,Hilton Head(South Carolina),,15 hours 22 mins,"1,708 km" +Dallas,Greer(South Carolina),,13 hours 43 mins,"1,514 km" +Dallas,Greenville(South Carolina),,13 hours 30 mins,"1,491 km" +Dallas,Myrtle Beach(South Carolina),,16 hours 48 mins,"1,839 km" +Charleston(South Carolina),Dallas,,15 hours 58 mins,"1,741 km" +Hilton Head(South Carolina),Dallas,,15 hours 23 mins,"1,710 km" +Greer(South Carolina),Dallas,,13 hours 43 mins,"1,520 km" +Greenville(South Carolina),Dallas,,13 hours 30 mins,"1,498 km" +Myrtle Beach(South Carolina),Dallas,,16 hours 50 mins,"1,847 km" +New York,Lake Charles(Louisiana),,21 hours 53 mins,"2,390 km" +New York,Baton Rouge(Louisiana),,20 hours 3 mins,"2,189 km" +New York,New Orleans(Louisiana),,19 hours 17 mins,"2,099 km" +New York,Shreveport(Louisiana),,20 hours 54 mins,"2,272 km" +Lake Charles(Louisiana),New York,,21 hours 54 mins,"2,392 km" +Baton Rouge(Louisiana),New York,,20 hours 5 mins,"2,192 km" +New Orleans(Louisiana),New York,,19 hours 18 mins,"2,099 km" +Shreveport(Louisiana),New York,,20 hours 53 mins,"2,275 km" +New Orleans,Abilene(Texas),,10 hours 1 min,"1,104 km" +New Orleans,Amarillo(Texas),,12 hours 52 mins,"1,403 km" +New Orleans,Harlingen(Texas),,10 hours 5 mins,"1,088 km" +New Orleans,Lubbock(Texas),,12 hours 25 mins,"1,369 km" +New Orleans,College Station(Texas),,6 hours 36 mins,705 km +New Orleans,Corpus Christi(Texas),,8 hours 18 mins,893 km +New Orleans,Wichita Falls(Texas),,9 hours 27 mins,"1,042 km" +New Orleans,Waco(Texas),,7 hours 55 mins,815 km +New Orleans,San Angelo(Texas),,10 hours 54 mins,"1,144 km" +New Orleans,Houston(Texas),,5 hours 12 mins,560 km +New Orleans,San Antonio(Texas),,8 hours 4 mins,874 km +New Orleans,Del Rio(Texas),,10 hours 27 mins,"1,121 km" +New Orleans,Mission(Texas),,10 hours 30 mins,"1,127 km" +New Orleans,Beaumont(Texas),,3 hours 58 mins,427 km +New Orleans,Longview(Texas),,5 hours 44 mins,615 km +New Orleans,Midland(Texas),,12 hours 9 mins,"1,345 km" +New Orleans,El Paso(Texas),,15 hours 46 mins,"1,758 km" +New Orleans,Brownsville(Texas),,10 hours 27 mins,"1,127 km" +New Orleans,Austin(Texas),,7 hours 39 mins,823 km +New Orleans,Dallas(Texas),,7 hours 26 mins,816 km +New Orleans,Killeen(Texas),,8 hours 14 mins,878 km +New Orleans,Laredo(Texas),,10 hours 11 mins,"1,066 km" +New Orleans,Texarkana(Texas),,5 hours 57 mins,648 km +Abilene(Texas),New Orleans,,10 hours 2 mins,"1,105 km" +Amarillo(Texas),New Orleans,,12 hours 53 mins,"1,397 km" +Harlingen(Texas),New Orleans,,10 hours 0 mins,"1,087 km" +Lubbock(Texas),New Orleans,,12 hours 21 mins,"1,371 km" +College Station(Texas),New Orleans,,6 hours 33 mins,708 km +Corpus Christi(Texas),New Orleans,,8 hours 22 mins,898 km +Wichita Falls(Texas),New Orleans,,9 hours 31 mins,"1,034 km" +Waco(Texas),New Orleans,,7 hours 53 mins,815 km +San Angelo(Texas),New Orleans,,10 hours 52 mins,"1,143 km" +Houston(Texas),New Orleans,,5 hours 10 mins,559 km +San Antonio(Texas),New Orleans,,8 hours 3 mins,873 km +Del Rio(Texas),New Orleans,,10 hours 28 mins,"1,121 km" +Mission(Texas),New Orleans,,10 hours 28 mins,"1,128 km" +Beaumont(Texas),New Orleans,,3 hours 57 mins,426 km +Longview(Texas),New Orleans,,5 hours 44 mins,615 km +Midland(Texas),New Orleans,,12 hours 8 mins,"1,345 km" +El Paso(Texas),New Orleans,,15 hours 45 mins,"1,758 km" +Brownsville(Texas),New Orleans,,10 hours 24 mins,"1,127 km" +Austin(Texas),New Orleans,,7 hours 37 mins,823 km +Dallas(Texas),New Orleans,,7 hours 27 mins,814 km +Killeen(Texas),New Orleans,,8 hours 12 mins,872 km +Laredo(Texas),New Orleans,,10 hours 8 mins,"1,065 km" +Texarkana(Texas),New Orleans,,5 hours 58 mins,648 km +Cincinnati,Philadelphia,,8 hours 44 mins,921 km +Philadelphia,Cincinnati,,8 hours 49 mins,922 km +New York,Pellston(Michigan),,12 hours 51 mins,"1,412 km" +New York,Traverse City(Michigan),,12 hours 51 mins,"1,371 km" +New York,Alpena(Michigan),,12 hours 50 mins,"1,360 km" +New York,Iron Mountain(Michigan),,16 hours 17 mins,"1,742 km" +New York,Kalamazoo(Michigan),,10 hours 42 mins,"1,133 km" +New York,Saginaw(Michigan),,10 hours 32 mins,"1,126 km" +New York,Grand Rapids(Michigan),,11 hours 9 mins,"1,199 km" +New York,Lansing(Michigan),,10 hours 11 mins,"1,091 km" +New York,Muskegon(Michigan),,11 hours 42 mins,"1,262 km" +New York,Hancock(Michigan),,17 hours 28 mins,"1,852 km" +New York,Detroit(Michigan),,9 hours 19 mins,988 km +New York,Escanaba(Michigan),,15 hours 21 mins,"1,660 km" +Pellston(Michigan),New York,,12 hours 55 mins,"1,414 km" +Traverse City(Michigan),New York,,12 hours 57 mins,"1,372 km" +Alpena(Michigan),New York,,12 hours 53 mins,"1,359 km" +Iron Mountain(Michigan),New York,,16 hours 20 mins,"1,743 km" +Kalamazoo(Michigan),New York,,10 hours 44 mins,"1,132 km" +Saginaw(Michigan),New York,,10 hours 34 mins,"1,126 km" +Grand Rapids(Michigan),New York,,11 hours 11 mins,"1,200 km" +Lansing(Michigan),New York,,10 hours 16 mins,"1,092 km" +Muskegon(Michigan),New York,,11 hours 46 mins,"1,264 km" +Hancock(Michigan),New York,,17 hours 32 mins,"1,853 km" +Detroit(Michigan),New York,,9 hours 22 mins,989 km +Escanaba(Michigan),New York,,15 hours 24 mins,"1,661 km" +Houston,State College(Pennsylvania),,22 hours 19 mins,"2,423 km" +Houston,Johnstown(Pennsylvania),,21 hours 21 mins,"2,329 km" +Houston,Harrisburg(Pennsylvania),,21 hours 16 mins,"2,353 km" +Houston,Erie(Pennsylvania),,20 hours 49 mins,"2,242 km" +Houston,Pittsburgh(Pennsylvania),,20 hours 5 mins,"2,149 km" +Houston,Latrobe(Pennsylvania),,20 hours 43 mins,"2,196 km" +Houston,Philadelphia(Pennsylvania),,22 hours 38 mins,"2,490 km" +Houston,Lewisburg(Pennsylvania),,22 hours 15 mins,"2,440 km" +Houston,Scranton(Pennsylvania),,23 hours 3 mins,"2,541 km" +State College(Pennsylvania),Houston,,22 hours 18 mins,"2,429 km" +Johnstown(Pennsylvania),Houston,,21 hours 20 mins,"2,329 km" +Harrisburg(Pennsylvania),Houston,,21 hours 18 mins,"2,353 km" +Erie(Pennsylvania),Houston,,20 hours 54 mins,"2,244 km" +Pittsburgh(Pennsylvania),Houston,,20 hours 9 mins,"2,153 km" +Latrobe(Pennsylvania),Houston,,20 hours 45 mins,"2,199 km" +Philadelphia(Pennsylvania),Houston,,22 hours 40 mins,"2,488 km" +Lewisburg(Pennsylvania),Houston,,22 hours 17 mins,"2,439 km" +Scranton(Pennsylvania),Houston,,23 hours 3 mins,"2,540 km" +West Palm Beach,Buffalo(New York),,19 hours 16 mins,"2,132 km" +West Palm Beach,Manhattan(New York),,17 hours 48 mins,"1,962 km" +West Palm Beach,Niagara Falls(New York),,19 hours 37 mins,"2,162 km" +West Palm Beach,Islip(New York),,18 hours 28 mins,"2,033 km" +West Palm Beach,New York(New York),,17 hours 39 mins,"1,956 km" +West Palm Beach,Watertown(New York),,20 hours 41 mins,"2,292 km" +West Palm Beach,Newburgh(New York),,18 hours 29 mins,"2,048 km" +West Palm Beach,Syracuse(New York),,19 hours 38 mins,"2,179 km" +West Palm Beach,Plattsburgh(New York),,21 hours 55 mins,"2,436 km" +West Palm Beach,Ogdensburg(New York),,21 hours 40 mins,"2,385 km" +West Palm Beach,Ithaca(New York),,19 hours 23 mins,"2,118 km" +West Palm Beach,Elmira(New York),,18 hours 46 mins,"2,046 km" +West Palm Beach,White Plains(New York),,18 hours 6 mins,"2,007 km" +West Palm Beach,Albany(New York),,19 hours 35 mins,"2,179 km" +West Palm Beach,Binghamton(New York),,18 hours 38 mins,"2,067 km" +West Palm Beach,Rochester(New York),,20 hours 2 mins,"2,208 km" +Buffalo(New York),West Palm Beach,,19 hours 20 mins,"2,135 km" +Manhattan(New York),West Palm Beach,,17 hours 54 mins,"1,972 km" +Niagara Falls(New York),West Palm Beach,,19 hours 42 mins,"2,165 km" +Islip(New York),West Palm Beach,,18 hours 35 mins,"2,041 km" +New York(New York),West Palm Beach,,17 hours 45 mins,"1,966 km" +Watertown(New York),West Palm Beach,,20 hours 55 mins,"2,297 km" +Newburgh(New York),West Palm Beach,,18 hours 37 mins,"2,059 km" +Syracuse(New York),West Palm Beach,,19 hours 51 mins,"2,184 km" +Plattsburgh(New York),West Palm Beach,,22 hours 2 mins,"2,449 km" +Ogdensburg(New York),West Palm Beach,,21 hours 54 mins,"2,390 km" +Ithaca(New York),West Palm Beach,,19 hours 34 mins,"2,127 km" +Elmira(New York),West Palm Beach,,18 hours 58 mins,"2,056 km" +White Plains(New York),West Palm Beach,,18 hours 12 mins,"2,016 km" +Albany(New York),West Palm Beach,,19 hours 44 mins,"2,191 km" +Binghamton(New York),West Palm Beach,,18 hours 51 mins,"2,071 km" +Rochester(New York),West Palm Beach,,20 hours 13 mins,"2,217 km" +Tulsa,San Diego(California),,20 hours 46 mins,"2,285 km" +Tulsa,Redding(California),,1 day 3 hours,"3,043 km" +Tulsa,Sacramento(California),,1 day 1 hour,"2,779 km" +Tulsa,Fresno(California),,22 hours 27 mins,"2,508 km" +Tulsa,San Luis Obispo(California),,23 hours 3 mins,"2,551 km" +Tulsa,Oakland(California),,1 day 1 hour,"2,769 km" +Tulsa,Santa Barbara(California),,22 hours 2 mins,"2,450 km" +Tulsa,Stockton(California),,1 day 0 hours,"2,707 km" +Tulsa,Santa Rosa(California),,1 day 2 hours,"2,862 km" +Tulsa,Bakersfield(California),,20 hours 50 mins,"2,332 km" +Tulsa,Santa Ana(California),,20 hours 39 mins,"2,307 km" +Tulsa,Santa Maria(California),,22 hours 50 mins,"2,506 km" +Tulsa,San Jose(California),,1 day 1 hour,"2,720 km" +Tulsa,Burbank(California),,20 hours 38 mins,"2,311 km" +Tulsa,Arcata(California),,1 day 6 hours,"3,222 km" +Tulsa,Butte(California),,1 day 2 hours,"2,917 km" +Tulsa,Palm Springs(California),,19 hours 35 mins,"2,143 km" +Tulsa,Los Angeles(California),,20 hours 41 mins,"2,311 km" +Tulsa,Long Beach(California),,20 hours 51 mins,"2,330 km" +Tulsa,San Francisco(California),,1 day 1 hour,"2,788 km" +Tulsa,Monterey(California),,1 day 0 hours,"2,686 km" +San Diego(California),Tulsa,,20 hours 47 mins,"2,279 km" +Redding(California),Tulsa,,1 day 3 hours,"3,037 km" +Sacramento(California),Tulsa,,1 day 1 hour,"2,779 km" +Fresno(California),Tulsa,,22 hours 31 mins,"2,506 km" +San Luis Obispo(California),Tulsa,,23 hours 6 mins,"2,552 km" +Oakland(California),Tulsa,,1 day 1 hour,"2,770 km" +Santa Barbara(California),Tulsa,,22 hours 2 mins,"2,448 km" +Stockton(California),Tulsa,,1 day 0 hours,"2,707 km" +Santa Rosa(California),Tulsa,,1 day 2 hours,"2,863 km" +Bakersfield(California),Tulsa,,20 hours 55 mins,"2,331 km" +Santa Ana(California),Tulsa,,20 hours 38 mins,"2,302 km" +Santa Maria(California),Tulsa,,22 hours 54 mins,"2,507 km" +San Jose(California),Tulsa,,1 day 1 hour,"2,720 km" +Burbank(California),Tulsa,,20 hours 39 mins,"2,309 km" +Arcata(California),Tulsa,,1 day 6 hours,"3,224 km" +Butte(California),Tulsa,,1 day 3 hours,"2,912 km" +Palm Springs(California),Tulsa,,19 hours 34 mins,"2,141 km" +Los Angeles(California),Tulsa,,20 hours 37 mins,"2,305 km" +Long Beach(California),Tulsa,,20 hours 55 mins,"2,332 km" +San Francisco(California),Tulsa,,1 day 1 hour,"2,788 km" +Monterey(California),Tulsa,,1 day 1 hour,"2,686 km" +Newburgh,Sarasota(Florida),,18 hours 29 mins,"2,003 km" +Newburgh,Fort Myers(Florida),,19 hours 27 mins,"2,108 km" +Newburgh,Gainesville(Florida),,15 hours 49 mins,"1,713 km" +Newburgh,Orlando(Florida),,16 hours 42 mins,"1,830 km" +Newburgh,Daytona Beach(Florida),,16 hours 4 mins,"1,755 km" +Newburgh,Jacksonville(Florida),,14 hours 39 mins,"1,601 km" +Newburgh,Tampa(Florida),,17 hours 42 mins,"1,918 km" +Newburgh,Panama City(Florida),,18 hours 43 mins,"1,949 km" +Newburgh,Key West(Florida),,22 hours 38 mins,"2,413 km" +Newburgh,West Palm Beach(Florida),,18 hours 38 mins,"2,060 km" +Newburgh,Miami(Florida),,19 hours 38 mins,"2,158 km" +Newburgh,Tallahassee(Florida),,17 hours 2 mins,"1,860 km" +Newburgh,Punta Gorda(Florida),,19 hours 1 min,"2,072 km" +Newburgh,Fort Lauderdale(Florida),,19 hours 15 mins,"2,127 km" +Newburgh,Pensacola(Florida),,18 hours 37 mins,"2,015 km" +Sarasota(Florida),Newburgh,,18 hours 24 mins,"1,994 km" +Fort Myers(Florida),Newburgh,,19 hours 21 mins,"2,099 km" +Gainesville(Florida),Newburgh,,15 hours 46 mins,"1,704 km" +Orlando(Florida),Newburgh,,16 hours 31 mins,"1,817 km" +Daytona Beach(Florida),Newburgh,,15 hours 57 mins,"1,734 km" +Jacksonville(Florida),Newburgh,,14 hours 34 mins,"1,592 km" +Tampa(Florida),Newburgh,,17 hours 36 mins,"1,909 km" +Panama City(Florida),Newburgh,,18 hours 35 mins,"2,015 km" +Key West(Florida),Newburgh,,22 hours 31 mins,"2,401 km" +West Palm Beach(Florida),Newburgh,,18 hours 29 mins,"2,048 km" +Miami(Florida),Newburgh,,19 hours 28 mins,"2,149 km" +Tallahassee(Florida),Newburgh,,16 hours 58 mins,"1,857 km" +Punta Gorda(Florida),Newburgh,,18 hours 55 mins,"2,063 km" +Fort Lauderdale(Florida),Newburgh,,19 hours 7 mins,"2,116 km" +Pensacola(Florida),Newburgh,,18 hours 32 mins,"2,015 km" +Seattle,Abilene(Texas),,1 day 5 hours,"3,072 km" +Seattle,Amarillo(Texas),,1 day 1 hour,"2,763 km" +Seattle,Harlingen(Texas),,1 day 12 hours,"3,857 km" +Seattle,Lubbock(Texas),,1 day 3 hours,"2,806 km" +Seattle,College Station(Texas),,1 day 9 hours,"3,587 km" +Seattle,Corpus Christi(Texas),,1 day 10 hours,"3,681 km" +Seattle,Wichita Falls(Texas),,1 day 5 hours,"3,123 km" +Seattle,Waco(Texas),,1 day 8 hours,"3,451 km" +Seattle,San Angelo(Texas),,1 day 5 hours,"3,106 km" +Seattle,Houston(Texas),,1 day 10 hours,"3,726 km" +Seattle,San Antonio(Texas),,1 day 8 hours,"3,449 km" +Seattle,Del Rio(Texas),,1 day 7 hours,"3,263 km" +Seattle,Mission(Texas),,1 day 12 hours,"3,845 km" +Seattle,Beaumont(Texas),,1 day 11 hours,"3,801 km" +Seattle,Longview(Texas),,1 day 9 hours,"3,550 km" +Seattle,Midland(Texas),,1 day 4 hours,"2,939 km" +Seattle,El Paso(Texas),,1 day 1 hour,"2,723 km" +Seattle,Brownsville(Texas),,1 day 12 hours,"3,896 km" +Seattle,Austin(Texas),,1 day 8 hours,"3,408 km" +Seattle,Dallas(Texas),,1 day 7 hours,"3,350 km" +Seattle,Killeen(Texas),,1 day 8 hours,"3,345 km" +Seattle,Laredo(Texas),,1 day 10 hours,"3,553 km" +Seattle,Texarkana(Texas),,1 day 9 hours,"3,638 km" +Abilene(Texas),Seattle,,1 day 5 hours,"3,069 km" +Amarillo(Texas),Seattle,,1 day 1 hour,"2,762 km" +Harlingen(Texas),Seattle,,1 day 12 hours,"3,851 km" +Lubbock(Texas),Seattle,,1 day 3 hours,"2,803 km" +College Station(Texas),Seattle,,1 day 9 hours,"3,618 km" +Corpus Christi(Texas),Seattle,,1 day 10 hours,"3,675 km" +Wichita Falls(Texas),Seattle,,1 day 5 hours,"3,155 km" +Waco(Texas),Seattle,,1 day 8 hours,"3,480 km" +San Angelo(Texas),Seattle,,1 day 5 hours,"3,103 km" +Houston(Texas),Seattle,,1 day 10 hours,"3,758 km" +San Antonio(Texas),Seattle,,1 day 8 hours,"3,443 km" +Del Rio(Texas),Seattle,,1 day 7 hours,"3,253 km" +Mission(Texas),Seattle,,1 day 12 hours,"3,840 km" +Beaumont(Texas),Seattle,,1 day 11 hours,"3,832 km" +Longview(Texas),Seattle,,1 day 9 hours,"3,588 km" +Midland(Texas),Seattle,,1 day 4 hours,"2,937 km" +El Paso(Texas),Seattle,,1 day 1 hour,"2,721 km" +Brownsville(Texas),Seattle,,1 day 12 hours,"3,891 km" +Austin(Texas),Seattle,,1 day 8 hours,"3,434 km" +Dallas(Texas),Seattle,,1 day 7 hours,"3,381 km" +Killeen(Texas),Seattle,,1 day 8 hours,"3,343 km" +Laredo(Texas),Seattle,,1 day 10 hours,"3,542 km" +Texarkana(Texas),Seattle,,1 day 9 hours,"3,644 km" +Pittsburgh,Pellston(Michigan),,7 hours 48 mins,884 km +Pittsburgh,Traverse City(Michigan),,7 hours 48 mins,843 km +Pittsburgh,Alpena(Michigan),,7 hours 46 mins,831 km +Pittsburgh,Iron Mountain(Michigan),,11 hours 14 mins,"1,214 km" +Pittsburgh,Kalamazoo(Michigan),,5 hours 39 mins,604 km +Pittsburgh,Saginaw(Michigan),,5 hours 28 mins,597 km +Pittsburgh,Grand Rapids(Michigan),,6 hours 6 mins,671 km +Pittsburgh,Lansing(Michigan),,5 hours 8 mins,562 km +Pittsburgh,Muskegon(Michigan),,6 hours 39 mins,734 km +Pittsburgh,Hancock(Michigan),,12 hours 25 mins,"1,324 km" +Pittsburgh,Detroit(Michigan),,4 hours 16 mins,460 km +Pittsburgh,Escanaba(Michigan),,10 hours 18 mins,"1,132 km" +Pellston(Michigan),Pittsburgh,,7 hours 49 mins,885 km +Traverse City(Michigan),Pittsburgh,,7 hours 51 mins,844 km +Alpena(Michigan),Pittsburgh,,7 hours 47 mins,831 km +Iron Mountain(Michigan),Pittsburgh,,11 hours 14 mins,"1,214 km" +Kalamazoo(Michigan),Pittsburgh,,5 hours 38 mins,603 km +Saginaw(Michigan),Pittsburgh,,5 hours 28 mins,597 km +Grand Rapids(Michigan),Pittsburgh,,6 hours 5 mins,671 km +Lansing(Michigan),Pittsburgh,,5 hours 10 mins,563 km +Muskegon(Michigan),Pittsburgh,,6 hours 40 mins,735 km +Hancock(Michigan),Pittsburgh,,12 hours 26 mins,"1,325 km" +Detroit(Michigan),Pittsburgh,,4 hours 17 mins,460 km +Escanaba(Michigan),Pittsburgh,,10 hours 18 mins,"1,132 km" +Phoenix,Pellston(Michigan),,1 day 7 hours,"3,384 km" +Phoenix,Traverse City(Michigan),,1 day 6 hours,"3,287 km" +Phoenix,Alpena(Michigan),,1 day 8 hours,"3,442 km" +Phoenix,Iron Mountain(Michigan),,1 day 5 hours,"3,100 km" +Phoenix,Kalamazoo(Michigan),,1 day 3 hours,"3,010 km" +Phoenix,Saginaw(Michigan),,1 day 6 hours,"3,244 km" +Phoenix,Grand Rapids(Michigan),,1 day 4 hours,"3,059 km" +Phoenix,Lansing(Michigan),,1 day 4 hours,"3,124 km" +Phoenix,Muskegon(Michigan),,1 day 4 hours,"3,073 km" +Phoenix,Hancock(Michigan),,1 day 7 hours,"3,217 km" +Phoenix,Detroit(Michigan),,1 day 5 hours,"3,194 km" +Phoenix,Escanaba(Michigan),,1 day 6 hours,"3,118 km" +Pellston(Michigan),Phoenix,,1 day 7 hours,"3,386 km" +Traverse City(Michigan),Phoenix,,1 day 6 hours,"3,290 km" +Alpena(Michigan),Phoenix,,1 day 8 hours,"3,442 km" +Iron Mountain(Michigan),Phoenix,,1 day 5 hours,"3,099 km" +Kalamazoo(Michigan),Phoenix,,1 day 3 hours,"3,011 km" +Saginaw(Michigan),Phoenix,,1 day 6 hours,"3,243 km" +Grand Rapids(Michigan),Phoenix,,1 day 4 hours,"3,063 km" +Lansing(Michigan),Phoenix,,1 day 4 hours,"3,126 km" +Muskegon(Michigan),Phoenix,,1 day 4 hours,"3,074 km" +Hancock(Michigan),Phoenix,,1 day 7 hours,"3,219 km" +Detroit(Michigan),Phoenix,,1 day 5 hours,"3,196 km" +Escanaba(Michigan),Phoenix,,1 day 6 hours,"3,118 km" +San Francisco,Twin Falls(Idaho),,10 hours 3 mins,"1,078 km" +San Francisco,Pocatello(Idaho),,11 hours 46 mins,"1,261 km" +San Francisco,Idaho Falls(Idaho),,12 hours 22 mins,"1,335 km" +San Francisco,Sun Valley(Idaho),,11 hours 43 mins,"1,214 km" +San Francisco,Boise(Idaho),,9 hours 53 mins,"1,029 km" +San Francisco,Lewiston(Idaho),,14 hours 12 mins,"1,393 km" +Twin Falls(Idaho),San Francisco,,10 hours 7 mins,"1,078 km" +Pocatello(Idaho),San Francisco,,11 hours 51 mins,"1,261 km" +Idaho Falls(Idaho),San Francisco,,12 hours 27 mins,"1,335 km" +Sun Valley(Idaho),San Francisco,,11 hours 47 mins,"1,213 km" +Boise(Idaho),San Francisco,,9 hours 58 mins,"1,030 km" +Lewiston(Idaho),San Francisco,,14 hours 12 mins,"1,419 km" +Washington,Orlando,,12 hours 15 mins,"1,364 km" +Orlando,Washington,,12 hours 10 mins,"1,361 km" +Milwaukee,Augusta(Georgia),,14 hours 14 mins,"1,541 km" +Milwaukee,Decatur(Georgia),,12 hours 21 mins,"1,315 km" +Milwaukee,Atlanta(Georgia),,12 hours 6 mins,"1,307 km" +Milwaukee,Valdosta(Georgia),,15 hours 22 mins,"1,674 km" +Milwaukee,Savannah(Georgia),,15 hours 39 mins,"1,691 km" +Augusta(Georgia),Milwaukee,,14 hours 15 mins,"1,483 km" +Decatur(Georgia),Milwaukee,,12 hours 23 mins,"1,317 km" +Atlanta(Georgia),Milwaukee,,12 hours 6 mins,"1,309 km" +Valdosta(Georgia),Milwaukee,,15 hours 22 mins,"1,676 km" +Savannah(Georgia),Milwaukee,,15 hours 41 mins,"1,690 km" +Boston,Greensboro(North Carolina),,11 hours 40 mins,"1,215 km" +Boston,Wilmington(North Carolina),,12 hours 27 mins,"1,304 km" +Boston,New Bern(North Carolina),,12 hours 1 min,"1,239 km" +Boston,Charlotte(North Carolina),,12 hours 56 mins,"1,361 km" +Boston,Raleigh(North Carolina),,11 hours 11 mins,"1,165 km" +Boston,Asheville(North Carolina),,13 hours 54 mins,"1,466 km" +Boston,Fayetteville(North Carolina),,11 hours 42 mins,"1,226 km" +Greensboro(North Carolina),Boston,,11 hours 36 mins,"1,205 km" +Wilmington(North Carolina),Boston,,12 hours 22 mins,"1,292 km" +New Bern(North Carolina),Boston,,11 hours 56 mins,"1,240 km" +Charlotte(North Carolina),Boston,,12 hours 53 mins,"1,348 km" +Raleigh(North Carolina),Boston,,11 hours 7 mins,"1,154 km" +Asheville(North Carolina),Boston,,13 hours 52 mins,"1,467 km" +Fayetteville(North Carolina),Boston,,11 hours 39 mins,"1,215 km" +Buffalo,Boston,,6 hours 50 mins,737 km +Boston,Buffalo,,6 hours 50 mins,733 km +Norfolk,Nashville(Tennessee),,10 hours 29 mins,"1,136 km" +Norfolk,Bristol(Tennessee),,6 hours 17 mins,670 km +Norfolk,Knoxville(Tennessee),,7 hours 52 mins,850 km +Norfolk,Chattanooga(Tennessee),,9 hours 28 mins,"1,027 km" +Norfolk,Memphis(Tennessee),,13 hours 31 mins,"1,476 km" +Nashville(Tennessee),Norfolk,,10 hours 29 mins,"1,135 km" +Bristol(Tennessee),Norfolk,,6 hours 16 mins,668 km +Knoxville(Tennessee),Norfolk,,7 hours 50 mins,847 km +Chattanooga(Tennessee),Norfolk,,9 hours 28 mins,"1,025 km" +Memphis(Tennessee),Norfolk,,13 hours 31 mins,"1,473 km" +Missoula,Oakland,,16 hours 26 mins,"1,565 km" +Oakland,Missoula,,16 hours 28 mins,"1,565 km" +Greer,Buffalo(New York),,11 hours 18 mins,"1,200 km" +Greer,Manhattan(New York),,11 hours 3 mins,"1,154 km" +Greer,Niagara Falls(New York),,11 hours 40 mins,"1,230 km" +Greer,Islip(New York),,11 hours 43 mins,"1,224 km" +Greer,New York(New York),,10 hours 53 mins,"1,147 km" +Greer,Watertown(New York),,13 hours 16 mins,"1,419 km" +Greer,Newburgh(New York),,11 hours 40 mins,"1,242 km" +Greer,Syracuse(New York),,12 hours 13 mins,"1,306 km" +Greer,Plattsburgh(New York),,15 hours 6 mins,"1,631 km" +Greer,Ogdensburg(New York),,14 hours 15 mins,"1,512 km" +Greer,Ithaca(New York),,11 hours 54 mins,"1,242 km" +Greer,Elmira(New York),,11 hours 16 mins,"1,170 km" +Greer,White Plains(New York),,11 hours 20 mins,"1,198 km" +Greer,Albany(New York),,12 hours 47 mins,"1,373 km" +Greer,Binghamton(New York),,11 hours 13 mins,"1,194 km" +Greer,Rochester(New York),,12 hours 16 mins,"1,304 km" +Buffalo(New York),Greer,,11 hours 19 mins,"1,197 km" +Manhattan(New York),Greer,,11 hours 4 mins,"1,161 km" +Niagara Falls(New York),Greer,,11 hours 41 mins,"1,228 km" +Islip(New York),Greer,,11 hours 45 mins,"1,230 km" +New York(New York),Greer,,10 hours 55 mins,"1,156 km" +Watertown(New York),Greer,,13 hours 16 mins,"1,418 km" +Newburgh(New York),Greer,,11 hours 42 mins,"1,240 km" +Syracuse(New York),Greer,,12 hours 13 mins,"1,305 km" +Plattsburgh(New York),Greer,,15 hours 7 mins,"1,628 km" +Ogdensburg(New York),Greer,,14 hours 15 mins,"1,511 km" +Ithaca(New York),Greer,,11 hours 54 mins,"1,240 km" +Elmira(New York),Greer,,11 hours 17 mins,"1,170 km" +White Plains(New York),Greer,,11 hours 22 mins,"1,205 km" +Albany(New York),Greer,,12 hours 49 mins,"1,370 km" +Binghamton(New York),Greer,,11 hours 12 mins,"1,192 km" +Rochester(New York),Greer,,12 hours 18 mins,"1,302 km" +Green Bay,Moline(Illinois),,4 hours 47 mins,496 km +Green Bay,Belleville(Illinois),,7 hours 21 mins,781 km +Green Bay,Bloomington(Illinois),,4 hours 58 mins,528 km +Green Bay,Champaign(Illinois),,5 hours 7 mins,545 km +Green Bay,Chicago(Illinois),,3 hours 17 mins,333 km +Green Bay,Rockford(Illinois),,3 hours 13 mins,326 km +Green Bay,Peoria(Illinois),,5 hours 7 mins,532 km +Moline(Illinois),Green Bay,,4 hours 46 mins,495 km +Belleville(Illinois),Green Bay,,7 hours 19 mins,782 km +Bloomington(Illinois),Green Bay,,4 hours 56 mins,523 km +Champaign(Illinois),Green Bay,,5 hours 7 mins,545 km +Chicago(Illinois),Green Bay,,3 hours 11 mins,332 km +Rockford(Illinois),Green Bay,,3 hours 13 mins,325 km +Peoria(Illinois),Green Bay,,5 hours 7 mins,528 km +Bozeman,Moline(Illinois),,17 hours 59 mins,"1,986 km" +Bozeman,Belleville(Illinois),,20 hours 41 mins,"2,290 km" +Bozeman,Bloomington(Illinois),,19 hours 56 mins,"2,195 km" +Bozeman,Champaign(Illinois),,20 hours 37 mins,"2,277 km" +Bozeman,Chicago(Illinois),,19 hours 51 mins,"2,233 km" +Bozeman,Rockford(Illinois),,18 hours 47 mins,"2,114 km" +Bozeman,Peoria(Illinois),,19 hours 19 mins,"2,134 km" +Moline(Illinois),Bozeman,,18 hours 8 mins,"1,992 km" +Belleville(Illinois),Bozeman,,20 hours 46 mins,"2,290 km" +Bloomington(Illinois),Bozeman,,20 hours 4 mins,"2,201 km" +Champaign(Illinois),Bozeman,,20 hours 48 mins,"2,284 km" +Chicago(Illinois),Bozeman,,19 hours 51 mins,"2,233 km" +Rockford(Illinois),Bozeman,,18 hours 50 mins,"2,115 km" +Peoria(Illinois),Bozeman,,19 hours 28 mins,"2,141 km" +New Orleans,Martha's Vineyard(Massachusetts),,1 day 0 hours,"2,538 km" +New Orleans,Hyannis(Massachusetts),,23 hours 17 mins,"2,519 km" +New Orleans,Boston(Massachusetts),,22 hours 36 mins,"2,454 km" +New Orleans,Nantucket(Massachusetts),,1 day 2 hours,"2,566 km" +Martha's Vineyard(Massachusetts),New Orleans,,1 day 0 hours,"2,544 km" +Hyannis(Massachusetts),New Orleans,,23 hours 20 mins,"2,522 km" +Boston(Massachusetts),New Orleans,,22 hours 37 mins,"2,456 km" +Nantucket(Massachusetts),New Orleans,,1 day 2 hours,"2,573 km" +Wilmington,Philadelphia,,7 hours 41 mins,811 km +Philadelphia,Wilmington,,7 hours 44 mins,819 km +Detroit,Bemidji(Minnesota),,13 hours 41 mins,"1,463 km" +Detroit,Minneapolis(Minnesota),,10 hours 14 mins,"1,119 km" +Detroit,Duluth(Minnesota),,11 hours 11 mins,"1,215 km" +Detroit,Brainerd(Minnesota),,12 hours 10 mins,"1,320 km" +Detroit,Gustavus(Minnesota),,10 hours 40 mins,"1,166 km" +Detroit,St. Cloud(Minnesota),,11 hours 10 mins,"1,222 km" +Detroit,Hibbing(Minnesota),,12 hours 28 mins,"1,334 km" +Detroit,International Falls(Minnesota),,13 hours 52 mins,"1,476 km" +Bemidji(Minnesota),Detroit,,13 hours 35 mins,"1,462 km" +Minneapolis(Minnesota),Detroit,,10 hours 8 mins,"1,116 km" +Duluth(Minnesota),Detroit,,11 hours 8 mins,"1,213 km" +Brainerd(Minnesota),Detroit,,12 hours 6 mins,"1,319 km" +Gustavus(Minnesota),Detroit,,10 hours 36 mins,"1,163 km" +St. Cloud(Minnesota),Detroit,,11 hours 6 mins,"1,221 km" +Hibbing(Minnesota),Detroit,,12 hours 24 mins,"1,333 km" +International Falls(Minnesota),Detroit,,13 hours 48 mins,"1,475 km" +Pocatello,Salt Lake City,,2 hours 21 mins,264 km +Salt Lake City,Pocatello,,2 hours 20 mins,264 km +Orlando,Phoenix,,1 day 6 hours,"3,438 km" +Phoenix,Orlando,,1 day 7 hours,"3,442 km" +Sacramento,Abilene(Texas),,23 hours 18 mins,"2,520 km" +Sacramento,Amarillo(Texas),,20 hours 2 mins,"2,200 km" +Sacramento,Harlingen(Texas),,1 day 5 hours,"3,200 km" +Sacramento,Lubbock(Texas),,20 hours 56 mins,"2,253 km" +Sacramento,College Station(Texas),,1 day 4 hours,"2,993 km" +Sacramento,Corpus Christi(Texas),,1 day 3 hours,"3,025 km" +Sacramento,Wichita Falls(Texas),,23 hours 18 mins,"2,554 km" +Sacramento,Waco(Texas),,1 day 2 hours,"2,820 km" +Sacramento,San Angelo(Texas),,23 hours 16 mins,"2,556 km" +Sacramento,Houston(Texas),,1 day 4 hours,"3,107 km" +Sacramento,San Antonio(Texas),,1 day 1 hour,"2,793 km" +Sacramento,Del Rio(Texas),,23 hours 44 mins,"2,589 km" +Sacramento,Mission(Texas),,1 day 5 hours,"3,189 km" +Sacramento,Beaumont(Texas),,1 day 5 hours,"3,241 km" +Sacramento,Longview(Texas),,1 day 3 hours,"2,981 km" +Sacramento,Midland(Texas),,21 hours 47 mins,"2,397 km" +Sacramento,El Paso(Texas),,17 hours 25 mins,"1,907 km" +Sacramento,Brownsville(Texas),,1 day 5 hours,"3,240 km" +Sacramento,Austin(Texas),,1 day 2 hours,"2,833 km" +Sacramento,Dallas(Texas),,1 day 1 hour,"2,781 km" +Sacramento,Killeen(Texas),,1 day 2 hours,"2,826 km" +Sacramento,Laredo(Texas),,1 day 3 hours,"2,879 km" +Sacramento,Texarkana(Texas),,1 day 4 hours,"2,990 km" +Abilene(Texas),Sacramento,,23 hours 15 mins,"2,517 km" +Amarillo(Texas),Sacramento,,19 hours 58 mins,"2,197 km" +Harlingen(Texas),Sacramento,,1 day 5 hours,"3,201 km" +Lubbock(Texas),Sacramento,,20 hours 52 mins,"2,251 km" +College Station(Texas),Sacramento,,1 day 3 hours,"2,945 km" +Corpus Christi(Texas),Sacramento,,1 day 3 hours,"3,025 km" +Wichita Falls(Texas),Sacramento,,23 hours 16 mins,"2,553 km" +Waco(Texas),Sacramento,,1 day 2 hours,"2,877 km" +San Angelo(Texas),Sacramento,,23 hours 17 mins,"2,551 km" +Houston(Texas),Sacramento,,1 day 4 hours,"3,107 km" +San Antonio(Texas),Sacramento,,1 day 1 hour,"2,793 km" +Del Rio(Texas),Sacramento,,23 hours 46 mins,"2,590 km" +Mission(Texas),Sacramento,,1 day 5 hours,"3,190 km" +Beaumont(Texas),Sacramento,,1 day 5 hours,"3,241 km" +Longview(Texas),Sacramento,,1 day 3 hours,"2,985 km" +Midland(Texas),Sacramento,,21 hours 49 mins,"2,397 km" +El Paso(Texas),Sacramento,,17 hours 28 mins,"1,907 km" +Brownsville(Texas),Sacramento,,1 day 5 hours,"3,241 km" +Austin(Texas),Sacramento,,1 day 2 hours,"2,834 km" +Dallas(Texas),Sacramento,,1 day 1 hour,"2,778 km" +Killeen(Texas),Sacramento,,1 day 2 hours,"2,826 km" +Laredo(Texas),Sacramento,,1 day 3 hours,"2,879 km" +Texarkana(Texas),Sacramento,,1 day 4 hours,"3,002 km" +Fayetteville,Buffalo(New York),,11 hours 11 mins,"1,169 km" +Fayetteville,Manhattan(New York),,8 hours 28 mins,879 km +Fayetteville,Niagara Falls(New York),,11 hours 32 mins,"1,200 km" +Fayetteville,Islip(New York),,9 hours 9 mins,949 km +Fayetteville,New York(New York),,8 hours 19 mins,873 km +Fayetteville,Watertown(New York),,11 hours 22 mins,"1,208 km" +Fayetteville,Newburgh(New York),,9 hours 9 mins,964 km +Fayetteville,Syracuse(New York),,10 hours 19 mins,"1,096 km" +Fayetteville,Plattsburgh(New York),,12 hours 35 mins,"1,353 km" +Fayetteville,Ogdensburg(New York),,12 hours 20 mins,"1,301 km" +Fayetteville,Ithaca(New York),,10 hours 3 mins,"1,035 km" +Fayetteville,Elmira(New York),,9 hours 26 mins,962 km +Fayetteville,White Plains(New York),,8 hours 46 mins,923 km +Fayetteville,Albany(New York),,10 hours 15 mins,"1,095 km" +Fayetteville,Binghamton(New York),,9 hours 19 mins,984 km +Fayetteville,Rochester(New York),,10 hours 42 mins,"1,124 km" +Buffalo(New York),Fayetteville,,11 hours 12 mins,"1,171 km" +Manhattan(New York),Fayetteville,,8 hours 29 mins,886 km +Niagara Falls(New York),Fayetteville,,11 hours 34 mins,"1,202 km" +Islip(New York),Fayetteville,,9 hours 11 mins,955 km +New York(New York),Fayetteville,,8 hours 21 mins,881 km +Watertown(New York),Fayetteville,,11 hours 30 mins,"1,212 km" +Newburgh(New York),Fayetteville,,9 hours 13 mins,973 km +Syracuse(New York),Fayetteville,,10 hours 27 mins,"1,098 km" +Plattsburgh(New York),Fayetteville,,12 hours 38 mins,"1,362 km" +Ogdensburg(New York),Fayetteville,,12 hours 29 mins,"1,304 km" +Ithaca(New York),Fayetteville,,10 hours 10 mins,"1,041 km" +Elmira(New York),Fayetteville,,9 hours 33 mins,970 km +White Plains(New York),Fayetteville,,8 hours 47 mins,930 km +Albany(New York),Fayetteville,,10 hours 20 mins,"1,104 km" +Binghamton(New York),Fayetteville,,9 hours 26 mins,985 km +Rochester(New York),Fayetteville,,10 hours 49 mins,"1,131 km" +Dayton,Greensboro(North Carolina),,6 hours 46 mins,698 km +Dayton,Wilmington(North Carolina),,9 hours 40 mins,"1,025 km" +Dayton,New Bern(North Carolina),,9 hours 39 mins,"1,003 km" +Dayton,Charlotte(North Carolina),,7 hours 5 mins,734 km +Dayton,Raleigh(North Carolina),,7 hours 56 mins,818 km +Dayton,Asheville(North Carolina),,6 hours 21 mins,672 km +Dayton,Fayetteville(North Carolina),,8 hours 16 mins,843 km +Greensboro(North Carolina),Dayton,,6 hours 46 mins,697 km +Wilmington(North Carolina),Dayton,,9 hours 39 mins,"1,024 km" +New Bern(North Carolina),Dayton,,9 hours 38 mins,"1,002 km" +Charlotte(North Carolina),Dayton,,7 hours 5 mins,735 km +Raleigh(North Carolina),Dayton,,7 hours 53 mins,817 km +Asheville(North Carolina),Dayton,,6 hours 21 mins,671 km +Fayetteville(North Carolina),Dayton,,8 hours 17 mins,843 km +Tulsa,Houston,,7 hours 26 mins,795 km +Houston,Tulsa,,7 hours 26 mins,796 km +Dallas,Seattle(Washington),,1 day 7 hours,"3,381 km" +Dallas,Wenatchee(Washington),,1 day 6 hours,"3,308 km" +Dallas,Pasco(Washington),,1 day 4 hours,"3,054 km" +Dallas,Yakima(Washington),,1 day 5 hours,"3,153 km" +Dallas,Walla Walla(Washington),,1 day 3 hours,"2,994 km" +Dallas,Everett(Washington),,1 day 7 hours,"3,416 km" +Dallas,Spokane(Washington),,1 day 3 hours,"3,037 km" +Seattle(Washington),Dallas,,1 day 7 hours,"3,350 km" +Wenatchee(Washington),Dallas,,1 day 6 hours,"3,277 km" +Pasco(Washington),Dallas,,1 day 4 hours,"3,024 km" +Yakima(Washington),Dallas,,1 day 5 hours,"3,122 km" +Walla Walla(Washington),Dallas,,1 day 3 hours,"2,964 km" +Everett(Washington),Dallas,,1 day 7 hours,"3,385 km" +Spokane(Washington),Dallas,,1 day 3 hours,"3,007 km" +Fort Lauderdale,Green Bay(Wisconsin),,22 hours 49 mins,"2,524 km" +Fort Lauderdale,Rhinelander(Wisconsin),,1 day 0 hours,"2,739 km" +Fort Lauderdale,Marquette(Wisconsin),,22 hours 35 mins,"2,504 km" +Fort Lauderdale,Madison(Wisconsin),,21 hours 46 mins,"2,431 km" +Fort Lauderdale,La Crosse(Wisconsin),,23 hours 38 mins,"2,647 km" +Fort Lauderdale,Devils Lake(Wisconsin),,22 hours 25 mins,"2,495 km" +Fort Lauderdale,Appleton(Wisconsin),,22 hours 38 mins,"2,505 km" +Fort Lauderdale,Mosinee(Wisconsin),,23 hours 21 mins,"2,626 km" +Fort Lauderdale,Milwaukee(Wisconsin),,21 hours 8 mins,"2,340 km" +Fort Lauderdale,Eau Claire(Wisconsin),,1 day 0 hours,"2,704 km" +Green Bay(Wisconsin),Fort Lauderdale,,22 hours 50 mins,"2,520 km" +Rhinelander(Wisconsin),Fort Lauderdale,,1 day 0 hours,"2,732 km" +Marquette(Wisconsin),Fort Lauderdale,,22 hours 33 mins,"2,498 km" +Madison(Wisconsin),Fort Lauderdale,,21 hours 41 mins,"2,423 km" +La Crosse(Wisconsin),Fort Lauderdale,,23 hours 34 mins,"2,639 km" +Devils Lake(Wisconsin),Fort Lauderdale,,22 hours 23 mins,"2,487 km" +Appleton(Wisconsin),Fort Lauderdale,,22 hours 37 mins,"2,501 km" +Mosinee(Wisconsin),Fort Lauderdale,,23 hours 18 mins,"2,619 km" +Milwaukee(Wisconsin),Fort Lauderdale,,21 hours 9 mins,"2,336 km" +Eau Claire(Wisconsin),Fort Lauderdale,,1 day 0 hours,"2,697 km" +Buffalo,Atlanta,,13 hours 7 mins,"1,443 km" +Atlanta,Buffalo,,13 hours 6 mins,"1,443 km" +Santa Rosa,Portland,,10 hours 0 mins,984 km +Portland,Santa Rosa,,10 hours 3 mins,984 km +New York,Ponce,,, +Ponce,New York,,, +Detroit,Paducah(Kentucky),,8 hours 33 mins,927 km +Detroit,Owensboro(Kentucky),,7 hours 2 mins,752 km +Detroit,Lexington(Kentucky),,5 hours 14 mins,555 km +Detroit,Louisville(Kentucky),,5 hours 25 mins,582 km +Paducah(Kentucky),Detroit,,8 hours 32 mins,926 km +Owensboro(Kentucky),Detroit,,7 hours 0 mins,751 km +Lexington(Kentucky),Detroit,,5 hours 14 mins,554 km +Louisville(Kentucky),Detroit,,5 hours 27 mins,581 km +Raleigh,Dallas,,17 hours 20 mins,"1,914 km" +Dallas,Raleigh,,17 hours 23 mins,"1,910 km" +Fort Wayne,Moline(Illinois),,5 hours 8 mins,497 km +Fort Wayne,Belleville(Illinois),,5 hours 44 mins,590 km +Fort Wayne,Bloomington(Illinois),,4 hours 22 mins,365 km +Fort Wayne,Champaign(Illinois),,3 hours 41 mins,377 km +Fort Wayne,Chicago(Illinois),,3 hours 1 min,261 km +Fort Wayne,Rockford(Illinois),,4 hours 25 mins,401 km +Fort Wayne,Peoria(Illinois),,4 hours 48 mins,424 km +Moline(Illinois),Fort Wayne,,5 hours 8 mins,496 km +Belleville(Illinois),Fort Wayne,,5 hours 45 mins,587 km +Bloomington(Illinois),Fort Wayne,,4 hours 24 mins,364 km +Champaign(Illinois),Fort Wayne,,3 hours 47 mins,331 km +Chicago(Illinois),Fort Wayne,,3 hours 0 mins,261 km +Rockford(Illinois),Fort Wayne,,4 hours 25 mins,410 km +Peoria(Illinois),Fort Wayne,,4 hours 53 mins,425 km +Nashville,San Diego(California),,1 day 5 hours,"3,203 km" +Nashville,Redding(California),,1 day 10 hours,"3,763 km" +Nashville,Sacramento(California),,1 day 9 hours,"3,661 km" +Nashville,Fresno(California),,1 day 7 hours,"3,426 km" +Nashville,San Luis Obispo(California),,1 day 7 hours,"3,469 km" +Nashville,Oakland(California),,1 day 9 hours,"3,687 km" +Nashville,Santa Barbara(California),,1 day 6 hours,"3,368 km" +Nashville,Stockton(California),,1 day 9 hours,"3,626 km" +Nashville,Santa Rosa(California),,1 day 10 hours,"3,780 km" +Nashville,Bakersfield(California),,1 day 5 hours,"3,250 km" +Nashville,Santa Ana(California),,1 day 5 hours,"3,226 km" +Nashville,Santa Maria(California),,1 day 7 hours,"3,425 km" +Nashville,San Jose(California),,1 day 9 hours,"3,638 km" +Nashville,Burbank(California),,1 day 5 hours,"3,229 km" +Nashville,Arcata(California),,1 day 13 hours,"3,988 km" +Nashville,Butte(California),,1 day 10 hours,"3,700 km" +Nashville,Palm Springs(California),,1 day 4 hours,"3,061 km" +Nashville,Los Angeles(California),,1 day 5 hours,"3,226 km" +Nashville,Long Beach(California),,1 day 5 hours,"3,248 km" +Nashville,San Francisco(California),,1 day 9 hours,"3,706 km" +Nashville,Monterey(California),,1 day 9 hours,"3,604 km" +San Diego(California),Nashville,,1 day 5 hours,"3,198 km" +Redding(California),Nashville,,1 day 10 hours,"3,769 km" +Sacramento(California),Nashville,,1 day 9 hours,"3,666 km" +Fresno(California),Nashville,,1 day 7 hours,"3,426 km" +San Luis Obispo(California),Nashville,,1 day 7 hours,"3,471 km" +Oakland(California),Nashville,,1 day 9 hours,"3,689 km" +Santa Barbara(California),Nashville,,1 day 6 hours,"3,368 km" +Stockton(California),Nashville,,1 day 9 hours,"3,626 km" +Santa Rosa(California),Nashville,,1 day 10 hours,"3,782 km" +Bakersfield(California),Nashville,,1 day 5 hours,"3,251 km" +Santa Ana(California),Nashville,,1 day 5 hours,"3,221 km" +Santa Maria(California),Nashville,,1 day 7 hours,"3,426 km" +San Jose(California),Nashville,,1 day 9 hours,"3,639 km" +Burbank(California),Nashville,,1 day 5 hours,"3,228 km" +Arcata(California),Nashville,,1 day 13 hours,"3,992 km" +Butte(California),Nashville,,1 day 10 hours,"3,705 km" +Palm Springs(California),Nashville,,1 day 4 hours,"3,060 km" +Los Angeles(California),Nashville,,1 day 5 hours,"3,225 km" +Long Beach(California),Nashville,,1 day 5 hours,"3,252 km" +San Francisco(California),Nashville,,1 day 9 hours,"3,707 km" +Monterey(California),Nashville,,1 day 9 hours,"3,606 km" +Boston,San Juan,,, +San Juan,Boston,,, +Fayetteville,Abilene(Texas),,19 hours 12 mins,"2,152 km" +Fayetteville,Amarillo(Texas),,21 hours 20 mins,"2,398 km" +Fayetteville,Harlingen(Texas),,21 hours 33 mins,"2,399 km" +Fayetteville,Lubbock(Texas),,21 hours 36 mins,"2,417 km" +Fayetteville,College Station(Texas),,17 hours 48 mins,"1,930 km" +Fayetteville,Corpus Christi(Texas),,19 hours 47 mins,"2,205 km" +Fayetteville,Wichita Falls(Texas),,18 hours 39 mins,"2,095 km" +Fayetteville,Waco(Texas),,17 hours 40 mins,"1,938 km" +Fayetteville,San Angelo(Texas),,20 hours 27 mins,"2,281 km" +Fayetteville,Houston(Texas),,16 hours 41 mins,"1,872 km" +Fayetteville,San Antonio(Texas),,19 hours 33 mins,"2,185 km" +Fayetteville,Del Rio(Texas),,21 hours 56 mins,"2,432 km" +Fayetteville,Mission(Texas),,21 hours 59 mins,"2,439 km" +Fayetteville,Beaumont(Texas),,15 hours 27 mins,"1,738 km" +Fayetteville,Longview(Texas),,14 hours 56 mins,"1,668 km" +Fayetteville,Midland(Texas),,21 hours 20 mins,"2,393 km" +Fayetteville,El Paso(Texas),,1 day 2 hours,"2,883 km" +Fayetteville,Brownsville(Texas),,21 hours 56 mins,"2,439 km" +Fayetteville,Austin(Texas),,19 hours 6 mins,"2,104 km" +Fayetteville,Dallas(Texas),,16 hours 37 mins,"1,864 km" +Fayetteville,Killeen(Texas),,18 hours 29 mins,"2,034 km" +Fayetteville,Laredo(Texas),,21 hours 40 mins,"2,377 km" +Fayetteville,Texarkana(Texas),,14 hours 58 mins,"1,679 km" +Abilene(Texas),Fayetteville,,19 hours 10 mins,"2,153 km" +Amarillo(Texas),Fayetteville,,21 hours 17 mins,"2,385 km" +Harlingen(Texas),Fayetteville,,21 hours 27 mins,"2,399 km" +Lubbock(Texas),Fayetteville,,21 hours 30 mins,"2,419 km" +College Station(Texas),Fayetteville,,17 hours 42 mins,"1,930 km" +Corpus Christi(Texas),Fayetteville,,19 hours 49 mins,"2,210 km" +Wichita Falls(Texas),Fayetteville,,18 hours 39 mins,"2,083 km" +Waco(Texas),Fayetteville,,17 hours 36 mins,"1,939 km" +San Angelo(Texas),Fayetteville,,20 hours 22 mins,"2,277 km" +Houston(Texas),Fayetteville,,16 hours 37 mins,"1,871 km" +San Antonio(Texas),Fayetteville,,19 hours 30 mins,"2,185 km" +Del Rio(Texas),Fayetteville,,21 hours 56 mins,"2,432 km" +Mission(Texas),Fayetteville,,21 hours 56 mins,"2,439 km" +Beaumont(Texas),Fayetteville,,15 hours 25 mins,"1,738 km" +Longview(Texas),Fayetteville,,14 hours 52 mins,"1,663 km" +Midland(Texas),Fayetteville,,21 hours 16 mins,"2,393 km" +El Paso(Texas),Fayetteville,,1 day 2 hours,"2,883 km" +Brownsville(Texas),Fayetteville,,21 hours 51 mins,"2,439 km" +Austin(Texas),Fayetteville,,19 hours 2 mins,"2,101 km" +Dallas(Texas),Fayetteville,,16 hours 36 mins,"1,862 km" +Killeen(Texas),Fayetteville,,18 hours 27 mins,"2,035 km" +Laredo(Texas),Fayetteville,,21 hours 35 mins,"2,377 km" +Texarkana(Texas),Fayetteville,,14 hours 57 mins,"1,681 km" +Asheville,Moline(Illinois),,11 hours 30 mins,"1,245 km" +Asheville,Belleville(Illinois),,8 hours 48 mins,947 km +Asheville,Bloomington(Illinois),,9 hours 36 mins,"1,032 km" +Asheville,Champaign(Illinois),,8 hours 54 mins,955 km +Asheville,Chicago(Illinois),,9 hours 54 mins,"1,051 km" +Asheville,Rockford(Illinois),,11 hours 14 mins,"1,196 km" +Asheville,Peoria(Illinois),,10 hours 7 mins,"1,095 km" +Moline(Illinois),Asheville,,11 hours 28 mins,"1,244 km" +Belleville(Illinois),Asheville,,8 hours 48 mins,945 km +Bloomington(Illinois),Asheville,,9 hours 37 mins,"1,033 km" +Champaign(Illinois),Asheville,,8 hours 54 mins,953 km +Chicago(Illinois),Asheville,,9 hours 54 mins,"1,053 km" +Rockford(Illinois),Asheville,,11 hours 12 mins,"1,196 km" +Peoria(Illinois),Asheville,,10 hours 7 mins,"1,095 km" +Dayton,State College(Pennsylvania),,6 hours 13 mins,632 km +Dayton,Johnstown(Pennsylvania),,5 hours 9 mins,521 km +Dayton,Harrisburg(Pennsylvania),,6 hours 48 mins,705 km +Dayton,Erie(Pennsylvania),,4 hours 37 mins,497 km +Dayton,Pittsburgh(Pennsylvania),,3 hours 57 mins,410 km +Dayton,Latrobe(Pennsylvania),,4 hours 35 mins,457 km +Dayton,Philadelphia(Pennsylvania),,8 hours 17 mins,867 km +Dayton,Lewisburg(Pennsylvania),,6 hours 56 mins,750 km +Dayton,Scranton(Pennsylvania),,8 hours 6 mins,876 km +State College(Pennsylvania),Dayton,,6 hours 13 mins,638 km +Johnstown(Pennsylvania),Dayton,,5 hours 9 mins,519 km +Harrisburg(Pennsylvania),Dayton,,6 hours 47 mins,705 km +Erie(Pennsylvania),Dayton,,4 hours 37 mins,496 km +Pittsburgh(Pennsylvania),Dayton,,3 hours 57 mins,412 km +Latrobe(Pennsylvania),Dayton,,4 hours 32 mins,457 km +Philadelphia(Pennsylvania),Dayton,,8 hours 20 mins,869 km +Lewisburg(Pennsylvania),Dayton,,6 hours 54 mins,749 km +Scranton(Pennsylvania),Dayton,,8 hours 4 mins,874 km +Richmond,Philadelphia,,4 hours 1 min,402 km +Philadelphia,Richmond,,4 hours 2 mins,407 km +Fresno,Abilene(Texas),,20 hours 42 mins,"2,247 km" +Fresno,Amarillo(Texas),,17 hours 25 mins,"1,927 km" +Fresno,Harlingen(Texas),,1 day 2 hours,"2,933 km" +Fresno,Lubbock(Texas),,18 hours 19 mins,"1,981 km" +Fresno,College Station(Texas),,1 day 1 hour,"2,671 km" +Fresno,Corpus Christi(Texas),,1 day 1 hour,"2,758 km" +Fresno,Wichita Falls(Texas),,20 hours 42 mins,"2,281 km" +Fresno,Waco(Texas),,23 hours 38 mins,"2,548 km" +Fresno,San Angelo(Texas),,20 hours 47 mins,"2,281 km" +Fresno,Houston(Texas),,1 day 2 hours,"2,840 km" +Fresno,San Antonio(Texas),,22 hours 44 mins,"2,526 km" +Fresno,Del Rio(Texas),,21 hours 18 mins,"2,322 km" +Fresno,Mission(Texas),,1 day 2 hours,"2,922 km" +Fresno,Beaumont(Texas),,1 day 3 hours,"2,974 km" +Fresno,Longview(Texas),,1 day 1 hour,"2,708 km" +Fresno,Midland(Texas),,19 hours 21 mins,"2,130 km" +Fresno,El Paso(Texas),,14 hours 58 mins,"1,639 km" +Fresno,Brownsville(Texas),,1 day 3 hours,"2,973 km" +Fresno,Austin(Texas),,23 hours 33 mins,"2,565 km" +Fresno,Dallas(Texas),,22 hours 44 mins,"2,508 km" +Fresno,Killeen(Texas),,23 hours 22 mins,"2,559 km" +Fresno,Laredo(Texas),,1 day 0 hours,"2,612 km" +Fresno,Texarkana(Texas),,1 day 1 hour,"2,718 km" +Abilene(Texas),Fresno,,20 hours 39 mins,"2,247 km" +Amarillo(Texas),Fresno,,17 hours 22 mins,"1,927 km" +Harlingen(Texas),Fresno,,1 day 2 hours,"2,935 km" +Lubbock(Texas),Fresno,,18 hours 16 mins,"1,981 km" +College Station(Texas),Fresno,,1 day 1 hour,"2,675 km" +Corpus Christi(Texas),Fresno,,1 day 1 hour,"2,759 km" +Wichita Falls(Texas),Fresno,,20 hours 40 mins,"2,282 km" +Waco(Texas),Fresno,,23 hours 36 mins,"2,607 km" +San Angelo(Texas),Fresno,,20 hours 42 mins,"2,280 km" +Houston(Texas),Fresno,,1 day 2 hours,"2,841 km" +San Antonio(Texas),Fresno,,22 hours 44 mins,"2,527 km" +Del Rio(Texas),Fresno,,21 hours 19 mins,"2,323 km" +Mission(Texas),Fresno,,1 day 2 hours,"2,924 km" +Beaumont(Texas),Fresno,,1 day 3 hours,"2,975 km" +Longview(Texas),Fresno,,1 day 1 hour,"2,715 km" +Midland(Texas),Fresno,,19 hours 21 mins,"2,131 km" +El Paso(Texas),Fresno,,15 hours 0 mins,"1,641 km" +Brownsville(Texas),Fresno,,1 day 3 hours,"2,975 km" +Austin(Texas),Fresno,,23 hours 33 mins,"2,567 km" +Dallas(Texas),Fresno,,22 hours 42 mins,"2,508 km" +Killeen(Texas),Fresno,,23 hours 23 mins,"2,560 km" +Laredo(Texas),Fresno,,1 day 0 hours,"2,613 km" +Texarkana(Texas),Fresno,,1 day 1 hour,"2,731 km" +Eau Claire,Moline(Illinois),,4 hours 47 mins,433 km +Eau Claire,Belleville(Illinois),,7 hours 48 mins,849 km +Eau Claire,Bloomington(Illinois),,5 hours 24 mins,597 km +Eau Claire,Champaign(Illinois),,6 hours 5 mins,677 km +Eau Claire,Chicago(Illinois),,4 hours 46 mins,511 km +Eau Claire,Rockford(Illinois),,3 hours 42 mins,392 km +Eau Claire,Peoria(Illinois),,5 hours 36 mins,598 km +Moline(Illinois),Eau Claire,,4 hours 47 mins,433 km +Belleville(Illinois),Eau Claire,,7 hours 49 mins,849 km +Bloomington(Illinois),Eau Claire,,5 hours 24 mins,593 km +Champaign(Illinois),Eau Claire,,6 hours 8 mins,678 km +Chicago(Illinois),Eau Claire,,4 hours 44 mins,511 km +Rockford(Illinois),Eau Claire,,3 hours 43 mins,393 km +Peoria(Illinois),Eau Claire,,5 hours 37 mins,596 km +Washington,Montgomery,,11 hours 52 mins,"1,287 km" +Montgomery,Washington,,11 hours 54 mins,"1,286 km" +Denver,Appleton,,15 hours 36 mins,"1,728 km" +Appleton,Denver,,15 hours 36 mins,"1,722 km" +Newark,Green Bay(Wisconsin),,14 hours 46 mins,"1,585 km" +Newark,Rhinelander(Wisconsin),,16 hours 36 mins,"1,798 km" +Newark,Marquette(Wisconsin),,14 hours 42 mins,"1,552 km" +Newark,Madison(Wisconsin),,13 hours 57 mins,"1,489 km" +Newark,La Crosse(Wisconsin),,15 hours 49 mins,"1,706 km" +Newark,Devils Lake(Wisconsin),,14 hours 37 mins,"1,554 km" +Newark,Appleton(Wisconsin),,14 hours 36 mins,"1,566 km" +Newark,Mosinee(Wisconsin),,15 hours 33 mins,"1,685 km" +Newark,Milwaukee(Wisconsin),,13 hours 5 mins,"1,400 km" +Newark,Eau Claire(Wisconsin),,16 hours 19 mins,"1,763 km" +Green Bay(Wisconsin),Newark,,14 hours 50 mins,"1,586 km" +Rhinelander(Wisconsin),Newark,,16 hours 36 mins,"1,808 km" +Marquette(Wisconsin),Newark,,14 hours 44 mins,"1,553 km" +Madison(Wisconsin),Newark,,13 hours 55 mins,"1,499 km" +La Crosse(Wisconsin),Newark,,15 hours 48 mins,"1,715 km" +Devils Lake(Wisconsin),Newark,,14 hours 37 mins,"1,564 km" +Appleton(Wisconsin),Newark,,14 hours 37 mins,"1,566 km" +Mosinee(Wisconsin),Newark,,15 hours 32 mins,"1,695 km" +Milwaukee(Wisconsin),Newark,,13 hours 9 mins,"1,402 km" +Eau Claire(Wisconsin),Newark,,16 hours 18 mins,"1,773 km" +Las Vegas,Santa Maria,,6 hours 17 mins,634 km +Santa Maria,Las Vegas,,6 hours 25 mins,638 km +Raleigh,Sarasota(Florida),,10 hours 21 mins,"1,132 km" +Raleigh,Fort Myers(Florida),,11 hours 19 mins,"1,237 km" +Raleigh,Gainesville(Florida),,7 hours 41 mins,842 km +Raleigh,Orlando(Florida),,8 hours 34 mins,959 km +Raleigh,Daytona Beach(Florida),,7 hours 56 mins,885 km +Raleigh,Jacksonville(Florida),,6 hours 31 mins,731 km +Raleigh,Tampa(Florida),,9 hours 34 mins,"1,048 km" +Raleigh,Panama City(Florida),,10 hours 32 mins,"1,152 km" +Raleigh,Key West(Florida),,14 hours 30 mins,"1,542 km" +Raleigh,West Palm Beach(Florida),,10 hours 29 mins,"1,190 km" +Raleigh,Miami(Florida),,11 hours 30 mins,"1,288 km" +Raleigh,Tallahassee(Florida),,8 hours 54 mins,991 km +Raleigh,Punta Gorda(Florida),,10 hours 53 mins,"1,202 km" +Raleigh,Fort Lauderdale(Florida),,11 hours 7 mins,"1,258 km" +Raleigh,Pensacola(Florida),,10 hours 58 mins,"1,175 km" +Sarasota(Florida),Raleigh,,10 hours 19 mins,"1,131 km" +Fort Myers(Florida),Raleigh,,11 hours 16 mins,"1,237 km" +Gainesville(Florida),Raleigh,,7 hours 41 mins,842 km +Orlando(Florida),Raleigh,,8 hours 26 mins,955 km +Daytona Beach(Florida),Raleigh,,7 hours 52 mins,872 km +Jacksonville(Florida),Raleigh,,6 hours 29 mins,729 km +Tampa(Florida),Raleigh,,9 hours 31 mins,"1,046 km" +Panama City(Florida),Raleigh,,10 hours 30 mins,"1,152 km" +Key West(Florida),Raleigh,,14 hours 26 mins,"1,538 km" +West Palm Beach(Florida),Raleigh,,10 hours 24 mins,"1,186 km" +Miami(Florida),Raleigh,,11 hours 23 mins,"1,287 km" +Tallahassee(Florida),Raleigh,,8 hours 53 mins,994 km +Punta Gorda(Florida),Raleigh,,10 hours 51 mins,"1,201 km" +Fort Lauderdale(Florida),Raleigh,,11 hours 2 mins,"1,254 km" +Pensacola(Florida),Raleigh,,10 hours 57 mins,"1,173 km" +Plattsburgh,Sarasota(Florida),,21 hours 54 mins,"2,390 km" +Plattsburgh,Fort Myers(Florida),,22 hours 51 mins,"2,495 km" +Plattsburgh,Gainesville(Florida),,19 hours 14 mins,"2,100 km" +Plattsburgh,Orlando(Florida),,20 hours 7 mins,"2,218 km" +Plattsburgh,Daytona Beach(Florida),,19 hours 29 mins,"2,143 km" +Plattsburgh,Jacksonville(Florida),,18 hours 4 mins,"1,989 km" +Plattsburgh,Tampa(Florida),,21 hours 7 mins,"2,305 km" +Plattsburgh,Panama City(Florida),,22 hours 7 mins,"2,337 km" +Plattsburgh,Key West(Florida),,1 day 2 hours,"2,800 km" +Plattsburgh,West Palm Beach(Florida),,22 hours 2 mins,"2,449 km" +Plattsburgh,Miami(Florida),,23 hours 3 mins,"2,547 km" +Plattsburgh,Tallahassee(Florida),,20 hours 27 mins,"2,248 km" +Plattsburgh,Punta Gorda(Florida),,22 hours 26 mins,"2,460 km" +Plattsburgh,Fort Lauderdale(Florida),,22 hours 40 mins,"2,515 km" +Plattsburgh,Pensacola(Florida),,22 hours 2 mins,"2,403 km" +Sarasota(Florida),Plattsburgh,,21 hours 50 mins,"2,382 km" +Fort Myers(Florida),Plattsburgh,,22 hours 47 mins,"2,488 km" +Gainesville(Florida),Plattsburgh,,19 hours 12 mins,"2,092 km" +Orlando(Florida),Plattsburgh,,19 hours 57 mins,"2,206 km" +Daytona Beach(Florida),Plattsburgh,,19 hours 23 mins,"2,122 km" +Jacksonville(Florida),Plattsburgh,,18 hours 0 mins,"1,980 km" +Tampa(Florida),Plattsburgh,,21 hours 2 mins,"2,297 km" +Panama City(Florida),Plattsburgh,,22 hours 1 min,"2,403 km" +Key West(Florida),Plattsburgh,,1 day 2 hours,"2,789 km" +West Palm Beach(Florida),Plattsburgh,,21 hours 55 mins,"2,436 km" +Miami(Florida),Plattsburgh,,22 hours 54 mins,"2,537 km" +Tallahassee(Florida),Plattsburgh,,20 hours 25 mins,"2,245 km" +Punta Gorda(Florida),Plattsburgh,,22 hours 22 mins,"2,451 km" +Fort Lauderdale(Florida),Plattsburgh,,22 hours 33 mins,"2,504 km" +Pensacola(Florida),Plattsburgh,,21 hours 58 mins,"2,403 km" +Kansas City,Los Angeles,,23 hours 25 mins,"2,608 km" +Los Angeles,Kansas City,,23 hours 12 mins,"2,603 km" +Monterey,Abilene(Texas),,22 hours 41 mins,"2,427 km" +Monterey,Amarillo(Texas),,19 hours 25 mins,"2,107 km" +Monterey,Harlingen(Texas),,1 day 4 hours,"3,095 km" +Monterey,Lubbock(Texas),,20 hours 19 mins,"2,161 km" +Monterey,College Station(Texas),,1 day 3 hours,"2,887 km" +Monterey,Corpus Christi(Texas),,1 day 2 hours,"2,919 km" +Monterey,Wichita Falls(Texas),,22 hours 41 mins,"2,461 km" +Monterey,Waco(Texas),,1 day 2 hours,"2,728 km" +Monterey,San Angelo(Texas),,22 hours 33 mins,"2,450 km" +Monterey,Houston(Texas),,1 day 3 hours,"3,001 km" +Monterey,San Antonio(Texas),,1 day 0 hours,"2,687 km" +Monterey,Del Rio(Texas),,23 hours 0 mins,"2,483 km" +Monterey,Mission(Texas),,1 day 4 hours,"3,083 km" +Monterey,Beaumont(Texas),,1 day 5 hours,"3,135 km" +Monterey,Longview(Texas),,1 day 3 hours,"2,888 km" +Monterey,Midland(Texas),,21 hours 4 mins,"2,291 km" +Monterey,El Paso(Texas),,16 hours 41 mins,"1,801 km" +Monterey,Brownsville(Texas),,1 day 4 hours,"3,134 km" +Monterey,Austin(Texas),,1 day 1 hour,"2,727 km" +Monterey,Dallas(Texas),,1 day 1 hour,"2,688 km" +Monterey,Killeen(Texas),,1 day 1 hour,"2,720 km" +Monterey,Laredo(Texas),,1 day 2 hours,"2,773 km" +Monterey,Texarkana(Texas),,1 day 3 hours,"2,898 km" +Abilene(Texas),Monterey,,22 hours 38 mins,"2,424 km" +Amarillo(Texas),Monterey,,19 hours 21 mins,"2,104 km" +Harlingen(Texas),Monterey,,1 day 4 hours,"3,096 km" +Lubbock(Texas),Monterey,,20 hours 15 mins,"2,159 km" +College Station(Texas),Monterey,,1 day 3 hours,"2,894 km" +Corpus Christi(Texas),Monterey,,1 day 2 hours,"2,920 km" +Wichita Falls(Texas),Monterey,,22 hours 39 mins,"2,460 km" +Waco(Texas),Monterey,,1 day 2 hours,"2,784 km" +San Angelo(Texas),Monterey,,22 hours 34 mins,"2,450 km" +Houston(Texas),Monterey,,1 day 3 hours,"3,002 km" +San Antonio(Texas),Monterey,,1 day 0 hours,"2,687 km" +Del Rio(Texas),Monterey,,23 hours 2 mins,"2,484 km" +Mission(Texas),Monterey,,1 day 4 hours,"3,085 km" +Beaumont(Texas),Monterey,,1 day 5 hours,"3,135 km" +Longview(Texas),Monterey,,1 day 3 hours,"2,893 km" +Midland(Texas),Monterey,,21 hours 5 mins,"2,291 km" +El Paso(Texas),Monterey,,16 hours 44 mins,"1,801 km" +Brownsville(Texas),Monterey,,1 day 4 hours,"3,136 km" +Austin(Texas),Monterey,,1 day 1 hour,"2,728 km" +Dallas(Texas),Monterey,,1 day 1 hour,"2,686 km" +Killeen(Texas),Monterey,,1 day 1 hour,"2,720 km" +Laredo(Texas),Monterey,,1 day 2 hours,"2,774 km" +Texarkana(Texas),Monterey,,1 day 3 hours,"2,909 km" +Tallahassee,Abilene(Texas),,14 hours 55 mins,"1,629 km" +Tallahassee,Amarillo(Texas),,17 hours 48 mins,"1,932 km" +Tallahassee,Harlingen(Texas),,15 hours 9 mins,"1,670 km" +Tallahassee,Lubbock(Texas),,17 hours 19 mins,"1,894 km" +Tallahassee,College Station(Texas),,11 hours 40 mins,"1,287 km" +Tallahassee,Corpus Christi(Texas),,13 hours 23 mins,"1,475 km" +Tallahassee,Wichita Falls(Texas),,14 hours 21 mins,"1,567 km" +Tallahassee,Waco(Texas),,12 hours 59 mins,"1,397 km" +Tallahassee,San Angelo(Texas),,15 hours 57 mins,"1,726 km" +Tallahassee,Houston(Texas),,10 hours 15 mins,"1,142 km" +Tallahassee,San Antonio(Texas),,13 hours 7 mins,"1,456 km" +Tallahassee,Del Rio(Texas),,15 hours 31 mins,"1,703 km" +Tallahassee,Mission(Texas),,15 hours 35 mins,"1,709 km" +Tallahassee,Beaumont(Texas),,9 hours 2 mins,"1,009 km" +Tallahassee,Longview(Texas),,10 hours 38 mins,"1,141 km" +Tallahassee,Midland(Texas),,17 hours 4 mins,"1,870 km" +Tallahassee,El Paso(Texas),,20 hours 50 mins,"2,340 km" +Tallahassee,Brownsville(Texas),,15 hours 31 mins,"1,709 km" +Tallahassee,Austin(Texas),,12 hours 43 mins,"1,405 km" +Tallahassee,Dallas(Texas),,12 hours 22 mins,"1,346 km" +Tallahassee,Killeen(Texas),,13 hours 18 mins,"1,460 km" +Tallahassee,Laredo(Texas),,15 hours 14 mins,"1,648 km" +Tallahassee,Texarkana(Texas),,10 hours 41 mins,"1,156 km" +Abilene(Texas),Tallahassee,,14 hours 56 mins,"1,629 km" +Amarillo(Texas),Tallahassee,,17 hours 47 mins,"1,921 km" +Harlingen(Texas),Tallahassee,,15 hours 6 mins,"1,669 km" +Lubbock(Texas),Tallahassee,,17 hours 16 mins,"1,895 km" +College Station(Texas),Tallahassee,,11 hours 38 mins,"1,289 km" +Corpus Christi(Texas),Tallahassee,,13 hours 27 mins,"1,480 km" +Wichita Falls(Texas),Tallahassee,,14 hours 25 mins,"1,559 km" +Waco(Texas),Tallahassee,,12 hours 59 mins,"1,397 km" +San Angelo(Texas),Tallahassee,,15 hours 58 mins,"1,725 km" +Houston(Texas),Tallahassee,,10 hours 16 mins,"1,141 km" +San Antonio(Texas),Tallahassee,,13 hours 8 mins,"1,455 km" +Del Rio(Texas),Tallahassee,,15 hours 34 mins,"1,702 km" +Mission(Texas),Tallahassee,,15 hours 34 mins,"1,709 km" +Beaumont(Texas),Tallahassee,,9 hours 3 mins,"1,008 km" +Longview(Texas),Tallahassee,,10 hours 38 mins,"1,139 km" +Midland(Texas),Tallahassee,,17 hours 2 mins,"1,869 km" +El Paso(Texas),Tallahassee,,20 hours 50 mins,"2,340 km" +Brownsville(Texas),Tallahassee,,15 hours 29 mins,"1,709 km" +Austin(Texas),Tallahassee,,12 hours 43 mins,"1,404 km" +Dallas(Texas),Tallahassee,,12 hours 22 mins,"1,338 km" +Killeen(Texas),Tallahassee,,13 hours 18 mins,"1,453 km" +Laredo(Texas),Tallahassee,,15 hours 13 mins,"1,647 km" +Texarkana(Texas),Tallahassee,,10 hours 43 mins,"1,157 km" +Charlotte Amalie,Boston,,, +Boston,Charlotte Amalie,,, +Washington,Tampa,,13 hours 15 mins,"1,452 km" +Tampa,Washington,,13 hours 15 mins,"1,453 km" +Reno,San Diego(California),,9 hours 27 mins,910 km +Reno,Redding(California),,3 hours 22 mins,319 km +Reno,Sacramento(California),,2 hours 10 mins,212 km +Reno,Fresno(California),,4 hours 44 mins,480 km +Reno,San Luis Obispo(California),,6 hours 37 mins,683 km +Reno,Oakland(California),,3 hours 24 mins,342 km +Reno,Santa Barbara(California),,8 hours 10 mins,834 km +Reno,Stockton(California),,2 hours 53 mins,288 km +Reno,Santa Rosa(California),,3 hours 43 mins,367 km +Reno,Bakersfield(California),,6 hours 19 mins,653 km +Reno,Santa Ana(California),,8 hours 34 mins,881 km +Reno,Santa Maria(California),,7 hours 7 mins,733 km +Reno,San Jose(California),,4 hours 2 mins,404 km +Reno,Burbank(California),,7 hours 44 mins,814 km +Reno,Arcata(California),,6 hours 9 mins,544 km +Reno,Butte(California),,2 hours 52 mins,251 km +Reno,Palm Springs(California),,8 hours 40 mins,825 km +Reno,Los Angeles(California),,7 hours 57 mins,831 km +Reno,Long Beach(California),,8 hours 17 mins,867 km +Reno,San Francisco(California),,3 hours 33 mins,351 km +Reno,Monterey(California),,5 hours 3 mins,512 km +San Diego(California),Reno,,9 hours 23 mins,910 km +Redding(California),Reno,,3 hours 21 mins,319 km +Sacramento(California),Reno,,2 hours 12 mins,212 km +Fresno(California),Reno,,4 hours 42 mins,480 km +San Luis Obispo(California),Reno,,6 hours 35 mins,691 km +Oakland(California),Reno,,3 hours 24 mins,342 km +Santa Barbara(California),Reno,,8 hours 8 mins,844 km +Stockton(California),Reno,,2 hours 55 mins,289 km +Santa Rosa(California),Reno,,3 hours 45 mins,367 km +Bakersfield(California),Reno,,6 hours 17 mins,653 km +Santa Ana(California),Reno,,8 hours 26 mins,808 km +Santa Maria(California),Reno,,7 hours 5 mins,744 km +San Jose(California),Reno,,3 hours 59 mins,403 km +Burbank(California),Reno,,7 hours 46 mins,745 km +Arcata(California),Reno,,6 hours 7 mins,542 km +Butte(California),Reno,,2 hours 54 mins,254 km +Palm Springs(California),Reno,,8 hours 32 mins,825 km +Los Angeles(California),Reno,,7 hours 59 mins,761 km +Long Beach(California),Reno,,8 hours 22 mins,799 km +San Francisco(California),Reno,,3 hours 31 mins,351 km +Monterey(California),Reno,,5 hours 0 mins,510 km +Milwaukee,Newark,,13 hours 9 mins,"1,402 km" +Newark,Milwaukee,,13 hours 5 mins,"1,400 km" +Lexington,Greensboro(North Carolina),,6 hours 32 mins,671 km +Lexington,Wilmington(North Carolina),,9 hours 26 mins,997 km +Lexington,New Bern(North Carolina),,9 hours 26 mins,976 km +Lexington,Charlotte(North Carolina),,6 hours 23 mins,645 km +Lexington,Raleigh(North Carolina),,7 hours 42 mins,790 km +Lexington,Asheville(North Carolina),,4 hours 30 mins,460 km +Lexington,Fayetteville(North Carolina),,8 hours 2 mins,816 km +Greensboro(North Carolina),Lexington,,6 hours 34 mins,669 km +Wilmington(North Carolina),Lexington,,9 hours 27 mins,996 km +New Bern(North Carolina),Lexington,,9 hours 26 mins,974 km +Charlotte(North Carolina),Lexington,,6 hours 25 mins,643 km +Raleigh(North Carolina),Lexington,,7 hours 41 mins,789 km +Asheville(North Carolina),Lexington,,4 hours 31 mins,460 km +Fayetteville(North Carolina),Lexington,,8 hours 4 mins,815 km +Atlanta,San Diego(California),,1 day 7 hours,"3,451 km" +Atlanta,Redding(California),,1 day 14 hours,"4,158 km" +Atlanta,Sacramento(California),,1 day 12 hours,"3,985 km" +Atlanta,Fresno(California),,1 day 9 hours,"3,715 km" +Atlanta,San Luis Obispo(California),,1 day 10 hours,"3,758 km" +Atlanta,Oakland(California),,1 day 12 hours,"3,976 km" +Atlanta,Santa Barbara(California),,1 day 9 hours,"3,657 km" +Atlanta,Stockton(California),,1 day 11 hours,"3,914 km" +Atlanta,Santa Rosa(California),,1 day 13 hours,"4,069 km" +Atlanta,Bakersfield(California),,1 day 8 hours,"3,539 km" +Atlanta,Santa Ana(California),,1 day 7 hours,"3,514 km" +Atlanta,Santa Maria(California),,1 day 10 hours,"3,713 km" +Atlanta,San Jose(California),,1 day 11 hours,"3,927 km" +Atlanta,Burbank(California),,1 day 7 hours,"3,518 km" +Atlanta,Arcata(California),,1 day 16 hours,"4,429 km" +Atlanta,Butte(California),,1 day 13 hours,"4,124 km" +Atlanta,Palm Springs(California),,1 day 6 hours,"3,350 km" +Atlanta,Los Angeles(California),,1 day 7 hours,"3,518 km" +Atlanta,Long Beach(California),,1 day 8 hours,"3,537 km" +Atlanta,San Francisco(California),,1 day 12 hours,"3,995 km" +Atlanta,Monterey(California),,1 day 11 hours,"3,893 km" +San Diego(California),Atlanta,,1 day 7 hours,"3,443 km" +Redding(California),Atlanta,,1 day 14 hours,"4,163 km" +Sacramento(California),Atlanta,,1 day 12 hours,"3,973 km" +Fresno(California),Atlanta,,1 day 9 hours,"3,700 km" +San Luis Obispo(California),Atlanta,,1 day 10 hours,"3,745 km" +Oakland(California),Atlanta,,1 day 12 hours,"3,964 km" +Santa Barbara(California),Atlanta,,1 day 9 hours,"3,642 km" +Stockton(California),Atlanta,,1 day 11 hours,"3,900 km" +Santa Rosa(California),Atlanta,,1 day 13 hours,"4,056 km" +Bakersfield(California),Atlanta,,1 day 8 hours,"3,525 km" +Santa Ana(California),Atlanta,,1 day 7 hours,"3,496 km" +Santa Maria(California),Atlanta,,1 day 10 hours,"3,701 km" +San Jose(California),Atlanta,,1 day 11 hours,"3,913 km" +Burbank(California),Atlanta,,1 day 7 hours,"3,503 km" +Arcata(California),Atlanta,,1 day 16 hours,"4,386 km" +Butte(California),Atlanta,,1 day 13 hours,"4,099 km" +Palm Springs(California),Atlanta,,1 day 6 hours,"3,335 km" +Los Angeles(California),Atlanta,,1 day 7 hours,"3,499 km" +Long Beach(California),Atlanta,,1 day 8 hours,"3,526 km" +San Francisco(California),Atlanta,,1 day 12 hours,"3,982 km" +Monterey(California),Atlanta,,1 day 11 hours,"3,880 km" +St. Petersburg,Buffalo(New York),,, +St. Petersburg,Manhattan(New York),,, +St. Petersburg,Niagara Falls(New York),,, +St. Petersburg,Islip(New York),,, +St. Petersburg,New York(New York),,, +St. Petersburg,Watertown(New York),,, +St. Petersburg,Newburgh(New York),,, +St. Petersburg,Syracuse(New York),,, +St. Petersburg,Plattsburgh(New York),,, +St. Petersburg,Ogdensburg(New York),,, +St. Petersburg,Ithaca(New York),,, +St. Petersburg,Elmira(New York),,, +St. Petersburg,White Plains(New York),,, +St. Petersburg,Albany(New York),,, +St. Petersburg,Binghamton(New York),,, +St. Petersburg,Rochester(New York),,, +Buffalo(New York),St. Petersburg,,, +Manhattan(New York),St. Petersburg,,, +Niagara Falls(New York),St. Petersburg,,, +Islip(New York),St. Petersburg,,, +New York(New York),St. Petersburg,,, +Watertown(New York),St. Petersburg,,, +Newburgh(New York),St. Petersburg,,, +Syracuse(New York),St. Petersburg,,, +Plattsburgh(New York),St. Petersburg,,, +Ogdensburg(New York),St. Petersburg,,, +Ithaca(New York),St. Petersburg,,, +Elmira(New York),St. Petersburg,,, +White Plains(New York),St. Petersburg,,, +Albany(New York),St. Petersburg,,, +Binghamton(New York),St. Petersburg,,, +Rochester(New York),St. Petersburg,,, +Billings,Flagstaff(Arizona),,16 hours 29 mins,"1,719 km" +Billings,Yuma(Arizona),,19 hours 0 mins,"2,034 km" +Billings,Phoenix(Arizona),,18 hours 34 mins,"1,951 km" +Billings,Prescott(Arizona),,18 hours 1 min,"1,871 km" +Billings,Tucson(Arizona),,20 hours 7 mins,"2,129 km" +Flagstaff(Arizona),Billings,,16 hours 19 mins,"1,714 km" +Yuma(Arizona),Billings,,18 hours 56 mins,"2,028 km" +Phoenix(Arizona),Billings,,18 hours 23 mins,"1,946 km" +Prescott(Arizona),Billings,,17 hours 50 mins,"1,867 km" +Tucson(Arizona),Billings,,19 hours 55 mins,"2,126 km" +Lake Charles,Abilene(Texas),,7 hours 44 mins,797 km +Lake Charles,Amarillo(Texas),,10 hours 39 mins,"1,130 km" +Lake Charles,Harlingen(Texas),,7 hours 5 mins,759 km +Lake Charles,Lubbock(Texas),,10 hours 8 mins,"1,088 km" +Lake Charles,College Station(Texas),,3 hours 36 mins,376 km +Lake Charles,Corpus Christi(Texas),,5 hours 20 mins,564 km +Lake Charles,Wichita Falls(Texas),,7 hours 15 mins,770 km +Lake Charles,Waco(Texas),,4 hours 55 mins,487 km +Lake Charles,San Angelo(Texas),,7 hours 54 mins,815 km +Lake Charles,Houston(Texas),,2 hours 12 mins,231 km +Lake Charles,San Antonio(Texas),,5 hours 4 mins,545 km +Lake Charles,Del Rio(Texas),,7 hours 27 mins,792 km +Lake Charles,Mission(Texas),,7 hours 30 mins,799 km +Lake Charles,Beaumont(Texas),,58 mins,97.8 km +Lake Charles,Longview(Texas),,3 hours 49 mins,346 km +Lake Charles,Midland(Texas),,9 hours 34 mins,996 km +Lake Charles,El Paso(Texas),,12 hours 46 mins,"1,429 km" +Lake Charles,Brownsville(Texas),,7 hours 27 mins,798 km +Lake Charles,Austin(Texas),,4 hours 39 mins,494 km +Lake Charles,Dallas(Texas),,5 hours 17 mins,550 km +Lake Charles,Killeen(Texas),,5 hours 14 mins,549 km +Lake Charles,Laredo(Texas),,7 hours 11 mins,737 km +Lake Charles,Texarkana(Texas),,4 hours 18 mins,424 km +Abilene(Texas),Lake Charles,,7 hours 43 mins,793 km +Amarillo(Texas),Lake Charles,,10 hours 38 mins,"1,131 km" +Harlingen(Texas),Lake Charles,,7 hours 0 mins,759 km +Lubbock(Texas),Lake Charles,,10 hours 4 mins,"1,089 km" +College Station(Texas),Lake Charles,,3 hours 32 mins,379 km +Corpus Christi(Texas),Lake Charles,,5 hours 22 mins,569 km +Wichita Falls(Texas),Lake Charles,,7 hours 16 mins,768 km +Waco(Texas),Lake Charles,,4 hours 53 mins,486 km +San Angelo(Texas),Lake Charles,,7 hours 52 mins,814 km +Houston(Texas),Lake Charles,,2 hours 10 mins,231 km +San Antonio(Texas),Lake Charles,,5 hours 2 mins,545 km +Del Rio(Texas),Lake Charles,,7 hours 28 mins,792 km +Mission(Texas),Lake Charles,,7 hours 28 mins,799 km +Beaumont(Texas),Lake Charles,,57 mins,97.3 km +Longview(Texas),Lake Charles,,3 hours 50 mins,339 km +Midland(Texas),Lake Charles,,9 hours 32 mins,"1,001 km" +El Paso(Texas),Lake Charles,,12 hours 45 mins,"1,429 km" +Brownsville(Texas),Lake Charles,,7 hours 24 mins,799 km +Austin(Texas),Lake Charles,,4 hours 37 mins,494 km +Dallas(Texas),Lake Charles,,5 hours 18 mins,551 km +Killeen(Texas),Lake Charles,,5 hours 12 mins,543 km +Laredo(Texas),Lake Charles,,7 hours 7 mins,737 km +Texarkana(Texas),Lake Charles,,4 hours 19 mins,424 km +Charlottesville,Buffalo(New York),,8 hours 4 mins,733 km +Charlottesville,Manhattan(New York),,5 hours 55 mins,555 km +Charlottesville,Niagara Falls(New York),,8 hours 25 mins,764 km +Charlottesville,Islip(New York),,6 hours 35 mins,626 km +Charlottesville,New York(New York),,5 hours 46 mins,549 km +Charlottesville,Watertown(New York),,8 hours 31 mins,907 km +Charlottesville,Newburgh(New York),,6 hours 35 mins,641 km +Charlottesville,Syracuse(New York),,7 hours 28 mins,794 km +Charlottesville,Plattsburgh(New York),,10 hours 2 mins,"1,029 km" +Charlottesville,Ogdensburg(New York),,9 hours 30 mins,"1,000 km" +Charlottesville,Ithaca(New York),,7 hours 9 mins,730 km +Charlottesville,Elmira(New York),,6 hours 31 mins,658 km +Charlottesville,White Plains(New York),,6 hours 13 mins,599 km +Charlottesville,Albany(New York),,7 hours 42 mins,772 km +Charlottesville,Binghamton(New York),,6 hours 28 mins,682 km +Charlottesville,Rochester(New York),,7 hours 47 mins,820 km +Buffalo(New York),Charlottesville,,8 hours 3 mins,732 km +Manhattan(New York),Charlottesville,,5 hours 55 mins,556 km +Niagara Falls(New York),Charlottesville,,8 hours 24 mins,763 km +Islip(New York),Charlottesville,,6 hours 36 mins,625 km +New York(New York),Charlottesville,,5 hours 46 mins,550 km +Watertown(New York),Charlottesville,,8 hours 33 mins,909 km +Newburgh(New York),Charlottesville,,6 hours 39 mins,643 km +Syracuse(New York),Charlottesville,,7 hours 29 mins,795 km +Plattsburgh(New York),Charlottesville,,10 hours 3 mins,"1,031 km" +Ogdensburg(New York),Charlottesville,,9 hours 31 mins,"1,001 km" +Ithaca(New York),Charlottesville,,7 hours 10 mins,731 km +Elmira(New York),Charlottesville,,6 hours 33 mins,660 km +White Plains(New York),Charlottesville,,6 hours 13 mins,600 km +Albany(New York),Charlottesville,,7 hours 45 mins,773 km +Binghamton(New York),Charlottesville,,6 hours 28 mins,682 km +Rochester(New York),Charlottesville,,7 hours 48 mins,821 km +San Francisco,Minneapolis,,1 day 5 hours,"3,166 km" +Minneapolis,San Francisco,,1 day 5 hours,"3,176 km" +Orlando,Lake Charles(Louisiana),,11 hours 36 mins,"1,321 km" +Orlando,Baton Rouge(Louisiana),,9 hours 47 mins,"1,120 km" +Orlando,New Orleans(Louisiana),,9 hours 1 min,"1,030 km" +Orlando,Shreveport(Louisiana),,13 hours 12 mins,"1,448 km" +Lake Charles(Louisiana),Orlando,,11 hours 40 mins,"1,321 km" +Baton Rouge(Louisiana),Orlando,,9 hours 52 mins,"1,121 km" +New Orleans(Louisiana),Orlando,,9 hours 5 mins,"1,029 km" +Shreveport(Louisiana),Orlando,,13 hours 13 mins,"1,449 km" +Dallas,Augusta(Georgia),,13 hours 23 mins,"1,490 km" +Dallas,Decatur(Georgia),,11 hours 32 mins,"1,269 km" +Dallas,Atlanta(Georgia),,11 hours 18 mins,"1,258 km" +Dallas,Valdosta(Georgia),,13 hours 34 mins,"1,453 km" +Dallas,Savannah(Georgia),,14 hours 50 mins,"1,656 km" +Augusta(Georgia),Dallas,,13 hours 24 mins,"1,494 km" +Decatur(Georgia),Dallas,,11 hours 31 mins,"1,273 km" +Atlanta(Georgia),Dallas,,11 hours 16 mins,"1,260 km" +Valdosta(Georgia),Dallas,,13 hours 32 mins,"1,456 km" +Savannah(Georgia),Dallas,,14 hours 51 mins,"1,658 km" +St. Louis,Greensboro(North Carolina),,11 hours 14 mins,"1,203 km" +St. Louis,Wilmington(North Carolina),,13 hours 59 mins,"1,480 km" +St. Louis,New Bern(North Carolina),,14 hours 7 mins,"1,508 km" +St. Louis,Charlotte(North Carolina),,10 hours 48 mins,"1,150 km" +St. Louis,Raleigh(North Carolina),,12 hours 24 mins,"1,322 km" +St. Louis,Asheville(North Carolina),,8 hours 55 mins,966 km +St. Louis,Fayetteville(North Carolina),,12 hours 44 mins,"1,347 km" +Greensboro(North Carolina),St. Louis,,11 hours 14 mins,"1,200 km" +Wilmington(North Carolina),St. Louis,,13 hours 58 mins,"1,480 km" +New Bern(North Carolina),St. Louis,,14 hours 6 mins,"1,505 km" +Charlotte(North Carolina),St. Louis,,10 hours 46 mins,"1,148 km" +Raleigh(North Carolina),St. Louis,,12 hours 21 mins,"1,320 km" +Asheville(North Carolina),St. Louis,,8 hours 52 mins,965 km +Fayetteville(North Carolina),St. Louis,,12 hours 45 mins,"1,346 km" +Salt Lake City,Flagstaff(Arizona),,8 hours 10 mins,835 km +Salt Lake City,Yuma(Arizona),,10 hours 41 mins,"1,150 km" +Salt Lake City,Phoenix(Arizona),,10 hours 15 mins,"1,067 km" +Salt Lake City,Prescott(Arizona),,9 hours 42 mins,987 km +Salt Lake City,Tucson(Arizona),,11 hours 48 mins,"1,245 km" +Flagstaff(Arizona),Salt Lake City,,8 hours 6 mins,835 km +Yuma(Arizona),Salt Lake City,,10 hours 43 mins,"1,149 km" +Phoenix(Arizona),Salt Lake City,,10 hours 10 mins,"1,067 km" +Prescott(Arizona),Salt Lake City,,9 hours 37 mins,988 km +Tucson(Arizona),Salt Lake City,,11 hours 43 mins,"1,247 km" +Gulfport,Abilene(Texas),,10 hours 48 mins,"1,192 km" +Gulfport,Amarillo(Texas),,13 hours 39 mins,"1,490 km" +Gulfport,Harlingen(Texas),,10 hours 51 mins,"1,176 km" +Gulfport,Lubbock(Texas),,13 hours 12 mins,"1,457 km" +Gulfport,College Station(Texas),,7 hours 23 mins,793 km +Gulfport,Corpus Christi(Texas),,9 hours 6 mins,981 km +Gulfport,Wichita Falls(Texas),,10 hours 14 mins,"1,130 km" +Gulfport,Waco(Texas),,8 hours 42 mins,903 km +Gulfport,San Angelo(Texas),,11 hours 41 mins,"1,232 km" +Gulfport,Houston(Texas),,5 hours 59 mins,648 km +Gulfport,San Antonio(Texas),,8 hours 51 mins,962 km +Gulfport,Del Rio(Texas),,11 hours 14 mins,"1,209 km" +Gulfport,Mission(Texas),,11 hours 17 mins,"1,215 km" +Gulfport,Beaumont(Texas),,4 hours 45 mins,514 km +Gulfport,Longview(Texas),,6 hours 31 mins,703 km +Gulfport,Midland(Texas),,12 hours 57 mins,"1,433 km" +Gulfport,El Paso(Texas),,16 hours 33 mins,"1,846 km" +Gulfport,Brownsville(Texas),,11 hours 13 mins,"1,215 km" +Gulfport,Austin(Texas),,8 hours 27 mins,911 km +Gulfport,Dallas(Texas),,8 hours 13 mins,904 km +Gulfport,Killeen(Texas),,9 hours 2 mins,966 km +Gulfport,Laredo(Texas),,10 hours 58 mins,"1,154 km" +Gulfport,Texarkana(Texas),,6 hours 44 mins,736 km +Abilene(Texas),Gulfport,,10 hours 50 mins,"1,192 km" +Amarillo(Texas),Gulfport,,13 hours 40 mins,"1,484 km" +Harlingen(Texas),Gulfport,,10 hours 48 mins,"1,175 km" +Lubbock(Texas),Gulfport,,13 hours 9 mins,"1,458 km" +College Station(Texas),Gulfport,,7 hours 20 mins,795 km +Corpus Christi(Texas),Gulfport,,9 hours 10 mins,985 km +Wichita Falls(Texas),Gulfport,,10 hours 19 mins,"1,122 km" +Waco(Texas),Gulfport,,8 hours 41 mins,902 km +San Angelo(Texas),Gulfport,,11 hours 40 mins,"1,230 km" +Houston(Texas),Gulfport,,5 hours 58 mins,647 km +San Antonio(Texas),Gulfport,,8 hours 50 mins,961 km +Del Rio(Texas),Gulfport,,11 hours 16 mins,"1,208 km" +Mission(Texas),Gulfport,,11 hours 16 mins,"1,215 km" +Beaumont(Texas),Gulfport,,4 hours 45 mins,513 km +Longview(Texas),Gulfport,,6 hours 32 mins,703 km +Midland(Texas),Gulfport,,12 hours 55 mins,"1,432 km" +El Paso(Texas),Gulfport,,16 hours 33 mins,"1,846 km" +Brownsville(Texas),Gulfport,,11 hours 12 mins,"1,215 km" +Austin(Texas),Gulfport,,8 hours 25 mins,910 km +Dallas(Texas),Gulfport,,8 hours 15 mins,901 km +Killeen(Texas),Gulfport,,9 hours 0 mins,959 km +Laredo(Texas),Gulfport,,10 hours 55 mins,"1,153 km" +Texarkana(Texas),Gulfport,,6 hours 46 mins,736 km +Fort Myers,San Diego(California),,1 day 13 hours,"4,135 km" +Fort Myers,Redding(California),,1 day 21 hours,"5,010 km" +Fort Myers,Sacramento(California),,1 day 19 hours,"4,746 km" +Fort Myers,Fresno(California),,1 day 16 hours,"4,480 km" +Fort Myers,San Luis Obispo(California),,1 day 17 hours,"4,563 km" +Fort Myers,Oakland(California),,1 day 19 hours,"4,741 km" +Fort Myers,Santa Barbara(California),,1 day 15 hours,"4,411 km" +Fort Myers,Stockton(California),,1 day 18 hours,"4,679 km" +Fort Myers,Santa Rosa(California),,1 day 20 hours,"4,833 km" +Fort Myers,Bakersfield(California),,1 day 15 hours,"4,299 km" +Fort Myers,Santa Ana(California),,1 day 14 hours,"4,260 km" +Fort Myers,Santa Maria(California),,1 day 16 hours,"4,514 km" +Fort Myers,San Jose(California),,1 day 19 hours,"4,687 km" +Fort Myers,Burbank(California),,1 day 14 hours,"4,278 km" +Fort Myers,Arcata(California),,2 days 0 hours,"5,189 km" +Fort Myers,Butte(California),,1 day 20 hours,"4,889 km" +Fort Myers,Palm Springs(California),,1 day 12 hours,"4,090 km" +Fort Myers,Los Angeles(California),,1 day 14 hours,"4,260 km" +Fort Myers,Long Beach(California),,1 day 14 hours,"4,275 km" +Fort Myers,San Francisco(California),,1 day 19 hours,"4,755 km" +Fort Myers,Monterey(California),,1 day 18 hours,"4,653 km" +San Diego(California),Fort Myers,,1 day 13 hours,"4,130 km" +Redding(California),Fort Myers,,1 day 21 hours,"4,997 km" +Sacramento(California),Fort Myers,,1 day 19 hours,"4,740 km" +Fresno(California),Fort Myers,,1 day 16 hours,"4,467 km" +San Luis Obispo(California),Fort Myers,,1 day 17 hours,"4,562 km" +Oakland(California),Fort Myers,,1 day 19 hours,"4,730 km" +Santa Barbara(California),Fort Myers,,1 day 15 hours,"4,410 km" +Stockton(California),Fort Myers,,1 day 18 hours,"4,667 km" +Santa Rosa(California),Fort Myers,,1 day 20 hours,"4,823 km" +Bakersfield(California),Fort Myers,,1 day 15 hours,"4,292 km" +Santa Ana(California),Fort Myers,,1 day 14 hours,"4,233 km" +Santa Maria(California),Fort Myers,,1 day 17 hours,"4,512 km" +San Jose(California),Fort Myers,,1 day 19 hours,"4,680 km" +Burbank(California),Fort Myers,,1 day 14 hours,"4,271 km" +Arcata(California),Fort Myers,,2 days 0 hours,"5,185 km" +Butte(California),Fort Myers,,1 day 21 hours,"4,872 km" +Palm Springs(California),Fort Myers,,1 day 12 hours,"4,088 km" +Los Angeles(California),Fort Myers,,1 day 14 hours,"4,255 km" +Long Beach(California),Fort Myers,,1 day 14 hours,"4,266 km" +San Francisco(California),Fort Myers,,1 day 19 hours,"4,749 km" +Monterey(California),Fort Myers,,1 day 18 hours,"4,647 km" +Amarillo,Abilene(Texas),,4 hours 12 mins,461 km +Amarillo,Harlingen(Texas),,11 hours 7 mins,"1,225 km" +Amarillo,Lubbock(Texas),,1 hour 47 mins,197 km +Amarillo,College Station(Texas),,7 hours 42 mins,825 km +Amarillo,Corpus Christi(Texas),,9 hours 28 mins,"1,050 km" +Amarillo,Wichita Falls(Texas),,3 hours 27 mins,362 km +Amarillo,Waco(Texas),,6 hours 24 mins,690 km +Amarillo,San Angelo(Texas),,4 hours 35 mins,492 km +Amarillo,Houston(Texas),,8 hours 49 mins,965 km +Amarillo,San Antonio(Texas),,7 hours 31 mins,817 km +Amarillo,Del Rio(Texas),,7 hours 2 mins,743 km +Amarillo,Mission(Texas),,11 hours 6 mins,"1,213 km" +Amarillo,Beaumont(Texas),,9 hours 50 mins,"1,040 km" +Amarillo,Longview(Texas),,7 hours 21 mins,789 km +Amarillo,Midland(Texas),,3 hours 33 mins,387 km +Amarillo,El Paso(Texas),,6 hours 46 mins,704 km +Amarillo,Brownsville(Texas),,11 hours 28 mins,"1,264 km" +Amarillo,Austin(Texas),,7 hours 38 mins,797 km +Amarillo,Dallas(Texas),,5 hours 30 mins,589 km +Amarillo,Killeen(Texas),,6 hours 58 mins,734 km +Amarillo,Laredo(Texas),,9 hours 38 mins,"1,007 km" +Amarillo,Texarkana(Texas),,7 hours 47 mins,798 km +Abilene(Texas),Amarillo,,4 hours 10 mins,446 km +Harlingen(Texas),Amarillo,,11 hours 0 mins,"1,210 km" +Lubbock(Texas),Amarillo,,1 hour 48 mins,197 km +College Station(Texas),Amarillo,,7 hours 40 mins,824 km +Corpus Christi(Texas),Amarillo,,9 hours 24 mins,"1,034 km" +Wichita Falls(Texas),Amarillo,,3 hours 28 mins,362 km +Waco(Texas),Amarillo,,6 hours 24 mins,687 km +San Angelo(Texas),Amarillo,,4 hours 35 mins,511 km +Houston(Texas),Amarillo,,8 hours 50 mins,965 km +San Antonio(Texas),Amarillo,,7 hours 28 mins,802 km +Del Rio(Texas),Amarillo,,7 hours 0 mins,754 km +Mission(Texas),Amarillo,,11 hours 2 mins,"1,199 km" +Beaumont(Texas),Amarillo,,9 hours 50 mins,"1,039 km" +Longview(Texas),Amarillo,,7 hours 20 mins,795 km +Midland(Texas),Amarillo,,3 hours 33 mins,387 km +El Paso(Texas),Amarillo,,6 hours 43 mins,704 km +Brownsville(Texas),Amarillo,,11 hours 24 mins,"1,250 km" +Austin(Texas),Amarillo,,7 hours 37 mins,783 km +Dallas(Texas),Amarillo,,5 hours 30 mins,588 km +Killeen(Texas),Amarillo,,6 hours 58 mins,719 km +Laredo(Texas),Amarillo,,9 hours 38 mins,992 km +Texarkana(Texas),Amarillo,,7 hours 56 mins,811 km +Washington,Plattsburgh,,8 hours 8 mins,842 km +Plattsburgh,Washington,,8 hours 8 mins,845 km +Salt Lake City,Helena,,6 hours 53 mins,778 km +Helena,Salt Lake City,,6 hours 52 mins,778 km +Las Vegas,Twin Falls(Idaho),,7 hours 32 mins,796 km +Las Vegas,Pocatello(Idaho),,8 hours 8 mins,937 km +Las Vegas,Idaho Falls(Idaho),,8 hours 49 mins,"1,016 km" +Las Vegas,Sun Valley(Idaho),,9 hours 13 mins,931 km +Las Vegas,Boise(Idaho),,9 hours 29 mins,"1,005 km" +Las Vegas,Lewiston(Idaho),,14 hours 29 mins,"1,473 km" +Twin Falls(Idaho),Las Vegas,,7 hours 36 mins,796 km +Pocatello(Idaho),Las Vegas,,8 hours 8 mins,938 km +Idaho Falls(Idaho),Las Vegas,,8 hours 47 mins,"1,018 km" +Sun Valley(Idaho),Las Vegas,,9 hours 15 mins,931 km +Boise(Idaho),Las Vegas,,9 hours 30 mins,"1,004 km" +Lewiston(Idaho),Las Vegas,,14 hours 26 mins,"1,438 km" +Sarasota,Philadelphia,,16 hours 13 mins,"1,764 km" +Philadelphia,Sarasota,,16 hours 17 mins,"1,768 km" +Memphis,Phoenix,,20 hours 44 mins,"2,292 km" +Phoenix,Memphis,,20 hours 40 mins,"2,293 km" +Augusta,Abilene(Texas),,15 hours 59 mins,"1,782 km" +Augusta,Amarillo(Texas),,18 hours 8 mins,"2,028 km" +Augusta,Harlingen(Texas),,18 hours 22 mins,"2,030 km" +Augusta,Lubbock(Texas),,18 hours 23 mins,"2,047 km" +Augusta,College Station(Texas),,14 hours 36 mins,"1,560 km" +Augusta,Corpus Christi(Texas),,16 hours 36 mins,"1,835 km" +Augusta,Wichita Falls(Texas),,15 hours 25 mins,"1,720 km" +Augusta,Waco(Texas),,14 hours 27 mins,"1,569 km" +Augusta,San Angelo(Texas),,17 hours 13 mins,"1,906 km" +Augusta,Houston(Texas),,13 hours 28 mins,"1,502 km" +Augusta,San Antonio(Texas),,16 hours 20 mins,"1,816 km" +Augusta,Del Rio(Texas),,18 hours 43 mins,"2,062 km" +Augusta,Mission(Texas),,18 hours 47 mins,"2,069 km" +Augusta,Beaumont(Texas),,12 hours 15 mins,"1,368 km" +Augusta,Longview(Texas),,11 hours 42 mins,"1,293 km" +Augusta,Midland(Texas),,18 hours 8 mins,"2,023 km" +Augusta,El Paso(Texas),,22 hours 26 mins,"2,513 km" +Augusta,Brownsville(Texas),,18 hours 43 mins,"2,069 km" +Augusta,Austin(Texas),,15 hours 52 mins,"1,730 km" +Augusta,Dallas(Texas),,13 hours 26 mins,"1,498 km" +Augusta,Killeen(Texas),,15 hours 16 mins,"1,664 km" +Augusta,Laredo(Texas),,18 hours 27 mins,"2,007 km" +Augusta,Texarkana(Texas),,11 hours 45 mins,"1,309 km" +Abilene(Texas),Augusta,,15 hours 58 mins,"1,781 km" +Amarillo(Texas),Augusta,,18 hours 5 mins,"2,013 km" +Harlingen(Texas),Augusta,,18 hours 15 mins,"2,028 km" +Lubbock(Texas),Augusta,,18 hours 17 mins,"2,047 km" +College Station(Texas),Augusta,,14 hours 30 mins,"1,558 km" +Corpus Christi(Texas),Augusta,,16 hours 37 mins,"1,838 km" +Wichita Falls(Texas),Augusta,,15 hours 27 mins,"1,711 km" +Waco(Texas),Augusta,,14 hours 24 mins,"1,567 km" +San Angelo(Texas),Augusta,,17 hours 10 mins,"1,906 km" +Houston(Texas),Augusta,,13 hours 25 mins,"1,500 km" +San Antonio(Texas),Augusta,,16 hours 18 mins,"1,814 km" +Del Rio(Texas),Augusta,,18 hours 43 mins,"2,061 km" +Mission(Texas),Augusta,,18 hours 43 mins,"2,068 km" +Beaumont(Texas),Augusta,,12 hours 12 mins,"1,366 km" +Longview(Texas),Augusta,,11 hours 40 mins,"1,292 km" +Midland(Texas),Augusta,,18 hours 4 mins,"2,021 km" +El Paso(Texas),Augusta,,22 hours 22 mins,"2,511 km" +Brownsville(Texas),Augusta,,18 hours 39 mins,"2,068 km" +Austin(Texas),Augusta,,15 hours 50 mins,"1,729 km" +Dallas(Texas),Augusta,,13 hours 23 mins,"1,490 km" +Killeen(Texas),Augusta,,15 hours 14 mins,"1,663 km" +Laredo(Texas),Augusta,,18 hours 23 mins,"2,006 km" +Texarkana(Texas),Augusta,,11 hours 45 mins,"1,309 km" +Austin,Chicago,,16 hours 53 mins,"1,871 km" +Chicago,Austin,,16 hours 52 mins,"1,803 km" +Albany,Greensboro(North Carolina),,, +Albany,Wilmington(North Carolina),,, +Albany,New Bern(North Carolina),,, +Albany,Charlotte(North Carolina),,, +Albany,Raleigh(North Carolina),,, +Albany,Asheville(North Carolina),,, +Albany,Fayetteville(North Carolina),,, +Greensboro(North Carolina),Albany,,, +Wilmington(North Carolina),Albany,,, +New Bern(North Carolina),Albany,,, +Charlotte(North Carolina),Albany,,, +Raleigh(North Carolina),Albany,,, +Asheville(North Carolina),Albany,,, +Fayetteville(North Carolina),Albany,,, +Myrtle Beach,Abilene(Texas),,19 hours 25 mins,"2,135 km" +Myrtle Beach,Amarillo(Texas),,21 hours 32 mins,"2,377 km" +Myrtle Beach,Harlingen(Texas),,21 hours 44 mins,"2,378 km" +Myrtle Beach,Lubbock(Texas),,21 hours 47 mins,"2,396 km" +Myrtle Beach,College Station(Texas),,18 hours 1 min,"1,913 km" +Myrtle Beach,Corpus Christi(Texas),,20 hours 0 mins,"2,183 km" +Myrtle Beach,Wichita Falls(Texas),,18 hours 49 mins,"2,069 km" +Myrtle Beach,Waco(Texas),,17 hours 51 mins,"1,917 km" +Myrtle Beach,San Angelo(Texas),,20 hours 37 mins,"2,255 km" +Myrtle Beach,Houston(Texas),,16 hours 52 mins,"1,850 km" +Myrtle Beach,San Antonio(Texas),,19 hours 44 mins,"2,164 km" +Myrtle Beach,Del Rio(Texas),,22 hours 7 mins,"2,411 km" +Myrtle Beach,Mission(Texas),,22 hours 10 mins,"2,418 km" +Myrtle Beach,Beaumont(Texas),,15 hours 39 mins,"1,717 km" +Myrtle Beach,Longview(Texas),,15 hours 6 mins,"1,642 km" +Myrtle Beach,Midland(Texas),,21 hours 31 mins,"2,371 km" +Myrtle Beach,El Paso(Texas),,1 day 2 hours,"2,861 km" +Myrtle Beach,Brownsville(Texas),,22 hours 6 mins,"2,417 km" +Myrtle Beach,Austin(Texas),,19 hours 18 mins,"2,083 km" +Myrtle Beach,Dallas(Texas),,16 hours 48 mins,"1,842 km" +Myrtle Beach,Killeen(Texas),,18 hours 41 mins,"2,017 km" +Myrtle Beach,Laredo(Texas),,21 hours 51 mins,"2,356 km" +Myrtle Beach,Texarkana(Texas),,15 hours 9 mins,"1,657 km" +Abilene(Texas),Myrtle Beach,,19 hours 22 mins,"2,130 km" +Amarillo(Texas),Myrtle Beach,,21 hours 29 mins,"2,362 km" +Harlingen(Texas),Myrtle Beach,,21 hours 39 mins,"2,376 km" +Lubbock(Texas),Myrtle Beach,,21 hours 41 mins,"2,396 km" +College Station(Texas),Myrtle Beach,,17 hours 54 mins,"1,907 km" +Corpus Christi(Texas),Myrtle Beach,,20 hours 1 min,"2,187 km" +Wichita Falls(Texas),Myrtle Beach,,18 hours 51 mins,"2,060 km" +Waco(Texas),Myrtle Beach,,17 hours 48 mins,"1,916 km" +San Angelo(Texas),Myrtle Beach,,20 hours 34 mins,"2,255 km" +Houston(Texas),Myrtle Beach,,16 hours 49 mins,"1,849 km" +San Antonio(Texas),Myrtle Beach,,19 hours 42 mins,"2,163 km" +Del Rio(Texas),Myrtle Beach,,22 hours 8 mins,"2,410 km" +Mission(Texas),Myrtle Beach,,22 hours 7 mins,"2,417 km" +Beaumont(Texas),Myrtle Beach,,15 hours 37 mins,"1,715 km" +Longview(Texas),Myrtle Beach,,15 hours 4 mins,"1,641 km" +Midland(Texas),Myrtle Beach,,21 hours 28 mins,"2,370 km" +El Paso(Texas),Myrtle Beach,,1 day 2 hours,"2,860 km" +Brownsville(Texas),Myrtle Beach,,22 hours 3 mins,"2,416 km" +Austin(Texas),Myrtle Beach,,19 hours 14 mins,"2,078 km" +Dallas(Texas),Myrtle Beach,,16 hours 48 mins,"1,839 km" +Killeen(Texas),Myrtle Beach,,18 hours 39 mins,"2,012 km" +Laredo(Texas),Myrtle Beach,,21 hours 47 mins,"2,355 km" +Texarkana(Texas),Myrtle Beach,,15 hours 9 mins,"1,658 km" +Phoenix,Nashville,,23 hours 49 mins,"2,633 km" +Nashville,Phoenix,,23 hours 51 mins,"2,632 km" +Missoula,Dallas,,1 day 0 hours,"2,689 km" +Dallas,Missoula,,1 day 0 hours,"2,721 km" +St. Louis,Oklahoma City,,7 hours 17 mins,802 km +Oklahoma City,St. Louis,,7 hours 19 mins,803 km +Tallahassee,Greensboro(North Carolina),,9 hours 0 mins,860 km +Tallahassee,Wilmington(North Carolina),,8 hours 42 mins,967 km +Tallahassee,New Bern(North Carolina),,9 hours 57 mins,"1,101 km" +Tallahassee,Charlotte(North Carolina),,7 hours 44 mins,714 km +Tallahassee,Raleigh(North Carolina),,8 hours 53 mins,994 km +Tallahassee,Asheville(North Carolina),,7 hours 35 mins,731 km +Tallahassee,Fayetteville(North Carolina),,7 hours 59 mins,898 km +Greensboro(North Carolina),Tallahassee,,8 hours 59 mins,860 km +Wilmington(North Carolina),Tallahassee,,8 hours 42 mins,962 km +New Bern(North Carolina),Tallahassee,,9 hours 57 mins,"1,096 km" +Charlotte(North Carolina),Tallahassee,,7 hours 41 mins,714 km +Raleigh(North Carolina),Tallahassee,,8 hours 54 mins,991 km +Asheville(North Carolina),Tallahassee,,7 hours 36 mins,732 km +Fayetteville(North Carolina),Tallahassee,,7 hours 59 mins,892 km +Lihue,Los Angeles,,, +Los Angeles,Lihue,,, +Phoenix,Kahului,,, +Kahului,Phoenix,,, +Rockford,Sarasota(Florida),,18 hours 54 mins,"2,106 km" +Rockford,Fort Myers(Florida),,19 hours 52 mins,"2,211 km" +Rockford,Gainesville(Florida),,16 hours 30 mins,"1,822 km" +Rockford,Orlando(Florida),,17 hours 55 mins,"1,994 km" +Rockford,Daytona Beach(Florida),,17 hours 59 mins,"1,994 km" +Rockford,Jacksonville(Florida),,16 hours 36 mins,"1,844 km" +Rockford,Tampa(Florida),,18 hours 7 mins,"2,022 km" +Rockford,Panama City(Florida),,15 hours 22 mins,"1,628 km" +Rockford,Key West(Florida),,1 day 0 hours,"2,608 km" +Rockford,West Palm Beach(Florida),,20 hours 8 mins,"2,249 km" +Rockford,Miami(Florida),,21 hours 6 mins,"2,354 km" +Rockford,Tallahassee(Florida),,15 hours 39 mins,"1,683 km" +Rockford,Punta Gorda(Florida),,19 hours 26 mins,"2,176 km" +Rockford,Fort Lauderdale(Florida),,20 hours 45 mins,"2,317 km" +Rockford,Pensacola(Florida),,14 hours 34 mins,"1,606 km" +Sarasota(Florida),Rockford,,18 hours 58 mins,"2,114 km" +Fort Myers(Florida),Rockford,,19 hours 55 mins,"2,220 km" +Gainesville(Florida),Rockford,,16 hours 34 mins,"1,828 km" +Orlando(Florida),Rockford,,17 hours 56 mins,"2,000 km" +Daytona Beach(Florida),Rockford,,18 hours 2 mins,"1,991 km" +Jacksonville(Florida),Rockford,,16 hours 42 mins,"1,852 km" +Tampa(Florida),Rockford,,18 hours 10 mins,"2,029 km" +Panama City(Florida),Rockford,,15 hours 28 mins,"1,630 km" +Key West(Florida),Rockford,,1 day 0 hours,"2,615 km" +West Palm Beach(Florida),Rockford,,20 hours 11 mins,"2,258 km" +Miami(Florida),Rockford,,21 hours 8 mins,"2,363 km" +Tallahassee(Florida),Rockford,,15 hours 45 mins,"1,685 km" +Punta Gorda(Florida),Rockford,,19 hours 30 mins,"2,183 km" +Fort Lauderdale(Florida),Rockford,,20 hours 49 mins,"2,326 km" +Pensacola(Florida),Rockford,,14 hours 35 mins,"1,610 km" +Redding,San Diego(California),,10 hours 6 mins,"1,069 km" +Redding,Sacramento(California),,2 hours 28 mins,260 km +Redding,Fresno(California),,5 hours 4 mins,533 km +Redding,San Luis Obispo(California),,6 hours 26 mins,691 km +Redding,Oakland(California),,3 hours 11 mins,339 km +Redding,Santa Barbara(California),,8 hours 0 mins,842 km +Redding,Stockton(California),,3 hours 10 mins,336 km +Redding,Santa Rosa(California),,3 hours 33 mins,312 km +Redding,Bakersfield(California),,6 hours 40 mins,705 km +Redding,Santa Ana(California),,8 hours 50 mins,928 km +Redding,Santa Maria(California),,6 hours 56 mins,741 km +Redding,San Jose(California),,3 hours 49 mins,402 km +Redding,Burbank(California),,8 hours 0 mins,861 km +Redding,Arcata(California),,2 hours 49 mins,225 km +Redding,Butte(California),,1 hour 44 mins,157 km +Redding,Palm Springs(California),,9 hours 45 mins,"1,046 km" +Redding,Los Angeles(California),,8 hours 13 mins,878 km +Redding,Long Beach(California),,8 hours 33 mins,913 km +Redding,San Francisco(California),,3 hours 20 mins,349 km +Redding,Monterey(California),,4 hours 51 mins,509 km +San Diego(California),Redding,,10 hours 10 mins,"1,070 km" +Sacramento(California),Redding,,2 hours 28 mins,261 km +Fresno(California),Redding,,5 hours 4 mins,538 km +San Luis Obispo(California),Redding,,6 hours 22 mins,690 km +Oakland(California),Redding,,3 hours 11 mins,340 km +Santa Barbara(California),Redding,,7 hours 56 mins,843 km +Stockton(California),Redding,,3 hours 10 mins,338 km +Santa Rosa(California),Redding,,3 hours 32 mins,313 km +Bakersfield(California),Redding,,6 hours 40 mins,711 km +Santa Ana(California),Redding,,8 hours 53 mins,928 km +Santa Maria(California),Redding,,6 hours 52 mins,742 km +San Jose(California),Redding,,3 hours 46 mins,401 km +Burbank(California),Redding,,8 hours 2 mins,861 km +Arcata(California),Redding,,2 hours 46 mins,223 km +Butte(California),Redding,,1 hour 43 mins,151 km +Palm Springs(California),Redding,,9 hours 49 mins,"1,047 km" +Los Angeles(California),Redding,,8 hours 15 mins,877 km +Long Beach(California),Redding,,8 hours 38 mins,914 km +San Francisco(California),Redding,,3 hours 18 mins,350 km +Monterey(California),Redding,,4 hours 47 mins,508 km +Evansville,Greensboro(North Carolina),,9 hours 10 mins,987 km +Evansville,Wilmington(North Carolina),,11 hours 46 mins,"1,227 km" +Evansville,New Bern(North Carolina),,12 hours 4 mins,"1,292 km" +Evansville,Charlotte(North Carolina),,8 hours 35 mins,898 km +Evansville,Raleigh(North Carolina),,10 hours 20 mins,"1,107 km" +Evansville,Asheville(North Carolina),,6 hours 41 mins,713 km +Evansville,Fayetteville(North Carolina),,10 hours 41 mins,"1,132 km" +Greensboro(North Carolina),Evansville,,9 hours 10 mins,987 km +Wilmington(North Carolina),Evansville,,11 hours 47 mins,"1,229 km" +New Bern(North Carolina),Evansville,,12 hours 3 mins,"1,292 km" +Charlotte(North Carolina),Evansville,,8 hours 35 mins,897 km +Raleigh(North Carolina),Evansville,,10 hours 18 mins,"1,107 km" +Asheville(North Carolina),Evansville,,6 hours 41 mins,714 km +Fayetteville(North Carolina),Evansville,,10 hours 41 mins,"1,133 km" +Raleigh,Tampa,,9 hours 34 mins,"1,048 km" +Tampa,Raleigh,,9 hours 31 mins,"1,046 km" +Hartford,Nashville(Tennessee),,15 hours 4 mins,"1,620 km" +Hartford,Bristol(Tennessee),,10 hours 52 mins,"1,154 km" +Hartford,Knoxville(Tennessee),,12 hours 27 mins,"1,333 km" +Hartford,Chattanooga(Tennessee),,14 hours 3 mins,"1,510 km" +Hartford,Memphis(Tennessee),,18 hours 6 mins,"1,959 km" +Nashville(Tennessee),Hartford,,15 hours 5 mins,"1,622 km" +Bristol(Tennessee),Hartford,,10 hours 52 mins,"1,155 km" +Knoxville(Tennessee),Hartford,,12 hours 27 mins,"1,334 km" +Chattanooga(Tennessee),Hartford,,14 hours 4 mins,"1,513 km" +Memphis(Tennessee),Hartford,,18 hours 7 mins,"1,960 km" +Santa Ana,Alamosa(Colorado),,14 hours 40 mins,"1,483 km" +Santa Ana,Grand Junction(Colorado),,11 hours 24 mins,"1,245 km" +Santa Ana,Durango(Colorado),,11 hours 55 mins,"1,245 km" +Santa Ana,Colorado Springs(Colorado),,15 hours 47 mins,"1,739 km" +Santa Ana,Gunnison(Colorado),,13 hours 36 mins,"1,441 km" +Santa Ana,Denver(Colorado),,15 hours 2 mins,"1,633 km" +Alamosa(Colorado),Santa Ana,,14 hours 43 mins,"1,486 km" +Grand Junction(Colorado),Santa Ana,,11 hours 19 mins,"1,248 km" +Durango(Colorado),Santa Ana,,11 hours 56 mins,"1,248 km" +Colorado Springs(Colorado),Santa Ana,,15 hours 52 mins,"1,744 km" +Gunnison(Colorado),Santa Ana,,13 hours 34 mins,"1,445 km" +Denver(Colorado),Santa Ana,,14 hours 58 mins,"1,636 km" +Chicago,El Paso,,21 hours 52 mins,"2,393 km" +El Paso,Chicago,,21 hours 50 mins,"2,390 km" +Los Angeles,Alamosa(Colorado),,14 hours 39 mins,"1,487 km" +Los Angeles,Grand Junction(Colorado),,11 hours 14 mins,"1,247 km" +Los Angeles,Durango(Colorado),,11 hours 54 mins,"1,248 km" +Los Angeles,Colorado Springs(Colorado),,15 hours 46 mins,"1,742 km" +Los Angeles,Gunnison(Colorado),,13 hours 44 mins,"1,446 km" +Los Angeles,Denver(Colorado),,15 hours 1 min,"1,637 km" +Alamosa(Colorado),Los Angeles,,14 hours 45 mins,"1,490 km" +Grand Junction(Colorado),Los Angeles,,11 hours 19 mins,"1,248 km" +Durango(Colorado),Los Angeles,,11 hours 55 mins,"1,249 km" +Colorado Springs(Colorado),Los Angeles,,15 hours 51 mins,"1,744 km" +Gunnison(Colorado),Los Angeles,,13 hours 34 mins,"1,445 km" +Denver(Colorado),Los Angeles,,14 hours 58 mins,"1,636 km" +Columbus,Abilene(Texas),,17 hours 34 mins,"1,938 km" +Columbus,Amarillo(Texas),,17 hours 5 mins,"1,890 km" +Columbus,Harlingen(Texas),,22 hours 15 mins,"2,388 km" +Columbus,Lubbock(Texas),,18 hours 28 mins,"2,029 km" +Columbus,College Station(Texas),,17 hours 22 mins,"1,833 km" +Columbus,Corpus Christi(Texas),,20 hours 29 mins,"2,193 km" +Columbus,Wichita Falls(Texas),,15 hours 20 mins,"1,694 km" +Columbus,Waco(Texas),,16 hours 40 mins,"1,830 km" +Columbus,San Angelo(Texas),,18 hours 50 mins,"2,072 km" +Columbus,Houston(Texas),,17 hours 22 mins,"1,860 km" +Columbus,San Antonio(Texas),,19 hours 16 mins,"2,116 km" +Columbus,Del Rio(Texas),,21 hours 15 mins,"2,325 km" +Columbus,Mission(Texas),,22 hours 45 mins,"2,501 km" +Columbus,Beaumont(Texas),,16 hours 42 mins,"1,853 km" +Columbus,Longview(Texas),,14 hours 14 mins,"1,535 km" +Columbus,Midland(Texas),,19 hours 26 mins,"2,140 km" +Columbus,El Paso(Texas),,23 hours 40 mins,"2,588 km" +Columbus,Brownsville(Texas),,22 hours 36 mins,"2,427 km" +Columbus,Austin(Texas),,18 hours 4 mins,"1,989 km" +Columbus,Dallas(Texas),,15 hours 17 mins,"1,675 km" +Columbus,Killeen(Texas),,17 hours 28 mins,"1,924 km" +Columbus,Laredo(Texas),,21 hours 32 mins,"2,366 km" +Columbus,Texarkana(Texas),,12 hours 48 mins,"1,395 km" +Abilene(Texas),Columbus,,17 hours 33 mins,"1,938 km" +Amarillo(Texas),Columbus,,17 hours 3 mins,"1,889 km" +Harlingen(Texas),Columbus,,22 hours 10 mins,"2,386 km" +Lubbock(Texas),Columbus,,18 hours 23 mins,"2,028 km" +College Station(Texas),Columbus,,17 hours 18 mins,"1,827 km" +Corpus Christi(Texas),Columbus,,20 hours 32 mins,"2,197 km" +Wichita Falls(Texas),Columbus,,15 hours 18 mins,"1,694 km" +Waco(Texas),Columbus,,16 hours 36 mins,"1,825 km" +San Angelo(Texas),Columbus,,18 hours 48 mins,"2,072 km" +Houston(Texas),Columbus,,17 hours 20 mins,"1,858 km" +San Antonio(Texas),Columbus,,19 hours 11 mins,"2,112 km" +Del Rio(Texas),Columbus,,21 hours 11 mins,"2,325 km" +Mission(Texas),Columbus,,22 hours 38 mins,"2,498 km" +Beaumont(Texas),Columbus,,16 hours 41 mins,"1,852 km" +Longview(Texas),Columbus,,14 hours 13 mins,"1,533 km" +Midland(Texas),Columbus,,19 hours 23 mins,"2,141 km" +El Paso(Texas),Columbus,,23 hours 36 mins,"2,585 km" +Brownsville(Texas),Columbus,,22 hours 34 mins,"2,426 km" +Austin(Texas),Columbus,,18 hours 0 mins,"1,987 km" +Dallas(Texas),Columbus,,15 hours 14 mins,"1,673 km" +Killeen(Texas),Columbus,,17 hours 25 mins,"1,921 km" +Laredo(Texas),Columbus,,21 hours 29 mins,"2,364 km" +Texarkana(Texas),Columbus,,12 hours 45 mins,"1,392 km" +Houston,Sacramento,,1 day 4 hours,"3,107 km" +Sacramento,Houston,,1 day 4 hours,"3,107 km" +Kansas City,Buffalo(New York),,14 hours 29 mins,"1,586 km" +Kansas City,Manhattan(New York),,18 hours 18 mins,"1,925 km" +Kansas City,Niagara Falls(New York),,14 hours 50 mins,"1,617 km" +Kansas City,Islip(New York),,19 hours 0 mins,"2,022 km" +Kansas City,New York(New York),,18 hours 8 mins,"1,918 km" +Kansas City,Watertown(New York),,17 hours 29 mins,"1,915 km" +Kansas City,Newburgh(New York),,18 hours 9 mins,"1,972 km" +Kansas City,Syracuse(New York),,16 hours 32 mins,"1,812 km" +Kansas City,Plattsburgh(New York),,20 hours 21 mins,"2,173 km" +Kansas City,Ogdensburg(New York),,18 hours 27 mins,"2,008 km" +Kansas City,Ithaca(New York),,16 hours 40 mins,"1,805 km" +Kansas City,Elmira(New York),,16 hours 9 mins,"1,768 km" +Kansas City,White Plains(New York),,18 hours 19 mins,"1,997 km" +Kansas City,Albany(New York),,18 hours 32 mins,"2,039 km" +Kansas City,Binghamton(New York),,16 hours 57 mins,"1,856 km" +Kansas City,Rochester(New York),,15 hours 26 mins,"1,691 km" +Buffalo(New York),Kansas City,,14 hours 28 mins,"1,585 km" +Manhattan(New York),Kansas City,,18 hours 10 mins,"1,969 km" +Niagara Falls(New York),Kansas City,,14 hours 50 mins,"1,615 km" +Islip(New York),Kansas City,,18 hours 58 mins,"2,019 km" +New York(New York),Kansas City,,18 hours 2 mins,"1,914 km" +Watertown(New York),Kansas City,,17 hours 29 mins,"1,913 km" +Newburgh(New York),Kansas City,,18 hours 8 mins,"1,968 km" +Syracuse(New York),Kansas City,,16 hours 32 mins,"1,811 km" +Plattsburgh(New York),Kansas City,,20 hours 21 mins,"2,173 km" +Ogdensburg(New York),Kansas City,,18 hours 27 mins,"2,005 km" +Ithaca(New York),Kansas City,,16 hours 38 mins,"1,803 km" +Elmira(New York),Kansas City,,16 hours 8 mins,"1,767 km" +White Plains(New York),Kansas City,,18 hours 18 mins,"1,992 km" +Albany(New York),Kansas City,,18 hours 32 mins,"2,035 km" +Binghamton(New York),Kansas City,,16 hours 57 mins,"1,854 km" +Rochester(New York),Kansas City,,15 hours 27 mins,"1,689 km" +Tampa,Evansville(Indiana),,12 hours 20 mins,"1,375 km" +Tampa,South Bend(Indiana),,16 hours 36 mins,"1,822 km" +Tampa,Fort Wayne(Indiana),,16 hours 7 mins,"1,761 km" +Tampa,Valparaiso(Indiana),,16 hours 40 mins,"1,834 km" +Tampa,Indianapolis(Indiana),,14 hours 19 mins,"1,593 km" +Evansville(Indiana),Tampa,,12 hours 21 mins,"1,371 km" +South Bend(Indiana),Tampa,,16 hours 39 mins,"1,820 km" +Fort Wayne(Indiana),Tampa,,16 hours 8 mins,"1,760 km" +Valparaiso(Indiana),Tampa,,16 hours 43 mins,"1,832 km" +Indianapolis(Indiana),Tampa,,14 hours 22 mins,"1,591 km" +New York,San Diego(California),,1 day 17 hours,"4,440 km" +New York,Redding(California),,1 day 18 hours,"4,632 km" +New York,Sacramento(California),,1 day 17 hours,"4,530 km" +New York,Fresno(California),,1 day 18 hours,"4,689 km" +New York,San Luis Obispo(California),,1 day 19 hours,"4,732 km" +New York,Oakland(California),,1 day 18 hours,"4,660 km" +New York,Santa Barbara(California),,1 day 18 hours,"4,631 km" +New York,Stockton(California),,1 day 18 hours,"4,606 km" +New York,Santa Rosa(California),,1 day 19 hours,"4,685 km" +New York,Bakersfield(California),,1 day 17 hours,"4,513 km" +New York,Santa Ana(California),,1 day 17 hours,"4,488 km" +New York,Santa Maria(California),,1 day 19 hours,"4,687 km" +New York,San Jose(California),,1 day 19 hours,"4,722 km" +New York,Burbank(California),,1 day 17 hours,"4,492 km" +New York,Arcata(California),,1 day 21 hours,"4,857 km" +New York,Butte(California),,1 day 18 hours,"4,569 km" +New York,Palm Springs(California),,1 day 16 hours,"4,302 km" +New York,Los Angeles(California),,1 day 17 hours,"4,489 km" +New York,Long Beach(California),,1 day 17 hours,"4,511 km" +New York,San Francisco(California),,1 day 19 hours,"4,669 km" +New York,Monterey(California),,1 day 20 hours,"4,830 km" +San Diego(California),New York,,1 day 17 hours,"4,441 km" +Redding(California),New York,,1 day 18 hours,"4,640 km" +Sacramento(California),New York,,1 day 17 hours,"4,538 km" +Fresno(California),New York,,1 day 19 hours,"4,692 km" +San Luis Obispo(California),New York,,1 day 19 hours,"4,735 km" +Oakland(California),New York,,1 day 18 hours,"4,667 km" +Santa Barbara(California),New York,,1 day 18 hours,"4,632 km" +Stockton(California),New York,,1 day 18 hours,"4,614 km" +Santa Rosa(California),New York,,1 day 19 hours,"4,693 km" +Bakersfield(California),New York,,1 day 17 hours,"4,515 km" +Santa Ana(California),New York,,1 day 17 hours,"4,486 km" +Santa Maria(California),New York,,1 day 19 hours,"4,691 km" +San Jose(California),New York,,1 day 19 hours,"4,729 km" +Burbank(California),New York,,1 day 17 hours,"4,495 km" +Arcata(California),New York,,1 day 21 hours,"4,864 km" +Butte(California),New York,,1 day 18 hours,"4,562 km" +Palm Springs(California),New York,,1 day 16 hours,"4,303 km" +Los Angeles(California),New York,,1 day 17 hours,"4,489 km" +Long Beach(California),New York,,1 day 17 hours,"4,516 km" +San Francisco(California),New York,,1 day 18 hours,"4,677 km" +Monterey(California),New York,,1 day 20 hours,"4,835 km" +Reno,Abilene(Texas),,22 hours 27 mins,"2,412 km" +Reno,Amarillo(Texas),,19 hours 10 mins,"2,092 km" +Reno,Harlingen(Texas),,1 day 5 hours,"3,174 km" +Reno,Lubbock(Texas),,20 hours 5 mins,"2,145 km" +Reno,College Station(Texas),,1 day 3 hours,"2,836 km" +Reno,Corpus Christi(Texas),,1 day 3 hours,"2,999 km" +Reno,Wichita Falls(Texas),,22 hours 27 mins,"2,446 km" +Reno,Waco(Texas),,1 day 1 hour,"2,712 km" +Reno,San Angelo(Texas),,22 hours 32 mins,"2,446 km" +Reno,Houston(Texas),,1 day 4 hours,"3,049 km" +Reno,San Antonio(Texas),,1 day 1 hour,"2,766 km" +Reno,Del Rio(Texas),,23 hours 55 mins,"2,562 km" +Reno,Mission(Texas),,1 day 5 hours,"3,162 km" +Reno,Beaumont(Texas),,1 day 5 hours,"3,124 km" +Reno,Longview(Texas),,1 day 2 hours,"2,873 km" +Reno,Midland(Texas),,21 hours 10 mins,"2,279 km" +Reno,El Paso(Texas),,17 hours 36 mins,"1,880 km" +Reno,Brownsville(Texas),,1 day 5 hours,"3,213 km" +Reno,Austin(Texas),,1 day 2 hours,"2,748 km" +Reno,Dallas(Texas),,1 day 0 hours,"2,673 km" +Reno,Killeen(Texas),,1 day 1 hour,"2,685 km" +Reno,Laredo(Texas),,1 day 3 hours,"2,852 km" +Reno,Texarkana(Texas),,1 day 3 hours,"2,882 km" +Abilene(Texas),Reno,,22 hours 27 mins,"2,411 km" +Amarillo(Texas),Reno,,19 hours 10 mins,"2,091 km" +Harlingen(Texas),Reno,,1 day 5 hours,"3,174 km" +Lubbock(Texas),Reno,,20 hours 3 mins,"2,145 km" +College Station(Texas),Reno,,1 day 3 hours,"2,838 km" +Corpus Christi(Texas),Reno,,1 day 3 hours,"2,999 km" +Wichita Falls(Texas),Reno,,22 hours 28 mins,"2,446 km" +Waco(Texas),Reno,,1 day 1 hour,"2,770 km" +San Angelo(Texas),Reno,,22 hours 29 mins,"2,444 km" +Houston(Texas),Reno,,1 day 4 hours,"3,049 km" +San Antonio(Texas),Reno,,1 day 1 hour,"2,766 km" +Del Rio(Texas),Reno,,23 hours 54 mins,"2,563 km" +Mission(Texas),Reno,,1 day 5 hours,"3,164 km" +Beaumont(Texas),Reno,,1 day 5 hours,"3,123 km" +Longview(Texas),Reno,,1 day 2 hours,"2,879 km" +Midland(Texas),Reno,,21 hours 8 mins,"2,278 km" +El Paso(Texas),Reno,,17 hours 35 mins,"1,880 km" +Brownsville(Texas),Reno,,1 day 5 hours,"3,215 km" +Austin(Texas),Reno,,1 day 2 hours,"2,775 km" +Dallas(Texas),Reno,,1 day 0 hours,"2,672 km" +Killeen(Texas),Reno,,1 day 1 hour,"2,684 km" +Laredo(Texas),Reno,,1 day 3 hours,"2,852 km" +Texarkana(Texas),Reno,,1 day 3 hours,"2,895 km" +Memphis,Tampa,,12 hours 4 mins,"1,349 km" +Tampa,Memphis,,12 hours 2 mins,"1,362 km" +Charlotte,Abilene(Texas),,17 hours 36 mins,"1,941 km" +Charlotte,Amarillo(Texas),,19 hours 45 mins,"2,161 km" +Charlotte,Harlingen(Texas),,20 hours 0 mins,"2,196 km" +Charlotte,Lubbock(Texas),,19 hours 59 mins,"2,206 km" +Charlotte,College Station(Texas),,16 hours 12 mins,"1,719 km" +Charlotte,Corpus Christi(Texas),,18 hours 15 mins,"2,001 km" +Charlotte,Wichita Falls(Texas),,17 hours 3 mins,"1,883 km" +Charlotte,Waco(Texas),,16 hours 4 mins,"1,727 km" +Charlotte,San Angelo(Texas),,18 hours 51 mins,"2,069 km" +Charlotte,Houston(Texas),,15 hours 8 mins,"1,668 km" +Charlotte,San Antonio(Texas),,18 hours 0 mins,"1,982 km" +Charlotte,Del Rio(Texas),,20 hours 23 mins,"2,229 km" +Charlotte,Mission(Texas),,20 hours 28 mins,"2,236 km" +Charlotte,Beaumont(Texas),,13 hours 55 mins,"1,535 km" +Charlotte,Longview(Texas),,13 hours 20 mins,"1,456 km" +Charlotte,Midland(Texas),,19 hours 44 mins,"2,181 km" +Charlotte,El Paso(Texas),,1 day 0 hours,"2,676 km" +Charlotte,Brownsville(Texas),,20 hours 22 mins,"2,235 km" +Charlotte,Austin(Texas),,17 hours 30 mins,"1,893 km" +Charlotte,Dallas(Texas),,15 hours 1 min,"1,652 km" +Charlotte,Killeen(Texas),,16 hours 52 mins,"1,823 km" +Charlotte,Laredo(Texas),,20 hours 7 mins,"2,174 km" +Charlotte,Texarkana(Texas),,13 hours 22 mins,"1,467 km" +Abilene(Texas),Charlotte,,17 hours 36 mins,"1,943 km" +Amarillo(Texas),Charlotte,,19 hours 44 mins,"2,163 km" +Harlingen(Texas),Charlotte,,19 hours 57 mins,"2,197 km" +Lubbock(Texas),Charlotte,,19 hours 56 mins,"2,208 km" +College Station(Texas),Charlotte,,16 hours 8 mins,"1,719 km" +Corpus Christi(Texas),Charlotte,,18 hours 19 mins,"2,008 km" +Wichita Falls(Texas),Charlotte,,17 hours 5 mins,"1,872 km" +Waco(Texas),Charlotte,,16 hours 2 mins,"1,728 km" +San Angelo(Texas),Charlotte,,18 hours 48 mins,"2,067 km" +Houston(Texas),Charlotte,,15 hours 7 mins,"1,669 km" +San Antonio(Texas),Charlotte,,18 hours 0 mins,"1,983 km" +Del Rio(Texas),Charlotte,,20 hours 26 mins,"2,230 km" +Mission(Texas),Charlotte,,20 hours 26 mins,"2,238 km" +Beaumont(Texas),Charlotte,,13 hours 55 mins,"1,536 km" +Longview(Texas),Charlotte,,13 hours 18 mins,"1,453 km" +Midland(Texas),Charlotte,,19 hours 42 mins,"2,182 km" +El Paso(Texas),Charlotte,,1 day 0 hours,"2,673 km" +Brownsville(Texas),Charlotte,,20 hours 21 mins,"2,237 km" +Austin(Texas),Charlotte,,17 hours 28 mins,"1,890 km" +Dallas(Texas),Charlotte,,15 hours 2 mins,"1,651 km" +Killeen(Texas),Charlotte,,16 hours 53 mins,"1,825 km" +Laredo(Texas),Charlotte,,20 hours 5 mins,"2,175 km" +Texarkana(Texas),Charlotte,,13 hours 23 mins,"1,471 km" +Eugene,San Diego(California),,14 hours 58 mins,"1,572 km" +Eugene,Redding(California),,4 hours 59 mins,508 km +Eugene,Sacramento(California),,7 hours 21 mins,763 km +Eugene,Fresno(California),,9 hours 57 mins,"1,036 km" +Eugene,San Luis Obispo(California),,11 hours 19 mins,"1,194 km" +Eugene,Oakland(California),,8 hours 4 mins,843 km +Eugene,Santa Barbara(California),,12 hours 52 mins,"1,345 km" +Eugene,Stockton(California),,8 hours 2 mins,839 km +Eugene,Santa Rosa(California),,8 hours 25 mins,815 km +Eugene,Bakersfield(California),,11 hours 33 mins,"1,208 km" +Eugene,Santa Ana(California),,13 hours 42 mins,"1,431 km" +Eugene,Santa Maria(California),,11 hours 49 mins,"1,244 km" +Eugene,San Jose(California),,8 hours 42 mins,905 km +Eugene,Burbank(California),,12 hours 52 mins,"1,364 km" +Eugene,Arcata(California),,5 hours 25 mins,481 km +Eugene,Butte(California),,6 hours 37 mins,660 km +Eugene,Palm Springs(California),,14 hours 37 mins,"1,550 km" +Eugene,Los Angeles(California),,13 hours 6 mins,"1,381 km" +Eugene,Long Beach(California),,13 hours 25 mins,"1,416 km" +Eugene,San Francisco(California),,8 hours 13 mins,852 km +Eugene,Monterey(California),,9 hours 43 mins,"1,012 km" +San Diego(California),Eugene,,15 hours 2 mins,"1,570 km" +Redding(California),Eugene,,4 hours 59 mins,507 km +Sacramento(California),Eugene,,7 hours 20 mins,761 km +Fresno(California),Eugene,,9 hours 56 mins,"1,038 km" +San Luis Obispo(California),Eugene,,11 hours 14 mins,"1,190 km" +Oakland(California),Eugene,,8 hours 3 mins,840 km +Santa Barbara(California),Eugene,,12 hours 47 mins,"1,343 km" +Stockton(California),Eugene,,8 hours 2 mins,838 km +Santa Rosa(California),Eugene,,8 hours 24 mins,813 km +Bakersfield(California),Eugene,,11 hours 31 mins,"1,211 km" +Santa Ana(California),Eugene,,13 hours 45 mins,"1,429 km" +Santa Maria(California),Eugene,,11 hours 44 mins,"1,242 km" +San Jose(California),Eugene,,8 hours 38 mins,902 km +Burbank(California),Eugene,,12 hours 54 mins,"1,361 km" +Arcata(California),Eugene,,5 hours 21 mins,477 km +Butte(California),Eugene,,6 hours 35 mins,652 km +Palm Springs(California),Eugene,,14 hours 41 mins,"1,547 km" +Los Angeles(California),Eugene,,13 hours 7 mins,"1,377 km" +Long Beach(California),Eugene,,13 hours 30 mins,"1,415 km" +San Francisco(California),Eugene,,8 hours 10 mins,850 km +Monterey(California),Eugene,,9 hours 39 mins,"1,009 km" +Houston,Wichita,,8 hours 42 mins,969 km +Wichita,Houston,,8 hours 42 mins,969 km +Indianapolis,Greensboro(North Carolina),,8 hours 33 mins,887 km +Indianapolis,Wilmington(North Carolina),,11 hours 27 mins,"1,214 km" +Indianapolis,New Bern(North Carolina),,11 hours 26 mins,"1,192 km" +Indianapolis,Charlotte(North Carolina),,8 hours 51 mins,923 km +Indianapolis,Raleigh(North Carolina),,9 hours 43 mins,"1,007 km" +Indianapolis,Asheville(North Carolina),,7 hours 7 mins,758 km +Indianapolis,Fayetteville(North Carolina),,10 hours 3 mins,"1,032 km" +Greensboro(North Carolina),Indianapolis,,8 hours 35 mins,887 km +Wilmington(North Carolina),Indianapolis,,11 hours 28 mins,"1,214 km" +New Bern(North Carolina),Indianapolis,,11 hours 27 mins,"1,192 km" +Charlotte(North Carolina),Indianapolis,,8 hours 54 mins,925 km +Raleigh(North Carolina),Indianapolis,,9 hours 42 mins,"1,007 km" +Asheville(North Carolina),Indianapolis,,7 hours 6 mins,757 km +Fayetteville(North Carolina),Indianapolis,,10 hours 6 mins,"1,033 km" +Grand Junction,Flagstaff(Arizona),,7 hours 6 mins,702 km +Grand Junction,Yuma(Arizona),,11 hours 40 mins,"1,205 km" +Grand Junction,Phoenix(Arizona),,9 hours 11 mins,934 km +Grand Junction,Prescott(Arizona),,8 hours 38 mins,854 km +Grand Junction,Tucson(Arizona),,10 hours 44 mins,"1,112 km" +Flagstaff(Arizona),Grand Junction,,6 hours 59 mins,701 km +Yuma(Arizona),Grand Junction,,11 hours 36 mins,"1,213 km" +Phoenix(Arizona),Grand Junction,,9 hours 3 mins,933 km +Prescott(Arizona),Grand Junction,,8 hours 30 mins,854 km +Tucson(Arizona),Grand Junction,,10 hours 36 mins,"1,113 km" +Syracuse,State College(Pennsylvania),,4 hours 5 mins,379 km +Syracuse,Johnstown(Pennsylvania),,5 hours 18 mins,505 km +Syracuse,Harrisburg(Pennsylvania),,3 hours 54 mins,407 km +Syracuse,Erie(Pennsylvania),,3 hours 39 mins,381 km +Syracuse,Pittsburgh(Pennsylvania),,5 hours 19 mins,579 km +Syracuse,Latrobe(Pennsylvania),,5 hours 44 mins,551 km +Syracuse,Philadelphia(Pennsylvania),,3 hours 58 mins,408 km +Syracuse,Lewisburg(Pennsylvania),,3 hours 25 mins,350 km +Syracuse,Scranton(Pennsylvania),,2 hours 3 mins,209 km +State College(Pennsylvania),Syracuse,,4 hours 7 mins,386 km +Johnstown(Pennsylvania),Syracuse,,5 hours 20 mins,512 km +Harrisburg(Pennsylvania),Syracuse,,3 hours 56 mins,406 km +Erie(Pennsylvania),Syracuse,,3 hours 40 mins,382 km +Pittsburgh(Pennsylvania),Syracuse,,5 hours 17 mins,578 km +Latrobe(Pennsylvania),Syracuse,,5 hours 48 mins,555 km +Philadelphia(Pennsylvania),Syracuse,,4 hours 0 mins,408 km +Lewisburg(Pennsylvania),Syracuse,,3 hours 25 mins,349 km +Scranton(Pennsylvania),Syracuse,,2 hours 3 mins,210 km +Bangor,Washington,,10 hours 27 mins,"1,074 km" +Washington,Bangor,,10 hours 25 mins,"1,069 km" +Key West,Augusta(Georgia),,12 hours 3 mins,"1,221 km" +Key West,Decatur(Georgia),,12 hours 38 mins,"1,328 km" +Key West,Atlanta(Georgia),,12 hours 27 mins,"1,320 km" +Key West,Valdosta(Georgia),,9 hours 20 mins,958 km +Key West,Savannah(Georgia),,10 hours 2 mins,"1,032 km" +Augusta(Georgia),Key West,,12 hours 4 mins,"1,222 km" +Decatur(Georgia),Key West,,12 hours 39 mins,"1,321 km" +Atlanta(Georgia),Key West,,12 hours 27 mins,"1,320 km" +Valdosta(Georgia),Key West,,9 hours 20 mins,958 km +Savannah(Georgia),Key West,,10 hours 3 mins,"1,035 km" +Daytona Beach,Atlanta,,6 hours 18 mins,696 km +Atlanta,Daytona Beach,,6 hours 20 mins,706 km +Lihue,San Francisco,,, +San Francisco,Lihue,,, +Cincinnati,Abilene(Texas),,16 hours 21 mins,"1,793 km" +Cincinnati,Amarillo(Texas),,16 hours 6 mins,"1,781 km" +Cincinnati,Harlingen(Texas),,20 hours 41 mins,"2,216 km" +Cincinnati,Lubbock(Texas),,17 hours 29 mins,"1,920 km" +Cincinnati,College Station(Texas),,15 hours 49 mins,"1,661 km" +Cincinnati,Corpus Christi(Texas),,18 hours 56 mins,"2,022 km" +Cincinnati,Wichita Falls(Texas),,14 hours 22 mins,"1,585 km" +Cincinnati,Waco(Texas),,15 hours 7 mins,"1,659 km" +Cincinnati,San Angelo(Texas),,17 hours 35 mins,"1,917 km" +Cincinnati,Houston(Texas),,15 hours 49 mins,"1,688 km" +Cincinnati,San Antonio(Texas),,17 hours 43 mins,"1,944 km" +Cincinnati,Del Rio(Texas),,20 hours 0 mins,"2,170 km" +Cincinnati,Mission(Texas),,21 hours 12 mins,"2,329 km" +Cincinnati,Beaumont(Texas),,15 hours 9 mins,"1,682 km" +Cincinnati,Longview(Texas),,12 hours 41 mins,"1,364 km" +Cincinnati,Midland(Texas),,18 hours 29 mins,"2,034 km" +Cincinnati,El Paso(Texas),,22 hours 41 mins,"2,479 km" +Cincinnati,Brownsville(Texas),,21 hours 3 mins,"2,256 km" +Cincinnati,Austin(Texas),,16 hours 31 mins,"1,817 km" +Cincinnati,Dallas(Texas),,13 hours 43 mins,"1,503 km" +Cincinnati,Killeen(Texas),,15 hours 55 mins,"1,752 km" +Cincinnati,Laredo(Texas),,19 hours 59 mins,"2,195 km" +Cincinnati,Texarkana(Texas),,11 hours 14 mins,"1,223 km" +Abilene(Texas),Cincinnati,,16 hours 17 mins,"1,791 km" +Amarillo(Texas),Cincinnati,,16 hours 5 mins,"1,779 km" +Harlingen(Texas),Cincinnati,,20 hours 36 mins,"2,214 km" +Lubbock(Texas),Cincinnati,,17 hours 25 mins,"1,918 km" +College Station(Texas),Cincinnati,,15 hours 44 mins,"1,655 km" +Corpus Christi(Texas),Cincinnati,,18 hours 58 mins,"2,025 km" +Wichita Falls(Texas),Cincinnati,,14 hours 19 mins,"1,584 km" +Waco(Texas),Cincinnati,,15 hours 2 mins,"1,653 km" +San Angelo(Texas),Cincinnati,,17 hours 29 mins,"1,915 km" +Houston(Texas),Cincinnati,,15 hours 46 mins,"1,686 km" +San Antonio(Texas),Cincinnati,,17 hours 37 mins,"1,940 km" +Del Rio(Texas),Cincinnati,,19 hours 52 mins,"2,169 km" +Mission(Texas),Cincinnati,,21 hours 4 mins,"2,326 km" +Beaumont(Texas),Cincinnati,,15 hours 8 mins,"1,680 km" +Longview(Texas),Cincinnati,,12 hours 39 mins,"1,361 km" +Midland(Texas),Cincinnati,,18 hours 23 mins,"2,031 km" +El Paso(Texas),Cincinnati,,22 hours 37 mins,"2,475 km" +Brownsville(Texas),Cincinnati,,21 hours 0 mins,"2,254 km" +Austin(Texas),Cincinnati,,16 hours 27 mins,"1,814 km" +Dallas(Texas),Cincinnati,,13 hours 40 mins,"1,501 km" +Killeen(Texas),Cincinnati,,15 hours 51 mins,"1,749 km" +Laredo(Texas),Cincinnati,,19 hours 55 mins,"2,192 km" +Texarkana(Texas),Cincinnati,,11 hours 11 mins,"1,220 km" +Pensacola,Buffalo(New York),,16 hours 50 mins,"1,850 km" +Pensacola,Manhattan(New York),,18 hours 2 mins,"1,918 km" +Pensacola,Niagara Falls(New York),,17 hours 11 mins,"1,881 km" +Pensacola,Islip(New York),,18 hours 43 mins,"1,989 km" +Pensacola,New York(New York),,17 hours 53 mins,"1,912 km" +Pensacola,Watertown(New York),,19 hours 50 mins,"2,179 km" +Pensacola,Newburgh(New York),,18 hours 32 mins,"2,015 km" +Pensacola,Syracuse(New York),,18 hours 53 mins,"2,076 km" +Pensacola,Plattsburgh(New York),,21 hours 58 mins,"2,403 km" +Pensacola,Ogdensburg(New York),,20 hours 49 mins,"2,272 km" +Pensacola,Ithaca(New York),,18 hours 45 mins,"2,015 km" +Pensacola,Elmira(New York),,18 hours 7 mins,"1,942 km" +Pensacola,White Plains(New York),,18 hours 20 mins,"1,962 km" +Pensacola,Albany(New York),,19 hours 38 mins,"2,145 km" +Pensacola,Binghamton(New York),,18 hours 4 mins,"1,967 km" +Pensacola,Rochester(New York),,17 hours 48 mins,"1,955 km" +Buffalo(New York),Pensacola,,16 hours 56 mins,"1,853 km" +Manhattan(New York),Pensacola,,18 hours 7 mins,"1,928 km" +Niagara Falls(New York),Pensacola,,17 hours 18 mins,"1,883 km" +Islip(New York),Pensacola,,18 hours 48 mins,"1,996 km" +New York(New York),Pensacola,,17 hours 58 mins,"1,922 km" +Watertown(New York),Pensacola,,19 hours 56 mins,"2,181 km" +Newburgh(New York),Pensacola,,18 hours 37 mins,"2,015 km" +Syracuse(New York),Pensacola,,19 hours 0 mins,"2,079 km" +Plattsburgh(New York),Pensacola,,22 hours 2 mins,"2,403 km" +Ogdensburg(New York),Pensacola,,20 hours 55 mins,"2,274 km" +Ithaca(New York),Pensacola,,18 hours 49 mins,"2,015 km" +Elmira(New York),Pensacola,,18 hours 12 mins,"1,944 km" +White Plains(New York),Pensacola,,18 hours 25 mins,"1,971 km" +Albany(New York),Pensacola,,19 hours 44 mins,"2,145 km" +Binghamton(New York),Pensacola,,18 hours 7 mins,"1,967 km" +Rochester(New York),Pensacola,,17 hours 54 mins,"1,958 km" +Peoria,Abilene(Texas),,13 hours 49 mins,"1,536 km" +Peoria,Amarillo(Texas),,13 hours 20 mins,"1,489 km" +Peoria,Harlingen(Texas),,19 hours 18 mins,"2,048 km" +Peoria,Lubbock(Texas),,14 hours 43 mins,"1,627 km" +Peoria,College Station(Texas),,14 hours 26 mins,"1,493 km" +Peoria,Corpus Christi(Texas),,17 hours 32 mins,"1,853 km" +Peoria,Wichita Falls(Texas),,11 hours 35 mins,"1,292 km" +Peoria,Waco(Texas),,13 hours 31 mins,"1,438 km" +Peoria,San Angelo(Texas),,15 hours 5 mins,"1,671 km" +Peoria,Houston(Texas),,14 hours 25 mins,"1,520 km" +Peoria,San Antonio(Texas),,16 hours 7 mins,"1,723 km" +Peoria,Del Rio(Texas),,17 hours 30 mins,"1,924 km" +Peoria,Mission(Texas),,19 hours 36 mins,"2,108 km" +Peoria,Beaumont(Texas),,14 hours 7 mins,"1,474 km" +Peoria,Longview(Texas),,11 hours 17 mins,"1,195 km" +Peoria,Midland(Texas),,15 hours 41 mins,"1,738 km" +Peoria,El Paso(Texas),,19 hours 55 mins,"2,186 km" +Peoria,Brownsville(Texas),,19 hours 39 mins,"2,087 km" +Peoria,Austin(Texas),,14 hours 56 mins,"1,596 km" +Peoria,Dallas(Texas),,12 hours 7 mins,"1,283 km" +Peoria,Killeen(Texas),,14 hours 20 mins,"1,531 km" +Peoria,Laredo(Texas),,18 hours 24 mins,"1,974 km" +Peoria,Texarkana(Texas),,9 hours 51 mins,"1,055 km" +Abilene(Texas),Peoria,,13 hours 49 mins,"1,537 km" +Amarillo(Texas),Peoria,,13 hours 19 mins,"1,487 km" +Harlingen(Texas),Peoria,,19 hours 16 mins,"2,050 km" +Lubbock(Texas),Peoria,,14 hours 39 mins,"1,627 km" +College Station(Texas),Peoria,,14 hours 24 mins,"1,492 km" +Corpus Christi(Texas),Peoria,,17 hours 38 mins,"1,861 km" +Wichita Falls(Texas),Peoria,,11 hours 34 mins,"1,292 km" +Waco(Texas),Peoria,,13 hours 30 mins,"1,436 km" +San Angelo(Texas),Peoria,,15 hours 4 mins,"1,670 km" +Houston(Texas),Peoria,,14 hours 26 mins,"1,523 km" +San Antonio(Texas),Peoria,,16 hours 6 mins,"1,723 km" +Del Rio(Texas),Peoria,,17 hours 27 mins,"1,924 km" +Mission(Texas),Peoria,,19 hours 33 mins,"2,109 km" +Beaumont(Texas),Peoria,,14 hours 7 mins,"1,477 km" +Longview(Texas),Peoria,,11 hours 19 mins,"1,197 km" +Midland(Texas),Peoria,,15 hours 39 mins,"1,739 km" +El Paso(Texas),Peoria,,19 hours 52 mins,"2,184 km" +Brownsville(Texas),Peoria,,19 hours 40 mins,"2,090 km" +Austin(Texas),Peoria,,14 hours 55 mins,"1,597 km" +Dallas(Texas),Peoria,,12 hours 8 mins,"1,285 km" +Killeen(Texas),Peoria,,14 hours 19 mins,"1,532 km" +Laredo(Texas),Peoria,,18 hours 23 mins,"1,974 km" +Texarkana(Texas),Peoria,,9 hours 51 mins,"1,056 km" +Monterey,Alamosa(Colorado),,18 hours 33 mins,"1,868 km" +Monterey,Grand Junction(Colorado),,15 hours 7 mins,"1,628 km" +Monterey,Durango(Colorado),,15 hours 47 mins,"1,629 km" +Monterey,Colorado Springs(Colorado),,19 hours 39 mins,"2,123 km" +Monterey,Gunnison(Colorado),,17 hours 28 mins,"1,825 km" +Monterey,Denver(Colorado),,18 hours 45 mins,"2,016 km" +Alamosa(Colorado),Monterey,,18 hours 29 mins,"1,865 km" +Grand Junction(Colorado),Monterey,,15 hours 6 mins,"1,626 km" +Durango(Colorado),Monterey,,15 hours 42 mins,"1,627 km" +Colorado Springs(Colorado),Monterey,,19 hours 38 mins,"2,123 km" +Gunnison(Colorado),Monterey,,17 hours 21 mins,"1,824 km" +Denver(Colorado),Monterey,,18 hours 45 mins,"2,015 km" +San Jose,Hilo(Hawaii),,, +San Jose,Kahului(Hawaii),,, +San Jose,Kona(Hawaii),,, +San Jose,Lihue(Hawaii),,, +San Jose,Honolulu(Hawaii),,, +Hilo(Hawaii),San Jose,,, +Kahului(Hawaii),San Jose,,, +Kona(Hawaii),San Jose,,, +Lihue(Hawaii),San Jose,,, +Honolulu(Hawaii),San Jose,,, +Binghamton,Pellston(Michigan),,10 hours 24 mins,"1,136 km" +Binghamton,Traverse City(Michigan),,10 hours 24 mins,"1,095 km" +Binghamton,Alpena(Michigan),,10 hours 23 mins,"1,084 km" +Binghamton,Iron Mountain(Michigan),,13 hours 50 mins,"1,466 km" +Binghamton,Kalamazoo(Michigan),,9 hours 19 mins,996 km +Binghamton,Saginaw(Michigan),,8 hours 4 mins,849 km +Binghamton,Grand Rapids(Michigan),,9 hours 6 mins,972 km +Binghamton,Lansing(Michigan),,8 hours 48 mins,954 km +Binghamton,Muskegon(Michigan),,9 hours 39 mins,"1,035 km" +Binghamton,Hancock(Michigan),,15 hours 1 min,"1,576 km" +Binghamton,Detroit(Michigan),,7 hours 56 mins,851 km +Binghamton,Escanaba(Michigan),,12 hours 54 mins,"1,384 km" +Pellston(Michigan),Binghamton,,10 hours 21 mins,"1,137 km" +Traverse City(Michigan),Binghamton,,10 hours 22 mins,"1,096 km" +Alpena(Michigan),Binghamton,,10 hours 18 mins,"1,083 km" +Iron Mountain(Michigan),Binghamton,,13 hours 46 mins,"1,467 km" +Kalamazoo(Michigan),Binghamton,,9 hours 17 mins,995 km +Saginaw(Michigan),Binghamton,,8 hours 0 mins,849 km +Grand Rapids(Michigan),Binghamton,,9 hours 1 min,972 km +Lansing(Michigan),Binghamton,,8 hours 48 mins,955 km +Muskegon(Michigan),Binghamton,,9 hours 35 mins,"1,036 km" +Hancock(Michigan),Binghamton,,14 hours 57 mins,"1,577 km" +Detroit(Michigan),Binghamton,,7 hours 55 mins,852 km +Escanaba(Michigan),Binghamton,,12 hours 50 mins,"1,385 km" +Lexington,Abilene(Texas),,15 hours 32 mins,"1,698 km" +Lexington,Amarillo(Texas),,15 hours 56 mins,"1,760 km" +Lexington,Harlingen(Texas),,19 hours 53 mins,"2,121 km" +Lexington,Lubbock(Texas),,17 hours 19 mins,"1,899 km" +Lexington,College Station(Texas),,15 hours 1 min,"1,566 km" +Lexington,Corpus Christi(Texas),,18 hours 7 mins,"1,926 km" +Lexington,Wichita Falls(Texas),,14 hours 11 mins,"1,564 km" +Lexington,Waco(Texas),,14 hours 18 mins,"1,563 km" +Lexington,San Angelo(Texas),,16 hours 46 mins,"1,822 km" +Lexington,Houston(Texas),,15 hours 1 min,"1,593 km" +Lexington,San Antonio(Texas),,16 hours 54 mins,"1,849 km" +Lexington,Del Rio(Texas),,19 hours 11 mins,"2,075 km" +Lexington,Mission(Texas),,20 hours 23 mins,"2,234 km" +Lexington,Beaumont(Texas),,14 hours 20 mins,"1,586 km" +Lexington,Longview(Texas),,11 hours 52 mins,"1,269 km" +Lexington,Midland(Texas),,17 hours 40 mins,"1,938 km" +Lexington,El Paso(Texas),,21 hours 59 mins,"2,429 km" +Lexington,Brownsville(Texas),,20 hours 14 mins,"2,160 km" +Lexington,Austin(Texas),,15 hours 43 mins,"1,722 km" +Lexington,Dallas(Texas),,12 hours 55 mins,"1,408 km" +Lexington,Killeen(Texas),,15 hours 7 mins,"1,657 km" +Lexington,Laredo(Texas),,19 hours 11 mins,"2,099 km" +Lexington,Texarkana(Texas),,10 hours 26 mins,"1,128 km" +Abilene(Texas),Lexington,,15 hours 28 mins,"1,697 km" +Amarillo(Texas),Lexington,,15 hours 56 mins,"1,759 km" +Harlingen(Texas),Lexington,,19 hours 47 mins,"2,120 km" +Lubbock(Texas),Lexington,,17 hours 15 mins,"1,898 km" +College Station(Texas),Lexington,,14 hours 55 mins,"1,561 km" +Corpus Christi(Texas),Lexington,,18 hours 9 mins,"1,931 km" +Wichita Falls(Texas),Lexington,,14 hours 10 mins,"1,564 km" +Waco(Texas),Lexington,,14 hours 13 mins,"1,559 km" +San Angelo(Texas),Lexington,,16 hours 40 mins,"1,822 km" +Houston(Texas),Lexington,,14 hours 57 mins,"1,592 km" +San Antonio(Texas),Lexington,,16 hours 48 mins,"1,846 km" +Del Rio(Texas),Lexington,,19 hours 3 mins,"2,075 km" +Mission(Texas),Lexington,,20 hours 15 mins,"2,232 km" +Beaumont(Texas),Lexington,,14 hours 18 mins,"1,586 km" +Longview(Texas),Lexington,,11 hours 50 mins,"1,267 km" +Midland(Texas),Lexington,,17 hours 34 mins,"1,937 km" +El Paso(Texas),Lexington,,21 hours 52 mins,"2,427 km" +Brownsville(Texas),Lexington,,20 hours 11 mins,"2,160 km" +Austin(Texas),Lexington,,15 hours 38 mins,"1,721 km" +Dallas(Texas),Lexington,,12 hours 51 mins,"1,407 km" +Killeen(Texas),Lexington,,15 hours 2 mins,"1,655 km" +Laredo(Texas),Lexington,,19 hours 6 mins,"2,098 km" +Texarkana(Texas),Lexington,,10 hours 22 mins,"1,126 km" +Jacksonville,Greensboro(North Carolina),,6 hours 42 mins,734 km +Jacksonville,Wilmington(North Carolina),,6 hours 18 mins,702 km +Jacksonville,New Bern(North Carolina),,7 hours 33 mins,836 km +Jacksonville,Charlotte(North Carolina),,5 hours 32 mins,617 km +Jacksonville,Raleigh(North Carolina),,6 hours 29 mins,729 km +Jacksonville,Asheville(North Carolina),,6 hours 27 mins,712 km +Jacksonville,Fayetteville(North Carolina),,5 hours 35 mins,633 km +Greensboro(North Carolina),Jacksonville,,6 hours 43 mins,721 km +Wilmington(North Carolina),Jacksonville,,6 hours 18 mins,703 km +New Bern(North Carolina),Jacksonville,,7 hours 34 mins,836 km +Charlotte(North Carolina),Jacksonville,,5 hours 31 mins,617 km +Raleigh(North Carolina),Jacksonville,,6 hours 31 mins,731 km +Asheville(North Carolina),Jacksonville,,6 hours 25 mins,712 km +Fayetteville(North Carolina),Jacksonville,,5 hours 35 mins,633 km +Honolulu,Los Angeles,,, +Los Angeles,Honolulu,,, +Cleveland,Abilene(Texas),,19 hours 36 mins,"2,162 km" +Cleveland,Amarillo(Texas),,19 hours 7 mins,"2,115 km" +Cleveland,Harlingen(Texas),,1 day 0 hours,"2,616 km" +Cleveland,Lubbock(Texas),,20 hours 30 mins,"2,253 km" +Cleveland,College Station(Texas),,19 hours 27 mins,"2,061 km" +Cleveland,Corpus Christi(Texas),,22 hours 34 mins,"2,421 km" +Cleveland,Wichita Falls(Texas),,17 hours 22 mins,"1,918 km" +Cleveland,Waco(Texas),,18 hours 45 mins,"2,059 km" +Cleveland,San Angelo(Texas),,20 hours 52 mins,"2,297 km" +Cleveland,Houston(Texas),,19 hours 27 mins,"2,088 km" +Cleveland,San Antonio(Texas),,21 hours 21 mins,"2,344 km" +Cleveland,Del Rio(Texas),,23 hours 17 mins,"2,550 km" +Cleveland,Mission(Texas),,1 day 1 hour,"2,729 km" +Cleveland,Beaumont(Texas),,18 hours 47 mins,"2,081 km" +Cleveland,Longview(Texas),,16 hours 19 mins,"1,764 km" +Cleveland,Midland(Texas),,21 hours 28 mins,"2,364 km" +Cleveland,El Paso(Texas),,1 day 2 hours,"2,812 km" +Cleveland,Brownsville(Texas),,1 day 1 hour,"2,655 km" +Cleveland,Austin(Texas),,20 hours 9 mins,"2,217 km" +Cleveland,Dallas(Texas),,17 hours 22 mins,"1,903 km" +Cleveland,Killeen(Texas),,19 hours 33 mins,"2,152 km" +Cleveland,Laredo(Texas),,23 hours 37 mins,"2,594 km" +Cleveland,Texarkana(Texas),,14 hours 53 mins,"1,623 km" +Abilene(Texas),Cleveland,,19 hours 39 mins,"2,165 km" +Amarillo(Texas),Cleveland,,19 hours 9 mins,"2,116 km" +Harlingen(Texas),Cleveland,,1 day 0 hours,"2,615 km" +Lubbock(Texas),Cleveland,,20 hours 29 mins,"2,255 km" +College Station(Texas),Cleveland,,19 hours 22 mins,"2,056 km" +Corpus Christi(Texas),Cleveland,,22 hours 37 mins,"2,425 km" +Wichita Falls(Texas),Cleveland,,17 hours 23 mins,"1,921 km" +Waco(Texas),Cleveland,,18 hours 41 mins,"2,053 km" +San Angelo(Texas),Cleveland,,20 hours 53 mins,"2,299 km" +Houston(Texas),Cleveland,,19 hours 25 mins,"2,087 km" +San Antonio(Texas),Cleveland,,21 hours 16 mins,"2,341 km" +Del Rio(Texas),Cleveland,,23 hours 16 mins,"2,552 km" +Mission(Texas),Cleveland,,1 day 1 hour,"2,727 km" +Beaumont(Texas),Cleveland,,18 hours 46 mins,"2,081 km" +Longview(Texas),Cleveland,,16 hours 17 mins,"1,762 km" +Midland(Texas),Cleveland,,21 hours 29 mins,"2,368 km" +El Paso(Texas),Cleveland,,1 day 2 hours,"2,812 km" +Brownsville(Texas),Cleveland,,1 day 1 hour,"2,655 km" +Austin(Texas),Cleveland,,20 hours 5 mins,"2,215 km" +Dallas(Texas),Cleveland,,17 hours 19 mins,"1,901 km" +Killeen(Texas),Cleveland,,19 hours 30 mins,"2,150 km" +Laredo(Texas),Cleveland,,23 hours 34 mins,"2,592 km" +Texarkana(Texas),Cleveland,,14 hours 50 mins,"1,620 km" +Belleville,Flagstaff(Arizona),,19 hours 52 mins,"2,219 km" +Belleville,Yuma(Arizona),,1 day 0 hours,"2,667 km" +Belleville,Phoenix(Arizona),,21 hours 39 mins,"2,373 km" +Belleville,Prescott(Arizona),,21 hours 24 mins,"2,369 km" +Belleville,Tucson(Arizona),,21 hours 34 mins,"2,367 km" +Flagstaff(Arizona),Belleville,,19 hours 45 mins,"2,216 km" +Yuma(Arizona),Belleville,,1 day 0 hours,"2,664 km" +Phoenix(Arizona),Belleville,,21 hours 35 mins,"2,372 km" +Prescott(Arizona),Belleville,,21 hours 16 mins,"2,368 km" +Tucson(Arizona),Belleville,,21 hours 34 mins,"2,355 km" +Houston,Nashville(Tennessee),,11 hours 50 mins,"1,253 km" +Houston,Bristol(Tennessee),,15 hours 2 mins,"1,664 km" +Houston,Knoxville(Tennessee),,13 hours 22 mins,"1,485 km" +Houston,Chattanooga(Tennessee),,11 hours 46 mins,"1,309 km" +Houston,Memphis(Tennessee),,8 hours 42 mins,913 km +Nashville(Tennessee),Houston,,11 hours 51 mins,"1,254 km" +Bristol(Tennessee),Houston,,15 hours 2 mins,"1,664 km" +Knoxville(Tennessee),Houston,,13 hours 22 mins,"1,485 km" +Chattanooga(Tennessee),Houston,,11 hours 47 mins,"1,309 km" +Memphis(Tennessee),Houston,,8 hours 44 mins,913 km +Newburgh,Tampa,,17 hours 42 mins,"1,917 km" +Tampa,Newburgh,,17 hours 36 mins,"1,909 km" +New York,Austin,,1 day 2 hours,"2,804 km" +Austin,New York,,1 day 2 hours,"2,805 km" +Kansas City,Moline(Illinois),,5 hours 19 mins,587 km +Kansas City,Belleville(Illinois),,4 hours 1 min,425 km +Kansas City,Bloomington(Illinois),,5 hours 37 mins,603 km +Kansas City,Champaign(Illinois),,5 hours 51 mins,633 km +Kansas City,Chicago(Illinois),,7 hours 37 mins,820 km +Kansas City,Rockford(Illinois),,7 hours 5 mins,775 km +Kansas City,Peoria(Illinois),,5 hours 38 mins,614 km +Moline(Illinois),Kansas City,,5 hours 20 mins,587 km +Belleville(Illinois),Kansas City,,4 hours 1 min,424 km +Bloomington(Illinois),Kansas City,,5 hours 38 mins,604 km +Champaign(Illinois),Kansas City,,5 hours 52 mins,635 km +Chicago(Illinois),Kansas City,,7 hours 36 mins,821 km +Rockford(Illinois),Kansas City,,7 hours 3 mins,771 km +Peoria(Illinois),Kansas City,,5 hours 41 mins,564 km +Kansas City,San Diego(California),,23 hours 42 mins,"2,505 km" +Kansas City,Redding(California),,1 day 2 hours,"2,872 km" +Kansas City,Sacramento(California),,1 day 1 hour,"2,769 km" +Kansas City,Fresno(California),,1 day 1 hour,"2,805 km" +Kansas City,San Luis Obispo(California),,1 day 2 hours,"2,848 km" +Kansas City,Oakland(California),,1 day 2 hours,"2,899 km" +Kansas City,Santa Barbara(California),,1 day 1 hour,"2,747 km" +Kansas City,Stockton(California),,1 day 2 hours,"2,845 km" +Kansas City,Santa Rosa(California),,1 day 2 hours,"2,924 km" +Kansas City,Bakersfield(California),,23 hours 34 mins,"2,628 km" +Kansas City,Santa Ana(California),,23 hours 23 mins,"2,604 km" +Kansas City,Santa Maria(California),,1 day 2 hours,"2,803 km" +Kansas City,San Jose(California),,1 day 3 hours,"2,962 km" +Kansas City,Burbank(California),,23 hours 21 mins,"2,607 km" +Kansas City,Arcata(California),,1 day 5 hours,"3,096 km" +Kansas City,Butte(California),,1 day 2 hours,"2,808 km" +Kansas City,Palm Springs(California),,22 hours 31 mins,"2,367 km" +Kansas City,Los Angeles(California),,23 hours 22 mins,"2,604 km" +Kansas City,Long Beach(California),,23 hours 35 mins,"2,626 km" +Kansas City,San Francisco(California),,1 day 2 hours,"2,909 km" +Kansas City,Monterey(California),,1 day 3 hours,"2,982 km" +San Diego(California),Kansas City,,23 hours 40 mins,"2,504 km" +Redding(California),Kansas City,,1 day 2 hours,"2,876 km" +Sacramento(California),Kansas City,,1 day 1 hour,"2,774 km" +Fresno(California),Kansas City,,1 day 1 hour,"2,804 km" +San Luis Obispo(California),Kansas City,,1 day 2 hours,"2,849 km" +Oakland(California),Kansas City,,1 day 2 hours,"2,903 km" +Santa Barbara(California),Kansas City,,1 day 1 hour,"2,746 km" +Stockton(California),Kansas City,,1 day 2 hours,"2,850 km" +Santa Rosa(California),Kansas City,,1 day 2 hours,"2,929 km" +Bakersfield(California),Kansas City,,23 hours 30 mins,"2,629 km" +Santa Ana(California),Kansas City,,23 hours 13 mins,"2,600 km" +Santa Maria(California),Kansas City,,1 day 1 hour,"2,805 km" +San Jose(California),Kansas City,,1 day 3 hours,"2,964 km" +Burbank(California),Kansas City,,23 hours 13 mins,"2,607 km" +Arcata(California),Kansas City,,1 day 5 hours,"3,100 km" +Butte(California),Kansas City,,1 day 1 hour,"2,812 km" +Palm Springs(California),Kansas City,,22 hours 27 mins,"2,366 km" +Los Angeles(California),Kansas City,,23 hours 12 mins,"2,603 km" +Long Beach(California),Kansas City,,23 hours 30 mins,"2,630 km" +San Francisco(California),Kansas City,,1 day 2 hours,"2,913 km" +Monterey(California),Kansas City,,1 day 3 hours,"2,984 km" +Dallas,State College(Pennsylvania),,20 hours 15 mins,"2,186 km" +Dallas,Johnstown(Pennsylvania),,19 hours 11 mins,"2,074 km" +Dallas,Harrisburg(Pennsylvania),,20 hours 12 mins,"2,224 km" +Dallas,Erie(Pennsylvania),,18 hours 43 mins,"2,057 km" +Dallas,Pittsburgh(Pennsylvania),,17 hours 59 mins,"1,964 km" +Dallas,Latrobe(Pennsylvania),,18 hours 37 mins,"2,011 km" +Dallas,Philadelphia(Pennsylvania),,21 hours 34 mins,"2,361 km" +Dallas,Lewisburg(Pennsylvania),,21 hours 2 mins,"2,310 km" +Dallas,Scranton(Pennsylvania),,21 hours 59 mins,"2,412 km" +State College(Pennsylvania),Dallas,,20 hours 20 mins,"2,195 km" +Johnstown(Pennsylvania),Dallas,,19 hours 16 mins,"2,075 km" +Harrisburg(Pennsylvania),Dallas,,20 hours 16 mins,"2,225 km" +Erie(Pennsylvania),Dallas,,18 hours 48 mins,"2,059 km" +Pittsburgh(Pennsylvania),Dallas,,18 hours 4 mins,"1,968 km" +Latrobe(Pennsylvania),Dallas,,18 hours 39 mins,"2,014 km" +Philadelphia(Pennsylvania),Dallas,,21 hours 38 mins,"2,360 km" +Lewisburg(Pennsylvania),Dallas,,21 hours 5 mins,"2,311 km" +Scranton(Pennsylvania),Dallas,,22 hours 0 mins,"2,412 km" +Asheville,Augusta(Georgia),,3 hours 18 mins,295 km +Asheville,Decatur(Georgia),,3 hours 24 mins,312 km +Asheville,Atlanta(Georgia),,3 hours 24 mins,320 km +Asheville,Valdosta(Georgia),,6 hours 36 mins,680 km +Asheville,Savannah(Georgia),,4 hours 42 mins,501 km +Augusta(Georgia),Asheville,,3 hours 17 mins,294 km +Decatur(Georgia),Asheville,,3 hours 23 mins,311 km +Atlanta(Georgia),Asheville,,3 hours 22 mins,319 km +Valdosta(Georgia),Asheville,,6 hours 32 mins,678 km +Savannah(Georgia),Asheville,,4 hours 43 mins,500 km +Las Vegas,Seattle(Washington),,16 hours 48 mins,"1,793 km" +Las Vegas,Wenatchee(Washington),,15 hours 51 mins,"1,672 km" +Las Vegas,Pasco(Washington),,13 hours 43 mins,"1,467 km" +Las Vegas,Yakima(Washington),,14 hours 40 mins,"1,566 km" +Las Vegas,Walla Walla(Washington),,13 hours 16 mins,"1,407 km" +Las Vegas,Everett(Washington),,17 hours 9 mins,"1,829 km" +Las Vegas,Spokane(Washington),,15 hours 43 mins,"1,675 km" +Seattle(Washington),Las Vegas,,16 hours 48 mins,"1,793 km" +Wenatchee(Washington),Las Vegas,,15 hours 52 mins,"1,673 km" +Pasco(Washington),Las Vegas,,13 hours 45 mins,"1,467 km" +Yakima(Washington),Las Vegas,,14 hours 40 mins,"1,565 km" +Walla Walla(Washington),Las Vegas,,13 hours 19 mins,"1,407 km" +Everett(Washington),Las Vegas,,17 hours 9 mins,"1,828 km" +Spokane(Washington),Las Vegas,,15 hours 44 mins,"1,677 km" +Greer,Greensboro(North Carolina),,2 hours 47 mins,290 km +Greer,Wilmington(North Carolina),,4 hours 42 mins,502 km +Greer,New Bern(North Carolina),,5 hours 40 mins,594 km +Greer,Charlotte(North Carolina),,1 hour 36 mins,150 km +Greer,Raleigh(North Carolina),,3 hours 57 mins,409 km +Greer,Asheville(North Carolina),,1 hour 15 mins,101 km +Greer,Fayetteville(North Carolina),,3 hours 59 mins,434 km +Greensboro(North Carolina),Greer,,2 hours 48 mins,288 km +Wilmington(North Carolina),Greer,,4 hours 44 mins,502 km +New Bern(North Carolina),Greer,,5 hours 40 mins,594 km +Charlotte(North Carolina),Greer,,1 hour 36 mins,147 km +Raleigh(North Carolina),Greer,,3 hours 55 mins,409 km +Asheville(North Carolina),Greer,,1 hour 14 mins,101 km +Fayetteville(North Carolina),Greer,,4 hours 0 mins,432 km +Newark,Sarasota(Florida),,17 hours 25 mins,"1,895 km" +Newark,Fort Myers(Florida),,18 hours 22 mins,"2,000 km" +Newark,Gainesville(Florida),,14 hours 45 mins,"1,605 km" +Newark,Orlando(Florida),,15 hours 37 mins,"1,722 km" +Newark,Daytona Beach(Florida),,15 hours 0 mins,"1,648 km" +Newark,Jacksonville(Florida),,13 hours 34 mins,"1,494 km" +Newark,Tampa(Florida),,16 hours 37 mins,"1,810 km" +Newark,Panama City(Florida),,17 hours 36 mins,"1,915 km" +Newark,Key West(Florida),,21 hours 33 mins,"2,305 km" +Newark,West Palm Beach(Florida),,17 hours 33 mins,"1,952 km" +Newark,Miami(Florida),,18 hours 33 mins,"2,051 km" +Newark,Tallahassee(Florida),,15 hours 58 mins,"1,753 km" +Newark,Punta Gorda(Florida),,17 hours 57 mins,"1,965 km" +Newark,Fort Lauderdale(Florida),,18 hours 11 mins,"2,020 km" +Newark,Pensacola(Florida),,17 hours 46 mins,"1,908 km" +Sarasota(Florida),Newark,,17 hours 22 mins,"1,889 km" +Fort Myers(Florida),Newark,,18 hours 19 mins,"1,994 km" +Gainesville(Florida),Newark,,14 hours 43 mins,"1,599 km" +Orlando(Florida),Newark,,15 hours 29 mins,"1,712 km" +Daytona Beach(Florida),Newark,,14 hours 54 mins,"1,629 km" +Jacksonville(Florida),Newark,,13 hours 32 mins,"1,487 km" +Tampa(Florida),Newark,,16 hours 34 mins,"1,804 km" +Panama City(Florida),Newark,,17 hours 33 mins,"1,909 km" +Key West(Florida),Newark,,21 hours 29 mins,"2,296 km" +West Palm Beach(Florida),Newark,,17 hours 26 mins,"1,943 km" +Miami(Florida),Newark,,18 hours 25 mins,"2,044 km" +Tallahassee(Florida),Newark,,15 hours 56 mins,"1,751 km" +Punta Gorda(Florida),Newark,,17 hours 53 mins,"1,958 km" +Fort Lauderdale(Florida),Newark,,18 hours 5 mins,"2,011 km" +Pensacola(Florida),Newark,,17 hours 40 mins,"1,898 km" +Ithaca,Philadelphia,,3 hours 52 mins,369 km +Philadelphia,Ithaca,,3 hours 56 mins,369 km +Des Moines,Moline(Illinois),,2 hours 33 mins,277 km +Des Moines,Belleville(Illinois),,5 hours 47 mins,588 km +Des Moines,Bloomington(Illinois),,4 hours 30 mins,486 km +Des Moines,Champaign(Illinois),,5 hours 11 mins,569 km +Des Moines,Chicago(Illinois),,5 hours 1 min,537 km +Des Moines,Rockford(Illinois),,4 hours 19 mins,465 km +Des Moines,Peoria(Illinois),,3 hours 53 mins,425 km +Moline(Illinois),Des Moines,,2 hours 35 mins,279 km +Belleville(Illinois),Des Moines,,5 hours 49 mins,590 km +Bloomington(Illinois),Des Moines,,4 hours 31 mins,487 km +Champaign(Illinois),Des Moines,,5 hours 15 mins,570 km +Chicago(Illinois),Des Moines,,4 hours 58 mins,537 km +Rockford(Illinois),Des Moines,,4 hours 18 mins,462 km +Peoria(Illinois),Des Moines,,3 hours 55 mins,427 km +Charlotte,Hilton Head,,3 hours 49 mins,398 km +Hilton Head,Charlotte,,3 hours 49 mins,397 km +Salt Lake City,New Orleans,,1 day 2 hours,"2,809 km" +New Orleans,Salt Lake City,,1 day 2 hours,"2,815 km" +Orlando,Martha's Vineyard(Massachusetts),,20 hours 48 mins,"2,152 km" +Orlando,Hyannis(Massachusetts),,19 hours 45 mins,"2,132 km" +Orlando,Boston(Massachusetts),,19 hours 1 min,"2,068 km" +Orlando,Nantucket(Massachusetts),,22 hours 2 mins,"2,179 km" +Martha's Vineyard(Massachusetts),Orlando,,21 hours 4 mins,"2,166 km" +Hyannis(Massachusetts),Orlando,,19 hours 55 mins,"2,144 km" +Boston(Massachusetts),Orlando,,19 hours 11 mins,"2,081 km" +Nantucket(Massachusetts),Orlando,,22 hours 12 mins,"2,195 km" +Medford,Flagstaff(Arizona),,15 hours 42 mins,"1,599 km" +Medford,Yuma(Arizona),,14 hours 41 mins,"1,548 km" +Medford,Phoenix(Arizona),,16 hours 5 mins,"1,710 km" +Medford,Prescott(Arizona),,15 hours 52 mins,"1,601 km" +Medford,Tucson(Arizona),,17 hours 36 mins,"1,887 km" +Flagstaff(Arizona),Medford,,15 hours 37 mins,"1,597 km" +Yuma(Arizona),Medford,,14 hours 46 mins,"1,547 km" +Phoenix(Arizona),Medford,,16 hours 7 mins,"1,708 km" +Prescott(Arizona),Medford,,15 hours 48 mins,"1,599 km" +Tucson(Arizona),Medford,,17 hours 38 mins,"1,888 km" +Newark,Buffalo(New York),,5 hours 53 mins,584 km +Newark,Manhattan(New York),,39 mins,24.8 km +Newark,Niagara Falls(New York),,6 hours 8 mins,640 km +Newark,Islip(New York),,1 hour 30 mins,112 km +Newark,New York(New York),,32 mins,18.3 km +Newark,Watertown(New York),,4 hours 46 mins,493 km +Newark,Newburgh(New York),,1 hour 17 mins,108 km +Newark,Syracuse(New York),,3 hours 43 mins,381 km +Newark,Plattsburgh(New York),,4 hours 43 mins,496 km +Newark,Ogdensburg(New York),,5 hours 45 mins,587 km +Newark,Ithaca(New York),,3 hours 37 mins,342 km +Newark,Elmira(New York),,3 hours 31 mins,356 km +Newark,White Plains(New York),,57 mins,78.6 km +Newark,Albany(New York),,2 hours 23 mins,239 km +Newark,Binghamton(New York),,2 hours 43 mins,269 km +Newark,Rochester(New York),,5 hours 0 mins,519 km +Buffalo(New York),Newark,,5 hours 54 mins,584 km +Manhattan(New York),Newark,,39 mins,25.4 km +Niagara Falls(New York),Newark,,6 hours 9 mins,642 km +Islip(New York),Newark,,1 hour 30 mins,109 km +New York(New York),Newark,,29 mins,16.3 km +Watertown(New York),Newark,,4 hours 47 mins,495 km +Newburgh(New York),Newark,,1 hour 18 mins,109 km +Syracuse(New York),Newark,,3 hours 44 mins,382 km +Plattsburgh(New York),Newark,,4 hours 43 mins,497 km +Ogdensburg(New York),Newark,,5 hours 46 mins,587 km +Ithaca(New York),Newark,,3 hours 38 mins,343 km +Elmira(New York),Newark,,3 hours 30 mins,356 km +White Plains(New York),Newark,,56 mins,67.6 km +Albany(New York),Newark,,2 hours 25 mins,239 km +Binghamton(New York),Newark,,2 hours 43 mins,269 km +Rochester(New York),Newark,,4 hours 59 mins,521 km +Santa Barbara,Abilene(Texas),,19 hours 42 mins,"2,172 km" +Santa Barbara,Amarillo(Texas),,16 hours 56 mins,"1,869 km" +Santa Barbara,Harlingen(Texas),,1 day 1 hour,"2,738 km" +Santa Barbara,Lubbock(Texas),,17 hours 51 mins,"1,923 km" +Santa Barbara,College Station(Texas),,23 hours 20 mins,"2,531 km" +Santa Barbara,Corpus Christi(Texas),,22 hours 57 mins,"2,563 km" +Santa Barbara,Wichita Falls(Texas),,20 hours 13 mins,"2,223 km" +Santa Barbara,Waco(Texas),,22 hours 21 mins,"2,433 km" +Santa Barbara,San Angelo(Texas),,19 hours 6 mins,"2,094 km" +Santa Barbara,Houston(Texas),,23 hours 48 mins,"2,645 km" +Santa Barbara,San Antonio(Texas),,20 hours 59 mins,"2,331 km" +Santa Barbara,Del Rio(Texas),,19 hours 33 mins,"2,127 km" +Santa Barbara,Mission(Texas),,1 day 1 hour,"2,727 km" +Santa Barbara,Beaumont(Texas),,1 day 1 hour,"2,779 km" +Santa Barbara,Longview(Texas),,1 day 0 hours,"2,671 km" +Santa Barbara,Midland(Texas),,17 hours 37 mins,"1,935 km" +Santa Barbara,El Paso(Texas),,13 hours 14 mins,"1,445 km" +Santa Barbara,Brownsville(Texas),,1 day 1 hour,"2,778 km" +Santa Barbara,Austin(Texas),,21 hours 49 mins,"2,371 km" +Santa Barbara,Dallas(Texas),,22 hours 16 mins,"2,466 km" +Santa Barbara,Killeen(Texas),,21 hours 38 mins,"2,364 km" +Santa Barbara,Laredo(Texas),,22 hours 29 mins,"2,417 km" +Santa Barbara,Texarkana(Texas),,1 day 1 hour,"2,660 km" +Abilene(Texas),Santa Barbara,,19 hours 41 mins,"2,173 km" +Amarillo(Texas),Santa Barbara,,16 hours 57 mins,"1,869 km" +Harlingen(Texas),Santa Barbara,,1 day 0 hours,"2,739 km" +Lubbock(Texas),Santa Barbara,,17 hours 50 mins,"1,923 km" +College Station(Texas),Santa Barbara,,23 hours 19 mins,"2,538 km" +Corpus Christi(Texas),Santa Barbara,,22 hours 54 mins,"2,563 km" +Wichita Falls(Texas),Santa Barbara,,20 hours 14 mins,"2,224 km" +Waco(Texas),Santa Barbara,,22 hours 21 mins,"2,434 km" +San Angelo(Texas),Santa Barbara,,19 hours 4 mins,"2,094 km" +Houston(Texas),Santa Barbara,,23 hours 46 mins,"2,645 km" +San Antonio(Texas),Santa Barbara,,20 hours 57 mins,"2,331 km" +Del Rio(Texas),Santa Barbara,,19 hours 32 mins,"2,128 km" +Mission(Texas),Santa Barbara,,1 day 1 hour,"2,728 km" +Beaumont(Texas),Santa Barbara,,1 day 1 hour,"2,778 km" +Longview(Texas),Santa Barbara,,1 day 0 hours,"2,671 km" +Midland(Texas),Santa Barbara,,17 hours 35 mins,"1,935 km" +El Paso(Texas),Santa Barbara,,13 hours 14 mins,"1,445 km" +Brownsville(Texas),Santa Barbara,,1 day 1 hour,"2,779 km" +Austin(Texas),Santa Barbara,,21 hours 47 mins,"2,372 km" +Dallas(Texas),Santa Barbara,,22 hours 15 mins,"2,465 km" +Killeen(Texas),Santa Barbara,,21 hours 36 mins,"2,364 km" +Laredo(Texas),Santa Barbara,,22 hours 28 mins,"2,417 km" +Texarkana(Texas),Santa Barbara,,1 day 1 hour,"2,673 km" +Denver,Great Falls,,11 hours 23 mins,"1,242 km" +Great Falls,Denver,,11 hours 15 mins,"1,239 km" +Charlotte,San Diego(California),,1 day 10 hours,"3,836 km" +Charlotte,Redding(California),,1 day 16 hours,"4,414 km" +Charlotte,Sacramento(California),,1 day 15 hours,"4,311 km" +Charlotte,Fresno(California),,1 day 13 hours,"4,081 km" +Charlotte,San Luis Obispo(California),,1 day 14 hours,"4,124 km" +Charlotte,Oakland(California),,1 day 15 hours,"4,342 km" +Charlotte,Santa Barbara(California),,1 day 13 hours,"4,023 km" +Charlotte,Stockton(California),,1 day 15 hours,"4,281 km" +Charlotte,Santa Rosa(California),,1 day 16 hours,"4,435 km" +Charlotte,Bakersfield(California),,1 day 11 hours,"3,905 km" +Charlotte,Santa Ana(California),,1 day 11 hours,"3,881 km" +Charlotte,Santa Maria(California),,1 day 13 hours,"4,080 km" +Charlotte,San Jose(California),,1 day 15 hours,"4,293 km" +Charlotte,Burbank(California),,1 day 11 hours,"3,884 km" +Charlotte,Arcata(California),,1 day 19 hours,"4,638 km" +Charlotte,Butte(California),,1 day 16 hours,"4,350 km" +Charlotte,Palm Springs(California),,1 day 10 hours,"3,716 km" +Charlotte,Los Angeles(California),,1 day 11 hours,"3,881 km" +Charlotte,Long Beach(California),,1 day 11 hours,"3,903 km" +Charlotte,San Francisco(California),,1 day 16 hours,"4,361 km" +Charlotte,Monterey(California),,1 day 15 hours,"4,259 km" +San Diego(California),Charlotte,,1 day 10 hours,"3,836 km" +Redding(California),Charlotte,,1 day 16 hours,"4,422 km" +Sacramento(California),Charlotte,,1 day 15 hours,"4,320 km" +Fresno(California),Charlotte,,1 day 13 hours,"4,082 km" +San Luis Obispo(California),Charlotte,,1 day 14 hours,"4,127 km" +Oakland(California),Charlotte,,1 day 16 hours,"4,346 km" +Santa Barbara(California),Charlotte,,1 day 12 hours,"4,024 km" +Stockton(California),Charlotte,,1 day 15 hours,"4,282 km" +Santa Rosa(California),Charlotte,,1 day 16 hours,"4,438 km" +Bakersfield(California),Charlotte,,1 day 11 hours,"3,907 km" +Santa Ana(California),Charlotte,,1 day 11 hours,"3,878 km" +Santa Maria(California),Charlotte,,1 day 13 hours,"4,083 km" +San Jose(California),Charlotte,,1 day 15 hours,"4,296 km" +Burbank(California),Charlotte,,1 day 11 hours,"3,885 km" +Arcata(California),Charlotte,,1 day 19 hours,"4,646 km" +Butte(California),Charlotte,,1 day 16 hours,"4,359 km" +Palm Springs(California),Charlotte,,1 day 10 hours,"3,717 km" +Los Angeles(California),Charlotte,,1 day 11 hours,"3,881 km" +Long Beach(California),Charlotte,,1 day 11 hours,"3,908 km" +San Francisco(California),Charlotte,,1 day 16 hours,"4,364 km" +Monterey(California),Charlotte,,1 day 15 hours,"4,262 km" +Knoxville,Bemidji(Minnesota),,17 hours 25 mins,"1,873 km" +Knoxville,Minneapolis(Minnesota),,13 hours 58 mins,"1,529 km" +Knoxville,Duluth(Minnesota),,14 hours 55 mins,"1,624 km" +Knoxville,Brainerd(Minnesota),,15 hours 54 mins,"1,729 km" +Knoxville,Gustavus(Minnesota),,14 hours 24 mins,"1,575 km" +Knoxville,St. Cloud(Minnesota),,14 hours 54 mins,"1,632 km" +Knoxville,Hibbing(Minnesota),,16 hours 12 mins,"1,744 km" +Knoxville,International Falls(Minnesota),,17 hours 36 mins,"1,885 km" +Bemidji(Minnesota),Knoxville,,17 hours 22 mins,"1,873 km" +Minneapolis(Minnesota),Knoxville,,13 hours 55 mins,"1,527 km" +Duluth(Minnesota),Knoxville,,14 hours 54 mins,"1,624 km" +Brainerd(Minnesota),Knoxville,,15 hours 53 mins,"1,730 km" +Gustavus(Minnesota),Knoxville,,14 hours 23 mins,"1,573 km" +St. Cloud(Minnesota),Knoxville,,14 hours 53 mins,"1,632 km" +Hibbing(Minnesota),Knoxville,,16 hours 11 mins,"1,744 km" +International Falls(Minnesota),Knoxville,,17 hours 35 mins,"1,885 km" +Grand Junction,Abilene(Texas),,13 hours 48 mins,"1,363 km" +Grand Junction,Amarillo(Texas),,9 hours 40 mins,915 km +Grand Junction,Harlingen(Texas),,20 hours 43 mins,"2,127 km" +Grand Junction,Lubbock(Texas),,11 hours 23 mins,"1,099 km" +Grand Junction,College Station(Texas),,17 hours 19 mins,"1,739 km" +Grand Junction,Corpus Christi(Texas),,19 hours 5 mins,"1,952 km" +Grand Junction,Wichita Falls(Texas),,13 hours 5 mins,"1,276 km" +Grand Junction,Waco(Texas),,16 hours 1 min,"1,604 km" +Grand Junction,San Angelo(Texas),,14 hours 11 mins,"1,394 km" +Grand Junction,Houston(Texas),,18 hours 27 mins,"1,879 km" +Grand Junction,San Antonio(Texas),,17 hours 7 mins,"1,719 km" +Grand Junction,Del Rio(Texas),,16 hours 37 mins,"1,583 km" +Grand Junction,Mission(Texas),,20 hours 43 mins,"2,115 km" +Grand Junction,Beaumont(Texas),,19 hours 27 mins,"1,954 km" +Grand Junction,Longview(Texas),,16 hours 59 mins,"1,703 km" +Grand Junction,Midland(Texas),,13 hours 6 mins,"1,259 km" +Grand Junction,El Paso(Texas),,10 hours 48 mins,"1,040 km" +Grand Junction,Brownsville(Texas),,21 hours 5 mins,"2,167 km" +Grand Junction,Austin(Texas),,17 hours 14 mins,"1,699 km" +Grand Junction,Dallas(Texas),,15 hours 7 mins,"1,503 km" +Grand Junction,Killeen(Texas),,16 hours 35 mins,"1,636 km" +Grand Junction,Laredo(Texas),,19 hours 14 mins,"1,909 km" +Grand Junction,Texarkana(Texas),,17 hours 25 mins,"1,712 km" +Abilene(Texas),Grand Junction,,13 hours 44 mins,"1,347 km" +Amarillo(Texas),Grand Junction,,9 hours 36 mins,915 km +Harlingen(Texas),Grand Junction,,20 hours 34 mins,"2,112 km" +Lubbock(Texas),Grand Junction,,11 hours 22 mins,"1,098 km" +College Station(Texas),Grand Junction,,17 hours 14 mins,"1,736 km" +Corpus Christi(Texas),Grand Junction,,18 hours 58 mins,"1,936 km" +Wichita Falls(Texas),Grand Junction,,13 hours 2 mins,"1,274 km" +Waco(Texas),Grand Junction,,15 hours 58 mins,"1,598 km" +San Angelo(Texas),Grand Junction,,14 hours 9 mins,"1,412 km" +Houston(Texas),Grand Junction,,18 hours 24 mins,"1,877 km" +San Antonio(Texas),Grand Junction,,17 hours 2 mins,"1,703 km" +Del Rio(Texas),Grand Junction,,16 hours 35 mins,"1,573 km" +Mission(Texas),Grand Junction,,20 hours 36 mins,"2,101 km" +Beaumont(Texas),Grand Junction,,19 hours 24 mins,"1,951 km" +Longview(Texas),Grand Junction,,16 hours 54 mins,"1,707 km" +Midland(Texas),Grand Junction,,13 hours 4 mins,"1,257 km" +El Paso(Texas),Grand Junction,,10 hours 46 mins,"1,040 km" +Brownsville(Texas),Grand Junction,,20 hours 58 mins,"2,152 km" +Austin(Texas),Grand Junction,,17 hours 11 mins,"1,684 km" +Dallas(Texas),Grand Junction,,15 hours 3 mins,"1,500 km" +Killeen(Texas),Grand Junction,,16 hours 32 mins,"1,621 km" +Laredo(Texas),Grand Junction,,19 hours 11 mins,"1,894 km" +Texarkana(Texas),Grand Junction,,17 hours 30 mins,"1,723 km" +Denver,Helena(Montana),,11 hours 24 mins,"1,275 km" +Denver,Billings(Montana),,7 hours 54 mins,893 km +Denver,Missoula(Montana),,12 hours 43 mins,"1,443 km" +Denver,Kalispell(Montana),,14 hours 41 mins,"1,613 km" +Denver,Great Falls(Montana),,11 hours 23 mins,"1,242 km" +Denver,Bozeman(Montana),,9 hours 54 mins,"1,119 km" +Denver,West Yellowstone(Montana),,10 hours 14 mins,"1,027 km" +Helena(Montana),Denver,,11 hours 17 mins,"1,272 km" +Billings(Montana),Denver,,7 hours 46 mins,887 km +Missoula(Montana),Denver,,12 hours 36 mins,"1,439 km" +Kalispell(Montana),Denver,,14 hours 34 mins,"1,582 km" +Great Falls(Montana),Denver,,11 hours 15 mins,"1,239 km" +Bozeman(Montana),Denver,,9 hours 46 mins,"1,115 km" +West Yellowstone(Montana),Denver,,10 hours 13 mins,"1,023 km" +Denver,Palm Springs,,15 hours 3 mins,"1,651 km" +Palm Springs,Denver,,14 hours 58 mins,"1,649 km" +Charleston,Augusta(Georgia),,2 hours 53 mins,243 km +Charleston,Decatur(Georgia),,4 hours 53 mins,476 km +Charleston,Atlanta(Georgia),,4 hours 46 mins,481 km +Charleston,Valdosta(Georgia),,4 hours 51 mins,458 km +Charleston,Savannah(Georgia),,2 hours 1 min,174 km +Augusta(Georgia),Charleston,,2 hours 53 mins,242 km +Decatur(Georgia),Charleston,,4 hours 50 mins,485 km +Atlanta(Georgia),Charleston,,4 hours 45 mins,491 km +Valdosta(Georgia),Charleston,,4 hours 51 mins,458 km +Savannah(Georgia),Charleston,,1 hour 59 mins,172 km +Detroit,Green Bay(Wisconsin),,7 hours 22 mins,785 km +Detroit,Rhinelander(Wisconsin),,8 hours 47 mins,912 km +Detroit,Marquette(Wisconsin),,7 hours 17 mins,752 km +Detroit,Madison(Wisconsin),,6 hours 32 mins,698 km +Detroit,La Crosse(Wisconsin),,8 hours 23 mins,915 km +Detroit,Devils Lake(Wisconsin),,7 hours 11 mins,763 km +Detroit,Appleton(Wisconsin),,7 hours 11 mins,766 km +Detroit,Mosinee(Wisconsin),,8 hours 7 mins,894 km +Detroit,Milwaukee(Wisconsin),,5 hours 41 mins,600 km +Detroit,Eau Claire(Wisconsin),,8 hours 53 mins,972 km +Green Bay(Wisconsin),Detroit,,7 hours 21 mins,798 km +Rhinelander(Wisconsin),Detroit,,8 hours 48 mins,912 km +Marquette(Wisconsin),Detroit,,7 hours 16 mins,765 km +Madison(Wisconsin),Detroit,,6 hours 25 mins,696 km +La Crosse(Wisconsin),Detroit,,8 hours 18 mins,912 km +Devils Lake(Wisconsin),Detroit,,7 hours 8 mins,760 km +Appleton(Wisconsin),Detroit,,7 hours 9 mins,779 km +Mosinee(Wisconsin),Detroit,,8 hours 2 mins,892 km +Milwaukee(Wisconsin),Detroit,,5 hours 40 mins,614 km +Eau Claire(Wisconsin),Detroit,,8 hours 48 mins,970 km +Des Moines,Pellston(Michigan),,10 hours 33 mins,"1,121 km" +Des Moines,Traverse City(Michigan),,9 hours 27 mins,"1,024 km" +Des Moines,Alpena(Michigan),,11 hours 6 mins,"1,179 km" +Des Moines,Iron Mountain(Michigan),,8 hours 11 mins,851 km +Des Moines,Kalamazoo(Michigan),,6 hours 55 mins,746 km +Des Moines,Saginaw(Michigan),,9 hours 7 mins,981 km +Des Moines,Grand Rapids(Michigan),,7 hours 21 mins,795 km +Des Moines,Lansing(Michigan),,7 hours 56 mins,861 km +Des Moines,Muskegon(Michigan),,7 hours 37 mins,810 km +Des Moines,Hancock(Michigan),,9 hours 21 mins,968 km +Des Moines,Detroit(Michigan),,8 hours 49 mins,964 km +Des Moines,Escanaba(Michigan),,8 hours 23 mins,870 km +Pellston(Michigan),Des Moines,,10 hours 35 mins,"1,121 km" +Traverse City(Michigan),Des Moines,,9 hours 30 mins,"1,025 km" +Alpena(Michigan),Des Moines,,11 hours 4 mins,"1,177 km" +Iron Mountain(Michigan),Des Moines,,8 hours 12 mins,850 km +Kalamazoo(Michigan),Des Moines,,6 hours 57 mins,746 km +Saginaw(Michigan),Des Moines,,9 hours 4 mins,978 km +Grand Rapids(Michigan),Des Moines,,7 hours 20 mins,798 km +Lansing(Michigan),Des Moines,,7 hours 57 mins,861 km +Muskegon(Michigan),Des Moines,,7 hours 37 mins,809 km +Hancock(Michigan),Des Moines,,9 hours 21 mins,970 km +Detroit(Michigan),Des Moines,,8 hours 53 mins,965 km +Escanaba(Michigan),Des Moines,,8 hours 25 mins,869 km +Salt Lake City,Helena(Montana),,6 hours 53 mins,778 km +Salt Lake City,Billings(Montana),,8 hours 20 mins,883 km +Salt Lake City,Missoula(Montana),,7 hours 19 mins,844 km +Salt Lake City,Kalispell(Montana),,9 hours 17 mins,"1,014 km" +Salt Lake City,Great Falls(Montana),,8 hours 7 mins,918 km +Salt Lake City,Bozeman(Montana),,6 hours 17 mins,658 km +Salt Lake City,West Yellowstone(Montana),,4 hours 37 mins,515 km +Helena(Montana),Salt Lake City,,6 hours 52 mins,778 km +Billings(Montana),Salt Lake City,,8 hours 27 mins,888 km +Missoula(Montana),Salt Lake City,,7 hours 20 mins,843 km +Kalispell(Montana),Salt Lake City,,9 hours 18 mins,"1,014 km" +Great Falls(Montana),Salt Lake City,,8 hours 7 mins,919 km +Bozeman(Montana),Salt Lake City,,6 hours 20 mins,660 km +West Yellowstone(Montana),Salt Lake City,,4 hours 39 mins,516 km +Dallas,Tallahassee,,12 hours 22 mins,"1,338 km" +Tallahassee,Dallas,,12 hours 20 mins,"1,341 km" +Minneapolis,San Diego,,1 day 5 hours,"3,198 km" +San Diego,Minneapolis,,1 day 5 hours,"3,197 km" +Charleston,New York,,11 hours 26 mins,"1,220 km" +New York,Charleston,,11 hours 29 mins,"1,228 km" +Grand Forks,Minneapolis,,4 hours 37 mins,507 km +Minneapolis,Grand Forks,,4 hours 37 mins,507 km +Belleville,Las Vegas,,23 hours 16 mins,"2,595 km" +Las Vegas,Belleville,,23 hours 10 mins,"2,594 km" +Norfolk,Baltimore,,3 hours 56 mins,378 km +Baltimore,Norfolk,,3 hours 51 mins,386 km +San Antonio,Moline(Illinois),,16 hours 54 mins,"1,893 km" +San Antonio,Belleville(Illinois),,14 hours 0 mins,"1,481 km" +San Antonio,Bloomington(Illinois),,16 hours 4 mins,"1,713 km" +San Antonio,Champaign(Illinois),,16 hours 7 mins,"1,783 km" +San Antonio,Chicago(Illinois),,18 hours 4 mins,"1,997 km" +San Antonio,Rockford(Illinois),,17 hours 59 mins,"1,927 km" +San Antonio,Peoria(Illinois),,16 hours 6 mins,"1,723 km" +Moline(Illinois),San Antonio,,16 hours 58 mins,"1,898 km" +Belleville(Illinois),San Antonio,,14 hours 4 mins,"1,481 km" +Bloomington(Illinois),San Antonio,,16 hours 6 mins,"1,713 km" +Champaign(Illinois),San Antonio,,16 hours 14 mins,"1,771 km" +Chicago(Illinois),San Antonio,,18 hours 4 mins,"1,930 km" +Rockford(Illinois),San Antonio,,17 hours 59 mins,"1,925 km" +Peoria(Illinois),San Antonio,,16 hours 7 mins,"1,723 km" +Miami,Greensboro(North Carolina),,11 hours 36 mins,"1,292 km" +Miami,Wilmington(North Carolina),,11 hours 11 mins,"1,259 km" +Miami,New Bern(North Carolina),,12 hours 26 mins,"1,394 km" +Miami,Charlotte(North Carolina),,10 hours 26 mins,"1,174 km" +Miami,Raleigh(North Carolina),,11 hours 23 mins,"1,287 km" +Miami,Asheville(North Carolina),,11 hours 21 mins,"1,269 km" +Miami,Fayetteville(North Carolina),,10 hours 29 mins,"1,191 km" +Greensboro(North Carolina),Miami,,11 hours 42 mins,"1,278 km" +Wilmington(North Carolina),Miami,,11 hours 17 mins,"1,260 km" +New Bern(North Carolina),Miami,,12 hours 32 mins,"1,393 km" +Charlotte(North Carolina),Miami,,10 hours 30 mins,"1,174 km" +Raleigh(North Carolina),Miami,,11 hours 30 mins,"1,288 km" +Asheville(North Carolina),Miami,,11 hours 24 mins,"1,268 km" +Fayetteville(North Carolina),Miami,,10 hours 34 mins,"1,190 km" +Asheville,Baltimore,,7 hours 43 mins,819 km +Baltimore,Asheville,,7 hours 42 mins,819 km +Myrtle Beach,Martha's Vineyard(Massachusetts),,15 hours 22 mins,"1,484 km" +Myrtle Beach,Hyannis(Massachusetts),,14 hours 19 mins,"1,464 km" +Myrtle Beach,Boston(Massachusetts),,13 hours 36 mins,"1,400 km" +Myrtle Beach,Nantucket(Massachusetts),,16 hours 36 mins,"1,511 km" +Martha's Vineyard(Massachusetts),Myrtle Beach,,15 hours 35 mins,"1,496 km" +Hyannis(Massachusetts),Myrtle Beach,,14 hours 27 mins,"1,473 km" +Boston(Massachusetts),Myrtle Beach,,13 hours 42 mins,"1,411 km" +Nantucket(Massachusetts),Myrtle Beach,,16 hours 44 mins,"1,524 km" +Kahului,San Diego(California),,, +Kahului,Redding(California),,, +Kahului,Sacramento(California),,, +Kahului,Fresno(California),,, +Kahului,San Luis Obispo(California),,, +Kahului,Oakland(California),,, +Kahului,Santa Barbara(California),,, +Kahului,Stockton(California),,, +Kahului,Santa Rosa(California),,, +Kahului,Bakersfield(California),,, +Kahului,Santa Ana(California),,, +Kahului,Santa Maria(California),,, +Kahului,San Jose(California),,, +Kahului,Burbank(California),,, +Kahului,Arcata(California),,, +Kahului,Butte(California),,, +Kahului,Palm Springs(California),,, +Kahului,Los Angeles(California),,, +Kahului,Long Beach(California),,, +Kahului,San Francisco(California),,, +Kahului,Monterey(California),,, +San Diego(California),Kahului,,, +Redding(California),Kahului,,, +Sacramento(California),Kahului,,, +Fresno(California),Kahului,,, +San Luis Obispo(California),Kahului,,, +Oakland(California),Kahului,,, +Santa Barbara(California),Kahului,,, +Stockton(California),Kahului,,, +Santa Rosa(California),Kahului,,, +Bakersfield(California),Kahului,,, +Santa Ana(California),Kahului,,, +Santa Maria(California),Kahului,,, +San Jose(California),Kahului,,, +Burbank(California),Kahului,,, +Arcata(California),Kahului,,, +Butte(California),Kahului,,, +Palm Springs(California),Kahului,,, +Los Angeles(California),Kahului,,, +Long Beach(California),Kahului,,, +San Francisco(California),Kahului,,, +Monterey(California),Kahului,,, +Houston,Sarasota(Florida),,14 hours 44 mins,"1,662 km" +Houston,Fort Myers(Florida),,15 hours 42 mins,"1,768 km" +Houston,Gainesville(Florida),,12 hours 21 mins,"1,378 km" +Houston,Orlando(Florida),,13 hours 45 mins,"1,550 km" +Houston,Daytona Beach(Florida),,13 hours 49 mins,"1,550 km" +Houston,Jacksonville(Florida),,12 hours 25 mins,"1,400 km" +Houston,Tampa(Florida),,13 hours 57 mins,"1,578 km" +Houston,Panama City(Florida),,9 hours 44 mins,"1,048 km" +Houston,Key West(Florida),,19 hours 56 mins,"2,164 km" +Houston,West Palm Beach(Florida),,15 hours 58 mins,"1,806 km" +Houston,Miami(Florida),,16 hours 56 mins,"1,911 km" +Houston,Tallahassee(Florida),,10 hours 16 mins,"1,141 km" +Houston,Punta Gorda(Florida),,15 hours 16 mins,"1,732 km" +Houston,Fort Lauderdale(Florida),,16 hours 35 mins,"1,874 km" +Houston,Pensacola(Florida),,7 hours 38 mins,845 km +Sarasota(Florida),Houston,,14 hours 44 mins,"1,663 km" +Fort Myers(Florida),Houston,,15 hours 41 mins,"1,769 km" +Gainesville(Florida),Houston,,12 hours 19 mins,"1,378 km" +Orlando(Florida),Houston,,13 hours 41 mins,"1,549 km" +Daytona Beach(Florida),Houston,,13 hours 47 mins,"1,541 km" +Jacksonville(Florida),Houston,,12 hours 27 mins,"1,401 km" +Tampa(Florida),Houston,,13 hours 55 mins,"1,578 km" +Panama City(Florida),Houston,,9 hours 42 mins,"1,048 km" +Key West(Florida),Houston,,19 hours 57 mins,"2,164 km" +West Palm Beach(Florida),Houston,,15 hours 56 mins,"1,807 km" +Miami(Florida),Houston,,16 hours 53 mins,"1,913 km" +Tallahassee(Florida),Houston,,10 hours 15 mins,"1,142 km" +Punta Gorda(Florida),Houston,,15 hours 15 mins,"1,733 km" +Fort Lauderdale(Florida),Houston,,16 hours 34 mins,"1,875 km" +Pensacola(Florida),Houston,,7 hours 37 mins,845 km +Denver,Kansas City,,8 hours 35 mins,973 km +Kansas City,Denver,,8 hours 39 mins,970 km +Daytona Beach,Abilene(Texas),,18 hours 27 mins,"2,028 km" +Daytona Beach,Amarillo(Texas),,21 hours 18 mins,"2,327 km" +Daytona Beach,Harlingen(Texas),,18 hours 39 mins,"2,068 km" +Daytona Beach,Lubbock(Texas),,20 hours 51 mins,"2,293 km" +Daytona Beach,College Station(Texas),,15 hours 11 mins,"1,686 km" +Daytona Beach,Corpus Christi(Texas),,16 hours 54 mins,"1,874 km" +Daytona Beach,Wichita Falls(Texas),,17 hours 53 mins,"1,966 km" +Daytona Beach,Waco(Texas),,16 hours 31 mins,"1,796 km" +Daytona Beach,San Angelo(Texas),,19 hours 29 mins,"2,124 km" +Daytona Beach,Houston(Texas),,13 hours 47 mins,"1,541 km" +Daytona Beach,San Antonio(Texas),,16 hours 39 mins,"1,854 km" +Daytona Beach,Del Rio(Texas),,19 hours 3 mins,"2,101 km" +Daytona Beach,Mission(Texas),,19 hours 6 mins,"2,108 km" +Daytona Beach,Beaumont(Texas),,12 hours 34 mins,"1,407 km" +Daytona Beach,Longview(Texas),,14 hours 10 mins,"1,539 km" +Daytona Beach,Midland(Texas),,20 hours 35 mins,"2,269 km" +Daytona Beach,El Paso(Texas),,1 day 0 hours,"2,739 km" +Daytona Beach,Brownsville(Texas),,19 hours 1 min,"2,108 km" +Daytona Beach,Austin(Texas),,16 hours 15 mins,"1,804 km" +Daytona Beach,Dallas(Texas),,15 hours 52 mins,"1,740 km" +Daytona Beach,Killeen(Texas),,16 hours 50 mins,"1,859 km" +Daytona Beach,Laredo(Texas),,18 hours 46 mins,"2,046 km" +Daytona Beach,Texarkana(Texas),,14 hours 13 mins,"1,555 km" +Abilene(Texas),Daytona Beach,,18 hours 29 mins,"2,038 km" +Amarillo(Texas),Daytona Beach,,21 hours 20 mins,"2,330 km" +Harlingen(Texas),Daytona Beach,,18 hours 39 mins,"2,078 km" +Lubbock(Texas),Daytona Beach,,20 hours 49 mins,"2,303 km" +College Station(Texas),Daytona Beach,,15 hours 11 mins,"1,698 km" +Corpus Christi(Texas),Daytona Beach,,17 hours 0 mins,"1,888 km" +Wichita Falls(Texas),Daytona Beach,,17 hours 58 mins,"1,967 km" +Waco(Texas),Daytona Beach,,16 hours 32 mins,"1,805 km" +San Angelo(Texas),Daytona Beach,,19 hours 31 mins,"2,134 km" +Houston(Texas),Daytona Beach,,13 hours 49 mins,"1,550 km" +San Antonio(Texas),Daytona Beach,,16 hours 41 mins,"1,864 km" +Del Rio(Texas),Daytona Beach,,19 hours 7 mins,"2,111 km" +Mission(Texas),Daytona Beach,,19 hours 7 mins,"2,118 km" +Beaumont(Texas),Daytona Beach,,12 hours 36 mins,"1,416 km" +Longview(Texas),Daytona Beach,,14 hours 11 mins,"1,548 km" +Midland(Texas),Daytona Beach,,20 hours 35 mins,"2,278 km" +El Paso(Texas),Daytona Beach,,1 day 0 hours,"2,749 km" +Brownsville(Texas),Daytona Beach,,19 hours 2 mins,"2,118 km" +Austin(Texas),Daytona Beach,,16 hours 16 mins,"1,813 km" +Dallas(Texas),Daytona Beach,,15 hours 55 mins,"1,747 km" +Killeen(Texas),Daytona Beach,,16 hours 51 mins,"1,862 km" +Laredo(Texas),Daytona Beach,,18 hours 46 mins,"2,056 km" +Texarkana(Texas),Daytona Beach,,14 hours 16 mins,"1,566 km" +Boise,Salt Lake City(Utah),,4 hours 53 mins,546 km +Boise,Moab(Utah),,8 hours 28 mins,919 km +Boise,Ogden(Utah),,4 hours 24 mins,490 km +Boise,Vernal(Utah),,7 hours 43 mins,820 km +Boise,Provo(Utah),,5 hours 31 mins,615 km +Boise,Cedar City(Utah),,8 hours 18 mins,948 km +Salt Lake City(Utah),Boise,,4 hours 51 mins,546 km +Moab(Utah),Boise,,8 hours 26 mins,918 km +Ogden(Utah),Boise,,4 hours 22 mins,490 km +Vernal(Utah),Boise,,7 hours 44 mins,820 km +Provo(Utah),Boise,,5 hours 29 mins,614 km +Cedar City(Utah),Boise,,8 hours 16 mins,947 km +Spokane,Oakland,,13 hours 55 mins,"1,399 km" +Oakland,Spokane,,13 hours 49 mins,"1,399 km" +Providence,Sarasota(Florida),,20 hours 30 mins,"2,197 km" +Providence,Fort Myers(Florida),,21 hours 28 mins,"2,303 km" +Providence,Gainesville(Florida),,17 hours 50 mins,"1,907 km" +Providence,Orlando(Florida),,18 hours 43 mins,"2,025 km" +Providence,Daytona Beach(Florida),,18 hours 6 mins,"1,950 km" +Providence,Jacksonville(Florida),,16 hours 40 mins,"1,797 km" +Providence,Tampa(Florida),,19 hours 43 mins,"2,113 km" +Providence,Panama City(Florida),,20 hours 42 mins,"2,217 km" +Providence,Key West(Florida),,1 day 1 hour,"2,607 km" +Providence,West Palm Beach(Florida),,20 hours 39 mins,"2,255 km" +Providence,Miami(Florida),,21 hours 39 mins,"2,354 km" +Providence,Tallahassee(Florida),,19 hours 3 mins,"2,056 km" +Providence,Punta Gorda(Florida),,21 hours 2 mins,"2,267 km" +Providence,Fort Lauderdale(Florida),,21 hours 16 mins,"2,323 km" +Providence,Pensacola(Florida),,20 hours 52 mins,"2,210 km" +Sarasota(Florida),Providence,,20 hours 25 mins,"2,192 km" +Fort Myers(Florida),Providence,,21 hours 22 mins,"2,297 km" +Gainesville(Florida),Providence,,17 hours 47 mins,"1,902 km" +Orlando(Florida),Providence,,18 hours 32 mins,"2,015 km" +Daytona Beach(Florida),Providence,,17 hours 58 mins,"1,932 km" +Jacksonville(Florida),Providence,,16 hours 35 mins,"1,790 km" +Tampa(Florida),Providence,,19 hours 37 mins,"2,107 km" +Panama City(Florida),Providence,,20 hours 36 mins,"2,213 km" +Key West(Florida),Providence,,1 day 1 hour,"2,599 km" +West Palm Beach(Florida),Providence,,20 hours 30 mins,"2,246 km" +Miami(Florida),Providence,,21 hours 29 mins,"2,347 km" +Tallahassee(Florida),Providence,,19 hours 0 mins,"2,055 km" +Punta Gorda(Florida),Providence,,20 hours 57 mins,"2,261 km" +Fort Lauderdale(Florida),Providence,,21 hours 8 mins,"2,314 km" +Pensacola(Florida),Providence,,20 hours 44 mins,"2,202 km" +Atlanta,Cedar Rapids(Iowa),,12 hours 26 mins,"1,349 km" +Atlanta,Sioux City(Iowa),,15 hours 41 mins,"1,735 km" +Atlanta,Dubuque(Iowa),,12 hours 40 mins,"1,380 km" +Atlanta,Des Moines(Iowa),,13 hours 32 mins,"1,455 km" +Atlanta,Fort Dodge(Iowa),,14 hours 40 mins,"1,592 km" +Atlanta,Mason City(Iowa),,14 hours 34 mins,"1,565 km" +Cedar Rapids(Iowa),Atlanta,,12 hours 26 mins,"1,345 km" +Sioux City(Iowa),Atlanta,,15 hours 44 mins,"1,734 km" +Dubuque(Iowa),Atlanta,,12 hours 42 mins,"1,379 km" +Des Moines(Iowa),Atlanta,,13 hours 31 mins,"1,451 km" +Fort Dodge(Iowa),Atlanta,,14 hours 40 mins,"1,588 km" +Mason City(Iowa),Atlanta,,14 hours 33 mins,"1,566 km" +Kansas City,Charleston,,16 hours 19 mins,"1,776 km" +Charleston,Kansas City,,16 hours 19 mins,"1,775 km" +Tampa,Cleveland,,16 hours 14 mins,"1,760 km" +Cleveland,Tampa,,16 hours 12 mins,"1,758 km" +Nashville,Flagstaff(Arizona),,22 hours 4 mins,"2,478 km" +Nashville,Yuma(Arizona),,1 day 2 hours,"2,926 km" +Nashville,Phoenix(Arizona),,23 hours 51 mins,"2,632 km" +Nashville,Prescott(Arizona),,23 hours 36 mins,"2,628 km" +Nashville,Tucson(Arizona),,23 hours 24 mins,"2,603 km" +Flagstaff(Arizona),Nashville,,21 hours 59 mins,"2,477 km" +Yuma(Arizona),Nashville,,1 day 2 hours,"2,925 km" +Phoenix(Arizona),Nashville,,23 hours 49 mins,"2,633 km" +Prescott(Arizona),Nashville,,23 hours 30 mins,"2,629 km" +Tucson(Arizona),Nashville,,23 hours 22 mins,"2,604 km" +Appleton,Charlotte,,14 hours 27 mins,"1,534 km" +Charlotte,Appleton,,14 hours 31 mins,"1,536 km" +Orlando,Greensboro(North Carolina),,8 hours 39 mins,960 km +Orlando,Wilmington(North Carolina),,8 hours 15 mins,927 km +Orlando,New Bern(North Carolina),,9 hours 30 mins,"1,062 km" +Orlando,Charlotte(North Carolina),,7 hours 30 mins,843 km +Orlando,Raleigh(North Carolina),,8 hours 26 mins,955 km +Orlando,Asheville(North Carolina),,8 hours 25 mins,937 km +Orlando,Fayetteville(North Carolina),,7 hours 32 mins,859 km +Greensboro(North Carolina),Orlando,,8 hours 46 mins,949 km +Wilmington(North Carolina),Orlando,,8 hours 21 mins,931 km +New Bern(North Carolina),Orlando,,9 hours 37 mins,"1,064 km" +Charlotte(North Carolina),Orlando,,7 hours 34 mins,845 km +Raleigh(North Carolina),Orlando,,8 hours 34 mins,959 km +Asheville(North Carolina),Orlando,,8 hours 28 mins,939 km +Fayetteville(North Carolina),Orlando,,7 hours 38 mins,861 km +Fort Smith,Abilene(Texas),,6 hours 45 mins,749 km +Fort Smith,Amarillo(Texas),,6 hours 23 mins,708 km +Fort Smith,Harlingen(Texas),,11 hours 49 mins,"1,283 km" +Fort Smith,Lubbock(Texas),,7 hours 38 mins,839 km +Fort Smith,College Station(Texas),,6 hours 59 mins,734 km +Fort Smith,Corpus Christi(Texas),,10 hours 11 mins,"1,108 km" +Fort Smith,Wichita Falls(Texas),,4 hours 31 mins,505 km +Fort Smith,Waco(Texas),,5 hours 44 mins,601 km +Fort Smith,San Angelo(Texas),,8 hours 1 min,883 km +Fort Smith,Houston(Texas),,7 hours 39 mins,828 km +Fort Smith,San Antonio(Texas),,8 hours 20 mins,886 km +Fort Smith,Del Rio(Texas),,10 hours 26 mins,"1,136 km" +Fort Smith,Mission(Texas),,11 hours 49 mins,"1,271 km" +Fort Smith,Beaumont(Texas),,7 hours 37 mins,707 km +Fort Smith,Longview(Texas),,4 hours 21 mins,390 km +Fort Smith,Midland(Texas),,8 hours 36 mins,950 km +Fort Smith,El Paso(Texas),,12 hours 55 mins,"1,440 km" +Fort Smith,Brownsville(Texas),,12 hours 11 mins,"1,323 km" +Fort Smith,Austin(Texas),,7 hours 8 mins,760 km +Fort Smith,Dallas(Texas),,4 hours 19 mins,447 km +Fort Smith,Killeen(Texas),,6 hours 32 mins,694 km +Fort Smith,Laredo(Texas),,10 hours 36 mins,"1,137 km" +Fort Smith,Texarkana(Texas),,3 hours 32 mins,296 km +Abilene(Texas),Fort Smith,,6 hours 44 mins,748 km +Amarillo(Texas),Fort Smith,,6 hours 20 mins,707 km +Harlingen(Texas),Fort Smith,,11 hours 41 mins,"1,282 km" +Lubbock(Texas),Fort Smith,,7 hours 33 mins,838 km +College Station(Texas),Fort Smith,,6 hours 54 mins,733 km +Corpus Christi(Texas),Fort Smith,,10 hours 5 mins,"1,106 km" +Wichita Falls(Texas),Fort Smith,,4 hours 28 mins,504 km +Waco(Texas),Fort Smith,,5 hours 40 mins,597 km +San Angelo(Texas),Fort Smith,,7 hours 58 mins,882 km +Houston(Texas),Fort Smith,,7 hours 36 mins,827 km +San Antonio(Texas),Fort Smith,,8 hours 16 mins,885 km +Del Rio(Texas),Fort Smith,,10 hours 21 mins,"1,135 km" +Mission(Texas),Fort Smith,,11 hours 43 mins,"1,271 km" +Beaumont(Texas),Fort Smith,,7 hours 37 mins,708 km +Longview(Texas),Fort Smith,,4 hours 22 mins,390 km +Midland(Texas),Fort Smith,,8 hours 34 mins,951 km +El Paso(Texas),Fort Smith,,12 hours 53 mins,"1,404 km" +Brownsville(Texas),Fort Smith,,12 hours 4 mins,"1,322 km" +Austin(Texas),Fort Smith,,7 hours 5 mins,759 km +Dallas(Texas),Fort Smith,,4 hours 18 mins,446 km +Killeen(Texas),Fort Smith,,6 hours 30 mins,694 km +Laredo(Texas),Fort Smith,,10 hours 33 mins,"1,136 km" +Texarkana(Texas),Fort Smith,,3 hours 33 mins,296 km +Cincinnati,Charleston(South Carolina),,9 hours 20 mins,"1,000 km" +Cincinnati,Hilton Head(South Carolina),,9 hours 57 mins,"1,061 km" +Cincinnati,Greer(South Carolina),,6 hours 28 mins,670 km +Cincinnati,Greenville(South Carolina),,6 hours 29 mins,671 km +Cincinnati,Myrtle Beach(South Carolina),,10 hours 11 mins,"1,062 km" +Charleston(South Carolina),Cincinnati,,9 hours 23 mins,"1,000 km" +Hilton Head(South Carolina),Cincinnati,,9 hours 59 mins,"1,061 km" +Greer(South Carolina),Cincinnati,,6 hours 30 mins,669 km +Greenville(South Carolina),Cincinnati,,6 hours 30 mins,669 km +Myrtle Beach(South Carolina),Cincinnati,,10 hours 12 mins,"1,061 km" +Bozeman,Los Angeles,,16 hours 8 mins,"1,764 km" +Los Angeles,Bozeman,,16 hours 3 mins,"1,762 km" +Pittsburgh,Kansas City(Missouri),,12 hours 31 mins,"1,354 km" +Pittsburgh,Cape Girardeau(Missouri),,10 hours 4 mins,"1,065 km" +Pittsburgh,Branson(Missouri),,12 hours 44 mins,"1,372 km" +Pittsburgh,Fort Leonard Wood(Missouri),,11 hours 14 mins,"1,191 km" +Pittsburgh,St. Louis(Missouri),,9 hours 2 mins,968 km +Kansas City(Missouri),Pittsburgh,,12 hours 32 mins,"1,354 km" +Cape Girardeau(Missouri),Pittsburgh,,10 hours 4 mins,"1,064 km" +Branson(Missouri),Pittsburgh,,12 hours 45 mins,"1,371 km" +Fort Leonard Wood(Missouri),Pittsburgh,,11 hours 14 mins,"1,190 km" +St. Louis(Missouri),Pittsburgh,,9 hours 3 mins,969 km +Atlanta,Chicago,,10 hours 44 mins,"1,154 km" +Chicago,Atlanta,,10 hours 44 mins,"1,153 km" +Jacksonville,Norfolk,,8 hours 53 mins,986 km +Norfolk,Jacksonville,,8 hours 54 mins,986 km +Peoria,Nashville(Tennessee),,6 hours 38 mins,716 km +Peoria,Bristol(Tennessee),,9 hours 53 mins,"1,005 km" +Peoria,Knoxville(Tennessee),,8 hours 18 mins,912 km +Peoria,Chattanooga(Tennessee),,8 hours 31 mins,925 km +Peoria,Memphis(Tennessee),,6 hours 32 mins,725 km +Nashville(Tennessee),Peoria,,6 hours 34 mins,717 km +Bristol(Tennessee),Peoria,,9 hours 50 mins,"1,005 km" +Knoxville(Tennessee),Peoria,,8 hours 18 mins,913 km +Chattanooga(Tennessee),Peoria,,8 hours 30 mins,927 km +Memphis(Tennessee),Peoria,,6 hours 31 mins,725 km +New York,Minneapolis,,17 hours 56 mins,"1,926 km" +Minneapolis,New York,,17 hours 57 mins,"1,934 km" +Fort Myers,Trenton,,17 hours 36 mins,"1,917 km" +Trenton,Fort Myers,,17 hours 39 mins,"1,922 km" +Myrtle Beach,State College(Pennsylvania),,9 hours 55 mins,"1,026 km" +Myrtle Beach,Johnstown(Pennsylvania),,9 hours 29 mins,967 km +Myrtle Beach,Harrisburg(Pennsylvania),,8 hours 27 mins,872 km +Myrtle Beach,Erie(Pennsylvania),,11 hours 33 mins,"1,177 km" +Myrtle Beach,Pittsburgh(Pennsylvania),,9 hours 49 mins,982 km +Myrtle Beach,Latrobe(Pennsylvania),,9 hours 55 mins,997 km +Myrtle Beach,Philadelphia(Pennsylvania),,8 hours 54 mins,919 km +Myrtle Beach,Lewisburg(Pennsylvania),,9 hours 35 mins,971 km +Myrtle Beach,Scranton(Pennsylvania),,10 hours 18 mins,"1,069 km" +State College(Pennsylvania),Myrtle Beach,,10 hours 4 mins,"1,035 km" +Johnstown(Pennsylvania),Myrtle Beach,,9 hours 38 mins,970 km +Harrisburg(Pennsylvania),Myrtle Beach,,8 hours 38 mins,874 km +Erie(Pennsylvania),Myrtle Beach,,11 hours 38 mins,"1,179 km" +Pittsburgh(Pennsylvania),Myrtle Beach,,9 hours 51 mins,984 km +Latrobe(Pennsylvania),Myrtle Beach,,10 hours 2 mins,970 km +Philadelphia(Pennsylvania),Myrtle Beach,,9 hours 2 mins,924 km +Lewisburg(Pennsylvania),Myrtle Beach,,9 hours 46 mins,978 km +Scranton(Pennsylvania),Myrtle Beach,,10 hours 29 mins,"1,072 km" +Savannah,Evansville(Indiana),,9 hours 33 mins,"1,041 km" +Savannah,South Bend(Indiana),,13 hours 45 mins,"1,461 km" +Savannah,Fort Wayne(Indiana),,12 hours 56 mins,"1,355 km" +Savannah,Valparaiso(Indiana),,13 hours 52 mins,"1,481 km" +Savannah,Indianapolis(Indiana),,11 hours 30 mins,"1,240 km" +Evansville(Indiana),Savannah,,9 hours 31 mins,"1,037 km" +South Bend(Indiana),Savannah,,13 hours 42 mins,"1,462 km" +Fort Wayne(Indiana),Savannah,,12 hours 53 mins,"1,356 km" +Valparaiso(Indiana),Savannah,,13 hours 52 mins,"1,483 km" +Indianapolis(Indiana),Savannah,,11 hours 31 mins,"1,242 km" +Baltimore,Evansville(Indiana),,10 hours 54 mins,"1,177 km" +Baltimore,South Bend(Indiana),,9 hours 18 mins,988 km +Baltimore,Fort Wayne(Indiana),,8 hours 38 mins,899 km +Baltimore,Valparaiso(Indiana),,10 hours 4 mins,"1,066 km" +Baltimore,Indianapolis(Indiana),,8 hours 55 mins,931 km +Evansville(Indiana),Baltimore,,10 hours 56 mins,"1,177 km" +South Bend(Indiana),Baltimore,,9 hours 19 mins,989 km +Fort Wayne(Indiana),Baltimore,,8 hours 37 mins,904 km +Valparaiso(Indiana),Baltimore,,10 hours 7 mins,"1,068 km" +Indianapolis(Indiana),Baltimore,,8 hours 57 mins,931 km +Fort Lauderdale,Augusta(Georgia),,8 hours 39 mins,936 km +Fort Lauderdale,Decatur(Georgia),,9 hours 16 mins,"1,039 km" +Fort Lauderdale,Atlanta(Georgia),,9 hours 5 mins,"1,031 km" +Fort Lauderdale,Valdosta(Georgia),,5 hours 58 mins,668 km +Fort Lauderdale,Savannah(Georgia),,6 hours 37 mins,748 km +Augusta(Georgia),Fort Lauderdale,,8 hours 41 mins,938 km +Decatur(Georgia),Fort Lauderdale,,9 hours 18 mins,"1,031 km" +Atlanta(Georgia),Fort Lauderdale,,9 hours 6 mins,"1,030 km" +Valdosta(Georgia),Fort Lauderdale,,5 hours 59 mins,667 km +Savannah(Georgia),Fort Lauderdale,,6 hours 41 mins,750 km +Billings,Bemidji(Minnesota),,10 hours 48 mins,"1,186 km" +Billings,Minneapolis(Minnesota),,11 hours 53 mins,"1,349 km" +Billings,Duluth(Minnesota),,12 hours 52 mins,"1,368 km" +Billings,Brainerd(Minnesota),,10 hours 53 mins,"1,200 km" +Billings,Gustavus(Minnesota),,12 hours 3 mins,"1,318 km" +Billings,St. Cloud(Minnesota),,11 hours 5 mins,"1,247 km" +Billings,Hibbing(Minnesota),,12 hours 20 mins,"1,313 km" +Billings,International Falls(Minnesota),,12 hours 41 mins,"1,361 km" +Bemidji(Minnesota),Billings,,10 hours 49 mins,"1,188 km" +Minneapolis(Minnesota),Billings,,11 hours 56 mins,"1,352 km" +Duluth(Minnesota),Billings,,12 hours 55 mins,"1,371 km" +Brainerd(Minnesota),Billings,,10 hours 55 mins,"1,203 km" +Gustavus(Minnesota),Billings,,12 hours 8 mins,"1,320 km" +St. Cloud(Minnesota),Billings,,11 hours 6 mins,"1,257 km" +Hibbing(Minnesota),Billings,,12 hours 21 mins,"1,315 km" +International Falls(Minnesota),Billings,,12 hours 42 mins,"1,361 km" +Tulsa,Kansas City(Missouri),,3 hours 59 mins,436 km +Tulsa,Cape Girardeau(Missouri),,6 hours 43 mins,719 km +Tulsa,Branson(Missouri),,3 hours 15 mins,353 km +Tulsa,Fort Leonard Wood(Missouri),,4 hours 3 mins,435 km +Tulsa,St. Louis(Missouri),,5 hours 49 mins,635 km +Kansas City(Missouri),Tulsa,,3 hours 59 mins,434 km +Cape Girardeau(Missouri),Tulsa,,6 hours 45 mins,718 km +Branson(Missouri),Tulsa,,3 hours 16 mins,354 km +Fort Leonard Wood(Missouri),Tulsa,,4 hours 3 mins,435 km +St. Louis(Missouri),Tulsa,,5 hours 48 mins,634 km +Akron,Tampa,,15 hours 37 mins,"1,701 km" +Tampa,Akron,,15 hours 39 mins,"1,702 km" +Charlotte,Green Bay(Wisconsin),,14 hours 42 mins,"1,554 km" +Charlotte,Rhinelander(Wisconsin),,16 hours 28 mins,"1,762 km" +Charlotte,Marquette(Wisconsin),,14 hours 37 mins,"1,521 km" +Charlotte,Madison(Wisconsin),,13 hours 49 mins,"1,454 km" +Charlotte,La Crosse(Wisconsin),,15 hours 41 mins,"1,670 km" +Charlotte,Devils Lake(Wisconsin),,14 hours 29 mins,"1,518 km" +Charlotte,Appleton(Wisconsin),,14 hours 31 mins,"1,536 km" +Charlotte,Mosinee(Wisconsin),,15 hours 25 mins,"1,649 km" +Charlotte,Milwaukee(Wisconsin),,13 hours 1 min,"1,370 km" +Charlotte,Eau Claire(Wisconsin),,16 hours 11 mins,"1,728 km" +Green Bay(Wisconsin),Charlotte,,14 hours 39 mins,"1,553 km" +Rhinelander(Wisconsin),Charlotte,,16 hours 24 mins,"1,760 km" +Marquette(Wisconsin),Charlotte,,14 hours 34 mins,"1,520 km" +Madison(Wisconsin),Charlotte,,13 hours 43 mins,"1,451 km" +La Crosse(Wisconsin),Charlotte,,15 hours 36 mins,"1,667 km" +Devils Lake(Wisconsin),Charlotte,,14 hours 26 mins,"1,515 km" +Appleton(Wisconsin),Charlotte,,14 hours 27 mins,"1,534 km" +Mosinee(Wisconsin),Charlotte,,15 hours 20 mins,"1,647 km" +Milwaukee(Wisconsin),Charlotte,,12 hours 58 mins,"1,369 km" +Eau Claire(Wisconsin),Charlotte,,16 hours 6 mins,"1,725 km" +Phoenix,Green Bay(Wisconsin),,1 day 4 hours,"2,947 km" +Phoenix,Rhinelander(Wisconsin),,1 day 4 hours,"3,014 km" +Phoenix,Marquette(Wisconsin),,1 day 3 hours,"2,814 km" +Phoenix,Madison(Wisconsin),,1 day 2 hours,"2,719 km" +Phoenix,La Crosse(Wisconsin),,1 day 1 hour,"2,687 km" +Phoenix,Devils Lake(Wisconsin),,1 day 2 hours,"2,734 km" +Phoenix,Appleton(Wisconsin),,1 day 3 hours,"2,896 km" +Phoenix,Mosinee(Wisconsin),,1 day 3 hours,"2,886 km" +Phoenix,Milwaukee(Wisconsin),,1 day 3 hours,"2,943 km" +Phoenix,Eau Claire(Wisconsin),,1 day 2 hours,"2,773 km" +Green Bay(Wisconsin),Phoenix,,1 day 4 hours,"2,948 km" +Rhinelander(Wisconsin),Phoenix,,1 day 4 hours,"3,016 km" +Marquette(Wisconsin),Phoenix,,1 day 3 hours,"2,815 km" +Madison(Wisconsin),Phoenix,,1 day 2 hours,"2,721 km" +La Crosse(Wisconsin),Phoenix,,1 day 1 hour,"2,688 km" +Devils Lake(Wisconsin),Phoenix,,1 day 2 hours,"2,735 km" +Appleton(Wisconsin),Phoenix,,1 day 3 hours,"2,895 km" +Mosinee(Wisconsin),Phoenix,,1 day 3 hours,"2,890 km" +Milwaukee(Wisconsin),Phoenix,,1 day 3 hours,"2,944 km" +Eau Claire(Wisconsin),Phoenix,,1 day 2 hours,"2,736 km" +Knoxville,Denver,,19 hours 11 mins,"2,145 km" +Denver,Knoxville,,19 hours 11 mins,"2,149 km" +Dallas,Sarasota(Florida),,16 hours 51 mins,"1,859 km" +Dallas,Fort Myers(Florida),,17 hours 48 mins,"1,964 km" +Dallas,Gainesville(Florida),,14 hours 27 mins,"1,574 km" +Dallas,Orlando(Florida),,15 hours 51 mins,"1,747 km" +Dallas,Daytona Beach(Florida),,15 hours 55 mins,"1,747 km" +Dallas,Jacksonville(Florida),,14 hours 32 mins,"1,597 km" +Dallas,Tampa(Florida),,16 hours 3 mins,"1,774 km" +Dallas,Panama City(Florida),,11 hours 50 mins,"1,245 km" +Dallas,Key West(Florida),,22 hours 3 mins,"2,361 km" +Dallas,West Palm Beach(Florida),,18 hours 4 mins,"2,002 km" +Dallas,Miami(Florida),,19 hours 2 mins,"2,107 km" +Dallas,Tallahassee(Florida),,12 hours 22 mins,"1,338 km" +Dallas,Punta Gorda(Florida),,17 hours 22 mins,"1,929 km" +Dallas,Fort Lauderdale(Florida),,18 hours 42 mins,"2,070 km" +Dallas,Pensacola(Florida),,9 hours 45 mins,"1,041 km" +Sarasota(Florida),Dallas,,16 hours 49 mins,"1,863 km" +Fort Myers(Florida),Dallas,,17 hours 46 mins,"1,968 km" +Gainesville(Florida),Dallas,,14 hours 25 mins,"1,577 km" +Orlando(Florida),Dallas,,15 hours 46 mins,"1,748 km" +Daytona Beach(Florida),Dallas,,15 hours 52 mins,"1,740 km" +Jacksonville(Florida),Dallas,,14 hours 32 mins,"1,600 km" +Tampa(Florida),Dallas,,16 hours 1 min,"1,778 km" +Panama City(Florida),Dallas,,11 hours 47 mins,"1,248 km" +Key West(Florida),Dallas,,22 hours 2 mins,"2,364 km" +West Palm Beach(Florida),Dallas,,18 hours 1 min,"2,006 km" +Miami(Florida),Dallas,,18 hours 58 mins,"2,112 km" +Tallahassee(Florida),Dallas,,12 hours 20 mins,"1,341 km" +Punta Gorda(Florida),Dallas,,17 hours 20 mins,"1,932 km" +Fort Lauderdale(Florida),Dallas,,18 hours 39 mins,"2,075 km" +Pensacola(Florida),Dallas,,9 hours 42 mins,"1,044 km" +Jacksonville,Washington,,10 hours 13 mins,"1,136 km" +Washington,Jacksonville,,10 hours 12 mins,"1,136 km" +Pittsburgh,Detroit,,4 hours 16 mins,460 km +Detroit,Pittsburgh,,4 hours 17 mins,460 km +Manchester,Philadelphia,,, +Philadelphia,Manchester,,, +St. Cloud,Sarasota(Florida),,1 day 1 hour,"2,737 km" +St. Cloud,Fort Myers(Florida),,1 day 1 hour,"2,842 km" +St. Cloud,Gainesville(Florida),,22 hours 7 mins,"2,452 km" +St. Cloud,Orlando(Florida),,23 hours 31 mins,"2,625 km" +St. Cloud,Daytona Beach(Florida),,23 hours 35 mins,"2,624 km" +St. Cloud,Jacksonville(Florida),,22 hours 12 mins,"2,475 km" +St. Cloud,Tampa(Florida),,23 hours 43 mins,"2,652 km" +St. Cloud,Panama City(Florida),,20 hours 58 mins,"2,259 km" +St. Cloud,Key West(Florida),,1 day 6 hours,"3,238 km" +St. Cloud,West Palm Beach(Florida),,1 day 2 hours,"2,880 km" +St. Cloud,Miami(Florida),,1 day 3 hours,"2,985 km" +St. Cloud,Tallahassee(Florida),,21 hours 15 mins,"2,314 km" +St. Cloud,Punta Gorda(Florida),,1 day 1 hour,"2,807 km" +St. Cloud,Fort Lauderdale(Florida),,1 day 2 hours,"2,948 km" +St. Cloud,Pensacola(Florida),,19 hours 59 mins,"2,112 km" +Sarasota(Florida),St. Cloud,,1 day 1 hour,"2,742 km" +Fort Myers(Florida),St. Cloud,,1 day 2 hours,"2,848 km" +Gainesville(Florida),St. Cloud,,22 hours 9 mins,"2,457 km" +Orlando(Florida),St. Cloud,,23 hours 31 mins,"2,628 km" +Daytona Beach(Florida),St. Cloud,,23 hours 37 mins,"2,620 km" +Jacksonville(Florida),St. Cloud,,22 hours 17 mins,"2,480 km" +Tampa(Florida),St. Cloud,,23 hours 45 mins,"2,657 km" +Panama City(Florida),St. Cloud,,21 hours 3 mins,"2,258 km" +Key West(Florida),St. Cloud,,1 day 6 hours,"3,243 km" +West Palm Beach(Florida),St. Cloud,,1 day 2 hours,"2,886 km" +Miami(Florida),St. Cloud,,1 day 3 hours,"2,992 km" +Tallahassee(Florida),St. Cloud,,21 hours 20 mins,"2,313 km" +Punta Gorda(Florida),St. Cloud,,1 day 1 hour,"2,812 km" +Fort Lauderdale(Florida),St. Cloud,,1 day 2 hours,"2,954 km" +Pensacola(Florida),St. Cloud,,19 hours 59 mins,"2,111 km" +Dallas,Salt Lake City(Utah),,19 hours 4 mins,"2,000 km" +Dallas,Moab(Utah),,15 hours 22 mins,"1,624 km" +Dallas,Ogden(Utah),,19 hours 23 mins,"2,108 km" +Dallas,Vernal(Utah),,17 hours 11 mins,"1,707 km" +Dallas,Provo(Utah),,18 hours 27 mins,"1,929 km" +Dallas,Cedar City(Utah),,18 hours 17 mins,"1,919 km" +Salt Lake City(Utah),Dallas,,19 hours 2 mins,"2,001 km" +Moab(Utah),Dallas,,15 hours 20 mins,"1,625 km" +Ogden(Utah),Dallas,,19 hours 21 mins,"2,076 km" +Vernal(Utah),Dallas,,17 hours 12 mins,"1,791 km" +Provo(Utah),Dallas,,18 hours 27 mins,"1,931 km" +Cedar City(Utah),Dallas,,18 hours 14 mins,"1,921 km" +Nashville,Lake Charles(Louisiana),,10 hours 17 mins,"1,148 km" +Nashville,Baton Rouge(Louisiana),,8 hours 27 mins,947 km +Nashville,New Orleans(Louisiana),,7 hours 42 mins,858 km +Nashville,Shreveport(Louisiana),,8 hours 14 mins,901 km +Lake Charles(Louisiana),Nashville,,10 hours 17 mins,"1,148 km" +Baton Rouge(Louisiana),Nashville,,8 hours 28 mins,948 km +New Orleans(Louisiana),Nashville,,7 hours 41 mins,856 km +Shreveport(Louisiana),Nashville,,8 hours 12 mins,898 km +Las Vegas,Stockton,,7 hours 46 mins,835 km +Stockton,Las Vegas,,7 hours 50 mins,836 km +Denver,State College(Pennsylvania),,22 hours 45 mins,"2,505 km" +Denver,Johnstown(Pennsylvania),,22 hours 8 mins,"2,432 km" +Denver,Harrisburg(Pennsylvania),,23 hours 52 mins,"2,619 km" +Denver,Erie(Pennsylvania),,20 hours 50 mins,"2,311 km" +Denver,Pittsburgh(Pennsylvania),,20 hours 57 mins,"2,334 km" +Denver,Latrobe(Pennsylvania),,21 hours 36 mins,"2,389 km" +Denver,Philadelphia(Pennsylvania),,1 day 1 hour,"2,781 km" +Denver,Lewisburg(Pennsylvania),,23 hours 21 mins,"2,598 km" +Denver,Scranton(Pennsylvania),,1 day 1 hour,"2,723 km" +State College(Pennsylvania),Denver,,22 hours 43 mins,"2,505 km" +Johnstown(Pennsylvania),Denver,,22 hours 10 mins,"2,426 km" +Harrisburg(Pennsylvania),Denver,,23 hours 54 mins,"2,615 km" +Erie(Pennsylvania),Denver,,20 hours 51 mins,"2,305 km" +Pittsburgh(Pennsylvania),Denver,,20 hours 57 mins,"2,329 km" +Latrobe(Pennsylvania),Denver,,21 hours 39 mins,"2,368 km" +Philadelphia(Pennsylvania),Denver,,1 day 1 hour,"2,779 km" +Lewisburg(Pennsylvania),Denver,,23 hours 21 mins,"2,593 km" +Scranton(Pennsylvania),Denver,,1 day 1 hour,"2,718 km" +Scranton,Newark,,1 hour 51 mins,179 km +Newark,Scranton,,1 hour 51 mins,178 km +Manhattan,Abilene(Texas),,1 day 2 hours,"2,788 km" +Manhattan,Amarillo(Texas),,1 day 2 hours,"2,801 km" +Manhattan,Harlingen(Texas),,1 day 5 hours,"3,154 km" +Manhattan,Lubbock(Texas),,1 day 3 hours,"2,940 km" +Manhattan,College Station(Texas),,1 day 1 hour,"2,647 km" +Manhattan,Corpus Christi(Texas),,1 day 3 hours,"2,959 km" +Manhattan,Wichita Falls(Texas),,23 hours 48 mins,"2,605 km" +Manhattan,Waco(Texas),,1 day 0 hours,"2,653 km" +Manhattan,San Angelo(Texas),,1 day 3 hours,"2,911 km" +Manhattan,Houston(Texas),,1 day 0 hours,"2,626 km" +Manhattan,San Antonio(Texas),,1 day 3 hours,"2,940 km" +Manhattan,Del Rio(Texas),,1 day 5 hours,"3,187 km" +Manhattan,Mission(Texas),,1 day 5 hours,"3,194 km" +Manhattan,Beaumont(Texas),,22 hours 54 mins,"2,493 km" +Manhattan,Longview(Texas),,21 hours 57 mins,"2,381 km" +Manhattan,Midland(Texas),,1 day 4 hours,"3,028 km" +Manhattan,El Paso(Texas),,1 day 8 hours,"3,518 km" +Manhattan,Brownsville(Texas),,1 day 5 hours,"3,193 km" +Manhattan,Austin(Texas),,1 day 2 hours,"2,812 km" +Manhattan,Dallas(Texas),,23 hours 5 mins,"2,498 km" +Manhattan,Killeen(Texas),,1 day 1 hour,"2,746 km" +Manhattan,Laredo(Texas),,1 day 5 hours,"3,132 km" +Manhattan,Texarkana(Texas),,20 hours 36 mins,"2,218 km" +Abilene(Texas),Manhattan,,1 day 2 hours,"2,788 km" +Amarillo(Texas),Manhattan,,1 day 2 hours,"2,755 km" +Harlingen(Texas),Manhattan,,1 day 5 hours,"3,154 km" +Lubbock(Texas),Manhattan,,1 day 3 hours,"2,895 km" +College Station(Texas),Manhattan,,1 day 1 hour,"2,647 km" +Corpus Christi(Texas),Manhattan,,1 day 3 hours,"2,965 km" +Wichita Falls(Texas),Manhattan,,23 hours 53 mins,"2,560 km" +Waco(Texas),Manhattan,,1 day 0 hours,"2,649 km" +San Angelo(Texas),Manhattan,,1 day 3 hours,"2,912 km" +Houston(Texas),Manhattan,,1 day 0 hours,"2,627 km" +San Antonio(Texas),Manhattan,,1 day 3 hours,"2,937 km" +Del Rio(Texas),Manhattan,,1 day 5 hours,"3,165 km" +Mission(Texas),Manhattan,,1 day 5 hours,"3,195 km" +Beaumont(Texas),Manhattan,,22 hours 56 mins,"2,493 km" +Longview(Texas),Manhattan,,21 hours 57 mins,"2,380 km" +Midland(Texas),Manhattan,,1 day 4 hours,"3,028 km" +El Paso(Texas),Manhattan,,1 day 8 hours,"3,518 km" +Brownsville(Texas),Manhattan,,1 day 5 hours,"3,194 km" +Austin(Texas),Manhattan,,1 day 2 hours,"2,811 km" +Dallas(Texas),Manhattan,,23 hours 4 mins,"2,498 km" +Killeen(Texas),Manhattan,,1 day 1 hour,"2,746 km" +Laredo(Texas),Manhattan,,1 day 5 hours,"3,133 km" +Texarkana(Texas),Manhattan,,20 hours 35 mins,"2,216 km" +Nashville,Boston,,16 hours 37 mins,"1,781 km" +Boston,Nashville,,16 hours 37 mins,"1,779 km" +Richmond,Martha's Vineyard(Massachusetts),,10 hours 29 mins,966 km +Richmond,Hyannis(Massachusetts),,9 hours 26 mins,947 km +Richmond,Boston(Massachusetts),,8 hours 42 mins,882 km +Richmond,Nantucket(Massachusetts),,11 hours 43 mins,994 km +Martha's Vineyard(Massachusetts),Richmond,,10 hours 37 mins,977 km +Hyannis(Massachusetts),Richmond,,9 hours 29 mins,955 km +Boston(Massachusetts),Richmond,,8 hours 44 mins,892 km +Nantucket(Massachusetts),Richmond,,11 hours 46 mins,"1,006 km" +Trenton,Sarasota(Florida),,16 hours 42 mins,"1,817 km" +Trenton,Fort Myers(Florida),,17 hours 39 mins,"1,922 km" +Trenton,Gainesville(Florida),,14 hours 2 mins,"1,527 km" +Trenton,Orlando(Florida),,14 hours 54 mins,"1,644 km" +Trenton,Daytona Beach(Florida),,14 hours 17 mins,"1,570 km" +Trenton,Jacksonville(Florida),,12 hours 51 mins,"1,416 km" +Trenton,Tampa(Florida),,15 hours 54 mins,"1,732 km" +Trenton,Panama City(Florida),,16 hours 53 mins,"1,837 km" +Trenton,Key West(Florida),,20 hours 50 mins,"2,227 km" +Trenton,West Palm Beach(Florida),,16 hours 50 mins,"1,874 km" +Trenton,Miami(Florida),,17 hours 50 mins,"1,973 km" +Trenton,Tallahassee(Florida),,15 hours 15 mins,"1,675 km" +Trenton,Punta Gorda(Florida),,17 hours 14 mins,"1,887 km" +Trenton,Fort Lauderdale(Florida),,17 hours 28 mins,"1,942 km" +Trenton,Pensacola(Florida),,17 hours 3 mins,"1,830 km" +Sarasota(Florida),Trenton,,16 hours 39 mins,"1,811 km" +Fort Myers(Florida),Trenton,,17 hours 36 mins,"1,917 km" +Gainesville(Florida),Trenton,,14 hours 1 min,"1,521 km" +Orlando(Florida),Trenton,,14 hours 46 mins,"1,634 km" +Daytona Beach(Florida),Trenton,,14 hours 12 mins,"1,551 km" +Jacksonville(Florida),Trenton,,12 hours 49 mins,"1,409 km" +Tampa(Florida),Trenton,,15 hours 51 mins,"1,726 km" +Panama City(Florida),Trenton,,16 hours 50 mins,"1,832 km" +Key West(Florida),Trenton,,20 hours 46 mins,"2,218 km" +West Palm Beach(Florida),Trenton,,16 hours 44 mins,"1,865 km" +Miami(Florida),Trenton,,17 hours 43 mins,"1,966 km" +Tallahassee(Florida),Trenton,,15 hours 13 mins,"1,674 km" +Punta Gorda(Florida),Trenton,,17 hours 11 mins,"1,880 km" +Fort Lauderdale(Florida),Trenton,,17 hours 22 mins,"1,933 km" +Pensacola(Florida),Trenton,,16 hours 58 mins,"1,821 km" +Lewisburg,Chicago,,9 hours 20 mins,"1,006 km" +Chicago,Lewisburg,,9 hours 20 mins,"1,006 km" +Chicago,Albany,,, +Albany,Chicago,,, +Orlando,Newark,,15 hours 29 mins,"1,712 km" +Newark,Orlando,,15 hours 37 mins,"1,722 km" +Fort Lauderdale,Lake Charles(Louisiana),,14 hours 30 mins,"1,647 km" +Fort Lauderdale,Baton Rouge(Louisiana),,12 hours 40 mins,"1,446 km" +Fort Lauderdale,New Orleans(Louisiana),,11 hours 54 mins,"1,356 km" +Fort Lauderdale,Shreveport(Louisiana),,16 hours 0 mins,"1,774 km" +Lake Charles(Louisiana),Fort Lauderdale,,14 hours 31 mins,"1,645 km" +Baton Rouge(Louisiana),Fort Lauderdale,,12 hours 42 mins,"1,445 km" +New Orleans(Louisiana),Fort Lauderdale,,11 hours 56 mins,"1,353 km" +Shreveport(Louisiana),Fort Lauderdale,,16 hours 3 mins,"1,772 km" +Peoria,Greensboro(North Carolina),,11 hours 37 mins,"1,223 km" +Peoria,Wilmington(North Carolina),,14 hours 31 mins,"1,550 km" +Peoria,New Bern(North Carolina),,14 hours 30 mins,"1,528 km" +Peoria,Charlotte(North Carolina),,11 hours 55 mins,"1,259 km" +Peoria,Raleigh(North Carolina),,12 hours 47 mins,"1,343 km" +Peoria,Asheville(North Carolina),,10 hours 7 mins,"1,095 km" +Peoria,Fayetteville(North Carolina),,13 hours 7 mins,"1,368 km" +Greensboro(North Carolina),Peoria,,11 hours 39 mins,"1,222 km" +Wilmington(North Carolina),Peoria,,14 hours 32 mins,"1,549 km" +New Bern(North Carolina),Peoria,,14 hours 31 mins,"1,527 km" +Charlotte(North Carolina),Peoria,,11 hours 58 mins,"1,260 km" +Raleigh(North Carolina),Peoria,,12 hours 46 mins,"1,342 km" +Asheville(North Carolina),Peoria,,10 hours 7 mins,"1,095 km" +Fayetteville(North Carolina),Peoria,,13 hours 9 mins,"1,368 km" +Salt Lake City,Miami,,1 day 13 hours,"4,086 km" +Miami,Salt Lake City,,1 day 13 hours,"4,088 km" +Montgomery,Dallas,,9 hours 44 mins,"1,045 km" +Dallas,Montgomery,,9 hours 45 mins,"1,043 km" +Orlando,San Diego,,1 day 11 hours,"3,912 km" +San Diego,Orlando,,1 day 11 hours,"3,913 km" +Sioux Falls,Minneapolis,,3 hours 48 mins,383 km +Minneapolis,Sioux Falls,,3 hours 45 mins,381 km +Bozeman,Salt Lake City(Utah),,6 hours 20 mins,660 km +Bozeman,Moab(Utah),,9 hours 55 mins,"1,032 km" +Bozeman,Ogden(Utah),,5 hours 51 mins,604 km +Bozeman,Vernal(Utah),,8 hours 53 mins,801 km +Bozeman,Provo(Utah),,6 hours 58 mins,729 km +Bozeman,Cedar City(Utah),,9 hours 45 mins,"1,061 km" +Salt Lake City(Utah),Bozeman,,6 hours 17 mins,658 km +Moab(Utah),Bozeman,,9 hours 52 mins,"1,031 km" +Ogden(Utah),Bozeman,,5 hours 49 mins,602 km +Vernal(Utah),Bozeman,,8 hours 49 mins,801 km +Provo(Utah),Bozeman,,6 hours 55 mins,727 km +Cedar City(Utah),Bozeman,,9 hours 42 mins,"1,059 km" +Tucson,Seattle(Washington),,22 hours 57 mins,"2,456 km" +Tucson,Wenatchee(Washington),,22 hours 0 mins,"2,335 km" +Tucson,Pasco(Washington),,19 hours 52 mins,"2,130 km" +Tucson,Yakima(Washington),,20 hours 49 mins,"2,229 km" +Tucson,Walla Walla(Washington),,19 hours 26 mins,"2,070 km" +Tucson,Everett(Washington),,23 hours 19 mins,"2,491 km" +Tucson,Spokane(Washington),,21 hours 53 mins,"2,403 km" +Seattle(Washington),Tucson,,23 hours 0 mins,"2,455 km" +Wenatchee(Washington),Tucson,,22 hours 4 mins,"2,335 km" +Pasco(Washington),Tucson,,19 hours 57 mins,"2,129 km" +Yakima(Washington),Tucson,,20 hours 52 mins,"2,227 km" +Walla Walla(Washington),Tucson,,19 hours 31 mins,"2,069 km" +Everett(Washington),Tucson,,23 hours 20 mins,"2,490 km" +Spokane(Washington),Tucson,,21 hours 56 mins,"2,339 km" +Providence,Augusta(Georgia),,14 hours 37 mins,"1,545 km" +Providence,Decatur(Georgia),,16 hours 1 min,"1,682 km" +Providence,Atlanta(Georgia),,16 hours 1 min,"1,689 km" +Providence,Valdosta(Georgia),,17 hours 47 mins,"1,870 km" +Providence,Savannah(Georgia),,14 hours 57 mins,"1,586 km" +Augusta(Georgia),Providence,,14 hours 32 mins,"1,539 km" +Decatur(Georgia),Providence,,15 hours 57 mins,"1,673 km" +Atlanta(Georgia),Providence,,15 hours 56 mins,"1,681 km" +Valdosta(Georgia),Providence,,17 hours 42 mins,"1,864 km" +Savannah(Georgia),Providence,,14 hours 51 mins,"1,578 km" +Jackson,Abilene(Texas),,, +Jackson,Amarillo(Texas),,, +Jackson,Harlingen(Texas),,, +Jackson,Lubbock(Texas),,, +Jackson,College Station(Texas),,, +Jackson,Corpus Christi(Texas),,, +Jackson,Wichita Falls(Texas),,, +Jackson,Waco(Texas),,, +Jackson,San Angelo(Texas),,, +Jackson,Houston(Texas),,, +Jackson,San Antonio(Texas),,, +Jackson,Del Rio(Texas),,, +Jackson,Mission(Texas),,, +Jackson,Beaumont(Texas),,, +Jackson,Longview(Texas),,, +Jackson,Midland(Texas),,, +Jackson,El Paso(Texas),,, +Jackson,Brownsville(Texas),,, +Jackson,Austin(Texas),,, +Jackson,Dallas(Texas),,, +Jackson,Killeen(Texas),,, +Jackson,Laredo(Texas),,, +Jackson,Texarkana(Texas),,, +Abilene(Texas),Jackson,,, +Amarillo(Texas),Jackson,,, +Harlingen(Texas),Jackson,,, +Lubbock(Texas),Jackson,,, +College Station(Texas),Jackson,,, +Corpus Christi(Texas),Jackson,,, +Wichita Falls(Texas),Jackson,,, +Waco(Texas),Jackson,,, +San Angelo(Texas),Jackson,,, +Houston(Texas),Jackson,,, +San Antonio(Texas),Jackson,,, +Del Rio(Texas),Jackson,,, +Mission(Texas),Jackson,,, +Beaumont(Texas),Jackson,,, +Longview(Texas),Jackson,,, +Midland(Texas),Jackson,,, +El Paso(Texas),Jackson,,, +Brownsville(Texas),Jackson,,, +Austin(Texas),Jackson,,, +Dallas(Texas),Jackson,,, +Killeen(Texas),Jackson,,, +Laredo(Texas),Jackson,,, +Texarkana(Texas),Jackson,,, +Albuquerque,Flagstaff(Arizona),,4 hours 43 mins,519 km +Albuquerque,Yuma(Arizona),,9 hours 8 mins,968 km +Albuquerque,Phoenix(Arizona),,6 hours 30 mins,674 km +Albuquerque,Prescott(Arizona),,6 hours 15 mins,670 km +Albuquerque,Tucson(Arizona),,6 hours 32 mins,727 km +Flagstaff(Arizona),Albuquerque,,4 hours 39 mins,519 km +Yuma(Arizona),Albuquerque,,9 hours 8 mins,967 km +Phoenix(Arizona),Albuquerque,,6 hours 29 mins,675 km +Prescott(Arizona),Albuquerque,,6 hours 10 mins,670 km +Tucson(Arizona),Albuquerque,,6 hours 34 mins,728 km +Wichita,Alamosa(Colorado),,8 hours 27 mins,819 km +Wichita,Grand Junction(Colorado),,11 hours 6 mins,"1,224 km" +Wichita,Durango(Colorado),,11 hours 19 mins,"1,059 km" +Wichita,Colorado Springs(Colorado),,7 hours 23 mins,809 km +Wichita,Gunnison(Colorado),,10 hours 5 mins,936 km +Wichita,Denver(Colorado),,7 hours 26 mins,835 km +Alamosa(Colorado),Wichita,,8 hours 24 mins,838 km +Grand Junction(Colorado),Wichita,,10 hours 59 mins,"1,223 km" +Durango(Colorado),Wichita,,11 hours 15 mins,"1,078 km" +Colorado Springs(Colorado),Wichita,,7 hours 19 mins,808 km +Gunnison(Colorado),Wichita,,10 hours 5 mins,960 km +Denver(Colorado),Wichita,,7 hours 24 mins,837 km +Greensboro,Sarasota(Florida),,10 hours 34 mins,"1,122 km" +Greensboro,Fort Myers(Florida),,11 hours 31 mins,"1,227 km" +Greensboro,Gainesville(Florida),,7 hours 54 mins,832 km +Greensboro,Orlando(Florida),,8 hours 46 mins,949 km +Greensboro,Daytona Beach(Florida),,8 hours 9 mins,875 km +Greensboro,Jacksonville(Florida),,6 hours 43 mins,721 km +Greensboro,Tampa(Florida),,9 hours 46 mins,"1,037 km" +Greensboro,Panama City(Florida),,9 hours 48 mins,997 km +Greensboro,Key West(Florida),,14 hours 42 mins,"1,532 km" +Greensboro,West Palm Beach(Florida),,10 hours 42 mins,"1,179 km" +Greensboro,Miami(Florida),,11 hours 42 mins,"1,278 km" +Greensboro,Tallahassee(Florida),,8 hours 59 mins,860 km +Greensboro,Punta Gorda(Florida),,11 hours 5 mins,"1,192 km" +Greensboro,Fort Lauderdale(Florida),,11 hours 19 mins,"1,247 km" +Greensboro,Pensacola(Florida),,9 hours 51 mins,"1,054 km" +Sarasota(Florida),Greensboro,,10 hours 32 mins,"1,136 km" +Fort Myers(Florida),Greensboro,,11 hours 29 mins,"1,242 km" +Gainesville(Florida),Greensboro,,7 hours 54 mins,847 km +Orlando(Florida),Greensboro,,8 hours 39 mins,960 km +Daytona Beach(Florida),Greensboro,,8 hours 5 mins,877 km +Jacksonville(Florida),Greensboro,,6 hours 42 mins,734 km +Tampa(Florida),Greensboro,,9 hours 44 mins,"1,051 km" +Panama City(Florida),Greensboro,,9 hours 46 mins,998 km +Key West(Florida),Greensboro,,14 hours 39 mins,"1,543 km" +West Palm Beach(Florida),Greensboro,,10 hours 37 mins,"1,190 km" +Miami(Florida),Greensboro,,11 hours 36 mins,"1,292 km" +Tallahassee(Florida),Greensboro,,9 hours 0 mins,860 km +Punta Gorda(Florida),Greensboro,,11 hours 4 mins,"1,206 km" +Fort Lauderdale(Florida),Greensboro,,11 hours 15 mins,"1,258 km" +Pensacola(Florida),Greensboro,,9 hours 47 mins,"1,054 km" +Kona,San Diego(California),,, +Kona,Redding(California),,, +Kona,Sacramento(California),,, +Kona,Fresno(California),,, +Kona,San Luis Obispo(California),,, +Kona,Oakland(California),,, +Kona,Santa Barbara(California),,, +Kona,Stockton(California),,, +Kona,Santa Rosa(California),,, +Kona,Bakersfield(California),,, +Kona,Santa Ana(California),,, +Kona,Santa Maria(California),,, +Kona,San Jose(California),,, +Kona,Burbank(California),,, +Kona,Arcata(California),,, +Kona,Butte(California),,, +Kona,Palm Springs(California),,, +Kona,Los Angeles(California),,, +Kona,Long Beach(California),,, +Kona,San Francisco(California),,, +Kona,Monterey(California),,, +San Diego(California),Kona,,, +Redding(California),Kona,,, +Sacramento(California),Kona,,, +Fresno(California),Kona,,, +San Luis Obispo(California),Kona,,, +Oakland(California),Kona,,, +Santa Barbara(California),Kona,,, +Stockton(California),Kona,,, +Santa Rosa(California),Kona,,, +Bakersfield(California),Kona,,, +Santa Ana(California),Kona,,, +Santa Maria(California),Kona,,, +San Jose(California),Kona,,, +Burbank(California),Kona,,, +Arcata(California),Kona,,, +Butte(California),Kona,,, +Palm Springs(California),Kona,,, +Los Angeles(California),Kona,,, +Long Beach(California),Kona,,, +San Francisco(California),Kona,,, +Monterey(California),Kona,,, +Oklahoma City,Sarasota(Florida),,19 hours 30 mins,"2,181 km" +Oklahoma City,Fort Myers(Florida),,20 hours 28 mins,"2,287 km" +Oklahoma City,Gainesville(Florida),,17 hours 6 mins,"1,897 km" +Oklahoma City,Orlando(Florida),,18 hours 30 mins,"2,069 km" +Oklahoma City,Daytona Beach(Florida),,18 hours 35 mins,"2,069 km" +Oklahoma City,Jacksonville(Florida),,17 hours 12 mins,"1,919 km" +Oklahoma City,Tampa(Florida),,18 hours 43 mins,"2,097 km" +Oklahoma City,Panama City(Florida),,14 hours 48 mins,"1,557 km" +Oklahoma City,Key West(Florida),,1 day 1 hour,"2,683 km" +Oklahoma City,West Palm Beach(Florida),,20 hours 44 mins,"2,325 km" +Oklahoma City,Miami(Florida),,21 hours 42 mins,"2,430 km" +Oklahoma City,Tallahassee(Florida),,15 hours 5 mins,"1,612 km" +Oklahoma City,Punta Gorda(Florida),,20 hours 2 mins,"2,252 km" +Oklahoma City,Fort Lauderdale(Florida),,21 hours 21 mins,"2,393 km" +Oklahoma City,Pensacola(Florida),,12 hours 41 mins,"1,368 km" +Sarasota(Florida),Oklahoma City,,19 hours 27 mins,"2,196 km" +Fort Myers(Florida),Oklahoma City,,20 hours 23 mins,"2,302 km" +Gainesville(Florida),Oklahoma City,,17 hours 2 mins,"1,911 km" +Orlando(Florida),Oklahoma City,,18 hours 24 mins,"2,082 km" +Daytona Beach(Florida),Oklahoma City,,18 hours 30 mins,"2,074 km" +Jacksonville(Florida),Oklahoma City,,17 hours 10 mins,"1,934 km" +Tampa(Florida),Oklahoma City,,18 hours 38 mins,"2,111 km" +Panama City(Florida),Oklahoma City,,14 hours 47 mins,"1,567 km" +Key West(Florida),Oklahoma City,,1 day 1 hour,"2,697 km" +West Palm Beach(Florida),Oklahoma City,,20 hours 39 mins,"2,340 km" +Miami(Florida),Oklahoma City,,21 hours 36 mins,"2,446 km" +Tallahassee(Florida),Oklahoma City,,15 hours 4 mins,"1,622 km" +Punta Gorda(Florida),Oklahoma City,,19 hours 58 mins,"2,266 km" +Fort Lauderdale(Florida),Oklahoma City,,21 hours 17 mins,"2,408 km" +Pensacola(Florida),Oklahoma City,,12 hours 42 mins,"1,375 km" +Savannah,Abilene(Texas),,17 hours 25 mins,"1,947 km" +Savannah,Amarillo(Texas),,19 hours 34 mins,"2,193 km" +Savannah,Harlingen(Texas),,19 hours 17 mins,"2,081 km" +Savannah,Lubbock(Texas),,19 hours 49 mins,"2,211 km" +Savannah,College Station(Texas),,15 hours 49 mins,"1,699 km" +Savannah,Corpus Christi(Texas),,17 hours 31 mins,"1,887 km" +Savannah,Wichita Falls(Texas),,16 hours 51 mins,"1,885 km" +Savannah,Waco(Texas),,15 hours 53 mins,"1,733 km" +Savannah,San Angelo(Texas),,18 hours 39 mins,"2,070 km" +Savannah,Houston(Texas),,14 hours 24 mins,"1,553 km" +Savannah,San Antonio(Texas),,17 hours 16 mins,"1,867 km" +Savannah,Del Rio(Texas),,19 hours 40 mins,"2,114 km" +Savannah,Mission(Texas),,19 hours 43 mins,"2,121 km" +Savannah,Beaumont(Texas),,13 hours 11 mins,"1,420 km" +Savannah,Longview(Texas),,13 hours 8 mins,"1,458 km" +Savannah,Midland(Texas),,19 hours 34 mins,"2,187 km" +Savannah,El Paso(Texas),,23 hours 52 mins,"2,677 km" +Savannah,Brownsville(Texas),,19 hours 38 mins,"2,121 km" +Savannah,Austin(Texas),,16 hours 52 mins,"1,816 km" +Savannah,Dallas(Texas),,14 hours 51 mins,"1,658 km" +Savannah,Killeen(Texas),,16 hours 42 mins,"1,829 km" +Savannah,Laredo(Texas),,19 hours 23 mins,"2,059 km" +Savannah,Texarkana(Texas),,13 hours 11 mins,"1,473 km" +Abilene(Texas),Savannah,,17 hours 25 mins,"1,947 km" +Amarillo(Texas),Savannah,,19 hours 32 mins,"2,179 km" +Harlingen(Texas),Savannah,,19 hours 12 mins,"2,082 km" +Lubbock(Texas),Savannah,,19 hours 44 mins,"2,212 km" +College Station(Texas),Savannah,,15 hours 44 mins,"1,702 km" +Corpus Christi(Texas),Savannah,,17 hours 34 mins,"1,892 km" +Wichita Falls(Texas),Savannah,,16 hours 53 mins,"1,876 km" +Waco(Texas),Savannah,,15 hours 51 mins,"1,733 km" +San Angelo(Texas),Savannah,,18 hours 37 mins,"2,071 km" +Houston(Texas),Savannah,,14 hours 22 mins,"1,554 km" +San Antonio(Texas),Savannah,,17 hours 15 mins,"1,868 km" +Del Rio(Texas),Savannah,,19 hours 40 mins,"2,115 km" +Mission(Texas),Savannah,,19 hours 40 mins,"2,122 km" +Beaumont(Texas),Savannah,,13 hours 9 mins,"1,420 km" +Longview(Texas),Savannah,,13 hours 6 mins,"1,457 km" +Midland(Texas),Savannah,,19 hours 30 mins,"2,187 km" +El Paso(Texas),Savannah,,23 hours 48 mins,"2,677 km" +Brownsville(Texas),Savannah,,19 hours 36 mins,"2,122 km" +Austin(Texas),Savannah,,16 hours 49 mins,"1,817 km" +Dallas(Texas),Savannah,,14 hours 50 mins,"1,656 km" +Killeen(Texas),Savannah,,16 hours 41 mins,"1,829 km" +Laredo(Texas),Savannah,,19 hours 19 mins,"2,060 km" +Texarkana(Texas),Savannah,,13 hours 12 mins,"1,475 km" +Minneapolis,Green Bay(Wisconsin),,4 hours 16 mins,447 km +Minneapolis,Rhinelander(Wisconsin),,3 hours 43 mins,389 km +Minneapolis,Marquette(Wisconsin),,4 hours 1 min,405 km +Minneapolis,Madison(Wisconsin),,4 hours 7 mins,432 km +Minneapolis,La Crosse(Wisconsin),,2 hours 33 mins,255 km +Minneapolis,Devils Lake(Wisconsin),,3 hours 30 mins,374 km +Minneapolis,Appleton(Wisconsin),,4 hours 20 mins,457 km +Minneapolis,Mosinee(Wisconsin),,2 hours 57 mins,303 km +Minneapolis,Milwaukee(Wisconsin),,4 hours 56 mins,542 km +Minneapolis,Eau Claire(Wisconsin),,1 hour 34 mins,148 km +Green Bay(Wisconsin),Minneapolis,,4 hours 14 mins,449 km +Rhinelander(Wisconsin),Minneapolis,,3 hours 43 mins,390 km +Marquette(Wisconsin),Minneapolis,,4 hours 2 mins,406 km +Madison(Wisconsin),Minneapolis,,4 hours 10 mins,434 km +La Crosse(Wisconsin),Minneapolis,,2 hours 32 mins,256 km +Devils Lake(Wisconsin),Minneapolis,,3 hours 33 mins,376 km +Appleton(Wisconsin),Minneapolis,,4 hours 17 mins,456 km +Mosinee(Wisconsin),Minneapolis,,2 hours 56 mins,304 km +Milwaukee(Wisconsin),Minneapolis,,4 hours 57 mins,543 km +Eau Claire(Wisconsin),Minneapolis,,1 hour 33 mins,149 km +Dayton,Sarasota(Florida),,14 hours 47 mins,"1,644 km" +Dayton,Fort Myers(Florida),,15 hours 45 mins,"1,749 km" +Dayton,Gainesville(Florida),,12 hours 23 mins,"1,359 km" +Dayton,Orlando(Florida),,13 hours 47 mins,"1,532 km" +Dayton,Daytona Beach(Florida),,13 hours 51 mins,"1,502 km" +Dayton,Jacksonville(Florida),,12 hours 26 mins,"1,348 km" +Dayton,Tampa(Florida),,14 hours 0 mins,"1,559 km" +Dayton,Panama City(Florida),,12 hours 12 mins,"1,258 km" +Dayton,Key West(Florida),,19 hours 59 mins,"2,146 km" +Dayton,West Palm Beach(Florida),,16 hours 1 min,"1,787 km" +Dayton,Miami(Florida),,16 hours 59 mins,"1,892 km" +Dayton,Tallahassee(Florida),,11 hours 49 mins,"1,258 km" +Dayton,Punta Gorda(Florida),,15 hours 19 mins,"1,714 km" +Dayton,Fort Lauderdale(Florida),,16 hours 38 mins,"1,855 km" +Dayton,Pensacola(Florida),,11 hours 24 mins,"1,236 km" +Sarasota(Florida),Dayton,,14 hours 46 mins,"1,645 km" +Fort Myers(Florida),Dayton,,15 hours 42 mins,"1,751 km" +Gainesville(Florida),Dayton,,12 hours 21 mins,"1,359 km" +Orlando(Florida),Dayton,,13 hours 43 mins,"1,531 km" +Daytona Beach(Florida),Dayton,,13 hours 49 mins,"1,522 km" +Jacksonville(Florida),Dayton,,12 hours 27 mins,"1,349 km" +Tampa(Florida),Dayton,,13 hours 57 mins,"1,560 km" +Panama City(Florida),Dayton,,12 hours 12 mins,"1,253 km" +Key West(Florida),Dayton,,19 hours 58 mins,"2,146 km" +West Palm Beach(Florida),Dayton,,15 hours 58 mins,"1,789 km" +Miami(Florida),Dayton,,16 hours 55 mins,"1,895 km" +Tallahassee(Florida),Dayton,,11 hours 48 mins,"1,258 km" +Punta Gorda(Florida),Dayton,,15 hours 17 mins,"1,715 km" +Fort Lauderdale(Florida),Dayton,,16 hours 36 mins,"1,857 km" +Pensacola(Florida),Dayton,,11 hours 19 mins,"1,234 km" +Philadelphia,Knoxville,,9 hours 23 mins,"1,006 km" +Knoxville,Philadelphia,,9 hours 20 mins,"1,007 km" +Oklahoma City,Alamosa(Colorado),,8 hours 53 mins,922 km +Oklahoma City,Grand Junction(Colorado),,13 hours 10 mins,"1,282 km" +Oklahoma City,Durango(Colorado),,11 hours 17 mins,"1,213 km" +Oklahoma City,Colorado Springs(Colorado),,9 hours 0 mins,952 km +Oklahoma City,Gunnison(Colorado),,10 hours 51 mins,"1,083 km" +Oklahoma City,Denver(Colorado),,9 hours 43 mins,"1,091 km" +Alamosa(Colorado),Oklahoma City,,8 hours 50 mins,920 km +Grand Junction(Colorado),Oklahoma City,,13 hours 12 mins,"1,281 km" +Durango(Colorado),Oklahoma City,,11 hours 13 mins,"1,212 km" +Colorado Springs(Colorado),Oklahoma City,,8 hours 58 mins,953 km +Gunnison(Colorado),Oklahoma City,,10 hours 47 mins,"1,082 km" +Denver(Colorado),Oklahoma City,,9 hours 39 mins,"1,093 km" +Kansas City,Greensboro(North Carolina),,14 hours 50 mins,"1,600 km" +Kansas City,Wilmington(North Carolina),,17 hours 35 mins,"1,877 km" +Kansas City,New Bern(North Carolina),,17 hours 43 mins,"1,905 km" +Kansas City,Charlotte(North Carolina),,14 hours 24 mins,"1,547 km" +Kansas City,Raleigh(North Carolina),,16 hours 0 mins,"1,719 km" +Kansas City,Asheville(North Carolina),,12 hours 30 mins,"1,363 km" +Kansas City,Fayetteville(North Carolina),,16 hours 20 mins,"1,744 km" +Greensboro(North Carolina),Kansas City,,14 hours 50 mins,"1,596 km" +Wilmington(North Carolina),Kansas City,,17 hours 34 mins,"1,876 km" +New Bern(North Carolina),Kansas City,,17 hours 42 mins,"1,901 km" +Charlotte(North Carolina),Kansas City,,14 hours 22 mins,"1,544 km" +Raleigh(North Carolina),Kansas City,,15 hours 57 mins,"1,716 km" +Asheville(North Carolina),Kansas City,,12 hours 28 mins,"1,361 km" +Fayetteville(North Carolina),Kansas City,,16 hours 20 mins,"1,742 km" +Houston,Colorado Springs,,14 hours 13 mins,"1,546 km" +Colorado Springs,Houston,,14 hours 13 mins,"1,551 km" +Syracuse,Denver,,1 day 0 hours,"2,678 km" +Denver,Syracuse,,1 day 0 hours,"2,683 km" +Washington,Green Bay(Wisconsin),,13 hours 47 mins,"1,450 km" +Washington,Rhinelander(Wisconsin),,15 hours 37 mins,"1,663 km" +Washington,Marquette(Wisconsin),,13 hours 43 mins,"1,417 km" +Washington,Madison(Wisconsin),,12 hours 59 mins,"1,355 km" +Washington,La Crosse(Wisconsin),,14 hours 50 mins,"1,571 km" +Washington,Devils Lake(Wisconsin),,13 hours 38 mins,"1,419 km" +Washington,Appleton(Wisconsin),,13 hours 37 mins,"1,431 km" +Washington,Mosinee(Wisconsin),,14 hours 34 mins,"1,550 km" +Washington,Milwaukee(Wisconsin),,12 hours 6 mins,"1,266 km" +Washington,Eau Claire(Wisconsin),,15 hours 20 mins,"1,628 km" +Green Bay(Wisconsin),Washington,,14 hours 3 mins,"1,450 km" +Rhinelander(Wisconsin),Washington,,15 hours 49 mins,"1,672 km" +Marquette(Wisconsin),Washington,,13 hours 58 mins,"1,417 km" +Madison(Wisconsin),Washington,,13 hours 8 mins,"1,363 km" +La Crosse(Wisconsin),Washington,,15 hours 1 min,"1,579 km" +Devils Lake(Wisconsin),Washington,,13 hours 50 mins,"1,428 km" +Appleton(Wisconsin),Washington,,13 hours 50 mins,"1,430 km" +Mosinee(Wisconsin),Washington,,14 hours 45 mins,"1,559 km" +Milwaukee(Wisconsin),Washington,,12 hours 22 mins,"1,266 km" +Eau Claire(Wisconsin),Washington,,15 hours 31 mins,"1,637 km" +Wichita,Dallas,,5 hours 19 mins,585 km +Dallas,Wichita,,5 hours 19 mins,585 km +West Palm Beach,White Plains,,18 hours 6 mins,"2,007 km" +White Plains,West Palm Beach,,18 hours 12 mins,"2,016 km" +Cleveland,Alamosa(Colorado),,22 hours 4 mins,"2,393 km" +Cleveland,Grand Junction(Colorado),,22 hours 56 mins,"2,527 km" +Cleveland,Durango(Colorado),,1 day 1 hour,"2,633 km" +Cleveland,Colorado Springs(Colorado),,20 hours 14 mins,"2,256 km" +Cleveland,Gunnison(Colorado),,22 hours 41 mins,"2,458 km" +Cleveland,Denver(Colorado),,19 hours 19 mins,"2,141 km" +Alamosa(Colorado),Cleveland,,22 hours 1 min,"2,395 km" +Grand Junction(Colorado),Cleveland,,22 hours 53 mins,"2,530 km" +Durango(Colorado),Cleveland,,1 day 1 hour,"2,635 km" +Colorado Springs(Colorado),Cleveland,,20 hours 12 mins,"2,257 km" +Gunnison(Colorado),Cleveland,,22 hours 39 mins,"2,462 km" +Denver(Colorado),Cleveland,,19 hours 20 mins,"2,147 km" +Grand Rapids,Buffalo(New York),,5 hours 48 mins,620 km +Grand Rapids,Manhattan(New York),,11 hours 14 mins,"1,213 km" +Grand Rapids,Niagara Falls(New York),,5 hours 37 mins,598 km +Grand Rapids,Islip(New York),,12 hours 1 min,"1,284 km" +Grand Rapids,New York(New York),,11 hours 11 mins,"1,200 km" +Grand Rapids,Watertown(New York),,8 hours 37 mins,922 km +Grand Rapids,Newburgh(New York),,11 hours 8 mins,"1,213 km" +Grand Rapids,Syracuse(New York),,7 hours 56 mins,854 km +Grand Rapids,Plattsburgh(New York),,10 hours 47 mins,"1,126 km" +Grand Rapids,Ogdensburg(New York),,8 hours 43 mins,938 km +Grand Rapids,Ithaca(New York),,8 hours 16 mins,859 km +Grand Rapids,Elmira(New York),,8 hours 15 mins,850 km +Grand Rapids,White Plains(New York),,11 hours 18 mins,"1,238 km" +Grand Rapids,Albany(New York),,9 hours 56 mins,"1,081 km" +Grand Rapids,Binghamton(New York),,9 hours 1 min,972 km +Grand Rapids,Rochester(New York),,6 hours 51 mins,733 km +Buffalo(New York),Grand Rapids,,5 hours 52 mins,621 km +Manhattan(New York),Grand Rapids,,11 hours 13 mins,"1,212 km" +Niagara Falls(New York),Grand Rapids,,5 hours 42 mins,594 km +Islip(New York),Grand Rapids,,12 hours 3 mins,"1,281 km" +New York(New York),Grand Rapids,,11 hours 9 mins,"1,199 km" +Watertown(New York),Grand Rapids,,8 hours 40 mins,923 km +Newburgh(New York),Grand Rapids,,11 hours 10 mins,"1,212 km" +Syracuse(New York),Grand Rapids,,8 hours 2 mins,854 km +Plattsburgh(New York),Grand Rapids,,10 hours 54 mins,"1,127 km" +Ogdensburg(New York),Grand Rapids,,8 hours 48 mins,939 km +Ithaca(New York),Grand Rapids,,8 hours 21 mins,858 km +Elmira(New York),Grand Rapids,,8 hours 18 mins,851 km +White Plains(New York),Grand Rapids,,11 hours 20 mins,"1,236 km" +Albany(New York),Grand Rapids,,10 hours 2 mins,"1,079 km" +Binghamton(New York),Grand Rapids,,9 hours 6 mins,972 km +Rochester(New York),Grand Rapids,,6 hours 57 mins,733 km +Phoenix,Abilene(Texas),,12 hours 45 mins,"1,421 km" +Phoenix,Amarillo(Texas),,10 hours 31 mins,"1,134 km" +Phoenix,Harlingen(Texas),,17 hours 38 mins,"1,987 km" +Phoenix,Lubbock(Texas),,11 hours 26 mins,"1,188 km" +Phoenix,College Station(Texas),,16 hours 23 mins,"1,780 km" +Phoenix,Corpus Christi(Texas),,16 hours 0 mins,"1,812 km" +Phoenix,Wichita Falls(Texas),,13 hours 48 mins,"1,489 km" +Phoenix,Waco(Texas),,15 hours 24 mins,"1,682 km" +Phoenix,San Angelo(Texas),,12 hours 9 mins,"1,343 km" +Phoenix,Houston(Texas),,16 hours 51 mins,"1,894 km" +Phoenix,San Antonio(Texas),,14 hours 2 mins,"1,580 km" +Phoenix,Del Rio(Texas),,12 hours 36 mins,"1,376 km" +Phoenix,Mission(Texas),,17 hours 38 mins,"1,976 km" +Phoenix,Beaumont(Texas),,18 hours 6 mins,"2,028 km" +Phoenix,Longview(Texas),,17 hours 6 mins,"1,920 km" +Phoenix,Midland(Texas),,10 hours 40 mins,"1,184 km" +Phoenix,El Paso(Texas),,6 hours 17 mins,694 km +Phoenix,Brownsville(Texas),,18 hours 0 mins,"2,027 km" +Phoenix,Austin(Texas),,14 hours 52 mins,"1,620 km" +Phoenix,Dallas(Texas),,15 hours 19 mins,"1,715 km" +Phoenix,Killeen(Texas),,14 hours 41 mins,"1,613 km" +Phoenix,Laredo(Texas),,15 hours 32 mins,"1,666 km" +Phoenix,Texarkana(Texas),,17 hours 55 mins,"2,000 km" +Abilene(Texas),Phoenix,,12 hours 42 mins,"1,420 km" +Amarillo(Texas),Phoenix,,10 hours 32 mins,"1,133 km" +Harlingen(Texas),Phoenix,,17 hours 31 mins,"1,986 km" +Lubbock(Texas),Phoenix,,11 hours 21 mins,"1,204 km" +College Station(Texas),Phoenix,,16 hours 20 mins,"1,785 km" +Corpus Christi(Texas),Phoenix,,15 hours 55 mins,"1,810 km" +Wichita Falls(Texas),Phoenix,,13 hours 50 mins,"1,488 km" +Waco(Texas),Phoenix,,15 hours 22 mins,"1,681 km" +San Angelo(Texas),Phoenix,,12 hours 5 mins,"1,341 km" +Houston(Texas),Phoenix,,16 hours 47 mins,"1,892 km" +San Antonio(Texas),Phoenix,,13 hours 58 mins,"1,578 km" +Del Rio(Texas),Phoenix,,12 hours 34 mins,"1,375 km" +Mission(Texas),Phoenix,,17 hours 33 mins,"1,975 km" +Beaumont(Texas),Phoenix,,18 hours 4 mins,"2,025 km" +Longview(Texas),Phoenix,,17 hours 4 mins,"1,918 km" +Midland(Texas),Phoenix,,10 hours 36 mins,"1,182 km" +El Paso(Texas),Phoenix,,6 hours 15 mins,692 km +Brownsville(Texas),Phoenix,,17 hours 55 mins,"2,026 km" +Austin(Texas),Phoenix,,14 hours 48 mins,"1,619 km" +Dallas(Texas),Phoenix,,15 hours 17 mins,"1,712 km" +Killeen(Texas),Phoenix,,14 hours 37 mins,"1,611 km" +Laredo(Texas),Phoenix,,15 hours 30 mins,"1,664 km" +Texarkana(Texas),Phoenix,,17 hours 55 mins,"2,000 km" +Rochester,Bemidji(Minnesota),,18 hours 29 mins,"1,969 km" +Rochester,Minneapolis(Minnesota),,15 hours 2 mins,"1,625 km" +Rochester,Duluth(Minnesota),,16 hours 0 mins,"1,720 km" +Rochester,Brainerd(Minnesota),,16 hours 58 mins,"1,825 km" +Rochester,Gustavus(Minnesota),,15 hours 29 mins,"1,671 km" +Rochester,St. Cloud(Minnesota),,15 hours 58 mins,"1,727 km" +Rochester,Hibbing(Minnesota),,17 hours 17 mins,"1,840 km" +Rochester,International Falls(Minnesota),,18 hours 41 mins,"1,981 km" +Bemidji(Minnesota),Rochester,,18 hours 27 mins,"1,979 km" +Minneapolis(Minnesota),Rochester,,14 hours 59 mins,"1,633 km" +Duluth(Minnesota),Rochester,,15 hours 59 mins,"1,730 km" +Brainerd(Minnesota),Rochester,,16 hours 57 mins,"1,836 km" +Gustavus(Minnesota),Rochester,,15 hours 27 mins,"1,680 km" +St. Cloud(Minnesota),Rochester,,15 hours 57 mins,"1,738 km" +Hibbing(Minnesota),Rochester,,17 hours 15 mins,"1,850 km" +International Falls(Minnesota),Rochester,,18 hours 39 mins,"1,992 km" +Greensboro,Augusta(Georgia),,3 hours 50 mins,409 km +Greensboro,Decatur(Georgia),,5 hours 1 min,525 km +Greensboro,Atlanta(Georgia),,5 hours 1 min,533 km +Greensboro,Valdosta(Georgia),,7 hours 49 mins,758 km +Greensboro,Savannah(Georgia),,5 hours 1 min,511 km +Augusta(Georgia),Greensboro,,3 hours 50 mins,411 km +Decatur(Georgia),Greensboro,,5 hours 0 mins,526 km +Atlanta(Georgia),Greensboro,,4 hours 59 mins,534 km +Valdosta(Georgia),Greensboro,,7 hours 49 mins,757 km +Savannah(Georgia),Greensboro,,4 hours 58 mins,523 km +Philadelphia,Charlotte,,8 hours 16 mins,875 km +Charlotte,Philadelphia,,8 hours 11 mins,868 km +Jacksonville,Martha's Vineyard(Massachusetts),,18 hours 51 mins,"1,927 km" +Jacksonville,Hyannis(Massachusetts),,17 hours 47 mins,"1,907 km" +Jacksonville,Boston(Massachusetts),,17 hours 4 mins,"1,843 km" +Jacksonville,Nantucket(Massachusetts),,20 hours 5 mins,"1,954 km" +Martha's Vineyard(Massachusetts),Jacksonville,,19 hours 1 min,"1,938 km" +Hyannis(Massachusetts),Jacksonville,,17 hours 52 mins,"1,916 km" +Boston(Massachusetts),Jacksonville,,17 hours 8 mins,"1,853 km" +Nantucket(Massachusetts),Jacksonville,,20 hours 9 mins,"1,967 km" +Medford,Alamosa(Colorado),,20 hours 20 mins,"2,033 km" +Medford,Grand Junction(Colorado),,15 hours 49 mins,"1,640 km" +Medford,Durango(Colorado),,17 hours 52 mins,"1,813 km" +Medford,Colorado Springs(Colorado),,20 hours 10 mins,"2,131 km" +Medford,Gunnison(Colorado),,18 hours 10 mins,"1,837 km" +Medford,Denver(Colorado),,19 hours 12 mins,"2,019 km" +Alamosa(Colorado),Medford,,20 hours 13 mins,"2,028 km" +Grand Junction(Colorado),Medford,,15 hours 49 mins,"1,634 km" +Durango(Colorado),Medford,,17 hours 49 mins,"1,808 km" +Colorado Springs(Colorado),Medford,,20 hours 10 mins,"2,126 km" +Gunnison(Colorado),Medford,,18 hours 4 mins,"1,832 km" +Denver(Colorado),Medford,,19 hours 14 mins,"2,017 km" +Punta Gorda,Pellston(Michigan),,21 hours 40 mins,"2,457 km" +Punta Gorda,Traverse City(Michigan),,21 hours 39 mins,"2,387 km" +Punta Gorda,Alpena(Michigan),,21 hours 39 mins,"2,404 km" +Punta Gorda,Iron Mountain(Michigan),,23 hours 5 mins,"2,539 km" +Punta Gorda,Kalamazoo(Michigan),,19 hours 7 mins,"2,109 km" +Punta Gorda,Saginaw(Michigan),,19 hours 21 mins,"2,170 km" +Punta Gorda,Grand Rapids(Michigan),,19 hours 33 mins,"2,158 km" +Punta Gorda,Lansing(Michigan),,19 hours 0 mins,"2,135 km" +Punta Gorda,Muskegon(Michigan),,19 hours 49 mins,"2,173 km" +Punta Gorda,Hancock(Michigan),,1 day 1 hour,"2,719 km" +Punta Gorda,Detroit(Michigan),,18 hours 18 mins,"2,050 km" +Punta Gorda,Escanaba(Michigan),,23 hours 17 mins,"2,558 km" +Pellston(Michigan),Punta Gorda,,21 hours 42 mins,"2,456 km" +Traverse City(Michigan),Punta Gorda,,21 hours 43 mins,"2,414 km" +Alpena(Michigan),Punta Gorda,,21 hours 39 mins,"2,401 km" +Iron Mountain(Michigan),Punta Gorda,,23 hours 6 mins,"2,537 km" +Kalamazoo(Michigan),Punta Gorda,,19 hours 7 mins,"2,113 km" +Saginaw(Michigan),Punta Gorda,,19 hours 21 mins,"2,168 km" +Grand Rapids(Michigan),Punta Gorda,,19 hours 34 mins,"2,160 km" +Lansing(Michigan),Punta Gorda,,19 hours 2 mins,"2,134 km" +Muskegon(Michigan),Punta Gorda,,19 hours 51 mins,"2,171 km" +Hancock(Michigan),Punta Gorda,,1 day 1 hour,"2,717 km" +Detroit(Michigan),Punta Gorda,,18 hours 20 mins,"2,050 km" +Escanaba(Michigan),Punta Gorda,,23 hours 18 mins,"2,556 km" +Chicago,Newark,,11 hours 41 mins,"1,256 km" +Newark,Chicago,,11 hours 42 mins,"1,255 km" +Washington,Bemidji(Minnesota),,20 hours 8 mins,"2,120 km" +Washington,Minneapolis(Minnesota),,16 hours 41 mins,"1,776 km" +Washington,Duluth(Minnesota),,17 hours 38 mins,"1,871 km" +Washington,Brainerd(Minnesota),,18 hours 37 mins,"1,976 km" +Washington,Gustavus(Minnesota),,17 hours 7 mins,"1,822 km" +Washington,St. Cloud(Minnesota),,17 hours 37 mins,"1,878 km" +Washington,Hibbing(Minnesota),,18 hours 55 mins,"1,991 km" +Washington,International Falls(Minnesota),,20 hours 19 mins,"2,132 km" +Bemidji(Minnesota),Washington,,20 hours 18 mins,"2,130 km" +Minneapolis(Minnesota),Washington,,16 hours 50 mins,"1,783 km" +Duluth(Minnesota),Washington,,17 hours 50 mins,"1,881 km" +Brainerd(Minnesota),Washington,,18 hours 48 mins,"1,987 km" +Gustavus(Minnesota),Washington,,17 hours 18 mins,"1,830 km" +St. Cloud(Minnesota),Washington,,17 hours 49 mins,"1,889 km" +Hibbing(Minnesota),Washington,,19 hours 7 mins,"2,001 km" +International Falls(Minnesota),Washington,,20 hours 30 mins,"2,142 km" +Santa Barbara,Phoenix,,7 hours 10 mins,755 km +Phoenix,Santa Barbara,,7 hours 9 mins,753 km +Baltimore,Louisville,,9 hours 7 mins,982 km +Louisville,Baltimore,,9 hours 11 mins,981 km +Memphis,Greensboro(North Carolina),,10 hours 3 mins,"1,087 km" +Memphis,Wilmington(North Carolina),,11 hours 43 mins,"1,291 km" +Memphis,New Bern(North Carolina),,12 hours 56 mins,"1,392 km" +Memphis,Charlotte(North Carolina),,9 hours 27 mins,998 km +Memphis,Raleigh(North Carolina),,11 hours 13 mins,"1,206 km" +Memphis,Asheville(North Carolina),,7 hours 34 mins,813 km +Memphis,Fayetteville(North Carolina),,11 hours 0 mins,"1,222 km" +Greensboro(North Carolina),Memphis,,10 hours 2 mins,"1,086 km" +Wilmington(North Carolina),Memphis,,11 hours 45 mins,"1,303 km" +New Bern(North Carolina),Memphis,,12 hours 55 mins,"1,391 km" +Charlotte(North Carolina),Memphis,,9 hours 27 mins,996 km +Raleigh(North Carolina),Memphis,,11 hours 10 mins,"1,206 km" +Asheville(North Carolina),Memphis,,7 hours 33 mins,813 km +Fayetteville(North Carolina),Memphis,,11 hours 2 mins,"1,233 km" +Houston,Flagstaff(Arizona),,17 hours 25 mins,"1,936 km" +Houston,Yuma(Arizona),,18 hours 29 mins,"2,092 km" +Houston,Phoenix(Arizona),,16 hours 47 mins,"1,892 km" +Houston,Prescott(Arizona),,18 hours 24 mins,"2,052 km" +Houston,Tucson(Arizona),,15 hours 14 mins,"1,715 km" +Flagstaff(Arizona),Houston,,17 hours 20 mins,"1,936 km" +Yuma(Arizona),Houston,,18 hours 33 mins,"2,092 km" +Phoenix(Arizona),Houston,,16 hours 51 mins,"1,894 km" +Prescott(Arizona),Houston,,18 hours 24 mins,"2,053 km" +Tucson(Arizona),Houston,,15 hours 16 mins,"1,717 km" +Nashville,Las Vegas,,1 day 2 hours,"2,885 km" +Las Vegas,Nashville,,1 day 2 hours,"2,885 km" +Elmira,Sarasota(Florida),,18 hours 49 mins,"1,999 km" +Elmira,Fort Myers(Florida),,19 hours 47 mins,"2,104 km" +Elmira,Gainesville(Florida),,16 hours 9 mins,"1,708 km" +Elmira,Orlando(Florida),,17 hours 2 mins,"1,826 km" +Elmira,Daytona Beach(Florida),,16 hours 25 mins,"1,752 km" +Elmira,Jacksonville(Florida),,14 hours 59 mins,"1,598 km" +Elmira,Tampa(Florida),,18 hours 2 mins,"1,914 km" +Elmira,Panama City(Florida),,18 hours 17 mins,"1,879 km" +Elmira,Key West(Florida),,22 hours 58 mins,"2,408 km" +Elmira,West Palm Beach(Florida),,18 hours 58 mins,"2,056 km" +Elmira,Miami(Florida),,19 hours 58 mins,"2,155 km" +Elmira,Tallahassee(Florida),,17 hours 23 mins,"1,857 km" +Elmira,Punta Gorda(Florida),,19 hours 21 mins,"2,069 km" +Elmira,Fort Lauderdale(Florida),,19 hours 35 mins,"2,124 km" +Elmira,Pensacola(Florida),,18 hours 12 mins,"1,944 km" +Sarasota(Florida),Elmira,,18 hours 41 mins,"1,992 km" +Fort Myers(Florida),Elmira,,19 hours 38 mins,"2,097 km" +Gainesville(Florida),Elmira,,16 hours 3 mins,"1,702 km" +Orlando(Florida),Elmira,,16 hours 48 mins,"1,815 km" +Daytona Beach(Florida),Elmira,,16 hours 14 mins,"1,732 km" +Jacksonville(Florida),Elmira,,14 hours 51 mins,"1,590 km" +Tampa(Florida),Elmira,,17 hours 53 mins,"1,907 km" +Panama City(Florida),Elmira,,18 hours 15 mins,"1,878 km" +Key West(Florida),Elmira,,22 hours 48 mins,"2,399 km" +West Palm Beach(Florida),Elmira,,18 hours 46 mins,"2,046 km" +Miami(Florida),Elmira,,19 hours 45 mins,"2,147 km" +Tallahassee(Florida),Elmira,,17 hours 15 mins,"1,854 km" +Punta Gorda(Florida),Elmira,,19 hours 13 mins,"2,061 km" +Fort Lauderdale(Florida),Elmira,,19 hours 24 mins,"2,114 km" +Pensacola(Florida),Elmira,,18 hours 7 mins,"1,942 km" +New York,Nashville(Tennessee),,13 hours 17 mins,"1,423 km" +New York,Bristol(Tennessee),,9 hours 6 mins,957 km +New York,Knoxville(Tennessee),,10 hours 40 mins,"1,136 km" +New York,Chattanooga(Tennessee),,12 hours 16 mins,"1,313 km" +New York,Memphis(Tennessee),,16 hours 19 mins,"1,762 km" +Nashville(Tennessee),New York,,13 hours 19 mins,"1,425 km" +Bristol(Tennessee),New York,,9 hours 6 mins,959 km +Knoxville(Tennessee),New York,,10 hours 40 mins,"1,138 km" +Chattanooga(Tennessee),New York,,12 hours 18 mins,"1,316 km" +Memphis(Tennessee),New York,,16 hours 21 mins,"1,764 km" +Houston,San Diego(California),,20 hours 58 mins,"2,366 km" +Houston,Redding(California),,1 day 6 hours,"3,366 km" +Houston,Sacramento(California),,1 day 4 hours,"3,107 km" +Houston,Fresno(California),,1 day 2 hours,"2,841 km" +Houston,San Luis Obispo(California),,1 day 1 hour,"2,796 km" +Houston,Oakland(California),,1 day 4 hours,"3,085 km" +Houston,Santa Barbara(California),,23 hours 46 mins,"2,645 km" +Houston,Stockton(California),,1 day 3 hours,"3,032 km" +Houston,Santa Rosa(California),,1 day 5 hours,"3,178 km" +Houston,Bakersfield(California),,23 hours 58 mins,"2,668 km" +Houston,Santa Ana(California),,22 hours 8 mins,"2,494 km" +Houston,Santa Maria(California),,1 day 1 hour,"2,748 km" +Houston,San Jose(California),,1 day 3 hours,"3,036 km" +Houston,Burbank(California),,22 hours 22 mins,"2,506 km" +Houston,Arcata(California),,1 day 8 hours,"3,538 km" +Houston,Butte(California),,1 day 5 hours,"3,240 km" +Houston,Palm Springs(California),,20 hours 45 mins,"2,324 km" +Houston,Los Angeles(California),,22 hours 18 mins,"2,491 km" +Houston,Long Beach(California),,22 hours 29 mins,"2,509 km" +Houston,San Francisco(California),,1 day 4 hours,"3,104 km" +Houston,Monterey(California),,1 day 3 hours,"3,002 km" +San Diego(California),Houston,,21 hours 3 mins,"2,365 km" +Redding(California),Houston,,1 day 6 hours,"3,365 km" +Sacramento(California),Houston,,1 day 4 hours,"3,107 km" +Fresno(California),Houston,,1 day 2 hours,"2,840 km" +San Luis Obispo(California),Houston,,1 day 1 hour,"2,797 km" +Oakland(California),Houston,,1 day 4 hours,"3,085 km" +Santa Barbara(California),Houston,,23 hours 48 mins,"2,645 km" +Stockton(California),Houston,,1 day 3 hours,"3,032 km" +Santa Rosa(California),Houston,,1 day 5 hours,"3,177 km" +Bakersfield(California),Houston,,23 hours 59 mins,"2,669 km" +Santa Ana(California),Houston,,22 hours 8 mins,"2,468 km" +Santa Maria(California),Houston,,1 day 1 hour,"2,747 km" +San Jose(California),Houston,,1 day 3 hours,"3,035 km" +Burbank(California),Houston,,22 hours 24 mins,"2,506 km" +Arcata(California),Houston,,1 day 8 hours,"3,539 km" +Butte(California),Houston,,1 day 5 hours,"3,240 km" +Palm Springs(California),Houston,,20 hours 47 mins,"2,323 km" +Los Angeles(California),Houston,,22 hours 17 mins,"2,490 km" +Long Beach(California),Houston,,22 hours 26 mins,"2,501 km" +San Francisco(California),Houston,,1 day 4 hours,"3,103 km" +Monterey(California),Houston,,1 day 3 hours,"3,001 km" +La Crosse,Detroit,,8 hours 18 mins,912 km +Detroit,La Crosse,,8 hours 23 mins,915 km +Roswell,Flagstaff(Arizona),,7 hours 34 mins,838 km +Roswell,Yuma(Arizona),,10 hours 24 mins,"1,129 km" +Roswell,Phoenix(Arizona),,8 hours 42 mins,929 km +Roswell,Prescott(Arizona),,9 hours 5 mins,988 km +Roswell,Tucson(Arizona),,7 hours 9 mins,753 km +Flagstaff(Arizona),Roswell,,7 hours 31 mins,837 km +Yuma(Arizona),Roswell,,10 hours 30 mins,"1,118 km" +Phoenix(Arizona),Roswell,,8 hours 48 mins,921 km +Prescott(Arizona),Roswell,,9 hours 2 mins,989 km +Tucson(Arizona),Roswell,,7 hours 13 mins,744 km +Baltimore,San Diego,,1 day 15 hours,"4,232 km" +San Diego,Baltimore,,1 day 15 hours,"4,229 km" +Sioux Falls,Abilene(Texas),,13 hours 33 mins,"1,491 km" +Sioux Falls,Amarillo(Texas),,12 hours 34 mins,"1,260 km" +Sioux Falls,Harlingen(Texas),,19 hours 33 mins,"2,168 km" +Sioux Falls,Lubbock(Texas),,14 hours 15 mins,"1,459 km" +Sioux Falls,College Station(Texas),,14 hours 45 mins,"1,621 km" +Sioux Falls,Corpus Christi(Texas),,17 hours 55 mins,"1,992 km" +Sioux Falls,Wichita Falls(Texas),,11 hours 19 mins,"1,247 km" +Sioux Falls,Waco(Texas),,13 hours 27 mins,"1,486 km" +Sioux Falls,San Angelo(Texas),,14 hours 49 mins,"1,625 km" +Sioux Falls,Houston(Texas),,15 hours 42 mins,"1,736 km" +Sioux Falls,San Antonio(Texas),,16 hours 4 mins,"1,771 km" +Sioux Falls,Del Rio(Texas),,17 hours 14 mins,"1,878 km" +Sioux Falls,Mission(Texas),,19 hours 32 mins,"2,156 km" +Sioux Falls,Beaumont(Texas),,16 hours 42 mins,"1,811 km" +Sioux Falls,Longview(Texas),,13 hours 33 mins,"1,364 km" +Sioux Falls,Midland(Texas),,15 hours 24 mins,"1,692 km" +Sioux Falls,El Paso(Texas),,18 hours 32 mins,"1,857 km" +Sioux Falls,Brownsville(Texas),,19 hours 54 mins,"2,207 km" +Sioux Falls,Austin(Texas),,14 hours 52 mins,"1,644 km" +Sioux Falls,Dallas(Texas),,12 hours 19 mins,"1,352 km" +Sioux Falls,Killeen(Texas),,14 hours 16 mins,"1,579 km" +Sioux Falls,Laredo(Texas),,18 hours 20 mins,"2,021 km" +Sioux Falls,Texarkana(Texas),,12 hours 59 mins,"1,354 km" +Abilene(Texas),Sioux Falls,,13 hours 30 mins,"1,491 km" +Amarillo(Texas),Sioux Falls,,12 hours 33 mins,"1,260 km" +Harlingen(Texas),Sioux Falls,,19 hours 24 mins,"2,167 km" +Lubbock(Texas),Sioux Falls,,14 hours 14 mins,"1,459 km" +College Station(Texas),Sioux Falls,,14 hours 40 mins,"1,620 km" +Corpus Christi(Texas),Sioux Falls,,17 hours 48 mins,"1,991 km" +Wichita Falls(Texas),Sioux Falls,,11 hours 14 mins,"1,246 km" +Waco(Texas),Sioux Falls,,13 hours 23 mins,"1,482 km" +San Angelo(Texas),Sioux Falls,,14 hours 44 mins,"1,624 km" +Houston(Texas),Sioux Falls,,15 hours 38 mins,"1,735 km" +San Antonio(Texas),Sioux Falls,,15 hours 59 mins,"1,770 km" +Del Rio(Texas),Sioux Falls,,17 hours 7 mins,"1,878 km" +Mission(Texas),Sioux Falls,,19 hours 26 mins,"2,156 km" +Beaumont(Texas),Sioux Falls,,16 hours 38 mins,"1,810 km" +Longview(Texas),Sioux Falls,,13 hours 31 mins,"1,364 km" +Midland(Texas),Sioux Falls,,15 hours 20 mins,"1,693 km" +El Paso(Texas),Sioux Falls,,18 hours 27 mins,"1,857 km" +Brownsville(Texas),Sioux Falls,,19 hours 48 mins,"2,207 km" +Austin(Texas),Sioux Falls,,14 hours 48 mins,"1,644 km" +Dallas(Texas),Sioux Falls,,12 hours 15 mins,"1,351 km" +Killeen(Texas),Sioux Falls,,14 hours 13 mins,"1,579 km" +Laredo(Texas),Sioux Falls,,18 hours 16 mins,"2,021 km" +Texarkana(Texas),Sioux Falls,,12 hours 52 mins,"1,351 km" +Providence,Pellston(Michigan),,13 hours 50 mins,"1,502 km" +Providence,Traverse City(Michigan),,13 hours 50 mins,"1,461 km" +Providence,Alpena(Michigan),,13 hours 49 mins,"1,449 km" +Providence,Iron Mountain(Michigan),,17 hours 16 mins,"1,831 km" +Providence,Kalamazoo(Michigan),,13 hours 22 mins,"1,419 km" +Providence,Saginaw(Michigan),,11 hours 30 mins,"1,215 km" +Providence,Grand Rapids(Michigan),,12 hours 32 mins,"1,337 km" +Providence,Lansing(Michigan),,11 hours 43 mins,"1,246 km" +Providence,Muskegon(Michigan),,13 hours 5 mins,"1,400 km" +Providence,Hancock(Michigan),,18 hours 27 mins,"1,941 km" +Providence,Detroit(Michigan),,10 hours 50 mins,"1,128 km" +Providence,Escanaba(Michigan),,16 hours 20 mins,"1,750 km" +Pellston(Michigan),Providence,,13 hours 45 mins,"1,502 km" +Traverse City(Michigan),Providence,,13 hours 46 mins,"1,460 km" +Alpena(Michigan),Providence,,13 hours 42 mins,"1,447 km" +Iron Mountain(Michigan),Providence,,17 hours 10 mins,"1,831 km" +Kalamazoo(Michigan),Providence,,13 hours 18 mins,"1,420 km" +Saginaw(Michigan),Providence,,11 hours 24 mins,"1,214 km" +Grand Rapids(Michigan),Providence,,12 hours 25 mins,"1,336 km" +Lansing(Michigan),Providence,,11 hours 38 mins,"1,243 km" +Muskegon(Michigan),Providence,,12 hours 59 mins,"1,400 km" +Hancock(Michigan),Providence,,18 hours 21 mins,"1,941 km" +Detroit(Michigan),Providence,,10 hours 43 mins,"1,127 km" +Escanaba(Michigan),Providence,,16 hours 13 mins,"1,749 km" +Moline,Sarasota(Florida),,18 hours 46 mins,"2,076 km" +Moline,Fort Myers(Florida),,19 hours 43 mins,"2,182 km" +Moline,Gainesville(Florida),,16 hours 22 mins,"1,792 km" +Moline,Orlando(Florida),,17 hours 46 mins,"1,964 km" +Moline,Daytona Beach(Florida),,17 hours 50 mins,"1,964 km" +Moline,Jacksonville(Florida),,16 hours 27 mins,"1,815 km" +Moline,Tampa(Florida),,17 hours 58 mins,"1,992 km" +Moline,Panama City(Florida),,15 hours 13 mins,"1,599 km" +Moline,Key West(Florida),,23 hours 58 mins,"2,578 km" +Moline,West Palm Beach(Florida),,19 hours 59 mins,"2,220 km" +Moline,Miami(Florida),,20 hours 58 mins,"2,325 km" +Moline,Tallahassee(Florida),,15 hours 30 mins,"1,653 km" +Moline,Punta Gorda(Florida),,19 hours 18 mins,"2,147 km" +Moline,Fort Lauderdale(Florida),,20 hours 37 mins,"2,288 km" +Moline,Pensacola(Florida),,14 hours 25 mins,"1,576 km" +Sarasota(Florida),Moline,,18 hours 45 mins,"2,081 km" +Fort Myers(Florida),Moline,,19 hours 42 mins,"2,186 km" +Gainesville(Florida),Moline,,16 hours 21 mins,"1,795 km" +Orlando(Florida),Moline,,17 hours 42 mins,"1,966 km" +Daytona Beach(Florida),Moline,,17 hours 48 mins,"1,958 km" +Jacksonville(Florida),Moline,,16 hours 28 mins,"1,818 km" +Tampa(Florida),Moline,,17 hours 57 mins,"1,995 km" +Panama City(Florida),Moline,,15 hours 15 mins,"1,596 km" +Key West(Florida),Moline,,23 hours 58 mins,"2,582 km" +West Palm Beach(Florida),Moline,,19 hours 57 mins,"2,224 km" +Miami(Florida),Moline,,20 hours 54 mins,"2,330 km" +Tallahassee(Florida),Moline,,15 hours 32 mins,"1,651 km" +Punta Gorda(Florida),Moline,,19 hours 16 mins,"2,150 km" +Fort Lauderdale(Florida),Moline,,20 hours 35 mins,"2,292 km" +Pensacola(Florida),Moline,,14 hours 21 mins,"1,577 km" +Lexington,Chicago,,5 hours 46 mins,598 km +Chicago,Lexington,,5 hours 46 mins,600 km +La Crosse,Bemidji(Minnesota),,6 hours 0 mins,601 km +La Crosse,Minneapolis(Minnesota),,2 hours 32 mins,256 km +La Crosse,Duluth(Minnesota),,4 hours 1 min,386 km +La Crosse,Brainerd(Minnesota),,4 hours 29 mins,457 km +La Crosse,Gustavus(Minnesota),,2 hours 31 mins,261 km +La Crosse,St. Cloud(Minnesota),,3 hours 30 mins,359 km +La Crosse,Hibbing(Minnesota),,5 hours 17 mins,505 km +La Crosse,International Falls(Minnesota),,6 hours 42 mins,647 km +Bemidji(Minnesota),La Crosse,,6 hours 0 mins,601 km +Minneapolis(Minnesota),La Crosse,,2 hours 33 mins,255 km +Duluth(Minnesota),La Crosse,,4 hours 1 min,386 km +Brainerd(Minnesota),La Crosse,,4 hours 31 mins,458 km +Gustavus(Minnesota),La Crosse,,2 hours 34 mins,261 km +St. Cloud(Minnesota),La Crosse,,3 hours 31 mins,360 km +Hibbing(Minnesota),La Crosse,,5 hours 17 mins,506 km +International Falls(Minnesota),La Crosse,,6 hours 41 mins,647 km +Sun Valley,Seattle(Washington),,10 hours 0 mins,"1,037 km" +Sun Valley,Wenatchee(Washington),,9 hours 4 mins,916 km +Sun Valley,Pasco(Washington),,6 hours 56 mins,711 km +Sun Valley,Yakima(Washington),,7 hours 53 mins,810 km +Sun Valley,Walla Walla(Washington),,6 hours 29 mins,651 km +Sun Valley,Everett(Washington),,10 hours 22 mins,"1,072 km" +Sun Valley,Spokane(Washington),,8 hours 49 mins,769 km +Seattle(Washington),Sun Valley,,10 hours 0 mins,"1,039 km" +Wenatchee(Washington),Sun Valley,,9 hours 5 mins,918 km +Pasco(Washington),Sun Valley,,6 hours 58 mins,712 km +Yakima(Washington),Sun Valley,,7 hours 53 mins,811 km +Walla Walla(Washington),Sun Valley,,6 hours 32 mins,652 km +Everett(Washington),Sun Valley,,10 hours 21 mins,"1,074 km" +Spokane(Washington),Sun Valley,,8 hours 44 mins,770 km +Wilmington,Washington,,5 hours 31 mins,585 km +Washington,Wilmington,,5 hours 31 mins,586 km +Cincinnati,Greensboro(North Carolina),,7 hours 6 mins,707 km +Cincinnati,Wilmington(North Carolina),,9 hours 59 mins,"1,034 km" +Cincinnati,New Bern(North Carolina),,9 hours 59 mins,"1,012 km" +Cincinnati,Charlotte(North Carolina),,7 hours 24 mins,743 km +Cincinnati,Raleigh(North Carolina),,8 hours 16 mins,827 km +Cincinnati,Asheville(North Carolina),,5 hours 32 mins,587 km +Cincinnati,Fayetteville(North Carolina),,8 hours 36 mins,852 km +Greensboro(North Carolina),Cincinnati,,7 hours 6 mins,706 km +Wilmington(North Carolina),Cincinnati,,9 hours 59 mins,"1,033 km" +New Bern(North Carolina),Cincinnati,,9 hours 59 mins,"1,011 km" +Charlotte(North Carolina),Cincinnati,,7 hours 26 mins,744 km +Raleigh(North Carolina),Cincinnati,,8 hours 14 mins,826 km +Asheville(North Carolina),Cincinnati,,5 hours 33 mins,586 km +Fayetteville(North Carolina),Cincinnati,,8 hours 37 mins,852 km +Houston,Salt Lake City(Utah),,22 hours 24 mins,"2,377 km" +Houston,Moab(Utah),,18 hours 42 mins,"2,001 km" +Houston,Ogden(Utah),,22 hours 43 mins,"2,485 km" +Houston,Vernal(Utah),,20 hours 32 mins,"2,084 km" +Houston,Provo(Utah),,21 hours 47 mins,"2,306 km" +Houston,Cedar City(Utah),,21 hours 37 mins,"2,296 km" +Salt Lake City(Utah),Houston,,22 hours 21 mins,"2,377 km" +Moab(Utah),Houston,,18 hours 40 mins,"2,001 km" +Ogden(Utah),Houston,,22 hours 41 mins,"2,452 km" +Vernal(Utah),Houston,,20 hours 31 mins,"2,167 km" +Provo(Utah),Houston,,21 hours 46 mins,"2,307 km" +Cedar City(Utah),Houston,,21 hours 34 mins,"2,296 km" +Washington,Cincinnati,,7 hours 55 mins,808 km +Cincinnati,Washington,,8 hours 5 mins,805 km +Rochester,Charlotte,,10 hours 59 mins,"1,167 km" +Charlotte,Rochester,,10 hours 57 mins,"1,166 km" +Louisville,Alamosa(Colorado),,17 hours 49 mins,"1,925 km" +Louisville,Grand Junction(Colorado),,19 hours 42 mins,"2,172 km" +Louisville,Durango(Colorado),,20 hours 41 mins,"2,165 km" +Louisville,Colorado Springs(Colorado),,15 hours 59 mins,"1,757 km" +Louisville,Gunnison(Colorado),,19 hours 9 mins,"2,032 km" +Louisville,Denver(Colorado),,16 hours 3 mins,"1,783 km" +Alamosa(Colorado),Louisville,,17 hours 41 mins,"1,926 km" +Grand Junction(Colorado),Louisville,,19 hours 33 mins,"2,172 km" +Durango(Colorado),Louisville,,20 hours 32 mins,"2,166 km" +Colorado Springs(Colorado),Louisville,,15 hours 52 mins,"1,758 km" +Gunnison(Colorado),Louisville,,18 hours 59 mins,"2,024 km" +Denver(Colorado),Louisville,,15 hours 57 mins,"1,787 km" +Traverse City,New York,,12 hours 57 mins,"1,372 km" +New York,Traverse City,,12 hours 51 mins,"1,371 km" +Pittsburgh,Baltimore,,3 hours 58 mins,400 km +Baltimore,Pittsburgh,,3 hours 58 mins,398 km +Sacramento,Atlanta,,1 day 12 hours,"3,973 km" +Atlanta,Sacramento,,1 day 12 hours,"3,985 km" +Detroit,San Diego(California),,1 day 10 hours,"3,770 km" +Detroit,Redding(California),,1 day 11 hours,"3,815 km" +Detroit,Sacramento(California),,1 day 9 hours,"3,712 km" +Detroit,Fresno(California),,1 day 11 hours,"3,872 km" +Detroit,San Luis Obispo(California),,1 day 11 hours,"3,915 km" +Detroit,Oakland(California),,1 day 11 hours,"3,842 km" +Detroit,Santa Barbara(California),,1 day 10 hours,"3,814 km" +Detroit,Stockton(California),,1 day 10 hours,"3,789 km" +Detroit,Santa Rosa(California),,1 day 11 hours,"3,868 km" +Detroit,Bakersfield(California),,1 day 9 hours,"3,696 km" +Detroit,Santa Ana(California),,1 day 9 hours,"3,671 km" +Detroit,Santa Maria(California),,1 day 11 hours,"3,870 km" +Detroit,San Jose(California),,1 day 11 hours,"3,905 km" +Detroit,Burbank(California),,1 day 9 hours,"3,674 km" +Detroit,Arcata(California),,1 day 13 hours,"4,040 km" +Detroit,Butte(California),,1 day 10 hours,"3,752 km" +Detroit,Palm Springs(California),,1 day 9 hours,"3,686 km" +Detroit,Los Angeles(California),,1 day 9 hours,"3,671 km" +Detroit,Long Beach(California),,1 day 9 hours,"3,693 km" +Detroit,San Francisco(California),,1 day 11 hours,"3,852 km" +Detroit,Monterey(California),,1 day 12 hours,"4,012 km" +San Diego(California),Detroit,,1 day 10 hours,"3,770 km" +Redding(California),Detroit,,1 day 10 hours,"3,822 km" +Sacramento(California),Detroit,,1 day 9 hours,"3,719 km" +Fresno(California),Detroit,,1 day 11 hours,"3,872 km" +San Luis Obispo(California),Detroit,,1 day 11 hours,"3,917 km" +Oakland(California),Detroit,,1 day 11 hours,"3,849 km" +Santa Barbara(California),Detroit,,1 day 10 hours,"3,814 km" +Stockton(California),Detroit,,1 day 10 hours,"3,796 km" +Santa Rosa(California),Detroit,,1 day 11 hours,"3,875 km" +Bakersfield(California),Detroit,,1 day 9 hours,"3,697 km" +Santa Ana(California),Detroit,,1 day 9 hours,"3,668 km" +Santa Maria(California),Detroit,,1 day 11 hours,"3,873 km" +San Jose(California),Detroit,,1 day 11 hours,"3,910 km" +Burbank(California),Detroit,,1 day 9 hours,"3,675 km" +Arcata(California),Detroit,,1 day 13 hours,"4,045 km" +Butte(California),Detroit,,1 day 10 hours,"3,758 km" +Palm Springs(California),Detroit,,1 day 9 hours,"3,684 km" +Los Angeles(California),Detroit,,1 day 9 hours,"3,671 km" +Long Beach(California),Detroit,,1 day 9 hours,"3,698 km" +San Francisco(California),Detroit,,1 day 11 hours,"3,859 km" +Monterey(California),Detroit,,1 day 12 hours,"4,017 km" +Boston,Abilene(Texas),,1 day 5 hours,"3,135 km" +Boston,Amarillo(Texas),,1 day 4 hours,"3,135 km" +Boston,Harlingen(Texas),,1 day 8 hours,"3,502 km" +Boston,Lubbock(Texas),,1 day 6 hours,"3,274 km" +Boston,College Station(Texas),,1 day 4 hours,"2,995 km" +Boston,Corpus Christi(Texas),,1 day 6 hours,"3,307 km" +Boston,Wichita Falls(Texas),,1 day 3 hours,"2,939 km" +Boston,Waco(Texas),,1 day 4 hours,"3,001 km" +Boston,San Angelo(Texas),,1 day 6 hours,"3,259 km" +Boston,Houston(Texas),,1 day 3 hours,"2,974 km" +Boston,San Antonio(Texas),,1 day 6 hours,"3,288 km" +Boston,Del Rio(Texas),,1 day 9 hours,"3,535 km" +Boston,Mission(Texas),,1 day 9 hours,"3,542 km" +Boston,Beaumont(Texas),,1 day 2 hours,"2,841 km" +Boston,Longview(Texas),,1 day 1 hour,"2,728 km" +Boston,Midland(Texas),,1 day 7 hours,"3,385 km" +Boston,El Paso(Texas),,1 day 11 hours,"3,833 km" +Boston,Brownsville(Texas),,1 day 9 hours,"3,541 km" +Boston,Austin(Texas),,1 day 5 hours,"3,160 km" +Boston,Dallas(Texas),,1 day 2 hours,"2,846 km" +Boston,Killeen(Texas),,1 day 4 hours,"3,094 km" +Boston,Laredo(Texas),,1 day 8 hours,"3,480 km" +Boston,Texarkana(Texas),,23 hours 46 mins,"2,566 km" +Abilene(Texas),Boston,,1 day 5 hours,"3,137 km" +Amarillo(Texas),Boston,,1 day 4 hours,"3,135 km" +Harlingen(Texas),Boston,,1 day 8 hours,"3,504 km" +Lubbock(Texas),Boston,,1 day 6 hours,"3,274 km" +College Station(Texas),Boston,,1 day 4 hours,"2,996 km" +Corpus Christi(Texas),Boston,,1 day 6 hours,"3,314 km" +Wichita Falls(Texas),Boston,,1 day 3 hours,"2,940 km" +Waco(Texas),Boston,,1 day 4 hours,"2,998 km" +San Angelo(Texas),Boston,,1 day 6 hours,"3,261 km" +Houston(Texas),Boston,,1 day 3 hours,"2,976 km" +San Antonio(Texas),Boston,,1 day 6 hours,"3,286 km" +Del Rio(Texas),Boston,,1 day 8 hours,"3,514 km" +Mission(Texas),Boston,,1 day 9 hours,"3,544 km" +Beaumont(Texas),Boston,,1 day 2 hours,"2,842 km" +Longview(Texas),Boston,,1 day 1 hour,"2,729 km" +Midland(Texas),Boston,,1 day 7 hours,"3,387 km" +El Paso(Texas),Boston,,1 day 11 hours,"3,832 km" +Brownsville(Texas),Boston,,1 day 8 hours,"3,544 km" +Austin(Texas),Boston,,1 day 5 hours,"3,160 km" +Dallas(Texas),Boston,,1 day 2 hours,"2,847 km" +Killeen(Texas),Boston,,1 day 4 hours,"3,095 km" +Laredo(Texas),Boston,,1 day 8 hours,"3,482 km" +Texarkana(Texas),Boston,,23 hours 43 mins,"2,565 km" +Bakersfield,Dallas,,21 hours 9 mins,"2,333 km" +Dallas,Bakersfield,,21 hours 5 mins,"2,332 km" +Orlando,Columbus,,14 hours 0 mins,"1,524 km" +Columbus,Orlando,,14 hours 6 mins,"1,526 km" +Manchester,Washington,,, +Washington,Manchester,,, +Miami,Des Moines,,22 hours 52 mins,"2,523 km" +Des Moines,Miami,,22 hours 54 mins,"2,517 km" +Phoenix,Billings,,18 hours 23 mins,"1,946 km" +Billings,Phoenix,,18 hours 34 mins,"1,951 km" +Bellingham,Los Angeles,,18 hours 44 mins,"1,970 km" +Los Angeles,Bellingham,,18 hours 46 mins,"1,969 km" +Charlotte Amalie,San Juan,,, +San Juan,Charlotte Amalie,,, +Santa Ana,Helena(Montana),,16 hours 39 mins,"1,879 km" +Santa Ana,Billings(Montana),,18 hours 7 mins,"1,984 km" +Santa Ana,Missoula(Montana),,17 hours 6 mins,"1,945 km" +Santa Ana,Kalispell(Montana),,19 hours 4 mins,"2,115 km" +Santa Ana,Great Falls(Montana),,17 hours 53 mins,"2,020 km" +Santa Ana,Bozeman(Montana),,16 hours 4 mins,"1,759 km" +Santa Ana,West Yellowstone(Montana),,14 hours 23 mins,"1,616 km" +Helena(Montana),Santa Ana,,16 hours 41 mins,"1,883 km" +Billings(Montana),Santa Ana,,18 hours 15 mins,"1,992 km" +Missoula(Montana),Santa Ana,,17 hours 8 mins,"1,947 km" +Kalispell(Montana),Santa Ana,,19 hours 7 mins,"2,118 km" +Great Falls(Montana),Santa Ana,,17 hours 55 mins,"2,023 km" +Bozeman(Montana),Santa Ana,,16 hours 9 mins,"1,764 km" +West Yellowstone(Montana),Santa Ana,,14 hours 27 mins,"1,620 km" +Traverse City,Moline(Illinois),,7 hours 0 mins,749 km +Traverse City,Belleville(Illinois),,8 hours 52 mins,943 km +Traverse City,Bloomington(Illinois),,6 hours 28 mins,691 km +Traverse City,Champaign(Illinois),,6 hours 19 mins,676 km +Traverse City,Chicago(Illinois),,4 hours 55 mins,515 km +Traverse City,Rockford(Illinois),,6 hours 18 mins,664 km +Traverse City,Peoria(Illinois),,6 hours 48 mins,736 km +Moline(Illinois),Traverse City,,6 hours 58 mins,747 km +Belleville(Illinois),Traverse City,,8 hours 49 mins,940 km +Bloomington(Illinois),Traverse City,,6 hours 24 mins,682 km +Champaign(Illinois),Traverse City,,6 hours 17 mins,674 km +Chicago(Illinois),Traverse City,,4 hours 53 mins,514 km +Rockford(Illinois),Traverse City,,6 hours 14 mins,662 km +Peoria(Illinois),Traverse City,,6 hours 47 mins,735 km +Rochester,Fort Lauderdale,,20 hours 51 mins,"2,285 km" +Fort Lauderdale,Rochester,,20 hours 40 mins,"2,276 km" +Greer,New York,,10 hours 53 mins,"1,147 km" +New York,Greer,,10 hours 55 mins,"1,156 km" +Austin,Oklahoma City,,5 hours 38 mins,624 km +Oklahoma City,Austin,,5 hours 39 mins,625 km +Denver,Moline(Illinois),,11 hours 57 mins,"1,357 km" +Denver,Belleville(Illinois),,12 hours 30 mins,"1,396 km" +Denver,Bloomington(Illinois),,13 hours 54 mins,"1,566 km" +Denver,Champaign(Illinois),,14 hours 19 mins,"1,604 km" +Denver,Chicago(Illinois),,14 hours 25 mins,"1,617 km" +Denver,Rockford(Illinois),,13 hours 43 mins,"1,545 km" +Denver,Peoria(Illinois),,13 hours 17 mins,"1,505 km" +Moline(Illinois),Denver,,12 hours 0 mins,"1,354 km" +Belleville(Illinois),Denver,,12 hours 34 mins,"1,392 km" +Bloomington(Illinois),Denver,,13 hours 56 mins,"1,563 km" +Champaign(Illinois),Denver,,14 hours 24 mins,"1,603 km" +Chicago(Illinois),Denver,,14 hours 22 mins,"1,612 km" +Rockford(Illinois),Denver,,13 hours 43 mins,"1,538 km" +Peoria(Illinois),Denver,,13 hours 20 mins,"1,503 km" +Tampa,Moline(Illinois),,17 hours 57 mins,"1,995 km" +Tampa,Belleville(Illinois),,14 hours 26 mins,"1,608 km" +Tampa,Bloomington(Illinois),,16 hours 13 mins,"1,811 km" +Tampa,Champaign(Illinois),,15 hours 30 mins,"1,735 km" +Tampa,Chicago(Illinois),,17 hours 7 mins,"1,887 km" +Tampa,Rockford(Illinois),,18 hours 10 mins,"2,029 km" +Tampa,Peoria(Illinois),,16 hours 33 mins,"1,845 km" +Moline(Illinois),Tampa,,17 hours 58 mins,"1,992 km" +Belleville(Illinois),Tampa,,14 hours 28 mins,"1,603 km" +Bloomington(Illinois),Tampa,,16 hours 12 mins,"1,806 km" +Champaign(Illinois),Tampa,,15 hours 33 mins,"1,733 km" +Chicago(Illinois),Tampa,,17 hours 8 mins,"1,886 km" +Rockford(Illinois),Tampa,,18 hours 7 mins,"2,022 km" +Peoria(Illinois),Tampa,,16 hours 37 mins,"1,843 km" +Fort Wayne,Greensboro(North Carolina),,8 hours 56 mins,902 km +Fort Wayne,Wilmington(North Carolina),,11 hours 50 mins,"1,229 km" +Fort Wayne,New Bern(North Carolina),,11 hours 50 mins,"1,207 km" +Fort Wayne,Charlotte(North Carolina),,9 hours 15 mins,938 km +Fort Wayne,Raleigh(North Carolina),,10 hours 6 mins,"1,022 km" +Fort Wayne,Asheville(North Carolina),,8 hours 29 mins,873 km +Fort Wayne,Fayetteville(North Carolina),,10 hours 26 mins,"1,047 km" +Greensboro(North Carolina),Fort Wayne,,8 hours 58 mins,901 km +Wilmington(North Carolina),Fort Wayne,,11 hours 51 mins,"1,228 km" +New Bern(North Carolina),Fort Wayne,,11 hours 50 mins,"1,206 km" +Charlotte(North Carolina),Fort Wayne,,9 hours 17 mins,939 km +Raleigh(North Carolina),Fort Wayne,,10 hours 5 mins,"1,021 km" +Asheville(North Carolina),Fort Wayne,,8 hours 31 mins,872 km +Fayetteville(North Carolina),Fort Wayne,,10 hours 28 mins,"1,047 km" +St. Louis,Las Vegas,,22 hours 55 mins,"2,570 km" +Las Vegas,St. Louis,,22 hours 50 mins,"2,568 km" +San Francisco,Dallas,,1 day 1 hour,"2,790 km" +Dallas,San Francisco,,1 day 1 hour,"2,787 km" +Jacksonville,Buffalo(New York),,15 hours 21 mins,"1,676 km" +Jacksonville,Manhattan(New York),,13 hours 54 mins,"1,506 km" +Jacksonville,Niagara Falls(New York),,15 hours 42 mins,"1,706 km" +Jacksonville,Islip(New York),,14 hours 34 mins,"1,577 km" +Jacksonville,New York(New York),,13 hours 44 mins,"1,500 km" +Jacksonville,Watertown(New York),,16 hours 47 mins,"1,836 km" +Jacksonville,Newburgh(New York),,14 hours 34 mins,"1,592 km" +Jacksonville,Syracuse(New York),,15 hours 44 mins,"1,723 km" +Jacksonville,Plattsburgh(New York),,18 hours 0 mins,"1,980 km" +Jacksonville,Ogdensburg(New York),,17 hours 46 mins,"1,929 km" +Jacksonville,Ithaca(New York),,15 hours 29 mins,"1,662 km" +Jacksonville,Elmira(New York),,14 hours 51 mins,"1,590 km" +Jacksonville,White Plains(New York),,14 hours 11 mins,"1,550 km" +Jacksonville,Albany(New York),,15 hours 40 mins,"1,723 km" +Jacksonville,Binghamton(New York),,14 hours 44 mins,"1,611 km" +Jacksonville,Rochester(New York),,16 hours 7 mins,"1,752 km" +Buffalo(New York),Jacksonville,,15 hours 21 mins,"1,676 km" +Manhattan(New York),Jacksonville,,13 hours 55 mins,"1,514 km" +Niagara Falls(New York),Jacksonville,,15 hours 43 mins,"1,707 km" +Islip(New York),Jacksonville,,14 hours 36 mins,"1,583 km" +New York(New York),Jacksonville,,13 hours 47 mins,"1,508 km" +Watertown(New York),Jacksonville,,16 hours 56 mins,"1,839 km" +Newburgh(New York),Jacksonville,,14 hours 39 mins,"1,601 km" +Syracuse(New York),Jacksonville,,15 hours 52 mins,"1,726 km" +Plattsburgh(New York),Jacksonville,,18 hours 4 mins,"1,989 km" +Ogdensburg(New York),Jacksonville,,17 hours 55 mins,"1,932 km" +Ithaca(New York),Jacksonville,,15 hours 36 mins,"1,669 km" +Elmira(New York),Jacksonville,,14 hours 59 mins,"1,598 km" +White Plains(New York),Jacksonville,,14 hours 13 mins,"1,557 km" +Albany(New York),Jacksonville,,15 hours 45 mins,"1,731 km" +Binghamton(New York),Jacksonville,,14 hours 52 mins,"1,613 km" +Rochester(New York),Jacksonville,,16 hours 14 mins,"1,759 km" +San Luis Obispo,Abilene(Texas),,21 hours 13 mins,"2,324 km" +San Luis Obispo,Amarillo(Texas),,18 hours 0 mins,"1,972 km" +San Luis Obispo,Harlingen(Texas),,1 day 2 hours,"2,890 km" +San Luis Obispo,Lubbock(Texas),,18 hours 54 mins,"2,026 km" +San Luis Obispo,College Station(Texas),,1 day 1 hour,"2,683 km" +San Luis Obispo,Corpus Christi(Texas),,1 day 0 hours,"2,715 km" +San Luis Obispo,Wichita Falls(Texas),,21 hours 17 mins,"2,327 km" +San Luis Obispo,Waco(Texas),,23 hours 52 mins,"2,585 km" +San Luis Obispo,San Angelo(Texas),,20 hours 37 mins,"2,246 km" +San Luis Obispo,Houston(Texas),,1 day 1 hour,"2,797 km" +San Luis Obispo,San Antonio(Texas),,22 hours 30 mins,"2,482 km" +San Luis Obispo,Del Rio(Texas),,21 hours 4 mins,"2,278 km" +San Luis Obispo,Mission(Texas),,1 day 2 hours,"2,878 km" +San Luis Obispo,Beaumont(Texas),,1 day 3 hours,"2,931 km" +San Luis Obispo,Longview(Texas),,1 day 1 hour,"2,754 km" +San Luis Obispo,Midland(Texas),,19 hours 8 mins,"2,087 km" +San Luis Obispo,El Paso(Texas),,14 hours 45 mins,"1,596 km" +San Luis Obispo,Brownsville(Texas),,1 day 2 hours,"2,929 km" +San Luis Obispo,Austin(Texas),,23 hours 20 mins,"2,522 km" +San Luis Obispo,Dallas(Texas),,23 hours 19 mins,"2,554 km" +San Luis Obispo,Killeen(Texas),,23 hours 9 mins,"2,516 km" +San Luis Obispo,Laredo(Texas),,1 day 0 hours,"2,568 km" +San Luis Obispo,Texarkana(Texas),,1 day 2 hours,"2,763 km" +Abilene(Texas),San Luis Obispo,,21 hours 11 mins,"2,324 km" +Amarillo(Texas),San Luis Obispo,,17 hours 58 mins,"1,970 km" +Harlingen(Texas),San Luis Obispo,,1 day 2 hours,"2,890 km" +Lubbock(Texas),San Luis Obispo,,18 hours 52 mins,"2,024 km" +College Station(Texas),San Luis Obispo,,1 day 1 hour,"2,689 km" +Corpus Christi(Texas),San Luis Obispo,,1 day 0 hours,"2,715 km" +Wichita Falls(Texas),San Luis Obispo,,21 hours 16 mins,"2,325 km" +Waco(Texas),San Luis Obispo,,23 hours 51 mins,"2,585 km" +San Angelo(Texas),San Luis Obispo,,20 hours 34 mins,"2,245 km" +Houston(Texas),San Luis Obispo,,1 day 1 hour,"2,796 km" +San Antonio(Texas),San Luis Obispo,,22 hours 27 mins,"2,482 km" +Del Rio(Texas),San Luis Obispo,,21 hours 3 mins,"2,279 km" +Mission(Texas),San Luis Obispo,,1 day 2 hours,"2,879 km" +Beaumont(Texas),San Luis Obispo,,1 day 3 hours,"2,930 km" +Longview(Texas),San Luis Obispo,,1 day 1 hour,"2,758 km" +Midland(Texas),San Luis Obispo,,19 hours 5 mins,"2,086 km" +El Paso(Texas),San Luis Obispo,,14 hours 44 mins,"1,596 km" +Brownsville(Texas),San Luis Obispo,,1 day 2 hours,"2,930 km" +Austin(Texas),San Luis Obispo,,23 hours 17 mins,"2,523 km" +Dallas(Texas),San Luis Obispo,,23 hours 17 mins,"2,551 km" +Killeen(Texas),San Luis Obispo,,23 hours 6 mins,"2,515 km" +Laredo(Texas),San Luis Obispo,,23 hours 59 mins,"2,568 km" +Texarkana(Texas),San Luis Obispo,,1 day 2 hours,"2,774 km" +Baltimore,Pellston(Michigan),,11 hours 32 mins,"1,271 km" +Baltimore,Traverse City(Michigan),,11 hours 32 mins,"1,230 km" +Baltimore,Alpena(Michigan),,11 hours 30 mins,"1,219 km" +Baltimore,Iron Mountain(Michigan),,14 hours 58 mins,"1,601 km" +Baltimore,Kalamazoo(Michigan),,9 hours 23 mins,992 km +Baltimore,Saginaw(Michigan),,9 hours 12 mins,985 km +Baltimore,Grand Rapids(Michigan),,9 hours 50 mins,"1,058 km" +Baltimore,Lansing(Michigan),,8 hours 52 mins,950 km +Baltimore,Muskegon(Michigan),,10 hours 23 mins,"1,121 km" +Baltimore,Hancock(Michigan),,16 hours 9 mins,"1,711 km" +Baltimore,Detroit(Michigan),,7 hours 59 mins,847 km +Baltimore,Escanaba(Michigan),,14 hours 2 mins,"1,519 km" +Pellston(Michigan),Baltimore,,11 hours 34 mins,"1,274 km" +Traverse City(Michigan),Baltimore,,11 hours 36 mins,"1,233 km" +Alpena(Michigan),Baltimore,,11 hours 32 mins,"1,220 km" +Iron Mountain(Michigan),Baltimore,,14 hours 59 mins,"1,604 km" +Kalamazoo(Michigan),Baltimore,,9 hours 23 mins,992 km +Saginaw(Michigan),Baltimore,,9 hours 13 mins,986 km +Grand Rapids(Michigan),Baltimore,,9 hours 50 mins,"1,060 km" +Lansing(Michigan),Baltimore,,8 hours 55 mins,952 km +Muskegon(Michigan),Baltimore,,10 hours 25 mins,"1,124 km" +Hancock(Michigan),Baltimore,,16 hours 11 mins,"1,714 km" +Detroit(Michigan),Baltimore,,8 hours 1 min,849 km +Escanaba(Michigan),Baltimore,,14 hours 3 mins,"1,522 km" +Charlotte,Paducah(Kentucky),,8 hours 20 mins,871 km +Charlotte,Owensboro(Kentucky),,8 hours 10 mins,808 km +Charlotte,Lexington(Kentucky),,6 hours 25 mins,643 km +Charlotte,Louisville(Kentucky),,7 hours 21 mins,762 km +Paducah(Kentucky),Charlotte,,8 hours 20 mins,872 km +Owensboro(Kentucky),Charlotte,,8 hours 11 mins,811 km +Lexington(Kentucky),Charlotte,,6 hours 23 mins,645 km +Louisville(Kentucky),Charlotte,,7 hours 23 mins,763 km +Valparaiso,Baltimore,,, +Baltimore,Valparaiso,,, +Phoenix,San Diego(California),,5 hours 19 mins,571 km +Phoenix,Redding(California),,13 hours 44 mins,"1,474 km" +Phoenix,Sacramento(California),,11 hours 23 mins,"1,216 km" +Phoenix,Fresno(California),,8 hours 56 mins,949 km +Phoenix,San Luis Obispo(California),,8 hours 40 mins,905 km +Phoenix,Oakland(California),,11 hours 11 mins,"1,193 km" +Phoenix,Santa Barbara(California),,7 hours 9 mins,753 km +Phoenix,Stockton(California),,10 hours 41 mins,"1,140 km" +Phoenix,Santa Rosa(California),,12 hours 3 mins,"1,286 km" +Phoenix,Bakersfield(California),,7 hours 22 mins,776 km +Phoenix,Santa Ana(California),,5 hours 34 mins,584 km +Phoenix,Santa Maria(California),,8 hours 16 mins,856 km +Phoenix,San Jose(California),,10 hours 50 mins,"1,144 km" +Phoenix,Burbank(California),,5 hours 45 mins,614 km +Phoenix,Arcata(California),,15 hours 49 mins,"1,646 km" +Phoenix,Butte(California),,12 hours 49 mins,"1,348 km" +Phoenix,Palm Springs(California),,4 hours 9 mins,432 km +Phoenix,Los Angeles(California),,5 hours 42 mins,599 km +Phoenix,Long Beach(California),,5 hours 52 mins,617 km +Phoenix,San Francisco(California),,11 hours 24 mins,"1,212 km" +Phoenix,Monterey(California),,10 hours 39 mins,"1,110 km" +San Diego(California),Phoenix,,5 hours 22 mins,571 km +Redding(California),Phoenix,,13 hours 40 mins,"1,475 km" +Sacramento(California),Phoenix,,11 hours 20 mins,"1,217 km" +Fresno(California),Phoenix,,8 hours 54 mins,950 km +San Luis Obispo(California),Phoenix,,8 hours 41 mins,907 km +Oakland(California),Phoenix,,11 hours 9 mins,"1,195 km" +Santa Barbara(California),Phoenix,,7 hours 10 mins,755 km +Stockton(California),Phoenix,,10 hours 37 mins,"1,142 km" +Santa Rosa(California),Phoenix,,12 hours 2 mins,"1,288 km" +Bakersfield(California),Phoenix,,7 hours 21 mins,779 km +Santa Ana(California),Phoenix,,5 hours 30 mins,578 km +Santa Maria(California),Phoenix,,8 hours 14 mins,857 km +San Jose(California),Phoenix,,10 hours 47 mins,"1,145 km" +Burbank(California),Phoenix,,5 hours 46 mins,616 km +Arcata(California),Phoenix,,15 hours 47 mins,"1,649 km" +Butte(California),Phoenix,,12 hours 46 mins,"1,350 km" +Palm Springs(California),Phoenix,,4 hours 9 mins,433 km +Los Angeles(California),Phoenix,,5 hours 39 mins,600 km +Long Beach(California),Phoenix,,5 hours 48 mins,611 km +San Francisco(California),Phoenix,,11 hours 19 mins,"1,213 km" +Monterey(California),Phoenix,,10 hours 37 mins,"1,112 km" +Des Moines,Flagstaff(Arizona),,19 hours 33 mins,"2,097 km" +Des Moines,Yuma(Arizona),,23 hours 58 mins,"2,546 km" +Des Moines,Phoenix(Arizona),,21 hours 20 mins,"2,252 km" +Des Moines,Prescott(Arizona),,21 hours 5 mins,"2,248 km" +Des Moines,Tucson(Arizona),,21 hours 15 mins,"2,245 km" +Flagstaff(Arizona),Des Moines,,19 hours 26 mins,"2,093 km" +Yuma(Arizona),Des Moines,,23 hours 55 mins,"2,541 km" +Phoenix(Arizona),Des Moines,,21 hours 16 mins,"2,249 km" +Prescott(Arizona),Des Moines,,20 hours 57 mins,"2,244 km" +Tucson(Arizona),Des Moines,,21 hours 14 mins,"2,232 km" +St. Petersburg,Nashville(Tennessee),,, +St. Petersburg,Bristol(Tennessee),,, +St. Petersburg,Knoxville(Tennessee),,, +St. Petersburg,Chattanooga(Tennessee),,, +St. Petersburg,Memphis(Tennessee),,, +Nashville(Tennessee),St. Petersburg,,, +Bristol(Tennessee),St. Petersburg,,, +Knoxville(Tennessee),St. Petersburg,,, +Chattanooga(Tennessee),St. Petersburg,,, +Memphis(Tennessee),St. Petersburg,,, +Phoenix,Los Angeles,,5 hours 42 mins,599 km +Los Angeles,Phoenix,,5 hours 39 mins,600 km +Fort Myers,Greensboro(North Carolina),,11 hours 29 mins,"1,242 km" +Fort Myers,Wilmington(North Carolina),,11 hours 5 mins,"1,210 km" +Fort Myers,New Bern(North Carolina),,12 hours 20 mins,"1,344 km" +Fort Myers,Charlotte(North Carolina),,10 hours 19 mins,"1,125 km" +Fort Myers,Raleigh(North Carolina),,11 hours 16 mins,"1,237 km" +Fort Myers,Asheville(North Carolina),,11 hours 14 mins,"1,220 km" +Fort Myers,Fayetteville(North Carolina),,10 hours 22 mins,"1,141 km" +Greensboro(North Carolina),Fort Myers,,11 hours 31 mins,"1,227 km" +Wilmington(North Carolina),Fort Myers,,11 hours 6 mins,"1,209 km" +New Bern(North Carolina),Fort Myers,,12 hours 21 mins,"1,342 km" +Charlotte(North Carolina),Fort Myers,,10 hours 19 mins,"1,123 km" +Raleigh(North Carolina),Fort Myers,,11 hours 19 mins,"1,237 km" +Asheville(North Carolina),Fort Myers,,11 hours 13 mins,"1,217 km" +Fayetteville(North Carolina),Fort Myers,,10 hours 23 mins,"1,139 km" +Salt Lake City,Abilene(Texas),,16 hours 59 mins,"1,740 km" +Salt Lake City,Amarillo(Texas),,13 hours 42 mins,"1,420 km" +Salt Lake City,Harlingen(Texas),,23 hours 43 mins,"2,525 km" +Salt Lake City,Lubbock(Texas),,14 hours 36 mins,"1,473 km" +Salt Lake City,College Station(Texas),,21 hours 14 mins,"2,164 km" +Salt Lake City,Corpus Christi(Texas),,22 hours 5 mins,"2,349 km" +Salt Lake City,Wichita Falls(Texas),,16 hours 59 mins,"1,774 km" +Salt Lake City,Waco(Texas),,19 hours 55 mins,"2,041 km" +Salt Lake City,San Angelo(Texas),,17 hours 4 mins,"1,774 km" +Salt Lake City,Houston(Texas),,22 hours 21 mins,"2,377 km" +Salt Lake City,San Antonio(Texas),,20 hours 7 mins,"2,117 km" +Salt Lake City,Del Rio(Texas),,19 hours 13 mins,"1,931 km" +Salt Lake City,Mission(Texas),,23 hours 43 mins,"2,513 km" +Salt Lake City,Beaumont(Texas),,23 hours 21 mins,"2,452 km" +Salt Lake City,Longview(Texas),,20 hours 53 mins,"2,201 km" +Salt Lake City,Midland(Texas),,15 hours 41 mins,"1,607 km" +Salt Lake City,El Paso(Texas),,13 hours 19 mins,"1,391 km" +Salt Lake City,Brownsville(Texas),,1 day 0 hours,"2,564 km" +Salt Lake City,Austin(Texas),,20 hours 25 mins,"2,076 km" +Salt Lake City,Dallas(Texas),,19 hours 2 mins,"2,001 km" +Salt Lake City,Killeen(Texas),,19 hours 46 mins,"2,013 km" +Salt Lake City,Laredo(Texas),,22 hours 8 mins,"2,221 km" +Salt Lake City,Texarkana(Texas),,21 hours 19 mins,"2,210 km" +Abilene(Texas),Salt Lake City,,17 hours 1 min,"1,739 km" +Amarillo(Texas),Salt Lake City,,13 hours 45 mins,"1,419 km" +Harlingen(Texas),Salt Lake City,,23 hours 40 mins,"2,520 km" +Lubbock(Texas),Salt Lake City,,14 hours 38 mins,"1,473 km" +College Station(Texas),Salt Lake City,,21 hours 15 mins,"2,167 km" +Corpus Christi(Texas),Salt Lake City,,22 hours 4 mins,"2,345 km" +Wichita Falls(Texas),Salt Lake City,,17 hours 2 mins,"1,774 km" +Waco(Texas),Salt Lake City,,19 hours 58 mins,"2,099 km" +San Angelo(Texas),Salt Lake City,,17 hours 4 mins,"1,772 km" +Houston(Texas),Salt Lake City,,22 hours 24 mins,"2,377 km" +San Antonio(Texas),Salt Lake City,,20 hours 7 mins,"2,112 km" +Del Rio(Texas),Salt Lake City,,19 hours 13 mins,"1,922 km" +Mission(Texas),Salt Lake City,,23 hours 42 mins,"2,509 km" +Beaumont(Texas),Salt Lake City,,23 hours 25 mins,"2,451 km" +Longview(Texas),Salt Lake City,,20 hours 54 mins,"2,207 km" +Midland(Texas),Salt Lake City,,15 hours 43 mins,"1,606 km" +El Paso(Texas),Salt Lake City,,13 hours 18 mins,"1,391 km" +Brownsville(Texas),Salt Lake City,,1 day 0 hours,"2,560 km" +Austin(Texas),Salt Lake City,,20 hours 26 mins,"2,104 km" +Dallas(Texas),Salt Lake City,,19 hours 4 mins,"2,000 km" +Killeen(Texas),Salt Lake City,,19 hours 49 mins,"2,012 km" +Laredo(Texas),Salt Lake City,,22 hours 10 mins,"2,212 km" +Texarkana(Texas),Salt Lake City,,21 hours 31 mins,"2,223 km" +Bangor,Newark,,7 hours 5 mins,729 km +Newark,Bangor,,7 hours 3 mins,726 km +Honolulu,San Diego(California),,, +Honolulu,Redding(California),,, +Honolulu,Sacramento(California),,, +Honolulu,Fresno(California),,, +Honolulu,San Luis Obispo(California),,, +Honolulu,Oakland(California),,, +Honolulu,Santa Barbara(California),,, +Honolulu,Stockton(California),,, +Honolulu,Santa Rosa(California),,, +Honolulu,Bakersfield(California),,, +Honolulu,Santa Ana(California),,, +Honolulu,Santa Maria(California),,, +Honolulu,San Jose(California),,, +Honolulu,Burbank(California),,, +Honolulu,Arcata(California),,, +Honolulu,Butte(California),,, +Honolulu,Palm Springs(California),,, +Honolulu,Los Angeles(California),,, +Honolulu,Long Beach(California),,, +Honolulu,San Francisco(California),,, +Honolulu,Monterey(California),,, +San Diego(California),Honolulu,,, +Redding(California),Honolulu,,, +Sacramento(California),Honolulu,,, +Fresno(California),Honolulu,,, +San Luis Obispo(California),Honolulu,,, +Oakland(California),Honolulu,,, +Santa Barbara(California),Honolulu,,, +Stockton(California),Honolulu,,, +Santa Rosa(California),Honolulu,,, +Bakersfield(California),Honolulu,,, +Santa Ana(California),Honolulu,,, +Santa Maria(California),Honolulu,,, +San Jose(California),Honolulu,,, +Burbank(California),Honolulu,,, +Arcata(California),Honolulu,,, +Butte(California),Honolulu,,, +Palm Springs(California),Honolulu,,, +Los Angeles(California),Honolulu,,, +Long Beach(California),Honolulu,,, +San Francisco(California),Honolulu,,, +Monterey(California),Honolulu,,, +Grand Rapids,Tampa,,18 hours 14 mins,"2,005 km" +Tampa,Grand Rapids,,18 hours 13 mins,"2,004 km" +Detroit,Lynchburg(Virginia),,9 hours 37 mins,948 km +Detroit,Richmond(Virginia),,9 hours 33 mins,"1,006 km" +Detroit,Petersburg(Virginia),,9 hours 52 mins,"1,042 km" +Detroit,Newport News(Virginia),,10 hours 25 mins,"1,105 km" +Detroit,Charlottesville(Virginia),,9 hours 13 mins,961 km +Detroit,Staunton(Virginia),,8 hours 43 mins,905 km +Detroit,Jamestown(Virginia),,10 hours 21 mins,"1,087 km" +Detroit,Norfolk(Virginia),,10 hours 55 mins,"1,144 km" +Detroit,Roanoke(Virginia),,8 hours 46 mins,872 km +Lynchburg(Virginia),Detroit,,9 hours 32 mins,952 km +Richmond(Virginia),Detroit,,9 hours 28 mins,"1,004 km" +Petersburg(Virginia),Detroit,,9 hours 48 mins,"1,040 km" +Newport News(Virginia),Detroit,,10 hours 19 mins,"1,103 km" +Charlottesville(Virginia),Detroit,,9 hours 14 mins,960 km +Staunton(Virginia),Detroit,,8 hours 44 mins,904 km +Jamestown(Virginia),Detroit,,10 hours 15 mins,"1,085 km" +Norfolk(Virginia),Detroit,,10 hours 49 mins,"1,142 km" +Roanoke(Virginia),Detroit,,8 hours 42 mins,876 km +Provo,Phoenix,,9 hours 40 mins,997 km +Phoenix,Provo,,9 hours 33 mins,996 km +Green Bay,Pellston(Michigan),,4 hours 36 mins,438 km +Green Bay,Traverse City(Michigan),,6 hours 20 mins,598 km +Green Bay,Alpena(Michigan),,5 hours 59 mins,563 km +Green Bay,Iron Mountain(Michigan),,1 hour 46 mins,159 km +Green Bay,Kalamazoo(Michigan),,5 hours 27 mins,580 km +Green Bay,Saginaw(Michigan),,6 hours 53 mins,716 km +Green Bay,Grand Rapids(Michigan),,5 hours 53 mins,629 km +Green Bay,Lansing(Michigan),,6 hours 28 mins,695 km +Green Bay,Muskegon(Michigan),,6 hours 9 mins,644 km +Green Bay,Hancock(Michigan),,3 hours 43 mins,339 km +Green Bay,Detroit(Michigan),,7 hours 21 mins,798 km +Green Bay,Escanaba(Michigan),,1 hour 58 mins,178 km +Pellston(Michigan),Green Bay,,4 hours 38 mins,439 km +Traverse City(Michigan),Green Bay,,6 hours 23 mins,599 km +Alpena(Michigan),Green Bay,,6 hours 0 mins,563 km +Iron Mountain(Michigan),Green Bay,,1 hour 45 mins,159 km +Kalamazoo(Michigan),Green Bay,,5 hours 26 mins,566 km +Saginaw(Michigan),Green Bay,,6 hours 55 mins,717 km +Grand Rapids(Michigan),Green Bay,,5 hours 49 mins,617 km +Lansing(Michigan),Green Bay,,6 hours 25 mins,681 km +Muskegon(Michigan),Green Bay,,6 hours 6 mins,629 km +Hancock(Michigan),Green Bay,,3 hours 42 mins,339 km +Detroit(Michigan),Green Bay,,7 hours 22 mins,785 km +Escanaba(Michigan),Green Bay,,1 hour 58 mins,178 km +Islip,Sarasota(Florida),,18 hours 27 mins,"1,983 km" +Islip,Fort Myers(Florida),,19 hours 24 mins,"2,089 km" +Islip,Gainesville(Florida),,15 hours 47 mins,"1,693 km" +Islip,Orlando(Florida),,16 hours 39 mins,"1,810 km" +Islip,Daytona Beach(Florida),,16 hours 2 mins,"1,736 km" +Islip,Jacksonville(Florida),,14 hours 36 mins,"1,583 km" +Islip,Tampa(Florida),,17 hours 39 mins,"1,899 km" +Islip,Panama City(Florida),,18 hours 38 mins,"2,003 km" +Islip,Key West(Florida),,22 hours 35 mins,"2,393 km" +Islip,West Palm Beach(Florida),,18 hours 35 mins,"2,041 km" +Islip,Miami(Florida),,19 hours 35 mins,"2,140 km" +Islip,Tallahassee(Florida),,17 hours 0 mins,"1,842 km" +Islip,Punta Gorda(Florida),,18 hours 58 mins,"2,053 km" +Islip,Fort Lauderdale(Florida),,19 hours 12 mins,"2,109 km" +Islip,Pensacola(Florida),,18 hours 48 mins,"1,996 km" +Sarasota(Florida),Islip,,18 hours 24 mins,"1,979 km" +Fort Myers(Florida),Islip,,19 hours 21 mins,"2,084 km" +Gainesville(Florida),Islip,,15 hours 45 mins,"1,689 km" +Orlando(Florida),Islip,,16 hours 31 mins,"1,802 km" +Daytona Beach(Florida),Islip,,15 hours 57 mins,"1,719 km" +Jacksonville(Florida),Islip,,14 hours 34 mins,"1,577 km" +Tampa(Florida),Islip,,17 hours 36 mins,"1,894 km" +Panama City(Florida),Islip,,18 hours 35 mins,"2,000 km" +Key West(Florida),Islip,,22 hours 31 mins,"2,386 km" +West Palm Beach(Florida),Islip,,18 hours 28 mins,"2,033 km" +Miami(Florida),Islip,,19 hours 28 mins,"2,134 km" +Tallahassee(Florida),Islip,,16 hours 58 mins,"1,842 km" +Punta Gorda(Florida),Islip,,18 hours 55 mins,"2,048 km" +Fort Lauderdale(Florida),Islip,,19 hours 7 mins,"2,101 km" +Pensacola(Florida),Islip,,18 hours 43 mins,"1,989 km" +Missoula,Minneapolis,,16 hours 43 mins,"1,901 km" +Minneapolis,Missoula,,16 hours 46 mins,"1,902 km" +Syracuse,Nashville(Tennessee),,12 hours 34 mins,"1,367 km" +Syracuse,Bristol(Tennessee),,10 hours 9 mins,"1,091 km" +Syracuse,Knoxville(Tennessee),,11 hours 43 mins,"1,270 km" +Syracuse,Chattanooga(Tennessee),,13 hours 20 mins,"1,447 km" +Syracuse,Memphis(Tennessee),,15 hours 33 mins,"1,704 km" +Nashville(Tennessee),Syracuse,,12 hours 30 mins,"1,366 km" +Bristol(Tennessee),Syracuse,,10 hours 8 mins,"1,091 km" +Knoxville(Tennessee),Syracuse,,11 hours 42 mins,"1,270 km" +Chattanooga(Tennessee),Syracuse,,13 hours 20 mins,"1,448 km" +Memphis(Tennessee),Syracuse,,15 hours 30 mins,"1,702 km" +Tampa,Phoenix,,1 day 7 hours,"3,468 km" +Phoenix,Tampa,,1 day 7 hours,"3,469 km" +Sarasota,Chicago,,17 hours 55 mins,"1,972 km" +Chicago,Sarasota,,17 hours 56 mins,"1,970 km" +Syracuse,Moline(Illinois),,12 hours 18 mins,"1,326 km" +Syracuse,Belleville(Illinois),,13 hours 11 mins,"1,422 km" +Syracuse,Bloomington(Illinois),,11 hours 45 mins,"1,267 km" +Syracuse,Champaign(Illinois),,11 hours 21 mins,"1,231 km" +Syracuse,Chicago(Illinois),,10 hours 10 mins,"1,090 km" +Syracuse,Rockford(Illinois),,11 hours 35 mins,"1,230 km" +Syracuse,Peoria(Illinois),,12 hours 5 mins,"1,312 km" +Moline(Illinois),Syracuse,,12 hours 18 mins,"1,326 km" +Belleville(Illinois),Syracuse,,13 hours 11 mins,"1,423 km" +Bloomington(Illinois),Syracuse,,11 hours 44 mins,"1,261 km" +Champaign(Illinois),Syracuse,,11 hours 22 mins,"1,230 km" +Chicago(Illinois),Syracuse,,10 hours 9 mins,"1,091 km" +Rockford(Illinois),Syracuse,,11 hours 34 mins,"1,240 km" +Peoria(Illinois),Syracuse,,12 hours 7 mins,"1,314 km" +Myrtle Beach,Nashville(Tennessee),,9 hours 11 mins,949 km +Myrtle Beach,Bristol(Tennessee),,6 hours 3 mins,598 km +Myrtle Beach,Knoxville(Tennessee),,6 hours 34 mins,662 km +Myrtle Beach,Chattanooga(Tennessee),,7 hours 21 mins,772 km +Myrtle Beach,Memphis(Tennessee),,11 hours 13 mins,"1,212 km" +Nashville(Tennessee),Myrtle Beach,,9 hours 10 mins,949 km +Bristol(Tennessee),Myrtle Beach,,6 hours 4 mins,599 km +Knoxville(Tennessee),Myrtle Beach,,6 hours 32 mins,662 km +Chattanooga(Tennessee),Myrtle Beach,,7 hours 21 mins,772 km +Memphis(Tennessee),Myrtle Beach,,11 hours 12 mins,"1,199 km" +St. Louis,Abilene(Texas),,11 hours 27 mins,"1,267 km" +St. Louis,Amarillo(Texas),,10 hours 57 mins,"1,219 km" +St. Louis,Harlingen(Texas),,16 hours 55 mins,"1,778 km" +St. Louis,Lubbock(Texas),,12 hours 20 mins,"1,358 km" +St. Louis,College Station(Texas),,12 hours 3 mins,"1,223 km" +St. Louis,Corpus Christi(Texas),,15 hours 9 mins,"1,583 km" +St. Louis,Wichita Falls(Texas),,9 hours 13 mins,"1,023 km" +St. Louis,Waco(Texas),,11 hours 9 mins,"1,168 km" +St. Louis,San Angelo(Texas),,12 hours 42 mins,"1,401 km" +St. Louis,Houston(Texas),,12 hours 3 mins,"1,250 km" +St. Louis,San Antonio(Texas),,13 hours 45 mins,"1,453 km" +St. Louis,Del Rio(Texas),,15 hours 8 mins,"1,654 km" +St. Louis,Mission(Texas),,17 hours 14 mins,"1,838 km" +St. Louis,Beaumont(Texas),,11 hours 44 mins,"1,204 km" +St. Louis,Longview(Texas),,8 hours 55 mins,926 km +St. Louis,Midland(Texas),,13 hours 18 mins,"1,469 km" +St. Louis,El Paso(Texas),,17 hours 33 mins,"1,917 km" +St. Louis,Brownsville(Texas),,17 hours 17 mins,"1,817 km" +St. Louis,Austin(Texas),,12 hours 33 mins,"1,327 km" +St. Louis,Dallas(Texas),,9 hours 44 mins,"1,014 km" +St. Louis,Killeen(Texas),,11 hours 57 mins,"1,261 km" +St. Louis,Laredo(Texas),,16 hours 1 min,"1,704 km" +St. Louis,Texarkana(Texas),,7 hours 28 mins,785 km +Abilene(Texas),St. Louis,,11 hours 28 mins,"1,269 km" +Amarillo(Texas),St. Louis,,10 hours 58 mins,"1,219 km" +Harlingen(Texas),St. Louis,,16 hours 55 mins,"1,782 km" +Lubbock(Texas),St. Louis,,12 hours 18 mins,"1,358 km" +College Station(Texas),St. Louis,,12 hours 2 mins,"1,223 km" +Corpus Christi(Texas),St. Louis,,15 hours 17 mins,"1,593 km" +Wichita Falls(Texas),St. Louis,,9 hours 13 mins,"1,024 km" +Waco(Texas),St. Louis,,11 hours 9 mins,"1,167 km" +San Angelo(Texas),St. Louis,,12 hours 42 mins,"1,402 km" +Houston(Texas),St. Louis,,12 hours 5 mins,"1,254 km" +San Antonio(Texas),St. Louis,,13 hours 44 mins,"1,455 km" +Del Rio(Texas),St. Louis,,15 hours 5 mins,"1,655 km" +Mission(Texas),St. Louis,,17 hours 11 mins,"1,841 km" +Beaumont(Texas),St. Louis,,11 hours 46 mins,"1,208 km" +Longview(Texas),St. Louis,,8 hours 57 mins,929 km +Midland(Texas),St. Louis,,13 hours 18 mins,"1,471 km" +El Paso(Texas),St. Louis,,17 hours 30 mins,"1,916 km" +Brownsville(Texas),St. Louis,,17 hours 19 mins,"1,822 km" +Austin(Texas),St. Louis,,12 hours 33 mins,"1,329 km" +Dallas(Texas),St. Louis,,9 hours 46 mins,"1,016 km" +Killeen(Texas),St. Louis,,11 hours 58 mins,"1,263 km" +Laredo(Texas),St. Louis,,16 hours 2 mins,"1,706 km" +Texarkana(Texas),St. Louis,,7 hours 30 mins,788 km +Richmond,Sarasota(Florida),,12 hours 20 mins,"1,364 km" +Richmond,Fort Myers(Florida),,13 hours 18 mins,"1,469 km" +Richmond,Gainesville(Florida),,9 hours 40 mins,"1,074 km" +Richmond,Orlando(Florida),,10 hours 33 mins,"1,191 km" +Richmond,Daytona Beach(Florida),,9 hours 55 mins,"1,117 km" +Richmond,Jacksonville(Florida),,8 hours 30 mins,963 km +Richmond,Tampa(Florida),,11 hours 33 mins,"1,279 km" +Richmond,Panama City(Florida),,12 hours 31 mins,"1,384 km" +Richmond,Key West(Florida),,16 hours 29 mins,"1,774 km" +Richmond,West Palm Beach(Florida),,12 hours 28 mins,"1,421 km" +Richmond,Miami(Florida),,13 hours 28 mins,"1,520 km" +Richmond,Tallahassee(Florida),,10 hours 53 mins,"1,222 km" +Richmond,Punta Gorda(Florida),,12 hours 52 mins,"1,434 km" +Richmond,Fort Lauderdale(Florida),,13 hours 6 mins,"1,489 km" +Richmond,Pensacola(Florida),,12 hours 41 mins,"1,377 km" +Sarasota(Florida),Richmond,,12 hours 19 mins,"1,364 km" +Fort Myers(Florida),Richmond,,13 hours 15 mins,"1,470 km" +Gainesville(Florida),Richmond,,9 hours 40 mins,"1,075 km" +Orlando(Florida),Richmond,,10 hours 26 mins,"1,188 km" +Daytona Beach(Florida),Richmond,,9 hours 51 mins,"1,105 km" +Jacksonville(Florida),Richmond,,8 hours 28 mins,963 km +Tampa(Florida),Richmond,,11 hours 30 mins,"1,279 km" +Panama City(Florida),Richmond,,12 hours 30 mins,"1,385 km" +Key West(Florida),Richmond,,16 hours 25 mins,"1,771 km" +West Palm Beach(Florida),Richmond,,12 hours 23 mins,"1,419 km" +Miami(Florida),Richmond,,13 hours 22 mins,"1,520 km" +Tallahassee(Florida),Richmond,,10 hours 53 mins,"1,227 km" +Punta Gorda(Florida),Richmond,,12 hours 50 mins,"1,434 km" +Fort Lauderdale(Florida),Richmond,,13 hours 1 min,"1,487 km" +Pensacola(Florida),Richmond,,12 hours 37 mins,"1,374 km" +Atlanta,New Orleans,,6 hours 43 mins,757 km +New Orleans,Atlanta,,6 hours 43 mins,755 km +Milwaukee,Salt Lake City(Utah),,20 hours 41 mins,"2,313 km" +Milwaukee,Moab(Utah),,20 hours 2 mins,"2,242 km" +Milwaukee,Ogden(Utah),,20 hours 33 mins,"2,305 km" +Milwaukee,Vernal(Utah),,19 hours 53 mins,"2,145 km" +Milwaukee,Provo(Utah),,21 hours 9 mins,"2,341 km" +Milwaukee,Cedar City(Utah),,23 hours 11 mins,"2,605 km" +Salt Lake City(Utah),Milwaukee,,20 hours 39 mins,"2,318 km" +Moab(Utah),Milwaukee,,20 hours 0 mins,"2,245 km" +Ogden(Utah),Milwaukee,,20 hours 32 mins,"2,309 km" +Vernal(Utah),Milwaukee,,19 hours 49 mins,"2,149 km" +Provo(Utah),Milwaukee,,21 hours 6 mins,"2,344 km" +Cedar City(Utah),Milwaukee,,23 hours 8 mins,"2,607 km" +White Plains,Sarasota(Florida),,18 hours 3 mins,"1,958 km" +White Plains,Fort Myers(Florida),,19 hours 1 min,"2,063 km" +White Plains,Gainesville(Florida),,15 hours 23 mins,"1,668 km" +White Plains,Orlando(Florida),,16 hours 16 mins,"1,785 km" +White Plains,Daytona Beach(Florida),,15 hours 39 mins,"1,711 km" +White Plains,Jacksonville(Florida),,14 hours 13 mins,"1,557 km" +White Plains,Tampa(Florida),,17 hours 16 mins,"1,874 km" +White Plains,Panama City(Florida),,18 hours 15 mins,"1,978 km" +White Plains,Key West(Florida),,22 hours 12 mins,"2,368 km" +White Plains,West Palm Beach(Florida),,18 hours 12 mins,"2,016 km" +White Plains,Miami(Florida),,19 hours 12 mins,"2,114 km" +White Plains,Tallahassee(Florida),,16 hours 36 mins,"1,817 km" +White Plains,Punta Gorda(Florida),,18 hours 35 mins,"2,028 km" +White Plains,Fort Lauderdale(Florida),,18 hours 49 mins,"2,084 km" +White Plains,Pensacola(Florida),,18 hours 25 mins,"1,971 km" +Sarasota(Florida),White Plains,,18 hours 2 mins,"1,952 km" +Fort Myers(Florida),White Plains,,18 hours 58 mins,"2,058 km" +Gainesville(Florida),White Plains,,15 hours 23 mins,"1,663 km" +Orlando(Florida),White Plains,,16 hours 9 mins,"1,776 km" +Daytona Beach(Florida),White Plains,,15 hours 34 mins,"1,693 km" +Jacksonville(Florida),White Plains,,14 hours 11 mins,"1,550 km" +Tampa(Florida),White Plains,,17 hours 13 mins,"1,867 km" +Panama City(Florida),White Plains,,18 hours 13 mins,"1,973 km" +Key West(Florida),White Plains,,22 hours 8 mins,"2,359 km" +West Palm Beach(Florida),White Plains,,18 hours 6 mins,"2,007 km" +Miami(Florida),White Plains,,19 hours 5 mins,"2,108 km" +Tallahassee(Florida),White Plains,,16 hours 36 mins,"1,815 km" +Punta Gorda(Florida),White Plains,,18 hours 33 mins,"2,022 km" +Fort Lauderdale(Florida),White Plains,,18 hours 44 mins,"2,075 km" +Pensacola(Florida),White Plains,,18 hours 20 mins,"1,962 km" +Minot,Bemidji(Minnesota),,5 hours 11 mins,522 km +Minot,Minneapolis(Minnesota),,7 hours 30 mins,803 km +Minot,Duluth(Minnesota),,7 hours 47 mins,761 km +Minot,Brainerd(Minnesota),,6 hours 30 mins,655 km +Minot,Gustavus(Minnesota),,8 hours 20 mins,846 km +Minot,St. Cloud(Minnesota),,6 hours 42 mins,702 km +Minot,Hibbing(Minnesota),,7 hours 0 mins,688 km +Minot,International Falls(Minnesota),,6 hours 58 mins,696 km +Bemidji(Minnesota),Minot,,5 hours 9 mins,522 km +Minneapolis(Minnesota),Minot,,7 hours 31 mins,803 km +Duluth(Minnesota),Minot,,7 hours 47 mins,761 km +Brainerd(Minnesota),Minot,,6 hours 29 mins,654 km +Gustavus(Minnesota),Minot,,8 hours 18 mins,847 km +St. Cloud(Minnesota),Minot,,6 hours 41 mins,709 km +Hibbing(Minnesota),Minot,,6 hours 57 mins,688 km +International Falls(Minnesota),Minot,,6 hours 56 mins,696 km +Toledo,Sarasota(Florida),,16 hours 53 mins,"1,882 km" +Toledo,Fort Myers(Florida),,17 hours 50 mins,"1,988 km" +Toledo,Gainesville(Florida),,14 hours 29 mins,"1,598 km" +Toledo,Orlando(Florida),,15 hours 53 mins,"1,770 km" +Toledo,Daytona Beach(Florida),,15 hours 43 mins,"1,676 km" +Toledo,Jacksonville(Florida),,14 hours 18 mins,"1,522 km" +Toledo,Tampa(Florida),,16 hours 5 mins,"1,798 km" +Toledo,Panama City(Florida),,14 hours 18 mins,"1,497 km" +Toledo,Key West(Florida),,22 hours 5 mins,"2,384 km" +Toledo,West Palm Beach(Florida),,18 hours 6 mins,"2,026 km" +Toledo,Miami(Florida),,19 hours 5 mins,"2,131 km" +Toledo,Tallahassee(Florida),,13 hours 55 mins,"1,496 km" +Toledo,Punta Gorda(Florida),,17 hours 25 mins,"1,952 km" +Toledo,Fort Lauderdale(Florida),,18 hours 44 mins,"2,094 km" +Toledo,Pensacola(Florida),,13 hours 30 mins,"1,474 km" +Sarasota(Florida),Toledo,,16 hours 51 mins,"1,883 km" +Fort Myers(Florida),Toledo,,17 hours 48 mins,"1,989 km" +Gainesville(Florida),Toledo,,14 hours 27 mins,"1,598 km" +Orlando(Florida),Toledo,,15 hours 49 mins,"1,769 km" +Daytona Beach(Florida),Toledo,,15 hours 38 mins,"1,671 km" +Jacksonville(Florida),Toledo,,14 hours 16 mins,"1,529 km" +Tampa(Florida),Toledo,,16 hours 3 mins,"1,798 km" +Panama City(Florida),Toledo,,14 hours 18 mins,"1,492 km" +Key West(Florida),Toledo,,22 hours 4 mins,"2,384 km" +West Palm Beach(Florida),Toledo,,18 hours 4 mins,"2,027 km" +Miami(Florida),Toledo,,19 hours 1 min,"2,133 km" +Tallahassee(Florida),Toledo,,13 hours 54 mins,"1,496 km" +Punta Gorda(Florida),Toledo,,17 hours 23 mins,"1,953 km" +Fort Lauderdale(Florida),Toledo,,18 hours 42 mins,"2,095 km" +Pensacola(Florida),Toledo,,13 hours 25 mins,"1,472 km" +Myrtle Beach,Pellston(Michigan),,16 hours 3 mins,"1,681 km" +Myrtle Beach,Traverse City(Michigan),,16 hours 3 mins,"1,640 km" +Myrtle Beach,Alpena(Michigan),,16 hours 2 mins,"1,628 km" +Myrtle Beach,Iron Mountain(Michigan),,19 hours 9 mins,"1,975 km" +Myrtle Beach,Kalamazoo(Michigan),,13 hours 50 mins,"1,400 km" +Myrtle Beach,Saginaw(Michigan),,13 hours 44 mins,"1,394 km" +Myrtle Beach,Grand Rapids(Michigan),,14 hours 21 mins,"1,467 km" +Myrtle Beach,Lansing(Michigan),,13 hours 23 mins,"1,359 km" +Myrtle Beach,Muskegon(Michigan),,14 hours 54 mins,"1,531 km" +Myrtle Beach,Hancock(Michigan),,20 hours 40 mins,"2,120 km" +Myrtle Beach,Detroit(Michigan),,12 hours 41 mins,"1,274 km" +Myrtle Beach,Escanaba(Michigan),,18 hours 33 mins,"1,929 km" +Pellston(Michigan),Myrtle Beach,,16 hours 9 mins,"1,675 km" +Traverse City(Michigan),Myrtle Beach,,16 hours 10 mins,"1,634 km" +Alpena(Michigan),Myrtle Beach,,16 hours 7 mins,"1,621 km" +Iron Mountain(Michigan),Myrtle Beach,,19 hours 9 mins,"1,975 km" +Kalamazoo(Michigan),Myrtle Beach,,13 hours 50 mins,"1,400 km" +Saginaw(Michigan),Myrtle Beach,,13 hours 48 mins,"1,387 km" +Grand Rapids(Michigan),Myrtle Beach,,14 hours 25 mins,"1,461 km" +Lansing(Michigan),Myrtle Beach,,13 hours 29 mins,"1,353 km" +Muskegon(Michigan),Myrtle Beach,,14 hours 59 mins,"1,525 km" +Hancock(Michigan),Myrtle Beach,,20 hours 45 mins,"2,115 km" +Detroit(Michigan),Myrtle Beach,,12 hours 47 mins,"1,270 km" +Escanaba(Michigan),Myrtle Beach,,18 hours 38 mins,"1,923 km" +Wilmington,Buffalo(New York),,11 hours 57 mins,"1,187 km" +Wilmington,Manhattan(New York),,9 hours 12 mins,955 km +Wilmington,Niagara Falls(New York),,12 hours 19 mins,"1,217 km" +Wilmington,Islip(New York),,9 hours 52 mins,"1,026 km" +Wilmington,New York(New York),,9 hours 2 mins,949 km +Wilmington,Watertown(New York),,12 hours 5 mins,"1,285 km" +Wilmington,Newburgh(New York),,9 hours 52 mins,"1,041 km" +Wilmington,Syracuse(New York),,11 hours 2 mins,"1,173 km" +Wilmington,Plattsburgh(New York),,13 hours 18 mins,"1,429 km" +Wilmington,Ogdensburg(New York),,13 hours 4 mins,"1,378 km" +Wilmington,Ithaca(New York),,10 hours 47 mins,"1,111 km" +Wilmington,Elmira(New York),,10 hours 9 mins,"1,039 km" +Wilmington,White Plains(New York),,9 hours 29 mins,"1,000 km" +Wilmington,Albany(New York),,10 hours 59 mins,"1,172 km" +Wilmington,Binghamton(New York),,10 hours 2 mins,"1,061 km" +Wilmington,Rochester(New York),,11 hours 25 mins,"1,201 km" +Buffalo(New York),Wilmington,,12 hours 5 mins,"1,188 km" +Manhattan(New York),Wilmington,,9 hours 14 mins,964 km +Niagara Falls(New York),Wilmington,,12 hours 27 mins,"1,218 km" +Islip(New York),Wilmington,,9 hours 55 mins,"1,033 km" +New York(New York),Wilmington,,9 hours 5 mins,958 km +Watertown(New York),Wilmington,,12 hours 15 mins,"1,289 km" +Newburgh(New York),Wilmington,,9 hours 58 mins,"1,051 km" +Syracuse(New York),Wilmington,,11 hours 11 mins,"1,176 km" +Plattsburgh(New York),Wilmington,,13 hours 22 mins,"1,439 km" +Ogdensburg(New York),Wilmington,,13 hours 14 mins,"1,382 km" +Ithaca(New York),Wilmington,,10 hours 55 mins,"1,119 km" +Elmira(New York),Wilmington,,10 hours 18 mins,"1,048 km" +White Plains(New York),Wilmington,,9 hours 32 mins,"1,008 km" +Albany(New York),Wilmington,,11 hours 4 mins,"1,181 km" +Binghamton(New York),Wilmington,,10 hours 11 mins,"1,063 km" +Rochester(New York),Wilmington,,11 hours 33 mins,"1,209 km" +St. Petersburg,Cincinnati,,, +Cincinnati,St. Petersburg,,, +Des Moines,Charlotte,,15 hours 45 mins,"1,684 km" +Charlotte,Des Moines,,15 hours 50 mins,"1,686 km" +Philadelphia,Green Bay(Wisconsin),,14 hours 34 mins,"1,552 km" +Philadelphia,Rhinelander(Wisconsin),,16 hours 24 mins,"1,765 km" +Philadelphia,Marquette(Wisconsin),,14 hours 30 mins,"1,519 km" +Philadelphia,Madison(Wisconsin),,13 hours 46 mins,"1,457 km" +Philadelphia,La Crosse(Wisconsin),,15 hours 37 mins,"1,673 km" +Philadelphia,Devils Lake(Wisconsin),,14 hours 25 mins,"1,521 km" +Philadelphia,Appleton(Wisconsin),,14 hours 24 mins,"1,533 km" +Philadelphia,Mosinee(Wisconsin),,15 hours 21 mins,"1,652 km" +Philadelphia,Milwaukee(Wisconsin),,12 hours 53 mins,"1,368 km" +Philadelphia,Eau Claire(Wisconsin),,16 hours 7 mins,"1,730 km" +Green Bay(Wisconsin),Philadelphia,,14 hours 35 mins,"1,551 km" +Rhinelander(Wisconsin),Philadelphia,,16 hours 21 mins,"1,774 km" +Marquette(Wisconsin),Philadelphia,,14 hours 29 mins,"1,518 km" +Madison(Wisconsin),Philadelphia,,13 hours 39 mins,"1,465 km" +La Crosse(Wisconsin),Philadelphia,,15 hours 32 mins,"1,681 km" +Devils Lake(Wisconsin),Philadelphia,,14 hours 22 mins,"1,529 km" +Appleton(Wisconsin),Philadelphia,,14 hours 22 mins,"1,532 km" +Mosinee(Wisconsin),Philadelphia,,15 hours 16 mins,"1,661 km" +Milwaukee(Wisconsin),Philadelphia,,12 hours 54 mins,"1,367 km" +Eau Claire(Wisconsin),Philadelphia,,16 hours 3 mins,"1,739 km" +Idaho Falls,Alamosa(Colorado),,11 hours 47 mins,"1,191 km" +Idaho Falls,Grand Junction(Colorado),,7 hours 16 mins,797 km +Idaho Falls,Durango(Colorado),,9 hours 19 mins,971 km +Idaho Falls,Colorado Springs(Colorado),,10 hours 17 mins,"1,066 km" +Idaho Falls,Gunnison(Colorado),,9 hours 37 mins,994 km +Idaho Falls,Denver(Colorado),,9 hours 19 mins,953 km +Alamosa(Colorado),Idaho Falls,,11 hours 40 mins,"1,190 km" +Grand Junction(Colorado),Idaho Falls,,7 hours 16 mins,796 km +Durango(Colorado),Idaho Falls,,9 hours 15 mins,970 km +Colorado Springs(Colorado),Idaho Falls,,10 hours 15 mins,"1,066 km" +Gunnison(Colorado),Idaho Falls,,9 hours 31 mins,994 km +Denver(Colorado),Idaho Falls,,9 hours 19 mins,957 km +Ithaca,Newark,,3 hours 38 mins,343 km +Newark,Ithaca,,3 hours 37 mins,342 km +Chicago,Twin Falls(Idaho),,22 hours 38 mins,"2,529 km" +Chicago,Pocatello(Idaho),,21 hours 13 mins,"2,347 km" +Chicago,Idaho Falls(Idaho),,21 hours 40 mins,"2,367 km" +Chicago,Sun Valley(Idaho),,1 day 0 hours,"2,651 km" +Chicago,Boise(Idaho),,1 day 0 hours,"2,724 km" +Chicago,Lewiston(Idaho),,1 day 3 hours,"2,906 km" +Twin Falls(Idaho),Chicago,,22 hours 38 mins,"2,531 km" +Pocatello(Idaho),Chicago,,21 hours 15 mins,"2,350 km" +Idaho Falls(Idaho),Chicago,,21 hours 43 mins,"2,369 km" +Sun Valley(Idaho),Chicago,,1 day 0 hours,"2,654 km" +Boise(Idaho),Chicago,,1 day 0 hours,"2,726 km" +Lewiston(Idaho),Chicago,,1 day 3 hours,"2,908 km" +Los Angeles,State College(Pennsylvania),,1 day 13 hours,"4,131 km" +Los Angeles,Johnstown(Pennsylvania),,1 day 12 hours,"4,013 km" +Los Angeles,Harrisburg(Pennsylvania),,1 day 14 hours,"4,198 km" +Los Angeles,Erie(Pennsylvania),,1 day 11 hours,"3,938 km" +Los Angeles,Pittsburgh(Pennsylvania),,1 day 11 hours,"3,903 km" +Los Angeles,Latrobe(Pennsylvania),,1 day 12 hours,"3,950 km" +Los Angeles,Philadelphia(Pennsylvania),,1 day 16 hours,"4,360 km" +Los Angeles,Lewisburg(Pennsylvania),,1 day 14 hours,"4,224 km" +Los Angeles,Scranton(Pennsylvania),,1 day 15 hours,"4,350 km" +State College(Pennsylvania),Los Angeles,,1 day 13 hours,"4,136 km" +Johnstown(Pennsylvania),Los Angeles,,1 day 12 hours,"4,013 km" +Harrisburg(Pennsylvania),Los Angeles,,1 day 14 hours,"4,199 km" +Erie(Pennsylvania),Los Angeles,,1 day 12 hours,"3,936 km" +Pittsburgh(Pennsylvania),Los Angeles,,1 day 11 hours,"3,906 km" +Latrobe(Pennsylvania),Los Angeles,,1 day 12 hours,"3,951 km" +Philadelphia(Pennsylvania),Los Angeles,,1 day 16 hours,"4,362 km" +Lewisburg(Pennsylvania),Los Angeles,,1 day 14 hours,"4,223 km" +Scranton(Pennsylvania),Los Angeles,,1 day 15 hours,"4,348 km" +Key West,Evansville(Indiana),,18 hours 21 mins,"1,961 km" +Key West,South Bend(Indiana),,22 hours 37 mins,"2,408 km" +Key West,Fort Wayne(Indiana),,22 hours 8 mins,"2,347 km" +Key West,Valparaiso(Indiana),,22 hours 41 mins,"2,420 km" +Key West,Indianapolis(Indiana),,20 hours 20 mins,"2,179 km" +Evansville(Indiana),Key West,,18 hours 20 mins,"1,958 km" +South Bend(Indiana),Key West,,22 hours 38 mins,"2,406 km" +Fort Wayne(Indiana),Key West,,22 hours 7 mins,"2,347 km" +Valparaiso(Indiana),Key West,,22 hours 42 mins,"2,419 km" +Indianapolis(Indiana),Key West,,20 hours 21 mins,"2,177 km" +Charlotte,Toledo(Ohio),,8 hours 54 mins,915 km +Charlotte,Cleveland(Ohio),,7 hours 51 mins,829 km +Charlotte,Dayton(Ohio),,7 hours 5 mins,735 km +Charlotte,Columbus(Ohio),,6 hours 41 mins,685 km +Charlotte,Akron(Ohio),,7 hours 15 mins,771 km +Charlotte,Cincinnati(Ohio),,7 hours 26 mins,744 km +Toledo(Ohio),Charlotte,,8 hours 57 mins,908 km +Cleveland(Ohio),Charlotte,,7 hours 48 mins,828 km +Dayton(Ohio),Charlotte,,7 hours 5 mins,734 km +Columbus(Ohio),Charlotte,,6 hours 42 mins,684 km +Akron(Ohio),Charlotte,,7 hours 13 mins,771 km +Cincinnati(Ohio),Charlotte,,7 hours 24 mins,743 km +Jackson,San Diego(California),,, +Jackson,Redding(California),,, +Jackson,Sacramento(California),,, +Jackson,Fresno(California),,, +Jackson,San Luis Obispo(California),,, +Jackson,Oakland(California),,, +Jackson,Santa Barbara(California),,, +Jackson,Stockton(California),,, +Jackson,Santa Rosa(California),,, +Jackson,Bakersfield(California),,, +Jackson,Santa Ana(California),,, +Jackson,Santa Maria(California),,, +Jackson,San Jose(California),,, +Jackson,Burbank(California),,, +Jackson,Arcata(California),,, +Jackson,Butte(California),,, +Jackson,Palm Springs(California),,, +Jackson,Los Angeles(California),,, +Jackson,Long Beach(California),,, +Jackson,San Francisco(California),,, +Jackson,Monterey(California),,, +San Diego(California),Jackson,,, +Redding(California),Jackson,,, +Sacramento(California),Jackson,,, +Fresno(California),Jackson,,, +San Luis Obispo(California),Jackson,,, +Oakland(California),Jackson,,, +Santa Barbara(California),Jackson,,, +Stockton(California),Jackson,,, +Santa Rosa(California),Jackson,,, +Bakersfield(California),Jackson,,, +Santa Ana(California),Jackson,,, +Santa Maria(California),Jackson,,, +San Jose(California),Jackson,,, +Burbank(California),Jackson,,, +Arcata(California),Jackson,,, +Butte(California),Jackson,,, +Palm Springs(California),Jackson,,, +Los Angeles(California),Jackson,,, +Long Beach(California),Jackson,,, +San Francisco(California),Jackson,,, +Monterey(California),Jackson,,, +Albuquerque,San Diego,,11 hours 38 mins,"1,242 km" +San Diego,Albuquerque,,11 hours 39 mins,"1,240 km" +Des Moines,Kansas City(Missouri),,2 hours 52 mins,311 km +Des Moines,Cape Girardeau(Missouri),,6 hours 57 mins,726 km +Des Moines,Branson(Missouri),,5 hours 59 mins,644 km +Des Moines,Fort Leonard Wood(Missouri),,6 hours 1 min,539 km +Des Moines,St. Louis(Missouri),,5 hours 27 mins,562 km +Kansas City(Missouri),Des Moines,,2 hours 51 mins,310 km +Cape Girardeau(Missouri),Des Moines,,7 hours 0 mins,726 km +Branson(Missouri),Des Moines,,5 hours 56 mins,643 km +Fort Leonard Wood(Missouri),Des Moines,,6 hours 0 mins,541 km +St. Louis(Missouri),Des Moines,,5 hours 28 mins,563 km +New Orleans,Louisville,,10 hours 14 mins,"1,136 km" +Louisville,New Orleans,,10 hours 15 mins,"1,139 km" +Jacksonville,Los Angeles,,1 day 11 hours,"3,889 km" +Los Angeles,Jacksonville,,1 day 11 hours,"3,887 km" +Minneapolis,Twin Falls(Idaho),,19 hours 35 mins,"2,147 km" +Minneapolis,Pocatello(Idaho),,18 hours 3 mins,"1,973 km" +Minneapolis,Idaho Falls(Idaho),,17 hours 20 mins,"1,891 km" +Minneapolis,Sun Valley(Idaho),,19 hours 45 mins,"2,169 km" +Minneapolis,Boise(Idaho),,21 hours 6 mins,"2,336 km" +Minneapolis,Lewiston(Idaho),,21 hours 9 mins,"2,251 km" +Twin Falls(Idaho),Minneapolis,,19 hours 30 mins,"2,145 km" +Pocatello(Idaho),Minneapolis,,17 hours 59 mins,"1,972 km" +Idaho Falls(Idaho),Minneapolis,,17 hours 15 mins,"1,891 km" +Sun Valley(Idaho),Minneapolis,,19 hours 43 mins,"2,168 km" +Boise(Idaho),Minneapolis,,21 hours 5 mins,"2,335 km" +Lewiston(Idaho),Minneapolis,,21 hours 7 mins,"2,251 km" +Raleigh,Moline(Illinois),,14 hours 9 mins,"1,493 km" +Raleigh,Belleville(Illinois),,12 hours 17 mins,"1,302 km" +Raleigh,Bloomington(Illinois),,12 hours 15 mins,"1,279 km" +Raleigh,Champaign(Illinois),,11 hours 33 mins,"1,202 km" +Raleigh,Chicago(Illinois),,12 hours 27 mins,"1,297 km" +Raleigh,Rockford(Illinois),,13 hours 47 mins,"1,442 km" +Raleigh,Peoria(Illinois),,12 hours 46 mins,"1,342 km" +Moline(Illinois),Raleigh,,14 hours 8 mins,"1,492 km" +Belleville(Illinois),Raleigh,,12 hours 18 mins,"1,301 km" +Bloomington(Illinois),Raleigh,,12 hours 17 mins,"1,281 km" +Champaign(Illinois),Raleigh,,11 hours 34 mins,"1,201 km" +Chicago(Illinois),Raleigh,,12 hours 28 mins,"1,298 km" +Rockford(Illinois),Raleigh,,13 hours 46 mins,"1,441 km" +Peoria(Illinois),Raleigh,,12 hours 47 mins,"1,343 km" +New York,Sarasota(Florida),,17 hours 37 mins,"1,909 km" +New York,Fort Myers(Florida),,18 hours 34 mins,"2,014 km" +New York,Gainesville(Florida),,14 hours 57 mins,"1,619 km" +New York,Orlando(Florida),,15 hours 50 mins,"1,736 km" +New York,Daytona Beach(Florida),,15 hours 12 mins,"1,662 km" +New York,Jacksonville(Florida),,13 hours 47 mins,"1,508 km" +New York,Tampa(Florida),,16 hours 50 mins,"1,824 km" +New York,Panama City(Florida),,17 hours 48 mins,"1,929 km" +New York,Key West(Florida),,21 hours 46 mins,"2,319 km" +New York,West Palm Beach(Florida),,17 hours 45 mins,"1,966 km" +New York,Miami(Florida),,18 hours 45 mins,"2,065 km" +New York,Tallahassee(Florida),,16 hours 10 mins,"1,767 km" +New York,Punta Gorda(Florida),,18 hours 9 mins,"1,979 km" +New York,Fort Lauderdale(Florida),,18 hours 23 mins,"2,034 km" +New York,Pensacola(Florida),,17 hours 58 mins,"1,922 km" +Sarasota(Florida),New York,,17 hours 35 mins,"1,902 km" +Fort Myers(Florida),New York,,18 hours 31 mins,"2,008 km" +Gainesville(Florida),New York,,14 hours 56 mins,"1,612 km" +Orlando(Florida),New York,,15 hours 42 mins,"1,725 km" +Daytona Beach(Florida),New York,,15 hours 7 mins,"1,642 km" +Jacksonville(Florida),New York,,13 hours 44 mins,"1,500 km" +Tampa(Florida),New York,,16 hours 46 mins,"1,817 km" +Panama City(Florida),New York,,17 hours 46 mins,"1,923 km" +Key West(Florida),New York,,21 hours 41 mins,"2,309 km" +West Palm Beach(Florida),New York,,17 hours 39 mins,"1,956 km" +Miami(Florida),New York,,18 hours 38 mins,"2,057 km" +Tallahassee(Florida),New York,,16 hours 9 mins,"1,765 km" +Punta Gorda(Florida),New York,,18 hours 6 mins,"1,971 km" +Fort Lauderdale(Florida),New York,,18 hours 17 mins,"2,024 km" +Pensacola(Florida),New York,,17 hours 53 mins,"1,912 km" +Washington,Moline(Illinois),,12 hours 51 mins,"1,356 km" +Washington,Belleville(Illinois),,12 hours 40 mins,"1,308 km" +Washington,Bloomington(Illinois),,11 hours 32 mins,"1,194 km" +Washington,Champaign(Illinois),,10 hours 49 mins,"1,117 km" +Washington,Chicago(Illinois),,10 hours 43 mins,"1,120 km" +Washington,Rockford(Illinois),,12 hours 8 mins,"1,260 km" +Washington,Peoria(Illinois),,12 hours 3 mins,"1,257 km" +Moline(Illinois),Washington,,13 hours 3 mins,"1,355 km" +Belleville(Illinois),Washington,,12 hours 52 mins,"1,305 km" +Bloomington(Illinois),Washington,,11 hours 46 mins,"1,193 km" +Champaign(Illinois),Washington,,11 hours 2 mins,"1,113 km" +Chicago(Illinois),Washington,,10 hours 54 mins,"1,120 km" +Rockford(Illinois),Washington,,12 hours 19 mins,"1,269 km" +Peoria(Illinois),Washington,,12 hours 15 mins,"1,255 km" +Atlanta,Montgomery,,2 hours 21 mins,259 km +Montgomery,Atlanta,,2 hours 23 mins,259 km +San Luis Obispo,San Diego(California),,5 hours 0 mins,503 km +San Luis Obispo,Redding(California),,6 hours 22 mins,690 km +San Luis Obispo,Sacramento(California),,4 hours 32 mins,466 km +San Luis Obispo,Fresno(California),,2 hours 20 mins,221 km +San Luis Obispo,Oakland(California),,3 hours 26 mins,360 km +San Luis Obispo,Santa Barbara(California),,1 hour 37 mins,152 km +San Luis Obispo,Stockton(California),,3 hours 50 mins,390 km +San Luis Obispo,Santa Rosa(California),,4 hours 20 mins,454 km +San Luis Obispo,Bakersfield(California),,2 hours 14 mins,219 km +San Luis Obispo,Santa Ana(California),,3 hours 50 mins,359 km +San Luis Obispo,Santa Maria(California),,34 mins,51.3 km +San Luis Obispo,San Jose(California),,2 hours 50 mins,297 km +San Luis Obispo,Burbank(California),,3 hours 6 mins,302 km +San Luis Obispo,Arcata(California),,8 hours 5 mins,814 km +San Luis Obispo,Butte(California),,5 hours 55 mins,609 km +San Luis Obispo,Palm Springs(California),,4 hours 45 mins,478 km +San Luis Obispo,Los Angeles(California),,3 hours 14 mins,304 km +San Luis Obispo,Long Beach(California),,3 hours 29 mins,337 km +San Luis Obispo,San Francisco(California),,3 hours 34 mins,372 km +San Luis Obispo,Monterey(California),,2 hours 19 mins,227 km +San Diego(California),San Luis Obispo,,4 hours 59 mins,502 km +Redding(California),San Luis Obispo,,6 hours 26 mins,691 km +Sacramento(California),San Luis Obispo,,4 hours 33 mins,471 km +Fresno(California),San Luis Obispo,,2 hours 20 mins,221 km +Oakland(California),San Luis Obispo,,3 hours 29 mins,360 km +Santa Barbara(California),San Luis Obispo,,1 hour 37 mins,153 km +Stockton(California),San Luis Obispo,,3 hours 50 mins,396 km +Santa Rosa(California),San Luis Obispo,,4 hours 24 mins,454 km +Bakersfield(California),San Luis Obispo,,2 hours 15 mins,219 km +Santa Ana(California),San Luis Obispo,,3 hours 49 mins,355 km +Santa Maria(California),San Luis Obispo,,34 mins,52.8 km +San Jose(California),San Luis Obispo,,2 hours 50 mins,297 km +Burbank(California),San Luis Obispo,,3 hours 4 mins,294 km +Arcata(California),San Luis Obispo,,8 hours 10 mins,816 km +Butte(California),San Luis Obispo,,5 hours 59 mins,604 km +Palm Springs(California),San Luis Obispo,,4 hours 44 mins,478 km +Los Angeles(California),San Luis Obispo,,3 hours 8 mins,304 km +Long Beach(California),San Luis Obispo,,3 hours 28 mins,336 km +San Francisco(California),San Luis Obispo,,3 hours 34 mins,372 km +Monterey(California),San Luis Obispo,,2 hours 20 mins,227 km +Charlotte,Pellston(Michigan),,13 hours 12 mins,"1,418 km" +Charlotte,Traverse City(Michigan),,13 hours 12 mins,"1,377 km" +Charlotte,Alpena(Michigan),,13 hours 10 mins,"1,366 km" +Charlotte,Iron Mountain(Michigan),,16 hours 17 mins,"1,712 km" +Charlotte,Kalamazoo(Michigan),,10 hours 58 mins,"1,137 km" +Charlotte,Saginaw(Michigan),,10 hours 52 mins,"1,132 km" +Charlotte,Grand Rapids(Michigan),,11 hours 30 mins,"1,205 km" +Charlotte,Lansing(Michigan),,10 hours 32 mins,"1,097 km" +Charlotte,Muskegon(Michigan),,12 hours 3 mins,"1,268 km" +Charlotte,Hancock(Michigan),,17 hours 49 mins,"1,858 km" +Charlotte,Detroit(Michigan),,9 hours 49 mins,"1,012 km" +Charlotte,Escanaba(Michigan),,15 hours 42 mins,"1,666 km" +Pellston(Michigan),Charlotte,,13 hours 14 mins,"1,411 km" +Traverse City(Michigan),Charlotte,,13 hours 15 mins,"1,370 km" +Alpena(Michigan),Charlotte,,13 hours 12 mins,"1,357 km" +Iron Mountain(Michigan),Charlotte,,16 hours 14 mins,"1,711 km" +Kalamazoo(Michigan),Charlotte,,10 hours 55 mins,"1,136 km" +Saginaw(Michigan),Charlotte,,10 hours 53 mins,"1,124 km" +Grand Rapids(Michigan),Charlotte,,11 hours 30 mins,"1,197 km" +Lansing(Michigan),Charlotte,,10 hours 34 mins,"1,089 km" +Muskegon(Michigan),Charlotte,,12 hours 4 mins,"1,261 km" +Hancock(Michigan),Charlotte,,17 hours 50 mins,"1,851 km" +Detroit(Michigan),Charlotte,,9 hours 52 mins,"1,006 km" +Escanaba(Michigan),Charlotte,,15 hours 43 mins,"1,659 km" +Elmira,Pellston(Michigan),,9 hours 36 mins,"1,016 km" +Elmira,Traverse City(Michigan),,9 hours 36 mins,975 km +Elmira,Alpena(Michigan),,9 hours 35 mins,963 km +Elmira,Iron Mountain(Michigan),,13 hours 2 mins,"1,345 km" +Elmira,Kalamazoo(Michigan),,8 hours 30 mins,908 km +Elmira,Saginaw(Michigan),,7 hours 16 mins,729 km +Elmira,Grand Rapids(Michigan),,8 hours 18 mins,851 km +Elmira,Lansing(Michigan),,7 hours 59 mins,867 km +Elmira,Muskegon(Michigan),,8 hours 51 mins,914 km +Elmira,Hancock(Michigan),,14 hours 13 mins,"1,455 km" +Elmira,Detroit(Michigan),,7 hours 7 mins,764 km +Elmira,Escanaba(Michigan),,12 hours 6 mins,"1,264 km" +Pellston(Michigan),Elmira,,9 hours 35 mins,"1,016 km" +Traverse City(Michigan),Elmira,,9 hours 36 mins,975 km +Alpena(Michigan),Elmira,,9 hours 33 mins,961 km +Iron Mountain(Michigan),Elmira,,13 hours 0 mins,"1,345 km" +Kalamazoo(Michigan),Elmira,,8 hours 28 mins,907 km +Saginaw(Michigan),Elmira,,7 hours 14 mins,728 km +Grand Rapids(Michigan),Elmira,,8 hours 15 mins,850 km +Lansing(Michigan),Elmira,,8 hours 0 mins,867 km +Muskegon(Michigan),Elmira,,8 hours 50 mins,914 km +Hancock(Michigan),Elmira,,14 hours 11 mins,"1,456 km" +Detroit(Michigan),Elmira,,7 hours 7 mins,764 km +Escanaba(Michigan),Elmira,,12 hours 4 mins,"1,263 km" +Reno,Portland,,8 hours 47 mins,855 km +Portland,Reno,,8 hours 49 mins,855 km +Philadelphia,Kansas City(Missouri),,16 hours 54 mins,"1,811 km" +Philadelphia,Cape Girardeau(Missouri),,14 hours 27 mins,"1,522 km" +Philadelphia,Branson(Missouri),,17 hours 7 mins,"1,829 km" +Philadelphia,Fort Leonard Wood(Missouri),,15 hours 37 mins,"1,648 km" +Philadelphia,St. Louis(Missouri),,13 hours 25 mins,"1,425 km" +Kansas City(Missouri),Philadelphia,,16 hours 52 mins,"1,811 km" +Cape Girardeau(Missouri),Philadelphia,,14 hours 24 mins,"1,521 km" +Branson(Missouri),Philadelphia,,17 hours 5 mins,"1,828 km" +Fort Leonard Wood(Missouri),Philadelphia,,15 hours 34 mins,"1,647 km" +St. Louis(Missouri),Philadelphia,,13 hours 23 mins,"1,426 km" +Jacksonville,State College(Pennsylvania),,13 hours 23 mins,"1,469 km" +Jacksonville,Johnstown(Pennsylvania),,12 hours 52 mins,"1,388 km" +Jacksonville,Harrisburg(Pennsylvania),,11 hours 55 mins,"1,315 km" +Jacksonville,Erie(Pennsylvania),,14 hours 3 mins,"1,529 km" +Jacksonville,Pittsburgh(Pennsylvania),,12 hours 19 mins,"1,334 km" +Jacksonville,Latrobe(Pennsylvania),,12 hours 31 mins,"1,320 km" +Jacksonville,Philadelphia(Pennsylvania),,12 hours 23 mins,"1,362 km" +Jacksonville,Lewisburg(Pennsylvania),,13 hours 3 mins,"1,414 km" +Jacksonville,Scranton(Pennsylvania),,13 hours 46 mins,"1,512 km" +State College(Pennsylvania),Jacksonville,,13 hours 30 mins,"1,478 km" +Johnstown(Pennsylvania),Jacksonville,,12 hours 50 mins,"1,388 km" +Harrisburg(Pennsylvania),Jacksonville,,12 hours 4 mins,"1,317 km" +Erie(Pennsylvania),Jacksonville,,14 hours 4 mins,"1,529 km" +Pittsburgh(Pennsylvania),Jacksonville,,12 hours 17 mins,"1,335 km" +Latrobe(Pennsylvania),Jacksonville,,12 hours 27 mins,"1,320 km" +Philadelphia(Pennsylvania),Jacksonville,,12 hours 27 mins,"1,367 km" +Lewisburg(Pennsylvania),Jacksonville,,13 hours 11 mins,"1,420 km" +Scranton(Pennsylvania),Jacksonville,,13 hours 55 mins,"1,514 km" +San Diego,Salt Lake City(Utah),,10 hours 51 mins,"1,207 km" +San Diego,Moab(Utah),,11 hours 31 mins,"1,266 km" +San Diego,Ogden(Utah),,11 hours 20 mins,"1,265 km" +San Diego,Vernal(Utah),,12 hours 47 mins,"1,367 km" +San Diego,Provo(Utah),,10 hours 14 mins,"1,137 km" +San Diego,Cedar City(Utah),,7 hours 27 mins,805 km +Salt Lake City(Utah),San Diego,,10 hours 48 mins,"1,207 km" +Moab(Utah),San Diego,,11 hours 30 mins,"1,266 km" +Ogden(Utah),San Diego,,11 hours 19 mins,"1,265 km" +Vernal(Utah),San Diego,,12 hours 53 mins,"1,368 km" +Provo(Utah),San Diego,,10 hours 13 mins,"1,137 km" +Cedar City(Utah),San Diego,,7 hours 24 mins,805 km +Tampa,Pellston(Michigan),,20 hours 21 mins,"2,302 km" +Tampa,Traverse City(Michigan),,20 hours 19 mins,"2,232 km" +Tampa,Alpena(Michigan),,20 hours 19 mins,"2,250 km" +Tampa,Iron Mountain(Michigan),,21 hours 46 mins,"2,385 km" +Tampa,Kalamazoo(Michigan),,17 hours 48 mins,"1,955 km" +Tampa,Saginaw(Michigan),,18 hours 1 min,"2,015 km" +Tampa,Grand Rapids(Michigan),,18 hours 13 mins,"2,004 km" +Tampa,Lansing(Michigan),,17 hours 41 mins,"1,981 km" +Tampa,Muskegon(Michigan),,18 hours 29 mins,"2,018 km" +Tampa,Hancock(Michigan),,23 hours 42 mins,"2,565 km" +Tampa,Detroit(Michigan),,16 hours 58 mins,"1,896 km" +Tampa,Escanaba(Michigan),,21 hours 57 mins,"2,404 km" +Pellston(Michigan),Tampa,,20 hours 22 mins,"2,301 km" +Traverse City(Michigan),Tampa,,20 hours 24 mins,"2,260 km" +Alpena(Michigan),Tampa,,20 hours 20 mins,"2,247 km" +Iron Mountain(Michigan),Tampa,,21 hours 46 mins,"2,382 km" +Kalamazoo(Michigan),Tampa,,17 hours 48 mins,"1,959 km" +Saginaw(Michigan),Tampa,,18 hours 2 mins,"2,013 km" +Grand Rapids(Michigan),Tampa,,18 hours 14 mins,"2,005 km" +Lansing(Michigan),Tampa,,17 hours 43 mins,"1,979 km" +Muskegon(Michigan),Tampa,,18 hours 31 mins,"2,017 km" +Hancock(Michigan),Tampa,,23 hours 44 mins,"2,562 km" +Detroit(Michigan),Tampa,,17 hours 1 min,"1,896 km" +Escanaba(Michigan),Tampa,,21 hours 59 mins,"2,401 km" diff --git a/database/restaurants/.DS_Store b/database/restaurants/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 Binary files /dev/null and b/database/restaurants/.DS_Store differ diff --git a/database/restaurants/clean_restaurant_2022.csv b/database/restaurants/clean_restaurant_2022.csv new file mode 100644 index 0000000000000000000000000000000000000000..0fae68836f282b47bb57334d8efbc9ec9885dbcb --- /dev/null +++ b/database/restaurants/clean_restaurant_2022.csv @@ -0,0 +1,9552 @@ +,Name,City,Cuisines,Average Cost,Aggregate Rating +0,Le Petit Souffle,Binghamton,"Tea, Pizza, Indian, Seafood",46,4.8 +1,Izakaya Kikufuji,Niagara Falls,"Desserts, Pizza, French, Fast Food, Mediterranean, Seafood",66,4.5 +2,Heat - Edsa Shangri-La,Los Angeles,"Bakery, BBQ",148,4.4 +3,Ooma,San Luis Obispo,"Desserts, Fast Food, Cafe, Indian, Seafood",88,4.9 +4,Sambo Kojin,Yakima,"Tea, Seafood, Cafe, Fast Food",57,4.8 +5,Din Tai Fung,Minot,"Tea, Fast Food, Bakery, Seafood",62,4.4 +6,Buffet 101,Oklahoma City,"Tea, Pizza, Fast Food, American, Seafood",74,4.0 +7,Vikings,Kahului,"Desserts, Pizza, Italian, BBQ, Bakery",74,4.2 +8,Spiral - Sofitel Philippine Plaza Manila,Harrisburg,"Tea, Cafe, Pizza",222,4.9 +9,Locavore,Islip,"Tea, Bakery, Pizza, Desserts",40,4.8 +10,Silantro Fil-Mex,Syracuse,"Chinese, BBQ, Mediterranean, Fast Food",29,4.9 +11,Mad Mark's Creamery & Good Eats,Montgomery,"Desserts, Tea, Pizza, Mexican, Cafe",33,4.2 +12,Silantro Fil-Mex,Aberdeen,"Pizza, Mediterranean, BBQ",29,4.8 +13,Guevarra's,Newburgh,"Fast Food, Pizza, Seafood",65,4.2 +14,Sodam Korean Restaurant,Duluth,"Desserts, Tea, French, Fast Food, Cafe",25,4.3 +15,Cafe Arabelle,Knoxville,"French, BBQ, Desserts, Seafood",29,3.6 +16,Nonna's Pasta & Pizzeria,Islip,"French, BBQ, Desserts",34,4.0 +17,Balay Dako,Hilo,"Tea, Pizza, Fast Food",56,4.5 +18,Hobing Korean Dessert Cafe,Grand Rapids,"Tea, Chinese, Bakery, Desserts",22,4.5 +19,Wildflour Cafe + Bakery,Austin,"Desserts, French, Bakery, BBQ, Seafood",55,4.4 +20,NIU by Vikings,Medford,"French, BBQ, Desserts, Fast Food",111,4.7 +21,The Food Hall by Todd English,Valparaiso,"Cafe, Mexican, Pizza, Bakery",66,4.5 +22,Chez Michou,Fort Smith,"Tea, Bakery, Fast Food, American, Seafood",57,3.0 +23,Caf愆 Daniel Briand,Muskegon,"Cafe, Mexican, Bakery, BBQ",85,3.8 +24,Casa do Biscoito Mineiro,Fort Dodge,"Cafe, Pizza, BBQ, Chinese, American, Seafood",49,3.7 +25,Maori,Provo,"Chinese, Seafood, Cafe, Italian",60,3.8 +26,Pizza 礞 Bessa,Memphis,"Bakery, Mexican, BBQ, Desserts",96,3.2 +27,Sushi Loko,Salt Lake City,"Bakery, American, Fast Food",33,3.1 +28,Beirute,Melbourne,"Tea, BBQ, Fast Food",77,3.7 +29,New Koto,Brainerd,"Desserts, Tea, Pizza, French, BBQ",66,3.7 +30,Sandubas Caf愆,Dothan,"Tea, BBQ, Desserts, Seafood",61,0.0 +31,Villa Tevere,Tucson,"Mexican, Mediterranean, Desserts, Fast Food",37,4.1 +32,Rovereto,Portsmouth,"Desserts, Bakery, BBQ, Mediterranean, Seafood",11,3.1 +33,Buena Carne,Alexandria,"Tea, Cafe, Mexican, BBQ, Bakery, Chinese",35,3.6 +34,Taco Pep,Wrangell,"French, Bakery, Cafe, Desserts",11,4.3 +35,Coco Bambu,Aguadilla,"Desserts, Tea, Pizza, Italian, Fast Food, Chinese",49,4.2 +36,Tayp礴,Lake Charles,"Cafe, Pizza, BBQ, Seafood",49,3.6 +37,Outback Steakhouse,Daytona Beach,"Desserts, Pizza, Mexican, Cafe, American",58,4.0 +38,Manzu礴,Yakima,"Cafe, Pizza, Seafood",25,3.2 +39,Coco Bambu,Rockford,"Tea, French, Bakery, BBQ, Cafe",72,4.9 +40,Gero,Kansas City,"French, Pizza, American, Seafood",65,3.3 +41,Brazilian American Burgers,Adak Island,"French, Bakery, Desserts, Fast Food",57,3.6 +42,Pesqueiro Eco Gourmet,Wenatchee,"Cafe, Pizza, BBQ, Fast Food",85,4.0 +43,Confeitaria Colombo,Corpus Christi,"Tea, Chinese, Bakery, Cafe",11,4.8 +44,Bibi,Ontario,"Cafe, Pizza, Fast Food",17,4.7 +45,Cervantes,Des Moines,"Mexican, Indian, BBQ, Pizza",45,4.5 +46,Amir,Monterey,"Bakery, Fast Food",43,4.2 +47,TT Burger,Helena,"Tea, Bakery, BBQ, Fast Food, Mediterranean",63,4.8 +48,Braseiro da G礴vea,Sacramento,"Desserts, Tea, Pizza, Mexican, Fast Food",37,4.9 +49,Balada Mix,Salt Lake City,"Bakery, Indian, American, Desserts",44,4.6 +50,Garota de Ipanema,Akron,"Seafood, Bakery, BBQ, Fast Food",60,4.9 +51,Zaz礴 Bistr砬 Tropical,West Yellowstone,"Tea, BBQ",27,4.6 +52,Fil愆 de Ouro,Williston,"Desserts, Tea, Cafe, Fast Food, Chinese",33,4.3 +53,D.O.C Ristorante,Punta Gorda,"Chinese, Bakery, American, Cafe",97,4.0 +54,Sushi Leblon,San Luis Obispo,"French, BBQ, Fast Food, Indian, Seafood",38,4.6 +55,Talho Capixaba,Killeen,"Bakery, Mexican, Indian, Pizza",91,4.4 +56,Leme Light,Reno,"Cafe, Mexican, Fast Food",55,4.2 +57,Shirley,Rapid City,"Desserts, Mexican, BBQ, Fast Food, Cafe",55,4.2 +58,Quiosque Chopp Brahma,Austin,"Tea, Pizza, Bakery, Fast Food, Indian",69,0.0 +59,Apraz韄vel,Gulfport,"Seafood, Pizza, Desserts, Fast Food",68,4.7 +60,Aconchego Carioca,Helena,"Tea, American, Desserts",58,4.6 +61,Garota de Ipanema,Adak Island,"Desserts, Tea, BBQ, Indian, Seafood",15,4.3 +62,Cantina Famiglia Mancini,Albuquerque,"Tea, Cafe, Desserts",40,4.5 +63,Templo da Carne - Marcos Bassi,Erie,"Pizza, French, Bakery, Mediterranean, Seafood",27,4.4 +64,Gopala Hari,Boise,"Tea, Pizza, Italian, Fast Food, Mediterranean, Seafood",28,3.1 +65,Jiquitaia,Bozeman,"Tea, Pizza, American",36,4.1 +66,Skye - Hotel Unique,Duluth,"French, Mexican, Bakery, BBQ",31,4.8 +67,Les 3 Brasseurs,Knoxville,"Desserts, Pizza, Italian, Cafe, Indian",24,4.6 +68,Red Steak & Burger,Brunswick,"Bakery, BBQ",96,3.9 +69,Cantinho da Gula,Lubbock,"Cafe, BBQ, Desserts, Italian",78,0.0 +70,Paris 6 Classique,Lubbock,"Desserts, Cafe, Pizza, Mexican, BBQ, Chinese",91,3.4 +71,Kawa Sushi,State College,"French, Mexican, Desserts, Fast Food",82,3.5 +72,A Figueira Rubaiyat,Rhinelander,"Cafe, Pizza, Desserts, Fast Food",94,4.3 +73,Kinoshita,White Plains,"Tea, Pizza, Fast Food, American, Seafood",42,3.9 +74,Meats,Victoria,"Tea, Cafe, Pizza, Seafood",56,4.3 +75,Paribar,Grand Rapids,"French, BBQ, Seafood",54,4.3 +76,Terra韄o It礴lia,Florence,"Tea, Chinese, Pizza, BBQ",85,4.4 +77,Divino Fog恚o,Key West,"Tea, Bakery, BBQ, Seafood",68,0.0 +78,Super Grill,Vernal,"Desserts, BBQ, Bakery, Cafe, Indian",96,0.0 +79,Esquina Mocot韄,Branson,"Pizza, Bakery, Fast Food, Cafe, Indian",21,4.4 +80,Veloso,Lewiston,"Cafe, Pizza, American, Fast Food",19,4.6 +81,Sainte Marie Gastronomia,Fort Dodge,"Bakery, Mediterranean, BBQ",57,4.1 +82,Austin's BBQ and Oyster Bar,Grand Junction,"Tea, Bakery, Fast Food, Indian, Seafood",15,3.3 +83,BJ's Country Buffet,Manchester,"Cafe, BBQ",33,3.3 +84,Cookie Shoppe,Punta Gorda,"Tea, Bakery, BBQ, Mediterranean, Seafood",44,3.4 +85,El Vaquero Mexican Restaurant,Huntsville,"Desserts, Seafood",82,3.4 +86,Elements Coffee Co - Northwest,Bristol,"Tea, Pizza, BBQ, Indian, Seafood",18,3.4 +87,Pearly's Famous Country Cookng,Grand Rapids,"Tea, Pizza",86,3.4 +88,Chick-fil-A,Spokane,"Bakery, American, BBQ",83,3.5 +89,Guang Zhou Chinese Restaurant,Richmond,"Desserts, Tea, Cafe, Fast Food, Chinese, Indian",84,3.9 +90,Harvest Moon,Pocatello,"Pizza, Fast Food",90,3.7 +91,Henry Campbell's Steakhouse,Norfolk,"Chinese, Cafe, Seafood",83,3.5 +92,Hong Kong Cafe,Philadelphia,"Tea, Pizza, Italian, BBQ, Cafe",47,3.6 +93,House of China Restaurant II,Mosinee,"Tea, Pizza, French, Cafe, Seafood",96,3.8 +94,Jimmie's Hot Dogs,Santa Ana,"Fast Food, BBQ, Italian",96,3.9 +95,Locos Grill & Pub,Grand Island,"Tea, Chinese, Desserts",29,3.5 +96,Longhorn Steakhouse,Santa Rosa,"French, Pizza, BBQ, Fast Food",83,3.5 +97,Mikata Japanese Steakhouse,Appleton,"Cafe, Pizza, Bakery, Italian",72,3.6 +98,Shogun Japanese Steak House,Raleigh,"Tea, French, Mexican, Fast Food",83,3.5 +99,The Catch Seafood Room & Oyster Bar,Watertown,"Tea, BBQ, Fast Food, Mediterranean, Seafood",51,3.8 +100,Villa Gargano,Jacksonville,"Tea, American, Desserts",51,3.7 +101,3 Squares Diner,Lubbock,"Pizza, Indian, Fast Food",73,3.4 +102,Whitebull Hotel,North Platte,"Bakery, BBQ, Italian",89,3.5 +103,Last Resort Grill,Omaha,"Cafe, American, Fast Food",81,4.5 +104,Mama's Boy Restaurant,Wichita Falls,"Bakery, BBQ",25,4.5 +105,Sr. Sol 1,Savannah,"Tea, French, Mediterranean, Desserts",30,4.6 +106,Choo Choo Eastside,Stockton,"Tea, Chinese, Bakery",40,3.9 +107,The Grill,Aguadilla,"Desserts, Tea, BBQ, Fast Food, Mediterranean",78,3.7 +108,Big City Bread Cafe,Texarkana,"Cafe, Pizza, Bakery, BBQ",61,4.3 +109,Clocked,Miami,"Tea, Italian, Mexican, BBQ, Cafe",49,4.2 +110,DePalma's Italian Cafe - Downtown,San Angelo,"French, Pizza, Chinese, Seafood",38,4.0 +111,DePalma's Italian Cafe - East Side,Bakersfield,"Chinese, Pizza, Bakery",12,4.1 +112,Five & Ten,Saginaw,"French, Pizza, Bakery",86,4.3 +113,Grit,Mosinee,"Bakery, BBQ, Seafood",28,4.2 +114,Ike & Jane,Fort Smith,"Cafe, Pizza, Indian, Seafood",20,4.1 +115,La Dolce Vita Ristorante,North Bend,"Cafe, Pizza, Mediterranean, Fast Food",20,4.1 +116,Shokitini,Buffalo,"Tea, Cafe, Pizza, Mexican, Chinese, Seafood",41,4.2 +117,Taqueria Del Sol,Syracuse,"Pizza, BBQ, Fast Food, Chinese, Seafood",61,4.1 +118,The National,Johnstown,"Chinese, BBQ, Cafe, Seafood",47,4.1 +119,The Royal Peasant,Salisbury,"Tea, Seafood",87,4.4 +120,Transmetropolitan,Hartford,"Bakery, American, BBQ, Seafood",42,4.4 +121,Trappeze Pub,Dothan,"Desserts, Tea, Italian, French, BBQ, Seafood",47,4.2 +122,Viva! Argentine Cuisine,Harrisburg,"Mexican, Pizza, BBQ",28,4.1 +123,Miyabi Kyoto Japanese Steak House,Sarasota,"Desserts, Tea, Pizza, French, Cafe",22,4.6 +124,Rae's Coastal Cafe,Midland,"Tea, Seafood",20,4.9 +125,The Bee's Knees,Santa Ana,"Cafe, Pizza, Desserts, Seafood",12,4.5 +126,Boll Weevil Cafe,Killeen,"Tea, Pizza",74,3.9 +127,Farmhaus Burger,Muskegon,"Desserts, Tea, Pizza, French, Cafe",75,3.9 +128,Manuel's Bread Cafe,Lansing,"French, Pizza, Seafood",28,3.8 +129,Sconyers Bar B Que,Des Moines,"Tea, Cafe",17,3.5 +130,Frog Hollow Tavern,Pensacola,"American, BBQ, Fast Food, Cafe, Indian",20,4.3 +131,Giuseppe's Pizza & Italian Specialities,Long Beach,"Bakery, Fast Food, Cafe, Indian, Mediterranean, Seafood",72,4.1 +132,Mellow Mushroom,Beaumont,"Pizza, Bakery, BBQ, Fast Food, Indian",86,4.4 +133,Nacho Mamas Burritos,Portland,"Chinese, Pizza, Seafood, Italian",54,4.0 +134,Rhinehart's Oyster Bar,Grand Forks,"Tea, French, Bakery, Indian",29,4.0 +135,Takosushi,Scranton,"Bakery, Pizza",20,4.2 +136,The Chop House,Marquette,"Desserts, Tea, Pizza, Mexican, Bakery, Indian",81,4.0 +137,The Taj of India,Bangor,"Cafe, Pizza, BBQ, Italian",74,4.0 +138,Augsburg Haus,Sioux City,"Seafood, Fast Food",84,3.9 +139,Pho Bac,Punta Gorda,"Fast Food, Mediterranean, Desserts, Italian",19,4.1 +140,Rhinehart's Oyster Bar,Nantucket,"Tea, Pizza, Mediterranean, Seafood",44,4.0 +141,Thai Kitchen,Binghamton,"Desserts, Pizza, Bakery, BBQ, Chinese",85,4.3 +142,El Kiosco Mexican Restaurant,White Plains,"Tea, Pizza",65,4.2 +143,Taste of Balingup,Marquette,"BBQ, Desserts",35,3.2 +144,Bridge Road Brewers,Hyannis,"Pizza, BBQ, Italian",33,4.6 +145,Bardenay,Provo,"Seafood, Bakery, Cafe, Italian",49,4.5 +146,Flatbread Neapolitan Pizzeria,Roanoke,"Pizza, Italian, Bakery, Fast Food, Indian, Seafood",78,4.6 +147,Goldy's Breakfast Bistro,La Crosse,"Desserts, Tea, Cafe, American, Seafood",94,4.5 +148,Chandlers Steakhouse,Duluth,"Desserts, Tea, Italian, Bakery, Fast Food, American",98,3.9 +149,Bar Gernika Basque Pub & Eatery,Palm Springs,"Tea, Pizza, Desserts, Fast Food",50,4.3 +150,Barbacoa Restaurant,Williston,"Pizza, Italian, BBQ, Cafe, Mediterranean",91,4.1 +151,Big Jud's,Sioux Falls,"Cafe, American, Seafood",90,4.2 +152,Bittercreek Ale House,Little Rock,"Tea, French, Cafe, Fast Food",13,4.3 +153,Boise Fry Company,Devils Lake,"Desserts, Mexican, Bakery, Fast Food, Cafe",99,4.4 +154,Flying Pie Pizzaria,Great Falls,"Desserts, Bakery, Fast Food, Cafe, Indian, Mediterranean",78,4.1 +155,Fork,Waco,"Tea, French, Mediterranean, Seafood",58,4.4 +156,Guido's Original New York Style Pizza,Dodge City,"Desserts, Bakery, BBQ, Fast Food, Mediterranean",83,4.3 +157,Los Beto's,El Paso,"Tea, Chinese, Cafe, Desserts",34,4.4 +158,Lucianos Italian Restaurant,Clarksburg,"Chinese, Bakery, Pizza, Seafood",53,4.4 +159,Mai Thai Restaurant,Alexandria,"Chinese, Bakery, BBQ, Fast Food",77,4.0 +160,Shige Japanese Cuisine,Aberdeen,"Desserts, Tea, Pizza, French, Fast Food",12,4.1 +161,The Egg Factory,Alexandria,"Cafe, Mexican, American, Desserts",91,4.3 +162,Tucanos,Syracuse,"Pizza, BBQ, Desserts",36,4.0 +163,Texas Roadhouse,Eau Claire,"French, BBQ, Cafe, American, Seafood",24,4.0 +164,Brick 29,Appleton,"Desserts, Tea, BBQ, Cafe, American, Mediterranean",97,4.4 +165,Winifreds,Long Beach,"Bakery, BBQ, Fast Food",23,3.7 +166,Biaggi's Ristorante Italiano,Stockton,"French, Bakery, Cafe, Seafood",20,4.1 +167,El Super Burrito,St. Louis,"Tea, Cafe, Mediterranean, Fast Food",43,4.1 +168,Granite City Food & Brewery,Erie,"BBQ, Cafe, Indian, Desserts",55,4.1 +169,Irish Democrat,Boston,"Tea, Cafe, Bakery, Fast Food",18,4.4 +170,Taste of India,Baton Rouge,"Tea, Bakery, Chinese, Indian, Seafood",28,4.2 +171,Thai Moon Restaurant,Lewiston,"Pizza, Indian, Seafood",89,4.2 +172,Ting's Red Lantern,Seattle,"Italian, Bakery, BBQ, Fast Food, Chinese, Seafood",24,4.2 +173,Monica's,Salisbury,"Bakery, Fast Food",15,3.8 +174,Exotic India,Myrtle Beach,"Indian, BBQ, Fast Food",81,4.1 +175,Shorts Burger and Shine,Miami,"Chinese, Cafe, Seafood",81,4.9 +176,The Hamburg Inn No. 2 Inc.,Kotzebue,"Desserts, French, Mexican, BBQ, Cafe",36,4.5 +177,Bluebird Diner,Baton Rouge,"Cafe, Mexican, Desserts, Fast Food",13,3.6 +178,Graze,Portsmouth,"French, Pizza, Fast Food",85,3.8 +179,A & A Pagliai's Pizza,Alpena,"Tea, American, Fast Food",72,4.3 +180,Atlas World Grill,Rochester,"Tea, Bakery, Mexican, Pizza",54,4.3 +181,BlackStone,Missoula,"Italian, Bakery, Fast Food, Cafe, Mediterranean",53,4.1 +182,Devotay,Toledo,"Chinese, BBQ, Seafood",78,4.0 +183,Jimmy Jack's Rib Shack,Baton Rouge,"Tea, American, BBQ, Fast Food",12,4.2 +184,Zoeys Pizzeria,Paducah,"Desserts, Tea, Cafe, Mexican, Fast Food, Chinese",67,4.7 +185,Tokyo Sushi,San Francisco,"Cafe, Pizza, BBQ",18,3.7 +186,Berry Patch Restaurant,Pensacola,"Bakery, BBQ, Desserts, Seafood",13,4.3 +187,Sakura Sushi & Grill,College Station,"Cafe, Pizza, French, BBQ, Fast Food, Chinese",59,3.1 +188,Uptown Vietnam cuisine,Lynchburg,"Cafe, Bakery, Indian, Seafood",63,3.3 +189,Cafe Le Rue @ The Landings,San Antonio,"French, Mexican, Cafe, Seafood",19,4.6 +190,Mark's City Grille,Fresno,"Tea, Cafe, BBQ, Desserts",71,4.5 +191,B Merrell's,Augusta,"Tea, Pizza, Desserts, Fast Food",74,3.8 +192,Cannon Brewpub,Montgomery,"Pizza, Desserts",21,3.9 +193,Fuji Japanese Steak House,Belleville,"Bakery, Indian, Cafe",70,3.9 +194,Ruth Ann's Family Restaurant,Watertown,"Tea, Pizza, Desserts, Italian",22,3.7 +195,Samurai Japanese Cuisine & Sushi Bar,Durango,"Bakery, Desserts, Fast Food",67,3.6 +196,Wasabi Sushi and Thai,Peoria,"Tea, Italian, BBQ, Fast Food, Seafood",72,3.7 +197,Buckhead Bar and Grill,Dodge City,"Tea, Seafood",79,4.2 +198,Burt's Butcher Shoppe and Eatery,Islip,"Desserts, Italian, BBQ, Fast Food, American, Seafood",65,4.3 +199,Chef Lee's Peking Restaurant,Grand Rapids,"Cafe, Indian, Desserts, Seafood",60,4.0 +200,Country's Barbecue,Savannah,"Cafe, Bakery",59,4.0 +201,Deorio's,Pocatello,"Tea, Bakery, Fast Food, Mediterranean, Seafood",59,4.0 +202,Mellow Mushroom,Burbank,"Tea, Pizza, Mexican, Fast Food, Cafe, American",69,4.1 +203,Meritage,Manhattan,"Desserts, French, Bakery, Fast Food, Seafood",43,4.1 +204,Mongo The Mongolian Fire Pit,Binghamton,"Tea, Mexican, Pizza",38,4.2 +205,The Black Cow,Dothan,"Tea, French, Fast Food, American, Seafood",59,4.3 +206,Wood Stone,Raleigh,"Cafe, Pizza, Indian",55,4.0 +207,Hunter's Pub,Baton Rouge,"Tea, Bakery, BBQ",47,4.4 +208,Consort Restaurant,Tucson,"Bakery, Pizza, Indian, Desserts",54,3.0 +209,Thatcher's Barbeque and Grill,Albuquerque,"Seafood, BBQ, Desserts, Fast Food",30,3.7 +210,Christian and Jake's Bistro,San Juan,"Tea, French, Bakery, Fast Food, Indian",59,4.4 +211,Dub's High on the Hog,Durango,"Tea, Italian, French, Cafe, Seafood",98,4.4 +212,Sierra's Mexican Restaurant,Owensboro,"Bakery, Pizza, Indian, BBQ",49,3.9 +213,Oakwood Cafe,Ponce,"Bakery, BBQ, Desserts, Seafood",42,4.9 +214,Chili's Grill & Bar,Las Vegas,"Pizza, Mexican, Bakery, Fast Food, Cafe",71,3.8 +215,Fuji Japanese Steakhouse,Orlando,"Tea, Bakery, Desserts",75,3.8 +216,Las Palmas,Hagerstown,"Tea, French, Pizza",84,3.8 +217,Tony's Italian Restaurant & Pizza,Lansing,"Tea, Pizza, Indian, BBQ, American",83,3.7 +218,Filling Station,Charleston,"Desserts, Tea, Italian, French, Cafe",78,4.1 +219,Five Guys Burgers and Fries,Nome,"Desserts, Cafe, BBQ, Chinese, Indian, Seafood",43,4.1 +220,Los Pablos,Baltimore,"Indian, BBQ, Cafe, American, Seafood",47,4.1 +221,Kobe Hibachi & Sushi,Tampa,"Desserts, French, BBQ, Bakery, Seafood",63,4.6 +222,Soho Hibachi,Hyannis,"Tea, Seafood, Pizza, Fast Food",12,4.3 +223,Thai Garden,Abilene,"Cafe, American, Desserts",13,4.2 +224,Southern Bliss Bakery,Detroit,"Tea, BBQ, Desserts, Seafood",28,3.7 +225,Bailey's Bar-B-Que,Pensacola,"Tea, Bakery, Mediterranean",13,4.1 +226,Farm To Fork,Provo,"Cafe, Bakery, Fast Food, Chinese, American, Seafood",57,4.3 +227,Home Plate Grill,Dothan,"Tea, French, BBQ, Desserts",58,4.2 +228,Pie Slingers Pizzeria,Beaumont,"Pizza, Mexican, BBQ, Fast Food, Cafe, American",16,4.1 +229,Olive Tree Cafe,Charlotte,"Tea, Chinese, Desserts",23,4.6 +230,"Red Ginger Sushi, Grill & Bar",Philadelphia,"Tea, Cafe, Indian, Fast Food",98,4.5 +231,Crust Stone Oven Pizza,Memphis,"Tea, Pizza, BBQ",73,3.9 +232,Jimmy's Pancake House,New Orleans,"Pizza, Indian, Desserts",50,4.0 +233,Trattoria Tiramisu,Dothan,"Tea, French, BBQ, Desserts",23,4.1 +234,Prairie Grille at SteepleGate Inn,Bangor,"Bakery, Fast Food, Cafe, Indian, Mediterranean",100,3.4 +235,Tantra Asian Bistro,Montgomery,"Cafe, Fast Food",48,4.9 +236,Chick-fil-A,Brainerd,"Tea, Pizza, Seafood",86,3.9 +237,Duck City Bistro,Owensboro,"Cafe, Bakery",35,3.7 +238,Frick's Tap,Bakersfield,"Tea, Bakery, Pizza",19,0.0 +239,Los Agaves,Elmira,"Italian, Fast Food, Cafe, American, Seafood",75,0.0 +240,Azteca,Wilmington,"Cafe, Indian, BBQ",56,4.3 +241,China Cafe,Punta Gorda,"Desserts, Bakery, Cafe, Mediterranean, Seafood",69,4.0 +242,Exotic Thai Restaurant,Grand Rapids,"Tea, Pizza, French, Bakery, Cafe, Indian",49,4.1 +243,Front Street Brewery,Lansing,"BBQ, Mediterranean, Desserts, Italian",25,4.3 +244,Granite City Food & Brewery,Yuma,"Fast Food, Seafood, Bakery, Italian",63,4.0 +245,Los Agaves,State College,"French, BBQ, Cafe",39,4.1 +246,Machine Shed Restaurant,Escanaba,"Tea, Bakery, Seafood",82,4.1 +247,Osaka,Portland,"Desserts, Tea, Pizza, BBQ, Chinese",42,4.2 +248,Texas Roadhouse,Brunswick,"Desserts, Tea, Pizza, American, Mediterranean, Seafood",22,4.2 +249,Hickory Park,Fort Lauderdale,"Desserts, Mexican, Fast Food, Cafe, Seafood",12,4.5 +250,The Cafe,Minneapolis,"Indian, Mediterranean, Desserts, Seafood",14,4.9 +251,Flying Mango,Rockford,"American, BBQ, Seafood",20,4.5 +252,Cool Basil,Milwaukee,"Chinese, Pizza, French, Fast Food, Cafe",40,4.1 +253,HuHot Mongolian Grill,Del Rio,"Cafe, Bakery, BBQ, Fast Food",71,4.0 +254,Malo,Minneapolis,"Tea, Chinese, Indian, Cafe",80,3.2 +255,Centro,Bishop,"Tea, Indian, BBQ, Fast Food",44,4.5 +256,Fong's Pizza,Minot,"Desserts, Pizza, French, BBQ, Fast Food",24,4.6 +257,A Dong Restaurant,Detroit,"Tea, Cafe, Pizza",40,4.4 +258,Court Avenue Brewing Company,Minneapolis,"Pizza, French, Bakery, BBQ, Seafood",31,4.2 +259,Django,Kalamazoo,"Mediterranean, Desserts, Fast Food",65,4.3 +260,Miyabi 9,Cody,"BBQ, Desserts, Italian",37,4.8 +261,Zombie Burger + Drink Lab,Walla Walla,"Indian, Desserts, Seafood",67,4.2 +262,Tursi's Latin King,Baton Rouge,"Tea, BBQ, Desserts",35,4.1 +263,Tsing Tsao South,Long Beach,"Tea, Cafe, BBQ",56,4.1 +264,Bandit Burrito,Wilmington,"Desserts, French, Bakery, Fast Food, Seafood",26,4.0 +265,Jethro's BBQ,Staunton,"Pizza, French, Bakery, Fast Food, Seafood",32,4.3 +266,The Machine Shed Restaurant,Gainesville,"Pizza, Mexican, Bakery, Fast Food, Indian, Seafood",62,3.8 +267,Mi Patria,Branson,"Pizza, Bakery",87,4.0 +268,Waterfront Seafood Market,New Bern,"Tea, BBQ, Bakery, Desserts",36,4.2 +269,The Giggling Goat,Raleigh,"Tea, Seafood, Mediterranean, Fast Food",56,3.6 +270,Burnt Toast Cafe,Cheyenne,"Cafe, Pizza, Bakery, Italian",53,3.4 +271,Catfish Charlie's,Myrtle Beach,"Tea, Chinese, Desserts",14,3.3 +272,Salsa's Mexican Restaurant,State College,"Tea, BBQ, Fast Food",52,3.4 +273,Tony Roma's,Niagara Falls,"Desserts, Tea, French, Fast Food, Cafe, Mediterranean",47,3.3 +274,Vinny Vanucchi's,Augusta,"Desserts, Fast Food, Chinese, Indian, Seafood",45,3.4 +275,Champps Americana,Memphis,"Tea, Pizza, Bakery, Seafood",12,3.5 +276,Fiesta Cancun,West Palm Beach,"Tea, Pizza, Desserts, Italian",27,3.6 +277,Happy Joe's Pizza & Ice Cream,Gunnison,"Desserts, Italian, Bakery, Indian, Seafood",74,3.5 +278,Houlihan's,Kahului,"Desserts, Tea, Bakery, Cafe, American, Mediterranean",84,3.6 +279,Ichiban Hibachi Steakhouse & Sushi Bar,Hattiesburg,"Cafe, Bakery, Pizza, Desserts",25,3.7 +280,Kalmes Breaktime Bar & Grill,Fort Smith,"Bakery, Indian, Fast Food",23,3.6 +281,L. May Eatery,Midland,"Cafe, Pizza, American, BBQ",71,3.8 +282,Los Aztecas,Washington,"Cafe, Bakery, BBQ, Fast Food",46,3.5 +283,Manna Java World Cafe,Washington,"Cafe, Seafood",59,3.5 +284,Mario's Italian Restaurant,Trenton,"Desserts, Tea, Mexican, Bakery, Cafe, Indian",13,3.6 +285,Pepper Sprout Incorporated,Vernal,"Bakery, American, Cafe",62,3.6 +286,Shot Tower Inn,Mason City,"Bakery, Seafood",99,3.6 +287,Sunshine Family Restaurant,Norfolk,"Tea, American, Desserts, Italian",95,3.5 +288,Watershed Cafe,Pensacola,"Chinese, BBQ, Desserts",12,3.7 +289,Woodfire Grille,Elmira,"Pizza, Italian, BBQ, Mediterranean, Seafood",35,3.6 +290,The Belle General,Florence,"French, Desserts, Fast Food",39,4.1 +291,Jehova es Mi Pastor Tacos y Burritos,Christiansted,"Tea, Mediterranean, Fast Food",41,3.7 +292,Flaxton Gardens,Waterloo,"Pizza, Desserts, Italian",37,3.5 +293,Bespoke Harvest,Daytona Beach,"Cafe, BBQ, Fast Food",56,3.7 +294,Houndstooth Grill & Tavern,Palm Springs,"Tea, Pizza, BBQ, Mediterranean",47,4.4 +295,Hawg Wild BBQ & Catfish House,Kodiak,"Bakery, Mediterranean, Fast Food",72,4.1 +296,Bourbon Street Grille,Santa Fe,"Bakery, Fast Food, Cafe, Mediterranean, Seafood",37,3.8 +297,Corkscrew Cafe,Bend,"Tea, Bakery, Fast Food",81,3.9 +298,Smokin Gold BBQ,Pago Pago,"Tea, Bakery, American, Seafood",42,3.9 +299,Hoka-Hoka Japanese Steak & Sushi,San Juan,"Tea, French, American, Cafe",27,4.4 +300,Shenanigan's Irish Pub,New Orleans,"Tea, Chinese, Bakery, Desserts",43,4.1 +301,Fish Tales Lakeside Grille,Augusta,"Tea, Cafe, Bakery, Desserts",37,3.8 +302,Antebellum,Kansas City,"Tea, Bakery",50,4.3 +303,Moonie's Texas Barbecue,Wilmington,"Chinese, Bakery, Fast Food",38,4.1 +304,Atlanta Highway Seafood Market,Alamosa,"Fast Food, Desserts, Seafood",68,4.9 +305,Eat at Thai,Saipan,"Desserts, Tea, Bakery, Cafe, American",34,4.6 +306,Smoke House BBQ and Catering,Islip,"Tea, Indian, Desserts, Fast Food",14,3.8 +307,2 Dog,Grand Junction,"Desserts, BBQ, Fast Food, Cafe, American",29,4.2 +308,Longstreet Cafe,Shreveport,"Desserts, BBQ, Fast Food, Cafe, American",63,4.3 +309,Re-Cess,Owensboro,"Desserts, Pizza, BBQ, Chinese, Seafood",37,4.2 +310,Bodensee,Killeen,"Desserts, Tea, Bakery, Cafe, American",20,3.8 +311,Hofer's Bakery & Cafe,Gustavus,"Mexican, Bakery, BBQ, Fast Food, Cafe, American",34,3.9 +312,Troll Tavern,Minneapolis,"Tea, BBQ, Mediterranean",71,2.2 +313,The Nacoochee Village Tavern & Pizzeria,Roswell,"Bakery, Pizza, Seafood",72,4.0 +314,Blue Bean Love Cafe,Rock Springs,"Tea, Italian, Mexican, Bakery, Fast Food",30,3.8 +315,La Trattoria of Lavandula,Presque Isle,"Desserts, Tea, French, Bakery, BBQ, Mediterranean",68,3.8 +316,5 Little Pigs,Petersburg,"Tea, French, Desserts",46,4.1 +317,Beach Box Cafe,Daytona Beach,"Chinese, Pizza, BBQ, Cafe",96,3.7 +318,Funkey Monkey,Brainerd,"Desserts, Tea, Indian, Bakery, Cafe, American",25,3.8 +319,Burger Queen Drive In,San Antonio,"Cafe, Bakery, Fast Food",64,3.6 +320,Blue Orchid Thai Restaurant,Evansville,"Tea, Mexican, American, Desserts",86,4.5 +321,Stillwater on Belmore,Charleston,"Tea, BBQ, Seafood",44,3.6 +322,Mr.,Hartford,"French, Bakery, Seafood, Fast Food",92,3.5 +323,Emilio's Cuban Cafe,Florence,"American, BBQ, Bakery, Cafe, Indian",89,3.9 +324,Ingleside Village Pizza,Elmira,"French, Indian, Cafe, Desserts",16,4.9 +325,Jim Shaw's Seafood Grill & Bar,Everett,"Mexican, BBQ, Desserts, Fast Food",97,4.6 +326,Mandarin Chinese Restaurant,Ketchikan,"Cafe, Fast Food",70,4.5 +327,Rookery,Latrobe,"Mexican, BBQ, Fast Food, Cafe, Seafood",20,4.5 +328,Dovetail,Marquette,"Fast Food, Indian, BBQ, Italian",95,3.8 +329,Bonefish Grill,Escanaba,"Tea, Pizza, Desserts",65,4.1 +330,Downtown Grill,Huntsville,"Pizza, Bakery",74,4.0 +331,Greek Corner Deli,Dillingham,"Tea, Pizza, Mexican, BBQ, Fast Food",62,4.3 +332,Natalia's,Wrangell,"Cafe, Mexican, Pizza, BBQ",44,4.2 +333,Papouli's Mediterranean Cafe & Market,Miami,"Tea, Desserts",26,4.2 +334,Benson's Steak and Sushi,Concord,"Tea, Pizza, French, Fast Food, Cafe",58,3.7 +335,My Fathers Place,Hartford,"Desserts, Tea, French, Bakery, American",16,3.7 +336,Sushi Thai Restaurant,Flagstaff,"Tea, Bakery, BBQ, Desserts",49,3.7 +337,The Mellow Mushroom,Presque Isle,"Tea, Seafood, BBQ, Fast Food",49,3.8 +338,El Jalisciense Mexican Restaurant,San Luis Obispo,"Cafe, Pizza, American, Desserts",34,4.1 +339,Greek Village,Long Beach,"Desserts, Italian, Bakery, BBQ, Chinese",80,4.0 +340,Martin's BBQ,San Antonio,"Tea, BBQ, Fast Food, Indian, Seafood",71,4.2 +341,Thai Pepper,Grand Island,"Bakery, Mexican, Pizza",28,4.0 +342,Zen Japanese Steakhouse and Sushi Bar,Baton Rouge,"Tea, BBQ, Desserts, Seafood",20,4.1 +343,Star Buffet,Kansas City,"Bakery, BBQ, Fast Food",73,2.9 +344,Triangle Restaurant,Dodge City,"Tea, Indian, BBQ",22,2.4 +345,Three Anchors,Grand Forks,"Tea, Pizza, Bakery, Italian",76,3.8 +346,HI Lite Bar & Lounge,Binghamton,"French, BBQ, Cafe, Seafood",17,3.4 +347,Vince's Restaurant & Pizzeria,Asheville,"French, Bakery, Indian, Pizza",71,3.6 +348,Poets Cafe,Texarkana,"Chinese, Bakery, Indian, Desserts",88,2.4 +349,The Artesian Restaurant,Roanoke,"Tea, BBQ, Mediterranean, Desserts",74,3.6 +350,Cev韄che Tapas Bar & Restaurant,El Paso,"BBQ, Seafood",35,4.4 +351,'Ohana,Hancock,"Pizza, Bakery, Mediterranean, Italian",83,4.5 +352,Earl of Sandwich,Valparaiso,"Cafe, BBQ, Fast Food",17,4.7 +353,Raglan Road Irish Pub and Restaurant,Colorado Springs,"Chinese, Bakery, Pizza, Mediterranean",97,4.3 +354,Caf愆 Tu Tu Tango,Santa Ana,"Tea, Pizza, French, Bakery, Cafe, American",88,4.6 +355,Texas de Brazil,Victoria,"Desserts, Tea, BBQ, Cafe, Indian",59,4.6 +356,Bahama Breeze Island Grille,Sacramento,"French, Bakery, BBQ, Fast Food, Seafood",31,4.3 +357,Maggiano's Little Italy,Brainerd,"Chinese, American, Desserts, Fast Food",65,4.4 +358,Hawkers Asian Street Fare,Wrangell,"Desserts, Mexican, BBQ, Cafe, Seafood",95,4.6 +359,Tako Cheena by Pom Pom,Miami,"Fast Food, Indian, Desserts, Italian",60,4.4 +360,Seasons 52 Fresh Grill,New York,"Seafood, Indian, Desserts, Italian",30,4.4 +361,Hollerbach's Willow Tree Caf愆,Yuma,"Desserts, BBQ, Fast Food, Cafe, Mediterranean",73,4.8 +362,Pom Pom's Teahouse and Sandwicheria,Monterey,"Seafood, Indian, Fast Food",41,4.9 +363,Yellow Dog Eats,Martha's Vineyard,"Cafe, Indian, Desserts, Seafood",34,4.9 +364,Tibby's New Orleans Kitchen,Buffalo,"Seafood, Indian, BBQ, Italian",48,4.7 +365,The Coop,Latrobe,"American, Mediterranean, Desserts, Seafood",33,3.6 +366,Bosphorous Turkish Cuisine,Savannah,"Pizza, Indian, Fast Food",58,4.2 +367,Ethos Vegan Kitchen,Las Vegas,"Desserts, Bakery, Cafe, Mediterranean, Seafood",42,4.4 +368,Hillstone,Mason City,"Desserts, Tea, Italian, Fast Food, Seafood",95,4.4 +369,The Ravenous Pig,Ponce,"Bakery, Fast Food, Chinese, American, Seafood",62,4.4 +370,Vivo Bar and Grill,Laredo,"Bakery, Mediterranean, BBQ, Fast Food",17,4.4 +371,Pier 70,Niagara Falls,"Tea, Bakery, Mediterranean, Seafood",60,2.6 +372,DiVine,Fayetteville,"Mexican, BBQ, Bakery, Cafe, Seafood",32,3.4 +373,Cactus Flower Cafe Navarre,Portland,"Cafe, Italian, BBQ, Fast Food, Chinese",48,4.2 +374,McGuire's Irish Pub & Brewery,Bozeman,"Fast Food, Desserts, Italian",72,4.9 +375,New Yorker Deli & Pizzeria,Redding,"Pizza, Bakery, Desserts, Seafood",78,4.6 +376,Tu-Do Vietnamese Restaurant,Midland,"Desserts, Pizza, Mexican, Bakery, Seafood",62,4.5 +377,Carrabba's Italian Grill,Akron,"BBQ, Seafood",41,3.7 +378,Jaco's Bayfront Bar and Grille,Florence,"French, Bakery, Cafe, Desserts",98,3.9 +379,The Tin Cow,Tampa,"BBQ, Desserts, Seafood",67,3.7 +380,Cactus Flower Cafe,Aguadilla,"Pizza, BBQ, Cafe, American, Seafood",27,4.2 +381,Dharma Blue,Brainerd,"Fast Food, Bakery, Indian, Italian",46,4.1 +382,Global Grill,Trenton,"Desserts, Pizza, BBQ, Chinese, Mediterranean",20,4.4 +383,Ichiban,Raleigh,"Tea, Pizza",14,4.3 +384,The Fish House,New Orleans,"Desserts, Tea, BBQ, Bakery, Mediterranean",20,4.0 +385,Tuscan Oven,Trenton,"Desserts, Tea, Italian, Fast Food, Cafe",74,4.1 +386,Flounders Chowder House,Saipan,"Tea, Bakery, Cafe, American, Seafood",24,3.9 +387,Hemingway's Island Grill,Washington,"Mexican, BBQ, Fast Food, Cafe, Seafood",57,3.5 +388,Native Cafe,Manchester,"Tea, Italian, BBQ, Fast Food, Chinese, Seafood",89,4.2 +389,Peg Leg Pete's,Tampa,"French, Bakery, Cafe",91,4.4 +390,The Grand Marlin,Escanaba,"Cafe, Mediterranean, Desserts, Italian",20,4.3 +391,Original Georgios Authentic Greek Food,Little Rock,"Bakery, Pizza, BBQ, Desserts",46,4.7 +392,Fisherman's Corner,New Bern,"Cafe, Pizza, BBQ, Chinese, American, Seafood",68,4.4 +393,Mad Cowes Cafe,Melbourne,"Mexican, BBQ, Desserts, Fast Food",20,3.7 +394,Rupes Burgers,Greer,"Desserts, Tea, Cafe, BBQ, Chinese",90,3.7 +395,Texas Roadhouse,Minneapolis,"Cafe, Pizza, BBQ, Desserts",22,3.5 +396,Riverwalk Cafe,Alamosa,"Tea, Pizza, Fast Food",97,3.6 +397,Royal Hotel,Moline,"Tea, Pizza, Mexican, Chinese, Seafood",74,3.6 +398,Buddy's Italian Restaurant,Bangor,"Chinese, BBQ, Desserts",70,3.7 +399,Butterburrs,Tampa,"Pizza, Seafood",28,3.6 +400,Chang Garden,Wenatchee,"Tea, Cafe, Bakery, Pizza",44,3.5 +401,Fifth Street Bagelry,Baton Rouge,"Cafe, Mexican, Pizza, Desserts",10,3.8 +402,Goody's Deli,Killeen,"Italian, French, Bakery, Fast Food, Cafe",83,3.8 +403,Grecian Key Restaurant,St. Cloud,"Desserts, Italian, Bakery, Fast Food, Cafe",74,3.7 +404,Outer Limits Fun Zone,Aberdeen,"Tea, Italian, Bakery, Indian, Seafood",97,3.5 +405,Portneuf Valley Brewing,Las Vegas,"Pizza, Mexican, Bakery, Fast Food, Cafe, Mediterranean",58,3.7 +406,Sandpiper Restaurant & Lounge,Richmond,"Tea, Cafe, Desserts, Seafood",20,3.6 +407,Senor Iguanas,Kahului,"Tea, Pizza, French, Bakery, American",90,3.6 +408,Sushi Family,Stockton,"Bakery, Pizza, Cafe",72,3.6 +409,Taste of India Nepal,Scranton,"Desserts, Pizza, French, Mexican, Fast Food",68,3.8 +410,Thai Paradise,Twin Falls,"Fast Food, Indian, Desserts, Seafood",87,3.7 +411,The Bridge,Laredo,"Cafe, Pizza",28,3.6 +412,Nosh Mahal,Manhattan,"Tea, Cafe, Pizza, Bakery",51,0.0 +413,El Herradero,Brainerd,"Mexican, Indian, BBQ, Fast Food",10,4.1 +414,Barrett Junction Cafe,Tallahassee,"Tea, Mexican, Fast Food, Cafe, Seafood",84,3.3 +415,Blue Point Grill,Pensacola,"French, Indian, Cafe, Desserts",75,4.0 +416,Giovanni's Shrimp Truck,Minot,"Pizza, French, Bakery, Cafe, Seafood",93,4.5 +417,Kona Brewing Company,Erie,"Cafe, Mexican, Pizza, BBQ",76,4.7 +418,Leonard's Bakery,Hibbing,"Bakery, BBQ, Fast Food, Cafe, Mediterranean",70,4.7 +419,Coconuts Fish Cafe,Dallas,"Cafe, BBQ, Mediterranean, Fast Food",38,4.5 +420,Kihei Caffe,Bakersfield,"Fast Food, BBQ, Desserts, Italian",47,4.5 +421,Monkeypod Kitchen by Merriman,Minneapolis,"Desserts, Pizza, Bakery, Fast Food, Indian, Mediterranean",50,4.2 +422,Sansei Seafood Restaurant & Sushi Bar,Presque Isle,"French, Pizza, Seafood",78,4.2 +423,Star Noodle,Dayton,"Desserts, Bakery, BBQ, Fast Food, Chinese, American",17,4.6 +424,Aloha Mixed Plate,Valparaiso,"French, American, BBQ, Seafood",91,4.2 +425,Gazebo,Omaha,"Desserts, Bakery, Cafe, American, Seafood",63,4.4 +426,Hula Grill,Great Falls,"Pizza, BBQ, Seafood",76,4.3 +427,Kimo's,Kalispell,"Fast Food, Seafood, Italian",97,4.3 +428,Mama's Fish House,Charlottesville,"Tea, Pizza, Desserts, Fast Food",63,4.9 +429,Marukame Udon,Philadelphia,"Tea, Pizza, Italian, BBQ, Fast Food, Chinese",100,4.9 +430,Yard House,International Falls,"Tea, Pizza, Italian, French, Seafood",43,4.6 +431,Lulu's Waikiki,Long Beach,"Tea, Cafe, BBQ, Seafood",50,3.9 +432,Duke's Waikiki,Providence,"Chinese, Bakery, Desserts, Fast Food",35,4.4 +433,Eggs 'n Things,Christiansted,"BBQ, American, Desserts",88,4.0 +434,Roy's,Yakima,"Tea, Bakery, Seafood",45,4.2 +435,Wailana Coffee House,Sitka,"Tea, Cafe, Desserts, Fast Food",48,4.2 +436,The Lady & Sons,Trenton,"Tea, Pizza, Bakery, Cafe, American",38,3.3 +437,Green Truck Pub,Scranton,"BBQ, Desserts",47,4.7 +438,Leopold's Ice Cream,St. Cloud,"Seafood, BBQ, Italian",62,4.6 +439,Mrs. Wilkes' Dining Room,Kotzebue,"Cafe, Bakery",50,4.5 +440,Zunzi's,Rochester,"Tea, BBQ",18,4.5 +441,Moon River Brewing Company,Spokane,"Desserts, Cafe, French, Fast Food, Chinese",79,3.7 +442,Pirates' House Restaurant,Jacksonville,"Chinese, Pizza, BBQ",59,3.8 +443,B. Matthew's Eatery,Valparaiso,"Tea, Mexican, Pizza, Mediterranean",21,4.1 +444,Crystal Beer Parlor,Deadhorse,"Bakery, BBQ, Cafe, Fast Food",18,4.4 +445,Goose Feathers Cafe and Bakery,Jacksonville,"Tea, Fast Food, Italian",57,4.2 +446,Henry's,Charleston,"Tea, Cafe, Mexican, Pizza",90,4.1 +447,Huey's On The River,Lansing,"Tea, French, Bakery, Fast Food, Cafe",75,4.1 +448,J. Christopher's,Evansville,"Tea, Cafe, Desserts, Seafood",39,4.3 +449,Lulu's Chocolate Bar,Duluth,"Pizza, Desserts",97,4.3 +450,Rocks on the River,Daytona Beach,"Tea, Indian, BBQ",35,4.0 +451,SOHO South Cafe,Escanaba,"Seafood, American, BBQ, Fast Food",53,4.3 +452,The Olde Pink House,Hagerstown,"Bakery, BBQ",63,4.4 +453,Vic's On The River,Dubuque,"Cafe, Bakery, Desserts, Seafood",99,4.1 +454,The Crab Shack,Bend,"Pizza, American, BBQ, Cafe, Indian, Seafood",97,3.8 +455,Tybee Island Social Club,Bakersfield,"Tea, Bakery, Fast Food, Cafe, American",83,3.9 +456,Sky On 57,Knoxville,"Tea, Cafe, Pizza, Chinese, Seafood",150,3.4 +457,Cut By Wolfgang Puck,Victoria,"Tea, French, Desserts, Fast Food",135,4.0 +458,Restaurant Andre,Charlottesville,"Desserts, Tea, BBQ, Fast Food, Chinese",250,3.8 +459,Potato Head Folk,Ithaca,"French, BBQ, Fast Food",40,3.1 +460,Jaan,Palm Springs,"Seafood, Mexican, Fast Food",215,3.8 +461,Rhubarb Le Restaurant,Flagstaff,"Desserts, Cafe, Mexican, Bakery, Chinese, Seafood",157,3.9 +462,Al'frank Cookies,Pago Pago,"Tea, Pizza, Bakery, Chinese, Mediterranean, Seafood",52,4.2 +463,Fratini La Trattoria,Melbourne,"Tea, BBQ, Desserts",89,4.1 +464,Boufe Boutique Cafe,Charlotte Amalie,"Tea, Pizza, Fast Food",65,3.2 +465,The Refinery Singapore,Pago Pago,"Mexican, BBQ, Bakery, Fast Food, Chinese",40,3.2 +466,Chye Seng Huat Hardware,Detroit,"Tea, Mexican, Seafood",94,3.7 +467,Makansutra Gluttons Bay,Charleston,"Tea, French, BBQ, Mediterranean",84,3.0 +468,Colony,Appleton,"Pizza, BBQ, Fast Food, Chinese, Mediterranean, Seafood",110,3.8 +469,Summer Pavilion,Belleville,"Cafe, Desserts, Bakery, BBQ",150,3.9 +470,The Lokal,Elmira,"Tea, Italian, BBQ, Fast Food, Cafe",53,3.1 +471,I Am,Newburgh,"Tea, Bakery, Desserts, Seafood",42,3.2 +472,Super Loco,Charleston,"Tea, French, Bakery, Pizza",76,3.2 +473,Artistry,Newark,"Cafe, Pizza, Desserts, Seafood",79,3.8 +474,Bitters & Love,Duluth,"Bakery, Pizza, BBQ, Fast Food",33,3.9 +475,Artichoke Cafe,Little Rock,"Desserts, Bakery, Fast Food, Cafe, American",97,3.2 +476,Archie's Waeside,Fort Lauderdale,"Tea, Cafe, Fast Food",26,3.7 +477,Bob Roe's Pizza,Hilo,"Seafood, Bakery, Italian",23,3.6 +478,Da Kao Restaurant,Laredo,"Bakery, BBQ, Mediterranean, Fast Food",69,3.8 +479,Famous Dave's,Traverse City,"Desserts, Italian, BBQ, Fast Food, Indian",39,3.6 +480,Fuji Bay Japanese Restaurant,Long Beach,"Tea, Cafe, Mexican, Fast Food",82,3.7 +481,HuHot Mongolian Grill,Lawton,"French, Bakery, Pizza",67,3.6 +482,Hunan Palace,Fort Dodge,"Desserts, Indian, BBQ, Italian",81,3.8 +483,Jerry's Pizza,Santa Rosa,"Tea, Chinese, Indian, BBQ",35,3.8 +484,Jim's Burgers,Fort Smith,"Tea, Bakery",10,3.7 +485,Johnnie Mars,Pellston,"Tea, Fast Food",33,3.9 +486,Miles Inn,Wrangell,"Bakery, Pizza, BBQ",28,3.7 +487,Milwaukee Wiener House,Manchester,"Bakery, Indian, Mediterranean, Seafood",45,3.8 +488,Minerva's Food & Cocktails,San Antonio,"Cafe, Bakery, BBQ, Seafood",99,3.7 +489,Monterrey Mexican Restaurant,Rock Springs,"Bakery, BBQ, Fast Food, American, Seafood",14,3.7 +490,Rebos,Kalispell,"Cafe, American, Desserts, Seafood",45,3.8 +491,Tokyo Japanese Steakhouse & Sushi Bar,Mission,"Pizza, French, Bakery, Fast Food, Cafe",20,3.9 +492,Diamond Thai Cuisine,Concord,"Pizza, Bakery, Desserts",42,4.0 +493,El Fredo Pizza,Lewiston,"Desserts, Fast Food",98,4.0 +494,Trattoria Fresco,Nome,"American, Desserts, Seafood",51,4.0 +495,Kahill's Steak-Fish Chophouse,Palm Springs,"Cafe, Bakery, American",38,3.5 +496,Rumba Island Bar & Grill,Mason City,"Desserts, Tea, BBQ, Indian, Mediterranean",58,4.6 +497,Red Mesa Cantina,Philadelphia,"Tea, Cafe, American, Fast Food",36,4.6 +498,BellaBrava,Manhattan,"French, Bakery, Seafood, Fast Food",39,4.1 +499,Ceviche Tapas Bar & Restaurant,Sitka,"Cafe, Mediterranean, Desserts, Seafood",12,4.1 +500,The Moon Under Water,Philadelphia,"Pizza, Italian, BBQ, Bakery, Fast Food, Mediterranean",94,4.1 +501,Bern's Steak House,Martha's Vineyard,"Desserts, Mexican, Bakery, BBQ, Indian, Seafood",35,4.7 +502,Boca Kitchen Bar Market,St. Cloud,"Tea, Pizza, Bakery, Cafe, American",86,3.9 +503,Edison: Food+Drink Lab,Ogdensburg,"Fast Food, Mexican, Desserts, Seafood",39,3.9 +504,Ceviche Tapas Bar & Restaurant,Seattle,"Tea, Chinese, Desserts",86,4.4 +505,Daily Eats,Traverse City,"Desserts, Seafood",44,4.4 +506,Salt Rock Grill,Melbourne,"French, Cafe, Desserts, Seafood",99,4.2 +507,Mazzaro's Italian Market,Lawton,"Cafe, Mexican, Seafood",26,4.9 +508,Conch Republic Grill,Dothan,"Tea, Pizza, French, Indian, Seafood",77,4.5 +509,Mr. Dunderbak's Biergarten and Marketplatz,Baltimore,"Cafe, Pizza, American",74,4.9 +510,Red Mesa Restaurant,Boston,"Desserts, Tea, Fast Food, Indian, Seafood",65,4.5 +511,Datz,Dillingham,"Bakery, Indian, BBQ, Seafood",82,4.7 +512,Ella's Americana Folk Art Cafe,Monterey,"Pizza, Italian, Bakery, Fast Food, Cafe",24,4.8 +513,Taco Bus,Wilmington,"Tea, Cafe, BBQ",59,4.5 +514,The Refinery,Fort Myers,"Bakery, Indian, Seafood",22,4.0 +515,Columbia Restaurant,Texarkana,"Desserts, Tea, Pizza, Indian, Seafood",91,4.4 +516,1918 Bistro & Grill,Dallas,"Tea, Pizza, BBQ, Seafood",90,4.4 +517,Pig and Whistle,Bemidji,"Fast Food, Mexican, Bakery, Seafood",39,4.1 +518,Buffalo Wild Wings,Louisville,"Tea, Bakery, BBQ, Fast Food, American",22,3.4 +519,El Toreo Mexican Restaurant,Cape Girardeau,"Desserts, Tea, Italian, BBQ, Seafood",35,3.1 +520,306 North Restaurant,Des Moines,"Pizza, Desserts, Seafood",83,3.9 +521,Austins Cattle Co,College Station,"Desserts, Pizza, BBQ, Bakery, Chinese",55,3.7 +522,Beijing Cafe,Pittsburgh,"Desserts, Tea, Pizza, Mexican, Indian",33,3.8 +523,Bleu Cafe,Green Bay,"Indian, Desserts, Seafood",13,3.7 +524,Bleu Pub,Newport News,"Chinese, BBQ, Mediterranean, Fast Food",89,3.8 +525,Bubba Jax Crab Shack,Cincinnati,"Desserts, Italian, French, Cafe, Seafood",20,3.7 +526,Cheddar's Scratch Kitchen,Latrobe,"Tea, Cafe, Seafood",43,3.7 +527,El Cazador,White Plains,"Mexican, Pizza, BBQ",90,3.7 +528,Friends Grille and Bar,Spokane,"Cafe, Desserts, Seafood",69,3.9 +529,Giulios Greek & Italian Restaurant,Kalamazoo,"Fast Food, French, Desserts, Seafood",76,3.8 +530,La Jalisco Supermercato,Des Moines,"Desserts, Pizza, Mexican, Cafe, Seafood",60,3.5 +531,Masato Japanese,Brainerd,"Cafe, BBQ, Italian",98,3.9 +532,Mom & Dad's Italian Restaurant,Daytona Beach,"Tea, Mexican, Cafe, Indian, Seafood",17,3.7 +533,Mori's Japanese Steakhouse & Sushi Bar,Sacramento,"Pizza, French, Fast Food, Cafe, Seafood",35,3.5 +534,Passage 2 India,Newburgh,"Pizza, BBQ, Bakery, Fast Food, Indian, Mediterranean",47,3.8 +535,Rodeo Mexican Restaurant,Salisbury,"Desserts, Pizza, Fast Food, Cafe, American",24,3.8 +536,Steel Magnolias,Louisville,"Italian, Mexican, Fast Food, Cafe, Seafood",26,3.8 +537,Smok'n Pig B-B-Q,Walla Walla,"Tea, Italian, Bakery, BBQ, Seafood",29,4.1 +538,Blue House Cafe,Waco,"Tea, Pizza, Mexican, Cafe, Seafood",55,4.3 +539,Anchorage Cafe Restaurant Wine Bar,Saipan,"Pizza, Bakery, Mediterranean, Fast Food",56,3.6 +540,Lake House Restaurant,Oklahoma City,"Cafe, American, Mediterranean, BBQ",38,4.3 +541,Masala Grill & Coffee House,Deadhorse,"Bakery, Indian, Fast Food",86,3.2 +542,Brown Bottle The Cedar Falls,Charleston,"Tea, Bakery, Indian",28,3.7 +543,Four Queens Dairy Cream,Green Bay,"Chinese, American, BBQ, Fast Food",76,3.9 +544,Hong Kong Chinese Restaurant,Omaha,"Desserts, Italian, Bakery, Cafe, Seafood",83,3.8 +545,HuHot Mongolian Grill,Greensboro,"Desserts, Mexican, Bakery, Fast Food, Cafe",71,3.7 +546,J's Homestyle Cooking,Petersburg,"Fast Food, BBQ, Desserts, Italian",63,3.6 +547,Montage,Dillingham,"Desserts, Tea, French, Fast Food, Cafe, Mediterranean",46,3.6 +548,Mulligan's Brick Oven Grill,Provo,"Seafood, Fast Food",66,3.6 +549,Sakura,Nantucket,"Cafe, Indian, Desserts, Italian",87,3.8 +550,Scratch,Niagara Falls,"Tea, American, Seafood",19,3.7 +551,SOHO Sushi Bar & Deli,Bangor,"Pizza, French, BBQ, Fast Food, Seafood",78,3.6 +552,Texas Roadhouse,Kalispell,"Tea, French, Mexican, BBQ, Cafe, Seafood",14,3.6 +553,Tony's La Pizzeria,Fort Lauderdale,"Tea, Chinese, Bakery, Cafe",32,3.6 +554,Chapala,Hancock,"Desserts, BBQ, Fast Food, Cafe, Mediterranean",84,3.6 +555,Galleria de Paco,Rhinelander,"Desserts, BBQ, Cafe, Mediterranean, Seafood",20,3.6 +556,Golden China,Lansing,"Chinese, Indian, Cafe, BBQ",66,3.7 +557,Rudy's Tacos,Indianapolis,"Cafe, Mexican, Indian, Desserts",29,3.6 +558,The Screaming Eagle,Iron Mountain,"Tea, Italian, Bakery, American, Seafood",86,3.7 +559,The Thai Bowl,Baltimore,"BBQ, Pizza, Desserts, Italian",66,3.5 +560,Tokyo Japanese Steak House,Duluth,"Chinese, American, Desserts, Seafood",80,3.9 +561,Theo Yianni's Authentic Greek Restaurant,Beaumont,"Tea, Italian, Fast Food, Cafe, American, Seafood",31,3.9 +562,Fishpatrick's Crabby Cafe,Lexington,"Indian, Mediterranean, BBQ, Seafood",22,3.2 +563,Arigato Sushi,Traverse City,"Desserts, Mexican, Bakery, BBQ, Fast Food, Mediterranean",96,3.3 +564,Denny's,Binghamton,"Tea, Pizza, Bakery, Italian",64,4.6 +565,Famous Dave's Barbecue,Laramie,"Seafood, Pizza, BBQ, Italian",71,4.6 +566,Pizza Di Rocco,Baton Rouge,"Bakery, Seafood",61,4.4 +567,Sofra Istanbul,Ponce,"Tea, Cafe, American, Desserts",34,4.3 +568,Salt,Baltimore,"Tea, Bakery, Fast Food, Chinese, American",56,4.2 +569,Genghis Grill,Albuquerque,"BBQ, Desserts, Italian",24,4.6 +570,Olive Garden,Juneau,"Desserts, Tea, Pizza, French, BBQ",31,4.1 +571,Cho Gao - Crowne Plaza Abu Dhabi,Oakland,"Tea, BBQ, Seafood",52,4.4 +572,Gazebo,Lexington,"Italian, French, BBQ, Fast Food, Cafe, Seafood",37,4.0 +573,Sangeetha Vegetarian Restaurant,Corpus Christi,"Desserts, Tea, Pizza, French, BBQ",91,3.6 +574,Hot Palayok,La Crosse,"Fast Food, BBQ, Mediterranean, Seafood",52,4.5 +575,Applebee's,Peoria,"Pizza, Fast Food",46,4.0 +576,Tikka Tonight,Salt Lake City,"Desserts, Pizza, Italian, French, Bakery, Fast Food",87,4.0 +577,Bait El Khetyar,Honolulu,"Cafe, Seafood",28,4.0 +578,Indian By Nature,Santa Maria,"Tea, Pizza, Bakery, BBQ, Mediterranean",45,4.3 +579,Via Delhi,Pittsburgh,"Pizza, French, Bakery, American, Seafood",83,4.0 +580,Punjab Grill,Eau Claire,"Pizza, French, Mexican, Bakery, Seafood",100,4.9 +581,Tamba,Kotzebue,"Tea, Mediterranean, Desserts",77,4.7 +582,P.F. Chang's,Chattanooga,"Cafe, Bakery, BBQ, Seafood",33,4.2 +583,The Cheesecake Factory,Hyannis,"Desserts, Tea, Pizza, Mexican, Seafood",96,4.6 +584,The Farm,Lihue,"Tea, Mexican, Fast Food, Mediterranean, Seafood",85,3.9 +585,Maharaja Bhog,Pittsburgh,"Cafe, Pizza",52,4.1 +586,Rasoi Ghar,Dillingham,"Pizza, BBQ, Mediterranean, Fast Food",43,4.3 +587,Barbeque Nation,Sarasota,"Desserts, BBQ, Fast Food, Chinese, Seafood",27,4.5 +588,Farzi Cafe,Yuma,"Mexican, Desserts, Seafood",32,4.5 +589,AB's Absolute Barbecues,Devils Lake,"Cafe, Mexican, Seafood",80,4.9 +590,Carnival By Tresind,Gainesville,"Tea, Chinese, Pizza, Mediterranean",67,4.9 +591,AB's Absolute Barbecues,Miami,"Desserts, Tea, Pizza, Italian, Fast Food, American",55,4.8 +592,Hard Rock Cafe,Atlantic City,"Desserts, Cafe, BBQ, Chinese, Seafood",44,4.5 +593,The Coffee Club,Shreveport,"Tea, Bakery, Fast Food, American, Seafood",36,4.5 +594,SALT,Gunnison,"Tea, Chinese, BBQ",44,4.3 +595,Din Tai Fung,Devils Lake,"Desserts, Pizza, Bakery, Fast Food, Indian",100,4.3 +596,SpiceKlub,Great Falls,"Tea, Pizza, Indian, Fast Food, Cafe, American",76,4.4 +597,Tresind - Nassima Royal Hotel,Baltimore,"Cafe, Pizza, American, Desserts",67,4.9 +598,Grand Barbeque Buffet Restaurant,Lubbock,"Tea, French, Fast Food, Cafe, Seafood",20,4.4 +599,Red Lobster,Plattsburgh,"Desserts, Pizza, French, Bakery, Seafood",38,3.2 +600,The Cheesecake Factory,Trenton,"Desserts, Fast Food",36,4.7 +601,Parker's,Gainesville,"Desserts, Tea, Italian, French, Bakery, BBQ",74,4.3 +602,Applebee's,Mission,"Tea, French, Cafe, Seafood",34,3.7 +603,Grub Shack,Cheyenne,"Desserts, French, BBQ, Bakery, Chinese",55,4.3 +604,Kamat,Manhattan,"French, Pizza, Indian, Seafood",64,3.9 +605,Vadakkan Pepper,Asheville,"Pizza, Italian, Bakery, BBQ, Fast Food, Mediterranean",71,3.8 +606,Gazebo,Christiansted,"Tea, Chinese, Desserts, Seafood",55,4.1 +607,Katis Restaurant,Ogden,"Fast Food, Cafe, Desserts, Seafood",86,4.3 +608,Zaroob,Bozeman,"Desserts, Tea, French, BBQ, Bakery, Indian",67,3.9 +609,Derby,Colorado Springs,"Desserts, Fast Food",67,4.1 +610,Nayaab Haandi,Portsmouth,"Cafe, Desserts",92,4.1 +611,Najmat Lahore Restaurant,San Luis Obispo,"Seafood, American, BBQ, Italian",36,4.2 +612,Saffron,Atlanta,"Tea, Cafe, Fast Food, Seafood",39,4.1 +613,Pizza Hut,Concord,"Desserts, Pizza, French, Bakery, Cafe",38,2.4 +614,Al Mukhtar Bakery,Fort Myers,"BBQ, Tea, American, Desserts",54,4.2 +615,Aroos Damascus,Pellston,"Desserts, Tea, Italian, Cafe, American",44,4.2 +616,Nando's,College Station,"Pizza, BBQ, Cafe, Indian, Seafood",93,4.2 +617,Peking Chinese Restaurant,Rock Springs,"Bakery, Desserts, Indian, BBQ",61,3.8 +618,TGI Friday's,Boise,"Cafe, Mexican, BBQ, Fast Food",33,3.9 +619,Rajasthan Al Malaki,Fort Lauderdale,"Desserts, Tea, BBQ, American, Seafood",31,4.8 +620,Applebee's,St. Petersburg,"Desserts, Tea, Pizza, French, Cafe",62,4.1 +621,Paper Fig,Hattiesburg,"Mexican, BBQ, Seafood",56,4.5 +622,Sis Burger,Santa Fe,"Chinese, Bakery, Desserts",35,3.8 +623,Crafted Blends,Omaha,"Cafe, BBQ",77,4.2 +624,Jahanpanah,Wichita,"Indian, Desserts, Fast Food",18,3.9 +625,Rangrezz Restaurant,Birmingham,"Bakery, Mexican, Pizza, Fast Food",10,3.5 +626,Time2Eat - Mama Chicken,Nome,"Cafe, Seafood",72,3.6 +627,Chokho Jeeman Marwari Jain Bhojanalya,Nantucket,"Pizza, BBQ, Desserts, Fast Food",15,4.0 +628,Pinch Of Spice,Buffalo,"Cafe, Desserts, Seafood",84,4.2 +629,MoMo Cafe,Kansas City,"Cafe, BBQ",42,4.0 +630,Peshawri - ITC Mughal,St. Cloud,"Cafe, Pizza",21,4.3 +631,Taj Bano - ITC Mughal,Dillingham,"Desserts, Tea, French, Bakery, Seafood",17,4.0 +632,G Thal,Punta Gorda,"Desserts, Bakery, Cafe, American, Mediterranean",61,3.6 +633,Dawat-e-Nawab - Radisson Blu,Burbank,"Mexican, Bakery, Cafe, Indian, Seafood",94,3.8 +634,The Latitude - Radisson Blu,St. Louis,"Pizza, French, BBQ, American, Seafood",18,3.9 +635,Dasaprakash Restaurant,Grand Forks,"Pizza, BBQ, Desserts, Fast Food",72,4.1 +636,The Charcoal Chimney,Augusta,"Tea, Fast Food, BBQ, Italian",86,3.4 +637,Sheroes Hangout,Branson,"Cafe, Pizza, Desserts, Seafood",94,4.9 +638,Bon Barbecue,Yakutat,"Pizza, Bakery, BBQ, Cafe, Mediterranean",61,3.8 +639,Chapter 1 Cafe,Erie,"French, BBQ, Fast Food, Cafe, American, Seafood",30,3.9 +640,Pind Balluchi,Philadelphia,"Desserts, Tea, French, Fast Food, Seafood",44,3.7 +641,Pizza Hut,Phoenix,"Tea, Chinese, Desserts, Seafood",30,4.4 +642,Tea'se Me - Rooftop Tea Boutique,Petersburg,"Tea, Cafe, Desserts, Seafood",49,4.2 +643,Thaaliwala,Washington,"Tea, Pizza, Italian, BBQ, Cafe",88,4.1 +644,650 - The Global Kitchen,Pocatello,"French, Bakery, Cafe",83,4.2 +645,Patang - The Revolving Restaurant,Trenton,"Cafe, Bakery, BBQ, Pizza",47,3.7 +646,Huber & Holly,St. Petersburg,"Cafe, Mexican, Bakery, Chinese, Seafood",62,4.5 +647,@Mango,Alpena,"BBQ, Cafe, American, Desserts",38,4.1 +648,Fozzie's Pizzaiolo,Sault Ste. Marie,"Tea, Indian, Mediterranean, BBQ",28,4.3 +649,La Pino'z Pizza,Greensboro,"Cafe, Pizza, Bakery, Mediterranean",61,4.4 +650,Mocha,Charleston,"Cafe, BBQ, Italian",17,4.4 +651,Blue - Rooftop Cafe Restaurant Bistro,Duluth,"Cafe, French, Seafood, Fast Food",36,3.8 +652,MoMo Caf愆 - Courtyard By Marriott,Pago Pago,"Chinese, Bakery, Cafe, Seafood",61,3.6 +653,Cryo Lab,Brunswick,"Desserts, Pizza, Bakery, Fast Food, Chinese",89,4.6 +654,Swati Snacks,Appleton,"Desserts, Bakery, BBQ, Fast Food, American",84,4.4 +655,Brick Kitchen,Worcester,"Tea, Pizza, BBQ",58,4.3 +656,Kabir Restaurant,Fort Dodge,"Desserts, Pizza, Chinese, American, Seafood",100,3.8 +657,Puffizza,Laramie,"French, BBQ, Seafood",37,4.3 +658,Cafe Alfresco,Fort Smith,"Seafood, Fast Food",12,4.0 +659,The Cafe Baraco,Hartford,"Pizza, Italian, Bakery, Fast Food, Cafe, Mediterranean",14,4.4 +660,Nini's Kitchen,Lansing,"Cafe, Mexican, Desserts",30,4.5 +661,Yanki Sizzlers,Dallas,"Cafe, French, Tea, Mediterranean",96,4.1 +662,The Garden Cafe - The Fern,El Paso,"Desserts, Pizza, Italian, BBQ, Cafe",72,4.1 +663,Mazzo,Little Rock,"Chinese, Cafe, Seafood",29,3.9 +664,Turquoise Villa,Orlando,"French, Bakery, BBQ, Fast Food",55,4.0 +665,Aryan Family's Delight,Pittsburgh,"Tea, Fast Food",64,3.4 +666,Bean Here,Lynchburg,"Tea, Indian, BBQ, Fast Food",74,3.3 +667,Bikanerwala,Cleveland,"Tea, Bakery, BBQ, Fast Food",10,3.2 +668,Dewsis,Ketchikan,"Fast Food, Chinese, Cafe, Italian",48,3.4 +669,Friends Forever,Martha's Vineyard,"Fast Food, BBQ, Seafood",55,3.4 +670,Hotel Ravisha Continental,Rochester,"Cafe, Bakery, Desserts, Fast Food",43,3.4 +671,KFC,Adak Island,"Pizza, Indian, Desserts, Seafood",19,3.4 +672,McDonald's,Evansville,"Tea, Bakery, BBQ, Indian, Seafood",84,3.3 +673,Pind Balluchi,Fayetteville,"Cafe, Pizza, BBQ, Fast Food",80,3.2 +674,Pizza Hut,Asheville,"Bakery, American, Cafe, Italian",90,3.4 +675,Subway,Twin Falls,"French, BBQ, Chinese, Seafood",77,3.4 +676,Tandoor Restaurant,Burbank,"Tea, Bakery, BBQ, Seafood",78,3.2 +677,The BrewMaster,Lynchburg,"Tea, Chinese, BBQ, Fast Food",87,3.3 +678,The Tamarind Tree,Branson,"Tea, Pizza, Indian",96,3.4 +679,Cafe El Chico,Knoxville,"Tea, French, Indian, Seafood",67,3.6 +680,Eat On,Beaumont,"Desserts, Tea, Bakery, Chinese, Indian, Seafood",58,3.7 +681,Hot Stuff,La Crosse,"Chinese, Pizza, BBQ",11,3.5 +682,Paradise,Richmond,"Tea, Pizza, Italian, Fast Food, Seafood",80,3.6 +683,Sagar Ratna,Ontario,"BBQ, Cafe, Indian, Desserts",36,3.5 +684,Moti Mahal Delux,La Crosse,"Desserts, Tea, Pizza, Bakery, Indian, Mediterranean",42,3.3 +685,Makhan Fish and Chicken Corner,Cleveland,"Pizza, French, Fast Food, Chinese, Seafood",25,3.4 +686,Charming Chicken,Key West,"Fast Food, Desserts, Italian",42,3.9 +687,Ahuja Milk Bhandar,Dothan,"Chinese, Bakery, Seafood, Fast Food",80,4.0 +688,Crystal Restaurant,Honolulu,"Tea, Pizza, Bakery, Fast Food, Chinese",57,3.4 +689,Brijwasi Chat Bhandar,Helena,"French, Bakery, Cafe, BBQ",99,3.6 +690,Bubby Fish & Chicken Corner,Aberdeen,"Pizza, Mexican, BBQ, Cafe, American, Seafood",22,3.5 +691,Bon Gateau,Cedar Rapids,"Fast Food, Cafe, Bakery, Italian",53,3.4 +692,The Yellow Chilli,New Bern,"Tea, Bakery, Pizza, Desserts",46,3.4 +693,La Roma Pizzeria,Valparaiso,"French, Bakery, Seafood",89,3.5 +694,Sakhis Watz Kukin,Sun Valley,"French, Cafe, Desserts, Fast Food",55,3.6 +695,The Kulcha Land,Prescott,"Bakery, BBQ, Italian",83,3.9 +696,Shudh Restaurant,Alpena,"Cafe, BBQ, Fast Food",56,3.4 +697,Bade Bhai Ka Brothers' Dhaba,Minot,"Cafe, Bakery, American",88,3.7 +698,Bharawan Da Dhaba,Sarasota,"Desserts, Cafe, Mexican, BBQ, Chinese",10,3.5 +699,Brothers Dhaba,Philadelphia,"Cafe, Desserts, Seafood",52,3.8 +700,Brothers' Amritsari Dhaba,Green Bay,"Chinese, Mexican, Cafe, Seafood",50,3.8 +701,Gurdas Ram Jalebi Wala,Philadelphia,"Cafe, Desserts, Bakery, BBQ",20,4.1 +702,Kesar Da Dhabha,Grand Rapids,"Desserts, Tea, Bakery, Indian, Seafood",32,4.1 +703,Beera Chicken Corner,Hagerstown,"Chinese, Bakery, Cafe, Seafood",55,3.8 +704,Surjit Food Plaza,Hibbing,"Desserts, Mexican, Fast Food, Cafe, Mediterranean, Seafood",24,3.5 +705,Kanha Sweets,Reno,"Italian, Bakery, Fast Food, Cafe, American",28,4.1 +706,Kream N Krunch,Williston,"Cafe, Pizza, Bakery",85,3.6 +707,Balbeer's Kitchen & Bar,Minneapolis,"Tea, Chinese, Bakery",81,3.3 +708,Angeethi Restaurant,Newark,"French, BBQ, Fast Food",12,3.3 +709,Domino's Pizza,Lawton,"Chinese, BBQ, Seafood",18,3.1 +710,Hotel Laadli,Greensboro,"Pizza, Bakery, BBQ",76,3.4 +711,Indiana Veg Restaurant,Fort Leonard Wood,"French, Pizza, BBQ",91,3.4 +712,Madhuban Restaurant - Welcome Hotel Rama International,Decatur,"Pizza, Bakery, Seafood",47,3.4 +713,Mauj Restaurant,Des Moines,"BBQ, French, Pizza, Desserts",44,3.3 +714,Naivedya,Kalispell,"Cafe, Indian, Desserts",29,3.4 +715,d' Curry House,Myrtle Beach,"Tea, Chinese, Desserts, Fast Food",33,3.6 +716,Mokoholic Juice Bar,Kona,"Chinese, Mexican, Cafe, Fast Food",39,3.5 +717,Ashoka's Veg Restaurant,Hartford,"Tea, Bakery, American, BBQ",10,3.3 +718,Kareem's Fine Dining,Dodge City,"Bakery, Desserts, Seafood",43,3.3 +719,That Baat,San Francisco,"Pizza, Bakery",59,3.4 +720,Bhoj Restaurant,Greenville,"Tea, Chinese, Pizza",71,3.7 +721,Downside Up,Kansas City,"Tea, French, Bakery, BBQ, Fast Food, Indian",63,3.2 +722,Kareem's Kabab & Biryani,Mason City,"Pizza, American, BBQ, Indian, Seafood",85,3.4 +723,Great Sagar Restaurant,Bismarck,"Pizza, Italian, Bakery, BBQ, Fast Food, Indian",26,3.3 +724,Kailash Restaurant,Hyannis,"Bakery, Pizza, American",45,3.3 +725,Yalla Yalla,Yakutat,"Mexican, Pizza, BBQ",89,3.3 +726,Sultans of Spice,Memphis,"Cafe, Bakery, Desserts",76,4.1 +727,The Fatty Bao - Asian Gastro Bar,Denver,"Bakery, BBQ, Cafe, Indian, Seafood",93,4.7 +728,Toit,Lake Charles,"Tea, French, Mexican, Cafe, Seafood",14,4.8 +729,Three Dots & A Dash,Baltimore,"Cafe, Chinese, Mediterranean, Seafood",47,3.9 +730,Bombay Brasserie,Toledo,"Tea, Pizza, Mediterranean",32,4.2 +731,Glen's Bakehouse,Asheville,"Pizza, Bakery, Cafe, Indian, Seafood",22,4.0 +732,Onesta,El Paso,"BBQ, American, Desserts, Fast Food",71,4.3 +733,Onesta,Cape Girardeau,"Tea, Desserts, Seafood",31,4.6 +734,ECHOES Koramangala,Lewisburg,"Desserts, Tea, BBQ, Chinese, Mediterranean",24,4.7 +735,Truffles,Providence,"BBQ, Pizza, Desserts, Seafood",60,4.7 +736,The Black Pearl,Chicago,"Cafe, Bakery",63,4.1 +737,Eat Street,Fayetteville,"Tea, French, BBQ, Seafood",63,4.3 +738,Koramangala Social,Wichita,"Tea, Bakery, Cafe, Indian, Mediterranean",38,4.5 +739,AB's - Absolute Barbecues,Lexington,"Cafe, Mediterranean, Desserts",47,4.6 +740,Flechazo,Binghamton,"Tea, French, Pizza, Bakery",59,4.4 +741,Onesta,Dayton,"Italian, BBQ, Fast Food, Cafe, American, Seafood",47,4.6 +742,Communiti,Flagstaff,"Tea, Mexican, Indian, BBQ",16,4.2 +743,Big Brewsky,Las Vegas,"Tea, Bakery, Fast Food",23,4.5 +744,Hoot,Binghamton,"Bakery, Mexican, Indian, Fast Food",10,3.9 +745,Farzi Cafe,Baltimore,"Desserts, American, BBQ, Seafood",96,4.4 +746,Black N White Cafe,Fort Leonard Wood,"Desserts, Fast Food, Chinese, Indian, Seafood",65,3.3 +747,Maybe There,Melbourne,"Tea, Seafood, Fast Food, Italian",54,3.4 +748,Sagar Gaire Fast Food,Pellston,"Desserts, Tea, Pizza, Italian, BBQ, Mediterranean",64,4.9 +749,The Kasbah,Austin,"Cafe, Pizza, BBQ, Fast Food",88,3.9 +750,Bake N Shake,Manhattan,"Tea, Cafe, Mexican",10,4.2 +751,10 Downing Street,La Crosse,"Tea, Cafe, Italian",35,4.0 +752,Chi Kitchen,Christiansted,"Pizza, Bakery, Italian",77,4.0 +753,Pizza Hut,Clarksburg,"Cafe, Seafood",44,4.1 +754,Kafe Kulture,Elmira,"French, BBQ, Cafe, Fast Food",17,3.8 +755,Violet Hour,North Platte,"BBQ, Seafood",13,3.8 +756,Bapu Ki Kutia,Islip,"Tea, Mexican, Bakery, Fast Food",28,3.5 +757,Da pizzeria,North Bend,"Seafood, Bakery, Desserts, Fast Food",94,3.6 +758,Papa Mexicano,Marquette,"Italian, Bakery, BBQ, Fast Food, Seafood",17,3.6 +759,Bake N Shake,Mosinee,"Pizza, American, BBQ",41,4.1 +760,Manohar Dairy And Restaurant,Savannah,"Tea, Indian, Fast Food",23,4.4 +761,Manohar Dairy And Restaurant,Green Bay,"Bakery, Pizza, BBQ",52,4.1 +762,Kebabsville - Sayaji Hotel,Salisbury,"French, Cafe, Seafood",68,4.3 +763,Indian Coffee House,Muskegon,"French, BBQ, Fast Food",50,3.9 +764,The Urban Socialite,Denver,"Cafe, Indian, Desserts, Italian",34,3.8 +765,Bake N Shake,Greer,"Tea, Bakery, BBQ, Fast Food, Mediterranean",41,4.3 +766,Tyre Patty,Wichita Falls,"Pizza, BBQ, Bakery, Chinese, American, Seafood",92,3.9 +767,Silver Streak,Cedar City,"Tea, Fast Food",78,4.1 +768,Barbeque Nation,San Antonio,"Tea, Cafe, Fast Food, Chinese, American",16,4.6 +769,Central Perk 7,Charlotte,"Pizza, Bakery, BBQ, Fast Food",87,4.5 +770,The Chicken Dinesty,Long Beach,"French, Pizza, Seafood",92,3.9 +771,Taste Of China,Hilton Head,"Tea, Seafood, Bakery, Fast Food",91,4.0 +772,Michael's Kitchen,Kahului,"French, Bakery, BBQ, Fast Food",32,3.7 +773,Mamma Mia - Mayfair Lagoon,Salt Lake City,"Pizza, Fast Food",27,4.1 +774,99 North Restaurant,Madison,"Fast Food, Mexican, Indian, Pizza",62,3.6 +775,Adda,Atlanta,"Tea, Mexican, Bakery",22,3.8 +776,Chill Ummm,Providence,"Cafe, Mexican, Desserts, Fast Food",99,3.7 +777,Lal Qila,Kona,"Tea, Indian, Fast Food",77,3.7 +778,Richard's Kitchen & Coffee Bar,Waterloo,"Tea, Bakery, BBQ",41,3.8 +779,Aangan Horizon,Ogden,"Cafe, Mexican, Bakery, Italian",28,4.0 +780,Brewberrys The Coffee Bar,Bismarck,"French, Bakery, BBQ, Italian",74,4.0 +781,Chai Break,Manchester,"Cafe, Pizza, Desserts",87,4.3 +782,JUGAAD JN.,Newport News,"Tea, Chinese, Pizza",52,4.1 +783,Cha cTea,Kalamazoo,"Cafe, Pizza, Mediterranean",77,3.8 +784,Food Fever,Twin Falls,"Fast Food, Chinese, BBQ, Seafood",83,4.2 +785,Mainland China,Aguadilla,"Cafe, Indian, Mediterranean, Fast Food",70,4.3 +786,Eram Rooftop,Santa Ana,"Cafe, Bakery, American, BBQ",77,3.5 +787,The Night Factory,Kodiak,"Tea, Cafe, Mexican, Chinese, Seafood",97,3.7 +788,Brooklyn Central,Aguadilla,"Desserts, American, BBQ, Fast Food, Indian, Seafood",61,4.2 +789,Chili's,Bismarck,"Tea, Cafe, Mediterranean, Desserts",48,4.3 +790,Kylin Experience,Belleville,"Pizza, Bakery, Desserts",11,4.1 +791,Mocha,Gunnison,"Tea, Cafe, Pizza, BBQ",30,4.0 +792,Pirates of Grill,Santa Maria,"Bakery, BBQ, Fast Food, American, Mediterranean, Seafood",90,4.0 +793,Barbeque Nation,Longview,"Cafe, Bakery",26,4.5 +794,TGI Friday's,Cheyenne,"Tea, Bakery, Mexican, Pizza",50,4.3 +795,Pal Dhaba,Harlingen,"Fast Food, Pizza, Desserts, Italian",99,3.8 +796,Midnight Chef,Martha's Vineyard,"Cafe, Desserts",39,3.4 +797,Nik Baker's,Watertown,"Desserts, Tea, Fast Food, Chinese, Mediterranean",12,4.1 +798,OvenFresh,Lawton,"Cafe, Mexican, Seafood",46,4.1 +799,Super Donuts,Adak Island,"Bakery, BBQ, Fast Food, Mediterranean, Seafood",61,4.0 +800,Taco Bell,Kalamazoo,"Chinese, Bakery, Pizza, Seafood",54,4.2 +801,Karim's,Idaho Falls,"Tea, Pizza, BBQ, Cafe, Indian",58,3.3 +802,Virgin Courtyard,Newport News,"Desserts, French, Mexican, Bakery, Cafe, Seafood",32,4.4 +803,Burgrill,Missoula,"Tea, Bakery, Fast Food, Chinese, Indian, Seafood",27,4.5 +804,Uncle Jack's,Saipan,"Cafe, Mexican, Desserts",97,4.0 +805,That Madras Place,Gustavus,"Desserts, Italian, Bakery, BBQ, Cafe",36,4.2 +806,Haunted,Fort Myers,"Desserts, French, Fast Food, Cafe, Seafood",50,3.8 +807,Pantry d'or,Chicago,"Tea, BBQ, Fast Food, Cafe, Indian",53,4.4 +808,Palmshore,Helena,"Tea, Seafood, Italian",58,4.2 +809,Chili's,Midland,"Desserts, Tea, Mexican, Cafe, Seafood",88,4.8 +810,Writer's Cafe,Yuma,"French, Cafe, Fast Food",14,4.2 +811,Fusilli Reasons,Trenton,"Tea, Bakery, Desserts, Seafood",28,4.6 +812,Ciclo Cafe,Waterloo,"Tea, Italian, Cafe, Indian, Seafood",19,4.1 +813,Kaidi Kitchen,Presque Isle,"Tea, Chinese, Bakery, Indian",17,4.0 +814,Bombay Brasserie,Key West,"Chinese, Desserts, Seafood",34,4.6 +815,Maplai,Alpena,"Tea, Indian, Bakery, Fast Food, American",63,4.2 +816,Paradise,Brownsville,"Pizza, French, BBQ, Cafe, Mediterranean, Seafood",72,3.8 +817,L'amandier,Chattanooga,"Cafe, BBQ, Mediterranean, Seafood",28,4.3 +818,Palmshore,Johnstown,"Bakery, American, BBQ, Fast Food",61,4.4 +819,Palmshore,Los Angeles,"Desserts, Bakery, Fast Food, American, Seafood",25,4.3 +820,Basil With A Twist,Fort Leonard Wood,"Desserts, Mexican, BBQ, Fast Food, Seafood",48,4.5 +821,Barbeque Nation,Toledo,"Desserts, Tea, Bakery, American, Mediterranean",78,4.4 +822,AB's - Absolute Barbecues,Cedar City,"Pizza, BBQ, Fast Food",84,4.9 +823,Coal Barbecues,Adak Island,"Desserts, Pizza, French, BBQ, Seafood",73,4.6 +824,Pind,Laramie,"Desserts, Tea, Cafe, Fast Food, Chinese",19,4.0 +825,Kuchi n Kream,Brainerd,"Tea, Cafe, Pizza, Italian",85,4.6 +826,Haribhavanam Hotel,Paducah,"Mexican, Bakery, Fast Food, Cafe, Mediterranean",73,3.9 +827,Kites Cafe,Brownsville,"BBQ, Cafe, Indian, Mediterranean, Seafood",90,3.8 +828,Zucca Pizzeria,Williston,"Desserts, Mexican, Bakery, Fast Food, Cafe",60,3.5 +829,Burger Ka Baap,Mason City,"Seafood, Desserts, Fast Food",46,4.3 +830,The Cascade Restaurant,Concord,"Cafe, Mexican, Desserts",30,4.1 +831,24 Plus Cafe & Restaurant,Anchorage,"BBQ, Pizza, Desserts, Seafood",54,3.8 +832,Valarmathi Kongunaatu Samayal,Hartford,"Tea, Mexican, Bakery, BBQ, Seafood",67,4.5 +833,Bird On Tree,Harlingen,"Tea, Cafe, BBQ, Desserts",33,3.8 +834,Tim's Bistro,Montgomery,"Mexican, BBQ, Desserts",67,3.9 +835,Batlivala & Khanabhoy,Waterloo,"Cafe, American, Desserts",21,4.2 +836,Cafe Totaram,Cape Girardeau,"Bakery, Pizza, Desserts, Seafood",62,4.0 +837,Cream Centre,Hancock,"Desserts, Tea, French, Fast Food, Cafe, Mediterranean",31,4.0 +838,On The Go,Wenatchee,"Cafe, BBQ",30,4.0 +839,Sree Annapoorna,Rochester,"Tea, Cafe, Mexican",52,4.3 +840,That's Y Food,Charleston,"Mexican, Bakery, Desserts, Fast Food",57,4.2 +841,CakeBee,Omaha,"Tea, French, Seafood, Fast Food",32,4.9 +842,Yari,Brainerd,"Bakery, Desserts",16,4.2 +843,Cream Stone,San Antonio,"Cafe, BBQ, Mediterranean, Desserts",53,4.3 +844,Barbeque Nation,Rock Springs,"Desserts, Pizza, Fast Food, American, Seafood",43,4.4 +845,The Punjabi Essence Restaurant,Toledo,"Desserts, Tea, Mexican, Chinese, Seafood",72,3.6 +846,Tirupati Restaurant,Great Falls,"Desserts, BBQ, American, Mediterranean, Seafood",67,3.8 +847,Anandam,Clarksburg,"Pizza, American, Desserts, Seafood",73,3.9 +848,Town Table Restaurant,New Orleans,"Tea, Cafe, Indian, American",100,3.9 +849,Kalsang Friends Corner,Salisbury,"Desserts, Mexican, BBQ, Fast Food, Cafe",26,4.2 +850,The Great Indian Pub,Fayetteville,"Fast Food, Tea, Seafood",95,4.9 +851,BMG - All Day Dining,Detroit,"Desserts, Bakery, BBQ, Indian, Seafood",15,4.3 +852,Punjab Grill,Albuquerque,"Desserts, Cafe, Italian, Bakery, Chinese, Seafood",26,4.0 +853,TBistro,Cheyenne,"Bakery, Pizza, Cafe, BBQ",31,3.8 +854,Y Cafe & Restaurant,Valdosta,"Tea, Cafe, Pizza, Mexican, Fast Food, Chinese",75,4.0 +855,Eddie's Patisserie,Kansas City,"Tea, Mexican, Bakery, BBQ, Seafood",13,4.1 +856,First Gear Cafe,Waco,"Desserts, Tea, Fast Food, Chinese, Seafood",76,3.9 +857,Dunkin Donuts,Fresno,"Cafe, Seafood, Italian",86,3.9 +858,Doon Darbar,Missoula,"Mexican, Pizza, BBQ, Fast Food",15,3.9 +859,Razzmatazz,Lexington,"Fast Food, Cafe, Bakery, Seafood",89,3.9 +860,Barbeque Nation,Great Falls,"Tea, BBQ, Fast Food",46,4.4 +861,Black Pepper Restaurant,Yuma,"Tea, BBQ, Seafood",92,4.0 +862,Cafe Marigold,Anchorage,"Cafe, Desserts",29,4.1 +863,Jalapenos,Houston,"Desserts, Tea, Cafe, Chinese, Seafood",57,4.2 +864,Kalsang AMA Cafe,Erie,"Chinese, Cafe, Seafood",58,4.2 +865,Desire Foods,Columbus,"Desserts, Tea, French, Mexican, Bakery",23,2.9 +866,Knight Rock,Muskegon,"Tea, Bakery, BBQ, Seafood",61,2.8 +867,Punjab Restaurant,Owensboro,"French, Desserts, Fast Food",63,2.8 +868,Raju Dhaba,Niagara Falls,"American, Desserts, Seafood",67,2.9 +869,Rakheja Bakery,Binghamton,"Pizza, Mexican, Fast Food, Cafe, Mediterranean, Seafood",29,2.8 +870,Snax Points,Asheville,"Desserts, Tea, French, Fast Food, Chinese",76,3.0 +871,Aggarwal Sweet Corner,Gainesville,"Tea, American, Seafood",70,0.0 +872,Kashyap Vaishno Dhaba,Ithaca,"Tea, Pizza, BBQ, Cafe, Mediterranean",21,0.0 +873,Total Food Court,Boston,"Bakery, Fast Food",77,0.0 +874,The Chaiwalas,Panama City,"Tea, French, Bakery, Fast Food, Seafood",39,0.0 +875,Cafe And More,Detroit,"Tea, Bakery, Italian",41,2.9 +876,Green Chick Chop,Dodge City,"Bakery, Desserts",28,3.0 +877,Kolkata Hot Kathi Rolls,Salisbury,"Tea, Bakery, Desserts",95,2.9 +878,Aapki Rasoi,Omaha,"Tea, Cafe, Pizza, BBQ",43,0.0 +879,Fusion Food Corner,State College,"Bakery, Mexican, BBQ, Italian",46,0.0 +880,Punjabi Rasoi,Waco,"Fast Food, Cafe, Bakery, Seafood",70,0.0 +881,Kebab Xpress,Manhattan,"Pizza, Desserts",34,2.8 +882,McDonald's,Cedar City,"Fast Food, Tea, Seafood",64,3.4 +883,Suruchi,Ogden,"Tea, Bakery, BBQ, Fast Food, Chinese, American",17,3.4 +884,Berco's,Milwaukee,"Desserts, Pizza, Italian, Cafe, Seafood",91,3.8 +885,Dunkin' Donuts,Florence,"Tea, Seafood, Fast Food, Italian",99,3.6 +886,The Chocolate Room,Toledo,"Chinese, Mexican, Pizza, BBQ",95,3.6 +887,Baskin Robbin,Arcata,"Tea, Pizza",55,0.0 +888,Popcorn Fusion,Erie,"Tea, Pizza, Italian, Bakery, Mediterranean",99,0.0 +889,Subway,Milwaukee,"Tea, BBQ, Desserts",48,0.0 +890,KFC,Harlingen,"Tea, Fast Food, Mediterranean, Seafood",18,2.1 +891,Barbeque Nation,Albuquerque,"Bakery, BBQ, Desserts",85,4.0 +892,Yo! China,Minot,"Desserts, Tea, French, BBQ, American",73,4.1 +893,Giani's,Fort Smith,"Bakery, Pizza, Seafood",28,3.2 +894,Momo-Cha,Sun Valley,"Tea, Bakery, Fast Food, Indian, Mediterranean",18,2.7 +895,Shree Rathnam,Cheyenne,"Cafe, Bakery, Seafood",49,3.4 +896,Mirage Restro Bar,Newark,"Bakery, American, Desserts, Fast Food",51,2.4 +897,Jai Jagannath Hotel,Ithaca,"Tea, BBQ, Desserts, Italian",89,0.0 +898,Gelato Vinto,Punta Gorda,"Cafe, BBQ",43,2.8 +899,Maggi Point,Concord,"Chinese, Pizza, Cafe, Desserts",46,0.0 +900,Angaar,Christiansted,"Pizza, French, BBQ, Cafe, Mediterranean, Seafood",93,0.0 +901,TcozY,Knoxville,"Tea, Pizza, Mexican, Fast Food, Cafe",85,0.0 +902,The Retriever,Baltimore,"Seafood, Cafe, Italian",12,0.0 +903,Bangali Sweets & Restaurant,Elmira,"Tea, Cafe, Pizza, Seafood",90,0.0 +904,Silver,Great Falls,"Cafe, American, BBQ, Seafood",83,0.0 +905,Chill 'N Grill,Monterey,"Desserts, Mexican, Bakery, Fast Food, Mediterranean, Seafood",83,0.0 +906,Punjabi Restaurant,Evansville,"Cafe, Bakery, Desserts, Fast Food",29,0.0 +907,Standard Chicken Point,Durango,"Mexican, Indian, BBQ, Seafood",50,0.0 +908,The Grillz & Gravy,Nome,"Desserts, Tea, Pizza, Fast Food, American",91,0.0 +909,Cakes 'n Bakes - Park Plaza,Wenatchee,"Tea, Chinese, Desserts, Seafood",86,3.0 +910,Cafe Bite,Fort Leonard Wood,"Bakery, Fast Food",29,3.2 +911,Cafe Light,Mission,"Pizza, BBQ, Italian",40,2.8 +912,Little Cafe,Omaha,"Mediterranean, Desserts, Fast Food",26,0.0 +913,Momo-Cha,Bakersfield,"Desserts, Pizza, BBQ, Fast Food, Mediterranean",68,2.8 +914,Oregano India,Minneapolis,"BBQ, French, Bakery, Desserts",91,3.1 +915,Sagar Bakery,Greensboro,"Desserts, Italian, BBQ, Fast Food, Seafood",43,3.0 +916,Smugglers,Fort Dodge,"Tea, Seafood, Mediterranean, Fast Food",69,3.1 +917,Welcome,Richmond,"Tea, French, Bakery, Indian",86,2.9 +918,Giani's,Florence,"Desserts, French, Bakery, Fast Food, Chinese",58,0.0 +919,Invitation,Champaign,"Tea, Bakery, Seafood",63,0.0 +920,New Dilight,Yakutat,"Bakery, BBQ, Desserts, Fast Food",49,0.0 +921,Chimney,Albuquerque,"Fast Food, Bakery, Indian, Seafood",75,3.3 +922,Chopstick,Sun Valley,"Desserts, Mexican, Bakery, BBQ, Seafood",24,3.0 +923,Hot & Tasty Chinese Food,Durango,"Tea, French, Fast Food",17,2.6 +924,Sanjha Chulha,Wrangell,"Desserts, Fast Food",28,2.9 +925,Frontier,Victoria,"Tea, Bakery, American, BBQ",90,2.9 +926,Oxy Lounge,Kalamazoo,"Tea, Bakery, BBQ",65,3.1 +927,City Dhaba,Fort Leonard Wood,"Chinese, BBQ, Desserts",56,0.0 +928,Garam Masala,Melbourne,"Cafe, Pizza, Bakery, Chinese, Seafood",45,0.0 +929,Mittal Fast Food,Twin Falls,"Cafe, Seafood, Desserts, Italian",83,0.0 +930,Al Bake,Greenville,"Tea, Cafe, Pizza, Seafood",90,3.2 +931,Anupam Sweet,Chattanooga,"Desserts, American, BBQ",82,3.4 +932,Cafe Coffee Day,Ponce,"Tea, Desserts, Seafood",30,3.3 +933,Chicago Pizza,Pensacola,"Pizza, Mediterranean, Fast Food",32,2.7 +934,Crispy Crust,Abilene,"Desserts, Bakery, Cafe, American, Seafood",54,3.4 +935,Frontier,Everett,"Tea, Chinese, BBQ, Mediterranean",64,3.3 +936,Gulab,Sault Ste. Marie,"Desserts, French, BBQ, Bakery, Fast Food",81,2.6 +937,Hunger Cure Express,College Station,"Pizza, Desserts",40,3.3 +938,Maitre Patissier,Williston,"Tea, Cafe, Pizza",82,3.4 +939,Momo-Cha,New Orleans,"Chinese, Bakery, Indian, Desserts",80,2.7 +940,Nirula's,Chattanooga,"French, Desserts, Seafood",64,2.6 +941,The Grub House,Key West,"Tea, Pizza, American, Mediterranean, Seafood",93,2.7 +942,Twenty Four Seven,Stockton,"Desserts, Tea, Italian, BBQ, Fast Food, American",92,3.4 +943,Cafe Parmesan,Rhinelander,"Tea, French, Fast Food, Italian",94,4.5 +944,Briosca,Jackson,"Tea, Bakery, BBQ, Chinese, Seafood",99,3.6 +945,Burger Point,Eau Claire,"Tea, French, BBQ, Cafe, Seafood",32,3.5 +946,Cafe Grub Up,Hyannis,"BBQ, Seafood",19,3.8 +947,Cakes At Bhawanas,Las Vegas,"Desserts, Tea, American, Bakery, Indian, Seafood",87,3.5 +948,Chaudhary Bhojnalaya,Des Moines,"Cafe, Mexican, Seafood",69,3.6 +949,Chickenette,Durango,"Tea, Pizza, Desserts, Fast Food",31,3.7 +950,Giani,Shreveport,"French, BBQ, Desserts",39,3.6 +951,Green Chick Chop,Del Rio,"Tea, Bakery, Indian, Mediterranean, Seafood",82,3.5 +952,Hash Stix,Paducah,"Tea, Pizza, French, Bakery, BBQ",68,3.6 +953,Juice On Go,Cape Girardeau,"Cafe, Bakery, Mediterranean, BBQ",97,3.5 +954,Keventers,Peoria,"Tea, Pizza, Bakery, BBQ, Chinese",69,3.6 +955,MD's Kebabs & Curries,Vernal,"Tea, Mexican, Seafood",100,3.8 +956,Perfect Bake,Richmond,"Desserts, Tea, Italian, Bakery, Cafe, American",33,3.5 +957,Perfect Bake,Redding,"Tea, Pizza, Fast Food",69,3.6 +958,Sethi's Delicacy,Portland,"Bakery, BBQ, Mediterranean, Desserts",35,3.8 +959,Subway,Birmingham,"Cafe, Pizza, Bakery, Desserts",33,3.5 +960,Caf愆 Bogchi,Hagerstown,"Tea, Seafood, Cafe, Fast Food",44,4.1 +961,Ashoka Restaurant,Jacksonville,"Desserts, Mexican, Bakery, BBQ, Fast Food",11,2.9 +962,Baskin Robbins,Monterey,"Desserts, Pizza, French, Fast Food, Indian, Seafood",55,2.9 +963,China Hot Pot,Duluth,"Cafe, Pizza, American, Bakery",42,2.5 +964,Handi Chhadeyan Di,Valdosta,"Tea, Pizza, Fast Food, Cafe, Mediterranean",100,3.1 +965,Hungrill,Shreveport,"Cafe, American, Desserts, Fast Food",14,3.0 +966,Kant Khana Khazana,Butte,"Tea, Pizza, Italian, Bakery, Cafe",88,3.4 +967,Open Yard,San Diego,"Chinese, Pizza, Cafe, Desserts",33,3.3 +968,Recipe Badshah,Hartford,"Pizza, French, Bakery, BBQ, Mediterranean, Seafood",63,3.1 +969,The Chai Cafe,Santa Ana,"Tea, American, Desserts",52,3.1 +970,Apna Restaurant,Longview,"American, BBQ, Fast Food",17,0.0 +971,Chaudhary Chaap & Chinese,Del Rio,"Pizza, Mediterranean, Desserts, Italian",85,0.0 +972,Chings Chinese,Manhattan,"French, Mexican, Pizza, Bakery",95,0.0 +973,Food On Wheels,Everett,"Pizza, Desserts, Seafood",78,0.0 +974,Gulshan Hotel,Prescott,"Tea, Pizza, French, Bakery, BBQ, Mediterranean",29,0.0 +975,Maa Kali Foods,Buffalo,"Desserts, BBQ, Bakery, Fast Food, Indian",61,0.0 +976,The Street Kitchen,North Bend,"Indian, BBQ, Seafood",85,0.0 +977,United Kitchen,Sault Ste. Marie,"Tea, Italian, BBQ, Bakery, Cafe, Mediterranean",67,0.0 +978,Eat N Treat,Marquette,"Tea, Seafood",15,2.8 +979,Hotel Ekant,State College,"Fast Food, Pizza, Italian",16,2.7 +980,Momo-Cha,Wilmington,"Desserts, Cafe, French, BBQ, Chinese",92,2.7 +981,Paradise Inn,Gunnison,"BBQ, Bakery, Desserts",99,2.7 +982,Red Chilli,Eau Claire,"Desserts, Tea, Bakery, Fast Food, Chinese",58,2.8 +983,Shiv Restaurant,Idaho Falls,"Bakery, Mexican, Pizza, Desserts",42,2.7 +984,Sohan Sweets & Namkeen,Butte,"French, Pizza, Cafe",58,3.2 +985,The Binge Box Cafe,Corpus Christi,"Desserts, Italian, Bakery, Indian, Seafood",32,3.4 +986,Tmos Moving Feast,Grand Rapids,"Pizza, Bakery, BBQ",66,3.3 +987,Tmos Cafe Corner,Bakersfield,"Mexican, American, BBQ, Fast Food",10,0.0 +988,Parkash Dhaba,Scranton,"Desserts, Italian, Bakery, Indian, Seafood",79,3.0 +989,Sanjha Chulha,Jacksonville,"Tea, Bakery, BBQ",57,3.3 +990,Hareram Bikanerzaika,Lihue,"Cafe, Indian, Desserts",38,2.8 +991,Kulcha Paaji,Wichita,"Chinese, Bakery, Pizza, Seafood",86,3.1 +992,Shree Bikaner Misthan Bhandar,Latrobe,"Cafe, Seafood",28,2.8 +993,"The Hub - Gourmet, Bakers & More",Kona,"French, Pizza, Bakery, Cafe",20,3.0 +994,Anand Dhaba,Presque Isle,"French, Seafood, Desserts, Italian",82,0.0 +995,Bikaneri Sweets & Restaurant,Ketchikan,"Tea, Cafe, Indian, Fast Food",15,0.0 +996,Delicieux Ice Cream Rolls,Panama City,"Tea, Bakery, Pizza",49,0.0 +997,Flying Tandoor,Yakima,"Cafe, Indian, Fast Food",99,0.0 +998,Food Station,Pago Pago,"Desserts, French, Bakery, Fast Food, Cafe",48,0.0 +999,Grub Hub,Panama City,"Desserts, Fast Food",32,0.0 +1000,Punjabi Chulha,Bellingham,"Desserts, Tea, Pizza, Italian, Bakery, Mediterranean",30,0.0 +1001,Purani Dilli Da Swad,Brunswick,"Fast Food, Bakery, Italian",34,0.0 +1002,The BBQ Garden,Cincinnati,"Bakery, Desserts, Fast Food",52,0.0 +1003,The Chaiwalas,Dodge City,"Cafe, American, Mediterranean, Fast Food",86,0.0 +1004,Funk House Cafe,Hartford,"French, Pizza, Bakery, BBQ",84,2.6 +1005,Shiksha Fast Food,Everett,"Cafe, French, Pizza, Chinese",18,2.9 +1006,Hungry Head,Columbus,"Pizza, French, BBQ, Fast Food, Cafe",43,0.0 +1007,Tandoori Hut,Decatur,"Pizza, American, Indian, Fast Food",82,0.0 +1008,Lalit Kathi Rolls Momos,Tampa,"Tea, Pizza, Fast Food",23,3.1 +1009,Tamasha In Tafree,Kalamazoo,"Desserts, Italian, French, Bakery, Seafood",11,0.0 +1010,Oh My!,San Juan,"Desserts, Tea, Cafe, American, Mediterranean, Seafood",18,0.0 +1011,Butter & Grace,Escanaba,"Fast Food, Tea, Mexican, Italian",95,3.1 +1012,Green Chick Chop,Fort Smith,"Mexican, American, BBQ, Seafood",92,3.1 +1013,Snacks Bar,Muskegon,"Mexican, BBQ, Desserts, Seafood",100,2.9 +1014,Ahata,Atlanta,"Tea, Indian, Desserts",17,0.0 +1015,Fritrolla,Philadelphia,"Cafe, BBQ",58,0.0 +1016,KitchenYard,Sarasota,"Cafe, Bakery, Pizza, Fast Food",51,0.0 +1017,Meghansh Bakery,Scranton,"Desserts, Tea, Pizza, BBQ, Indian",77,0.0 +1018,Oh My !,Islip,"Cafe, Desserts, Seafood",95,0.0 +1019,The Dark Hour - Kitchen,Ontario,"Tea, Italian, Cafe, Indian, Seafood",73,0.0 +1020,Anupama Sweets & Family Restaurant,Muskegon,"Bakery, Fast Food, Cafe, Mediterranean, Seafood",27,2.7 +1021,Shree Rathnam,Birmingham,"Tea, Pizza, Desserts, Italian",73,2.7 +1022,Bikaner Misthan Bhandar,West Yellowstone,"Tea, Chinese, Desserts",74,0.0 +1023,King's Kitchen,Jackson,"Tea, Chinese, Bakery, Desserts",63,0.0 +1024,Muradabadi Chicken Biryani Corner,Omaha,"Bakery, Mediterranean, Desserts, Fast Food",31,0.0 +1025,The Black Kettle,Des Moines,"Pizza, BBQ, Desserts",40,0.0 +1026,Desi Tadka,Medford,"Tea, Mexican, Bakery",55,3.0 +1027,Destination Live,Appleton,"Tea, Indian, BBQ",30,3.3 +1028,Kay's Bake Land,Salisbury,"Desserts, Tea, Pizza, Mexican, Seafood",40,3.1 +1029,Kay's Food Land,Fayetteville,"Cafe, Pizza, BBQ",87,3.1 +1030,Laziz Restaurant,Valparaiso,"Bakery, Pizza, Seafood, Italian",40,2.8 +1031,Le Chef Restro Bar,Latrobe,"Tea, Bakery, BBQ, Cafe, Indian",100,2.7 +1032,Republic of Chicken,Washington,"Tea, Bakery, American, Desserts",91,3.1 +1033,Tanishka Restaurant & Caterers,Rhinelander,"Desserts, Tea, Italian, BBQ, Cafe, Indian",84,2.9 +1034,The Tandoori Times,Orlando,"Tea, Cafe, BBQ, Italian",84,2.7 +1035,Twist of Italy,Evansville,"Desserts, Pizza, Mexican, Mediterranean, Seafood",85,3.6 +1036,Aggarwal Sweets And Caterers,Savannah,"Desserts, Pizza, French, BBQ, Chinese, Seafood",96,0.0 +1037,Biryani Bot,Lansing,"Cafe, Desserts, Pizza, BBQ",15,0.0 +1038,Caf愆 Kitchen,Salina,"Tea, Fast Food",78,0.0 +1039,Evergreen Sweets & Restaurant,Hagerstown,"Cafe, Mexican, Bakery",51,0.0 +1040,Magic Spice Wok,Tucson,"Cafe, Bakery, BBQ, Chinese, Seafood",31,0.0 +1041,Magical Momos,Great Falls,"Cafe, BBQ, Seafood",25,0.0 +1042,Sam's Bake Shop,Yuma,"Italian, French, BBQ, Cafe, Seafood",72,0.0 +1043,Shri Bikaner Misthan Bhandar,Fort Wayne,"Pizza, French, Mexican, BBQ, Bakery, Cafe",29,0.0 +1044,Tasty Dhaba Family Restaurant,Medford,"Cafe, Pizza, Fast Food",14,0.0 +1045,U & I,White Plains,"Desserts, Fast Food, Cafe, Indian, Seafood",56,0.0 +1046,Cravings,Hattiesburg,"Tea, French, Fast Food, Italian",12,3.0 +1047,Evergreen Tandoori Night,Redding,"Bakery, Mediterranean, Desserts, Fast Food",71,0.0 +1048,Prelibato,Monterey,"Desserts, Bakery, Fast Food, Cafe, American",71,0.0 +1049,Aravali Owls,Dallas,"Pizza, Italian, Bakery, Fast Food, Cafe",53,0.0 +1050,Chicken Inn Family Meat Shop,Johnstown,"Desserts, Bakery, Fast Food, Mediterranean, Seafood",79,0.0 +1051,Mother's Kitchen,Richmond,"Tea, Cafe, Mexican, Fast Food, Chinese",46,0.0 +1052,Domino's Pizza,Bellingham,"Pizza, Mexican, BBQ, Cafe, Mediterranean, Seafood",65,2.9 +1053,Green Chick Chop,Tulsa,"Desserts, Tea, Bakery, Cafe, Mediterranean",46,3.1 +1054,Punjabi Culture,Shreveport,"Desserts, BBQ, Fast Food, Chinese, Mediterranean",25,2.9 +1055,Three Olives,Laramie,"Tea, Bakery, Cafe, American, Seafood",91,2.9 +1056,Aggarwal's Bikaner Mishthan Bhandar,Peoria,"Tea, Cafe, Indian, BBQ",15,0.0 +1057,Aravalli Owls,White Plains,"Pizza, Mediterranean, BBQ",26,0.0 +1058,Chatny Delight,Mission,"Bakery, Pizza, Indian, BBQ",44,0.0 +1059,Harmann Restaurant,Newark,"Tea, Cafe, American, Fast Food",57,0.0 +1060,Kulcha King,Mason City,"Pizza, Mexican, BBQ, Fast Food, Cafe, Indian",17,0.0 +1061,Royal Bakers,Dubuque,"Tea, French, Bakery, BBQ",22,0.0 +1062,Touch of Spice,Jacksonville,"French, Bakery, Indian, Seafood",70,0.0 +1063,Hunger Cure,Grand Forks,"Cafe, Pizza, American, Desserts",14,3.2 +1064,Sanjha Chulha,Dothan,"Tea, Cafe, Mexican",44,2.5 +1065,Queens Cakes,Reno,"Bakery, Desserts, Indian, BBQ",58,3.5 +1066,Sri Meenakshi South Indian Food,Niagara Falls,"Tea, Seafood, Bakery, Italian",77,0.0 +1067,Sardar A Pure Meat Shop,Hilo,"Tea, Cafe",38,0.0 +1068,Invitation Restaurant,Cincinnati,"Chinese, BBQ, Cafe, Italian",67,2.7 +1069,Kaushik Bakery,Twin Falls,"Cafe, Pizza, Italian",29,3.0 +1070,Rama Vaishnav Bhojnalaya,Knoxville,"Tea, Cafe, Pizza, Desserts",46,3.0 +1071,Shiv Saras Vyanjan,Baltimore,"American, Desserts, Fast Food",65,2.9 +1072,Shree Bikaner Misthan Bhandar,Saginaw,"Seafood, Pizza, Fast Food",26,3.0 +1073,Shree Bikaner Misthan Bhandar,Indianapolis,"Cafe, Pizza, BBQ",61,3.1 +1074,Standard Family Restaurant,Pittsburgh,"Pizza, Desserts",82,2.9 +1075,The Hunger End,Eau Claire,"Desserts, Pizza, Fast Food, Indian, Mediterranean",68,3.0 +1076,Pizza Express,Dayton,"Cafe, Pizza, American, Seafood",92,0.0 +1077,Anupam Sweets & Restaurant,Chattanooga,"Tea, Cafe, Desserts, Seafood",62,3.0 +1078,Caramel,Valparaiso,"Tea, Pizza, Desserts, Fast Food",32,2.9 +1079,Chaska Restaurant,Laredo,"Tea, Cafe, Seafood",59,3.2 +1080,Club Pizzeria,Alexandria,"Desserts, Tea, Pizza, Bakery, Mediterranean",70,3.4 +1081,Gupha,New Orleans,"Tea, Cafe, Bakery, Chinese, American",11,2.9 +1082,Indian Gourmet,Reno,"Tea, Fast Food, American, Seafood",16,3.0 +1083,Tandoori Zaaika's,Bishop,"Desserts, BBQ, Fast Food, Mediterranean, Seafood",75,3.2 +1084,TCD Cake & Bake,Missoula,"Tea, Bakery, Pizza, BBQ",44,3.1 +1085,The Grill Darbar,Worcester,"Desserts, Bakery, BBQ, Chinese, Seafood",64,3.3 +1086,Urban Cuisine,Punta Gorda,"Desserts, Tea, Mexican, Fast Food, Chinese, Seafood",84,3.4 +1087,Mister Mughal,Rochester,"Pizza, Bakery, Fast Food, Cafe, Mediterranean",19,3.5 +1088,The Hub,Hartford,"Tea, Pizza, Desserts",69,3.1 +1089,Bake Your Dreamz,Las Vegas,"Tea, French, Bakery, Fast Food, Seafood",44,0.0 +1090,Green Chilly Chinese Food,Kahului,"Bakery, Pizza, BBQ, Fast Food",57,0.0 +1091,Mom's Kitchen,Aberdeen,"Tea, Mexican, Bakery",55,0.0 +1092,The Baking Treats N More,Pocatello,"Cafe, Bakery, Fast Food",75,0.0 +1093,Twin Brothers,Stockton,"Tea, Pizza, French, Bakery, Seafood",32,0.0 +1094,Aggarwal Sweets Centre,Fresno,"French, Pizza, Cafe, Italian",25,2.9 +1095,Bawarchi,Salina,"Desserts, Cafe, Mexican, BBQ, Chinese",27,3.0 +1096,D ART of Flavour,Tallahassee,"Tea, French, Desserts, Seafood",90,2.8 +1097,Italia Cafe by Aura,Laredo,"Bakery, Pizza, BBQ, Desserts",53,2.8 +1098,Pizza Street,Tucson,"Fast Food, Bakery, Seafood",22,2.6 +1099,Rock Cafe,Cape Girardeau,"Tea, Cafe, Pizza, Seafood",49,3.0 +1100,Sardaar Ji Chaap & Rolls,Appleton,"Bakery, Indian, Desserts",39,3.1 +1101,Spice Wok,Toledo,"Tea, Pizza, Italian, French, BBQ",24,3.1 +1102,Vrindavan Sweets & Restaurant,Everett,"Cafe, Mediterranean, Desserts, Fast Food",43,3.0 +1103,Yummy Cake,Mosinee,"French, BBQ, Fast Food, Cafe, Seafood",98,3.0 +1104,Bikaner Sweets & Bakers,Gustavus,"Desserts, Bakery, Fast Food, Chinese, Mediterranean",62,0.0 +1105,Burger Xpress,Yakutat,"Tea, Mediterranean, Fast Food",92,0.0 +1106,Da Pizza Zone,San Luis Obispo,"Bakery, Pizza, Desserts, Seafood",15,0.0 +1107,Finger Licious,Abilene,"Fast Food, Cafe, BBQ, Seafood",35,0.0 +1108,Med E Taste,Gustavus,"Desserts, Pizza, Italian, Bakery, Fast Food",74,0.0 +1109,Punjabii Tandoor,Anchorage,"Bakery, Pizza, BBQ, Fast Food",76,0.0 +1110,Shankar Sweets,Milwaukee,"Tea, Bakery, Pizza, Fast Food",66,0.0 +1111,Tasty Bites,Traverse City,"Chinese, Bakery, Desserts, Seafood",27,0.0 +1112,The Street- Curries & Grills,Peoria,"Cafe, Pizza, Seafood, Fast Food",66,0.0 +1113,Bakers Delight - The Atrium,Kansas City,"Bakery, Desserts",45,3.0 +1114,On The Rocks - The Atrium,Gustavus,"Desserts, Tea, Pizza, Italian, Bakery, American",60,3.1 +1115,World Cafe - Vibe by The LaLiT Traveller,Kansas City,"Pizza, BBQ, Fast Food, Indian, Seafood",53,3.3 +1116,Chaudhary Ke Mashhoor Paranthe,Gulfport,"Desserts, Pizza, Fast Food, Cafe, American",30,2.8 +1117,Thakur Bakers,Grand Junction,"French, Pizza, Cafe, BBQ",100,3.0 +1118,FoodByMom,Indianapolis,"French, Seafood, Cafe, Fast Food",10,3.6 +1119,Mr. Brown,Midland,"Tea, Cafe, Pizza, Italian, Bakery, Chinese",58,3.9 +1120,Mitalis Kitchen,Detroit,"Pizza, BBQ, Chinese, Mediterranean, Seafood",28,0.0 +1121,The Big Scoop,Presque Isle,"French, Pizza, BBQ, Fast Food",17,0.0 +1122,9 Mars Lounge,Green Bay,"Fast Food, Pizza, Indian, Seafood",26,2.5 +1123,Barista,Fort Dodge,"Tea, Pizza, Bakery, Seafood",71,3.4 +1124,Baskin Robbins,Toledo,"Tea, Desserts, Fast Food",76,3.3 +1125,Burger King,Scottsbluff,"Bakery, Fast Food, Cafe, Indian, Seafood",49,3.4 +1126,Cafe Coffee Day,Juneau,"Chinese, Mexican, BBQ, Seafood",86,3.2 +1127,Chinese X'Press,Idaho Falls,"French, Desserts, Fast Food",79,2.9 +1128,Cinch,International Falls,"Tea, Cafe, Pizza, BBQ, Chinese",61,2.6 +1129,Costa Coffee,Cedar Rapids,"Tea, French, Bakery, BBQ",54,3.3 +1130,Domino's Pizza,Monterey,"Fast Food, BBQ, Italian",84,3.2 +1131,Dosa X'press,Trenton,"Tea, Bakery, BBQ",55,3.0 +1132,Kebab Xpress,Dallas,"Tea, Bakery, Pizza, Mediterranean",93,2.7 +1133,Let's Noodle,Corpus Christi,"Chinese, Seafood, Desserts, Fast Food",32,2.6 +1134,McDonald's,Dayton,"Tea, Mexican, Fast Food",24,3.3 +1135,Mx Corn,Abilene,"Tea, Cafe, Italian",62,3.1 +1136,Dunkin' Donuts,Harlingen,"Tea, Cafe, Seafood",30,3.6 +1137,Haldiram's,Dallas,"Tea, Pizza",94,3.6 +1138,Pind Balluchi,Oakland,"Tea, Cafe, BBQ, Seafood",61,1.8 +1139,Maini Restaurant,Jackson,"Italian, BBQ, Fast Food, Cafe, Seafood",59,3.3 +1140,The Dosa King,Detroit,"BBQ, Mediterranean, Desserts, Fast Food",69,3.2 +1141,Baba Au Rhum,Atlanta,"Desserts, Pizza, Mexican, BBQ, Fast Food",27,4.5 +1142,Burger Factory,Pittsburgh,"Cafe, Pizza, Italian, BBQ, Fast Food, Chinese",44,4.8 +1143,Club Cubana,Boston,"Desserts, BBQ, Fast Food, Cafe, Indian, Mediterranean",65,4.4 +1144,Curlies,Williston,"Chinese, Mexican, BBQ, Seafood",10,3.5 +1145,La Plage,Tucson,"Seafood, Bakery, Desserts, Italian",93,4.6 +1146,St. Anthony's,Indianapolis,"Tea, Pizza, Italian",14,3.8 +1147,Britto's Bar & Restaurant,Yakima,"Tea, Mexican, BBQ",39,4.3 +1148,Fat Fish,Laramie,"Tea, Indian, Fast Food",91,4.2 +1149,Martin's Corner,Valdosta,"Desserts, Bakery, Fast Food, American, Mediterranean, Seafood",78,4.4 +1150,Infantaria,Walla Walla,"Bakery, Mediterranean, Desserts, Fast Food",18,3.7 +1151,Souza Lobo,Johnstown,"Tea, Mexican, Bakery, Cafe, Indian",92,4.3 +1152,Fisherman's Cove,Ithaca,"Desserts, Tea, Italian, French, Bakery, Cafe",82,3.8 +1153,Calamari,Kona,"French, Mexican, Bakery, BBQ, Seafood",45,4.2 +1154,The Fisherman's Wharf,Rochester,"Tea, American, Mediterranean, Seafood",14,4.6 +1155,LPK Waterfront,Abilene,"Pizza, Italian, BBQ, Fast Food, Seafood",61,3.7 +1156,Ritz Classic,Hibbing,"Cafe, Mexican, American, Seafood",57,4.5 +1157,The Black Sheep Bistro,Ontario,"Bakery, Desserts, Seafood",81,4.7 +1158,Cafe Al Fresco by Cantina Bodega,Cedar Rapids,"French, BBQ, Fast Food, Mediterranean, Seafood",89,4.3 +1159,The Fisherman's Wharf,Wrangell,"Tea, Bakery, Desserts",98,4.4 +1160,Antares,Lewiston,"Pizza, French, Bakery, Cafe, Indian, Seafood",78,4.2 +1161,K Lab,Reno,"French, Cafe, Desserts, Fast Food",54,3.4 +1162,Pind Balluchi,Ogdensburg,"Tea, Pizza, French, BBQ, Cafe, Mediterranean",83,2.7 +1163,Punjab Grill,Buffalo,"Bakery, BBQ, Desserts, Seafood",25,4.3 +1164,Zambar,Kona,"Tea, Bakery, Fast Food, American, Seafood",93,4.0 +1165,Cakes & More,Harrisburg,"Cafe, Bakery, BBQ, Seafood",98,3.0 +1166,Kwality Wall's Swirl's,Dothan,"Pizza, Indian, BBQ, Italian",34,3.0 +1167,Yo! Dimsum,Salisbury,"Tea, Pizza, Mexican, Fast Food, American, Seafood",21,3.0 +1168,Mx Corn,Syracuse,"Tea, Mexican, BBQ, Seafood",80,0.0 +1169,Red,Milwaukee,"Desserts, BBQ, Fast Food, Cafe, Mediterranean",98,3.0 +1170,Rocketchefs,Clarksburg,"Chinese, French, BBQ, Pizza",55,3.1 +1171,The Fresh Chicken Store,Concord,"Mexican, Pizza, Desserts, Seafood",48,2.9 +1172,Achoos Food Corner,Roswell,"French, BBQ, Bakery, Cafe, Indian, Seafood",91,0.0 +1173,Aha Bites,Fort Lauderdale,"Cafe, Desserts",44,0.0 +1174,Ancient Spice,Roswell,"Tea, Bakery",61,0.0 +1175,Chimney - The Takeaway,Wichita,"Pizza, Bakery, Cafe, Mediterranean, Seafood",19,0.0 +1176,Costa Coffee,Sault Ste. Marie,"Tea, Chinese, American, Fast Food",49,0.0 +1177,Good to Go,Pocatello,"Tea, Bakery, Cafe, Mediterranean, Seafood",28,0.0 +1178,Gopi Sweets & Caters,Providence,"Tea, Indian, Mediterranean, BBQ",91,0.0 +1179,Late Night Food,Waterloo,"Cafe, Bakery, Mediterranean, Fast Food",87,0.0 +1180,Lavi Foji Dhaba,Minneapolis,"Desserts, Pizza, Mexican, Fast Food, Mediterranean, Seafood",62,0.0 +1181,Narayan Fast Food Home,Minot,"Tea, Pizza, Mexican, BBQ, Chinese, Seafood",38,0.0 +1182,OMG Kitchenz,Fort Lauderdale,"Tea, Chinese, Pizza, Indian",85,0.0 +1183,OMG Tiffinz,Vernal,"Pizza, Mediterranean, Desserts",66,0.0 +1184,Sardarji Chicken Point,Omaha,"Mediterranean, Desserts, Fast Food",90,0.0 +1185,Solty Hotel,Hattiesburg,"Pizza, American, Mediterranean, Fast Food",72,0.0 +1186,Tanishk Gourmet Indian,Spokane,"Seafood, Mediterranean, Fast Food",83,0.0 +1187,The Burger Chef,West Palm Beach,"Cafe, Indian, BBQ",73,0.0 +1188,Club Tokyo - Best Western Skycity Hotel,Colorado Springs,"Tea, Bakery, Mediterranean, Fast Food",64,2.8 +1189,Lattitude - Skycity Hotel,Gulfport,"Cafe, Pizza, Indian, Desserts",60,2.9 +1190,Bisque Bakery,Chattanooga,"French, Desserts, Seafood",90,3.9 +1191,Behrouz Biryani,Laredo,"BBQ, Desserts, Italian",87,3.4 +1192,Domino's Pizza,Bismarck,"Pizza, American, Fast Food",47,3.4 +1193,Giani,Jacksonville,"Tea, Seafood, BBQ, Fast Food",37,3.4 +1194,PizzaVito,Champaign,"French, Bakery, Cafe",60,3.3 +1195,Shawarma House,Bangor,"Tea, Cafe, Indian, BBQ",53,3.4 +1196,Subway,Sun Valley,"Tea, French, BBQ, Bakery, Cafe, Mediterranean",68,2.5 +1197,Asian Bistro,Atlanta,"Tea, Bakery, Seafood",27,3.8 +1198,BBQ Factory,Shreveport,"Bakery, Pizza, Indian, Cafe",36,3.9 +1199,Faaso's,Killeen,"BBQ, Desserts, Seafood",10,3.6 +1200,Chaayos,Prescott,"Desserts, Tea, Pizza, BBQ, Chinese",41,4.3 +1201,Mosaic - Country Inn & Suites,Redding,"Pizza, Bakery, BBQ, Fast Food, American, Mediterranean",57,3.8 +1202,60 ML - Country Inn & Suites by Carlson,Yakima,"Tea, Mexican, Bakery, BBQ, Fast Food",90,3.0 +1203,Mosaic - Country Inn & Suites by Carlson,Ponce,"Tea, Cafe, Italian",80,3.5 +1204,Big Shot Bar - Country Inn & Suites,Salina,"Seafood, Bakery, Indian, Fast Food",13,3.5 +1205,Mosaic - Country Inn & Suites By Carlson,Lubbock,"Chinese, Indian, Desserts, Seafood",29,3.4 +1206,Downtown Kitchen & Bar - Courtyard by Marriott,El Paso,"Desserts, Pizza, Mexican, Bakery, Fast Food, Indian",87,3.2 +1207,Courtyard Grill - Courtyard by Marriott,International Falls,"Pizza, BBQ, Mediterranean, Fast Food",23,0.0 +1208,Di Ghent Boulangerie,Redding,"French, Pizza, Mediterranean, Seafood",13,3.9 +1209,Khyen Chyen,Lynchburg,"Cafe, Bakery, Mediterranean, Desserts",30,3.7 +1210,The Pint Room,Laredo,"Chinese, Pizza, BBQ, Seafood",14,3.7 +1211,Tughlaq,Gunnison,"French, Pizza, Fast Food",18,3.5 +1212,Big Wong XL,Little Rock,"Fast Food, Cafe, Pizza, Italian",47,4.0 +1213,Bunker,Mission,"Tea, Pizza, Mediterranean, Fast Food",61,4.2 +1214,Culture Cafe,Saginaw,"Pizza, Mexican, Fast Food, Cafe, American",80,4.2 +1215,Nowhere Terrace Brewpub Cafe,Deadhorse,"Tea, Pizza, Indian, Seafood",87,4.1 +1216,Cafe G - Crowne Plaza,Gulfport,"Cafe, Desserts",64,3.9 +1217,Wildfire - Crowne Plaza,San Jose,"Desserts, Cafe, Fast Food, Chinese, Indian, Seafood",30,3.7 +1218,Isabella,Sioux Falls,"Desserts, Pizza, Bakery, BBQ, Chinese, Mediterranean",52,2.8 +1219,Fatburger,Victoria,"French, Cafe, Desserts",78,3.3 +1220,Burma Burma,Atlantic City,"Desserts, Tea, Fast Food, Cafe, Indian",50,4.6 +1221,Pier 38,Akron,"Mexican, Pizza, Fast Food",68,4.6 +1222,Yum Yum Cha,Hilo,"Chinese, BBQ, Cafe, Seafood",48,4.5 +1223,Amici Cafe,State College,"Pizza, Bakery, BBQ, Chinese, Seafood",96,3.7 +1224,Au Bon Pain,Everett,"Pizza, Bakery, Fast Food, Mediterranean, Seafood",10,3.7 +1225,California Pizza Kitchen,Boise,"Tea, BBQ, Fast Food, Chinese, Indian",15,3.7 +1226,Chai Point,Petersburg,"Cafe, Pizza",76,3.7 +1227,Cherry Comet,Huntsville,"Desserts, Tea, Pizza, Cafe, Mediterranean",16,3.6 +1228,Circus,Rochester,"Pizza, American, Desserts",81,3.9 +1229,Dunkin' Donuts,Laramie,"Seafood, Pizza, Fast Food",50,3.8 +1230,Holy Smoke,Billings,"Tea, Bakery, Cafe, Indian, Seafood",38,3.6 +1231,Italiano,Greenville,"Chinese, French, Pizza, Cafe",95,3.6 +1232,Krispy Kreme,Bristol,"BBQ, Bakery, Indian, Desserts",32,3.9 +1233,Not Just Paranthas,Clarksburg,"Chinese, BBQ, Cafe, Fast Food",20,3.6 +1234,Oh! Calcutta,Yakutat,"Tea, Pizza, Mexican, Cafe, American, Seafood",100,3.8 +1235,Olive Bistro,Reno,"Tea, Cafe, Pizza, BBQ",66,3.9 +1236,Pita Pit,Bakersfield,"Tea, Pizza, Italian, Bakery, Seafood",23,3.9 +1237,Raasta,Indianapolis,"Cafe, Pizza, Mediterranean",84,3.8 +1238,Red Mango,Buffalo,"Mexican, Bakery, BBQ, Fast Food, Cafe, American",18,3.6 +1239,Rred Hot Asian Bistro,Baltimore,"Tea, Bakery",56,3.5 +1240,Smaaash,Burbank,"Pizza, Bakery, BBQ, Cafe, Mediterranean",39,3.9 +1241,Starbucks,Saginaw,"Seafood, BBQ, Cafe, Italian",47,3.9 +1242,Sutra Gastropub,Lexington,"Tea, Cafe, BBQ",23,3.8 +1243,Taco Bell,Syracuse,"Bakery, American, Cafe, Seafood",40,3.8 +1244,The People & Co.,Toledo,"Seafood, Pizza, BBQ, Fast Food",84,3.7 +1245,Theobroma,New Bern,"Tea, Cafe, Pizza",19,3.8 +1246,Wendy's,Fort Dodge,"Fast Food, Cafe, American, Seafood",16,3.9 +1247,The Wine Company,Deadhorse,"Cafe, Pizza, BBQ, Fast Food",33,2.4 +1248,Cafe Delhi Heights,Oklahoma City,"Chinese, Pizza, Cafe, Seafood",74,4.0 +1249,Cyber Hub Social,Gunnison,"Tea, Fast Food",95,4.3 +1250,Delifrance - The France Cafe Bakery,Mosinee,"Cafe, French, BBQ, Bakery, Fast Food, Chinese",44,4.0 +1251,Dhaba By Claridges,Boise,"Desserts, Italian, Fast Food, Chinese, Seafood",65,4.0 +1252,Farzi Cafe,Grand Forks,"Bakery, Seafood",65,4.3 +1253,Hard Rock Cafe,Burbank,"Desserts, Tea, Bakery, BBQ, Chinese, Indian",33,4.1 +1254,Instapizza,Harrisburg,"Chinese, Bakery, Cafe, Fast Food",67,4.0 +1255,Made In Punjab,Wichita Falls,"French, Bakery, Seafood",37,4.0 +1256,Nando's,Providence,"Tea, Desserts, American, BBQ",66,4.0 +1257,Quaff,Aguadilla,"Cafe, Bakery, Fast Food",50,4.1 +1258,SodaBottleOpenerWala,Brainerd,"French, Bakery, BBQ, Fast Food, Seafood",96,4.0 +1259,The Grill Mill,Juneau,"Desserts, Seafood",56,4.0 +1260,Knight Rider,El Paso,"Seafood, Mediterranean, Fast Food",99,3.1 +1261,Chaayos,Roanoke,"Tea, Chinese, Cafe, Fast Food",40,3.8 +1262,Nooba,Chattanooga,"Tea, Mexican, Bakery, Seafood",93,3.8 +1263,Domino's Pizza,Florence,"Desserts, Pizza, BBQ, Fast Food, Chinese",54,2.4 +1264,Indigo Delicatessen,Greenville,"Chinese, BBQ, Seafood",15,4.2 +1265,Escape Terrace Bar Kitchen,Newark,"Tea, Cafe, Bakery, Chinese, Seafood",100,3.4 +1266,Kwaliti,Birmingham,"Tea, Mexican, Fast Food",37,3.3 +1267,Subway,Charlotte,"Tea, Cafe, Mexican, Chinese, Seafood",60,2.5 +1268,Burger Point,Muskegon,"Tea, Desserts, Fast Food",72,3.8 +1269,Chaat Chowk,Watertown,"Tea, French, Desserts, Fast Food",86,3.7 +1270,Chef Style,Atlanta,"Pizza, American, Desserts, Seafood",59,3.8 +1271,Delhicacy,Dallas,"Desserts, Mexican, Bakery, Chinese, Seafood",67,3.8 +1272,Dimsum & Co.,Stockton,"Chinese, Bakery, BBQ, Seafood",40,3.9 +1273,Instapizza,Williston,"Tea, American, Fast Food",77,3.6 +1274,L'Opera,Dallas,"French, Bakery, BBQ, Fast Food, Seafood",77,3.8 +1275,Lazeez Food,Montgomery,"Cafe, Mexican, BBQ",68,3.5 +1276,Le Marche Sugar & Spice Cafe,White Plains,"Indian, Desserts, Seafood",30,3.5 +1277,The Breakfast Club,St. Cloud,"Seafood, Bakery, BBQ, Italian",79,3.5 +1278,Sugar & Spice - Le Marche,Palm Springs,"Tea, French, Cafe",33,2.4 +1279,Crudo Juicery,Ogden,"Desserts, Fast Food, Cafe, American, Seafood",64,4.3 +1280,Fork with Stick,Great Falls,"Cafe, Bakery, Fast Food",98,4.0 +1281,Uptown Fresh Beer Cafe,Tampa,"Pizza, Mexican, BBQ, Cafe, Seafood",61,4.1 +1282,Barista,Shreveport,"Pizza, Italian, BBQ, American, Seafood",81,3.2 +1283,Cafe Coffee Day,Dodge City,"Cafe, Desserts",44,2.6 +1284,Domino's Pizza,Charlottesville,"Tea, Chinese, Indian, BBQ",53,2.8 +1285,Italiano,Victoria,"Chinese, Pizza, Fast Food",50,3.0 +1286,McDonald's,Raleigh,"Pizza, Indian, Seafood",91,2.6 +1287,Parantha Gurus,Appleton,"Cafe, Mexican, BBQ, Chinese, Seafood",49,3.3 +1288,Pizza Hut Delivery,Bellingham,"Cafe, Fast Food",51,2.8 +1289,Sibang Bakery,Lewiston,"Tea, American, BBQ, Fast Food",47,3.3 +1290,Sonya Bakery Cafe,Norfolk,"Pizza, Indian, BBQ",32,3.3 +1291,Subway,Honolulu,"Tea, French, Desserts, Seafood",90,3.1 +1292,Viva Hyderabad,Alamosa,"Pizza, Desserts",90,2.5 +1293,7 Barrel Brew Pub,Adak Island,"Tea, Bakery, Mediterranean",77,3.9 +1294,Wai Yu Mun Ching,St. Louis,"Tea, Mexican, BBQ, Bakery, Mediterranean, Seafood",89,3.5 +1295,Baskin Robbins,Watertown,"Tea, Chinese, Desserts, Fast Food",42,0.0 +1296,KFC,Portland,"Pizza, BBQ",82,2.2 +1297,Burmese Kitchen Plus,Arcata,"Cafe, Pizza, American",68,3.4 +1298,Drinks Come True,Yuma,"French, Bakery, Cafe",83,3.1 +1299,Eat All Nite,Richmond,"Chinese, Bakery, Cafe, Fast Food",55,3.2 +1300,Frontier,Lake Charles,"Desserts, Tea, Pizza, Italian, American, Seafood",60,2.9 +1301,GenY Cuisines,Lihue,"Tea, Mexican, BBQ, Italian",16,3.0 +1302,K Raga's,Hilton Head,"Tea, BBQ, Mediterranean, Desserts",71,2.9 +1303,Kangri,International Falls,"Italian, BBQ, Fast Food, Cafe, American",17,3.4 +1304,Makhmali Kebabs,Escanaba,"Desserts, Seafood",64,3.2 +1305,Masala Ville,Cheyenne,"Mexican, Bakery, Cafe, Indian, Seafood",49,3.2 +1306,Night Food Xprs,Charlotte Amalie,"Cafe, Pizza",87,3.1 +1307,Roti Boti,Cheyenne,"French, Bakery, Indian, Seafood",42,2.9 +1308,Sama Chicken Biryani,Yuma,"Tea, Bakery, Pizza",64,2.9 +1309,Subway,Paducah,"Desserts, Cafe, Fast Food, Chinese, Indian, Seafood",16,2.8 +1310,The Rolling Pin Bakery,Lewiston,"Tea, Cafe, Bakery, Fast Food",95,3.1 +1311,Weird Time Food,Redding,"Bakery, BBQ, Italian",34,3.1 +1312,Twigly,Myrtle Beach,"Tea, Bakery, Mediterranean, Seafood",55,4.6 +1313,Asian Haus,Belleville,"Tea, Pizza, Bakery, Mediterranean",87,3.9 +1314,Beyond Breads,Jamestown,"French, Cafe, Fast Food",95,3.8 +1315,Biryani By Kilo,Fayetteville,"Desserts, Pizza, American, Mediterranean, Seafood",53,3.9 +1316,Captain Grub,Salisbury,"Tea, Bakery, Desserts, Italian",37,3.8 +1317,Pita Pit,San Antonio,"Pizza, French, Bakery, Cafe, Mediterranean",36,3.5 +1318,Rawleaf,Des Moines,"Desserts, Mexican, BBQ, Bakery, Cafe",66,3.6 +1319,Sushi Haus,Mason City,"French, American, Desserts, Fast Food",36,3.8 +1320,Eggzellent,Omaha,"Pizza, Indian, Desserts",52,0.0 +1321,High On Tea,Minot,"Fast Food, Tea, Mexican, Seafood",47,0.0 +1322,Sona Bridge Hotel,Atlantic City,"Cafe, Bakery, Seafood",72,0.0 +1323,Yo! Dimsum,Brunswick,"Seafood, BBQ, Italian",31,0.0 +1324,Angrezee Choupal,Monterey,"Cafe, Indian, Fast Food",19,3.8 +1325,Ashoka Snacks Corner,Lewisburg,"Chinese, Bakery, Indian, Desserts",17,0.0 +1326,Chefoncalls,Idaho Falls,"BBQ, Bakery, Desserts, Fast Food",72,0.0 +1327,Corp Kitchen,Everett,"Bakery, BBQ",66,0.0 +1328,Good Food,Fort Wayne,"Desserts, Pizza, Fast Food, Cafe, Indian",32,0.0 +1329,Mahek By Greenz,Salt Lake City,"Desserts, Tea, Pizza, French, American",78,0.0 +1330,Pao King,Evansville,"Pizza, Mexican, Bakery, Cafe, Seafood",16,0.0 +1331,Prabhat Fast Food Corner,Hagerstown,"Tea, Cafe, Desserts, Fast Food",61,0.0 +1332,Shama Chicken Corner,Laramie,"Tea, Bakery, Mexican, Pizza",24,0.0 +1333,Unique Food Hut,Madison,"Desserts, Italian, BBQ, Fast Food, Seafood",38,0.0 +1334,A 1 - Snacks and food corner,Spokane,"Cafe, Pizza, Fast Food",58,2.5 +1335,Anandum,Florence,"Pizza, Seafood",79,3.2 +1336,Apni Rasoi,Longview,"Desserts, Tea, Pizza, Italian, Seafood",25,3.0 +1337,Banke Bihari Bhojanalay,Fort Lauderdale,"Tea, Pizza, BBQ, Seafood",55,2.6 +1338,Biryani 365,Prescott,"Pizza, Italian, Mexican, BBQ, Fast Food, Cafe",85,3.2 +1339,Bro's Kitchenette,Chicago,"Mexican, Desserts, Seafood",38,3.3 +1340,Cafe Coffee Day,Williston,"Tea, Pizza, Bakery, Cafe, American",18,3.1 +1341,Cafe Coffee Day,Des Moines,"Tea, Cafe, Pizza, Mexican, Chinese",61,3.2 +1342,Cafe Du Rendezvous,Branson,"Italian, French, BBQ, Cafe, Seafood",54,3.2 +1343,Cake 24x7,Nantucket,"Bakery, Desserts",85,3.3 +1344,Cake On Wheels,Portsmouth,"Pizza, BBQ, Cafe, Indian, Seafood",81,2.8 +1345,Cake Point,Vernal,"Desserts, Tea, Pizza, Italian, Mediterranean, Seafood",32,2.9 +1346,Cake Point,Evansville,"Tea, Mediterranean, Desserts, Fast Food",49,3.0 +1347,Cakes Degree,Abilene,"Cafe, Mexican, BBQ, Desserts",18,3.4 +1348,Chateau Garlic,Abilene,"Pizza, Bakery, Desserts, Fast Food",42,3.0 +1349,Chennai Express,Concord,"Tea, Mexican, Bakery, Fast Food, Cafe",86,3.2 +1350,Crust N Cakes,Orlando,"Tea, Cafe, Indian, BBQ",61,3.4 +1351,Dabba Meat,Rapid City,"Tea, Mexican, Bakery, Desserts",94,3.4 +1352,Deepak Rasoi,Colorado Springs,"Chinese, Pizza, Seafood",60,2.7 +1353,Foodaucity - Bum Bum Bholey Ke Chole Bhature,Charlotte Amalie,"Tea, Mexican, Bakery",38,3.3 +1354,Foodies Nation,Beaumont,"Cafe, BBQ, Italian",49,3.4 +1355,Goli Vada Pav No. 1,Roswell,"Tea, Bakery, Fast Food, Mediterranean, Seafood",14,3.1 +1356,Grandma's Kitchen,Rapid City,"Tea, French, Mexican, BBQ, Cafe",92,2.5 +1357,Gurgaon Hights,New York,"Cafe, American, Indian, Fast Food",46,2.5 +1358,Idliss,Sitka,"Tea, BBQ, Desserts",93,3.4 +1359,Indian Home Food,Vernal,"Desserts, Mexican, BBQ, Bakery, Fast Food, Mediterranean",34,2.6 +1360,Jetha Lal Ka Dhabha,San Diego,"Tea, Cafe, Indian, Italian",22,3.1 +1361,Kusum Rolls,Jackson,"Pizza, Bakery, Fast Food",13,3.1 +1362,Megha Vaishno Dhaba,Kansas City,"Tea, Indian, BBQ",63,3.1 +1363,Nikhil Food Point,Augusta,"Tea, Mexican, Fast Food, American, Seafood",87,2.7 +1364,Plan B,Cape Girardeau,"Bakery, Pizza, Indian, Desserts",48,3.4 +1365,Punjabi Zaika,Los Angeles,"Pizza, Bakery, BBQ, Cafe, Indian",46,3.2 +1366,Rasoi,Little Rock,"Cafe, Indian, Seafood",95,3.0 +1367,Roll's Royce,Toledo,"Tea, Cafe, BBQ, Desserts",100,3.2 +1368,Shree Bikaner Misthan Bhandar,Gunnison,"Tea, Pizza, Seafood",15,3.1 +1369,Smokey Pan,Lewiston,"Tea, Chinese, Pizza, Desserts",74,3.2 +1370,Surprise O Meal,North Platte,"BBQ, Fast Food",53,3.4 +1371,Tandoor on The Way,Worcester,"French, Pizza, Seafood",61,3.2 +1372,Tawa N Tandoor,Saginaw,"Tea, Pizza, Mexican, BBQ, Fast Food",49,2.7 +1373,The Paradise Biryani,Valdosta,"Bakery, American, Indian, Seafood",12,2.9 +1374,The Royal,Chattanooga,"French, Pizza, Bakery, Fast Food",39,3.3 +1375,Theka Desi Khaana,Fort Lauderdale,"Cafe, Mexican, BBQ, Fast Food, Chinese",35,3.0 +1376,Tobasco Kitchen,Gustavus,"Desserts, Tea, Italian, Mexican, Bakery, Seafood",21,3.2 +1377,Tpot,Jacksonville,"Tea, Cafe, American, BBQ",84,3.2 +1378,Uncle's Cafe,Saipan,"Tea, Fast Food, Cafe, Indian, Seafood",65,2.7 +1379,Welcome Cafeteria,Redding,"Pizza, American, Fast Food",74,3.3 +1380,Yo Yo China Town,Ketchikan,"Tea, Pizza, Fast Food, Cafe, Indian, Mediterranean",25,2.8 +1381,Caterspoint,Monterey,"Desserts, Tea, French, Bakery, Cafe, Indian",67,4.9 +1382,Bake-a-boo,Petersburg,"Tea, Cafe, Pizza, BBQ",40,3.7 +1383,Burger Hut,Erie,"Pizza, French, Mexican, Fast Food, Cafe, Seafood",39,3.6 +1384,China Gatherings,Prescott,"Desserts, Pizza, Italian, Bakery, Fast Food, American",78,3.5 +1385,Crazy Bhukkhad,Bismarck,"Cafe, Pizza, Chinese, Indian, Seafood",27,3.9 +1386,Deez Biryani & Kebabs,Ithaca,"Cafe, BBQ, Fast Food",20,3.7 +1387,Fomads,Minneapolis,"Cafe, Pizza, Fast Food",73,3.6 +1388,Happy Beings,Ithaca,"Pizza, BBQ, Italian",84,3.5 +1389,InstaDozza,Santa Fe,"Tea, French, Cafe",48,3.5 +1390,Mom's Kitchen,Vernal,"French, Indian, Desserts, Fast Food",86,3.5 +1391,The Baker's Bar ... Bakery & Cafe,Charleston,"Tea, Pizza, BBQ",75,3.6 +1392,Veg Ex,Kodiak,"Chinese, Bakery, Cafe",50,3.8 +1393,Volt - By Plan B,Hancock,"French, Pizza, Cafe",54,3.5 +1394,ZASTY,Newport News,"BBQ, Desserts",15,3.5 +1395,Aahar,Tampa,"Tea, Pizza, Desserts, Fast Food",52,2.0 +1396,Chicken Bytes,Grand Island,"Cafe, Mexican, Fast Food",38,2.1 +1397,Flying Cakes,Bemidji,"Tea, Seafood",43,2.2 +1398,Punjabi Tadka,Eugene,"Desserts, Tea, Fast Food, Cafe, American",18,2.2 +1399,Coldpress Company,Laredo,"Bakery, American, BBQ",34,4.0 +1400,Crudo Juicery,Newport News,"Cafe, Pizza, Mediterranean, Fast Food",38,4.3 +1401,First Eat,Myrtle Beach,"Tea, Mexican, Fast Food",21,4.0 +1402,Zoe,Moline,"French, Cafe, Fast Food",15,4.3 +1403,Dabba Meat,Williston,"Desserts, French, Bakery, BBQ, Fast Food",82,3.1 +1404,Kashmiri Kitchen,Manchester,"Tea, Pizza, BBQ, Cafe, Mediterranean",41,3.4 +1405,Rumi's Kitchen,Wichita,"Bakery, Fast Food, Cafe, Indian, Seafood",34,3.4 +1406,Baking Bad,Belleville,"BBQ, Pizza, Desserts, Seafood",99,3.7 +1407,Bamboo Boat,Flagstaff,"Bakery, Mexican, BBQ, Desserts",77,3.8 +1408,Big Jack's,San Antonio,"Tea, Pizza, BBQ",55,3.5 +1409,Kebab Gali,Cedar City,"Tea, Chinese, BBQ, Desserts",94,3.9 +1410,Lucknow Mail,Gulfport,"Desserts, Tea, Pizza, Bakery, Mediterranean",51,3.8 +1411,Monster's Cafe,Longview,"Tea, Bakery, Fast Food, Cafe, American, Mediterranean",94,3.5 +1412,Monty's Chicken Wings,Ithaca,"BBQ, Mediterranean, Desserts",59,3.9 +1413,My Country Platter,Nome,"Tea, French, Bakery, Fast Food, Seafood",83,3.8 +1414,SARA World Cuisine,Muskegon,"Cafe, Pizza, Fast Food",39,3.9 +1415,Wah! Amritsar,Concord,"Fast Food, Mexican, Pizza, Seafood",80,3.6 +1416,World In A Box,Greer,"Seafood, Desserts, Fast Food",50,3.6 +1417,Bun Intended,Salina,"Tea, Cafe, BBQ",79,4.2 +1418,Cafe Gatherings,Dallas,"Bakery, Indian, Desserts",17,4.4 +1419,Cafe Soul Garden,Jamestown,"Desserts, Bakery, Cafe, American, Seafood",99,4.1 +1420,Food O Gram,Bangor,"Tea, Bakery, Pizza, Italian",75,4.0 +1421,Happy Hakka,Hattiesburg,"Tea, Cafe, Italian",84,4.1 +1422,Kaiser,Albany,"Cafe, Pizza, American",96,4.1 +1423,Pizza Central,Atlanta,"Cafe, Bakery, BBQ, Fast Food, Chinese, Indian",75,4.1 +1424,Tasty Fare,Denver,"French, BBQ, Fast Food",79,3.4 +1425,Burger Point,Niagara Falls,"Tea, American, BBQ",59,3.6 +1426,Drifters Cafe,Dallas,"Tea, French, Mexican, Cafe, Seafood",21,3.9 +1427,Oh! Fudge,Jacksonville,"French, Bakery, American, Fast Food",26,3.8 +1428,Anjlika,Miami,"Pizza, Italian, Fast Food, Cafe, Mediterranean, Seafood",56,3.1 +1429,IZU,Cedar City,"Desserts, Pizza, Italian, Bakery, Indian, Seafood",79,3.4 +1430,Sugar & Spice - Le Marche,Bangor,"Tea, BBQ, Desserts",45,2.9 +1431,Bizibean,Harlingen,"French, Mexican, Bakery, BBQ",24,3.6 +1432,ChandChini,Long Beach,"Cafe, Pizza, Desserts, Seafood",19,3.8 +1433,Coffee & Chai Co.,San Francisco,"Tea, Mexican, BBQ, Cafe, Seafood",10,3.6 +1434,Greek Food & Beyond,Fort Lauderdale,"Desserts, Tea, BBQ, Bakery, Chinese, Indian",54,3.6 +1435,Mediumwelldone,Abilene,"Tea, French, BBQ, Cafe, Seafood",91,3.5 +1436,Sonya Bakery Cafe,Trenton,"Bakery, Fast Food",63,3.5 +1437,Soul & Spice Co.,Tallahassee,"French, Bakery, Cafe, Fast Food",91,3.8 +1438,7 Degrees Brauhaus,Butte,"Cafe, BBQ",22,4.2 +1439,Cafe Amaretto,Belleville,"Tea, Pizza, French, Mexican, BBQ, Cafe",35,4.1 +1440,Sibang Bakery,Tallahassee,"Desserts, Italian, Mexican, Cafe, Seafood",25,4.1 +1441,The Hangout by 1861,Los Angeles,"Tea, Pizza, Seafood",64,4.0 +1442,The Mad Teapot/The Wishing Chair,Savannah,"Mexican, Bakery, Fast Food",23,4.4 +1443,Ninkasi Imperial Brews & Cookery,Deadhorse,"Desserts, Pizza, French, BBQ, American, Seafood",92,4.2 +1444,Zaffran,Owensboro,"Desserts, BBQ, Fast Food, Cafe, Mediterranean",98,4.1 +1445,Spiritual Bar & Lounge-DoubleTree by Hilton,Tallahassee,"Seafood, Pizza, American, Fast Food",47,3.4 +1446,The Food Store - DoubleTree by Hilton,Laredo,"Desserts, Tea, Bakery, Mediterranean, Seafood",29,3.6 +1447,Barista,Akron,"Tea, Cafe, Mediterranean, Seafood",26,3.3 +1448,Burger King,St. Louis,"Tea, BBQ, Chinese, American, Seafood",21,3.4 +1449,Club Mojo,Texarkana,"Desserts, Italian, BBQ, Cafe, American",49,2.6 +1450,KFC,Pasco,"Desserts, Pizza, Italian, Bakery, BBQ, Chinese",21,2.6 +1451,Not Just Paranthas,Williston,"Bakery, Indian, Cafe",80,2.7 +1452,Shree Rathnam,Kalamazoo,"Cafe, Indian, American, Pizza",84,2.9 +1453,Mogli's Coffee,Baton Rouge,"Cafe, Mexican, Mediterranean, Fast Food",67,3.8 +1454,Pind Balluchi,Panama City,"Desserts, Tea, Italian, BBQ, Indian",63,2.6 +1455,Sip n Bite,Hilo,"Pizza, BBQ, Desserts, Fast Food",68,3.2 +1456,Abar Khabo,Bend,"Italian, BBQ, Cafe, Indian, Seafood",20,3.6 +1457,Moti Mahal Delux,Branson,"French, Mexican, BBQ, Desserts",56,3.6 +1458,The Lost Mughal,San Diego,"Tea, Cafe, Italian",74,3.8 +1459,Fortune Deli - Fortune Select Excalibur,Martha's Vineyard,"Tea, Cafe, Indian, Desserts",41,3.6 +1460,India on my Plate - Fortune Select Excalibur,Traverse City,"Tea, Chinese, Seafood",53,4.0 +1461,Orchid - Fortune Select Global,Lansing,"Tea, Cafe, BBQ",16,2.6 +1462,Hungry Buffoons,Florence,"Bakery, Fast Food",57,2.7 +1463,Karim's,Nome,"French, Bakery, Fast Food",63,2.8 +1464,Manhattan Brewery & Bar Exchange,Santa Fe,"Seafood, Mexican, Pizza, Italian",33,4.6 +1465,Di Miso,Hyannis,"Tea, Pizza, Mexican, BBQ, Seafood",71,3.6 +1466,Kuuraku,Wrangell,"Tea, Mexican, BBQ, Pizza",38,3.9 +1467,Vapour Bar Exchange,Manhattan,"Tea, Pizza, French, BBQ, Cafe, American",19,3.8 +1468,19 Flavours Biryani,Boise,"Cafe, BBQ, Seafood",59,4.1 +1469,Bhai Ji Foods,Wichita,"Pizza, Mexican, Bakery, BBQ, Cafe, American",98,3.3 +1470,Captain Bill$ Deliverz,Little Rock,"Cafe, Seafood",71,2.7 +1471,Curry n Phulka,Chattanooga,"Tea, Chinese, Fast Food",40,2.8 +1472,Jaguar,Newark,"French, Bakery, Seafood",38,2.8 +1473,Jalsa Lounge,Beaumont,"Desserts, Pizza, Cafe, Mediterranean, Seafood",30,3.2 +1474,Lord of Grillz,Charlotte Amalie,"Tea, Chinese, Bakery",85,3.2 +1475,Midnight Cravings Beyond Control,Jacksonville,"Tea, Bakery, Mediterranean, Seafood",73,3.3 +1476,Outback,Fort Leonard Wood,"Bakery, Indian, BBQ",72,3.4 +1477,The Cinnamon Kitchen,Amarillo,"Desserts, Tea, Pizza, Chinese, Seafood",69,3.4 +1478,Dudleys,Concord,"Tea, Italian, Bakery, BBQ, Indian, Seafood",58,4.6 +1479,56 Ristorante Italiano,Birmingham,"Tea, BBQ, Fast Food, Cafe, American",44,3.7 +1480,All Time Cafe,Lewisburg,"Cafe, BBQ, Italian",29,3.6 +1481,Baba's,Kona,"Pizza, American, Desserts, Fast Food",95,3.6 +1482,Chilli Indiana,Hyannis,"Tea, Cafe, BBQ, Desserts",97,3.8 +1483,Go Kylin,Ponce,"Chinese, Pizza, BBQ",14,3.5 +1484,Just for Chai,Spokane,"Tea, Mexican, Desserts, Fast Food",32,3.5 +1485,Kabab Mistri,Hartford,"Tea, Chinese, Cafe",43,3.6 +1486,Nashta,Santa Maria,"Tea, Chinese, Bakery, Mediterranean",13,3.7 +1487,Nooba,Pago Pago,"French, Bakery, American, BBQ",82,3.6 +1488,Side Wok,Del Rio,"Bakery, Pizza, Desserts, Italian",95,3.9 +1489,Takamaka,Charlottesville,"Tea, Pizza, Italian, BBQ, Fast Food",72,3.9 +1490,The Ark,Arcata,"Tea, Pizza, BBQ, Italian",26,3.7 +1491,The Gathering Hut,Memphis,"Desserts, American, Bakery, BBQ, Fast Food, Indian",76,3.5 +1492,Wangchuk's Ladakhi Kitchen,Wilmington,"Cafe, Bakery, Italian",93,3.6 +1493,Daawat-e-Kashmir,Atlanta,"Cafe, Pizza, American, Seafood",19,4.2 +1494,La Pino'z Pizza,Bend,"Desserts, Tea, BBQ, Chinese, Seafood",44,4.0 +1495,The Diet Kitchen,Birmingham,"Cafe, Bakery, BBQ, Fast Food",98,4.0 +1496,Om Sweets & Snacks,Cedar City,"Tea, Pizza, Bakery, Italian",98,3.1 +1497,Subway,Kona,"Cafe, Desserts, Seafood",84,2.8 +1498,Taste of Tamil Nadu,Medford,"Pizza, Bakery, Fast Food",54,3.1 +1499,The Bridge - Hotel Clark Inn Gurgaon,Cincinnati,"Fast Food, BBQ, Seafood",37,2.8 +1500,Illusion The Lounge Bar - Hotel Clark Inn Gurgaon,Anchorage,"Tea, Desserts, Bakery, BBQ",56,0.0 +1501,Gardenia - Hotel Grenville,Wichita,"Tea, Desserts, Seafood",95,2.8 +1502,Call For Cuisine - Hotel Grenville,Greer,"Desserts, Tea, French, Bakery, Cafe",41,0.0 +1503,Armory - Hotel Haut.Monde,Scranton,"Cafe, French, Pizza, Mediterranean",59,2.9 +1504,Citron - Hotel Haut.Monde,West Palm Beach,"Tea, French, Bakery, BBQ, Fast Food, Indian",18,2.7 +1505,Gabbar Meals,Florence,"Tea, Cafe, Pizza, Chinese, Seafood",93,3.4 +1506,McDonald's,Mission,"Tea, Desserts",24,2.7 +1507,Crust Bistro,Manhattan,"Pizza, French, BBQ, Chinese, Seafood",19,3.6 +1508,Dunkin' Donuts,Prescott,"Cafe, Fast Food",99,3.6 +1509,Kabab Roll Cafe,Charlotte Amalie,"Tea, Pizza, Bakery, Fast Food",86,3.8 +1510,Starbucks,Chicago,"Tea, Bakery, BBQ, Cafe, Indian",46,3.8 +1511,Eggers Madhouse,Fort Myers,"BBQ, Mediterranean, Seafood",76,4.0 +1512,Gallery Caf愆 - Hyatt Place,Tampa,"Tea, French, BBQ, Desserts",42,3.8 +1513,Coffee to Cocktail Bar - Hyatt Place,Alamosa,"Tea, Indian, Desserts, Italian",35,0.0 +1514,Spice It - Hotel IBIS,Miami,"Pizza, Indian, Fast Food, American, Seafood",38,2.7 +1515,Nukkadwala,Minneapolis,"Desserts, Tea, Italian, Bakery, Cafe",90,3.4 +1516,Power Play Resto Bar,Helena,"Fast Food, Mexican, BBQ, Seafood",11,2.8 +1517,Daikichi,Little Rock,"Cafe, Seafood, Desserts, Italian",70,3.6 +1518,The Atrium - By Jukaso It Suites,Pasco,"Desserts, Tea, Cafe, Chinese, Seafood",81,2.8 +1519,Delhi - Kingdom of Dreams,Akron,"Seafood, Pizza, Indian, Italian",55,3.7 +1520,Lucknow - Kingdom of Dreams,Burbank,"Seafood, Pizza, Desserts, Italian",73,3.7 +1521,Longitude 77屃03' Bar - Le Meridien Gurgaon,College Station,"BBQ, Seafood",60,3.4 +1522,I-Kandy - Le Meridien Gurgaon,Appleton,"Desserts, Tea, Bakery, Chinese, Seafood",62,3.6 +1523,Bella Cucina - Le Meridien Gurgaon,Atlantic City,"Desserts, Tea, Mexican, Bakery, Seafood",76,4.1 +1524,Bar Code - Leisure Inn,Flagstaff,"Tea, Desserts, Seafood",41,3.0 +1525,Bites - Leisure Inn,Atlantic City,"Bakery, Fast Food, Cafe, American, Seafood",24,3.0 +1526,Outback Bar and Grill - Leisure Inn,Bemidji,"Indian, Desserts, Fast Food",59,3.0 +1527,Citrus Cafe - Lemon Tree Premier,Santa Barbara,"Bakery, BBQ, Fast Food",54,3.2 +1528,Ammu's South Indian Restaurant,Buffalo,"Desserts, Pizza, French, BBQ, Chinese",80,2.8 +1529,Barista,Watertown,"Fast Food, Chinese, Cafe, Seafood",14,3.3 +1530,Bengali By Nature,Hyannis,"Tea, Pizza, Fast Food",97,3.3 +1531,Burger Planet,Knoxville,"Tea, Bakery, American, Cafe",45,3.2 +1532,Cafe Coffee Day,Latrobe,"Cafe, Pizza, BBQ, Fast Food",52,3.1 +1533,Chini Bowl,Madison,"Cafe, Seafood",26,2.8 +1534,E Yum,Cheyenne,"Seafood, BBQ, Desserts, Fast Food",35,3.4 +1535,Handi X-Press,Newburgh,"Tea, Desserts",28,3.2 +1536,Ion Club & Dining Lounge,Dothan,"Tea, Cafe, American, Italian",95,2.6 +1537,Komachi,Amarillo,"Desserts, Tea, Fast Food, Chinese, Mediterranean",71,3.2 +1538,Mehfil-e-Handi,Austin,"Desserts, Tea, Bakery, American, Seafood",96,2.8 +1539,Mezbaan's,Bellingham,"Tea, Pizza, Italian",68,2.7 +1540,Mini Mahal Delux,Salisbury,"Tea, Cafe, Indian",17,2.8 +1541,Pita Pan,Johnstown,"Mexican, Pizza, Indian, Fast Food",40,3.1 +1542,SBar Club & Lounge,Nantucket,"Tea, Cafe, Pizza, Mediterranean",84,3.1 +1543,China Club,Jackson,"Cafe, BBQ",55,3.8 +1544,Coriander Leaf,Santa Rosa,"French, Bakery, BBQ, Fast Food, American, Seafood",41,3.8 +1545,Doughlicious,St. Petersburg,"Tea, Pizza, French, Cafe, Mediterranean, Seafood",26,3.6 +1546,FreshMenu,Killeen,"Seafood, Bakery, Cafe, Fast Food",62,3.7 +1547,L'Angoor,Billings,"Cafe, Pizza, Indian, Fast Food",19,3.5 +1548,The Cakelicious Factory,Panama City,"Tea, Pizza, Mexican, BBQ, Cafe",86,3.6 +1549,Green's,Brownsville,"Pizza, Indian, Fast Food",76,2.3 +1550,New Zaika,Sitka,"BBQ, Desserts",38,2.4 +1551,Love Is Cakes,Columbus,"Desserts, Pizza, Mexican, BBQ, Chinese, Seafood",42,4.1 +1552,Costa Coffee,Minot,"Pizza, Italian, Bakery, Fast Food, Seafood",72,3.3 +1553,Uforia,Nantucket,"Tea, French, Bakery, Cafe",11,3.5 +1554,Vapour Pub & Brewery,Detroit,"French, BBQ, Fast Food, Cafe, Seafood",80,3.7 +1555,Pirates of Grill,Jacksonville,"Tea, Chinese, Desserts",65,4.1 +1556,Barista Creme Lavazza,Niagara Falls,"Tea, Pizza, Mexican, Fast Food, American",51,3.2 +1557,Frozen Adda,Mission,"Italian, French, Bakery, Cafe, Seafood",17,3.0 +1558,McDonald's,Lake Charles,"Cafe, Desserts",88,3.2 +1559,Mr Idli Xpress,Louisville,"Cafe, Mediterranean, Fast Food",51,2.6 +1560,bu愆no,Baltimore,"French, Pizza, Cafe, Fast Food",93,3.7 +1561,Starbucks,Sarasota,"Tea, Chinese, Desserts, Fast Food",16,3.5 +1562,Al Kabab,Cedar City,"Pizza, BBQ, Mediterranean",74,2.7 +1563,Bangkok 1,Nashville,"Cafe, Seafood",44,3.3 +1564,Barista,Prescott,"Cafe, Pizza, Mediterranean, Seafood",72,3.4 +1565,Cafe Cravings,Harlingen,"Desserts, French, Bakery, Fast Food, Mediterranean",38,3.4 +1566,Hello Sichuan,Dillingham,"Pizza, Mexican, Bakery, BBQ, Mediterranean, Seafood",45,2.9 +1567,McDonald's,Moab,"Chinese, French, Bakery, Cafe",29,3.4 +1568,Rajasthali,Greensboro,"Tea, Cafe, Indian, Seafood",36,2.9 +1569,Street Foods by Punjab Grill,Vernal,"Tea, French, Bakery, BBQ, Chinese",68,2.6 +1570,Subway,Baton Rouge,"Cafe, Mexican, Indian, Pizza",52,3.3 +1571,Tibb's Frankie,Madison,"Fast Food, Cafe, Desserts, Italian",75,3.4 +1572,Tunday Kababi Dastarkhwan-e-Awadh,Plattsburgh,"Tea, Fast Food, Italian",20,3.1 +1573,Dunkin' Donuts,Wilmington,"Desserts, Tea, Pizza, Italian, French",25,3.7 +1574,Haldiram's,Butte,"Bakery, Pizza",38,3.6 +1575,Keventers,Jacksonville,"Tea, American, Mediterranean, Fast Food",96,3.6 +1576,Khaaja Chowk,Daytona Beach,"French, Bakery, American, Seafood",61,3.6 +1577,Phantom,Pensacola,"Desserts, Pizza, Cafe, Mediterranean, Seafood",94,3.5 +1578,Sage,New Orleans,"Mediterranean, Desserts, Seafood",87,3.5 +1579,TGI Friday's,Raleigh,"Tea, Bakery, American, Cafe",58,3.7 +1580,The Belgian Fries Company,Juneau,"Desserts, Pizza, BBQ, Cafe, Mediterranean",29,3.7 +1581,The Grills King,Brunswick,"Cafe, Desserts",46,3.8 +1582,Chicago Pizza,Burbank,"Fast Food, Cafe, Desserts, Italian",48,2.3 +1583,Suburbia - The Empire,Bishop,"Pizza, Mexican, BBQ, Fast Food, Cafe",53,2.1 +1584,Viva Hyderabad,Melbourne,"Tea, Desserts, Seafood",97,2.3 +1585,Queens Caf愆,Kansas City,"Mexican, Pizza, BBQ",57,4.0 +1586,Cafe Coffee Day,Fort Wayne,"Tea, Fast Food",48,3.3 +1587,FOA - The Flavours of Arabia,Islip,"Desserts, Cafe, Fast Food, Chinese, American",73,3.4 +1588,A1,Walla Walla,"BBQ, French, Pizza, Desserts",61,3.0 +1589,Apni Rasoi,Valdosta,"Fast Food, Bakery, Seafood",58,2.9 +1590,DBDN Deena Meat Vala,Del Rio,"Tea, Bakery, Desserts, Seafood",71,3.2 +1591,Deep Chicken Corner,Raleigh,"Tea, French, Mexican, BBQ, Bakery, Seafood",50,3.2 +1592,Dilli Rasoi,Green Bay,"Tea, French, Bakery, BBQ",65,3.2 +1593,French Omelette,Minot,"Tea, Italian, French, BBQ, Bakery, Cafe",12,3.2 +1594,Green Chick Chop,Christiansted,"Desserts, Pizza, Cafe, American, Mediterranean, Seafood",75,2.9 +1595,Hangout Cafe,Latrobe,"Cafe, Pizza, French, Chinese, Seafood",93,3.4 +1596,Hari Om Rasoi,Watertown,"Tea, Pizza, BBQ, Fast Food",97,3.2 +1597,Harish Phulwari,Bristol,"BBQ, Fast Food, Cafe, American, Seafood",74,3.1 +1598,Hotel Rajvanshi Restaurant,Salina,"Tea, Cafe, Bakery, Desserts",63,3.3 +1599,Jagdish Vaishno Dhaba,North Bend,"Desserts, Cafe, BBQ, Fast Food, Chinese",43,3.1 +1600,JVR Jayka,Yakima,"Bakery, BBQ, Desserts, Seafood",67,2.9 +1601,Kaza,Plattsburgh,"French, Bakery, Indian, Seafood",29,3.1 +1602,Knight Delight Kafe,Presque Isle,"Tea, Indian, Seafood",34,2.6 +1603,Ko Jitters,Bangor,"Cafe, BBQ",16,3.0 +1604,Laajawab Chaap Express,Killeen,"Mexican, BBQ, Desserts",72,3.1 +1605,Laddu Gopal,Walla Walla,"BBQ, American, Desserts, Italian",41,3.0 +1606,Mini's Royal Cafe,Chicago,"Tea, Cafe, Bakery",72,3.3 +1607,Pakwan,Omaha,"Pizza, Mexican, Bakery, Fast Food, Cafe, American",67,3.4 +1608,Patiala,Christiansted,"BBQ, Desserts",26,3.4 +1609,Pind Balluchi,Cleveland,"Chinese, Pizza, French, BBQ, Cafe",96,2.7 +1610,Pizza Man,Palm Springs,"Tea, Italian, Fast Food, Cafe, American",55,2.9 +1611,Punjabi Dhani,Mason City,"Desserts, Pizza, Mexican, Fast Food, American",78,3.2 +1612,Raju Halwai,Santa Maria,"Bakery, BBQ, Desserts, Fast Food",40,3.1 +1613,Rupa Tikki Wala And Caterers,Peoria,"American, BBQ, Fast Food",26,2.8 +1614,Samrat The Cake Shoppe,Scottsbluff,"Bakery, Mediterranean, Fast Food",60,3.0 +1615,Samrat,Cape Girardeau,"Pizza, American, Indian, Desserts",63,2.9 +1616,Sanjha Chula,Little Rock,"Fast Food, Cafe, Mexican, Seafood",75,3.0 +1617,Silver Crown,Petersburg,"Pizza, Indian, Desserts, Seafood",54,2.5 +1618,Super Bakery,Houston,"Seafood, Fast Food",30,3.3 +1619,The Chic,San Francisco,"Chinese, Bakery, Indian, Cafe",92,3.0 +1620,Unique Bus Wales,Cape Girardeau,"Bakery, BBQ",54,2.8 +1621,Dilli 6 Express,Anchorage,"Pizza, Italian, Mexican, Bakery, Fast Food",51,3.5 +1622,Mangle Di Kulfi,Tallahassee,"Bakery, Indian, Mediterranean, BBQ",45,3.6 +1623,The Oven Artist,Great Falls,"Tea, Cafe, Mexican, Seafood",66,3.5 +1624,Bal Ji Rasoi,Louisville,"Seafood, Bakery, Italian",77,0.0 +1625,Dakshin Bistro,Devils Lake,"Tea, BBQ, Indian, Desserts",42,0.0 +1626,Metro Dhaba,West Yellowstone,"Desserts, French, Mexican, Bakery, Cafe",94,0.0 +1627,Sukhman Food City,Sacramento,"Indian, Desserts, Fast Food",31,0.0 +1628,The Burger Hub,Manchester,"Tea, Cafe, Mediterranean",70,0.0 +1629,Pizza Hut Delivery,Dodge City,"Pizza, Seafood",15,2.2 +1630,Hot Cherries,Adak Island,"Pizza, American, Mediterranean, Fast Food",41,3.6 +1631,Domino's Pizza,Key West,"Cafe, Desserts, Fast Food",98,2.4 +1632,Coldpress Company,San Juan,"Cafe, Pizza, BBQ, Fast Food",11,4.1 +1633,Hahn's Kitchen,Grand Rapids,"Tea, BBQ, Desserts, Italian",40,3.2 +1634,Shree Rathnam,Salt Lake City,"Desserts, BBQ, Bakery, Fast Food, Chinese",56,3.4 +1635,Caffe Tonino,Burbank,"Tea, Desserts",28,3.8 +1636,Carl's Jr.,Sault Ste. Marie,"Bakery, Pizza, BBQ",63,3.5 +1637,Delhi Club House,Scottsbluff,"Tea, Cafe, Bakery, Mediterranean",59,3.9 +1638,GoGourmet,Yakutat,"Desserts, French, BBQ, Cafe, Mediterranean, Seafood",66,3.7 +1639,Shophouse by Kylin,Fresno,"Tea, BBQ",37,3.5 +1640,Starbucks,Little Rock,"Tea, Pizza, Mexican, Fast Food, Cafe",82,3.5 +1641,Baskin Robbins,Kalispell,"Tea, Pizza, BBQ, Fast Food, Chinese",93,3.1 +1642,Bikaner Sweets & Restaurant,Grand Rapids,"Chinese, Indian, Cafe, BBQ",98,3.1 +1643,Burger Bites & More,Evansville,"Fast Food, BBQ, Italian",91,2.9 +1644,Caf愆 Gramophone,Hilo,"Desserts, Pizza, French, BBQ, Seafood",69,3.2 +1645,Chawla Bakers,Santa Fe,"Desserts, Fast Food",12,3.2 +1646,Crust N Cakes,San Luis Obispo,"Pizza, Bakery, Desserts, Fast Food",64,3.2 +1647,Darjeeling Kanchanjanga Momos,Syracuse,"Tea, Italian, BBQ, Indian, Seafood",100,2.9 +1648,Desserts 83,Traverse City,"Tea, Cafe, Chinese, American, Seafood",78,3.2 +1649,Express Kitchen,Boise,"Mexican, American, Desserts, Fast Food",44,2.9 +1650,Giani's,Laredo,"Tea, Cafe, BBQ, Desserts",22,3.1 +1651,Hangover,White Plains,"Cafe, Pizza, Fast Food",88,2.7 +1652,Sangam Sweets,Louisville,"Bakery, Pizza, Cafe, Desserts",18,2.5 +1653,Shree Bikaner Misthan Bhandar,Brainerd,"Desserts, Tea, Fast Food, Mediterranean, Seafood",95,3.0 +1654,Shree Shyam Rasoi,Duluth,"Tea, Seafood, Bakery, Italian",33,3.1 +1655,Swad On Grill,Muskegon,"Tea, Pizza, Mexican, Cafe, Indian, Seafood",27,3.1 +1656,The Pepper's,Dodge City,"Bakery, Pizza, Fast Food",13,3.0 +1657,Anisha Restaurant,Kodiak,"Desserts, Pizza, Bakery, Mediterranean, Seafood",76,0.0 +1658,Annapoorna Foods,Dillingham,"Desserts, French, Bakery, Mediterranean, Seafood",37,0.0 +1659,Bakelicious 18,La Crosse,"Bakery, Mediterranean, Seafood",76,0.0 +1660,Bansiwala Bakery,Muskegon,"Tea, Italian, Bakery, BBQ, Seafood",47,0.0 +1661,Bansiwala Rasoi,Texarkana,"Tea, French, BBQ",71,0.0 +1662,Bansiwala Sweets,Valdosta,"Bakery, Pizza, American, Fast Food",55,0.0 +1663,Best Pizza Hut,State College,"Desserts, French, Bakery, Cafe, Indian",44,0.0 +1664,Bikaner Sweets & Restaurant,Longview,"Tea, Seafood",98,0.0 +1665,Chaska Food Corner,Philadelphia,"French, Bakery, Seafood",64,0.0 +1666,Chulha,Albuquerque,"Desserts, Pizza, Italian, Cafe, Seafood",49,0.0 +1667,Dev Restaurant,Newburgh,"Italian, French, Bakery, Cafe, Seafood",75,0.0 +1668,Dietpoint,Bristol,"BBQ, Mediterranean, Fast Food",36,0.0 +1669,Gautam Bakery,Mason City,"Tea, Bakery, BBQ",84,0.0 +1670,Honey Hot & Spicy,Salina,"Seafood, BBQ, Italian",48,0.0 +1671,Hot & Spicy,Dillingham,"Tea, Mexican, Bakery, Fast Food, Cafe",32,0.0 +1672,Hot Fork,Niagara Falls,"Fast Food, Bakery, Seafood",14,0.0 +1673,Icon Foods,Binghamton,"Seafood, Mexican, Indian, Fast Food",65,0.0 +1674,Indochi Cafe & Restaurant,Orlando,"Pizza, French, Bakery, Fast Food, Indian, Seafood",72,0.0 +1675,Love to Wish,Santa Barbara,"Italian, BBQ, Fast Food, Cafe, Indian",91,0.0 +1676,M Cr砺me,St. Louis,"French, Pizza, BBQ, Seafood",42,0.0 +1677,Mamta Tiffin Service,Aguadilla,"BBQ, Desserts, Italian",36,0.0 +1678,Panther Restaurant,El Paso,"Chinese, BBQ, Desserts",48,0.0 +1679,Pizza King,Juneau,"Tea, Cafe, Fast Food, Seafood",32,0.0 +1680,Radha Swami Shudh Vaishno Dhaba,Hilo,"Tea, Pizza, French, Mexican, BBQ, Fast Food",85,0.0 +1681,RD's Authentic Aroma,Vernal,"Chinese, French, Desserts, Fast Food",47,0.0 +1682,Savour,Valdosta,"Cafe, Bakery, Mediterranean, Desserts",65,0.0 +1683,Sheetla Dhaba,Houston,"Desserts, Pizza, Bakery, American, Mediterranean",35,0.0 +1684,Shree Bikaner Mishthan Bhandar,Brownsville,"Cafe, Pizza, BBQ, Seafood",78,0.0 +1685,Shree Shyam Bhojnalaya,Victoria,"Mexican, Bakery, BBQ, American, Seafood",55,0.0 +1686,Shristi Happy Eats,Butte,"Tea, Mexican, BBQ, Pizza",60,0.0 +1687,Singh Terrace Grill,Waco,"Desserts, Tea, French, Bakery, Fast Food",72,0.0 +1688,Swami Vaishno Dhaba,Devils Lake,"Fast Food, Tea, Pizza, Seafood",28,0.0 +1689,Wah Ji Wah,Melbourne,"Cafe, Pizza, Seafood",84,0.0 +1690,Cafe 55 - Park Inn,Redding,"Tea, Pizza, Italian, Fast Food, Seafood",88,3.2 +1691,New Town Lounge & Bar - Park Plaza,Santa Barbara,"Desserts, Tea, Italian, Bakery, BBQ",21,3.4 +1692,New Town Pastry Shop - Park Plaza,Hilton Head,"Tea, Cafe, Pizza, BBQ",51,3.2 +1693,New Town Cafe - Park Plaza,Kahului,"Indian, Desserts, Fast Food",52,3.7 +1694,The Great Kabab Factory - Park Plaza,Pellston,"Desserts, Pizza, Mexican, BBQ, Seafood",84,3.7 +1695,K2 Restaurant,Scottsbluff,"Tea, Pizza, BBQ, Cafe, Mediterranean",86,3.0 +1696,Angels in my Kitchen,Kotzebue,"Desserts, Tea, Pizza, French, Seafood",17,3.1 +1697,Barista,Dothan,"Fast Food, Cafe, Indian, Mediterranean, Seafood",95,3.3 +1698,Cafe Coffee Day,Albany,"Mexican, Fast Food, Cafe, American, Seafood",82,2.8 +1699,Cafe Naklee,Valdosta,"Tea, Desserts, Seafood",91,3.2 +1700,Chacha's Take Away,Hyannis,"Tea, BBQ, Fast Food, American, Seafood",84,2.8 +1701,Colonel's Kababz,Indianapolis,"Cafe, Mediterranean, Fast Food",40,3.0 +1702,Domino's Pizza,Everett,"Chinese, Pizza, Desserts",79,2.8 +1703,Green Chick Chop,Valdosta,"Tea, Seafood, Mediterranean, Italian",39,2.8 +1704,Naushi's Kitchenette,Scottsbluff,"Fast Food, Cafe, Indian, Seafood",63,3.4 +1705,Sapra Pastry Treat,Greenville,"Cafe, Pizza, Indian",65,3.0 +1706,Subway,Wrangell,"Tea, Bakery, American",15,3.2 +1707,Sunny Sweets,Pasco,"Tea, Mexican, Desserts",55,3.3 +1708,The Healthy Rasoi,Brainerd,"Chinese, Pizza, BBQ, Bakery",92,3.7 +1709,Burger King,Walla Walla,"Pizza, Mediterranean, BBQ",39,3.0 +1710,Hong Kong Express,Anchorage,"Tea, Pizza, Indian, Fast Food",38,3.2 +1711,Viva Hyderabad,Decatur,"Desserts, Tea, Italian, Fast Food, Indian",12,2.3 +1712,Cafe Rouge - Ramada,Fort Smith,"Tea, Cafe, Bakery, Seafood",90,3.5 +1713,Shamji Sweets,Plattsburgh,"Tea, Pizza, Bakery, Fast Food, Indian",44,3.2 +1714,Sialkoti Vaishno Dhaba,Waco,"Tea, Cafe, Desserts",15,3.1 +1715,Haldiram's,Portland,"Tea, Bakery",42,3.6 +1716,Club Prison,Columbus,"Tea, Seafood, Fast Food, Italian",70,2.4 +1717,Maa Bhagwati Tiffins,North Platte,"Fast Food, Cafe, Mediterranean, Seafood",75,3.0 +1718,Spices & Sauces,Miami,"Italian, Mexican, Bakery, Cafe, Seafood",28,3.0 +1719,Indian Food Cafe,Trenton,"Mexican, Indian, BBQ, Fast Food",47,0.0 +1720,Assam Tea Corner,Lubbock,"Desserts, BBQ, Fast Food, American, Seafood",52,2.8 +1721,Bakingo,Albuquerque,"Tea, Cafe, Mediterranean",61,3.0 +1722,Balaji Sweets & Snacks,Des Moines,"Desserts, Tea, French, Fast Food, Indian",86,2.9 +1723,Baxman Delivers,Fort Dodge,"Pizza, Fast Food",72,2.9 +1724,Burger Point,Pasco,"Tea, French, BBQ, Bakery, Fast Food, Chinese",79,3.2 +1725,Burger Xpress,Alexandria,"Desserts, Pizza, Mexican, Fast Food, Chinese",46,3.1 +1726,Cafe Coffee Day,Knoxville,"Fast Food, American, BBQ, Italian",82,2.8 +1727,Cake Factory,Boston,"Tea, French, Seafood",43,3.3 +1728,Cake Maker,Harrisburg,"Cafe, Pizza, BBQ, Chinese, Seafood",31,3.0 +1729,Captain's Table,Staunton,"American, BBQ, Seafood",11,3.1 +1730,Carpedium,Sitka,"Bakery, Fast Food, Cafe, Indian, Seafood",20,3.1 +1731,Chef Sack Kitchen,Oakland,"Bakery, Pizza",70,3.1 +1732,Chinar Junction,Hyannis,"Seafood, Bakery, BBQ, Italian",41,2.8 +1733,Frontier,Milwaukee,"Fast Food, Seafood, Tea, Italian",13,2.9 +1734,Ganpati Rasoi,Atlantic City,"Tea, Cafe, Mediterranean",61,3.2 +1735,Indian & Chinese Corner,Lihue,"Tea, Mexican, Bakery, BBQ, Mediterranean",80,3.1 +1736,Juice Lounge,Wichita Falls,"Cafe, Indian, Seafood",68,3.4 +1737,KB's Kulfi & Icecream,Augusta,"American, BBQ, Seafood",92,3.3 +1738,KB's Kulfi & Icecream,Hilo,"Pizza, BBQ, Desserts",41,3.3 +1739,Keventers,Kodiak,"Cafe, Pizza, Mexican, BBQ, Chinese",41,2.6 +1740,KFC,Palm Springs,"Desserts, Italian, Bakery, Fast Food, Seafood",64,2.7 +1741,Madras Cafe,St. Cloud,"Tea, Bakery, Desserts, Fast Food",62,3.3 +1742,Madurai Meenakshi Bhawan,Grand Island,"Desserts, Tea, Cafe, Pizza, Chinese",69,3.4 +1743,Masala Fusion,Harrisburg,"Desserts, Pizza, French, Bakery, Indian",13,3.2 +1744,Moti Mahal Delux Tandoori Trail,Fort Leonard Wood,"Desserts, Pizza, Mexican, Fast Food, Indian, Seafood",37,2.9 +1745,Mr. & Mrs. Idly,Saginaw,"Pizza, American, Desserts, Fast Food",36,3.0 +1746,Pind Bawarchi,Dothan,"Tea, Desserts",87,3.1 +1747,Republic of Chicken,Vernal,"Tea, Bakery, Cafe, American, Mediterranean",31,2.8 +1748,Ridhi Sidhi,Fort Dodge,"Cafe, Seafood",49,3.0 +1749,Romi Da Dhaba,Spokane,"Tea, Mediterranean, Fast Food",93,3.2 +1750,Shamji Sweets,Lawton,"Desserts, Tea, Pizza, American, Indian",24,2.9 +1751,Six Pack Kitchen,White Plains,"Chinese, Mexican, Desserts, Seafood",58,3.2 +1752,Taste of Dilli 6,Rhinelander,"Cafe, Bakery, Fast Food",32,2.7 +1753,The Guls,Lexington,"Chinese, Mexican, Bakery, Seafood",99,3.0 +1754,The League Restaurant,El Paso,"Bakery, BBQ",55,3.1 +1755,The Plaza Solitaire,Pellston,"Desserts, Tea, BBQ, American, Mediterranean",72,3.3 +1756,Uttarakhand Fast Food,New Orleans,"Chinese, Bakery, Desserts, Seafood",57,2.9 +1757,Viva Hyderabad,Honolulu,"Bakery, BBQ",29,2.5 +1758,Wahid Food Corner,Midland,"French, Bakery, BBQ, Desserts",19,2.8 +1759,Zync - Rosewood Hotel,Appleton,"Chinese, Bakery, Desserts",58,3.0 +1760,Konetto Pizza,Stockton,"Pizza, BBQ, Mediterranean",47,3.5 +1761,South Store,Rapid City,"Tea, Pizza, BBQ",50,3.5 +1762,Grill & Cafe,Rochester,"Cafe, Mexican, Desserts",88,0.0 +1763,Gurgaon Mughlai Chicken,Bakersfield,"Cafe, French, Seafood, Fast Food",60,0.0 +1764,Mughal Chicken Corner,Rochester,"Desserts, Fast Food",38,0.0 +1765,Oven Aroma,Boston,"Desserts, Cafe, Fast Food, Chinese, Seafood",66,0.0 +1766,Radha Swami Shudh Vaishno Dhaba,Hibbing,"Desserts, French, Bakery, Cafe, Mediterranean",92,0.0 +1767,Special No.1 Biryani Corner,Boston,"Cafe, Indian, Desserts, Seafood",13,0.0 +1768,Sun Sweets Restaurant,Harlingen,"Desserts, Pizza, BBQ, Cafe, Mediterranean",27,0.0 +1769,Captain Bill$ Deliverz,Ketchikan,"Tea, Seafood",64,2.4 +1770,China Hut,Harlingen,"Bakery, BBQ, Desserts",57,2.4 +1771,G Dot,New York,"Cafe, Mexican, BBQ",75,2.4 +1772,Cake2you,Idaho Falls,"Desserts, Bakery, BBQ, Indian, Seafood",47,3.0 +1773,Delight Express,Bishop,"Fast Food, BBQ, Italian",76,2.9 +1774,Empress,San Francisco,"Pizza, BBQ, Mediterranean, Fast Food",24,2.9 +1775,Hotel DDR,Lewiston,"Seafood, Bakery, Fast Food",31,2.8 +1776,Khan Kabab Corner,Ogden,"Desserts, Cafe, Pizza, BBQ, Chinese",45,3.0 +1777,Kwality Cakes and Bakes,North Bend,"Desserts, Pizza, Italian, Fast Food, Cafe",78,3.2 +1778,Nite Bites,Sioux Falls,"Tea, Pizza, French, Cafe, Seafood",95,2.9 +1779,Oriental Kitchen Express,Pocatello,"Cafe, Bakery, Desserts",36,3.3 +1780,Royal Mart,Houston,"Tea, Bakery, Cafe, Mediterranean, Seafood",40,2.9 +1781,Sikkim Fast Food,Hilton Head,"French, Bakery, Desserts, Seafood",90,2.7 +1782,ZASTY,Moline,"Pizza, Indian, BBQ, Cafe, American, Seafood",82,3.5 +1783,Maachh Bhaat,Fort Myers,"Desserts, Pizza, Fast Food, Mediterranean, Seafood",66,3.4 +1784,ANTIDOTE,Lexington,"Desserts, Cafe, Pizza, Mexican, BBQ, Chinese",10,0.0 +1785,Bablu Fast Food,Nashville,"Desserts, Pizza, Mexican, BBQ, Fast Food",13,0.0 +1786,Bikaner Sweets Snacks & Restaurant,Portsmouth,"Chinese, French, Cafe, Fast Food",28,0.0 +1787,Bikaner Sweets,Kalamazoo,"Tea, Indian, Fast Food",76,0.0 +1788,Biryani & Rolls,Bakersfield,"Cafe, Mexican, Bakery, Fast Food",48,0.0 +1789,Cafe Coffee Day,Sitka,"Desserts, Italian, Bakery, Fast Food, Seafood",17,0.0 +1790,Chefy's Kitchen,Portland,"Tea, BBQ, Pizza, Desserts",45,0.0 +1791,Delight Express,New Bern,"Cafe, Bakery, BBQ, Fast Food",82,0.0 +1792,Dilli Rasoi,Williston,"Pizza, Mexican, Bakery, American, Seafood",20,0.0 +1793,Dujal Cafe,Nantucket,"Tea, Pizza, Desserts",13,0.0 +1794,Full Dabba,Nashville,"Pizza, Mexican, Fast Food, Cafe, American",77,0.0 +1795,HSI Food World,Buffalo,"Fast Food, Cafe, Seafood",60,0.0 +1796,Krishna Restaurant,West Yellowstone,"BBQ, Bakery, Desserts",88,0.0 +1797,Lajawaab House Cafe,Branson,"Seafood, Fast Food",92,0.0 +1798,Luncheon Box,Lake Charles,"Cafe, Pizza, Mediterranean",26,0.0 +1799,Modern Sweets,San Luis Obispo,"Pizza, Seafood",12,0.0 +1800,Radha Swami Shudh Vaishno Dhaba,Spokane,"Cafe, Desserts, Seafood",63,0.0 +1801,Raju Vaishno Amritsari Dhaba,Petersburg,"BBQ, Mediterranean, Seafood",83,0.0 +1802,Rustic Flavours,Helena,"Cafe, BBQ, Seafood, Fast Food",47,0.0 +1803,VK Food Court,Valdosta,"Mexican, Pizza, BBQ, Seafood",91,0.0 +1804,Domino's Pizza,Martha's Vineyard,"Pizza, Mexican, Bakery, BBQ, Seafood",59,3.3 +1805,GoGourmet,Colorado Springs,"Desserts, Bakery, Fast Food, Indian, Seafood",66,3.2 +1806,Snack Shack,Melbourne,"Desserts, Tea, Pizza, Mediterranean, Seafood",36,2.7 +1807,West愆ross,El Paso,"Pizza, Bakery, Fast Food, Cafe, American",25,3.5 +1808,Fruitpro,Pensacola,"Tea, Cafe, Pizza, Desserts",95,0.0 +1809,Konetto Pizza,Birmingham,"BBQ, Pizza, Desserts, Seafood",98,0.0 +1810,Tpot,Cincinnati,"Tea, French, Mexican, Fast Food",59,0.0 +1811,Cake Desire,Ogden,"American, Fast Food, Cafe, Indian, Seafood",70,3.0 +1812,Burger Xpress,Concord,"Pizza, American, Fast Food",76,0.0 +1813,Divine Bites,Niagara Falls,"Desserts, Tea, French, Bakery, Fast Food, Chinese",11,0.0 +1814,Interaxis,Kalispell,"Desserts, Cafe, Italian, Bakery, Chinese",89,0.0 +1815,Kwality wall's swirl's,Missoula,"Cafe, Bakery, BBQ",13,0.0 +1816,Milan Apna Dhaba,Missoula,"Tea, Pizza, BBQ, Seafood",45,0.0 +1817,R S Foods,Long Beach,"Bakery, Indian, Cafe, BBQ",11,0.0 +1818,Ronny Flavours,Arcata,"Bakery, Desserts, Italian",59,0.0 +1819,Shahi Chicken Corner,Santa Ana,"Bakery, BBQ, Italian",55,0.0 +1820,Behrouz Biryani,Las Vegas,"Pizza, Italian, BBQ, Bakery, Seafood",97,3.4 +1821,Biryani Art,Savannah,"Chinese, Bakery, Fast Food",41,3.3 +1822,Daawat-e! Amritsar,Madison,"Cafe, Mexican, Pizza, Desserts",53,2.9 +1823,Faasos,Pago Pago,"French, Bakery, American, Fast Food",10,3.0 +1824,Ovenstory Pizza,Latrobe,"Chinese, Desserts, American, BBQ",14,3.3 +1825,Pizza Hut Delivery,Jacksonville,"Tea, Pizza, Fast Food, Chinese, Indian, Seafood",35,2.7 +1826,Game n Grillz,Norfolk,"Mexican, Bakery, Cafe, American, Seafood",59,3.6 +1827,Hamoni Red: Play Cafe,Fresno,"Cafe, Mexican, Seafood",35,3.9 +1828,Firangi Bake,Lewisburg,"Chinese, Bakery, Pizza",71,0.0 +1829,Indochi,West Palm Beach,"Fast Food, American, Mediterranean, Seafood",40,0.0 +1830,Kettle & Kegs,Lansing,"Tea, Pizza, BBQ, Fast Food, Mediterranean",53,0.0 +1831,The Food Garage,Gainesville,"Desserts, Tea, Bakery, BBQ, Chinese",97,0.0 +1832,Machan,San Luis Obispo,"Tea, Pizza, BBQ, Fast Food",45,3.3 +1833,Mainland China,Cody,"Chinese, Pizza, Cafe, Desserts",74,3.3 +1834,Pind Balluchi,Gulfport,"Desserts, Tea, French, Cafe, Seafood",89,3.4 +1835,Sagar Ratna,Detroit,"Tea, Indian, BBQ, Italian",55,2.7 +1836,Sasuraal,Gunnison,"Cafe, BBQ, Desserts",61,3.3 +1837,feel ALIVE,Latrobe,"Tea, Fast Food, Bakery, Italian",83,4.7 +1838,Matchbox,Houston,"Tea, Italian, Bakery, Fast Food, Seafood",33,4.8 +1839,Prankster,Martha's Vineyard,"Bakery, BBQ, Fast Food",34,4.8 +1840,21 Gun Salute,Presque Isle,"Cafe, Pizza, Desserts, Italian",24,3.9 +1841,Backyard Underground,Shreveport,"Fast Food, BBQ, Seafood",86,3.5 +1842,Bikanervala,Santa Rosa,"Fast Food, French, BBQ, Seafood",65,3.8 +1843,Chin Chin,Concord,"Tea, Cafe, BBQ, Chinese, Indian",82,3.5 +1844,Domino's Pizza,Sun Valley,"Tea, Cafe, BBQ, Fast Food",96,3.6 +1845,Eggjactly,Bloomington,"French, Bakery, Fast Food, Cafe, Seafood",40,3.7 +1846,Gola Sizzlers,San Jose,"Pizza, Mexican, BBQ, Fast Food, American",87,3.5 +1847,Hunter Valley,Cincinnati,"Pizza, Fast Food",35,3.6 +1848,Jungle Jamboree,Daytona Beach,"Cafe, Bakery, Desserts",38,3.8 +1849,McDonald's,North Bend,"Cafe, Mexican, Seafood",40,3.5 +1850,My Bar Headquarters By Dockyard,West Palm Beach,"Pizza, BBQ",46,3.9 +1851,Punjabi by Nature,Jackson,"Desserts, Italian, Mexican, Cafe, Seafood",21,3.6 +1852,Sandys Cocktails & Kitchen,Charlottesville,"Tea, Pizza, BBQ, Indian, Seafood",82,3.9 +1853,Sense Of Spirits,Brainerd,"Desserts, Cafe, Pizza, Fast Food, Chinese, Indian",29,3.9 +1854,Starbucks,Akron,"French, Mexican, Bakery, Pizza",68,3.7 +1855,Swagath,Grand Rapids,"Tea, Cafe, Pizza, Seafood",22,3.6 +1856,The Old School Brew House,Panama City,"Cafe, Pizza, Indian, BBQ",78,3.9 +1857,Barcelos,Harlingen,"Cafe, Pizza, Desserts, Seafood",26,4.0 +1858,Boombox Brewstreet,Kansas City,"Tea, Fast Food, Desserts, Italian",14,4.4 +1859,BRONX Bar Exchange,Lake Charles,"Cafe, Pizza, Desserts, Fast Food",95,4.1 +1860,Djinggs,Binghamton,"Seafood, Pizza, BBQ, Fast Food",53,4.1 +1861,Downtown - Diners & Living Beer Cafe,Greensboro,"Tea, Pizza, Mexican, BBQ, Cafe, American",15,4.4 +1862,Drifters Cafe,Newark,"Tea, BBQ",24,4.1 +1863,Gung The Palace,Albuquerque,"Tea, Pizza, French, Bakery, Indian",30,4.2 +1864,Magadh and Awadh,New Bern,"Tea, BBQ, Fast Food, Chinese, Seafood",73,4.0 +1865,Mamagoto,Knoxville,"Indian, Mediterranean, Desserts, Seafood",14,4.1 +1866,Molecule Air Bar,Omaha,"Desserts, Cafe, Pizza, Mexican, Bakery, Chinese",26,4.2 +1867,Nagai,Myrtle Beach,"Desserts, Pizza, Mexican, Fast Food, American, Seafood",19,4.3 +1868,PitStop BrewPub,Spokane,"Indian, American, Desserts, Fast Food",39,4.4 +1869,The Classroom,Valparaiso,"Desserts, Seafood",83,4.4 +1870,bu愆no,Latrobe,"Desserts, Tea, Pizza, Fast Food, Indian",60,3.8 +1871,Bottles and Barrels,Santa Ana,"Desserts, Tea, French, Bakery, Cafe",81,4.0 +1872,A One Rasoi,Branson,"Tea, Cafe, Fast Food, Seafood",75,3.1 +1873,Angeethi,Bangor,"Desserts, Pizza, BBQ, Cafe, Mediterranean",32,2.7 +1874,Burger Point,Cedar Rapids,"Tea, Cafe, Mexican, Seafood",58,2.7 +1875,Cafe Coffee Day,Decatur,"Tea, Cafe, BBQ, Mediterranean",46,3.1 +1876,Cake Castle,Nome,"Cafe, French, Chinese, Desserts",55,3.2 +1877,CHA,Gainesville,"Desserts, Pizza, Bakery, Fast Food, American",84,3.2 +1878,Chai Point,Tallahassee,"Fast Food, Bakery, Italian",32,2.9 +1879,Fees - The Cloud Kitchen,Jackson,"Cafe, Pizza, BBQ",15,2.9 +1880,Food Ka Mood,Yakutat,"Fast Food, Indian, Desserts, Seafood",31,3.1 +1881,Frozen Factory,Sarasota,"Desserts, Tea, French, Fast Food, Seafood",54,3.1 +1882,Goli Vada Pav No. 1,Evansville,"Chinese, BBQ, Seafood, Fast Food",28,3.1 +1883,Green Chick Chop,Wrangell,"BBQ, Seafood",17,3.1 +1884,Harichatni.com,Twin Falls,"Tea, Chinese, Seafood",58,2.9 +1885,Kk Chaap Express,Raleigh,"Cafe, Mexican, BBQ, Fast Food",80,3.3 +1886,Latenight.in,Santa Barbara,"Tea, Seafood, Bakery, Italian",81,3.0 +1887,Mitran Da Junction,Bismarck,"Chinese, Bakery, BBQ",66,2.7 +1888,Mogambo Kitchen,Concord,"Tea, American, BBQ, Indian, Seafood",85,3.1 +1889,Mother Ringlet,Seattle,"Tea, Cafe, Mediterranean, Seafood",63,2.5 +1890,Sna-X Point,Jacksonville,"Seafood, BBQ, Cafe, Italian",50,3.2 +1891,Wow! Momo,Santa Fe,"Desserts, Pizza, French, BBQ, Chinese",55,2.9 +1892,Yashna,Brownsville,"American, BBQ, Seafood",37,2.8 +1893,Twigly,Nashville,"Pizza, French, Fast Food, Chinese, Seafood",14,4.5 +1894,Bakers Oven,Corpus Christi,"Pizza, Bakery",96,3.6 +1895,Dilli 6 On Wheels,Rapid City,"Cafe, Indian, Fast Food",84,3.8 +1896,La Pino'z Pizza,Myrtle Beach,"Cafe, Seafood, Fast Food",14,3.5 +1897,LeanBodyMeals,Bishop,"Tea, Mexican, Desserts",61,3.9 +1898,Om Sweets & Snacks,Indianapolis,"Fast Food, Tea, American, Seafood",53,3.5 +1899,Tasty Tweets,Escanaba,"Pizza, BBQ, Fast Food, Mediterranean, Seafood",48,3.9 +1900,The Kathi Rolls,West Palm Beach,"Cafe, Pizza, Bakery, Chinese, Seafood",53,3.5 +1901,Bite N Sip,Orlando,"Chinese, Bakery, Cafe, Fast Food",76,0.0 +1902,Burger Joint,Clarksburg,"Pizza, American, Desserts",50,0.0 +1903,Dilli Light,Lewisburg,"Cafe, Seafood",96,0.0 +1904,Love Desserts,Williston,"Chinese, Pizza, Bakery, Seafood",61,0.0 +1905,Flying Cakes,Santa Ana,"Desserts, Italian, Mexican, Fast Food, Cafe",57,2.4 +1906,Bikkgane Biryani,Dillingham,"Tea, Cafe, Pizza, Italian",49,4.0 +1907,Cafeast,Charlotte Amalie,"Tea, Chinese, Fast Food, Seafood",79,3.0 +1908,Yomo-Your Only Momo Outlet,Green Bay,"Tea, Pizza, Italian",80,3.0 +1909,Afghan Indian,Providence,"Cafe, Bakery, BBQ, Fast Food",69,0.0 +1910,Al Fanoos,Sacramento,"Desserts, Bakery, BBQ, Fast Food",33,0.0 +1911,Alwar Sweets & Namkeen,Sitka,"Fast Food, Bakery, Desserts, Italian",21,0.0 +1912,Baskin Robbins,Santa Rosa,"Tea, Pizza, Mexican, BBQ, Cafe",16,0.0 +1913,Bisht Food Court,Asheville,"Desserts, French, Bakery, BBQ, American, Seafood",72,0.0 +1914,Burj Al Arab,Christiansted,"Tea, American, Mediterranean, Desserts",21,0.0 +1915,Chinese Chilli Sizllers,Staunton,"Tea, Pizza, Mexican, Bakery, Chinese",73,0.0 +1916,Costa Coffee,Cleveland,"French, Pizza, Fast Food",97,0.0 +1917,Costa Coffee,Flagstaff,"Tea, Bakery, BBQ, Fast Food, Chinese",67,0.0 +1918,Desi Bites,Kalispell,"Cafe, Pizza, Bakery, Seafood",64,0.0 +1919,Fresh Food,Sacramento,"Seafood, BBQ, Desserts, Italian",56,0.0 +1920,Kwality Restaurant,Pensacola,"Desserts, Tea, French, Fast Food, Chinese",29,0.0 +1921,Kwality Wall's Swirl's,Islip,"Bakery, Seafood",42,0.0 +1922,Nehra's Food Point,Jacksonville,"Seafood, Pizza, Mediterranean, Fast Food",24,0.0 +1923,Orange Food Cart,Hibbing,"BBQ, Cafe, Indian, Desserts",35,0.0 +1924,Royal Sweets,State College,"Desserts, Tea, BBQ, Mediterranean, Seafood",70,0.0 +1925,Shree Annapurna,Billings,"French, Bakery, Cafe",96,0.0 +1926,Underground Restaurant,Nome,"French, Pizza, Desserts, Fast Food",74,0.0 +1927,Midnight Sutra,Petersburg,"Tea, Pizza, Indian, Desserts",65,3.0 +1928,Paddy's - The Grub Grill,Bellingham,"Tea, Italian, Fast Food, Indian, Seafood",23,3.2 +1929,Sugar Rush By Saiba,Fresno,"Pizza, Bakery",76,4.1 +1930,Bamboo House,Santa Rosa,"BBQ, Bakery, Mediterranean, Desserts",15,3.4 +1931,Burger Unlimited Kitchen,Honolulu,"Chinese, Bakery, BBQ",60,3.2 +1932,Cafeteria Point,Aguadilla,"Cafe, Pizza",28,3.2 +1933,Choudhary Gohana Famous Jalebi,Key West,"Tea, Indian, Fast Food",48,3.2 +1934,Curry N' Tandoor,Alexandria,"Pizza, BBQ, Indian, Mediterranean, Seafood",31,3.2 +1935,Dawat-e-Ishq,Charlottesville,"Desserts, Tea, Italian, BBQ, Fast Food",26,3.3 +1936,Delish Bake N Choc,Roswell,"Chinese, Bakery, Indian, Desserts",90,2.9 +1937,Flavours,Cedar Rapids,"Cafe, Bakery, Seafood, Fast Food",22,3.3 +1938,Om Sweets & Snacks,Anchorage,"Tea, Cafe",24,2.8 +1939,Om Sweets,St. Louis,"Fast Food, BBQ, Desserts, Seafood",24,3.2 +1940,Raj Restaurant,Syracuse,"French, Bakery, Indian, BBQ",61,3.1 +1941,Tasha's Artisan Foods,West Palm Beach,"Cafe, Pizza, Desserts",74,3.2 +1942,Urban Kitchen,Laramie,"Bakery, Pizza, Desserts, Seafood",65,3.2 +1943,Nite Bites,Waco,"Tea, Cafe, Fast Food",99,3.7 +1944,Apna Dabba,Fresno,"BBQ, Cafe, Pizza, Desserts",23,0.0 +1945,BiBo's Kitchen,Bloomington,"French, Pizza, Desserts, Seafood",41,0.0 +1946,Burger Point,Everett,"Seafood, Pizza, BBQ, Fast Food",48,0.0 +1947,Cherry Crossing Foods,Lexington,"Bakery, Pizza, BBQ, Desserts",74,0.0 +1948,Chinese Fast Food,Sacramento,"Seafood, BBQ, Italian",76,0.0 +1949,Chinese Food,San Angelo,"Fast Food, Bakery, Mediterranean, Seafood",88,0.0 +1950,Chop Shop,Baton Rouge,"French, Pizza, Cafe",27,0.0 +1951,Dhara,Mason City,"Bakery, American, Desserts, Seafood",59,0.0 +1952,Foody Goody,Boston,"Tea, Fast Food, Cafe, Indian, Seafood",47,0.0 +1953,Kehar Sweets And Snacks,Lansing,"Chinese, Pizza, Cafe, Desserts",83,0.0 +1954,Muskan Chicken Biryani,San Luis Obispo,"French, Bakery, BBQ, Italian",88,0.0 +1955,Shakes Cakes 'n' More,Brainerd,"Pizza, BBQ, Desserts, Fast Food",94,0.0 +1956,Shri Sai Kirpa Food,Sioux Falls,"Tea, Bakery, Mediterranean",51,0.0 +1957,Sufiya Hotel,Moab,"Tea, Chinese, Fast Food",66,0.0 +1958,The Breakfast Bite,Kahului,"Desserts, Tea, Mexican, Fast Food, Cafe",34,0.0 +1959,Veg Hut,Nashville,"Tea, Mexican, Seafood",35,0.0 +1960,Raj Restaurant,Colorado Springs,"Desserts, Seafood",71,2.4 +1961,Burger Hut,Harrisburg,"Tea, Desserts",10,2.8 +1962,Dancing Turkeys,Owensboro,"Tea, Cafe, BBQ, Chinese, Indian, Seafood",77,3.3 +1963,The Pack King,Milwaukee,"French, Bakery, Pizza",94,0.0 +1964,Bikaner Misthan Bhandar,Hilo,"Tea, BBQ, Desserts, Fast Food",77,0.0 +1965,Zizo,Portland,"Pizza, French, BBQ, Cafe, Mediterranean",87,3.9 +1966,Grill King Kabab & Curries,Fort Dodge,"Tea, French, Bakery",26,2.4 +1967,Aarush - A Mediterranean Kitchen,Ketchikan,"Desserts, Cafe, Pizza, Chinese, Seafood",54,3.2 +1968,Blossoms 4 U,Dillingham,"Desserts, Bakery, Chinese, Mediterranean, Seafood",56,3.0 +1969,Breakfast@60,Saipan,"Desserts, American, BBQ, Fast Food",27,3.1 +1970,Bunny Burgers,Santa Fe,"Mexican, Pizza, Bakery, Italian",68,3.3 +1971,Curry Haus,Cape Girardeau,"Chinese, Bakery, Cafe, Desserts",50,3.1 +1972,Droolfi,Raleigh,"Fast Food, Seafood, Pizza, Italian",32,3.0 +1973,Earthen Spices,Houston,"Tea, Mexican, Bakery, BBQ, Fast Food",28,2.7 +1974,FatPlates,Grand Island,"Tea, Pizza, Indian, Seafood",95,3.0 +1975,Food4U!,Savannah,"Chinese, Bakery, Pizza",74,3.2 +1976,Ghar Ki Handi,Pocatello,"Cafe, Bakery, American, Fast Food",13,3.0 +1977,Giani,Owensboro,"Tea, Pizza, Fast Food",69,3.2 +1978,Great Desserts Company,Watertown,"Desserts, BBQ, Fast Food, Chinese, Seafood",22,3.3 +1979,Green Chick Chop,Saipan,"Cafe, Pizza, Desserts, Fast Food",74,2.9 +1980,Mughlai Treat,Greenville,"BBQ, Cafe, American, Desserts",85,3.2 +1981,Munch,Staunton,"Chinese, Pizza, Fast Food",62,3.1 +1982,New Spice World,Colorado Springs,"Desserts, French, Bakery, Fast Food, Cafe",43,2.9 +1983,Pure Bliss,Orlando,"BBQ, Bakery, Pizza, Desserts",84,3.0 +1984,Puskar Raj Momos & Chinese Corner,Butte,"Pizza, Mexican, BBQ, Fast Food, Cafe",73,3.0 +1985,Sai-Yo!,Newport News,"Tea, Mediterranean, Desserts",83,3.1 +1986,Shanghai Cafe,Belleville,"Tea, Pizza, Bakery, Fast Food, Chinese",96,2.6 +1987,The Blaze,Baton Rouge,"Tea, Indian, American, BBQ",73,2.9 +1988,Ullu Delivers,Ithaca,"French, Bakery, Desserts",16,2.8 +1989,Yomo-Your Only Momo Outlet,Milwaukee,"Cafe, Seafood, Mediterranean, Fast Food",62,3.0 +1990,Dimsum Democracy,Laredo,"French, Indian, Cafe, Fast Food",25,3.6 +1991,Midnight Hunger,Long Beach,"Tea, French, Indian, Desserts",38,3.8 +1992,The Punjab Kitchen,Martha's Vineyard,"Tea, French, Bakery, Italian",80,3.9 +1993,Too Maach,Tallahassee,"Chinese, Desserts, Seafood",83,3.5 +1994,Apni Rasoi,Boston,"Bakery, BBQ, Fast Food, American, Mediterranean, Seafood",28,0.0 +1995,Bala Ji Sweets Corner,Newport News,"Cafe, Pizza",62,0.0 +1996,Barista,Stockton,"Cafe, Mexican, Bakery, Seafood",77,0.0 +1997,Biryani Express,Abilene,"Tea, Pizza, French, Bakery, Fast Food",11,0.0 +1998,Cafe #22hours,Binghamton,"Seafood, Mexican, Bakery, Fast Food",76,0.0 +1999,Cake Innovation,Everett,"Tea, BBQ, Mediterranean",80,0.0 +2000,Chawla's宊,Des Moines,"Tea, Bakery, Mediterranean",59,0.0 +2001,China Gathering,Boise,"Fast Food, Cafe, Seafood",92,0.0 +2002,Chinese Hot Express,New Orleans,"Pizza, Seafood",94,0.0 +2003,Cookingo,Dayton,"Fast Food, French, BBQ, Seafood",78,0.0 +2004,Firefly,Charlottesville,"Pizza, Bakery",30,0.0 +2005,Foodie Xpress,Lihue,"Tea, Mexican, BBQ, Fast Food, Cafe",32,0.0 +2006,Go! Dimsum,San Juan,"French, Bakery, Fast Food",54,0.0 +2007,Kanha North & South Indian Veg.,Amarillo,"Tea, Cafe, BBQ, Fast Food",34,0.0 +2008,Kings Kulfi,Dillingham,"French, Bakery, Seafood",57,0.0 +2009,Lassi Cafe,Hartford,"Desserts, BBQ, Fast Food, Cafe, American",33,0.0 +2010,Marwadi Khana,Charlotte Amalie,"French, Pizza, Seafood",59,0.0 +2011,Nukkadwala,Denver,"Desserts, Tea, French, BBQ, Seafood",31,0.0 +2012,Ravi Fast Food,Binghamton,"Desserts, Pizza, Italian, Bakery, Seafood",63,0.0 +2013,Shivalik Tiffin Corner,Gainesville,"Desserts, Cafe, BBQ, Fast Food, Chinese",59,0.0 +2014,Street Food By Punjab Grills,Little Rock,"Fast Food, Desserts, Italian",45,0.0 +2015,Sweet Ginger Bakery,Medford,"BBQ, Desserts",84,0.0 +2016,The Rolling Stove,Fort Dodge,"Desserts, Pizza, BBQ, Chinese, Seafood",77,0.0 +2017,Vijeta's Happy Kitchen,San Jose,"Pizza, Desserts",68,0.0 +2018,Chawla's宊,Houston,"Chinese, Desserts, Bakery, Cafe, Mediterranean",26,2.2 +2019,Chy - Na Express,Charleston,"Pizza, BBQ, Fast Food",23,2.2 +2020,Kwality,Fresno,"Chinese, BBQ, Seafood",42,2.4 +2021,Brother's Snacks and Shakes,Evansville,"Cafe, BBQ, Mediterranean, Italian",13,3.2 +2022,Ginger Garlic,Jacksonville,"Desserts, Tea, Pizza, French, Fast Food, Chinese",28,2.8 +2023,Arabicaa 9,Devils Lake,"Tea, BBQ, Seafood",34,3.3 +2024,Burger Xpress,Monterey,"Tea, Cafe, American, Seafood",40,3.4 +2025,Dilli Light,Niagara Falls,"BBQ, Mediterranean, Desserts",71,2.6 +2026,KB's Kulfi & Icecream,Burbank,"Tea, Pizza, Bakery, Fast Food, Indian",10,2.8 +2027,MyLoveBiryani.Com,Mosinee,"Tea, Bakery, Desserts",17,3.2 +2028,Tandoori Adda,Saginaw,"Tea, BBQ, Cafe, Indian, Mediterranean, Seafood",46,3.2 +2029,Tiffins 4 U,Christiansted,"Bakery, Seafood",67,3.1 +2030,Cafe Cup of Life,Nome,"Fast Food, Mexican, Desserts, Italian",85,3.7 +2031,DCK- Dana Choga's Kitchen,Chattanooga,"Cafe, Pizza, Mediterranean",67,3.5 +2032,Kishu Di Hatti Sweets,Waco,"Pizza, Bakery, Mediterranean",15,3.6 +2033,KC Bakers,Columbus,"Desserts, Tea, Pizza, Italian, Bakery",31,3.2 +2034,Sham Sweets,Longview,"Cafe, Bakery, BBQ, Fast Food, Chinese",69,2.8 +2035,Bake Cuddle,Savannah,"French, Bakery, BBQ, Fast Food, Mediterranean",22,0.0 +2036,Gopala,Columbus,"Bakery, American, BBQ",86,3.4 +2037,Halki Aanch,Harrisburg,"French, American, Desserts, Fast Food",15,3.3 +2038,New Sukh Sagar,New Orleans,"Tea, Bakery, BBQ, American, Seafood",31,3.2 +2039,Sweets Corner,Albuquerque,"Tea, Pizza, Bakery, Cafe, Mediterranean",77,2.7 +2040,Minus5degree,Elmira,"Tea, Indian, Desserts",64,3.6 +2041,Qureshi's Kabab Corner,State College,"Desserts, Tea, Italian, BBQ, Mediterranean",60,4.0 +2042,Delicious Food Corner,Spokane,"Chinese, Desserts, Tea, French, Fast Food, Cafe",61,0.0 +2043,Firangi Bake,Jackson,"Tea, French, Bakery, BBQ, American",54,0.0 +2044,Kettle & Kegs,Newark,"Fast Food, Seafood, Mediterranean, Italian",67,0.0 +2045,The Daily,Evansville,"Cafe, Mexican, BBQ, Mediterranean",95,0.0 +2046,Burger Singh,Alamosa,"Desserts, Tea, BBQ, Chinese, Seafood",95,3.4 +2047,Captain Bill$ Deliverz,St. Cloud,"Tea, Pizza",67,2.5 +2048,Chaayos,Chattanooga,"Desserts, Cafe, BBQ, Chinese, Seafood",54,3.3 +2049,Chai Point,Manhattan,"Tea, Seafood",46,3.4 +2050,Cyber Adda 24,Houston,"Chinese, Pizza, Bakery",73,3.3 +2051,Desi Thaat,Nantucket,"Cafe, Bakery",15,3.2 +2052,Doughlicious,Milwaukee,"Tea, Cafe, Mediterranean, Italian",59,3.3 +2053,Dunkin' Donuts,Charleston,"Tea, Cafe, Mexican, Bakery",20,3.4 +2054,Gulshan Dhaba,San Juan,"Desserts, French, BBQ, Bakery, Fast Food",40,3.4 +2055,Karari Kurry,Augusta,"Bakery, Indian, Cafe, Fast Food",29,3.4 +2056,Moti Mahal Delux,St. Louis,"Bakery, BBQ",73,3.2 +2057,Needs Gourmet,San Angelo,"Bakery, American, Desserts, Italian",83,3.1 +2058,Rao's Meeting Point,Hartford,"Tea, Pizza, Fast Food, American, Mediterranean, Seafood",29,3.4 +2059,Sadabahar Hotel,San Antonio,"Tea, Bakery, Italian",80,2.9 +2060,Sagar Ratna,Saginaw,"French, Pizza, Seafood, Italian",90,2.5 +2061,Shri Ram Restaurant,Atlanta,"Tea, Mexican, Indian, Fast Food",55,3.1 +2062,Shri Ram Restaurant,Latrobe,"Desserts, Pizza, BBQ, Cafe, Mediterranean",47,2.6 +2063,Subway,Juneau,"Seafood, Pizza, Cafe, Fast Food",99,2.9 +2064,Subway,Shreveport,"Tea, Mexican, Bakery",68,2.9 +2065,Sugarcraft Patisserie,Richmond,"French, Desserts, Fast Food",38,3.3 +2066,Tea Halt,Victoria,"Tea, Desserts, Seafood",15,2.8 +2067,The Golden Dragon,Augusta,"Desserts, Pizza, Fast Food, Indian, Mediterranean, Seafood",82,2.6 +2068,The Spice Room,Jacksonville,"Cafe, American, BBQ",68,3.4 +2069,The Tongue Twister,Charlottesville,"Pizza, French, Bakery, Cafe, Seafood",81,3.4 +2070,56 Fresca,Charlottesville,"Pizza, French, BBQ, Cafe, Indian, Seafood",95,3.7 +2071,BreakfastBay,St. Cloud,"Tea, Cafe, Pizza, Seafood",67,3.5 +2072,Cafe Maple Street,Charlotte,"Fast Food, Tea, Italian",91,3.5 +2073,Fat Lulu's,Appleton,"Tea, Cafe, Seafood, Fast Food",23,3.7 +2074,Fat Monk,Cheyenne,"Desserts, Italian, Fast Food, Cafe, Mediterranean, Seafood",17,3.9 +2075,First Eat,Bangor,"Desserts, Tea, French, Mexican, Cafe",96,3.6 +2076,Flying Tuk Tuk,Wenatchee,"Tea, Bakery",76,3.9 +2077,FreshMenu,Butte,"Fast Food, Pizza, BBQ, Seafood",21,3.9 +2078,Little Skillet,Birmingham,"Pizza, Italian, French, Bakery, Fast Food, Cafe",47,3.5 +2079,PKay,New Orleans,"Tea, Bakery, Fast Food",22,3.7 +2080,Shama Chicken Corner,Buffalo,"Tea, Chinese, Desserts",25,3.6 +2081,Starbucks,Raleigh,"Desserts, Tea, Pizza, Italian, Fast Food, Chinese",82,3.7 +2082,Tandoori Nation,Gainesville,"Tea, Bakery, Desserts, Fast Food",16,3.5 +2083,Truffle Tangles,Juneau,"Pizza, Indian, Seafood",89,3.5 +2084,Domino's Pizza,Great Falls,"Tea, Desserts, Fast Food",96,2.3 +2085,KB's Icecream & Kulfis,Great Falls,"Desserts, Italian, Bakery, Fast Food, Mediterranean, Seafood",42,2.3 +2086,Wah Ji Wah,Lexington,"Pizza, Bakery, Mediterranean",100,2.4 +2087,The Brewhouse,Boise,"Cafe, Pizza, American, Fast Food",59,4.1 +2088,Boozer's,Eugene,"Bakery, Mediterranean, BBQ, Seafood",32,0.0 +2089,Cheffy's,Evansville,"Cafe, Bakery, Seafood",34,0.0 +2090,Cake Point,Gainesville,"Desserts, Tea, Bakery, BBQ, Indian",43,2.8 +2091,Shyam Sweets,Newport News,"Tea, French, Bakery, Pizza",21,2.8 +2092,Uma Foodies' Hut,Dallas,"French, Bakery, Seafood",49,3.1 +2093,AK Your Food,San Francisco,"Bakery, Pizza",100,0.0 +2094,Freshnfit.in,Bristol,"Fast Food, Desserts, Italian",91,0.0 +2095,Shri Ram Bhojnalaya,Santa Ana,"Cafe, Desserts, Fast Food",68,0.0 +2096,Special O-cake-sions,Adak Island,"Chinese, Mexican, Cafe, Seafood",55,0.0 +2097,Tasteful Biryani,Brownsville,"Tea, Cafe",48,0.0 +2098,Bikanervala,Ithaca,"Tea, Fast Food",50,3.4 +2099,Indian Grill Room,Tallahassee,"Desserts, Tea, Mexican, Bakery, Cafe, Mediterranean",45,4.5 +2100,Oriental Fusion,Fayetteville,"Bakery, BBQ, Seafood",56,3.3 +2101,Purani Dilli's Al Karam Kebab House,Minneapolis,"Pizza, Desserts, Italian",97,3.4 +2102,Rollmaal,Harlingen,"Cafe, BBQ, Desserts, Fast Food",55,3.4 +2103,Speedy Chow,Nome,"Fast Food, Mediterranean, Desserts, Italian",21,3.2 +2104,Arabian Nites,Sacramento,"Bakery, Fast Food",87,3.8 +2105,Giani's,Kalamazoo,"Tea, Chinese, Bakery, Pizza",100,3.7 +2106,Giani,Ketchikan,"Cafe, Pizza, Desserts, Fast Food",48,3.6 +2107,Juste Miam,Valparaiso,"Tea, Pizza, BBQ, Fast Food, American",68,3.9 +2108,Patiala Shahi,Midland,"Cafe, Bakery, BBQ, Desserts",60,3.5 +2109,The Kathis,Grand Forks,"Fast Food, Indian, Desserts, Italian",53,3.8 +2110,Wai Yu Mun Ching,Orlando,"Tea, Pizza, Desserts",51,3.6 +2111,Bernardo's,Newark,"Desserts, Pizza, BBQ, American, Mediterranean",84,4.0 +2112,Biryani Art,Monterey,"Cafe, Mexican, Pizza, Desserts",50,4.1 +2113,Nosh,Worcester,"Pizza, Indian, Seafood",29,4.1 +2114,Tandoor Express,Akron,"Desserts, Mexican, Bakery, BBQ",100,4.2 +2115,Tandoori KnockOuts,Rochester,"Bakery, BBQ, Fast Food, Mediterranean, Seafood",63,4.2 +2116,Udaipuri,Branson,"Bakery, BBQ, Fast Food, American, Seafood",93,4.0 +2117,Begonia,El Paso,"Cafe, American, Mediterranean, BBQ",98,3.0 +2118,Cakes & Muffins,Las Vegas,"Cafe, Mexican, Bakery",99,3.3 +2119,Halki Aanch,Norfolk,"Tea, BBQ, Fast Food, American, Seafood",76,2.7 +2120,Hungry Gopal,Ogden,"Desserts, Tea, Cafe, Indian, Mediterranean",19,3.2 +2121,Kuzo,Hyannis,"Desserts, Tea, Pizza, Mexican, Fast Food",89,3.2 +2122,Lovecrumbs Bakery,Moline,"Tea, Pizza, American, Desserts",24,3.4 +2123,Organic Express,Presque Isle,"Chinese, Pizza, Desserts, Fast Food",90,3.4 +2124,Pizza Hut,Chicago,"Pizza, French, Bakery, BBQ, Fast Food, American",99,2.8 +2125,Roti Te Boti,Baton Rouge,"Cafe, Pizza, Fast Food",78,2.8 +2126,Behrouz Biryani,Great Falls,"Desserts, Seafood",24,3.7 +2127,Caf愆 Burger BC,Seattle,"Tea, French, Bakery, BBQ, Seafood",43,3.7 +2128,Dilli Darbar,Nome,"Bakery, Fast Food",85,3.7 +2129,Fu.D,Bend,"Pizza, BBQ, Fast Food, Chinese, Indian, Seafood",79,3.7 +2130,Jarfull,Aguadilla,"Pizza, Bakery, Fast Food, Cafe, Mediterranean",77,3.7 +2131,Mochamania,Lynchburg,"Tea, Chinese, Fast Food, Seafood",87,3.7 +2132,Mukhtalif Biryanis,Colorado Springs,"Tea, Mexican, Fast Food",95,3.7 +2133,Mummy's Kitchen,Moline,"Desserts, Indian, Mediterranean, BBQ",54,3.5 +2134,Ovenstory Pizza,Pago Pago,"Pizza, Mediterranean, Seafood",80,3.7 +2135,The Godinho's,Seattle,"Tea, Pizza, American, BBQ, Cafe, Indian",96,3.8 +2136,Kujay's Spoon,Fort Myers,"Pizza, Mexican, Bakery, Cafe, Mediterranean, Seafood",88,0.0 +2137,Lily Food's,Fairbanks,"Desserts, Pizza, BBQ, Indian, Seafood",14,0.0 +2138,Mutton Mewar,Corpus Christi,"Bakery, Pizza, Desserts, Seafood",85,0.0 +2139,Tasty But Healthy,Traverse City,"Fast Food, Cafe, Bakery, Seafood",77,0.0 +2140,Teddy Choco Studio,Seattle,"Mexican, Bakery, Desserts",70,0.0 +2141,Chin Chow,Colorado Springs,"Desserts, Fast Food",15,2.4 +2142,Cafe Sante,Mosinee,"Pizza, BBQ, Cafe, American, Mediterranean, Seafood",49,4.3 +2143,Mughal Dine-Esty,Fairbanks,"Desserts, BBQ, Fast Food, American, Seafood",19,4.0 +2144,Nuterro,Juneau,"Cafe, Pizza",84,4.0 +2145,Sandburg Shakes,Lawton,"Desserts, Italian, Fast Food, American, Seafood",43,4.0 +2146,The Millionaire Express,Appleton,"Chinese, French, BBQ, Fast Food",56,4.0 +2147,Ammu's South Indian Restaurant,Eugene,"Cafe, Indian, Desserts",91,3.1 +2148,Elma's Delivers,Helena,"Tea, Pizza, BBQ, Indian, Seafood",42,3.1 +2149,Faasos,Watertown,"Fast Food, BBQ, Italian",79,3.2 +2150,Foodrath,Atlantic City,"Tea, Seafood, BBQ, Fast Food",88,3.0 +2151,Hyderabad House,Newport News,"Cafe, Pizza, Italian",36,2.7 +2152,Kake Da Hotel,Palm Springs,"Tea, Pizza, Fast Food, Indian, Seafood",83,3.1 +2153,Mitraao,Kansas City,"Bakery, Desserts",30,3.4 +2154,PomoDoro Bistro,Newport News,"Seafood, Pizza, Mediterranean, Fast Food",16,3.4 +2155,Shri Shyam Ji Ke Mashhoor Chhole Bhature,La Crosse,"Desserts, Tea, Cafe, French, Fast Food, Chinese",30,3.3 +2156,Spice Aangan Express,Latrobe,"Pizza, Bakery, Indian, Mediterranean, Seafood",36,3.0 +2157,Subway,Midland,"Cafe, BBQ, Seafood",34,3.3 +2158,Swaad Ka Khazana,Worcester,"Tea, Chinese, Cafe, Desserts",39,2.6 +2159,The Toddy Shop,Nashville,"Desserts, Fast Food",92,3.4 +2160,Truffles,Chattanooga,"Cafe, Bakery, BBQ, Fast Food, Chinese, American",53,3.2 +2161,Cafe Bonkerz,Rock Springs,"Bakery, Mediterranean, Fast Food",49,3.6 +2162,Wrapchick,Pocatello,"Bakery, Mediterranean, Desserts, Seafood",78,3.9 +2163,WoW - Vada Pav & More,Gulfport,"Desserts, Cafe, French, Fast Food, Chinese, Seafood",29,2.2 +2164,Me Kong Bowl,Cleveland,"Cafe, BBQ, Seafood",19,4.0 +2165,Palmyra - The Bristol Hotel,Hagerstown,"Tea, Bakery, Fast Food, Mediterranean, Seafood",82,3.3 +2166,Shanghai Bar & Lounge - The Bristol Hotel,Grand Junction,"Cafe, Pizza",31,3.0 +2167,Zaffran - The Bristol Hotel,Alpena,"Pizza, Desserts, Seafood",33,3.2 +2168,Zaffran - The Claremont,Devils Lake,"Cafe, Mexican, BBQ, Pizza",100,3.0 +2169,Clove - The Galgotias,Yuma,"Desserts, Tea, French, Cafe, American",45,2.7 +2170,Green Leaf,Cleveland,"Desserts, Tea, Cafe, BBQ, Chinese",73,3.0 +2171,Tokyo,Monterey,"Cafe, Bakery, Chinese, American, Seafood",65,3.0 +2172,Cigar Lounge - The Oberoi,Albuquerque,"French, Bakery, Cafe, Fast Food",69,3.2 +2173,Melange - The Pllazio Hotel,Saipan,"Pizza, Indian, BBQ",100,3.6 +2174,Qureshi's Kabab Corner,Kotzebue,"Desserts, Pizza, Bakery, Fast Food, Indian, Mediterranean",70,3.3 +2175,EEST - The Westin Gurgaon,Bismarck,"Tea, Bakery, BBQ, Fast Food, Chinese",97,3.9 +2176,Prego - The Westin Gurgaon,Corpus Christi,"Desserts, American, BBQ, Seafood",57,3.8 +2177,Seasonal Tastes - The Westin Gurgaon,Hyannis,"Bakery, BBQ",99,3.9 +2178,Xiao Chi - The Westin Sohna Resort & Spa,Dodge City,"Cafe, BBQ, Fast Food",69,3.4 +2179,The Living Room - The Westin Sohna Resort & Spa,Charleston,"Desserts, Cafe, Pizza, Fast Food, Chinese",26,3.7 +2180,The Bar - Trident Gurgaon,Moline,"Pizza, French, BBQ, Fast Food, Indian",48,3.3 +2181,Konomi - Trident Gurgaon,Aguadilla,"French, BBQ, Cafe",62,3.5 +2182,L'Opera,Miami,"Desserts, Seafood",28,3.7 +2183,Town Hall,Shreveport,"Seafood, Pizza, American, Italian",75,3.5 +2184,Whisky Samba,Dillingham,"Tea, Pizza, BBQ, Fast Food, Chinese",41,3.8 +2185,Chokola,Pasco,"Tea, Pizza, Bakery, American, Seafood",96,3.1 +2186,Citrus Cafe - Lemon Tree Hotel,Newport News,"Bakery, Desserts, Seafood",95,2.7 +2187,Green Hut,Santa Barbara,"Seafood, Mediterranean, Desserts, Italian",64,2.8 +2188,My Plate,Staunton,"Desserts, Tea, Pizza, Chinese, American, Seafood",28,3.1 +2189,PiccoLicko,Albany,"Cafe, Pizza, BBQ, Seafood",22,3.3 +2190,Pind Balluchi,Grand Junction,"Fast Food, Chinese, Seafood",17,2.7 +2191,Raj Xpresso,Dodge City,"Pizza, American, Desserts",29,2.9 +2192,Riders Hub,Melbourne,"Tea, BBQ, Fast Food",30,3.1 +2193,Shivani Catering Services,Orlando,"Tea, Cafe, Indian, Seafood",75,3.1 +2194,The Diet Kitchen,Miami,"Bakery, BBQ, Indian, Mediterranean, Seafood",85,3.3 +2195,The Gr8 Taste of India,Nome,"Pizza, Fast Food",69,3.0 +2196,World Art Cafe,Eau Claire,"Chinese, BBQ, Seafood",56,3.3 +2197,XLNC Bakers,Hilton Head,"Tea, Bakery, Pizza, Desserts",56,2.9 +2198,Adventure Food,Santa Rosa,"Pizza, BBQ, Fast Food, Cafe, American",25,0.0 +2199,Baba Da Dhaba,Lewiston,"Tea, Pizza, French, BBQ, Chinese",89,0.0 +2200,Bandhani Fast Food,Hancock,"Tea, Cafe, Desserts",54,0.0 +2201,Bhai Ji Dhaba,Waterloo,"Mexican, Bakery, Desserts",15,0.0 +2202,Bikaner Sweets,Gustavus,"Tea, Desserts, Fast Food",18,0.0 +2203,Cafe Coffee Day,Moline,"Pizza, French, Fast Food, Cafe, Indian, Seafood",89,0.0 +2204,Cake 24x7,Greenville,"Mexican, Bakery, BBQ, Fast Food, Cafe",43,0.0 +2205,Chaayos,Binghamton,"Desserts, French, BBQ, Cafe, Mediterranean, Seafood",28,0.0 +2206,Chauhan Hotel,Jamestown,"Desserts, Mexican, BBQ, Bakery, Cafe",13,0.0 +2207,Costa Coffee,Las Vegas,"Tea, Chinese, American, Seafood",84,0.0 +2208,Dheeraj Vaishno Dhaba,Plattsburgh,"Bakery, Indian, Cafe, Seafood",65,0.0 +2209,Domino's Pizza,Greer,"Tea, Desserts",12,0.0 +2210,Food Ka Adda,Syracuse,"Tea, Indian, American, Fast Food",78,0.0 +2211,iKitchen,Tucson,"Seafood, Pizza, Italian",69,0.0 +2212,Knights Kitchen,Des Moines,"Tea, Cafe, Indian",29,0.0 +2213,Ku-Kukdu-Ku,Gustavus,"Desserts, Cafe, Mexican, Chinese, Seafood",54,0.0 +2214,Mogambo Kitchen,Portsmouth,"Desserts, Pizza, Italian, Fast Food, Seafood",85,0.0 +2215,Noore-e-Seva,Killeen,"Desserts, Tea, BBQ, Cafe, Mediterranean",12,0.0 +2216,Premier Bite,Pellston,"Tea, Bakery, Seafood",53,0.0 +2217,Renu Sweets & Restaurant,Harlingen,"Italian, BBQ, Cafe, Indian, Seafood",10,0.0 +2218,Street Foods by Punjab Grill,Alamosa,"Pizza, BBQ, Fast Food, Chinese, Mediterranean",55,0.0 +2219,Tpot,Charlottesville,"Cafe, Mexican, Bakery, BBQ",35,0.0 +2220,Uttrakhand Bohra Bhojnalaya & Fast Food,Paducah,"Desserts, French, Fast Food, Cafe, Mediterranean, Seafood",29,0.0 +2221,Uttrakhand Dhaba,Atlantic City,"Tea, Chinese, Pizza, Desserts",29,0.0 +2222,Tea Halt,Laredo,"Mexican, Mediterranean, Desserts, Fast Food",54,3.1 +2223,Dunkin' Donuts,Hibbing,"Tea, French, Bakery, Cafe",55,3.5 +2224,Indian Bistro Company,Aberdeen,"Tea, Chinese, Bakery",16,3.7 +2225,Department of Food and Social Affair,International Falls,"Desserts, Italian, Bakery, Fast Food, American",21,0.0 +2226,Tpot,Burbank,"Pizza, BBQ",34,0.0 +2227,Anaaj,Tulsa,"Tea, Cafe, Bakery, Chinese, Seafood",89,2.9 +2228,Au Bon Pain,Daytona Beach,"Tea, Cafe, Pizza, Seafood",85,2.8 +2229,Cafe Coffee Day,Bloomington,"Tea, French, Mexican, Cafe, Seafood",29,3.1 +2230,Cafe Friends,Santa Rosa,"Tea, Pizza, French, Bakery, Seafood",86,3.2 +2231,Chinese Bistro,Bend,"Desserts, Pizza, Italian, Bakery, Cafe, American",92,2.9 +2232,Dunkin' Donuts,Honolulu,"Pizza, Desserts",97,3.4 +2233,Madras Coffee House,Dothan,"Seafood, Pizza, Fast Food",37,3.0 +2234,McDonald's,Deadhorse,"Desserts, Pizza, Bakery, Chinese, Indian",40,3.3 +2235,Nukkadwala,Newburgh,"Bakery, Desserts, Seafood",85,3.2 +2236,Salad Chef,Worcester,"BBQ, Fast Food",59,3.2 +2237,Subway,Abilene,"Fast Food, Tea, Bakery, Italian",57,3.3 +2238,Tea Halt,Deadhorse,"Pizza, French, Bakery, Fast Food, Seafood",52,2.7 +2239,The Kachori Co.,Redding,"Tea, Mediterranean, Desserts",65,2.5 +2240,Urban Dhaba,Birmingham,"Desserts, Italian, Bakery, Fast Food, Indian",25,3.2 +2241,A Piece of Paris,New Bern,"Desserts, Pizza, BBQ, Indian, Seafood",58,3.9 +2242,Chaayos,Grand Island,"Tea, Cafe, BBQ, Fast Food",62,3.8 +2243,Doughlicious,Phoenix,"French, Pizza, BBQ",41,3.6 +2244,Eggers Madhouse,Iron Mountain,"Cafe, American, BBQ, Italian",82,3.7 +2245,Live Wok,Everett,"Tea, Seafood, Pizza, Fast Food",22,3.6 +2246,Orange Chopsticks,Hilo,"Bakery, Pizza",49,3.5 +2247,Pizzoccheri,Del Rio,"Cafe, Seafood, Mediterranean, Italian",77,3.6 +2248,Creamy Innovation,Santa Fe,"Desserts, Pizza, Fast Food, Cafe, American, Mediterranean",75,0.0 +2249,Dosa Republic,Juneau,"Cafe, Pizza, American, Indian",73,0.0 +2250,Giani's,Hancock,"Chinese, Mexican, Bakery, Fast Food",22,0.0 +2251,Chai Point,Tucson,"Tea, Bakery, Mexican, American",62,2.4 +2252,Latitude - Vivanta By Taj,Greer,"Tea, Cafe, Bakery, Desserts",57,3.8 +2253,Thai Pavilion - Vivanta By Taj,Watertown,"Desserts, Pizza, Italian, Bakery, BBQ",33,4.0 +2254,3H Kitchen,Harlingen,"Tea, Cafe, Desserts",71,2.9 +2255,Manish Sweets & Bakers,Asheville,"Chinese, Pizza, Cafe, Desserts",97,2.8 +2256,Oasis Kitchen,Fayetteville,"Chinese, Pizza, Desserts",89,2.9 +2257,Ramchandra Chinese Food,Lewisburg,"Tea, Italian, Bakery, Fast Food, Cafe, Mediterranean",64,2.7 +2258,Sona Chinese,Richmond,"Cafe, Pizza",79,2.8 +2259,The Pastry Hut,Jacksonville,"Tea, Pizza, Italian, Bakery, Cafe",82,2.9 +2260,Aggarwal Sweets & Restaurant,Peoria,"Seafood, Bakery, Fast Food",17,0.0 +2261,Bhoomika,Cody,"Cafe, Bakery, BBQ",99,2.9 +2262,FoodZilla,Ontario,"French, Pizza, Indian, Desserts",65,3.3 +2263,Goli Vada Pav No. 1,Seattle,"Tea, Bakery, Seafood",31,3.4 +2264,Indo Chinese,Bozeman,"Italian, BBQ, Bakery, Fast Food, Chinese, Seafood",66,3.2 +2265,Kathi Junction,Jacksonville,"Desserts, Pizza, BBQ, Mediterranean, Seafood",21,3.0 +2266,Romi da Dhaba,Belleville,"Desserts, BBQ, Fast Food, Cafe, Indian",24,3.1 +2267,Shamji Snacks,Sioux Falls,"Pizza, Indian, BBQ",38,2.7 +2268,The Lunch Break,Melbourne,"Cafe, Bakery, BBQ, Fast Food",40,2.9 +2269,Veg O Non,Orlando,"BBQ, Mexican, Pizza, Desserts",45,3.1 +2270,Alwar Sweets,Corpus Christi,"Tea, Cafe, BBQ, Bakery, Chinese, Mediterranean",12,3.5 +2271,Bakers Oven,Tucson,"Bakery, American, Desserts",71,3.6 +2272,Burgzz Bee,Rapid City,"Cafe, Mexican, BBQ, Fast Food",32,3.6 +2273,Chinese Corner,Santa Fe,"Desserts, Tea, French, Bakery, BBQ",95,3.6 +2274,Iroha,Beaumont,"Tea, Mexican, Mediterranean, Seafood",75,3.7 +2275,Chaudhary Burfi Wala,White Plains,"French, Pizza, Desserts, Fast Food",19,0.0 +2276,Curry 'n' Phulka,Sioux Falls,"Fast Food, Seafood, Desserts, Italian",73,2.4 +2277,Wah Ji Wah,Johnstown,"Tea, French, American, Seafood",35,2.2 +2278,Woods Spice,Denver,"Tea, Cafe, Mexican, Desserts",69,3.2 +2279,Mocha,Tucson,"Cafe, Fast Food",53,4.6 +2280,Terra Mayaa Restaurant and Lounge,Providence,"Cafe, Desserts, Italian",80,3.9 +2281,The Basement Caf愆,Aguadilla,"BBQ, Seafood",47,4.7 +2282,Strawberry Fields,Kalispell,"BBQ, Seafood",22,4.1 +2283,Brooklyn Blues,Hancock,"Cafe, Desserts, Fast Food",64,4.2 +2284,Confucius,Greer,"Desserts, BBQ, Fast Food, American, Seafood",17,4.1 +2285,The Woking Mama,Toledo,"Pizza, French, BBQ, Fast Food, Indian, Seafood",62,4.4 +2286,Underdoggs Sports Bar & Grill,Boise,"Tea, Bakery, Pizza, Seafood",93,4.4 +2287,The Zouq : Resto-Cafe,Presque Isle,"Tea, Fast Food, American, Seafood",16,4.1 +2288,BrewBakes,Kahului,"Desserts, Tea, Mexican, Bakery, Cafe",44,4.0 +2289,Barbeque Nation,Madison,"Tea, Pizza, French, Bakery, Cafe",38,4.9 +2290,Yo! China,Mission,"Cafe, Mexican, BBQ",11,3.6 +2291,4 Seasons,Valdosta,"Tea, Bakery, Pizza",65,3.6 +2292,11th Avenue Cafe Bistro,Binghamton,"Tea, Cafe, Mexican, Seafood",44,4.1 +2293,Caf愆 Riverrun,Elmira,"Fast Food, Seafood, Italian",24,4.2 +2294,Fat Belly,Kahului,"Bakery, BBQ, Cafe, American, Seafood",54,4.1 +2295,The Corner Cafe,Vernal,"Cafe, BBQ, Italian",70,4.1 +2296,Chung Fa,Gulfport,"Cafe, Mediterranean, Seafood",27,4.3 +2297,Shanghai Salsa,Sun Valley,"Desserts, Tea, Bakery, BBQ, Chinese, Mediterranean",78,4.0 +2298,Three Guys,Raleigh,"Tea, Pizza, Bakery, BBQ, Mediterranean",31,4.3 +2299,Ziya,Fresno,"Fast Food, Seafood, Bakery, Italian",20,4.3 +2300,Exotica,Medford,"Pizza, BBQ, Seafood",25,4.3 +2301,AB's - Absolute Barbecues,Miami,"Tea, Cafe, Bakery, Fast Food, Chinese",39,4.9 +2302,Chili's,Austin,"Cafe, American, Seafood",48,4.7 +2303,The Fisherman's Wharf,Valparaiso,"Tea, Cafe",98,3.8 +2304,Chili's,Beaumont,"Tea, Cafe, BBQ, Italian",19,4.6 +2305,Pine & Dine,Wrangell,"Cafe, American, Desserts",75,4.0 +2306,Jonathan's Kitchen - Holiday Inn Express & Suites,Norfolk,"Tea, Seafood, BBQ, Fast Food",44,4.3 +2307,AB's - Absolute Barbecues,North Platte,"Pizza, Mexican, Bakery, BBQ, Fast Food",40,4.9 +2308,Con韄u,Provo,"BBQ, Desserts, Fast Food",74,4.8 +2309,Dock Forty Five,Green Bay,"Cafe, Pizza, Italian",92,4.2 +2310,Mocha Bar,Baltimore,"BBQ, Desserts, Italian",32,4.2 +2311,Olive Bistro,Plattsburgh,"Cafe, Pizza",88,4.4 +2312,Prost Brew Pub,Vernal,"Cafe, Pizza, BBQ, Seafood",70,4.1 +2313,United Kitchens of India,Yakima,"BBQ, Mediterranean, Fast Food",26,4.1 +2314,Heart Cup Coffee,Yuma,"French, Mexican, Pizza, Seafood",54,4.2 +2315,Churrolto,Helena,"Fast Food, American, BBQ, Seafood",12,4.7 +2316,The Grand Trunk Road,Abilene,"Tea, Pizza, Bakery, BBQ, Chinese, Mediterranean",80,3.9 +2317,Sahib潴籹 Barbeque by Ohri潴籹,Baton Rouge,"Chinese, Pizza, Bakery, BBQ",11,4.1 +2318,KYRO,Martha's Vineyard,"Seafood, Bakery, Fast Food",95,3.7 +2319,JAL - A Jungle Restaurant,Baltimore,"Mexican, Bakery, Fast Food, Cafe, Seafood",46,4.1 +2320,Oye24,Yakutat,"Desserts, Mexican, Bakery, BBQ, American",93,4.1 +2321,Hobnob Gourmet Caf愆bar,Saipan,"Mexican, BBQ, Cafe, Indian, Seafood",32,4.1 +2322,Mangosteen Cafe,Moab,"Tea, Cafe, Desserts",59,3.9 +2323,Mama Loca,Phoenix,"Desserts, Pizza, Italian, Bakery, Fast Food",27,4.2 +2324,Vidorra,Traverse City,"Tea, Fast Food",88,4.0 +2325,Cafe Palette,Bismarck,"Cafe, BBQ",95,3.8 +2326,Nafees Restaurant,Cheyenne,"Italian, Bakery, Fast Food, Cafe, Seafood",33,4.0 +2327,The Creative Kitchen - Radisson Blu Hotel,Elmira,"Mexican, Pizza, Seafood",68,3.8 +2328,Square - Sayaji Hotel,Harrisburg,"Cafe, Mexican, American, BBQ",99,4.3 +2329,Freito,Newburgh,"Pizza, Mexican, Fast Food, Mediterranean, Seafood",84,3.1 +2330,Cafe Terazza,Belleville,"BBQ, Pizza, Desserts, Fast Food",50,3.9 +2331,Cafe Yolo,Cedar Rapids,"Tea, BBQ, Desserts",12,3.8 +2332,Just My Bakes,St. Petersburg,"Pizza, BBQ, Desserts, Seafood",96,3.9 +2333,10 Downing Street,Fort Leonard Wood,"Desserts, Tea, Bakery, Cafe, Indian, Mediterranean",62,4.0 +2334,Cakesmith's Alley,Beaumont,"Tea, Mexican, BBQ, Fast Food, Mediterranean",61,4.3 +2335,The Yellow Chilli,Yakutat,"Tea, Italian, BBQ, Fast Food, Seafood",81,4.1 +2336,Waffle House,Latrobe,"Fast Food, Seafood, Bakery, Italian",82,4.3 +2337,Mocha,Helena,"Tea, Pizza, Italian, Cafe, American, Seafood",38,4.0 +2338,Tapri Central,West Palm Beach,"Bakery, Seafood",33,4.7 +2339,Blackout,Texarkana,"Tea, Desserts, Fast Food",68,3.9 +2340,Mamu's Infusion,Colorado Springs,"Tea, BBQ",42,4.0 +2341,Nibs Cafe,Worcester,"Bakery, Pizza, Desserts",63,4.4 +2342,On The House,Pasco,"Seafood, Desserts, Italian",36,4.4 +2343,WTF,Kalispell,"Tea, Bakery, American, Fast Food",88,4.0 +2344,Chokhi Dhani,Newburgh,"Tea, Chinese, Pizza, Desserts",68,4.3 +2345,Meraaki Kitchen,Brunswick,"Bakery, Fast Food",97,3.9 +2346,Taruveda Bistro,Great Falls,"Chinese, Pizza, BBQ, Seafood",27,4.2 +2347,The Forresta Kitchen & Bar,Sioux City,"BBQ, Mediterranean, Desserts, Seafood",51,4.0 +2348,Monarch Restaurant - Holiday Inn Jaipur City Centre,Medford,"BBQ, Fast Food",83,4.5 +2349,Chao Chinese Bistro - Holiday Inn Jaipur City Centre,Bemidji,"Fast Food, Seafood",22,4.3 +2350,Zolocrust - Hotel Clarks Amer,Burbank,"Cafe, BBQ, Seafood, Fast Food",94,4.9 +2351,Mutual's,Latrobe,"Cafe, Pizza, Mediterranean, Fast Food",33,4.2 +2352,O2- The Plant Cafe,Harlingen,"Cafe, Pizza, Bakery, Desserts",48,4.1 +2353,Cafe LazyMojo,Alamosa,"Tea, Pizza, American, Fast Food",26,4.3 +2354,Replay,Panama City,"Tea, Cafe, Desserts, Seafood",62,4.3 +2355,Sky Beach,Pellston,"Bakery, Pizza, Seafood",37,2.6 +2356,Decked Up By Garden Cafe,Manhattan,"Pizza, Indian, BBQ",65,3.9 +2357,Calzone- Dine & Rooftop Lounge,Lexington,"Tea, Cafe, BBQ, Desserts",100,3.7 +2358,Hucka,Moline,"Desserts, Tea, Pizza, Fast Food, American",29,3.3 +2359,The Zaffran,Tampa,"Tea, Bakery, Fast Food, American, Seafood",35,3.3 +2360,Gyan Vaishnav,Chicago,"Bakery, Desserts",14,3.9 +2361,Liquid,Chattanooga,"Tea, Pizza, Bakery, Mediterranean, Seafood",15,4.0 +2362,Royal Dine - Hotel Royal Cliff,Arcata,"Pizza, Bakery, BBQ, Seafood",78,4.0 +2363,Urban Crave Express,Alamosa,"Desserts, French, Bakery, Fast Food, Cafe",38,3.5 +2364,Atmosphere Grill Cafe Sheesha,Everett,"Seafood, Cafe, Italian",84,3.6 +2365,Mr Brown,Des Moines,"BBQ, Fast Food",13,3.9 +2366,Dunkin Donuts,Gulfport,"Cafe, Pizza, Indian, Desserts",74,4.1 +2367,Little Chef,Ithaca,"Chinese, Pizza, BBQ",12,4.1 +2368,UrbanCrave,Savannah,"Tea, Cafe, Indian, BBQ",64,3.9 +2369,Chin Mi,Kotzebue,"Tea, French, Bakery, Seafood",33,3.9 +2370,Tadka,Hilton Head,"Pizza, Bakery, Desserts, Seafood",44,3.8 +2371,Dhuaan,Idaho Falls,"Tea, Pizza, Mexican, BBQ, Fast Food, American",97,4.3 +2372,Upper Crust,Eugene,"Tea, Pizza, Italian, Cafe, Seafood",79,3.4 +2373,Anaicha's Food Joint,Newark,"Desserts, Pizza, Mexican, Bakery, Seafood",43,3.6 +2374,Aromas,Indianapolis,"Bakery, Seafood",34,4.1 +2375,Waterside - The Landmark Hotel,Wrangell,"Desserts, Tea, Italian, Bakery, Cafe",93,3.9 +2376,Verandah,Laredo,"Desserts, Tea, Fast Food, Chinese, American",28,3.7 +2377,Barbeque Nation,Dothan,"Indian, BBQ, Fast Food",39,4.0 +2378,Nawras Seafood Restaurant,Santa Ana,"Tea, Bakery, Desserts",83,4.6 +2379,Ifthar,Marquette,"Bakery, American, Cafe, Desserts",67,3.8 +2380,Dhe Puttu,Ogdensburg,"Tea, BBQ, Seafood",55,4.4 +2381,Kashi Art Cafe,Lansing,"Tea, Pizza, BBQ, Bakery, Chinese",83,4.2 +2382,Grand Hotel Restaurant,Bishop,"Fast Food, Pizza, BBQ, Italian",10,4.2 +2383,Barbeque Nation,Brownsville,"French, BBQ, Fast Food",45,4.5 +2384,Chiyang,Medford,"Tea, BBQ, Seafood",10,3.7 +2385,Slice of Spice,Peoria,"Tea, Fast Food",85,4.0 +2386,Mustake Multicuisine Restaurant,Reno,"Tea, Bakery, Pizza, Mediterranean",91,3.7 +2387,Palaaram,Palm Springs,"Desserts, Pizza, Italian, BBQ, Cafe",63,3.7 +2388,Tonico Cafe,Bishop,"Desserts, Tea, American, Mediterranean, Seafood",75,4.0 +2389,Cafe 17,Miami,"Tea, BBQ, Bakery, Desserts",45,4.4 +2390,ChaiCofi,Manchester,"Desserts, Seafood",35,4.0 +2391,Bloomsbury's Boutique Cafe and Artisan Bakery,Redding,"Pizza, Indian, BBQ",59,4.2 +2392,Paragon,Alexandria,"Pizza, Bakery",50,4.3 +2393,Aangan - Downtown Multicuisine Restaurant,Cincinnati,"Tea, Indian, Desserts",21,4.2 +2394,Ali Baba & 41 Dishes,Knoxville,"Pizza, Desserts, Fast Food",70,3.5 +2395,Cocoa Tree,Grand Junction,"Tea, Chinese, Cafe, Fast Food",68,4.3 +2396,French Toast,Traverse City,"Pizza, Desserts",18,4.3 +2397,Thakkaaram,Fort Lauderdale,"Tea, Mexican, Fast Food",48,3.6 +2398,Asia Kitchen by Mainland China,Ogden,"Seafood, Mediterranean, Desserts, Fast Food",81,4.6 +2399,Hoppipola,Mission,"Desserts, Tea, Italian, Fast Food, Cafe, American",96,4.2 +2400,Spice Kraft,Moab,"Tea, Pizza, Desserts, Italian",94,4.8 +2401,Nawwarah,Buffalo,"Cafe, Seafood",34,3.9 +2402,6 Ballygunge Place,San Angelo,"Tea, Cafe, Bakery, Desserts",48,4.4 +2403,Mumbai Local,Redding,"Bakery, Pizza, BBQ, Desserts",78,4.2 +2404,Gabbar's Bar & Kitchen,West Yellowstone,"Seafood, Bakery, Fast Food",89,4.4 +2405,TGI Friday's,Pago Pago,"French, BBQ, Seafood",79,4.0 +2406,Santa's Fantasea,San Jose,"Cafe, Bakery, Pizza, BBQ",31,4.2 +2407,India Restaurant,Ithaca,"Tea, BBQ, Desserts",78,4.6 +2408,Flame & Grill,Pellston,"Bakery, BBQ",23,3.9 +2409,Barbeque Nation,Daytona Beach,"Tea, American, Fast Food, Indian, Seafood",40,4.9 +2410,Mocambo,Phoenix,"Tea, Chinese, Desserts, Fast Food",76,3.5 +2411,BarBQ,Juneau,"Tea, Pizza, BBQ, Fast Food, Mediterranean",25,4.2 +2412,Peter Cat,Iron Mountain,"French, Bakery, American, Desserts",56,4.3 +2413,The Irish House,Columbus,"Desserts, Tea, Pizza, Mexican, Fast Food, Mediterranean",65,4.4 +2414,Barbeque Nation,Sun Valley,"Tea, Bakery, BBQ, Desserts",22,4.9 +2415,Ocean Grill,Cincinnati,"Tea, Mexican, BBQ, Cafe, Mediterranean, Seafood",62,3.6 +2416,Sigree Global Grill,Amarillo,"Chinese, BBQ, Cafe, Desserts",35,4.1 +2417,What's Up,San Luis Obispo,"Desserts, Mexican, BBQ, Bakery, Cafe",86,4.0 +2418,Grandson of Tunday Kababi,Madison,"Fast Food, Bakery, American, Seafood",36,4.9 +2419,Frozen Factory,Presque Isle,"Mediterranean, Desserts, Fast Food",19,4.5 +2420,Mocha,Saipan,"Pizza, Bakery, BBQ, Fast Food",46,4.6 +2421,Chemistry Caf愆,Yakutat,"Bakery, Mediterranean, Fast Food",67,3.5 +2422,Homeys Cafe,Portsmouth,"Tea, French, Desserts",43,3.9 +2423,Percussion,Grand Forks,"Pizza, Italian, BBQ, Fast Food, Seafood",21,3.7 +2424,The Urban Terrace,Scottsbluff,"Italian, Bakery, BBQ, Mediterranean, Seafood",56,3.9 +2425,Free Spirit,San Jose,"Mexican, Bakery, BBQ, Fast Food, Seafood",17,4.3 +2426,Spice Caves,Elmira,"Desserts, Tea, Mexican, Bakery, Chinese",52,4.2 +2427,The Chocolate Heaven,State College,"Pizza, BBQ",45,4.1 +2428,The Pebbles Bistro,Omaha,"Fast Food, Mexican, Pizza, Seafood",13,4.1 +2429,Underdoggs Sports Bar & Grill,Colorado Springs,"Cafe, Mexican, Desserts",32,4.3 +2430,Vintage Machine,West Yellowstone,"Desserts, Tea, Italian, Bakery, Mediterranean",52,4.3 +2431,Bar Bar,Roanoke,"Chinese, Cafe, Seafood",30,4.0 +2432,Dastarkhwan,Johnstown,"Tea, Mexican, Pizza",100,4.4 +2433,The Cherry Tree Cafe,Mission,"Cafe, Bakery",70,4.1 +2434,Royal Sky,Presque Isle,"Desserts, Italian, Bakery, Fast Food, Indian",15,4.2 +2435,L 14 - Renaissance Lucknow Hotel,Victoria,"Chinese, BBQ, Desserts",23,4.2 +2436,Barbeque Nation,Bristol,"Desserts, Tea, Italian, Bakery, Fast Food, Indian",42,4.7 +2437,Colours by Royal Cafe - Royal Inn,Little Rock,"Bakery, Indian, Cafe, Fast Food",31,4.2 +2438,Cappuccino Blast,Oklahoma City,"Cafe, Bakery, American, Seafood",84,4.0 +2439,Basant Restaurant,Yuma,"Desserts, Pizza, Fast Food, Cafe, American",53,3.6 +2440,Hawai Adda,Newark,"Tea, Pizza, Desserts",17,3.5 +2441,Indian Summer,Elmira,"Mexican, Pizza, Desserts, Italian",29,4.1 +2442,Basant,Kansas City,"Fast Food, Pizza, BBQ, Seafood",98,3.9 +2443,Bistro 226,North Bend,"Tea, Cafe, Bakery, BBQ, Chinese",16,4.2 +2444,Mocha,St. Cloud,"American, Desserts, Fast Food",80,3.7 +2445,Pirates Of Grill,Lynchburg,"Tea, Pizza, American, Seafood",71,3.9 +2446,Bistro Flamme Bois,Detroit,"Chinese, Bakery, BBQ",100,4.1 +2447,Kitchen At 95 - Hyatt Regency,St. Petersburg,"Cafe, Desserts, Seafood",14,4.3 +2448,Domino's Pizza,Bakersfield,"Pizza, Mediterranean, Desserts",19,3.6 +2449,Nando's,Manchester,"Bakery, Indian, BBQ",56,3.8 +2450,Belfrance Luxury Chocolates,Dallas,"Desserts, Pizza, Fast Food, Cafe, American",96,4.4 +2451,Hot Breads,Eau Claire,"Tea, Mexican, Bakery, BBQ, Indian",91,4.2 +2452,The Yellow Chilli,Juneau,"Italian, Bakery, BBQ, Fast Food, Seafood",28,4.4 +2453,Spice Cube,Beaumont,"Cafe, Pizza, Bakery, Desserts",17,3.5 +2454,Barbeque Nation,Aguadilla,"BBQ, Mediterranean, Desserts, Fast Food",79,3.9 +2455,Nik Bakers,Concord,"Cafe, Seafood, Mediterranean, Fast Food",56,4.2 +2456,Aman Chicken,Latrobe,"Tea, Pizza, Desserts, Seafood",57,4.6 +2457,District 6,San Angelo,"Bakery, American, Cafe, BBQ",19,3.8 +2458,The BrewMaster - The Mix Fine Dine,Houston,"French, Indian, Cafe, Seafood",52,3.9 +2459,#45,Santa Maria,"Tea, Bakery, BBQ, Seafood",14,3.6 +2460,Crave Desserts & Bakes,Redding,"Cafe, Desserts, Seafood",98,3.9 +2461,Diesel Cafe,Midland,"French, Pizza, Cafe",37,3.8 +2462,Froth On Top,Muskegon,"Tea, Cafe, Italian, Fast Food, Chinese, Seafood",10,3.7 +2463,Hao Ming,Palm Springs,"Tea, Cafe, Desserts, Fast Food",29,3.5 +2464,Kobe Sizzlers,Jacksonville,"Pizza, Indian, Fast Food",93,3.7 +2465,Liquid Lounge,Duluth,"Cafe, Mediterranean, Seafood",50,3.8 +2466,Maharaja Restaurant,Charlotte Amalie,"French, BBQ, Fast Food, Cafe, Mediterranean",59,3.6 +2467,Giri Manja's,Green Bay,"French, Seafood, Cafe, Italian",67,4.2 +2468,Kabab Studio,Deadhorse,"Tea, French, Bakery, Seafood",46,3.5 +2469,Brio Cafe and Grill,Martha's Vineyard,"Pizza, French, Bakery, Cafe, Mediterranean",56,3.6 +2470,Gajalee Sea Food,Rockford,"Bakery, BBQ",49,3.9 +2471,Smoke N Oven,Fayetteville,"Desserts, Cafe, Pizza, Fast Food, Chinese",26,3.5 +2472,Village Restaurant,Phoenix,"Tea, Cafe, Desserts, Italian",35,3.7 +2473,Barbeque Nation,Peoria,"Desserts, Tea, Pizza, Italian, Indian, Seafood",64,3.7 +2474,Machali,Ontario,"Cafe, Bakery, Desserts, Fast Food",52,4.1 +2475,Punjab Da Pind,Grand Junction,"Desserts, Pizza, Bakery, Chinese, Mediterranean, Seafood",52,3.7 +2476,Sizzler's Ranch,Atlanta,"Tea, Cafe, Indian, Italian",36,3.8 +2477,Spindrift,Hartford,"Tea, French, Bakery, BBQ, Chinese",46,3.9 +2478,Sagar Ratna,Rochester,"Cafe, Bakery, Indian",88,3.7 +2479,The Shooters Cafe,Cheyenne,"Cafe, BBQ, Desserts, Fast Food",83,4.3 +2480,Joey's Pizza,Decatur,"Tea, Pizza, Bakery, Chinese, Seafood",69,4.0 +2481,Cafe Hydro,Moab,"Pizza, BBQ, Fast Food, American, Seafood",21,4.0 +2482,The American Joint,Santa Rosa,"Mexican, Desserts, Seafood",78,3.4 +2483,The Fusion Kitchen,Manchester,"Bakery, Pizza, Mediterranean, BBQ",39,4.7 +2484,145 Kala Ghoda,Mission,"Tea, Seafood, Mexican, Fast Food",83,4.2 +2485,Tea Villa Cafe,Dubuque,"Tea, Pizza, French, Bakery, BBQ",92,4.1 +2486,Grandmama's Cafe,Green Bay,"Desserts, American, BBQ, Fast Food, Cafe, Indian",20,3.8 +2487,Mumbai Vibe,Santa Ana,"Desserts, Tea, French, Mexican, Fast Food, Cafe",38,3.8 +2488,The Rolling Pin,Latrobe,"Bakery, Pizza, Fast Food",28,3.9 +2489,Farzi Cafe,Presque Isle,"Tea, Mexican, Bakery, Fast Food",83,4.3 +2490,SpiceKlub,Roswell,"Tea, Bakery",20,4.2 +2491,Tea Villa Cafe,Montgomery,"BBQ, Mediterranean, Desserts, Fast Food",51,3.9 +2492,Joey's Pizza,Salt Lake City,"Cafe, Desserts, American, BBQ",28,4.5 +2493,Stacks And Racks,Newport News,"Tea, Seafood, BBQ, Fast Food",65,4.6 +2494,The English Department Bar & Diner,Wrangell,"Tea, Pizza, BBQ, Indian, Seafood",62,3.9 +2495,Mirchi And Mime,Arcata,"Desserts, Tea, Mexican, BBQ, Cafe, American",35,4.9 +2496,38 Degree East,Sault Ste. Marie,"Desserts, Tea, French, Bakery, Seafood",48,3.8 +2497,R' ADDA,San Luis Obispo,"Desserts, Fast Food",19,4.0 +2498,Tea Villa Cafe,Green Bay,"Desserts, Italian, Bakery, BBQ, Fast Food",22,4.1 +2499,Tea Villa Cafe,Fort Dodge,"Tea, BBQ, Fast Food, American, Seafood",75,3.6 +2500,Hotel RRR Mysore,Charleston,"Cafe, Pizza, BBQ, Bakery",43,3.4 +2501,Jalpaan Dining Saga,Prescott,"Cafe, BBQ, Desserts",95,3.7 +2502,The Old House,Redding,"Bakery, Seafood",78,3.9 +2503,Vinayaka Mylari,Houston,"Fast Food, French, Cafe, Italian",14,4.2 +2504,Empire Restaurant,Green Bay,"Cafe, Pizza, American, Fast Food",97,3.7 +2505,Green Leaf,Mission,"Desserts, BBQ, Fast Food, Cafe, Indian",67,3.5 +2506,Pakva Lounge,Bend,"Pizza, Mediterranean, Desserts",46,3.7 +2507,Spring - Radisson Blu Plaza,Ponce,"Seafood, Bakery, Italian",64,3.8 +2508,Big Chicken,Cleveland,"Cafe, Pizza, Bakery, Italian",27,3.5 +2509,Barbeque Nation,Las Vegas,"Desserts, Tea, Italian, Fast Food, American, Seafood",88,4.0 +2510,Pizza Hut,Bishop,"Mexican, Bakery, BBQ, Fast Food",31,4.0 +2511,Tandooriwala,Medford,"Desserts, Pizza, Mexican, Cafe, American",58,3.5 +2512,Jungle The Restaurant,Phoenix,"Desserts, Seafood",27,3.7 +2513,The Barge Restaurant,Jackson,"Tea, Pizza, Mediterranean",18,3.3 +2514,By The Way,Tallahassee,"Desserts, Pizza, Bakery, Mediterranean, Seafood",46,3.6 +2515,Cafe Cornucopia,Wichita,"Tea, Cafe, Bakery",76,3.6 +2516,Mezzaluna,Syracuse,"Pizza, Indian, Desserts, Fast Food",41,3.8 +2517,Nanking,Cody,"Tea, Italian, Fast Food, Indian, Seafood",44,3.7 +2518,Oyster Bay,North Bend,"Cafe, Bakery, Desserts, Seafood",61,3.6 +2519,Purple Haze,Sault Ste. Marie,"French, Desserts, Fast Food",39,3.7 +2520,House of Caffeine,Minot,"Seafood, Mexican, American, Fast Food",97,3.3 +2521,Hide Out The Street Cafe,Punta Gorda,"Desserts, BBQ, Fast Food, Chinese, Seafood",92,3.8 +2522,Tapri The Chai Books Cafe,Gainesville,"Bakery, Mediterranean, BBQ, Fast Food",62,3.9 +2523,Eat Street Express,Myrtle Beach,"Fast Food, Pizza, BBQ, Italian",100,4.0 +2524,Zaikart,Butte,"Tea, Pizza, American",33,4.3 +2525,Cafe Zinea,Ontario,"Italian, Bakery, BBQ, Fast Food, Cafe",31,3.7 +2526,Checker's,Syracuse,"Tea, Italian, French, Fast Food, Cafe",90,4.0 +2527,The B.A.W.A,Wichita,"Tea, Chinese, Pizza, BBQ",23,4.2 +2528,FSB,Santa Ana,"Desserts, Bakery, BBQ, Cafe, American",87,4.3 +2529,NESCAF韸 Illusions,Moab,"Tea, Desserts",24,3.9 +2530,Nineties,Cleveland,"Cafe, Pizza, Desserts",31,3.9 +2531,Mocha,Memphis,"Cafe, Mexican, BBQ",57,4.0 +2532,The Zuree Urban Kitchen,Buffalo,"Fast Food, Seafood, Italian",50,4.4 +2533,The Breakfast Story,Manchester,"Bakery, Mexican, Pizza, Desserts",41,4.5 +2534,Ten Downing Street Restaurant & Bar,Valparaiso,"Tea, Pizza, BBQ, Seafood",46,4.0 +2535,Ashoka Restaurant,Ithaca,"Tea, Fast Food",47,4.2 +2536,Barbeque Nation,Cheyenne,"Tea, French, BBQ, Fast Food, Seafood",64,4.9 +2537,KFC,Cedar City,"Tea, Cafe, Seafood, Fast Food",13,2.2 +2538,Moksh The Restro Lounge,Huntsville,"Pizza, American, BBQ, Fast Food, Indian",77,4.0 +2539,Mainland China,Salt Lake City,"Tea, Cafe, Mexican, Seafood",79,3.8 +2540,Divtya Budhlya Wada Restaurant,Toledo,"Tea, Seafood, Fast Food",35,3.8 +2541,Spice Route,Roswell,"Tea, French, BBQ, Seafood",17,3.6 +2542,Veg Aroma,Oklahoma City,"Desserts, Tea, BBQ, Indian, Seafood",52,3.6 +2543,Eastern Spice,Honolulu,"Tea, Pizza, Bakery",39,3.5 +2544,The Bake Studio,Twin Falls,"Tea, Pizza, Bakery, Fast Food, Mediterranean",23,3.6 +2545,Barbeque Nation,Portland,"Mediterranean, Desserts, Fast Food",79,3.8 +2546,Chai Tapri,Baltimore,"Fast Food, Seafood, Bakery, Italian",37,3.4 +2547,Curry Leaves,Lewisburg,"Pizza, American, Mediterranean, Desserts",28,3.4 +2548,Enter The Dragon,Fort Myers,"Tea, Chinese, Cafe",93,3.4 +2549,The Cafe Katta,Lewiston,"Mexican, BBQ, Fast Food, Cafe, Mediterranean, Seafood",96,3.3 +2550,White X Sky Lounge,Birmingham,"Tea, Mexican, Pizza, Fast Food",29,3.4 +2551,12212,Tampa,"Desserts, Tea, French, BBQ, Fast Food",10,3.5 +2552,Al Arabian Express,Houston,"BBQ, Desserts, Seafood",74,3.7 +2553,RiverDine Restaurant & Bar,Santa Maria,"Chinese, BBQ, Seafood",71,3.5 +2554,Barbeque Ville,Owensboro,"BBQ, Bakery, Desserts, Fast Food",100,3.8 +2555,Little Italy,Melbourne,"Cafe, American, Desserts, Fast Food",94,3.0 +2556,Soma at Sula,Montgomery,"Tea, Bakery, BBQ, Fast Food, Chinese",33,3.3 +2557,Hotel Radhakrishna,Stockton,"Desserts, Italian, Bakery, Fast Food, Seafood",63,3.5 +2558,Sadhana Restaurant,White Plains,"Desserts, Tea, Italian, French, Seafood",84,3.9 +2559,House Of Flavours,San Antonio,"Tea, Pizza, Bakery, Chinese, Indian",41,3.4 +2560,Food Cloud,Birmingham,"Desserts, Tea, Pizza, Italian, Fast Food",68,0.0 +2561,Burger.in,Fresno,"Pizza, Mediterranean, Fast Food",83,3.2 +2562,Days of the Raj,Plattsburgh,"Bakery, Mediterranean, Seafood",52,3.4 +2563,Dilli Ka Dhaba,Saipan,"Tea, Chinese, Pizza, BBQ",71,2.6 +2564,Govardhan,Billings,"BBQ, Bakery, Desserts",59,3.4 +2565,Mezbaan Grills,Portsmouth,"Desserts, Tea, Pizza, Fast Food, Mediterranean",14,3.1 +2566,Say Cheese,Redding,"Tea, Pizza, Bakery, Chinese, American, Seafood",43,2.7 +2567,Southy,Appleton,"Tea, Pizza, Mexican, BBQ, Fast Food, Indian",100,2.6 +2568,Monosoz,West Yellowstone,"French, Bakery, Mediterranean, Seafood",85,3.7 +2569,Waves,Worcester,"Pizza, American, BBQ, Italian",98,3.5 +2570,Delhi Darbar,Fayetteville,"BBQ, Seafood",84,2.2 +2571,Chateau,Cody,"Tea, Mexican, BBQ, Fast Food, Seafood",26,4.0 +2572,Nariyal Cafe,Santa Maria,"Tea, Bakery, BBQ, Fast Food",14,4.2 +2573,Rustom's Parsi Bhonu,Harrisburg,"American, Desserts, Fast Food",77,4.2 +2574,BarShala,Jamestown,"Fast Food, Seafood, Desserts, Italian",13,3.2 +2575,Chawla's宊,Bakersfield,"Pizza, Fast Food",56,3.4 +2576,Domino's Pizza,Phoenix,"Cafe, Mexican, Fast Food, Chinese, Seafood",96,2.8 +2577,Sultanat,Lubbock,"Chinese, Bakery, BBQ, Cafe",72,3.7 +2578,Bella Italia,Portland,"Desserts, Mexican, Indian, BBQ",47,3.2 +2579,Clever Fox Cafe,Mason City,"French, Bakery, Desserts, Fast Food",15,3.2 +2580,365 Naturals,Sioux Falls,"Cafe, Pizza, BBQ, Chinese, American",79,0.0 +2581,Tpot,Chattanooga,"Desserts, Tea, Pizza, Mexican, Cafe, Indian",14,0.0 +2582,4 on 44 Restaurant & Bar,Helena,"Mexican, Bakery, Desserts, Seafood",58,2.6 +2583,Rambhog,New York,"Tea, Seafood, Mexican, Fast Food",95,3.3 +2584,Selfie Lounge Restro & Bar,Tucson,"Seafood, Fast Food",32,3.2 +2585,BTW,Greenville,"Tea, Pizza, Mexican, Bakery, Cafe",41,3.4 +2586,Chilli Pepper,Sioux City,"Chinese, Pizza, Desserts",32,3.3 +2587,Pizza Hut,Daytona Beach,"Chinese, Pizza, Bakery, Desserts",51,2.6 +2588,Puri Bakers,Dallas,"Pizza, Mexican, Bakery, Fast Food, Cafe, Indian",33,3.7 +2589,Jaiveer Naan & Chaap,Phoenix,"Cafe, Pizza, Fast Food, Chinese, Seafood",38,2.2 +2590,Aggarwal's Sweets Paradise,St. Cloud,"Seafood, Pizza, BBQ, Fast Food",82,2.9 +2591,Bikaner Sweets,Dallas,"Tea, French, Bakery, Cafe, Seafood",23,3.3 +2592,Cafe Coffee Day,Atlantic City,"Tea, BBQ, Mediterranean",11,3.2 +2593,Cakeophony By Sonali,Laramie,"Italian, Bakery, BBQ, Chinese, Seafood",46,3.4 +2594,Chandra Sweets,Ponce,"Cafe, Pizza, Desserts, Fast Food",46,3.0 +2595,Chhotu Mashhoor Kathi Roll,Oklahoma City,"French, Pizza, Desserts, Italian",72,2.7 +2596,Green Chick Chop,Bangor,"Bakery, Desserts, Fast Food",100,3.2 +2597,Lazeez Restaurant,Missoula,"Tea, Cafe, BBQ, Chinese, American, Seafood",24,3.0 +2598,Madhuvan Chinese Fast Food,Buffalo,"Pizza, Italian, Bakery, Fast Food, Seafood",77,2.5 +2599,Mr Wong,Cedar City,"Italian, BBQ, Cafe, American, Seafood",43,3.2 +2600,Mughlai Shahi Rasoi,Ontario,"Desserts, Seafood",57,3.2 +2601,Mumbai Central Street Food,Johnstown,"Tea, Bakery, BBQ, Indian, Mediterranean",90,3.1 +2602,Neha's Treat,West Palm Beach,"Cafe, Pizza, BBQ",30,2.9 +2603,New Bakers Shoppee,Appleton,"Chinese, Pizza, Cafe",15,3.2 +2604,Pant Ice Cream Parlour,Escanaba,"Chinese, Pizza, Bakery, Desserts",65,3.3 +2605,PM 2 AM Food Bank,Wichita Falls,"French, Cafe, Desserts",45,2.5 +2606,Punjabi Chaap Corner,Aguadilla,"Tea, Pizza, Mediterranean, Desserts",40,2.9 +2607,Sartaj Food Corner,Shreveport,"Tea, BBQ, Seafood",79,2.8 +2608,The Sugar Therapy,Kodiak,"Desserts, Seafood",63,3.4 +2609,Biryani Binge,Everett,"Mexican, BBQ, Bakery, Fast Food, Cafe",63,3.9 +2610,City of Joy,Valdosta,"French, Bakery, Pizza, Italian",100,3.9 +2611,Letz Roll,Las Vegas,"French, Indian, BBQ, Fast Food",35,3.6 +2612,Nukkad,Pensacola,"Tea, Cafe, American, Italian",100,3.6 +2613,#InstaFreeze,Albuquerque,"Cafe, Pizza, BBQ",75,0.0 +2614,Aahar Meat and Chicken Shop,Gainesville,"Tea, BBQ, Seafood",90,0.0 +2615,Food Cafe,Madison,"Tea, Pizza, Fast Food, American, Seafood",85,0.0 +2616,Lazeez Restaurant,Islip,"Chinese, Mexican, Bakery, Pizza",27,0.0 +2617,Lemon Chick,Petersburg,"Desserts, Pizza, French, Fast Food, Chinese, Seafood",34,0.0 +2618,Punjabi Chaap Corner,Tulsa,"Tea, Fast Food, Indian, Seafood",41,0.0 +2619,Purani Dilli Foods,Texarkana,"Indian, BBQ, Fast Food",62,0.0 +2620,Tandoori Kebab,Hyannis,"Desserts, Tea, Pizza, French, Fast Food, American",43,0.0 +2621,Shree Rathnam,Cincinnati,"Pizza, Indian, BBQ, Fast Food",72,2.4 +2622,Alaturka,Indianapolis,"Mexican, Bakery, Desserts, Italian",42,2.5 +2623,Amici Gourmet Pizza,New Orleans,"BBQ, Indian, Desserts",83,3.1 +2624,Burger King,Durango,"Desserts, Mexican, Bakery, BBQ, Fast Food",11,3.2 +2625,Kylin Express,Alpena,"Chinese, Bakery, BBQ, Seafood",30,2.6 +2626,Big Fat Sandwich,Tulsa,"Desserts, Fast Food",34,3.5 +2627,Fashion Tv Cafe,Waterloo,"Cafe, Pizza, American, Indian",54,3.6 +2628,Kylin Skybar,Charlotte,"Tea, Cafe, Pizza, Italian",44,3.6 +2629,Lemon Drops,Hilo,"Cafe, Indian, Fast Food",53,3.9 +2630,Punjabi By Nature Express,Daytona Beach,"Tea, BBQ, Mediterranean, Fast Food",12,3.5 +2631,Red Mango,Arcata,"Bakery, Mexican, Pizza, Desserts",19,3.7 +2632,Starbucks,Bangor,"Cafe, Pizza, Indian",87,3.7 +2633,Peninsular Kitchen,Corpus Christi,"Chinese, Bakery, Cafe, Fast Food",56,4.2 +2634,Mithapur,Jackson,"Bakery, Mediterranean, Seafood",85,3.4 +2635,Diggin,Spokane,"Bakery, Pizza, BBQ",100,4.2 +2636,Aggarwal Sweet India,Portsmouth,"French, BBQ, Cafe, Fast Food",93,2.8 +2637,Banzara's,Palm Springs,"Tea, Italian, Bakery, Chinese, Seafood",98,3.1 +2638,Bobby Tikki Wala,Brownsville,"Cafe, BBQ, Desserts",33,2.8 +2639,Chennai Junction,West Yellowstone,"Seafood, Pizza, American, Italian",43,3.3 +2640,Chicken Bite,Roswell,"Tea, Pizza, Fast Food, Chinese, Seafood",99,3.1 +2641,Chocolate Dreams,Oklahoma City,"Tea, Italian, BBQ, Fast Food, Seafood",19,3.0 +2642,Dial n Dine,Cheyenne,"Chinese, Bakery, Pizza",79,3.4 +2643,Fresh n Refresh,Montgomery,"Tea, Pizza, BBQ, American, Seafood",28,3.4 +2644,Garden Hut,Lake Charles,"French, Pizza, Cafe, Fast Food",71,3.1 +2645,Giani,College Station,"Tea, Cafe, BBQ, Fast Food",14,3.3 +2646,Jugnu Gaming Zone and Cafe,Eugene,"Cafe, Bakery, Desserts, Fast Food",26,2.9 +2647,Keventer's South Indian & Chinese Food,Pensacola,"BBQ, Fast Food",32,2.8 +2648,KTS,Moline,"Pizza, French, Mexican, Bakery, Fast Food",84,3.3 +2649,Mandarin,Trenton,"Desserts, Mexican, Cafe, Mediterranean, Seafood",43,2.8 +2650,Penguin Bakers & Shakers,Phoenix,"Cafe, Pizza",45,2.8 +2651,Rollmates,Montgomery,"Desserts, Tea, Bakery, BBQ, Mediterranean",54,3.2 +2652,Tandoori Nights,Austin,"Pizza, Italian, BBQ, Indian, Seafood",26,3.0 +2653,Burger Dominion,Johnstown,"Tea, Pizza, French, Cafe, Mediterranean",83,3.6 +2654,Cafe Gainz,Ponce,"Pizza, French, Bakery, BBQ, Fast Food",86,3.5 +2655,Chaskaa,Brunswick,"Tea, Bakery, Seafood",68,3.5 +2656,Fabulous Cake Bites,Valparaiso,"Bakery, Fast Food, Cafe, Indian, Seafood",27,3.6 +2657,Hangout - A House Of Kathis,Minot,"Pizza, American, Desserts, Fast Food",22,3.7 +2658,Malais By Anands,Oakland,"Tea, Cafe, Mexican, Pizza",37,3.7 +2659,Panchwati Rasoi,Eugene,"Desserts, Fast Food, Cafe, American, Mediterranean",51,3.8 +2660,Sprinkles Cup & Cake,Yakutat,"Tea, Cafe, Bakery, Desserts",45,3.6 +2661,Target Ice Cream & Bakers,Fort Smith,"Cafe, Pizza, Desserts",16,3.6 +2662,The Sweeet Jar,Baltimore,"Bakery, Pizza, Desserts, Seafood",39,3.9 +2663,Amar Bakery,Green Bay,"Tea, Cafe, Fast Food",56,0.0 +2664,Cafe Brewbug,Aberdeen,"Cafe, BBQ, Desserts, Fast Food",40,0.0 +2665,Chilll House Kafe,Santa Rosa,"Tea, Cafe, BBQ, Fast Food",32,0.0 +2666,Cookie Shookie,Sioux City,"Tea, Bakery, BBQ, Chinese, American",51,0.0 +2667,Fabulous Cake,Orlando,"Cafe, BBQ, Fast Food",91,0.0 +2668,Jai Maa Shaarde Samose Wala,Yuma,"Pizza, Desserts, Seafood",94,0.0 +2669,Madaan Confectionery,South Bend,"Tea, Cafe, BBQ, Seafood",62,0.0 +2670,Magic Masala,Colorado Springs,"Pizza, Mediterranean, Desserts, Fast Food",71,0.0 +2671,Sikka Chinese Fast Food,Honolulu,"Fast Food, Indian, Mediterranean, Seafood",71,0.0 +2672,Teedo's Cake Inn,Laramie,"Chinese, Cafe, Desserts, Fast Food",67,0.0 +2673,Thalaiva Cafe,Greenville,"Tea, Pizza, Bakery, Fast Food, Chinese",58,0.0 +2674,The Cake Affairs,Wichita,"Tea, Seafood",15,0.0 +2675,Tulsi Ram Chinese Hut,White Plains,"Chinese, Pizza, American, Bakery",20,0.0 +2676,V. K. Pasta,Nantucket,"Fast Food, Tea, Desserts, Italian",83,0.0 +2677,Xpert Bakers,Philadelphia,"Tea, Chinese, Pizza, Seafood",68,0.0 +2678,Juniper Bar - Andaz Delhi,St. Petersburg,"Tea, Pizza, Italian, Bakery, Cafe, Mediterranean",81,3.0 +2679,McDonald's,Charlotte Amalie,"Desserts, Italian, French, BBQ, Fast Food, Seafood",29,3.4 +2680,Pizza Hut Delivery,Sitka,"Chinese, American, Cafe, BBQ",99,3.2 +2681,The Arena,Alamosa,"Tea, French, Desserts",85,3.4 +2682,Restaurant De Seoul,Scottsbluff,"Pizza, BBQ, Seafood",42,3.6 +2683,Taksim,Detroit,"Cafe, Bakery, Indian, Fast Food",65,3.9 +2684,Jom Jom Malay,Del Rio,"Chinese, Indian, Desserts, Fast Food",78,4.4 +2685,Kofuku,San Juan,"Fast Food, Pizza, Seafood",59,4.0 +2686,The Sky High,Roanoke,"Bakery, Indian, Desserts",78,4.1 +2687,Haldiram's,Dodge City,"Pizza, BBQ, Fast Food, Chinese, Seafood",77,3.1 +2688,Jux Pux - The Dreamer's Cafe,Plattsburgh,"Cafe, Pizza, Bakery, BBQ, Chinese, American",52,3.1 +2689,Pizzaon,San Juan,"Bakery, American, Cafe, BBQ",79,3.0 +2690,FFC Restaurant,Gustavus,"Mexican, American, Desserts, Fast Food",11,0.0 +2691,"34, Chowringhee Lane",Aberdeen,"Tea, French, Cafe, Fast Food",60,2.8 +2692,Aapni Dhani,Greensboro,"Bakery, Pizza, Indian, BBQ",38,2.8 +2693,Bengal Sweet Corner,Chicago,"Desserts, Tea, Bakery, Cafe, American",59,2.8 +2694,Chicken Vicken,Bend,"Indian, American, BBQ, Pizza",27,3.4 +2695,Cup-a-licious,Austin,"Fast Food, Chinese, BBQ, Italian",85,3.2 +2696,Frontier,Escanaba,"Tea, BBQ, Fast Food, Mediterranean, Seafood",86,3.0 +2697,Metro Fast Food,Dallas,"Tea, Pizza, Mexican, Bakery, BBQ, American",45,2.7 +2698,Nagpal's,Reno,"Bakery, Mexican, Pizza, Seafood",79,3.4 +2699,Nile Restro & Bar,San Juan,"Tea, Pizza, American, Desserts",45,2.7 +2700,Popular Chicken,Saipan,"Indian, BBQ, Seafood",63,3.0 +2701,Sardar A Pure Meat Shop,Chattanooga,"Bakery, Pizza, American",24,3.4 +2702,Shankar Fast Food,Brainerd,"Tea, Bakery, Desserts, Italian",55,3.2 +2703,Singh's Zaika ,Worcester,"Chinese, Mexican, Desserts, Fast Food",74,3.0 +2704,The Mirch Masala,Watertown,"Desserts, Tea, Italian, Bakery, Cafe",52,3.0 +2705,The Mirch Masala,Grand Island,"French, Indian, Desserts, Fast Food",93,3.2 +2706,Uncle Cake Shop,Grand Rapids,"Pizza, Mediterranean, BBQ",34,3.1 +2707,Kays Bar-Be-Que,Bristol,"Tea, Pizza, French, Fast Food, Cafe, Indian",33,3.5 +2708,Master Bakers,Cleveland,"Tea, Pizza, Italian, BBQ, Seafood",80,3.7 +2709,The Master's Fast Food Centre,Wrangell,"Cafe, Pizza, Indian, Desserts",45,3.5 +2710,6 Pack Momos,Long Beach,"Desserts, Pizza, Italian, Bakery, Fast Food, Mediterranean",80,0.0 +2711,Al Noor Foods,Cedar Rapids,"Tea, French, Bakery, Cafe, Seafood",44,0.0 +2712,Avon Kitchen,Hancock,"Pizza, Fast Food",94,0.0 +2713,Bhasad Cafe,Owensboro,"French, Mexican, Fast Food, Cafe, Seafood",46,0.0 +2714,Bikaner Kesarvala,Augusta,"Pizza, Bakery, Italian",77,0.0 +2715,De Bone Chicken,Phoenix,"Italian, BBQ, Fast Food, American, Seafood",59,0.0 +2716,Indian Fresh Meat Shop,Idaho Falls,"Tea, Cafe, BBQ, Desserts",92,0.0 +2717,JD's Food Court,Roanoke,"Tea, Indian, Fast Food",72,0.0 +2718,Keventers,Melbourne,"Pizza, Italian, Bakery, BBQ, American",44,0.0 +2719,Malhotra Bakery,Sault Ste. Marie,"Tea, Bakery, Desserts, Fast Food",65,0.0 +2720,Matthi Wala,Escanaba,"Pizza, Mediterranean, Desserts, Seafood",16,0.0 +2721,Nirula's Ice Cream,Orlando,"Tea, American, BBQ, Indian, Seafood",46,0.0 +2722,Punjabi Chaap Corner,Lawton,"Mexican, Desserts, Fast Food",57,0.0 +2723,Puran Dhaba,Fort Dodge,"Tea, Pizza, BBQ, Fast Food, Chinese",95,0.0 +2724,Rama Desi Ghee Meat Wala,Brunswick,"Tea, Bakery",96,0.0 +2725,VadaPav 'n' Frankie,Albuquerque,"French, Cafe, Desserts, Italian",32,0.0 +2726,Chhabra Sweets,Bristol,"Cafe, BBQ, Desserts, Fast Food",81,2.4 +2727,Kanwarji's,Anchorage,"Indian, Mediterranean, Desserts, Seafood",52,2.9 +2728,Pizza Hut,Dubuque,"Tea, Seafood, Pizza, Italian",64,3.4 +2729,Sagar Ratna,Wenatchee,"Tea, Indian, Fast Food",92,2.7 +2730,Smelling Salts,North Platte,"Tea, Seafood, Bakery, Fast Food",38,3.3 +2731,Wah Ji Wah,Fort Lauderdale,"Desserts, BBQ, Fast Food, Chinese, Seafood",20,2.6 +2732,Wheelyz,Dallas,"Tea, Pizza, Bakery, BBQ, Chinese, Mediterranean",60,2.5 +2733,Bell Pepperz,Long Beach,"Mexican, Bakery, Fast Food",37,3.9 +2734,Bharat Sweets,Alexandria,"BBQ, Pizza, Desserts, Fast Food",89,3.5 +2735,Invitation,Kahului,"French, Pizza, BBQ, Fast Food",29,3.6 +2736,Mystique Melange,Aguadilla,"Chinese, Pizza, Seafood",24,3.9 +2737,Pandit Ji Paranthe Wale,Hyannis,"Tea, Pizza, French, Cafe, Seafood",99,3.7 +2738,Raju Chat Palace,El Paso,"Desserts, Tea, Bakery, Fast Food, Chinese",34,3.9 +2739,Seasonings - The Spice Mysteries,Vernal,"Pizza, American, Seafood",90,3.9 +2740,SGF - Spice Grill Flame,Lexington,"Tea, Cafe, Bakery",26,3.5 +2741,Apni Rasoi,Duluth,"Desserts, Tea, Mexican, BBQ, Bakery, American",51,3.0 +2742,Bablu Kabab Shop,Concord,"Cafe, Mexican, Pizza, Fast Food",31,3.1 +2743,Cake o' Cuisine,Austin,"Seafood, Indian, Cafe, Fast Food",71,3.3 +2744,Domino's Pizza,Hibbing,"BBQ, Fast Food, American, Mediterranean, Seafood",38,3.2 +2745,Hunger Flames,Portsmouth,"Chinese, Bakery, Desserts, Fast Food",23,3.4 +2746,Puran Chand Ambala Wale Di Hatti,Fort Myers,"Bakery, BBQ, Cafe, American, Seafood",36,3.3 +2747,The Cake Gallery,Jacksonville,"Tea, Pizza, French, BBQ, Cafe",71,3.3 +2748,Bablu Chic Inn,Ponce,"Tea, Fast Food",36,3.6 +2749,Masala Basket,Mission,"Cafe, BBQ, Fast Food",56,3.6 +2750,Udta Punjab,Nome,"Cafe, Pizza, Mexican, Bakery, Chinese",80,3.5 +2751,Munch Nation,Iron Mountain,"Bakery, Indian, Cafe, Fast Food",56,4.0 +2752,Bengali Pastry Shop & Snack Bar,Gustavus,"Tea, Cafe",14,3.2 +2753,Bhimsain's Bengali Sweet House,Manhattan,"Cafe, Bakery, Pizza",99,3.4 +2754,Cafe Coffee Day,Prescott,"Seafood, BBQ, Italian",97,2.9 +2755,Colonel's Kababz,New Bern,"Desserts, French, BBQ, Bakery, Indian, Seafood",39,3.4 +2756,Faasos,Sioux City,"Cafe, Bakery, BBQ, Desserts",66,2.8 +2757,Karachi Bakery,Eugene,"Tea, Italian, Bakery, American, Seafood",49,3.0 +2758,Nathu's Sweets,Punta Gorda,"Tea, Chinese, Desserts, Italian",66,3.3 +2759,Sachdeva Confectioners,Escanaba,"Seafood, Bakery, Desserts, Italian",29,3.1 +2760,Bengali Sweet House,Atlanta,"Desserts, American, BBQ, Pizza",39,3.6 +2761,Bijoli Grill,Saipan,"Tea, Pizza, Mexican, BBQ, Seafood",77,3.7 +2762,Nathu's Pastry Shop,Jacksonville,"Desserts, Pizza, Fast Food, Indian, Seafood",59,3.8 +2763,Balaji Dhaba,Eau Claire,"Seafood, Mexican, Fast Food",59,0.0 +2764,Bhagat Ji,Tucson,"Tea, Chinese, Bakery, Seafood",51,0.0 +2765,Hangout Kathi Rolls,Eau Claire,"Desserts, French, Bakery, Fast Food, Cafe",52,0.0 +2766,Makers & Bakers,Salt Lake City,"Tea, American, Desserts, Seafood",31,0.0 +2767,Habibi Express,Moab,"Bakery, Mediterranean, BBQ",70,2.3 +2768,Cafe Coffee Day,Hilton Head,"Bakery, BBQ, Italian",65,3.2 +2769,China Town,Wichita,"Tea, Cafe, Mexican, Fast Food",33,2.9 +2770,Domino's Pizza,St. Petersburg,"Tea, Seafood, Fast Food, Italian",76,3.3 +2771,High Street Kitchen & Bar,Stockton,"Desserts, Tea, Mexican, BBQ, Fast Food, Mediterranean",100,2.9 +2772,Pizza Hut,Gainesville,"Fast Food, Pizza, Desserts, Italian",42,3.1 +2773,Sugar & Spice - Le Marche,Elmira,"Bakery, Pizza, Seafood",20,3.0 +2774,The Kathis,Madison,"BBQ, Pizza, Desserts, Fast Food",67,2.8 +2775,The Kylin Experience,Fort Dodge,"French, BBQ, Fast Food",20,3.3 +2776,Arabian Nites,Bristol,"Fast Food, French, Pizza, Seafood",76,3.5 +2777,Asia Kitchen,Twin Falls,"Tea, Cafe, BBQ, Desserts",67,3.7 +2778,Dunkin' Donuts,Yakima,"Fast Food, Cafe, Pizza, Italian",92,3.7 +2779,Krips Restaurant,South Bend,"Tea, Mediterranean, Fast Food",59,3.5 +2780,McDonald's,Kahului,"Tea, Italian, Cafe, Indian, Seafood",28,3.5 +2781,Yo! China,Richmond,"Desserts, Tea, Bakery, Cafe, American, Mediterranean",36,3.5 +2782,RPM,Evansville,"Chinese, Desserts, Seafood",74,2.4 +2783,By The Way - Bellagio,Montgomery,"Tea, Cafe, Mexican",32,2.9 +2784,Red - Bellagio,Hagerstown,"Bakery, Desserts, Fast Food",78,3.4 +2785,Soul Curry - Bellagio,Wichita,"Desserts, Tea, Italian, Mexican, Seafood",31,3.6 +2786,Alpha 63,Fort Leonard Wood,"Desserts, Pizza, Bakery, Cafe, Mediterranean",12,2.7 +2787,Bite-N-Sip,Santa Rosa,"Tea, Mexican, BBQ",93,2.6 +2788,Lotus Garden,Dillingham,"Desserts, Cafe, BBQ, Chinese, Seafood",72,3.2 +2789,Meethas Sweets,Fort Lauderdale,"Tea, Cafe, Mexican, Mediterranean",14,2.8 +2790,Nirula's,Albuquerque,"Italian, Bakery, BBQ, Mediterranean, Seafood",96,2.5 +2791,Punjabi Tadka,Myrtle Beach,"Bakery, BBQ, Fast Food, Chinese, Seafood",73,2.8 +2792,Snack Bar,Petersburg,"Tea, French, Indian, Cafe",82,3.0 +2793,South Indian Food,Cape Girardeau,"French, Pizza, BBQ",69,3.1 +2794,Domino's Pizza,Fort Dodge,"Italian, Mexican, BBQ, Fast Food, Cafe, Seafood",13,2.4 +2795,Southy,Bemidji,"Cafe, Pizza",60,2.4 +2796,Coffee Shop - Centaur Hotel,El Paso,"Tea, Cafe, American, Italian",73,0.0 +2797,Al Kuresh,Gulfport,"Desserts, Bakery, Cafe, Indian, Seafood",32,3.3 +2798,Angan Bakery & Cafe,Charlotte Amalie,"Chinese, Pizza, Mediterranean, BBQ",99,2.9 +2799,Bamboo Chopstix,Staunton,"Tea, Pizza, French, Bakery, Fast Food",80,2.7 +2800,Bawarchis,Panama City,"Tea, Pizza, Bakery, BBQ, Chinese",39,2.9 +2801,Bikanervala,Bristol,"Tea, Cafe, Fast Food",49,3.4 +2802,Cafe Coffee Day,Fort Lauderdale,"Pizza, Desserts, Fast Food",83,3.0 +2803,Chanakya Bar-Be-Que,West Palm Beach,"Pizza, Fast Food",68,3.2 +2804,Chattisgarh Bhawan,Belleville,"Cafe, Bakery, Indian",49,2.7 +2805,Chimney,Colorado Springs,"Cafe, Seafood",66,2.9 +2806,China Town Sizzlers,Devils Lake,"Tea, Bakery, Indian, BBQ",94,3.4 +2807,Chinese Bite,Mason City,"Cafe, Fast Food",39,2.8 +2808,Chinese Garden,Alexandria,"Bakery, American, Desserts, Seafood",12,3.2 +2809,Costa Coffee,Escanaba,"Cafe, Pizza, Bakery, BBQ",53,3.0 +2810,Food Point,Lawton,"Desserts, Tea, Pizza, French, American",28,2.8 +2811,Ikko,Huntsville,"Tea, French, Pizza, BBQ",14,2.9 +2812,Jammu And Kashmir House,Oakland,"Tea, BBQ, American, Mediterranean, Seafood",100,2.9 +2813,Laguna,Saipan,"Pizza, BBQ, Bakery, Chinese, Indian",40,3.4 +2814,Momo Point,Boise,"Cafe, Pizza, French, Chinese, Seafood",26,3.2 +2815,New Zaika,Kansas City,"Bakery, Desserts, Fast Food",25,3.1 +2816,Organic Express,Bellingham,"Tea, Pizza, Italian, Bakery, BBQ, Chinese",97,3.0 +2817,Tamil Nadu House Canteen,Kona,"Cafe, Pizza, BBQ, Fast Food",53,3.4 +2818,The Chocolate Avenue,Greer,"Tea, French, Chinese, Cafe",15,3.4 +2819,Chimney Sizzlers,Greer,"Tea, Pizza, Mexican, Bakery, Fast Food",77,3.7 +2820,Gujarat Bhawan Restaurant,Binghamton,"Italian, Mexican, BBQ, Fast Food, Cafe, Seafood",90,3.7 +2821,It潴籹 Sinful,South Bend,"Desserts, French, BBQ, Bakery, Seafood",26,3.5 +2822,Jakoi,Bakersfield,"Tea, BBQ",90,3.5 +2823,Arunachal Bhawan,Valparaiso,"Cafe, Desserts, Seafood",19,0.0 +2824,Hotel New Tamil Nadu,Orlando,"Desserts, Italian, Fast Food, Mediterranean, Seafood",13,0.0 +2825,Milan Food,Orlando,"Cafe, BBQ, Seafood",25,0.0 +2826,Playboy Club,Chicago,"Bakery, American, BBQ, Italian",66,0.0 +2827,Moti Mahal Delux,Portsmouth,"Tea, Cafe, BBQ",52,2.4 +2828,The Treat,North Platte,"Pizza, French, BBQ, Cafe, Mediterranean, Seafood",42,2.1 +2829,Break Fast Point,San Angelo,"Tea, Cafe, Indian",40,3.3 +2830,Breakfast Corner,Louisville,"Tea, Pizza, French, Bakery, Cafe",46,3.1 +2831,Domino's Pizza,Hibbing,"Pizza, BBQ",35,3.0 +2832,Frontier,Waco,"Tea, Cafe, Mexican, Seafood",28,3.2 +2833,Prince Cafe,Birmingham,"Pizza, Italian, Bakery, Fast Food, Cafe",41,2.9 +2834,Spicy Eleven,Arcata,"Tea, Pizza, Indian, Desserts",75,3.1 +2835,Vaishno Punjabi Dhaba,Brunswick,"Tea, Bakery, Pizza",82,3.0 +2836,Adarsh Bhojnalaya,Martha's Vineyard,"Tea, Pizza, Italian, Bakery, Chinese",30,3.4 +2837,Al Haj Bakery,Gainesville,"Tea, Seafood, Desserts, Fast Food",99,3.0 +2838,Anmol Chicken,Kotzebue,"Bakery, Mexican, Indian, BBQ",58,3.1 +2839,Babu Ram Paranthe Wale,Santa Barbara,"French, Bakery, American, Seafood",11,3.2 +2840,Bhaijaan Kababs,Ketchikan,"Desserts, Tea, Pizza, French, Bakery",89,3.2 +2841,Bhikharam's,Abilene,"Bakery, Pizza, Desserts",89,3.0 +2842,Bikanervala,Lawton,"Tea, Cafe, Bakery, Desserts",17,2.8 +2843,Brijwasi Bhoj,Duluth,"Pizza, French, Fast Food, Mediterranean, Seafood",61,3.1 +2844,Brijwasi Restaurant,Santa Rosa,"French, Pizza, BBQ",49,3.2 +2845,Comesum,Madison,"Pizza, French, Mexican, BBQ, Seafood",77,2.5 +2846,Inderpuri Restaurant,Gulfport,"Pizza, BBQ, Desserts, Fast Food",47,3.0 +2847,Kamdhenu Family Corner,Charlottesville,"French, Pizza, BBQ, Seafood",69,2.8 +2848,Khalsa Hindu Hotel,Fort Lauderdale,"Tea, Chinese, Pizza, Seafood",23,2.9 +2849,Mahalaxmi Mishthan Bhandar,Dodge City,"Tea, Cafe, BBQ, Chinese, Indian",27,3.3 +2850,McDonald's,Scottsbluff,"Tea, Bakery",26,3.0 +2851,McDonald's,Latrobe,"Tea, Pizza, Fast Food, Chinese, Seafood",58,3.0 +2852,Natraj Cafe,Dodge City,"Desserts, Italian, French, Bakery, Fast Food",81,3.4 +2853,Padam Chaat Corner,Bloomington,"Tea, Mexican, Bakery, BBQ, Cafe",83,3.0 +2854,Pandit Ved Prakash Lemon Wale,Kalamazoo,"Pizza, Mediterranean, Desserts, Seafood",87,3.2 +2855,Pt. Babu Ram Devi Dayal Paranthe Wale,Sarasota,"Tea, BBQ, Desserts",51,3.0 +2856,Rabri Bhandar,Toledo,"Pizza, Bakery, Fast Food, Cafe, Indian",90,3.2 +2857,Ram Parshad Makhan Lal,Greensboro,"Tea, Bakery, BBQ, Cafe",39,3.4 +2858,Rambhoj,Kansas City,"French, Pizza, Seafood",100,2.9 +2859,Rehmatullah's Hotel,Detroit,"Desserts, Tea, Pizza, Italian, Mediterranean",28,3.0 +2860,Sharma Bhojnalay,Bend,"Seafood, BBQ, Desserts, Fast Food",99,3.0 +2861,Shree Balaji Chaat Bhandar,Rockford,"French, Bakery, BBQ, Italian",97,3.2 +2862,Shri Duli Chand Naresh Gupta,Santa Barbara,"Tea, Mexican, Pizza, Desserts",39,3.4 +2863,Shri Hari Sharnam,Everett,"Fast Food, Seafood, Italian",75,3.1 +2864,Sindhi Chicken,Panama City,"Bakery, Pizza, Indian, Cafe",74,2.9 +2865,Soni Bhojnalaya,El Paso,"Cafe, Pizza, Indian, Mediterranean",61,3.0 +2866,Super Restaurant,Belleville,"Tea, American, BBQ, Italian",96,2.9 +2867,Tiwari Ji Confectioner,Yakutat,"Bakery, Pizza, Indian, BBQ",78,3.1 +2868,Wah Ji Wah,Williston,"Tea, Italian, BBQ, Fast Food, Cafe, American",53,2.8 +2869,Zaika Mughlai Foods,Portsmouth,"Italian, BBQ, Fast Food, Cafe, Seafood",91,3.3 +2870,Al Yousuf,Denver,"Desserts, Tea, Pizza, French, American",32,3.7 +2871,Amritsari Lassi Wala,Yakima,"Cafe, American, Desserts, Seafood",37,3.8 +2872,Annapurna Bhandar,Lubbock,"French, Chinese, Desserts, Fast Food",78,3.8 +2873,Bishan Swaroop Chaat Bhandar,Augusta,"Tea, Bakery, Pizza",19,3.7 +2874,Gole Hatti,Owensboro,"Desserts, Bakery, BBQ, Indian, Seafood",18,3.8 +2875,Haldiram's,Augusta,"Cafe, Desserts, Fast Food",41,3.9 +2876,Kanwarji's,Yakima,"Pizza, Mexican, Bakery, Fast Food, Cafe, Mediterranean",37,3.9 +2877,Kedarnath Prem Chand Halwai,Myrtle Beach,"Desserts, Tea, Fast Food, American, Mediterranean, Seafood",61,3.7 +2878,Keventers,Ponce,"Cafe, BBQ, Seafood",76,3.7 +2879,Khan Omelette Corner,Missoula,"Pizza, Mexican, Bakery, Fast Food, Indian, Seafood",86,3.6 +2880,Natraj Dahi Bhalle Wala,Niagara Falls,"Tea, Cafe, Indian, Fast Food",88,3.9 +2881,Old Famous Jalebi Wala,Mission,"Tea, Indian, American, Pizza",44,3.9 +2882,Pt. Gaya Prasad Shiv Charan Paranthe Wale,Aguadilla,"Desserts, Tea, French, Fast Food, Mediterranean",63,3.6 +2883,Pt.Kanhaiyalal & Durga Prasad Dixit Paranthe Wale,Evansville,"Tea, Pizza, BBQ, Fast Food, Indian",45,3.6 +2884,Shiv Misthan Bhandar,Miami,"Cafe, American, Desserts, Fast Food",59,3.8 +2885,Special Jalebi Wala,Santa Fe,"Fast Food, BBQ, Desserts, Italian",59,3.5 +2886,Tewari Bros Confectioners,St. Cloud,"Pizza, Bakery, BBQ, American, Seafood",95,3.5 +2887,Annapurna Chaat & Sweets,Kansas City,"Tea, Bakery, Fast Food, Cafe, American, Mediterranean",59,0.0 +2888,Delhi-6 The Chicken Planet,Omaha,"Tea, Cafe, Pizza, Indian",54,0.0 +2889,Dessi Food,Orlando,"Chinese, BBQ, Fast Food",32,0.0 +2890,Foody Dragon,Gulfport,"Tea, Seafood, Cafe, Fast Food",22,0.0 +2891,Grover Eating Point,Prescott,"Desserts, Pizza, Cafe, American, Seafood",37,0.0 +2892,Hotel 121 Shakahari,Daytona Beach,"Pizza, Indian, Desserts",61,0.0 +2893,Lala Chaap Corner,Niagara Falls,"Tea, Pizza, Cafe, Mediterranean, Seafood",31,0.0 +2894,Meghraj & Sons,Longview,"Tea, Pizza, BBQ, Desserts",61,0.0 +2895,Old Kheer Shop,Detroit,"Mexican, Indian, Desserts, Fast Food",54,0.0 +2896,Punjabi Chicken,Santa Fe,"Chinese, Mediterranean, Desserts, Seafood",23,0.0 +2897,Ratan Singh,Dodge City,"Tea, Chinese, Fast Food",28,0.0 +2898,Shri Bhujia Bhandar,Bozeman,"Tea, Chinese, Desserts, Italian",87,0.0 +2899,Chaina Ram Sindhi Confectioners,Atlanta,"Desserts, Pizza, BBQ, Mediterranean, Seafood",34,4.2 +2900,Giani's di Hatti,Providence,"Tea, Mexican, Bakery",90,4.3 +2901,Jung Bahadur Kachori Wala,Rochester,"Desserts, Pizza, Bakery, Fast Food, Chinese",15,4.1 +2902,Lakhori - Haveli Dharampura,Islip,"Cafe, Pizza, Desserts, Italian",70,4.4 +2903,Milk n More,Redding,"Tea, Cafe, Bakery, BBQ",26,3.1 +2904,Kuremal Mohan Lal Kulfi Wale,Santa Maria,"Desserts, Italian, BBQ, Bakery, American, Seafood",84,4.5 +2905,Hira Chaat Corner,Prescott,"Tea, Indian, Seafood",91,3.6 +2906,Kuremal Mahavir Prasad Kulfi Wale,Salina,"French, BBQ, Chinese, Desserts",18,3.9 +2907,Shakahari Restaurant,Oklahoma City,"Cafe, Bakery, Mediterranean, Seafood",81,3.6 +2908,Shri Gujrat Namkeen Bhandar,Beaumont,"Tea, Italian, Bakery, BBQ, Mediterranean",78,3.6 +2909,Standard Sweets,Pellston,"Desserts, French, Mexican, BBQ, Fast Food",56,3.6 +2910,Sudarshan,San Francisco,"Fast Food, Bakery, Mediterranean, Italian",53,3.7 +2911,Ustad Moinuddin Kebab,San Francisco,"Tea, Bakery, American, Fast Food",50,3.7 +2912,Ashok Chaat Corner,Saipan,"Pizza, French, Bakery, Fast Food, Seafood",18,4.1 +2913,Jain Coffee House,Pensacola,"Cafe, Indian, Mediterranean, BBQ",41,4.1 +2914,Shyam Sweets,Arcata,"Cafe, Bakery, Seafood, Fast Food",87,4.1 +2915,Spicy Food Court,Ogdensburg,"Chinese, American, BBQ, Fast Food",77,2.7 +2916,Aristocrat Sweet Shop,Valdosta,"Mexican, Bakery, BBQ, Fast Food, Indian",71,3.1 +2917,Balluchi's - The Royal Cuisine,Madison,"BBQ, Indian, Desserts, Fast Food",87,3.0 +2918,Bunty Dhaba,Walla Walla,"Tea, Chinese, Seafood, Fast Food",73,3.2 +2919,Gopal's Restaurant & Caterer's,Reno,"French, Bakery, Pizza, Seafood",56,2.7 +2920,Horn Please,Hibbing,"Bakery, American, Cafe, Seafood",36,3.0 +2921,Khatey Raho,Paducah,"Chinese, Pizza, Desserts, Seafood",81,3.3 +2922,Kolkata Biryani House,Roanoke,"Mexican, Pizza, BBQ, Seafood",39,3.4 +2923,Kolkata Hot Kathi Roll,Worcester,"French, Bakery, Fast Food",25,3.2 +2924,Madly Bangalee,Milwaukee,"Pizza, American, Mediterranean, Desserts",59,2.7 +2925,Oh! China,Brownsville,"Tea, Seafood",97,2.9 +2926,Punjabi Zaika,Minot,"Pizza, BBQ, Seafood",32,2.9 +2927,Rabi Snacks Corner,Killeen,"BBQ, Desserts, Italian",92,3.4 +2928,Republic of Chicken,Walla Walla,"Tea, Chinese, Pizza",32,2.7 +2929,Roll n Roast,Clarksburg,"Tea, Cafe, Indian, Mediterranean, Seafood",63,3.3 +2930,Roller's High,Roswell,"Pizza, Mexican, Bakery, Fast Food, Indian",95,3.2 +2931,Royal Chick 'N',Birmingham,"Tea, Cafe, BBQ, Fast Food, Chinese",41,3.3 +2932,Royal Kolkata Biryani,Pellston,"Tea, BBQ, Mediterranean, Seafood",87,2.7 +2933,Sameer's Restaurant,Victoria,"Desserts, Bakery, BBQ, Indian, Mediterranean, Seafood",27,2.5 +2934,Sanjha Chulha,Saipan,"Tea, BBQ, Desserts, Fast Food",67,2.7 +2935,Shepherd's,Minot,"Tea, Chinese, Mexican, Seafood",58,3.1 +2936,Soya King,Worcester,"Tea, American, BBQ",55,2.6 +2937,Tasty Tonight,Pellston,"Tea, Bakery",97,3.1 +2938,The Mustard,Fayetteville,"Tea, Bakery, Mexican, BBQ",86,2.9 +2939,Tibb's Frankie,Wichita Falls,"Tea, BBQ, Seafood",35,3.2 +2940,Wazwaan Restaurant,Dillingham,"Pizza, Italian, Mexican, Fast Food, Seafood",76,3.2 +2941,Yummi Kolkataa,Greenville,"Tea, Cafe, Indian, American",87,3.2 +2942,Annapurna Sweet House,Marquette,"French, Bakery, Desserts, Seafood",36,3.7 +2943,Ashirbad,Hilton Head,"Pizza, Bakery, Mediterranean, Seafood",50,3.6 +2944,Chocolatiers - The Chocolate Boutique,Fairbanks,"Chinese, Bakery, Fast Food",52,3.8 +2945,Dadu Cutlet Shop,Evansville,"Tea, Cafe, BBQ, Fast Food, Chinese",74,3.7 +2946,Dogs & Wiches,Laramie,"Cafe, Bakery, Pizza, Seafood",33,3.9 +2947,Maa Tara,Laramie,"Desserts, Italian, BBQ, Cafe, Seafood",28,3.6 +2948,My Spice Kitchen,Memphis,"Desserts, French, Bakery, Fast Food, Mediterranean, Seafood",82,3.5 +2949,The Singing Tree,Binghamton,"Bakery, Desserts",73,3.7 +2950,Baba Chicken Ludhiana Wale,Grand Junction,"Tea, Pizza, Indian, Fast Food",12,0.0 +2951,Bengal Snacks,La Crosse,"Bakery, American, Desserts",35,0.0 +2952,Brownies & More,Charlotte Amalie,"Tea, Cafe, Pizza, BBQ",29,0.0 +2953,Cafe Coffee Day,Mission,"Tea, Pizza, BBQ, Cafe, Mediterranean",39,0.0 +2954,Craving Cure,Roanoke,"American, BBQ, Cafe, Indian, Seafood",38,0.0 +2955,Cuisine,Prescott,"Desserts, Cafe, Bakery, Chinese, Seafood",89,0.0 +2956,Food Nation,Greer,"Tea, BBQ, Desserts",23,0.0 +2957,Kamala Fast Food & Chinese,Albuquerque,"Tea, Cafe, Pizza, American",63,0.0 +2958,Lokenath Sweets,Norfolk,"Fast Food, Seafood",15,0.0 +2959,Me and My Cake,Missoula,"Desserts, Pizza, Italian, Mexican, Fast Food, Cafe",73,0.0 +2960,Chulha Punjabi Da,Columbus,"Desserts, Tea, Pizza, Bakery, Chinese",55,2.4 +2961,Viva Hyderabad,Trenton,"Desserts, Tea, Italian, Bakery, Cafe, American",40,2.3 +2962,Metro Grill,Jacksonville,"Tea, Pizza, Desserts",83,3.4 +2963,Cafe Cruise,Bismarck,"Cafe, Pizza, BBQ, Chinese, Indian, Seafood",13,2.8 +2964,Etal The Lounge Bar,Santa Maria,"Desserts, Pizza, BBQ, Bakery, Indian",71,3.2 +2965,"Game of Legends - Sports Bar, Grill, & Lounge",Gunnison,"Tea, Pizza, Desserts",65,3.5 +2966,Al-raaya,Moab,"Tea, Cafe, Mexican, Desserts",23,3.1 +2967,Authentique Bites,Ithaca,"Tea, Indian, Mediterranean, Desserts",58,3.2 +2968,Embassy,Pittsburgh,"French, Bakery, Indian, Pizza",97,3.0 +2969,Narang's Bake 'n' Cake,Latrobe,"Cafe, Mexican, Seafood",26,3.0 +2970,New Darvesh,Charlotte Amalie,"French, BBQ, Mediterranean, Desserts",95,3.0 +2971,1UP,Kansas City,"Tea, Bakery, BBQ, Cafe, Mediterranean",17,3.5 +2972,Gujarati Samaj Santushti,Sacramento,"Tea, Pizza, Fast Food",12,3.6 +2973,Hind Bakery & Chinese Fast Food,St. Petersburg,"Pizza, BBQ, Fast Food, Chinese, Mediterranean, Seafood",94,0.0 +2974,Hot Pot,Durango,"Seafood, Bakery, Fast Food",21,0.0 +2975,Punjabi Flavour,Knoxville,"Tea, Bakery, Cafe, Indian, Seafood",41,0.0 +2976,Saras Fast Food Feast,Lynchburg,"Tea, BBQ, Fast Food, Cafe, Mediterranean",62,0.0 +2977,Shama Chicken Corner,Brownsville,"Bakery, Indian, Cafe",98,0.0 +2978,The Night Owl,Myrtle Beach,"Desserts, Tea, American, Bakery, Indian, Seafood",12,0.0 +2979,Wimpy Sweets And Confectioners,Great Falls,"French, Cafe, Fast Food",46,0.0 +2980,Boa Village,Charlottesville,"Tea, Seafood, Italian",46,4.0 +2981,Anand Ji Restaurant,Hilton Head,"Bakery, BBQ",20,3.1 +2982,Baskin Robbins,Tampa,"Desserts, Pizza, French, BBQ, Seafood",55,3.3 +2983,Bhoj Restaurant,Omaha,"Pizza, Indian, Fast Food",40,2.8 +2984,Brijwasi Restaurant,Sarasota,"Chinese, BBQ, Seafood",50,2.8 +2985,Cafe Coffee Day - The Lounge,Brunswick,"Cafe, Pizza, Desserts",70,3.2 +2986,Cafe Coffee Day,Mosinee,"Pizza, Mexican, Bakery, Fast Food, Cafe",40,2.9 +2987,Chaat Tadka,Dubuque,"Tea, Cafe, Pizza",98,2.8 +2988,Chawla's Unique Chicken Corner,Hagerstown,"Bakery, Indian, Seafood",24,3.2 +2989,Dawat Khana,Marquette,"Mexican, Desserts, Fast Food",55,2.5 +2990,Eat n Joy,Lynchburg,"Bakery, Seafood",22,3.2 +2991,Khan Chicken Biryani,Eau Claire,"Desserts, Italian, French, Bakery, Fast Food",52,2.9 +2992,Kolkata Roll,Pellston,"Pizza, Seafood",67,2.8 +2993,R. Ahmad Food,Dallas,"Desserts, Bakery, BBQ, Chinese, Mediterranean, Seafood",58,3.0 +2994,Sab Ke Khatir,Burbank,"Pizza, Bakery, Desserts, Fast Food",76,3.1 +2995,Bon Bon Pastry Shop,Cape Girardeau,"Desserts, Tea, Pizza, French, Mexican, Cafe",24,3.5 +2996,Moksha,Austin,"Cafe, Bakery, BBQ, Fast Food",12,3.7 +2997,Pebble Street,Charleston,"Fast Food, Cafe, Indian, Italian",37,3.9 +2998,Kebab Gallery,Kona,"Desserts, Mexican, BBQ, Fast Food, American",23,0.0 +2999,Amber,Norfolk,"Chinese, Pizza, Cafe, Seafood",36,2.6 +3000,Attitude Kitchen & Bar,Bristol,"Tea, Pizza, Mexican, Fast Food, American",42,2.9 +3001,Cafe Coffee Day,San Juan,"BBQ, Cafe, Pizza, Desserts",97,3.4 +3002,Castle 9,Dallas,"Mexican, Bakery, BBQ, Fast Food, Cafe, American",32,3.1 +3003,Costa Coffee,Cheyenne,"Bakery, BBQ, Fast Food, Mediterranean, Seafood",79,3.4 +3004,Delhi Darbar Dhaba,Seattle,"Cafe, Pizza, Mediterranean",69,3.2 +3005,Garam Dharam,Eau Claire,"Cafe, American, Desserts, Fast Food",100,3.4 +3006,Gola Sizzlers,Pocatello,"Desserts, French, Bakery, Fast Food, Cafe",34,3.0 +3007,Indian Coffee House,Sioux City,"Cafe, Seafood, Italian",12,3.3 +3008,My Bar Lounge & Restaurant,Petersburg,"Desserts, French, Fast Food, Indian, Seafood",37,2.7 +3009,My Bar Square,Kansas City,"Tea, Mediterranean, Desserts, Seafood",85,2.5 +3010,Sagar Ratna,Arcata,"Fast Food, Pizza, Bakery, Seafood",77,3.4 +3011,The Immigrant Cafe,Yakima,"Cafe, Pizza, Bakery, BBQ",75,3.2 +3012,MOB Brewpub,South Bend,"Cafe, Mexican, American, BBQ",67,4.7 +3013,Naturals Ice Cream,Brownsville,"Desserts, Fast Food, Chinese, Mediterranean, Seafood",75,4.9 +3014,Zabardast Indian Kitchen,Detroit,"Bakery, Desserts, Seafood",76,4.7 +3015,Anand Restaurant,Amarillo,"Fast Food, Seafood, Desserts, Italian",53,3.6 +3016,Berco's,Scottsbluff,"Chinese, Desserts, Tea, Italian, Cafe, Seafood",71,3.9 +3017,Blues,West Yellowstone,"Tea, Pizza, Bakery, Cafe, American",57,3.7 +3018,Burger King,San Diego,"Pizza, Italian, French, Fast Food, Seafood",20,3.8 +3019,Burger Singh,Cedar City,"Desserts, Italian, Bakery, Cafe, Seafood",62,3.6 +3020,Cafe Coffee Day The Square,Albany,"Tea, Chinese, BBQ, Seafood",25,3.6 +3021,Cafe Dalal Street,Alamosa,"Cafe, Mexican, BBQ",99,3.7 +3022,Cafe Hawkers,Dallas,"Bakery, Indian, BBQ",72,3.7 +3023,Cafe Public Connection,Sioux Falls,"Bakery, Pizza, Mediterranean, Italian",57,3.7 +3024,Caf愆 MRP,Bend,"Tea, French, Mexican, Cafe",45,3.6 +3025,Caffe Tonino,Cheyenne,"Pizza, American, BBQ, Seafood",97,3.9 +3026,Cha Bar,Grand Junction,"Tea, Bakery, American, BBQ",10,3.9 +3027,Chaayos,Charleston,"Pizza, Italian, BBQ, Fast Food, Cafe",16,3.9 +3028,Chew - Pan Asian Cafe,Yakima,"Fast Food, Pizza, Seafood",71,3.9 +3029,China Garden,St. Cloud,"Desserts, Tea, Pizza, Fast Food, American",10,3.9 +3030,Desi Vibes,Prescott,"Tea, Mexican, American, Seafood",33,3.9 +3031,Domino's Pizza,Grand Rapids,"Desserts, Cafe, Bakery, BBQ, Chinese",46,3.7 +3032,Dunkin' Donuts,Montgomery,"Desserts, Tea, French, Bakery, Seafood",26,3.8 +3033,Dunkin' Donuts,Shreveport,"Tea, Bakery, BBQ, Fast Food",94,3.9 +3034,Embassy,Daytona Beach,"French, Bakery, Indian, Seafood",94,3.5 +3035,FLYP@MTV,Lake Charles,"BBQ, Mediterranean, Desserts, Seafood",79,3.9 +3036,GoGourmet,Nashville,"Tea, Cafe, Indian, Mediterranean",34,3.7 +3037,Haldiram's,Hagerstown,"Tea, Pizza, Cafe, American, Seafood",81,3.9 +3038,Indian Grill Company,Manchester,"Desserts, Tea, Italian, BBQ, Chinese, Seafood",44,3.7 +3039,Jain Chawal Wale,Alpena,"Desserts, Pizza, Italian, Mexican, Cafe",20,3.8 +3040,Jungle Jamboree,Cody,"Seafood, Pizza, Mediterranean, Fast Food",93,3.8 +3041,Kake Da Hotel,Lexington,"Pizza, Italian, French, BBQ, Cafe",41,3.5 +3042,Kebab Xpress,Manhattan,"Desserts, American, BBQ, Fast Food",14,3.5 +3043,KFC,Honolulu,"Pizza, Bakery",94,3.7 +3044,Khan Chacha,Lynchburg,"Tea, Pizza, Bakery, Seafood",14,3.7 +3045,Kinbuck 2,Brunswick,"French, BBQ, Seafood, Italian",82,3.9 +3046,La Americana,Roanoke,"Pizza, Mexican, Bakery, BBQ, Cafe, Indian",96,3.7 +3047,Lady Baga,Staunton,"Tea, Seafood, BBQ, Fast Food",49,3.7 +3048,Life Caffe,La Crosse,"Pizza, French, Bakery, BBQ, Fast Food",44,3.6 +3049,Lord of the Drinks,Huntsville,"French, Pizza, Fast Food",70,3.9 +3050,McDonald's,Lake Charles,"Tea, Chinese, Cafe",80,3.8 +3051,McDonald's,Columbus,"Desserts, Pizza, French, BBQ, Indian, Seafood",75,3.7 +3052,Moets Arabica,Rockford,"Tea, Bakery, Indian, Fast Food",43,3.5 +3053,Mother India,St. Cloud,"French, Bakery, Indian, Cafe",30,3.9 +3054,Mughlai Junction,Des Moines,"Chinese, Pizza, Bakery, Seafood",27,3.9 +3055,My Bar Headquarters,Williston,"Bakery, Mediterranean, Seafood",87,3.7 +3056,Nando's,Green Bay,"Cafe, Pizza, Bakery, Fast Food",27,3.7 +3057,Nizam's Kathi Kabab,Oklahoma City,"Desserts, Tea, Cafe, BBQ, Chinese",39,3.8 +3058,Oh My God,Charlotte Amalie,"Desserts, Pizza, Italian, Bakery, Cafe",83,3.8 +3059,Open House Cafe,Florence,"Desserts, Pizza, Bakery, Indian, Mediterranean, Seafood",94,3.8 +3060,Parikrama - The Revolving Restaurant,Fort Wayne,"Tea, Pizza, Italian, Mexican, Bakery, BBQ",80,3.8 +3061,Pind Balluchi,Jacksonville,"Bakery, BBQ, Seafood",89,3.6 +3062,Pizza Hut,Punta Gorda,"Desserts, Tea, Bakery, American, Mediterranean, Seafood",68,3.5 +3063,Playboy Cafe,Minneapolis,"Cafe, Mexican, Bakery",60,3.7 +3064,Privee',Madison,"Desserts, French, Mexican, Fast Food, Cafe, Seafood",30,3.6 +3065,Punjabi By Nature,Brainerd,"Pizza, Bakery, Fast Food, American, Mediterranean, Seafood",45,3.7 +3066,Quote - The Eclectic Bar and Lounge,Richmond,"Pizza, Fast Food",49,3.5 +3067,Rajdhani Thali Restaurant,Staunton,"Desserts, Italian, French, Bakery, Seafood",95,3.6 +3068,Route 04,Everett,"Tea, Bakery",45,3.5 +3069,Sbarro,Rochester,"Desserts, Italian, Mexican, Bakery, BBQ",60,3.5 +3070,Shake Square,Melbourne,"Desserts, Fast Food",91,3.7 +3071,South Indian Snacks,Yakutat,"Cafe, BBQ",82,3.6 +3072,SSKY Bar & Lounge,Charleston,"Tea, Bakery, Desserts, Fast Food",32,3.5 +3073,Starbucks,Nantucket,"French, Bakery, Fast Food, Cafe, Seafood",28,3.8 +3074,Subway,Fayetteville,"Pizza, Italian, Bakery, BBQ, Indian",52,3.5 +3075,Tamasha,St. Petersburg,"Tea, French, Bakery",52,3.7 +3076,Taste of China,Idaho Falls,"French, Bakery, Fast Food, Indian, Seafood",19,3.5 +3077,Teddy Boy,Marquette,"Pizza, Bakery, Desserts, Seafood",99,3.9 +3078,The Beer Cafe - BIGGIE,Texarkana,"Cafe, Pizza, Mediterranean, Fast Food",13,3.8 +3079,The Flying Saucer Cafe,Augusta,"Desserts, Pizza, BBQ, Cafe, Indian",19,3.9 +3080,The Junkyard Cafe,Omaha,"Desserts, Tea, Italian, BBQ, Fast Food, Indian",42,3.9 +3081,The Luggage Room Kitchen And Bar,Elmira,"Pizza, American, BBQ, Fast Food",13,3.5 +3082,The Rolling Joint,Nome,"Tea, BBQ, Bakery, Desserts",37,3.9 +3083,The Vault Cafe,Madison,"Cafe, Mexican, Pizza, Desserts",30,3.9 +3084,Veda,Dodge City,"Desserts, Tea, Bakery, Chinese, Seafood",36,3.9 +3085,Warehouse Cafe,Chattanooga,"Fast Food, Pizza, Seafood",90,3.7 +3086,Zaffran,College Station,"Pizza, Italian, Bakery, BBQ, Fast Food, Indian",77,3.9 +3087,Zen,Hattiesburg,"Desserts, BBQ, Bakery, Cafe, Indian, Mediterranean",78,3.5 +3088,Zizo,Harlingen,"Pizza, Italian, Cafe, Mediterranean, Seafood",84,3.9 +3089,Kettle & Kegs,State College,"Bakery, BBQ, Cafe",80,0.0 +3090,Ovenstory Pizza,Kahului,"Tea, Desserts, Fast Food",57,0.0 +3091,Shree Hari Vaishnav Dhaba,Charlotte,"Bakery, Pizza, American, Cafe",97,0.0 +3092,38 Barracks,Flagstaff,"Tea, Chinese, Mediterranean, Desserts",35,4.4 +3093,Ambrosia Bliss,Hyannis,"Seafood, Pizza, Cafe, Italian",97,4.0 +3094,Ardor 2.1,Clarksburg,"Tea, Cafe, Desserts",27,4.1 +3095,Barbeque Nation,Des Moines,"French, Seafood, Desserts, Fast Food",12,4.1 +3096,Bikkgane Biryani,Lake Charles,"Desserts, Tea, Pizza, Italian, Mexican, Seafood",44,4.1 +3097,Biryani Blues,Jacksonville,"Tea, French, Pizza",93,4.0 +3098,Caffe 9,Salina,"Cafe, Bakery, BBQ, Seafood",71,4.2 +3099,Excuse Me Boss,Clarksburg,"Tea, Seafood",19,4.1 +3100,Fa Yian,Fayetteville,"Desserts, Tea, Cafe, Chinese, Indian",63,4.0 +3101,Farzi Cafe,Newburgh,"Desserts, Pizza, French, BBQ, Cafe, American",92,4.4 +3102,Fuji Japanese Restaurant,Vernal,"Mexican, Pizza, BBQ, Fast Food",66,4.0 +3103,Healthy Routes,Redding,"Tea, Cafe, Pizza",10,4.0 +3104,HotMess,Santa Ana,"Tea, Fast Food, Cafe, Indian, Seafood",13,4.3 +3105,House of Commons,St. Cloud,"Bakery, BBQ",85,4.0 +3106,Johnny Rockets,Las Vegas,"Bakery, BBQ, Seafood",44,4.0 +3107,Odeon Social,Bristol,"Tea, Mexican, Bakery, Cafe, American",80,4.1 +3108,Pebble Street,Houston,"Tea, American, Mediterranean, BBQ",73,4.0 +3109,Piali - The Curry Bistro,Des Moines,"Chinese, Pizza, Cafe, Seafood",45,4.1 +3110,Saravana Bhavan,Bozeman,"Tea, American, Desserts",38,4.3 +3111,Smoke On Water,Eau Claire,"Desserts, Tea, Pizza, Italian, Cafe",81,4.1 +3112,Starbucks,St. Louis,"Tea, French, Cafe, Fast Food",92,4.1 +3113,The Darzi Bar & Kitchen,Bend,"Cafe, Desserts, Fast Food",62,4.1 +3114,The G.T. Road,Newport News,"Desserts, Italian, Mexican, BBQ, Fast Food, Seafood",45,4.3 +3115,The Town House Cafe,Lubbock,"Tea, American, BBQ, Cafe, Indian, Seafood",90,4.0 +3116,United Coffee House,Kalispell,"Tea, Bakery, BBQ, Fast Food",81,4.1 +3117,Unplugged Courtyard,Charlotte,"Desserts, French, Bakery, Cafe, Seafood",54,4.0 +3118,Wenger's Deli,North Platte,"Tea, Seafood",78,4.3 +3119,Wenger's,Rochester,"Cafe, Bakery, American, Mediterranean",78,4.3 +3120,{Niche} - Cafe & Bar,Cedar City,"Tea, Mexican, American, BBQ",74,4.1 +3121,Chicken Minar,Los Angeles,"Bakery, Fast Food",25,2.6 +3122,G Lounge,Tampa,"Tea, Cafe, Indian",33,3.2 +3123,Gyms Kook,Yuma,"Tea, Pizza, Italian, Mexican, Bakery, Seafood",73,3.3 +3124,Burger Joint,Sitka,"BBQ, Indian, Desserts",35,3.5 +3125,Eleven to Eleven,Ketchikan,"Tea, Mexican, BBQ, Cafe, Seafood",65,3.1 +3126,Le Chef,Kodiak,"Desserts, Tea, Pizza, Bakery, Chinese",73,3.3 +3127,McDonald's,Kalispell,"Tea, Mexican, Fast Food, Indian, Seafood",82,3.4 +3128,The Buffet Wagon,Savannah,"Cafe, Desserts, Indian, BBQ",69,3.3 +3129,Haldiram's,Williston,"Tea, Mexican, Bakery, BBQ",54,3.5 +3130,Connexions Bar - Crowne Plaza,Redding,"French, Bakery, American, Cafe",20,3.5 +3131,Deli - Crowne Plaza,International Falls,"Bakery, Mexican, American, BBQ",28,3.7 +3132,Lobby Lounge - Crowne Plaza,Atlantic City,"Tea, Desserts, American, BBQ",47,3.2 +3133,Infinity - Crowne Plaza,Huntsville,"Cafe, Desserts, Seafood",51,3.5 +3134,Fiery Grills,Pasco,"Desserts, American, BBQ, Seafood",91,3.3 +3135,McDonald's,Bloomington,"Tea, Indian, BBQ",68,3.4 +3136,Cafe Desire,Burbank,"Bakery, Desserts, Seafood",52,3.5 +3137,Haldiram's,Lynchburg,"Bakery, Indian, Desserts, Seafood",79,3.7 +3138,Kake Di Hatti,Rochester,"Tea, Seafood, Bakery, Fast Food",16,3.5 +3139,Akash Deep,Duluth,"Chinese, Pizza, BBQ, Bakery",39,2.8 +3140,Al Saad Foods,Minneapolis,"BBQ, Mediterranean, Seafood",44,3.2 +3141,Cafe Coffee Day,Pago Pago,"Mexican, Bakery, Desserts",51,2.8 +3142,Chandrika,Iron Mountain,"Cafe, Pizza, BBQ",11,2.9 +3143,Dawat-E-Chaman,Decatur,"Chinese, BBQ, Fast Food, Cafe, Mediterranean",42,3.4 +3144,Kallu Nihari,Augusta,"Tea, Pizza, Mediterranean",57,3.0 +3145,King Bikaneri,Durango,"Seafood, Indian, BBQ, Fast Food",87,2.9 +3146,Manchanda Bakery,San Juan,"Fast Food, BBQ, Desserts, Italian",76,3.1 +3147,McDonald's,Hartford,"Pizza, American, BBQ, Seafood",46,2.8 +3148,Mehta Restaurant,Santa Ana,"Mediterranean, Desserts, Seafood",95,3.2 +3149,Shree Jee Rasoi,Lynchburg,"Pizza, Fast Food, Cafe, Mediterranean, Seafood",36,3.0 +3150,Taj Snacks,San Francisco,"Desserts, Tea, Italian, Bakery, BBQ",78,3.0 +3151,Zaika,San Francisco,"Desserts, BBQ, Bakery, Indian, Mediterranean",57,3.4 +3152,Bagli's Kitchen,Melbourne,"Bakery, Indian, Seafood",15,3.7 +3153,Bhaja Govindam,Bemidji,"Fast Food, Pizza, Desserts, Seafood",33,3.8 +3154,Changezi Chicken,Evansville,"Chinese, Mexican, BBQ, Seafood",14,3.7 +3155,Dilli Gate,Bristol,"Seafood, Bakery, Pizza, Italian",75,3.5 +3156,Jahangeer Foods,Albany,"Tea, Pizza, Italian, BBQ, Cafe",59,3.8 +3157,Moti Mahal,Eugene,"French, Seafood, Desserts, Italian",72,3.6 +3158,Nandlal Ka Dhaba,Cody,"Fast Food, Seafood",77,3.6 +3159,Sugandh,Dubuque,"Tea, Pizza, BBQ, Fast Food, Mediterranean",70,3.7 +3160,Suvidha Vegetarian,Fort Lauderdale,"Bakery, Fast Food",55,3.6 +3161,Anupam Jalpan,Lihue,"Tea, Chinese, Pizza",32,0.0 +3162,Aunty's Kitchen,Waco,"Tea, Pizza, Italian, Cafe, Mediterranean",97,0.0 +3163,Cafe Coffee Day,Rockford,"Chinese, Desserts, Pizza, Cafe, Mediterranean",28,0.0 +3164,Delhi 6 Foods,Redding,"BBQ, Bakery, Fast Food, Cafe, American, Mediterranean",47,0.0 +3165,Fry Centre,Roanoke,"Fast Food, BBQ, Desserts, Seafood",47,0.0 +3166,Hilal Hotel Nihari,Owensboro,"Tea, Pizza, Cafe, American, Mediterranean, Seafood",58,0.0 +3167,Iqbal's Mughal Cuisine,Marquette,"Desserts, Pizza, French, BBQ, Bakery, Chinese",70,0.0 +3168,Kake Di Hatti Punjabi Khana,Melbourne,"Pizza, BBQ, Italian",42,0.0 +3169,Kaushal Dhaba,North Platte,"Tea, Pizza, French, Mexican, Cafe",69,0.0 +3170,Khan Foods,Bishop,"Cafe, Bakery, Pizza, Desserts",20,0.0 +3171,Kumar Sweet House,Hibbing,"Chinese, BBQ, Desserts",77,0.0 +3172,Negi Restaurant,Myrtle Beach,"Tea, Bakery, Pizza, Seafood",46,0.0 +3173,Old Delhi Food Factory,Hilton Head,"Chinese, Desserts, Fast Food",57,0.0 +3174,Parantha Point,Lake Charles,"Desserts, Pizza, French, BBQ, Seafood",28,0.0 +3175,R.P.W Pizza,Sioux Falls,"French, Bakery, Indian, Fast Food",53,0.0 +3176,Rajdhani Restaurant,Baltimore,"French, Pizza, Desserts, Fast Food",30,0.0 +3177,Roll's World,Fort Wayne,"Fast Food, Bakery, Desserts, Italian",52,0.0 +3178,Shree Krishna Dhaba,Watertown,"Tea, Cafe, Bakery, Chinese, Seafood",51,0.0 +3179,Taj Chicken Point,Palm Springs,"Mexican, BBQ, Seafood",95,0.0 +3180,Domino's Pizza,Provo,"Desserts, Mexican, BBQ, Fast Food, Cafe",34,2.3 +3181,Delhi 6 - Royal Cuisine Of The Walled City,International Falls,"Desserts, Pizza, French, Fast Food, Seafood",96,4.1 +3182,Food Hub,Scranton,"Tea, Cafe, Bakery, Pizza",39,3.0 +3183,RR China Tawun,Daytona Beach,"Pizza, BBQ, Fast Food, American, Seafood",63,0.0 +3184,Aka Saka,Baton Rouge,"Tea, Cafe, Bakery, BBQ, Chinese, Indian",46,3.3 +3185,Anil Mishtan Wala,Deadhorse,"Pizza, Mexican, Fast Food, Cafe, Seafood",90,3.1 +3186,Barista,Lynchburg,"Tea, Pizza, Fast Food, Chinese, Mediterranean",99,3.3 +3187,Cafe 1 Fast Food,Santa Ana,"Bakery, Fast Food",46,3.0 +3188,Cake Central - Premier Cake Design Studio,Charlottesville,"Pizza, American, BBQ, Fast Food",21,3.4 +3189,Chawla's Tandoori Junction,Anchorage,"Tea, Mexican, Bakery, Fast Food, Cafe, Indian",33,3.3 +3190,Chawnsan Chef,Victoria,"Seafood, Bakery, Desserts, Italian",96,3.4 +3191,Choco Kraft,Los Angeles,"French, BBQ, Fast Food, Cafe, Mediterranean",20,3.2 +3192,Colonel's Kababz,Waterloo,"Chinese, Cafe, Fast Food",94,3.2 +3193,Confectionately Seerat's,Pago Pago,"Tea, Bakery, BBQ",72,3.2 +3194,Country Curries,Waterloo,"Tea, Pizza",77,2.7 +3195,Domino's Pizza,Indianapolis,"Cafe, Mexican, Desserts, Seafood",67,2.5 +3196,Duggal's Rasoi,Brownsville,"Tea, Indian, Seafood",20,3.4 +3197,Firefly India,Dallas,"Cafe, Bakery, American, Italian",87,3.4 +3198,Fluffles - The Fluffy Waffle Co.,Dillingham,"Cafe, Desserts, Indian, BBQ",100,2.5 +3199,Giani's,Moab,"Desserts, Tea, Bakery, Cafe, Mediterranean",63,2.8 +3200,Giani,Long Beach,"Desserts, Pizza, Italian, French, Bakery, Cafe",11,3.3 +3201,Green Chick Chop,North Platte,"Desserts, Pizza, Mexican, BBQ, Chinese",88,2.7 +3202,Gulshan Fish & Chicken Fry,Fayetteville,"Desserts, Fast Food",89,3.2 +3203,Kitchen22,Santa Fe,"Bakery, BBQ, Cafe, American, Seafood",64,3.1 +3204,La Chocoallure,Bristol,"Pizza, BBQ",65,2.9 +3205,Little Dragon,Des Moines,"Fast Food, Tea, Seafood",62,2.9 +3206,Maddi Sweet Centre,Lawton,"French, Desserts, Fast Food",39,3.2 +3207,Man Vs Food The Kitchen,Yuma,"Bakery, Pizza, American",35,3.1 +3208,MB's,Santa Rosa,"Indian, BBQ, Cafe, American, Seafood",65,3.1 +3209,Moet's Sizzlers,Madison,"French, Bakery, Pizza, Mediterranean",10,3.0 +3210,Oberoi's,Pasco,"Desserts, Tea, Pizza, Cafe, Mediterranean",73,3.2 +3211,Punjabee's Darbar,Colorado Springs,"Tea, Pizza, BBQ, Fast Food",53,3.3 +3212,Qureshi's Kabab Corner,Martha's Vineyard,"Pizza, Mexican, Bakery, BBQ, Seafood",49,3.4 +3213,Saleem's Restaurant,Lewiston,"BBQ, Mediterranean, Seafood",72,3.2 +3214,Suri Saab Restaurant,Albuquerque,"Mexican, Mediterranean, Desserts, Seafood",50,3.0 +3215,The Sweet Boutique,Punta Gorda,"Pizza, BBQ, Fast Food, Cafe, American",84,3.3 +3216,Tibb's Frankie,Shreveport,"Desserts, BBQ, Fast Food, Mediterranean, Seafood",87,3.2 +3217,Veg Ex,Alamosa,"BBQ, Fast Food, Cafe, Indian, Seafood",33,3.4 +3218,Zaaika Junction,Dallas,"Desserts, Seafood",48,2.6 +3219,28 Capri Italy,Baltimore,"Cafe, Desserts, Fast Food",28,3.9 +3220,4S Chinese Restaurant,Portsmouth,"Tea, Cafe, Bakery, Indian",77,3.5 +3221,Amici Cafe,Watertown,"Tea, Indian, Fast Food",32,3.6 +3222,Angels in my Kitchen,Santa Barbara,"Seafood, Pizza, BBQ, Fast Food",60,3.8 +3223,Arabian Delites,Elmira,"Pizza, American, BBQ, Seafood",16,3.6 +3224,Baskin Robbins,Del Rio,"Seafood, Desserts, Italian",52,3.7 +3225,Cafe Brown Sugar,Ponce,"Tea, Pizza, American, Fast Food",49,3.7 +3226,Chakhnaa Wala,Billings,"Desserts, Tea, Bakery, Mediterranean, Seafood",58,3.5 +3227,Cocoberry,Daytona Beach,"Bakery, Desserts, Seafood",83,3.6 +3228,Concept,El Paso,"Bakery, Pizza, Desserts",93,3.9 +3229,Deez Biryani & Kebabs,Erie,"BBQ, Desserts, Seafood",50,3.7 +3230,Def Col Social,New Orleans,"Tea, Italian, Bakery, Indian, Seafood",52,3.9 +3231,D韄ner Grill,Charleston,"French, Pizza, Seafood, Italian",67,3.8 +3232,Hong Kong Express,Billings,"BBQ, Mediterranean, Seafood",43,3.8 +3233,Kent's Fast Food,Little Rock,"Tea, Chinese, Bakery",89,3.7 +3234,Koyla Kebab,Salisbury,"Cafe, Indian, Desserts",83,3.6 +3235,Meraki Cafe & Bar,Nome,"Fast Food, Seafood",39,3.6 +3236,Milk Patisserie,Fort Dodge,"Fast Food, Seafood",38,3.8 +3237,Moets Curry Leaf,Dillingham,"Fast Food, BBQ, Mediterranean, Seafood",38,3.5 +3238,Moets Oh! Bao,San Francisco,"Pizza, American, Desserts",60,3.6 +3239,Moets Shack,Waterloo,"Cafe, Mediterranean, Seafood",28,3.7 +3240,Moets Stone,Hancock,"Tea, Pizza, BBQ, Cafe, Indian",57,3.8 +3241,Moti Mahal Delux,Laramie,"Tea, American, Desserts, Fast Food",43,3.8 +3242,Nizam's Kathi Kabab,Pensacola,"Desserts, BBQ, Fast Food, American, Mediterranean",32,3.8 +3243,NYC.PIE,Clarksburg,"Bakery, Indian, Mediterranean, Seafood",44,3.8 +3244,Raro,Kotzebue,"Tea, Bakery, Italian",84,3.7 +3245,Sagar Ratna,Wrangell,"French, BBQ, Cafe",58,3.7 +3246,Subway,Shreveport,"Mexican, Pizza, BBQ, Fast Food",92,3.6 +3247,Swagath,Wrangell,"Pizza, Italian, Bakery, BBQ, Seafood",28,3.9 +3248,The Jugaad Cafe Bar,Aguadilla,"Cafe, Pizza, Mediterranean",35,3.8 +3249,Chicken Biryani Centre,Jacksonville,"Fast Food, Cafe, Pizza, Italian",55,0.0 +3250,Ekta Restaurant,Iron Mountain,"Cafe, Bakery, Mediterranean",11,0.0 +3251,Garam Masala,Fort Myers,"Tea, Desserts, Fast Food",63,0.0 +3252,Gulati Food Corner,Paducah,"Fast Food, Tea, Seafood",68,0.0 +3253,Kolkatta Kathi Roll,Palm Springs,"Tea, Cafe, Pizza, Mexican, Bakery, Chinese",63,0.0 +3254,Muradabadi Shahi Biryani & Chicken Corner,Kansas City,"Cafe, Mexican, Mediterranean, Seafood",61,0.0 +3255,Rara Dragon,Louisville,"Tea, Cafe, Mediterranean, Fast Food",21,0.0 +3256,Mehfil,Elmira,"Fast Food, Pizza, Bakery, Seafood",73,2.4 +3257,Bonne Bouche,San Francisco,"Tea, Chinese, American, Cafe",21,4.1 +3258,Cafe Yell,Bend,"Tea, Bakery, Italian",28,4.4 +3259,Defence Bakery,Richmond,"BBQ, Seafood",36,4.1 +3260,Desi Vibes,Johnstown,"Mexican, BBQ, Pizza",18,4.0 +3261,Ek Bar,Adak Island,"Cafe, Bakery, Seafood, Italian",41,4.1 +3262,Hwealthcafe,Decatur,"Pizza, Bakery, Desserts, Fast Food",44,4.1 +3263,Kathputli,Latrobe,"Fast Food, Tea, Mexican, Italian",85,4.1 +3264,Kulfiano,Salt Lake City,"Tea, Cafe, BBQ",99,4.0 +3265,Number 31,Richmond,"Tea, Chinese, Mexican, Pizza",97,4.2 +3266,RoadRomeo,Portsmouth,"Tea, Fast Food",59,4.0 +3267,Sagar Ratna,College Station,"Desserts, Tea, Pizza, Fast Food, Mediterranean",21,4.0 +3268,The Culinary Pitaara,Charleston,"Tea, Italian, Bakery, BBQ, Cafe",23,4.2 +3269,Whipped,Traverse City,"Cafe, Indian, BBQ",90,4.2 +3270,Milko's,Providence,"Indian, BBQ, Fast Food",70,0.0 +3271,Mom's Bake,Sioux Falls,"Tea, Cafe, Pizza, BBQ",92,0.0 +3272,RV Restaurant,Lubbock,"Tea, BBQ, Fast Food, American, Seafood",39,0.0 +3273,Turning Point Fast Food,Myrtle Beach,"Pizza, Seafood",32,0.0 +3274,A Vaishno Bhojnalaya,Charlottesville,"Desserts, Pizza, Bakery, Cafe, Mediterranean",32,3.1 +3275,Aim Delhi Cafe,Newark,"Tea, BBQ, Desserts, Seafood",87,3.4 +3276,Apni Rasoi,Sault Ste. Marie,"Tea, Chinese, Bakery, Seafood",74,2.8 +3277,Blue Bull Cafe,Charlottesville,"French, Pizza, Seafood",12,2.8 +3278,Cafe Bethak,Newark,"Desserts, BBQ, Bakery, Mediterranean, Seafood",100,3.4 +3279,Cafe Coffee Day,Dillingham,"Indian, Desserts, Seafood",92,3.4 +3280,Cafe Coffee Day,Austin,"French, Bakery, BBQ",59,3.2 +3281,Chakhlo Food Court,Valparaiso,"Chinese, Pizza, Cafe",45,2.6 +3282,Domino's Pizza,Lansing,"Tea, Mexican, Pizza",57,2.5 +3283,Frontier,Lihue,"Pizza, Mexican, Fast Food, Mediterranean, Seafood",79,3.0 +3284,Good Foods,Washington,"BBQ, Desserts, Seafood",65,3.3 +3285,Grain Bell Restaurant,Iron Mountain,"Pizza, Indian, Desserts, Fast Food",53,2.8 +3286,Green Chick Chop,Pittsburgh,"Cafe, Mexican, Desserts, Seafood",72,3.1 +3287,Grover's - The Baker Shop,Charlotte,"Pizza, Bakery, Chinese, Indian, Seafood",30,3.0 +3288,Hookups Cafe & Lounge,Killeen,"Tea, BBQ, Desserts, Seafood",51,3.3 +3289,Jai Hind Dairy,Burbank,"Cafe, Desserts",59,2.8 +3290,Kaveri,Lake Charles,"French, Bakery, Desserts",11,3.3 +3291,Khushboo Vaishno Dhaba,Midland,"Desserts, Cafe, Pizza, Italian, Bakery, Chinese",71,2.9 +3292,Korea Restaurant,Shreveport,"Tea, Mexican, Fast Food",97,3.0 +3293,Kukkad Nukkad,Gainesville,"Pizza, Seafood",63,3.0 +3294,Metro Fast Food,Sacramento,"American, BBQ, Cafe, Indian, Seafood",32,2.6 +3295,Mughlai Flavours,Jamestown,"Pizza, French, Bakery, BBQ, Cafe",12,3.2 +3296,Pitstop,Martha's Vineyard,"Tea, French, Bakery, BBQ, Cafe",61,3.3 +3297,Pizza Hut,Prescott,"French, Bakery, Fast Food",39,3.4 +3298,Prince Snacks & Momo's Point,Charlotte,"Tea, Cafe, Desserts, Fast Food",11,3.4 +3299,Qash Retro Bar,Plattsburgh,"Cafe, BBQ, Fast Food",75,2.7 +3300,Red Chillies,Decatur,"Desserts, Tea, BBQ, Cafe, Indian",13,3.3 +3301,Samrat Bakers,Santa Fe,"Tea, Bakery, Mediterranean, Desserts",40,2.6 +3302,Samrat Restaurant,Norfolk,"Seafood, Cafe, Fast Food",72,3.4 +3303,Shammi Bhai Lassi Wala,San Francisco,"Cafe, French, Pizza, Mediterranean",78,3.2 +3304,Shooters Lounge and Bar,White Plains,"Chinese, BBQ, Cafe, Fast Food",15,2.7 +3305,Singh Ching,Fairbanks,"Pizza, Fast Food",92,3.4 +3306,Southy,Salisbury,"Pizza, BBQ",69,2.6 +3307,Take n Taste Shawarma Zone,West Palm Beach,"Cafe, Pizza, Bakery",91,3.0 +3308,The Night Owl,New Orleans,"Tea, Cafe, Bakery, BBQ",22,2.8 +3309,Tilak's The Diners,Harrisburg,"Cafe, American, BBQ, Fast Food",24,3.1 +3310,Spezia Bistro,Pellston,"Tea, Mexican, BBQ, Bakery, Cafe",84,4.6 +3311,Cent Percent The Pastry Shop,Plattsburgh,"French, Mexican, BBQ, Cafe",25,3.6 +3312,For God's Cake,Grand Forks,"Mexican, American, BBQ, Pizza",21,3.9 +3313,Laxmi Ice Cream,Cheyenne,"Tea, Cafe, Bakery, Seafood",45,3.7 +3314,Mirch Masala MM Cafe,Richmond,"Desserts, Bakery, Cafe, Indian, Seafood",32,3.7 +3315,Moh Maya Cafe,Salina,"Desserts, Bakery, BBQ, Mediterranean, Seafood",62,3.7 +3316,QD's Restaurant,Louisville,"Mexican, Bakery, Fast Food, Cafe, Seafood",60,3.9 +3317,SuperHero Cafe,Deadhorse,"Tea, Cafe, Desserts, Seafood",73,3.8 +3318,Suresh Fast Food,Iron Mountain,"Tea, BBQ, Pizza, Desserts",93,3.7 +3319,Wood Box Cafe,Amarillo,"Desserts, French, Fast Food, Cafe, American",11,3.8 +3320,Best Biryani,Belleville,"Cafe, Pizza, Desserts, Fast Food",19,0.0 +3321,Derawal Soda Fountain,San Francisco,"Tea, Bakery, Indian, American",52,0.0 +3322,Eat & Gulp,Santa Maria,"Fast Food, Pizza, Mediterranean, Italian",52,0.0 +3323,L.N Live Kitchen,Green Bay,"French, Pizza, Indian, Fast Food",52,0.0 +3324,Papa Buns,Dallas,"French, Pizza, Indian, Fast Food",75,0.0 +3325,Preet Fast Foods,Fort Leonard Wood,"Cafe, Pizza",47,0.0 +3326,Sikkim Chinese Food,Harlingen,"Desserts, Tea, French, Bakery, Fast Food, Chinese",82,0.0 +3327,Tawa King,Seattle,"Desserts, Tea, Cafe, Bakery, Chinese",74,0.0 +3328,The Pork Shop,Grand Forks,"Cafe, Indian, Desserts",79,0.0 +3329,TiffinToons,Dallas,"Seafood, Mediterranean, Desserts, Fast Food",99,0.0 +3330,Vaishno Rasoi,Victoria,"Desserts, Pizza, Mexican, Cafe, Indian, Seafood",73,0.0 +3331,Sagar Ratna,Dodge City,"Tea, Seafood, Desserts, Fast Food",65,2.4 +3332,Slice of Italy,Fresno,"Desserts, Tea, Pizza, Mexican, Cafe",16,2.4 +3333,Bakar The Cafe,Brownsville,"Cafe, Fast Food",35,4.1 +3334,Indus Flavour,Pittsburgh,"Tea, Italian, French, Bakery, Cafe, Seafood",67,4.1 +3335,Raw Creams,Santa Rosa,"Cafe, Pizza, Indian, Seafood",38,4.3 +3336,Ricos,Valparaiso,"Tea, Mexican, BBQ, Fast Food",89,4.3 +3337,The Hudson Cafe,Albuquerque,"Pizza, French, Bakery, Fast Food, Cafe",43,4.4 +3338,YOLO 21,Hyannis,"Mexican, Desserts, Fast Food",50,4.2 +3339,Assam Food Stall,Longview,"Bakery, Mediterranean, Fast Food",31,2.8 +3340,Darbar E Awadh,Charlottesville,"French, BBQ, Desserts, Seafood",63,3.2 +3341,Hotel Tamil Nadu,Johnstown,"French, Pizza, Desserts",87,3.1 +3342,Incrivel Goa,Scottsbluff,"Bakery, BBQ, Cafe, Mediterranean, Seafood",49,2.5 +3343,Lakshadweep,Latrobe,"French, Desserts, Fast Food",27,2.8 +3344,Odisha,Greer,"Tea, Seafood, Pizza, Italian",32,3.1 +3345,Rajasthan Food Stall No. 1,Ketchikan,"Pizza, Mexican, Fast Food, Cafe, Seafood",70,3.4 +3346,Shillong View,Valparaiso,"Desserts, Fast Food, Chinese, American, Seafood",10,3.0 +3347,Wazwan,Minot,"Tea, Pizza, Mediterranean",81,3.1 +3348,Zayaka,Branson,"Tea, Chinese, Seafood",54,2.8 +3349,Bihar ki Rasoi,Buffalo,"Tea, Bakery, Desserts",90,3.5 +3350,Bijoli Grill,New Bern,"Desserts, Pizza, American, Cafe, Indian",23,3.7 +3351,Maharashtra Food Stall,Reno,"Pizza, French, Bakery, BBQ, Fast Food",12,3.6 +3352,Manipur Food Stall,Salina,"Cafe, Pizza, BBQ, Seafood",41,3.6 +3353,Momo Mia,Longview,"Desserts, Pizza, French, BBQ, Chinese",19,3.8 +3354,Mother Dairy Ice Cream,Gainesville,"Fast Food, Pizza, Italian",31,3.5 +3355,Nagaland,Reno,"Desserts, Pizza, BBQ, Italian",45,3.7 +3356,Navdanya Organic Food Cafe,Norfolk,"Fast Food, Cafe, BBQ, Seafood",54,3.5 +3357,Tashi Delek Food Stall,Ponce,"Desserts, Pizza, Fast Food, American, Seafood",71,3.5 +3358,Punjabi Rasoi,Idaho Falls,"Desserts, Cafe, Pizza, Chinese, Seafood",86,2.3 +3359,Aggarwal Bikaner Sweets,Portsmouth,"Tea, Italian, Fast Food, Cafe, Indian, Seafood",13,3.0 +3360,Angels Kitchen,Ithaca,"Mediterranean, Desserts, Seafood",78,3.2 +3361,Bedi's Kabab Corner,Owensboro,"Italian, Bakery, Fast Food, Chinese, Seafood",76,3.2 +3362,Bravo Diet Food and Nutrition,Jacksonville,"Desserts, Tea, Bakery, American, Seafood",34,3.0 +3363,Chacha Chicken,La Crosse,"Tea, Seafood",91,2.8 +3364,Chao Cart,Great Falls,"Pizza, Desserts",69,3.3 +3365,Chimney,Erie,"Cafe, BBQ",81,2.9 +3366,Chutneez Ishtyle Bar and Dining,Newport News,"Cafe, Seafood",91,3.3 +3367,Deep Chicken Point,Green Bay,"Pizza, BBQ",68,3.0 +3368,Domino's Pizza,Tucson,"Cafe, Bakery",84,3.3 +3369,Govind Dhaba,College Station,"Tea, Cafe, Desserts, Fast Food",84,3.4 +3370,Huddle Cafe,Muskegon,"Pizza, Bakery, BBQ, Italian",10,3.4 +3371,Kovilakam,Hibbing,"French, Pizza, Seafood",42,3.2 +3372,Mathur's Kitchen,Yuma,"Tea, Cafe, Fast Food, Chinese, American",100,2.6 +3373,McDonald's,Bangor,"Desserts, Mexican, Fast Food, Chinese, Seafood",20,3.3 +3374,New South Indian Hut,Medford,"BBQ, Mediterranean, Seafood",23,3.1 +3375,Night Bite,Roanoke,"Fast Food, Chinese, Cafe, Italian",100,2.6 +3376,Pizza Station,Escanaba,"Tea, Mexican, Bakery, Fast Food, Seafood",46,3.0 +3377,Pummy Restaurant,Lewiston,"Fast Food, Bakery, BBQ, Italian",88,2.7 +3378,Republic of Chicken,New Bern,"Cafe, Seafood",21,3.0 +3379,Salt N' Pepper,Bloomington,"Desserts, French, Mexican, Bakery, Seafood",24,2.7 +3380,Shahi Zaikaa,Paducah,"Seafood, Fast Food",66,3.0 +3381,Shubham,Ithaca,"Desserts, Mexican, Cafe, Indian, Seafood",52,2.7 +3382,South Indian Corner,Miami,"Tea, Bakery, Indian",10,3.3 +3383,Sultan Food,Houston,"Bakery, Desserts",55,3.1 +3384,Uncle Bakery,Victoria,"Desserts, Bakery, Fast Food, Cafe, Mediterranean",16,3.1 +3385,Urban Chopstick,Harlingen,"Cafe, Mexican, Pizza, BBQ",12,2.6 +3386,Urban Kabab,Wichita,"Pizza, Mexican, Bakery, Fast Food, Seafood",74,3.1 +3387,Urban Punjab,Panama City,"Tea, Cafe, BBQ, Seafood",90,3.2 +3388,Haldiram's,Laramie,"Cafe, Pizza, Seafood, Fast Food",68,3.5 +3389,Pizza Hut Delivery,Lewiston,"Chinese, BBQ, Desserts",59,3.6 +3390,Aggarwal Sweet Corner,Ketchikan,"Bakery, BBQ, Desserts, Italian",98,0.0 +3391,Amritsari Naan Hut,Phoenix,"Tea, Cafe, BBQ, Fast Food, Chinese",21,0.0 +3392,Annapurna Bhojnalaya,Birmingham,"Desserts, Pizza, Italian, Fast Food, Indian",60,0.0 +3393,Asia,Santa Fe,"Chinese, Bakery, Cafe, Fast Food",83,0.0 +3394,Bablu Chinese Food,Boston,"Pizza, BBQ",14,0.0 +3395,Bikaner Rasoi,Syracuse,"Desserts, Pizza, Cafe, Indian, Seafood",43,0.0 +3396,Crazzy Bite,Milwaukee,"Tea, Bakery, Desserts",86,0.0 +3397,Da Pizza Farm,Champaign,"Tea, Pizza",47,0.0 +3398,Dada Ka,Indianapolis,"Pizza, Bakery, BBQ, Cafe, Indian",97,0.0 +3399,Friends N Foods,Santa Fe,"Tea, Pizza, Desserts",13,0.0 +3400,Hot N Fresh Pizza,Escanaba,"Tea, Cafe, Bakery",93,0.0 +3401,Kake Di Chap,Manchester,"Fast Food, Cafe, Seafood",33,0.0 +3402,Kathi Junction,Yakima,"Pizza, American, Desserts, Seafood",93,0.0 +3403,KSG,Houston,"Desserts, Tea, Fast Food, American, Seafood",73,0.0 +3404,Mahavrer Chap Express,Long Beach,"Desserts, Tea, BBQ, Fast Food, American",35,0.0 +3405,Mamma Drools,Dallas,"BBQ, Fast Food, Cafe, Mediterranean, Seafood",45,0.0 +3406,Pawan Foods,Abilene,"Tea, Cafe, American, Desserts",74,0.0 +3407,Pizza Hub,Melbourne,"Tea, Bakery, Cafe, American, Seafood",14,0.0 +3408,Prem Rasoi,West Palm Beach,"Fast Food, Chinese, Cafe, Seafood",34,0.0 +3409,Sanjha Chulah Babe Da,Charlottesville,"Tea, Bakery, Mediterranean",76,0.0 +3410,Shakun Cook-Du-Ku,Lihue,"Tea, Bakery, Mediterranean, Fast Food",42,0.0 +3411,The Taste of Punjab,Asheville,"Tea, Cafe, Indian, BBQ",17,0.0 +3412,Vaishno Bhojanalaya,Worcester,"Italian, BBQ, Fast Food, Cafe, Indian, Seafood",35,0.0 +3413,Wrap N Roll,Minot,"Cafe, Fast Food",47,0.0 +3414,Zaika-E-Chaap Express,Birmingham,"French, Pizza, BBQ",90,0.0 +3415,Slice of Italy,Sioux City,"Tea, Pizza",83,2.3 +3416,Bemisaal,Fort Dodge,"Indian, BBQ, Seafood",84,3.4 +3417,Grillz,Anchorage,"Tea, Cafe, Indian, Desserts",56,2.5 +3418,Tandoor Ka Zaika,Peoria,"Mexican, Bakery, Desserts, Pizza",50,2.6 +3419,The Barley House,Adak Island,"Italian, Bakery, BBQ, Fast Food, Mediterranean",58,3.4 +3420,Muffins,Stockton,"Seafood, Desserts, Italian",26,3.5 +3421,Dilli Darbar,Abilene,"Pizza, Bakery, BBQ, Seafood",40,2.3 +3422,Cafe Coffee Day,Fort Smith,"Tea, BBQ, Seafood",36,3.0 +3423,Domino's Pizza,International Falls,"Cafe, Pizza, Bakery, Chinese, Seafood",82,3.0 +3424,Kings Kulfi,Adak Island,"French, BBQ, Cafe, Fast Food",50,3.3 +3425,McDonald's,Walla Walla,"Pizza, Bakery, BBQ, American, Seafood",14,3.6 +3426,Tibb's Frankie,Manchester,"Chinese, Bakery, BBQ, Desserts",82,0.0 +3427,Cafe E,Greenville,"Tea, Pizza, Bakery, Seafood",87,3.5 +3428,Cha-Shi,Salina,"Tea, Bakery, Seafood",55,3.8 +3429,Habibi,Nantucket,"Cafe, Fast Food",69,3.1 +3430,Tikka Town,Norfolk,"Seafood, BBQ, Desserts, Fast Food",39,2.8 +3431,4700BC Popcorn,Cedar Rapids,"Desserts, Tea, BBQ, Cafe, American",17,3.8 +3432,Al Zaitoon,Monterey,"Cafe, Pizza, Fast Food, Chinese, Indian, Seafood",29,3.5 +3433,Dunkin' Donuts,Raleigh,"Pizza, BBQ, Fast Food, Cafe, American",68,3.8 +3434,Foodhall,Harrisburg,"Fast Food, Desserts, Italian",33,3.9 +3435,Haldiram's,Fort Myers,"Tea, Cafe, Mediterranean",43,3.7 +3436,TGI Friday's,Greer,"Tea, Pizza, Indian, Mediterranean",63,3.7 +3437,The Beer Cafe,Cedar City,"Desserts, Cafe, Pizza, Chinese, American, Seafood",54,3.5 +3438,Big Chill,Portland,"Tea, Pizza, Italian, BBQ, Seafood",92,4.4 +3439,Cinnabon,Nome,"Tea, Pizza, American, Seafood",77,4.1 +3440,RollsKing,Baltimore,"Tea, Pizza, BBQ",20,4.1 +3441,Tikka Town,Hilton Head,"Cafe, Pizza, Seafood",72,3.2 +3442,Cafe Brown Sugar,Greer,"Tea, BBQ, Desserts, Fast Food",83,3.6 +3443,Chaayos,Cincinnati,"Tea, Pizza, Fast Food",87,3.9 +3444,Cinnabon,Hyannis,"Tea, Pizza, Cafe, Indian, Seafood",87,3.9 +3445,Foodhall,Kodiak,"Cafe, Seafood",96,3.7 +3446,Haldiram's,Eau Claire,"Cafe, Mediterranean, Desserts",96,3.7 +3447,Keventers,Cleveland,"Pizza, American, Desserts, Fast Food",54,3.8 +3448,Krispy Kreme,Greer,"Tea, Mexican, Bakery, BBQ",75,3.9 +3449,L'Opera,Redding,"French, Cafe, Seafood",70,3.8 +3450,Mad Over Donuts,Clarksburg,"Tea, Cafe, Bakery, Desserts",47,3.7 +3451,Starbucks,St. Louis,"Desserts, Pizza, Cafe, Mediterranean, Seafood",100,3.9 +3452,The Beer Cafe,Chattanooga,"Tea, Pizza, Fast Food",62,3.8 +3453,Ooh Lala !,Tucson,"Chinese, Bakery, Cafe",70,4.0 +3454,Domino's Pizza,Philadelphia,"Tea, Pizza, Fast Food, Chinese, American, Seafood",96,2.7 +3455,Flaming Wok,Ogden,"Tea, Cafe",23,2.7 +3456,Frontier,Flagstaff,"Tea, Bakery, American, BBQ",47,3.0 +3457,Haldiram's,Kansas City,"Desserts, Tea, Italian, Mexican, Cafe",25,3.6 +3458,McDonald's,Dallas,"Cafe, Seafood",56,3.5 +3459,Meatwale.com,Anchorage,"Mexican, Indian, Desserts, Pizza",51,0.0 +3460,Subway,Chattanooga,"Tea, Cafe, Bakery, Desserts",66,2.4 +3461,Twenty Four Seven,Durango,"Tea, Chinese, Pizza, Desserts",18,2.9 +3462,Wah Ji Wah,Shreveport,"Cafe, Mexican, Indian, Bakery",73,2.9 +3463,Aggarwal Sweets,Brownsville,"French, Pizza, Chinese, Desserts",54,2.7 +3464,Al-Malik,Jacksonville,"Mediterranean, Desserts, Fast Food",32,3.2 +3465,Bikaner Sweets,Cheyenne,"Tea, Pizza, Seafood",76,2.8 +3466,Cafe Coffee Day,Everett,"Cafe, BBQ, Desserts, Fast Food",43,2.7 +3467,Delhi Rasoi,Norfolk,"BBQ, Fast Food",85,3.3 +3468,Food Land,Concord,"Pizza, American, Desserts, Seafood",33,3.2 +3469,Froshier Fruits,Christiansted,"Tea, Bakery, BBQ, Italian",81,3.0 +3470,Govinda's Confectionery,Nashville,"Tea, Bakery, Mediterranean, Fast Food",15,3.1 +3471,Halka Fulka,Nome,"Tea, Desserts",74,3.1 +3472,Hasty Tasty,Peoria,"Tea, Seafood, Desserts, Fast Food",15,2.8 +3473,Ikreate,Laramie,"Tea, Italian, Fast Food, Mediterranean, Seafood",24,3.1 +3474,Khan's Dilli-6 Biryani,Arcata,"Tea, French, Indian, BBQ",59,3.0 +3475,Kolkata Hot Kathi Roll,San Angelo,"Desserts, Tea, Pizza, Bakery, Indian",74,2.7 +3476,Kowloon Express,Scottsbluff,"Tea, Pizza, American, Seafood",65,3.4 +3477,LaDiDa,Mosinee,"Fast Food, French, Seafood, Italian",72,3.2 +3478,Litti.In,Moline,"Pizza, Italian, BBQ, Cafe, Indian, Seafood",49,2.8 +3479,Mughals Rasoi,White Plains,"Tea, Pizza, Fast Food, Cafe, Mediterranean",92,3.2 +3480,Naagar Foods,Gulfport,"Tea, Cafe, Pizza, Bakery",27,3.1 +3481,Novelty Chicken Corner,Jacksonville,"Tea, Fast Food, Italian",76,3.3 +3482,Raju Vaishnav Dhaba,Salisbury,"Tea, American, BBQ, Fast Food",23,3.2 +3483,Republic of Chicken,Newark,"Cafe, Bakery, Desserts, Fast Food",42,2.9 +3484,Shiv Shakti Vaishno Bhojnalaya,Devils Lake,"Desserts, French, Fast Food, American, Seafood",57,3.1 +3485,Spice Tree,Cedar City,"Bakery, Fast Food",47,2.7 +3486,Vadapav Junction,Sacramento,"Tea, Chinese, BBQ, Fast Food",90,3.2 +3487,Zaaika Junction,Ketchikan,"Cafe, Pizza, Bakery, Desserts",92,3.1 +3488,17 Degree Food Service,Petersburg,"Seafood, Fast Food",66,0.0 +3489,Aggarwal Eating Point,Idaho Falls,"Bakery, Pizza, Desserts, Fast Food",80,0.0 +3490,Al- Laziz,Ogdensburg,"Cafe, Pizza, American, Desserts",97,0.0 +3491,Al- Sheikh,Gulfport,"Bakery, BBQ, Fast Food, Cafe, Indian",36,0.0 +3492,Anupama Sweets & Restaurant,Nantucket,"Bakery, Indian, Fast Food",41,0.0 +3493,Aurangzeb,Trenton,"Pizza, American, Desserts",90,0.0 +3494,Da Pizza Corner,Lynchburg,"Tea, Cafe, Desserts, Italian",56,0.0 +3495,Delhi Food Adda,La Crosse,"Desserts, Pizza, Cafe, Indian, Seafood",12,0.0 +3496,Delhi Lazeez,Key West,"Tea, Chinese, Bakery, Seafood",40,0.0 +3497,Delhi Pizza Corner,St. Petersburg,"Tea, Desserts",28,0.0 +3498,Dessert Carte,Grand Rapids,"Indian, BBQ, Fast Food",36,0.0 +3499,Firangi Mithai,Omaha,"Bakery, Fast Food",79,0.0 +3500,Ghar Ka Khana,Tampa,"Tea, BBQ, Seafood",31,0.0 +3501,Heera Chicken Corner,Hagerstown,"Tea, BBQ",52,0.0 +3502,Jagram Dhaba,Atlanta,"Cafe, Mexican, Seafood",69,0.0 +3503,Janaab,Jamestown,"Pizza, Fast Food, Cafe, Indian, Seafood",38,0.0 +3504,K.K. Fast Food Service,Pellston,"Chinese, Cafe, Desserts",71,0.0 +3505,Kasur Khyon,Bend,"Seafood, Indian, Cafe, Italian",77,0.0 +3506,Kitchen King,Nashville,"Pizza, Italian, BBQ, Cafe, Mediterranean",13,0.0 +3507,Laziz Chinese Fast Food,Bristol,"Tea, BBQ, Desserts",80,0.0 +3508,Munch Brunch Cafe,New Bern,"Cafe, Pizza, Desserts, Seafood",13,0.0 +3509,Piyu Fast Food,Abilene,"Mexican, Indian, Desserts, Pizza",88,0.0 +3510,Punjabi Tandoor,Santa Barbara,"Bakery, BBQ",46,0.0 +3511,Roll Corner,Branson,"Fast Food, Pizza, Seafood",89,0.0 +3512,Sher-e-Punjab,Tallahassee,"Tea, Bakery, Chinese, Indian, Seafood",36,0.0 +3513,Test Restaruants for Medio,Austin,"Tea, Desserts, Fast Food",67,0.0 +3514,Uncle Sam,Newburgh,"Desserts, Pizza, BBQ, Cafe, American",56,0.0 +3515,Vijay Store,Green Bay,"French, Pizza, Fast Food",72,0.0 +3516,Viya Cupcakery,Wichita Falls,"Cafe, Desserts, Seafood",25,0.0 +3517,Zaika Muradabadi,Boise,"Tea, Pizza, Seafood",88,0.0 +3518,Asian Haus,Durango,"Fast Food, Seafood, Pizza, Italian",26,4.1 +3519,Bake Club,San Luis Obispo,"Pizza, American, Bakery, BBQ, Fast Food, Indian",17,3.2 +3520,Barichi,Mission,"Tea, Bakery, American, Desserts",94,2.9 +3521,Barista,Toledo,"Desserts, Bakery, Fast Food, Indian, Seafood",11,3.2 +3522,Baskin Robbins,Pittsburgh,"Tea, Pizza, American",85,2.6 +3523,Bite & More,Sarasota,"Chinese, Desserts, Indian, BBQ",82,3.3 +3524,Blue Water Grille Express,Oakland,"Tea, Seafood, Desserts, Fast Food",75,2.6 +3525,Brainfreezzers,Akron,"Pizza, Bakery",37,3.0 +3526,Caboose X Cafe & Lounge,Atlanta,"Bakery, Fast Food, Chinese, Indian, Seafood",23,3.2 +3527,Cafe Buddy's,Yakutat,"Tea, Bakery, American, Seafood",31,2.9 +3528,Cafe Coffee Day,Dallas,"Fast Food, Desserts, Italian",76,2.9 +3529,Chinese Food,Oakland,"Cafe, Bakery, Mediterranean, BBQ",64,3.1 +3530,Chinese King,Devils Lake,"Tea, BBQ, American, Mediterranean, Seafood",35,2.5 +3531,Cocoberry,Aguadilla,"Chinese, Pizza, American, BBQ",22,3.3 +3532,Eggless Dukes,Provo,"Pizza, Bakery, Desserts",88,3.1 +3533,Empire The Meat Shop,Minot,"French, Pizza, Bakery",100,3.3 +3534,FOG Cafe and Lounge,Marquette,"Tea, Bakery, Mediterranean, Fast Food",96,3.0 +3535,Forty 3 East,Santa Barbara,"Desserts, Pizza, Bakery, Indian, Seafood",65,3.2 +3536,Green Chick Chop,New York,"Tea, French, Cafe, Seafood",26,3.3 +3537,Gyan's,Yakima,"Tea, Pizza, Desserts, Fast Food",25,3.4 +3538,Indi-QUE,Chattanooga,"Tea, Italian, BBQ, Fast Food, Cafe",57,3.3 +3539,Keventers,Montgomery,"Cafe, Pizza",41,3.0 +3540,Pick Fresh Fish,Harlingen,"Tea, French, Bakery, Fast Food",94,3.2 +3541,Sat Guru Dhaba,Kansas City,"Tea, Seafood, Bakery, Italian",94,2.6 +3542,Sharazz,Palm Springs,"Desserts, Tea, Pizza, Italian, Bakery",14,3.2 +3543,Spice Box,Latrobe,"Desserts, Pizza, French, Fast Food, Cafe",69,3.4 +3544,The Baithak's,North Platte,"Tea, Bakery, Desserts",90,3.2 +3545,The Taste of India,Aguadilla,"Tea, Seafood",54,3.2 +3546,Twenty Four Seven,New Orleans,"Pizza, BBQ, Desserts, Italian",18,3.0 +3547,Wrapss,Paducah,"Fast Food, Pizza, Bakery, Italian",96,3.1 +3548,Domino's Pizza,Florence,"Pizza, BBQ, Cafe, American, Seafood",93,3.5 +3549,Dunkin' Donuts,Brainerd,"Tea, Cafe, American",43,3.6 +3550,Naivedyam,Petersburg,"Chinese, Bakery, Cafe, BBQ",49,3.6 +3551,Punjabi Chaap Corner,Amarillo,"Desserts, Pizza, Italian, Bakery, Fast Food",62,3.5 +3552,Rice Bowl,Gulfport,"Bakery, Pizza, Indian",99,3.7 +3553,The Diet Kitchen,Alamosa,"Pizza, Bakery, BBQ, American, Mediterranean",50,3.9 +3554,The Yellow Chef,Wilmington,"French, BBQ, Mediterranean, Fast Food",45,3.7 +3555,Tsui Wong,Billings,"Desserts, Seafood",40,3.8 +3556,VC's Food Paradise,Grand Island,"Desserts, Fast Food, Cafe, Indian, Mediterranean, Seafood",52,3.5 +3557,WeDesi Flavours,Bishop,"Cafe, Pizza, Fast Food",68,3.9 +3558,Hardwari,Dallas,"Desserts, Tea, Pizza, Mexican, Fast Food",28,0.0 +3559,Johny's Vada Pav,Williston,"Pizza, Seafood",22,0.0 +3560,My Kind Of Cafe,San Antonio,"Tea, Seafood, Bakery, Fast Food",94,0.0 +3561,Panchratna Thali,Ketchikan,"Desserts, Tea, Pizza, Fast Food, American",97,0.0 +3562,Punjabi Rasoi,Ithaca,"Tea, Mexican, BBQ, Fast Food, Cafe, Mediterranean",72,0.0 +3563,Shisha,Yakutat,"BBQ, Desserts",28,0.0 +3564,Snacks and More,Louisville,"Tea, Pizza, Italian, Cafe, Indian, Seafood",59,0.0 +3565,Swag Cafe,Dillingham,"Fast Food, Bakery, Mediterranean, Seafood",38,0.0 +3566,The Pink Whisk,Wrangell,"Chinese, Pizza, Mediterranean, Desserts",94,0.0 +3567,Stabbers,Ponce,"Bakery, Pizza, American",98,2.4 +3568,Duke's Pastry Shop,Muskegon,"Cafe, Pizza, Seafood",83,4.1 +3569,Cafe Coffee Day,Syracuse,"Tea, Cafe, BBQ",16,3.1 +3570,Chicago Pizza,Cedar City,"Tea, Cafe, Pizza, Desserts",27,2.5 +3571,Drool Waffles,Jacksonville,"Desserts, Tea, Mexican, BBQ, Cafe",59,3.1 +3572,Gelato Vinto,Deadhorse,"Bakery, Indian, Cafe, Seafood",47,3.3 +3573,Joost Juice Bar,Pocatello,"Tea, Cafe, Pizza, Italian, Fast Food, Chinese",51,3.2 +3574,Karim's,Manchester,"Tea, Pizza, BBQ",60,3.1 +3575,Moti Mahal Delux,Charlotte Amalie,"Desserts, Tea, Italian, Bakery, Cafe",82,3.1 +3576,Sagar Ratna,Salt Lake City,"Desserts, Italian, BBQ, Cafe, American",81,3.3 +3577,Yo! China,Eugene,"Cafe, Pizza",19,2.6 +3578,Chaayos,Gustavus,"Mexican, Desserts, Seafood",70,3.6 +3579,Dimcha,Montgomery,"Tea, Bakery, BBQ",55,3.9 +3580,Keventers,Dodge City,"Tea, Chinese, Desserts",27,3.9 +3581,Khan Chacha,Melbourne,"Tea, Cafe, Seafood",65,3.6 +3582,Sona Pure Veg Paradise,Indianapolis,"Cafe, Desserts, Fast Food",71,3.8 +3583,Subway,Paducah,"Tea, Mexican, Bakery, BBQ",20,3.8 +3584,The Crunch Box,Alexandria,"Pizza, French, BBQ, Mediterranean, Seafood",51,3.7 +3585,Nando's,Augusta,"Tea, Pizza, BBQ, Mediterranean",28,0.0 +3586,FIO Cookhouse and Bar,Chicago,"Desserts, Mexican, Fast Food, Cafe, Seafood",31,4.0 +3587,Lord of the Drinks Forum,New York,"Cafe, Bakery, BBQ, Chinese, Indian",71,4.2 +3588,The Chatter House,Providence,"Tea, Desserts, Italian",36,4.0 +3589,The Flying Saucer Cafe,Wichita,"Tea, Cafe, Pizza, BBQ",41,4.3 +3590,Tea Lounge - Eros Hotel,Eugene,"Tea, Italian, Mexican, Fast Food, Cafe, Seafood",90,3.3 +3591,Blooms - Eros Hotel,Boise,"Desserts, Tea, Bakery, Indian, Seafood",72,3.9 +3592,Lounge & Bar - Eros Hotel,Lewiston,"Desserts, Mexican, BBQ, Cafe, Seafood",67,3.5 +3593,Sweet & Crusty - Eros Hotel,Rhinelander,"Desserts, French, BBQ, Bakery, Mediterranean",12,3.7 +3594,Empress of China - Eros Hotel,Cody,"Mexican, Desserts, Fast Food",87,4.2 +3595,Essex Collections Patisserie,Chattanooga,"Chinese, BBQ, Fast Food",48,3.4 +3596,Essex Village Garden,Presque Isle,"Chinese, Seafood, Fast Food",59,3.4 +3597,Yes Minister - Pub & Kitchen,Laredo,"Desserts, Tea, Pizza, BBQ, American, Mediterranean",20,3.7 +3598,Gupta's Food Point,Omaha,"Desserts, Italian, BBQ, Fast Food, Seafood",21,0.0 +3599,Andhra Bhavan,Augusta,"Mexican, Desserts, Seafood",47,4.2 +3600,Barista,Anchorage,"Tea, Pizza, BBQ, Fast Food",38,3.2 +3601,Indian Accent - The Manor,Aguadilla,"French, Pizza, BBQ",75,4.9 +3602,Dilli Grillz,Gainesville,"Tea, Italian, Bakery, Fast Food, Seafood",41,0.0 +3603,Foodies,North Platte,"Tea, Cafe, BBQ, Fast Food",62,0.0 +3604,Giani's,Twin Falls,"Pizza, Seafood",96,0.0 +3605,FIO Country Kitchen and Bar,Harlingen,"Cafe, Indian, Desserts, Seafood",39,4.2 +3606,Amul Ice-Cream Parlour,West Palm Beach,"Pizza, BBQ, Fast Food, Indian, Mediterranean, Seafood",25,3.0 +3607,Bunty Dhaba,Atlanta,"Seafood, BBQ, Desserts, Italian",99,2.8 +3608,Chawla's,Grand Forks,"French, Pizza, BBQ",84,3.3 +3609,China Town,Sioux Falls,"Desserts, Tea, Pizza, Italian, BBQ",84,3.0 +3610,Chinese Inn,Florence,"Pizza, Bakery, BBQ, Seafood",42,2.8 +3611,Grub Street,Saipan,"Cafe, Mexican, Mediterranean, Seafood",31,3.4 +3612,Guru Kripa,Sitka,"Tea, Cafe, BBQ, Seafood",56,3.0 +3613,Himcream,Portsmouth,"French, Cafe, Fast Food",54,3.3 +3614,Kashish Restaurant & Caterers,Scranton,"Cafe, Desserts, Seafood",23,2.8 +3615,Punjabi's Veg Grill,Corpus Christi,"Pizza, Italian, Fast Food, Cafe, American",66,3.2 +3616,Rahul Meat Corner,Roanoke,"French, Pizza, BBQ, Italian",24,3.1 +3617,Ramesh Vaishno Dhaba,College Station,"Tea, Chinese, Desserts",78,2.7 +3618,The Chinese Hut,Johnstown,"Tea, French, Desserts",67,2.8 +3619,Nagpal Di Hatti,Pago Pago,"Tea, Indian, Desserts, Seafood",64,3.5 +3620,Ramesh Vaishno Dhaba,Milwaukee,"Pizza, BBQ, Fast Food, American, Seafood",36,3.5 +3621,Baweja's Haandi,Palm Springs,"Tea, Seafood, Italian",62,0.0 +3622,Chaman Dhaba,Hilo,"Desserts, Tea, Pizza, French, Chinese",18,0.0 +3623,Insane Foods,Missoula,"Desserts, BBQ, Fast Food, Cafe, Indian",84,0.0 +3624,Jo Jo Chinese Fast Food,Laredo,"Pizza, Bakery, Fast Food, Mediterranean, Seafood",99,0.0 +3625,Kailash Vaishno Dhaba,Harrisburg,"Tea, Bakery, BBQ, Chinese, American, Seafood",52,0.0 +3626,Khurana Eating Point,Harlingen,"Desserts, Seafood",82,0.0 +3627,Lots of Food,Huntsville,"Tea, Cafe",38,0.0 +3628,Madras Cafe,Abilene,"Tea, Pizza, American, Cafe, Indian, Seafood",54,0.0 +3629,Parantha on Call,Alamosa,"Desserts, Tea, Italian, Cafe, Mediterranean, Seafood",49,0.0 +3630,Pompas Chicken,Bismarck,"Cafe, Fast Food",34,0.0 +3631,Prem Ji Delhi Wale,Columbus,"Chinese, American, Desserts, Seafood",24,0.0 +3632,Punjabi Tandoori Tikka,Los Angeles,"Pizza, Italian, Mexican, Bakery, Fast Food, Seafood",47,0.0 +3633,Punjabi's Veg Grill,Daytona Beach,"Bakery, Desserts",36,0.0 +3634,Shree Banke Foods,Bemidji,"Tea, Seafood, Fast Food",22,0.0 +3635,Singh's,Kansas City,"Bakery, Pizza, American, Desserts",76,0.0 +3636,Soya Twist,Devils Lake,"Desserts, Tea, BBQ, Fast Food, Indian",31,0.0 +3637,Spice Studio,Bellingham,"Tea, Italian, Bakery, BBQ, American, Seafood",91,0.0 +3638,Tandoori Tadka,Knoxville,"Chinese, Pizza, Desserts, Fast Food",23,0.0 +3639,Tasty Tandoor,Hartford,"Mexican, BBQ, Seafood",62,0.0 +3640,The Square Meal,Pellston,"Desserts, Tea, BBQ, American, Mediterranean, Seafood",25,0.0 +3641,Barbeque Nation,Syracuse,"Tea, Chinese, American, BBQ",85,4.0 +3642,Burger King,Charleston,"BBQ, Fast Food, Chinese, American, Seafood",86,3.4 +3643,BED,Kalispell,"Fast Food, BBQ, Desserts, Seafood",55,3.0 +3644,Cafe Coffee Day - The Lounge,Greer,"Tea, Cafe, Pizza, Bakery",82,2.6 +3645,Hunger Strike,Wichita Falls,"Desserts, Tea, BBQ, Indian, Seafood",32,3.3 +3646,Karim's,Midland,"Tea, Pizza, Mexican, Cafe, Seafood",77,3.3 +3647,Nescafe,Fort Leonard Wood,"Pizza, Indian, BBQ, Fast Food",85,3.4 +3648,New Bengal Sweets,Billings,"Tea, Pizza, BBQ, Cafe, Indian",91,3.1 +3649,Red Wok,Bloomington,"Desserts, Tea, Mexican, Cafe, American",83,3.3 +3650,Room Service,Buffalo,"Bakery, Indian, BBQ, Italian",94,3.4 +3651,Samavar,Salisbury,"Tea, Bakery, Fast Food, Mediterranean, Seafood",29,3.3 +3652,Subway,Gulfport,"Tea, Mexican, BBQ, Cafe, Mediterranean",88,2.5 +3653,The Cocktail House,Anchorage,"Tea, Bakery, BBQ",81,3.4 +3654,The Food Junction,Jamestown,"Tea, Indian, Fast Food",78,2.8 +3655,The Kathis,Trenton,"Bakery, BBQ, Seafood",64,3.0 +3656,The Munchbox,Ketchikan,"Cafe, BBQ, Mediterranean, Fast Food",66,3.4 +3657,The Sugar Story,Honolulu,"Pizza, Bakery, BBQ, Seafood",60,3.3 +3658,Owl is Well,Portsmouth,"Mexican, Desserts, Seafood",52,4.5 +3659,A Piece of Paris,Appleton,"Cafe, BBQ, Desserts",62,3.6 +3660,Baking Bad,Charlottesville,"Desserts, Tea, Bakery, American, Seafood",22,3.8 +3661,Baskin Robbins,Cheyenne,"Desserts, Pizza, Cafe, Mediterranean, Seafood",61,3.6 +3662,Bliss Bakery,Appleton,"Cafe, Bakery, BBQ, Seafood",47,3.8 +3663,Bread & More,Albuquerque,"Bakery, Mediterranean, BBQ",79,3.7 +3664,Bun Intended,Medford,"Pizza, Mediterranean, Seafood",86,3.9 +3665,Cafe Culture,Escanaba,"Cafe, Mexican, BBQ",67,3.8 +3666,Cafe Diva,Roanoke,"Tea, BBQ",18,3.9 +3667,Cafe Turtle,Helena,"Desserts, Fast Food, Cafe, American, Mediterranean, Seafood",34,3.5 +3668,Caf愆 Healthilicious,Escanaba,"Tea, French, Bakery, Fast Food, American",51,3.5 +3669,Captain Grub,Hilo,"Desserts, Pizza, Italian, Bakery, Fast Food",86,3.7 +3670,Cocoberry,San Juan,"French, Bakery, Desserts, Fast Food",41,3.9 +3671,Ding Ding,Santa Rosa,"Desserts, Pizza, Italian, Bakery, Mediterranean, Seafood",90,3.9 +3672,D韄ner Grill,Anchorage,"Desserts, Pizza, French, Fast Food, Cafe",62,3.7 +3673,Elation,Billings,"Fast Food, Bakery, Seafood",87,3.8 +3674,Fluffles - The Fluffy Waffle Co.,Hancock,"Tea, Chinese, Desserts",80,3.5 +3675,For the Love of Cake,Gustavus,"French, American, Desserts, Seafood",93,3.8 +3676,Gatsby Kitchen & Bar by Club BW,International Falls,"Bakery, Desserts, Seafood",12,3.5 +3677,Grills & Platters,Ogden,"Desserts, Mexican, Bakery, Fast Food, Mediterranean",97,3.5 +3678,Hungry Pistals,Plattsburgh,"Fast Food, Bakery, Seafood",75,3.7 +3679,Jon's head Grill,Cedar Rapids,"Italian, Mexican, Bakery, BBQ, Fast Food, Cafe",75,3.9 +3680,Kebabs & Curries,Nome,"Tea, French, Cafe, Seafood",57,3.7 +3681,Londoners,Waterloo,"American, BBQ, Seafood",34,3.8 +3682,Mad Over Donuts,Erie,"French, Desserts, Fast Food",20,3.8 +3683,New Minar,Walla Walla,"Tea, French, Bakery",62,3.6 +3684,Prince Chaat Corner,Lewisburg,"Cafe, Bakery, Desserts",65,3.7 +3685,Side Wok,Bozeman,"Tea, Pizza, Indian",14,3.8 +3686,Starbucks,Bishop,"Tea, Cafe, Pizza, Desserts",98,3.5 +3687,Thai House by Kylin,Sault Ste. Marie,"Bakery, Indian, Fast Food",42,3.8 +3688,The Chocolate Haven,Bemidji,"Desserts, Tea, Italian, BBQ, Fast Food, Chinese",23,3.6 +3689,The Laidback Cafe,International Falls,"Pizza, French, BBQ, Fast Food, Cafe, Mediterranean",76,3.8 +3690,Tibb's Frankie,Baltimore,"Tea, Cafe, BBQ",24,3.6 +3691,Tirupati Vrindavan,Pago Pago,"Tea, French, Mexican, Desserts",62,3.7 +3692,Wagh Bakri Tea Lounge,El Paso,"Cafe, Mexican, Pizza, BBQ",85,3.7 +3693,Depot48,Lihue,"French, Pizza, Indian, Desserts",31,4.2 +3694,Dezertfox,Valparaiso,"Cafe, Pizza, BBQ, Seafood",90,4.1 +3695,Druk,Abilene,"Cafe, Bakery, Pizza, Seafood",79,4.1 +3696,Gastronomica Kitchen & Bar,Bemidji,"Chinese, BBQ, Cafe, Desserts",84,4.1 +3697,Karate Kitchen,Brownsville,"Mexican, Desserts, Fast Food",77,4.4 +3698,Nimtho,Honolulu,"Pizza, Mexican, Bakery, BBQ, Cafe, Mediterranean",31,4.0 +3699,Noshi - Yum Asian Delivery,Fayetteville,"French, Bakery, Cafe, BBQ",27,4.2 +3700,Nutri Punch,Rockford,"Tea, Chinese, Cafe, Desserts",34,4.0 +3701,Pho King Awesome,Williston,"Indian, BBQ, Seafood",99,4.1 +3702,Roadhouse Cafe,South Bend,"Desserts, Pizza, Bakery, Fast Food, Chinese",24,4.1 +3703,Sakley's The Mountain Cafe,Peoria,"Pizza, Italian, Bakery, BBQ, Mediterranean, Seafood",95,4.3 +3704,Shikhara,Fort Dodge,"Cafe, Mexican, BBQ, Desserts",13,4.2 +3705,Sinyora's,Atlantic City,"Cafe, BBQ, Mediterranean, Desserts",30,4.0 +3706,Stop My Starvation,South Bend,"Tea, Mediterranean, Desserts",56,4.3 +3707,The Grill Kitchen - Gourmet,Brownsville,"Bakery, Mexican, Pizza, BBQ",89,4.1 +3708,The Sugar Cube,Fort Lauderdale,"Tea, Seafood, Pizza, Fast Food",35,4.1 +3709,A Lot Like Cake,Evansville,"Bakery, Indian, Desserts, Fast Food",39,3.1 +3710,A W Foods,Worcester,"Desserts, Cafe, Italian, Fast Food, Chinese, Seafood",92,3.4 +3711,Angels in my Kitchen,Concord,"Desserts, Tea, Mexican, Fast Food, Seafood",27,2.9 +3712,Brown Sugar,Williston,"Desserts, Mexican, BBQ, Fast Food, Mediterranean",18,3.2 +3713,Cakes and Bakes,New Orleans,"Chinese, Seafood, Cafe, Fast Food",17,3.2 +3714,CDB Cafe,Akron,"Desserts, Tea, Mexican, BBQ, Cafe",77,3.4 +3715,Chungwa,Mosinee,"Bakery, Fast Food",96,3.3 +3716,Domino's Pizza,Minot,"Pizza, American, Fast Food",28,3.2 +3717,Fudged,Redding,"Pizza, French, Bakery, BBQ, Seafood",48,3.0 +3718,Gopala,Del Rio,"Bakery, Indian, Mediterranean, Seafood",52,3.2 +3719,Gourmet Affaire's,Key West,"Desserts, Tea, BBQ, American, Mediterranean, Seafood",60,3.4 +3720,Hot N Chilly,Rhinelander,"Fast Food, Cafe, Bakery, Italian",93,2.8 +3721,Kabooze,Hyannis,"Cafe, Pizza, Indian, Bakery",67,3.3 +3722,Koyla Kebab,Pago Pago,"Desserts, Tea, Italian, Bakery, Cafe, American",53,3.1 +3723,LaBont愆,Mason City,"Desserts, Fast Food, Chinese, American, Seafood",61,3.4 +3724,MR.D - Deliciousness Delivered,Scottsbluff,"Pizza, Italian, BBQ, Cafe, Indian",45,3.3 +3725,Panda Wokk,Everett,"Pizza, BBQ, Desserts, Italian",100,3.4 +3726,Relax Xpress,Helena,"Tea, French, BBQ, Fast Food, Seafood",92,3.2 +3727,Rollplay,Niagara Falls,"Tea, Bakery, BBQ, Seafood",83,2.9 +3728,Sagar Ratna,White Plains,"Cafe, BBQ, Mediterranean, Seafood",60,2.7 +3729,Spanish Delights,Ogdensburg,"Pizza, Mexican, BBQ, Fast Food, Cafe",38,3.1 +3730,Subway,Austin,"Tea, Mexican, Seafood",55,3.3 +3731,The Beer Cafe,Roswell,"Cafe, Mexican, Bakery, Seafood",39,3.4 +3732,Tashan,Charleston,"Desserts, Pizza, Bakery, Cafe, American",60,4.6 +3733,Amalfi,Baltimore,"French, BBQ, Cafe",17,3.9 +3734,Backkerei,Scranton,"Desserts, Pizza, French, Bakery, BBQ",75,3.6 +3735,Beeryani,Sitka,"French, Pizza, Seafood",80,3.8 +3736,Beijing Street,West Yellowstone,"Chinese, Bakery, Seafood",96,3.6 +3737,Bikanervala,Oakland,"Tea, Cafe, Bakery",39,3.5 +3738,Chaayos,Harrisburg,"Desserts, Italian, BBQ, Bakery, Cafe",31,3.8 +3739,China Garden,Charlotte,"Tea, Mexican, BBQ, Mediterranean",14,3.8 +3740,Chocolateria San Churro,Escanaba,"Bakery, Pizza, Seafood",21,3.8 +3741,Cocoberry,Lihue,"French, Cafe, Desserts",15,3.5 +3742,Costa Coffee,Sioux City,"Fast Food, Pizza, Seafood",69,3.5 +3743,Country Curries,Helena,"Tea, Cafe, Desserts",71,3.5 +3744,Culinaire,Mason City,"Fast Food, French, Seafood",44,3.8 +3745,Defence Bakery,Cedar City,"Italian, Bakery, Fast Food, Cafe, American, Seafood",65,3.6 +3746,Diva - The Italian Restaurant,Jacksonville,"Bakery, BBQ, Seafood",32,3.8 +3747,Fig & Maple,International Falls,"Chinese, BBQ, Seafood",21,3.8 +3748,Fitoor,State College,"French, Bakery, BBQ, Indian, Seafood",48,3.5 +3749,Giani's,Seattle,"Tea, Seafood, Desserts, Italian",74,3.6 +3750,Happy Hakka,Trenton,"Cafe, Bakery, BBQ, Chinese, Seafood",54,3.8 +3751,Mainland China,Stockton,"Tea, BBQ, Mediterranean",38,3.7 +3752,Mini Mughal,Philadelphia,"Seafood, American, Fast Food",30,3.5 +3753,Movenpick,Omaha,"Tea, Cafe",45,3.9 +3754,New York Slice - Express,Las Vegas,"Pizza, French, BBQ, Fast Food, Chinese, Seafood",48,3.6 +3755,Nirula's Ice Cream,Alexandria,"Tea, Pizza, BBQ, Italian",66,3.6 +3756,Not Just Paranthas,Longview,"Desserts, Bakery, BBQ, Seafood",54,3.7 +3757,Nutritious Nation,Lynchburg,"Tea, Bakery, Indian, Mediterranean",37,3.5 +3758,Open Oven,Nantucket,"Tea, French, Fast Food, Cafe, American, Seafood",62,3.7 +3759,Starbucks,Mosinee,"Tea, Cafe, Bakery, Chinese, Seafood",47,3.5 +3760,Swagath,Sault Ste. Marie,"Indian, Desserts, Seafood",82,3.5 +3761,The Health Box,Wichita,"Tea, Cafe, BBQ, Italian",46,3.5 +3762,Twisted Tacos,Greenville,"Cafe, Pizza, Bakery, Italian",71,3.8 +3763,Uber Lounge,Iron Mountain,"Cafe, Pizza, Desserts",74,3.6 +3764,Yeti - The Himalayan Kitchen,New Orleans,"Tea, Mediterranean, Seafood",95,3.7 +3765,Zai,Newburgh,"Tea, Chinese, Bakery, Mediterranean",33,3.8 +3766,Al Bake,Spokane,"Tea, French, Fast Food, Indian, Seafood",44,2.4 +3767,Artusi Ristorante e Bar,Scranton,"Bakery, Pizza, Desserts, Fast Food",26,4.1 +3768,Baris,Cedar Rapids,"Cafe, Bakery, Pizza, Desserts",26,4.3 +3769,Carnatic Cafe,Decatur,"Cafe, Indian, Desserts",66,4.4 +3770,Chhalava - 鯻_Lava,Jacksonville,"Desserts, Tea, Fast Food, Indian, Mediterranean, Seafood",51,4.4 +3771,Dilli BC,Laramie,"Bakery, Pizza, Cafe",21,4.1 +3772,Sumo Sushi,Monterey,"Tea, Pizza, French, Fast Food, Cafe",37,4.0 +3773,The Heroes Bistro & Bar,Vernal,"Pizza, Mediterranean, Fast Food",66,4.0 +3774,Whipped,Dothan,"Tea, Cafe, BBQ",79,4.2 +3775,Cafe Coffee Day,Kalispell,"Desserts, Bakery, BBQ, Fast Food",72,3.2 +3776,Paparazzi,Flagstaff,"Mexican, Bakery, Desserts",85,3.2 +3777,Chehel Pehel,Brunswick,"Tea, Chinese, Mediterranean, Desserts",73,3.5 +3778,Cress Bistro,Scottsbluff,"Desserts, Pizza, Bakery, Cafe, American",74,3.6 +3779,Frosted Heaven,Charleston,"Cafe, Seafood",11,3.6 +3780,Baskin Robbins,Kotzebue,"Tea, Pizza, BBQ, Seafood",37,2.9 +3781,Behrouz Biryani,Idaho Falls,"Tea, Bakery",65,3.2 +3782,Cafe Coffee Day,Nantucket,"Desserts, Pizza, Fast Food, Cafe, American",78,3.0 +3783,Cakeatouille,Sitka,"Desserts, Tea, Pizza, French, Fast Food",85,3.3 +3784,Chilli Singh,Rock Springs,"Pizza, Fast Food",45,3.1 +3785,Da Pizza Corner,Akron,"Tea, Pizza, Indian, BBQ",91,2.9 +3786,Domino's Pizza,Washington,"Bakery, Seafood",94,2.5 +3787,Faasos,Fort Leonard Wood,"Bakery, Seafood",83,2.8 +3788,Gupta Ji Ka Dhaba,Boise,"Mexican, Bakery, BBQ, Fast Food, Indian, Seafood",94,2.6 +3789,Karim's,Roanoke,"Tea, Cafe, Italian, Chinese, Seafood",77,3.3 +3790,Let's Tango,Valdosta,"Tea, French, Indian, Desserts",50,3.0 +3791,Madras Cafe,Buffalo,"Cafe, Desserts",31,2.5 +3792,Nachos And Company,Scranton,"Desserts, Pizza, Fast Food, Indian, Mediterranean",28,3.4 +3793,Ovenstory Pizza,Stockton,"Bakery, American, Fast Food",81,3.3 +3794,Pizza Hut,Marquette,"French, Bakery, Fast Food",89,3.3 +3795,Red Chilli,Norfolk,"Fast Food, Pizza, BBQ, Seafood",23,3.1 +3796,The Groghead,Nome,"Desserts, Pizza, French, Fast Food, American, Seafood",98,3.4 +3797,The Tandoor,Lawton,"Tea, Bakery, Fast Food, American, Seafood",13,3.4 +3798,Twenty Ten - Ashtan Sarovar Portico,Palm Springs,"Tea, Cafe, BBQ, Fast Food",49,3.3 +3799,Adyar Ananda Bhavan,Bozeman,"Tea, Chinese, Bakery",22,3.5 +3800,Baked Love By Vatsala,Beaumont,"Tea, BBQ, Seafood",33,3.6 +3801,Drums of Heaven,Williston,"Desserts, Fast Food",97,3.5 +3802,Dunkin' Donuts,Fairbanks,"Tea, French, BBQ, Seafood",15,3.7 +3803,Evergreen Sweet House,Honolulu,"BBQ, Desserts, Fast Food",18,3.5 +3804,Gung The Palace,Sun Valley,"Cafe, American, BBQ, Seafood",81,3.7 +3805,Keventers,Medford,"Tea, Mexican, Bakery, BBQ, Cafe",33,3.5 +3806,La Seine -The Chocolate Emporium,Sioux Falls,"Desserts, Italian, Bakery, BBQ, Fast Food",75,3.8 +3807,Nagaland's Kitchen,Charlotte,"Pizza, American, Desserts",73,3.8 +3808,Pasta La Vista,Hilo,"Tea, Cafe, BBQ, Fast Food",16,3.8 +3809,Tamura,Niagara Falls,"Chinese, Pizza, Indian, BBQ",11,3.5 +3810,The Chai Story,Dodge City,"Tea, Desserts, Fast Food",74,3.6 +3811,The Clay Oven,Greensboro,"Cafe, Mexican, Mediterranean, Desserts",73,3.5 +3812,Aazad Chicken Corner,Bozeman,"Tea, BBQ, Desserts, Fast Food",77,0.0 +3813,Chaipiyoji,Dubuque,"Desserts, Pizza, Cafe, American, Mediterranean, Seafood",42,0.0 +3814,Chatkara,North Platte,"Tea, Mexican, Bakery, Italian",53,0.0 +3815,HoG - House of Goodies,Erie,"Desserts, Pizza, French, BBQ, Fast Food",36,0.0 +3816,Kettle & Kegs,Mission,"Pizza, Seafood",36,0.0 +3817,Krishna Juice & Shakes Corner,Richmond,"Tea, Bakery",29,0.0 +3818,Momolicious,Scottsbluff,"Desserts, Tea, Mexican, Fast Food, Cafe",88,0.0 +3819,Pastry Palace,Pocatello,"Tea, BBQ, Italian",89,0.0 +3820,South Gate,Fayetteville,"Chinese, Bakery, BBQ, Mediterranean",100,0.0 +3821,Sweet Bakes,Hattiesburg,"Desserts, Tea, Pizza, French, Bakery, Chinese",41,0.0 +3822,Sweet Sensations,Denver,"Tea, Pizza, BBQ, Italian",14,0.0 +3823,The Pirates Of China Town,Hibbing,"Desserts, Bakery, Cafe, Mediterranean, Seafood",69,0.0 +3824,Hot n Hot,Palm Springs,"Tea, Bakery, BBQ, Mediterranean, Seafood",81,2.4 +3825,Feng Shuii,Kotzebue,"Tea, Cafe, Desserts, Fast Food",89,4.3 +3826,Bikaner Sweets,San Diego,"Bakery, Pizza, Indian, Fast Food",37,2.8 +3827,Coalition Cafe,Knoxville,"Desserts, Tea, BBQ, Cafe, Mediterranean",35,3.4 +3828,Keventers,Atlantic City,"Chinese, Bakery, BBQ, Desserts",28,3.0 +3829,Mid Night Khana,Idaho Falls,"Cafe, Bakery, American, BBQ",90,3.3 +3830,Ministry of Cafe,Sioux City,"Bakery, Pizza, Italian",12,3.3 +3831,Officer's Kitchen,Greensboro,"Desserts, Tea, French, BBQ, Cafe",94,3.3 +3832,Oh Boy Lounge,Kotzebue,"Cafe, Pizza, Mediterranean, Fast Food",57,3.1 +3833,Sahni's Fish Corner,Rhinelander,"Tea, Cafe, American, BBQ",33,3.0 +3834,Sardar A Pure Meat Shop,Ketchikan,"Tea, BBQ",36,2.9 +3835,Singh Mutton & Chicken Shop,Wichita,"BBQ, Pizza, American, Desserts",58,3.0 +3836,The Mashup,Cedar City,"Pizza, Bakery, Fast Food, Cafe, Indian",67,3.2 +3837,Vaishnu Bhojanalaya,Waco,"Desserts, Pizza, Bakery, Cafe, American",87,3.1 +3838,Central Perk,Watertown,"Desserts, Fast Food",56,3.8 +3839,Diet Dabba,Lynchburg,"French, Bakery, BBQ",60,3.7 +3840,Mama's Buoi,Fort Smith,"Cafe, BBQ, Desserts, Seafood",87,3.9 +3841,New Vikrant Restaurant,Colorado Springs,"Chinese, Bakery, BBQ, Fast Food",90,3.5 +3842,The Vintage Avenue,Eau Claire,"Bakery, Seafood",66,3.9 +3843,Apna Punjabi Zayka,Boise,"Cafe, French, BBQ, Mediterranean",95,0.0 +3844,Best Biryani Centre,Oakland,"Pizza, American, BBQ, Seafood",43,0.0 +3845,Delhi Chaat Bhandar,San Angelo,"Italian, Bakery, Fast Food, Mediterranean, Seafood",100,0.0 +3846,Encounter,Rock Springs,"Desserts, Pizza, Italian, Bakery, American",22,0.0 +3847,Flavour's,Yakutat,"Pizza, American, BBQ",46,0.0 +3848,Food Adda,Chattanooga,"Desserts, Pizza, Fast Food, Mediterranean, Seafood",100,0.0 +3849,Friends Fast Food,Miami,"Tea, BBQ, Mediterranean, Fast Food",58,0.0 +3850,Hot & Pot,New Bern,"Cafe, BBQ, Desserts, Seafood",46,0.0 +3851,Lucky Corner Shop,Sault Ste. Marie,"Pizza, Italian, BBQ, Fast Food, Indian, Seafood",88,0.0 +3852,Mahesh Shudh Vaishno Bhojanalya,Pittsburgh,"Tea, Chinese, Desserts",53,0.0 +3853,Piper's & Grill - The Night Chef,Ogdensburg,"Pizza, Mexican, BBQ, Fast Food, Indian",11,0.0 +3854,RAM-G Samose Wale,Portsmouth,"Tea, Pizza, American, Fast Food",98,0.0 +3855,Shubham Vaishno Bhojanalya,Flagstaff,"French, Cafe, Fast Food",58,0.0 +3856,Shudh Vaishno Bhojanalaya,Boston,"Cafe, Chinese, BBQ, Mediterranean",68,0.0 +3857,Shudh Vaishno Dhaba,Pasco,"Tea, Bakery, Mediterranean",38,0.0 +3858,Singh Chicken,Longview,"Tea, Cafe, BBQ, Desserts",35,0.0 +3859,Spezia Deliveries,Lubbock,"Desserts, Italian, Bakery, Cafe, Mediterranean, Seafood",64,0.0 +3860,TAG,Tampa,"Tea, French, Bakery, Cafe",69,0.0 +3861,UFO,Rochester,"Pizza, Desserts, Italian",36,0.0 +3862,Urban Patty House,Shreveport,"Mexican, Bakery, Fast Food",93,0.0 +3863,Big Yellow Door,Fort Lauderdale,"Tea, Chinese, Seafood",29,4.3 +3864,Amritsar Juction,Wenatchee,"Desserts, Tea, Pizza, BBQ, Indian, Mediterranean",34,3.1 +3865,Bawarchi,Clarksburg,"Desserts, Tea, BBQ, American, Seafood",68,3.3 +3866,Bawarchi,Dodge City,"Pizza, American, Mediterranean, Seafood",97,3.3 +3867,Bhogalji Bikaner Sweets,Brainerd,"Bakery, American, Desserts, Fast Food",17,2.9 +3868,Bikanervala,Chattanooga,"Cafe, Bakery",65,3.2 +3869,Changezi Chicken,Shreveport,"Tea, Chinese, Desserts",96,3.1 +3870,Giani's,Peoria,"Tea, Cafe, Desserts, Seafood",78,3.4 +3871,Gola Northend,San Jose,"Cafe, Mediterranean, Seafood",64,3.1 +3872,Kay's Chik-In,Indianapolis,"Indian, Mediterranean, BBQ, Seafood",40,2.6 +3873,Mr. Lobo,Waco,"Desserts, American, BBQ",63,3.0 +3874,Nut Khut Rasoi,Watertown,"Fast Food, Cafe, Italian",74,3.4 +3875,Purani Delhi 6,Worcester,"Bakery, Desserts",51,3.0 +3876,Raahgiri,Syracuse,"Desserts, Tea, Mexican, Bakery, Seafood",95,3.2 +3877,Singh Dhaba,Scranton,"Desserts, Fast Food, Cafe, Mediterranean, Seafood",72,3.0 +3878,Sugar Boutique,Asheville,"French, Indian, Desserts, Seafood",54,3.1 +3879,Zaika Amritsari,Escanaba,"Tea, Desserts",61,3.0 +3880,Ashok Meat Wala,Moline,"Tea, Fast Food, American, Seafood",58,3.5 +3881,Baker's Stop,Dallas,"Cafe, American, Mediterranean, Desserts",69,3.8 +3882,Nut Khat Caterers,Kotzebue,"Tea, Mexican, BBQ, Fast Food, Mediterranean, Seafood",29,3.6 +3883,Penta Cafe,Grand Junction,"French, Mexican, BBQ, Seafood",66,3.6 +3884,Penta Cafeteria,Cedar City,"Desserts, Pizza, French, Fast Food, Seafood",39,3.6 +3885,Railway Yard,Punta Gorda,"Cafe, Pizza, Fast Food",51,3.8 +3886,Roti Aur Boti,Juneau,"Pizza, Mediterranean, BBQ, Seafood",56,3.5 +3887,Sahni Fish Corner,Alpena,"Desserts, Pizza, Bakery, Fast Food, Indian",11,3.5 +3888,Aap Ki Khatir,Nantucket,"French, Mexican, Pizza, Bakery",11,0.0 +3889,Aggarwal Sweets,Ponce,"Chinese, Pizza, Bakery",60,0.0 +3890,Amul Ice-Cream Parlour,Decatur,"Tea, Cafe, Pizza, Desserts",21,0.0 +3891,Chaat King,Missoula,"Italian, Mexican, Bakery, Fast Food, Cafe",74,0.0 +3892,Cherry Berry,Rapid City,"Tea, Pizza, French, Mexican, Fast Food",20,0.0 +3893,Flavours Kitchen,Juneau,"Desserts, Indian, BBQ",88,0.0 +3894,Hook Up,Durango,"Bakery, Pizza, Italian",72,0.0 +3895,Jnm Mama Mafia,Cheyenne,"Pizza, American, Desserts, Fast Food",81,0.0 +3896,Kitchen199,Fresno,"Cafe, BBQ",37,0.0 +3897,Noddy's,Columbus,"Tea, Mexican, BBQ, Seafood",93,0.0 +3898,Om Ji Bhature Wale,Grand Junction,"Desserts, Fast Food, Cafe, American, Mediterranean",42,0.0 +3899,Peshawari Mehel,Santa Maria,"Pizza, BBQ, Desserts, Fast Food",50,0.0 +3900,Republic of Chicken,Wrangell,"Chinese, Pizza, Cafe, Seafood",100,0.0 +3901,Shri Radhe,Charlotte Amalie,"Tea, Bakery, Fast Food, Cafe, American",37,0.0 +3902,Spices Affair,Williston,"Pizza, Desserts, Seafood",17,0.0 +3903,34 Parkstreet Lane,La Crosse,"Tea, Bakery, BBQ, Desserts",64,3.2 +3904,Al Forno by Aishwarya,Durango,"Tea, BBQ, Desserts",42,3.4 +3905,Bakingo,Cedar Rapids,"Pizza, Seafood",72,2.7 +3906,Bandstand,Twin Falls,"Desserts, Pizza, French, BBQ, Seafood",94,3.3 +3907,Big Fat Sandwich,Alpena,"Tea, Bakery, BBQ, Cafe, Mediterranean",51,2.9 +3908,Blue Tokai Coffee Roasters,Charlotte Amalie,"Desserts, BBQ, Fast Food, Chinese, Seafood",57,3.3 +3909,Cafe Coffee Day - The Lounge,Myrtle Beach,"Mexican, Bakery, Desserts, Seafood",71,2.6 +3910,Cakes & Bakes,Gulfport,"Tea, Bakery, Indian, Mediterranean, Seafood",49,2.9 +3911,Captain Grub,Asheville,"Cafe, Desserts, Seafood",61,3.3 +3912,Chaat Corner,Knoxville,"Cafe, Pizza",67,3.2 +3913,Cosy Restaurant,Helena,"Pizza, BBQ, Italian",39,3.4 +3914,Food Refill,College Station,"Tea, Fast Food, Seafood",43,3.1 +3915,Ganesh Anna South Indian Food Corner,Fort Dodge,"Cafe, Bakery, Pizza, Italian",93,3.0 +3916,Giani,Charlottesville,"Cafe, Seafood",54,3.3 +3917,Gravies,Paducah,"Bakery, BBQ, Cafe",62,3.3 +3918,Green Chick Chop,Pocatello,"Cafe, Bakery, BBQ, Seafood",22,3.1 +3919,Grub Pub,Eugene,"Tea, Cafe, Bakery, Pizza",44,3.4 +3920,Handi Masala Restaurant,Alpena,"French, Bakery, BBQ, Fast Food, American, Seafood",57,2.6 +3921,Himalaya Dhaba,Syracuse,"Mexican, Bakery, BBQ, Fast Food",77,2.6 +3922,Hot & Hot,Honolulu,"Tea, Bakery, Pizza, Italian",97,2.9 +3923,Hot Box,Trenton,"Desserts, Fast Food",88,2.6 +3924,Indrani's Kitchen,Bellingham,"Chinese, Bakery, BBQ, Mediterranean",54,3.3 +3925,Kallu Hot Zaika,Peoria,"Fast Food, Mexican, BBQ, Pizza",24,2.9 +3926,Kathi Roll Corner 44,Tulsa,"French, BBQ, Fast Food, Cafe, Seafood",82,3.1 +3927,Mama Dhaba,Santa Rosa,"Indian, Desserts, Seafood",63,2.8 +3928,Miam,Marquette,"Desserts, Pizza, Mexican, Fast Food, American",56,3.2 +3929,Momos House,La Crosse,"Tea, Pizza, Bakery, BBQ, Mediterranean",22,3.3 +3930,Nirula's Ice Cream,Everett,"Tea, Pizza, Desserts, Italian",74,2.9 +3931,Overdose,Prescott,"Tea, Pizza, Seafood",79,2.7 +3932,Punjabi Chaap Corner,Longview,"Tea, Cafe, Mexican",19,2.8 +3933,Punjabi Tadka,Alpena,"Tea, Seafood",63,3.1 +3934,Rapti Chinese Food,Lihue,"Tea, American, BBQ, Indian, Seafood",74,3.2 +3935,Riyaz Chicken Corner,Erie,"Tea, Cafe, Pizza, Bakery, Chinese",15,3.4 +3936,Sharda Pastry Shop,Pasco,"Pizza, French, BBQ, Fast Food, Chinese, Seafood",58,2.8 +3937,Southy,Newport News,"BBQ, American, Desserts",64,3.1 +3938,Spicy,Augusta,"Cafe, Pizza, Desserts",79,2.9 +3939,Subway,Amarillo,"Desserts, BBQ, Fast Food, Indian, Mediterranean",92,2.8 +3940,The Foodie Cafe,Christiansted,"Cafe, BBQ, Fast Food",15,3.4 +3941,Uncle's Kabab Point,Billings,"Bakery, Pizza, Fast Food",77,3.4 +3942,Wimpy,Mosinee,"Cafe, Bakery",35,2.6 +3943,Zaika,Houston,"Tea, Cafe, Mexican, Bakery",18,2.7 +3944,Natural Ice Cream,Durango,"Mexican, BBQ, Fast Food",24,4.5 +3945,Cafe 6,Detroit,"BBQ, Pizza, Desserts",27,3.9 +3946,Cafe Coffee Day,Ogden,"Tea, Pizza, Mexican, BBQ, Cafe",46,3.5 +3947,Dzukou Tribal Kitchen,Yakima,"Desserts, Pizza, French, Fast Food, Mediterranean",74,3.8 +3948,Havmor Ice Cream,Chattanooga,"Pizza, Bakery, Fast Food, Chinese, Seafood",75,3.6 +3949,Lost in Frost,Charleston,"Tea, Desserts, Fast Food",58,3.7 +3950,Pink Box,Bend,"French, Cafe, Seafood",87,3.8 +3951,Potet,Sioux Falls,"Bakery, Fast Food, American, Mediterranean, Seafood",17,3.7 +3952,Root'd,Dothan,"Cafe, Pizza, Mexican, Chinese, Seafood",42,3.7 +3953,South Cafe,Colorado Springs,"Desserts, French, BBQ, Fast Food, Mediterranean",36,3.5 +3954,Sri Balaji,Twin Falls,"Chinese, BBQ, Seafood, Italian",12,3.5 +3955,Thalaivar,Amarillo,"Tea, Fast Food, American, Seafood",27,3.8 +3956,The Junction,Redding,"Tea, Seafood, Bakery, Fast Food",17,3.9 +3957,34 Park Street Lane,Houston,"Chinese, Bakery, Cafe",67,0.0 +3958,Adda The Spice Affair,Kodiak,"Seafood, Mexican, Fast Food",78,0.0 +3959,All About Food,Newark,"Pizza, Bakery, Fast Food, American, Seafood",47,0.0 +3960,Bombay Pao Bhaji,Brownsville,"Cafe, Mexican, Indian, BBQ",64,0.0 +3961,Brown House Cafe,Savannah,"Tea, Pizza, Mexican, Bakery, American, Seafood",28,0.0 +3962,Chinese Hutt,Hilo,"Tea, Mexican, Fast Food, Cafe, Seafood",53,0.0 +3963,Desi Tadka,Ponce,"Tea, French, BBQ",89,0.0 +3964,Food Daddy,Grand Junction,"Bakery, Desserts, Seafood",64,0.0 +3965,Front Food Corner,Sioux City,"Tea, Pizza, BBQ, Indian, Seafood",51,0.0 +3966,Gupta's Vegetarian Paradise,Idaho Falls,"Cafe, Pizza, Desserts",43,0.0 +3967,Hot Kathi Roll,Oakland,"Desserts, Pizza, Italian, Bakery, BBQ",92,0.0 +3968,House Of Chocolate,Ponce,"Desserts, Pizza, Italian, BBQ, Bakery, Chinese",27,0.0 +3969,Jaisons,Wrangell,"Tea, Chinese, Desserts",31,0.0 +3970,Sher -E- Punjab,Lubbock,"Tea, Pizza, Mediterranean",38,0.0 +3971,Shi Cafe,El Paso,"Desserts, Bakery, Fast Food, Chinese, Seafood",22,0.0 +3972,Sri Balaji,San Juan,"French, Bakery, BBQ, Seafood",41,0.0 +3973,Zaika Kathi Roll,San Angelo,"Fast Food, French, Indian, Seafood",31,0.0 +3974,Cravity ,Ogden,"Desserts, Indian, BBQ",35,4.0 +3975,Little Saigon,Harrisburg,"Tea, American, BBQ",65,4.0 +3976,Summer House Cafe,Brainerd,"Seafood, BBQ, Italian",11,4.1 +3977,Elf Cafe & Bar,Providence,"French, BBQ, Fast Food, Cafe, Indian, Seafood",23,3.3 +3978,Garage Inc.,Gainesville,"Tea, Fast Food",90,3.4 +3979,My Bar Grill,Aberdeen,"Tea, Fast Food",17,3.3 +3980,Wow! Momo,Traverse City,"Cafe, Indian, Fast Food",60,3.4 +3981,Coast Cafe,Fresno,"Tea, BBQ",48,4.5 +3982,Chaayos,Orlando,"Tea, Cafe, Mexican",73,3.9 +3983,"Elma's Bakery, Bar, and Kitchen",Redding,"Tea, Cafe, Desserts, Italian",35,3.9 +3984,Fork You,Hagerstown,"Cafe, American, BBQ",21,3.8 +3985,High5 Cafe & Bar,Valdosta,"BBQ, Cafe, Bakery, Desserts",14,3.7 +3986,Imperfecto,Gustavus,"Tea, Cafe, BBQ, Fast Food",10,3.7 +3987,Maison Des Desserts,San Juan,"Cafe, Mexican, Pizza, Italian",70,3.9 +3988,Maquina,Oakland,"Pizza, Italian, Bakery, Fast Food, Seafood",24,3.8 +3989,Masha,Lewiston,"Pizza, BBQ",30,3.5 +3990,Moonshine Cafe & Bar,Oakland,"Cafe, Pizza, Fast Food",18,3.5 +3991,New York Slice,Mason City,"Cafe, Pizza",84,3.7 +3992,Out Of The Box,Provo,"Desserts, Tea, Fast Food, Cafe, American, Mediterranean",83,3.7 +3993,Raasta,Brownsville,"Chinese, Pizza, American, Fast Food",12,3.9 +3994,Hauz Khas Social,Lihue,"Desserts, Tea, Pizza, Mexican, Fast Food",10,4.3 +3995,Kunzum Travel Cafe,Deadhorse,"Bakery, Mexican, Indian, Pizza",23,4.2 +3996,Lord of the Drinks Meadow,North Platte,"Pizza, French, Bakery, BBQ, Fast Food",61,4.2 +3997,Matchbox,Sault Ste. Marie,"Seafood, Pizza, Desserts, Fast Food",51,4.0 +3998,Naivedyam,Worcester,"Mediterranean, Desserts, Fast Food",32,4.2 +3999,Rang De Basanti Urban Dhaba,Pago Pago,"Tea, Pizza, Cafe, Indian, Seafood",50,4.4 +4000,Smoke House Deli,Mission,"Chinese, BBQ, Fast Food",82,4.1 +4001,Viva Deli - Holiday Inn,Fort Leonard Wood,"Tea, Seafood",93,3.3 +4002,Cafe on 3 - Holiday Inn,Monterey,"Tea, French, Cafe",80,3.4 +4003,The Kylin Experience - Holiday Inn,San Antonio,"Tea, Cafe, Pizza, Fast Food",23,3.7 +4004,Thugs - Hotel Broadway,Hattiesburg,"Cafe, Pizza, Bakery, Fast Food, Chinese",86,3.4 +4005,Chor Bizarre - Hotel Broadway,Sun Valley,"Tea, Pizza, Indian, Seafood",32,3.9 +4006,Opium Bar - Hotel City Park,Rapid City,"Tea, Chinese, BBQ, Desserts",40,2.8 +4007,Yellow Mirchi - Hotel City Park,Fort Wayne,"Chinese, French, Cafe, Seafood",35,3.9 +4008,Curry Capital - Hotel Classic Diplomat,Redding,"Cafe, Indian, American, Desserts",96,0.0 +4009,Viceroy Bar - Hotel Classic Diplomat,Lewisburg,"Tea, Mexican, Bakery, Fast Food, Seafood",38,0.0 +4010,Cafe Regent,Latrobe,"Tea, Cafe, Indian, Mediterranean",52,3.0 +4011,The Grand Kitchen,Gustavus,"BBQ, Pizza, Desserts, Seafood",31,0.0 +4012,Lutyen's - Hotel The Royal Plaza,Cedar Rapids,"Chinese, Desserts, Seafood",87,3.3 +4013,Onyx Bar - Hotel The Royal Plaza,Pittsburgh,"Bakery, Mexican, Pizza, Cafe",44,3.0 +4014,SKY Lounge Bar & Grill - Hotel The Royal Plaza,Alexandria,"Pizza, Indian, BBQ, Seafood",31,3.4 +4015,Jasmine - Hotel The Royal Plaza,Dothan,"French, Mediterranean, Desserts, Seafood",98,3.7 +4016,Lord William Tea Lounge - Hotel The Royal Plaza,Dothan,"French, Pizza, Bakery, BBQ",28,3.6 +4017,Royal Brewery Bistro,Martha's Vineyard,"Mexican, Pizza, BBQ, Fast Food",78,3.5 +4018,Cafe - Hyatt Regency,Boston,"French, BBQ, Desserts, Seafood",45,3.6 +4019,La Piazza - Hyatt Regency,Evansville,"Bakery, BBQ, Fast Food",58,3.9 +4020,Polo Lounge - Hyatt Regency,Waterloo,"Tea, Pizza, Mexican, BBQ, Cafe",35,3.6 +4021,Sidewalk - Hyatt Regency,Laramie,"Bakery, BBQ",76,3.8 +4022,T.K'S Oriental Grill - Hyatt Regency,Hibbing,"Bakery, American, Cafe, Seafood",62,3.9 +4023,China Kitchen - Hyatt Regency,San Jose,"Bakery, Mediterranean, Seafood",94,4.0 +4024,The Hub - ibis New Delhi,Baton Rouge,"Desserts, Bakery, Fast Food, Cafe, American",94,3.1 +4025,Frugurpop- ibis New Delhi,Adak Island,"Tea, Mexican, Bakery, Desserts",16,0.0 +4026,Baked and Wrapped,Elmira,"Fast Food, Seafood, Italian",44,3.1 +4027,M.D. Kitchen,Killeen,"Cafe, BBQ, Desserts, Seafood",34,2.6 +4028,Kerala Hotel,Sacramento,"Desserts, Tea, BBQ, Fast Food, American",27,3.9 +4029,New Classic Kitchen,Providence,"Cafe, Pizza, Fast Food",18,0.0 +4030,M.P. Canteen,Gulfport,"Tea, Mexican, Bakery, BBQ, Indian",92,3.1 +4031,Mysore Cafe,Saipan,"Tea, Cafe, Pizza, Bakery, Chinese, American",52,3.2 +4032,Maharashtra Sadan,Fayetteville,"Cafe, American, Fast Food",43,3.8 +4033,Kashmiri Hills Wazwan,Sault Ste. Marie,"French, Mexican, Bakery, Cafe",26,0.0 +4034,Mirch Masala Restaurant,Sun Valley,"Desserts, Pizza, Bakery, Fast Food, Indian",83,0.0 +4035,Shree Rathnam,Muskegon,"Desserts, Pizza, Mexican, Fast Food, Cafe",18,0.0 +4036,Abhishek Restaurant,Kotzebue,"Cafe, Bakery, Desserts, Fast Food",20,2.9 +4037,AL Maroosh,Lexington,"Tea, Cafe, Indian",50,2.8 +4038,Ambarsari Kababs & Curries,Grand Junction,"Pizza, BBQ, Fast Food, Cafe, American",55,3.0 +4039,Ambrosia - The Golden Palms Hotel,Orlando,"Tea, Mexican, Desserts",52,2.8 +4040,Bala's Kitchen,Saipan,"Tea, Fast Food",99,2.9 +4041,Cafe Meadows,Manchester,"Desserts, Bakery, Fast Food, American, Mediterranean, Seafood",58,3.1 +4042,Dee The Baker,Burbank,"Desserts, Tea, Mexican, Bakery, Fast Food",18,3.4 +4043,Dilli Darbaar,Detroit,"Desserts, French, BBQ, Bakery, Cafe",60,3.1 +4044,Finger Licious,Great Falls,"Pizza, Mexican, Bakery, Fast Food, Cafe",32,3.2 +4045,Garden Hut,Manchester,"Cafe, BBQ, Desserts",34,2.7 +4046,Hari Mirch Masala,Appleton,"Tea, French, BBQ, Desserts",81,2.8 +4047,Kamal's,Roanoke,"Bakery, BBQ, Fast Food, Cafe, Indian",58,2.8 +4048,Kocktails & Kurries,Lake Charles,"BBQ, Fast Food",25,3.1 +4049,Madras Cafe,Charlottesville,"Pizza, Fast Food",15,3.2 +4050,Mahalaxmi Dairy & Sweets,Tallahassee,"Pizza, BBQ, Mediterranean",44,2.6 +4051,Meet n Eat,Milwaukee,"Fast Food, Pizza, BBQ, Seafood",94,2.7 +4052,Punjabi Mirchi,Oakland,"Pizza, BBQ, Fast Food, Cafe, American",66,3.3 +4053,The Garam Masala,Cedar Rapids,"Desserts, Italian, BBQ, Cafe, Seafood",71,3.4 +4054,Unique Pastry Shop,Augusta,"Chinese, Seafood, Fast Food",97,3.4 +4055,Vaishno Amritsari Dhaba,Pocatello,"Tea, Cafe, Indian",13,3.2 +4056,Zara Restaurant,Nome,"Tea, Bakery, Fast Food",37,3.3 +4057,Bhatia Sweets,Mission,"Pizza, BBQ, Fast Food",59,3.5 +4058,De Cafepedia,Madison,"Pizza, BBQ, Fast Food, Cafe, American",33,3.5 +4059,Icy Curls,Boston,"Desserts, Pizza, French, Fast Food, Cafe, Mediterranean",20,3.7 +4060,Chakhna,Santa Barbara,"Desserts, Pizza, French, Bakery, Chinese",55,0.0 +4061,Choco-House Chocolatiers,Moab,"Chinese, Pizza, Indian, Desserts",41,0.0 +4062,D Brown Affairs,Savannah,"Fast Food, Cafe, Tea, Seafood",82,0.0 +4063,Daya Sagar,West Yellowstone,"Chinese, BBQ, Fast Food",14,0.0 +4064,Food Code 99,Memphis,"Italian, Bakery, Fast Food, American, Seafood",47,0.0 +4065,Foodie Singh,Gainesville,"Bakery, Mexican, American, Desserts",47,0.0 +4066,Gluten Free by Deepika,Waco,"Tea, Mexican, Seafood",81,0.0 +4067,Jain Restaurant,Hilton Head,"Seafood, Mexican, Cafe, Fast Food",41,0.0 +4068,Kesariya Sweets,Kodiak,"Tea, Pizza, Desserts, Seafood",36,0.0 +4069,KG Confectionery and Pastry Shop,Syracuse,"Tea, Cafe, Desserts, Seafood",21,0.0 +4070,Krishna Da Dhaba,Gustavus,"Cafe, BBQ",91,0.0 +4071,Little Cup Cake,Gustavus,"Cafe, BBQ, Mediterranean, Fast Food",57,0.0 +4072,New Kovilakam Restaurant,Sault Ste. Marie,"Pizza, Italian, Bakery, BBQ, Indian",85,0.0 +4073,Nice Food Corner,Richmond,"Seafood, Fast Food",90,0.0 +4074,Radhey Radhey Foods,La Crosse,"Chinese, Seafood, Cafe, Italian",30,0.0 +4075,Schezwan Bakery,Cody,"Cafe, Indian, Seafood",33,0.0 +4076,Shama Muradabadi Chicken Corner,New Orleans,"Bakery, American, Desserts",35,0.0 +4077,Starve Stalkers,Denver,"Fast Food, Indian, BBQ, Seafood",31,0.0 +4078,Tava & Tandoor,Fort Dodge,"Pizza, BBQ, Bakery, Chinese, Mediterranean, Seafood",37,0.0 +4079,Chutneez Restaurant Lounge & Bar,Tucson,"Fast Food, Seafood, Italian",86,2.4 +4080,Domino's Pizza,Manhattan,"Chinese, Bakery, Pizza",68,2.4 +4081,Mangal Sweets,Pago Pago,"Pizza, BBQ, Seafood",30,2.4 +4082,Sweet Tickles,Aberdeen,"Tea, Pizza, Mexican, Bakery, Seafood",51,4.1 +4083,Ira - The Waterside Bar - ITC Maurya,Bellingham,"Tea, Pizza, Bakery, Cafe, American",20,3.2 +4084,Nutmeg The Gourmet Shop - ITC Maurya,Bloomington,"Desserts, Mexican, BBQ, Bakery, Seafood",34,3.4 +4085,Fabelle Chocolate Boutique - ITC Maurya,Walla Walla,"Desserts, Italian, Bakery, BBQ, Fast Food, Chinese",63,3.8 +4086,Golf Bar - ITC Maurya,Oklahoma City,"Seafood, Mexican, Bakery, Fast Food",99,3.5 +4087,Bukhara - ITC Maurya,Fort Wayne,"Mexican, Bakery, BBQ, Fast Food, Indian, Seafood",39,4.4 +4088,Tian - Asian Cuisine Studio - ITC Maurya,Dillingham,"Tea, Chinese, Mexican, Cafe",68,4.1 +4089,Ashish Lal Dhaba,Arcata,"Bakery, BBQ, Cafe, Indian, Seafood",44,3.2 +4090,Lal Dhaba,Manchester,"Desserts, Pizza, Bakery, Cafe, Mediterranean",34,3.1 +4091,McDonald's,Louisville,"Tea, French, Pizza, Italian",33,3.2 +4092,Udupi Cafe,Champaign,"Tea, Cafe, Pizza, Italian, BBQ, Chinese",80,3.5 +4093,"34, Chowringhee Lane",Martha's Vineyard,"Bakery, BBQ",99,2.7 +4094,Amritsar Express,Saginaw,"BBQ, Bakery, Pizza, Desserts",28,3.1 +4095,Anand Chicken & Fast Food,Missoula,"Tea, Cafe, Fast Food",16,2.8 +4096,Baba Chicken Ludhiana Wale,Del Rio,"Tea, Cafe, Pizza",33,3.1 +4097,Bombay Vada Pav,Charlotte,"Desserts, Pizza, Italian, BBQ, Cafe",33,2.8 +4098,Cafe Coffee Day,St. Cloud,"Tea, American, BBQ, Italian",68,3.1 +4099,Chin Pokli,Austin,"Desserts, Tea, Fast Food, Chinese, Mediterranean, Seafood",15,3.1 +4100,Curries,Branson,"Tea, Pizza, Italian, Bakery, Fast Food",83,2.7 +4101,Deepak Vaishno Dhaba,Burbank,"Italian, BBQ, Bakery, Fast Food, Indian, Seafood",32,3.4 +4102,Delhi Dhaba,Memphis,"Pizza, Desserts, Seafood",80,3.1 +4103,Dewan Sweets,White Plains,"Seafood, Mediterranean, Desserts, Italian",24,3.3 +4104,Flirty Momo's,North Bend,"Mexican, American, Desserts, Fast Food",89,3.1 +4105,Frontier,West Yellowstone,"Pizza, Bakery, Fast Food, Chinese, Mediterranean",51,3.2 +4106,Giani,College Station,"Italian, Mexican, Fast Food, Cafe, Seafood",89,3.0 +4107,Green Chick Chop,Gunnison,"Pizza, Desserts, Fast Food",71,3.3 +4108,Khalsa Veg Corner,Brunswick,"French, BBQ, Desserts, Seafood",58,3.4 +4109,Kings Kulfi,Devils Lake,"Cafe, Bakery, American, Fast Food",12,3.3 +4110,Kohli Dhaba,Yakutat,"Tea, BBQ",98,3.4 +4111,Laxmi Ice Cream,San Angelo,"Desserts, Mexican, BBQ, Cafe, American, Seafood",79,3.4 +4112,Mosaic - SK Premium Park,White Plains,"Pizza, Mexican, Bakery, Indian, Seafood",38,2.9 +4113,Moti Mahal Delux,Chattanooga,"Tea, Pizza, BBQ, Cafe, Mediterranean",52,2.7 +4114,Mukesh Chic-Inn Hot & Spice,Bozeman,"Desserts, Tea, Pizza, Mexican, BBQ, Mediterranean",71,3.0 +4115,Muradabadi Biryani,Bellingham,"Tea, Indian, Desserts, Fast Food",97,2.6 +4116,Muradabadi Shahi Biryani & Chicken Corner,Erie,"Cafe, Italian, Bakery, BBQ, Chinese",11,3.3 +4117,Nagi Fish Corner,Grand Rapids,"Tea, Cafe, Pizza, BBQ",98,3.1 +4118,Nirula's Ice Cream,Melbourne,"American, Desserts, Fast Food",54,3.0 +4119,Papa Veg Chinese Food,Sun Valley,"Cafe, Bakery, BBQ, Chinese, Indian, Seafood",20,2.9 +4120,Pindi's Kitchen,Key West,"Desserts, Tea, Mexican, Fast Food, Cafe, American",19,3.3 +4121,Rewari Sweets,Philadelphia,"Desserts, Pizza, BBQ, Chinese, Seafood",91,3.2 +4122,Roti Aur Boti,Branson,"Pizza, Bakery, Desserts, Fast Food",31,3.2 +4123,Sahni Chicken Corner,Binghamton,"Seafood, Bakery, Indian, Fast Food",28,3.2 +4124,Sarpal Restaurant,Seattle,"Cafe, BBQ, Desserts",42,3.1 +4125,SGF - Spice Grill Flame,Pellston,"American, Indian, BBQ, Seafood",29,2.9 +4126,Shanta Fresh Fish Corner,Madison,"Tea, Mexican, Fast Food",16,3.1 +4127,Shree Meenakshi Dosai,Gunnison,"Tea, Pizza, Italian",12,2.9 +4128,Singz,Niagara Falls,"Tea, Mexican, Bakery, Italian",40,2.9 +4129,Sona Bakers,San Antonio,"Mexican, Bakery, Seafood",20,3.4 +4130,Tak - a - Tak,Anchorage,"Pizza, Bakery, Fast Food, Cafe, Mediterranean",93,3.3 +4131,The Great Indian Food Truck,Gustavus,"Fast Food, BBQ, Italian",17,3.0 +4132,Tihar Food Court,Little Rock,"Tea, Seafood, Cafe, Fast Food",66,2.9 +4133,Uncle Da Dhabha,San Francisco,"Seafood, Bakery, Fast Food",60,3.0 +4134,Variety Chicken Corner,Flagstaff,"Pizza, BBQ",54,2.9 +4135,Wah Ji Wah,Deadhorse,"Cafe, Mexican, Pizza, Seafood",19,2.5 +4136,9 Scoops,Rapid City,"Mexican, Desserts, Seafood",61,3.6 +4137,Kati Roll Cottage,Petersburg,"Bakery, Seafood",60,3.5 +4138,Pul Bangash Wale,Long Beach,"Pizza, Desserts",57,3.7 +4139,Sunny Chicken Soup,Houston,"Tea, BBQ, Desserts, Seafood",60,3.6 +4140,Yo Momos,Redding,"Desserts, Bakery, Fast Food, Cafe, Mediterranean",90,3.7 +4141,Bikaner Sweets,Ogdensburg,"Pizza, Bakery, Mediterranean, Fast Food",57,0.0 +4142,Bittoo Murge Wala,Hilton Head,"Pizza, BBQ, Desserts, Seafood",19,0.0 +4143,Jalebi Wala,Bishop,"Tea, BBQ, Seafood",73,0.0 +4144,Just Parkash,Albany,"Fast Food, Bakery, Italian",63,0.0 +4145,Kwality Sweet Corner,Kahului,"Chinese, Bakery, Cafe, Fast Food",21,0.0 +4146,Mohan Chaat Corner,Grand Rapids,"French, Pizza, Cafe, BBQ",25,0.0 +4147,Mr. Momo,New Orleans,"Desserts, Tea, Pizza, Cafe, Mediterranean",86,0.0 +4148,Pishori Chicken Corner,Oklahoma City,"Desserts, Mexican, Bakery, Cafe, Mediterranean",37,0.0 +4149,Punjab Patiyala Sahi,West Palm Beach,"Desserts, Fast Food, Cafe, Mediterranean, Seafood",35,0.0 +4150,Shama Chicken Corner,Wichita,"Pizza, French, Mexican, BBQ, Seafood",91,0.0 +4151,Wah G Wah,Eau Claire,"Tea, Mexican, Bakery, BBQ, Seafood",61,0.0 +4152,Grillz,Harrisburg,"Bakery, Desserts, American, BBQ",99,2.2 +4153,The Barbeque Company,Fort Wayne,"Bakery, BBQ, Fast Food, Cafe, American",88,4.2 +4154,Anmol Chicken Corner,Manchester,"Bakery, Mexican, Pizza",92,3.1 +4155,Babu Bhai Kabab Wale,Traverse City,"Chinese, Cafe, Desserts",60,3.4 +4156,Chicken Mughlai,Champaign,"Cafe, Mexican, Bakery, BBQ",96,3.0 +4157,Cool Point Shahi Tukda,Bakersfield,"Pizza, Desserts, Fast Food",50,3.1 +4158,Jawahar Hotel,Moab,"Pizza, BBQ, Cafe, Indian, Seafood",12,3.4 +4159,Lalu Kababe,Hartford,"Desserts, Tea, Pizza, Fast Food, American, Mediterranean",57,3.2 +4160,Phelwan Biryani Wala,Montgomery,"Cafe, Pizza, BBQ, Seafood",82,3.0 +4161,Qureshi Kabab Corner,Eau Claire,"Tea, Pizza, American, BBQ",73,3.0 +4162,Al Jawahar,Santa Ana,"Tea, Pizza, Italian, Mexican, Bakery, Cafe",16,3.8 +4163,Aslam Chicken,Idaho Falls,"Cafe, Bakery, BBQ, Desserts",54,3.9 +4164,Dil Pasand Biryani Point,Gustavus,"Tea, French, Desserts",80,3.5 +4165,Haji Mohd. Hussain,Florence,"Pizza, BBQ",52,3.6 +4166,Kallan Sweets,Lake Charles,"Cafe, Seafood, Italian",54,3.8 +4167,The Walled City - Caf愆 & Lounge,Bemidji,"Desserts, Pizza, BBQ, Fast Food, Mediterranean",69,3.8 +4168,Al-Nawab,Palm Springs,"French, Bakery, BBQ",35,0.0 +4169,Ameer Sweets House,Memphis,"Tea, Pizza, Bakery, Fast Food, Chinese",19,0.0 +4170,Anwar Food Corner,Gainesville,"Tea, Bakery, Desserts",49,0.0 +4171,Fish Point,Pittsburgh,"Desserts, Cafe, Pizza, Mexican, BBQ, Chinese",68,0.0 +4172,Golden Bakery,Lake Charles,"Chinese, Cafe, Desserts, Fast Food",70,0.0 +4173,Hotel Maidah,Santa Rosa,"Tea, Pizza, Indian, Mediterranean, Seafood",46,0.0 +4174,Lahori Food,Austin,"Chinese, Bakery, BBQ, Fast Food",57,0.0 +4175,Majlis Foods,Del Rio,"Tea, Pizza, BBQ, Seafood",98,0.0 +4176,Cool Point,Key West,"BBQ, French, Pizza, Desserts",65,4.2 +4177,Haji Shabrati Nihari Wale,Ithaca,"Bakery, Fast Food",82,4.0 +4178,Karim's,Portsmouth,"Tea, Bakery, Desserts",54,4.0 +4179,Qureshi Kabab Corner,Vernal,"Pizza, Mexican, Bakery, Fast Food, Cafe",27,4.3 +4180,Bake Bikaner,Hartford,"Pizza, Bakery, BBQ, Fast Food, American",65,3.3 +4181,Barista,Abilene,"Fast Food, Mexican, Bakery, Pizza",88,3.3 +4182,Behrouz Biryani,Yuma,"BBQ, Fast Food, Cafe, American, Seafood",31,3.4 +4183,Brunchilli,San Juan,"Desserts, Tea, Italian, Bakery, BBQ",66,3.2 +4184,Cafe Coffee Day,Oakland,"Mexican, Bakery, Seafood",55,3.4 +4185,Chawla Dillivala,Cedar City,"Desserts, Italian, Fast Food, Cafe, American",24,2.7 +4186,Dhaba Ambarsariya,Hilton Head,"French, BBQ, Mediterranean, Seafood",47,3.3 +4187,Domino's Pizza,Pittsburgh,"Tea, Mexican, Pizza, Fast Food",69,3.4 +4188,GPW - The Food Hub,Vernal,"Desserts, Mexican, Pizza, BBQ",65,3.0 +4189,Green Bhojanalya,Manchester,"Desserts, Tea, Fast Food, Cafe, Mediterranean",20,3.2 +4190,Hira Sweets,Ogden,"Tea, Cafe, Indian, Fast Food",45,2.5 +4191,Hot Curries,Raleigh,"BBQ, Seafood",57,3.4 +4192,Meenu Caterers,Niagara Falls,"Tea, Cafe, BBQ, Fast Food",25,2.7 +4193,Moti Mahal Delux,Santa Maria,"Fast Food, Bakery, American, Italian",94,2.6 +4194,New Kadimi,Baltimore,"Desserts, Pizza, BBQ, Fast Food, Chinese",91,2.5 +4195,Polka Pastry & Snack Bar,Texarkana,"Fast Food, BBQ, Italian",71,3.2 +4196,Pudding & Pie,Kahului,"Pizza, Mexican, Fast Food, Cafe, Seafood",75,3.4 +4197,Singz,Mission,"Pizza, Bakery",88,2.5 +4198,Slice of Italy,Killeen,"Desserts, Tea, Mexican, Bakery, Seafood",89,3.4 +4199,Subway,Decatur,"Desserts, BBQ, Bakery, Fast Food, American",40,3.1 +4200,Suruchee,Newark,"Tea, Pizza, Bakery, BBQ, Chinese",44,3.4 +4201,The Bubble Tea Cafe,Columbus,"Tea, Indian, Fast Food",65,3.0 +4202,The Destination,Salt Lake City,"BBQ, American, Desserts",36,3.3 +4203,The Night Delights,Ontario,"Cafe, BBQ, Seafood",42,3.4 +4204,Tingling Pepper,St. Louis,"Tea, Cafe",26,3.4 +4205,Wah G Wah,Walla Walla,"Tea, Mexican, Bakery, BBQ, Fast Food",45,2.7 +4206,Midnight Hunger Hub,Dayton,"Tea, BBQ, Seafood",87,4.5 +4207,BarShala,Miami,"Desserts, Pizza, Bakery, Mediterranean, Seafood",41,3.5 +4208,Bemisaal Reloaded,Sioux City,"Desserts, Tea, Mexican, Bakery, Cafe",17,3.8 +4209,Bon App愆tit,Mason City,"Bakery, Indian, Seafood",49,3.8 +4210,Burger Point,Ogden,"Tea, Bakery, BBQ, Cafe",71,3.6 +4211,Cakes 'n' Crumbs,Belleville,"Cafe, Indian, Fast Food",85,3.6 +4212,China Fort,Duluth,"BBQ, Indian, Desserts",40,3.5 +4213,Giani,Houston,"Cafe, Pizza, BBQ",97,3.5 +4214,Hot Cherries,Monterey,"Bakery, Seafood",80,3.6 +4215,KFC,Lewisburg,"Bakery, Indian, Desserts",39,3.5 +4216,McDonald's,Grand Forks,"Italian, BBQ, Cafe, Mediterranean, Seafood",74,3.6 +4217,Pasta Xpress,Gulfport,"Tea, Cafe, Seafood",90,3.6 +4218,Tandoor Bar-Be-Que,Branson,"Italian, BBQ, Fast Food, Cafe, Seafood",35,3.5 +4219,TBK Kulcha's,Wenatchee,"Bakery, Pizza, BBQ, Seafood",56,3.6 +4220,The Pindi,Syracuse,"Pizza, Indian, Desserts",81,3.5 +4221,The Tangy Tomatoes,Watertown,"Desserts, French, Fast Food, Indian, Seafood",10,3.7 +4222,Thela,Nome,"Desserts, Tea, Pizza, Italian, Mexican, Seafood",40,3.5 +4223,Wah Ji Wah,Hyannis,"Tea, BBQ, Fast Food",22,3.7 +4224,Muffins,Richmond,"Chinese, Pizza, Cafe, Desserts",83,1.9 +4225,Food Scouts,Walla Walla,"Tea, Mexican, Fast Food, Cafe, Indian",76,4.3 +4226,Aggarwal Sweet India,Chattanooga,"Tea, Desserts",30,2.8 +4227,Bhola Dhaba,Houston,"Tea, Italian, Cafe, Mediterranean, Seafood",65,2.8 +4228,Cake Me Up,Omaha,"Tea, Cafe, Pizza, Fast Food",31,3.1 +4229,Chawla Snacks,Atlanta,"Tea, Pizza",48,2.9 +4230,Chef Joint,Austin,"Cafe, Pizza, Italian",89,3.2 +4231,China Hut,Hilo,"Desserts, Tea, Bakery, Cafe, American",23,3.0 +4232,Chinese Hut,Honolulu,"Desserts, Italian, Mexican, BBQ, Fast Food, Seafood",100,2.8 +4233,Curries & Kebabs,Grand Junction,"Desserts, Mexican, Cafe, American, Seafood",74,2.7 +4234,Giani's,Moab,"Pizza, Cafe, Indian, Mediterranean, Seafood",33,3.1 +4235,Green Chick Chop,Las Vegas,"Cafe, Bakery, Seafood, Fast Food",82,3.1 +4236,Kabul Restaurant,Kahului,"Desserts, Bakery, BBQ, Fast Food",58,2.8 +4237,Kadimi Dukan,Latrobe,"Bakery, Mexican, BBQ",12,3.2 +4238,Kadimi Sweets,Brunswick,"Desserts, Seafood",32,3.1 +4239,McDonald's,Butte,"Mexican, Indian, Desserts, Pizza",23,3.4 +4240,Modi Pastry Corner,Alamosa,"Cafe, Bakery",92,2.6 +4241,New Evergreen Hotel,Dubuque,"French, Pizza, Bakery",98,2.9 +4242,Nikku Hotel,Grand Island,"Desserts, BBQ, Bakery, Cafe, Indian",10,2.6 +4243,Om Hotel,Pago Pago,"Desserts, Cafe, Pizza, Bakery, Chinese, American",14,3.3 +4244,Pakeeza Burger,Manhattan,"French, Pizza, BBQ",13,2.6 +4245,Paljees Fresh Baked,Charlotte Amalie,"Desserts, Pizza, Italian, French, BBQ, Cafe",39,3.1 +4246,Pinka's Rasoi,Hyannis,"Cafe, Pizza, Bakery, BBQ",97,3.1 +4247,Republic of Chicken,Adak Island,"Fast Food, Cafe, Mediterranean, Italian",10,2.8 +4248,Sandwich & Sons,Des Moines,"Desserts, Tea, Pizza, Italian, French, Bakery",97,3.2 +4249,Simple Restaurant,Plattsburgh,"Tea, Pizza, French, BBQ, Mediterranean, Seafood",15,3.0 +4250,Subway,Dayton,"BBQ, Desserts, Seafood",11,3.3 +4251,Tempting Bar-B-Que,Melbourne,"Cafe, Bakery, Mediterranean, Fast Food",66,3.3 +4252,The Biryani Hut,Waco,"Tea, Cafe, Mediterranean, Desserts",58,2.9 +4253,Beliram Degchiwala,Atlanta,"Cafe, Pizza",14,3.5 +4254,Instapizza,Mission,"Tea, Cafe, Pizza, Seafood",24,3.9 +4255,Janta Bakery,Louisville,"Tea, Fast Food, Mediterranean, Italian",48,3.6 +4256,Pal Refreshment Corner,Cincinnati,"Pizza, BBQ",88,3.5 +4257,Transform Nutrition,La Crosse,"Tea, BBQ, Fast Food",36,3.5 +4258,Bhashi Caterers,New Orleans,"Tea, BBQ",16,0.0 +4259,Birbal Ji Dhaba,Charlotte,"Cafe, Bakery, Desserts",40,0.0 +4260,Chaap Express,Sun Valley,"Tea, Pizza, Italian, Fast Food, Seafood",84,0.0 +4261,Daawat-e-Mehak,Johnstown,"Tea, French, Pizza",51,0.0 +4262,Delhi Biryani Hut,Dallas,"Pizza, American, Seafood",90,0.0 +4263,K. B. Eating Point,Branson,"Tea, Mexican, BBQ, Cafe, Seafood",43,0.0 +4264,Kashmiri Wazwan,Hartford,"BBQ, Pizza, Indian, Desserts",26,0.0 +4265,Maan Singh Halwai,Staunton,"French, Pizza, Fast Food",83,0.0 +4266,Mughlai Darbar Muradabadi,Charlotte Amalie,"Bakery, Pizza, American",70,0.0 +4267,P.S. Chinese & Thai Food,Charlottesville,"Chinese, BBQ, Seafood",81,0.0 +4268,Pak Afghan Restaurant,Adak Island,"Tea, Bakery, Desserts, Fast Food",33,0.0 +4269,Pakeeza Restaurants,Waterloo,"Desserts, Tea, Pizza, Italian, Bakery",62,0.0 +4270,Radhe Shyam Chole Bhature,Tulsa,"Tea, Pizza, French, Cafe, Seafood",87,0.0 +4271,Sanjha Chulha,Columbus,"Chinese, Bakery, BBQ, Italian",79,0.0 +4272,Sardar A Pure Meat Shop,Tallahassee,"Desserts, Pizza, Italian, Fast Food, Seafood",31,0.0 +4273,Shahi Muradabadi & Hyderabadi,Gulfport,"Tea, Pizza, American",24,0.0 +4274,Shankar Chinese Foods,Adak Island,"Tea, French, Indian, Seafood",49,0.0 +4275,Shri Ram Sweets,Bishop,"Mexican, Pizza, Mediterranean, Fast Food",41,0.0 +4276,Subhash Punjabi Family Dhaba,New Orleans,"Pizza, Desserts",28,0.0 +4277,Tandoori Nature,Cape Girardeau,"Seafood, Pizza, Bakery, Fast Food",67,0.0 +4278,Tinker Koch,Boston,"Desserts, BBQ, Bakery, Fast Food, American",61,0.0 +4279,Wakhra Swag,Bakersfield,"Chinese, BBQ, Cafe, Desserts",20,0.0 +4280,Chawla's宊,Laredo,"Desserts, Pizza, BBQ, Chinese, Mediterranean",29,2.3 +4281,Barbeque Nation,Duluth,"Tea, Pizza, Mexican, BBQ, Bakery, Chinese",89,4.0 +4282,Novelty Dairy & Stores,Spokane,"Fast Food, Cafe, Bakery, Italian",80,4.1 +4283,Caara Cafe,Fort Dodge,"Cafe, Desserts",13,3.3 +4284,Cafe Coffee Day - The Lounge,Iron Mountain,"Bakery, Pizza, Indian, Fast Food",91,3.3 +4285,Cafe Coffee Day,Alpena,"Desserts, Tea, French, BBQ, Bakery, American",22,3.1 +4286,Costa Coffee,Elmira,"Fast Food, Tea, Pizza, Italian",51,3.4 +4287,Gulnar - Hotel Janpath,Sun Valley,"Mexican, Bakery, Fast Food",84,3.2 +4288,Kalpana Restaurant,Pensacola,"Tea, Cafe, Bakery, American",36,3.2 +4289,Meenas,Gunnison,"Tea, Bakery, Indian, Fast Food",88,2.9 +4290,Pizza Hut,Orlando,"Bakery, Pizza, Indian, Seafood",35,3.4 +4291,Prince Chaat Corner,Nantucket,"Pizza, French, BBQ, Mediterranean, Seafood",27,3.2 +4292,Rajeev Restaurant,Gustavus,"Desserts, Italian, Cafe, American, Seafood",76,3.0 +4293,RSVP,Columbus,"BBQ, Desserts, Seafood",53,2.7 +4294,Samridhi,Bakersfield,"Italian, Bakery, BBQ, Fast Food, Seafood",43,3.2 +4295,Shan E Dilli,North Platte,"Seafood, Bakery, Mediterranean, Italian",54,3.0 +4296,Svasti Cafe,Cody,"Tea, Pizza, Italian, Mexican, Bakery, Cafe",88,3.1 +4297,The Zest,Wenatchee,"Seafood, BBQ, Desserts, Fast Food",10,3.2 +4298,Masala Library,Branson,"Desserts, Tea, Fast Food, American, Seafood",58,4.9 +4299,Bhogal Chole Bhature Wala,Asheville,"Tea, Indian, Seafood",93,3.8 +4300,Bunta Bar,Sioux Falls,"Pizza, Italian, Fast Food, Cafe, American",22,3.9 +4301,Cafe Coffee Day The Square,Devils Lake,"Tea, Pizza, Italian, Fast Food, Cafe",28,3.7 +4302,Cottage Caf愆 by Smoothie factory,Bakersfield,"Cafe, BBQ, Desserts",32,3.7 +4303,Depaul's,Seattle,"BBQ, Desserts, Seafood",83,3.7 +4304,Fresc Co,Twin Falls,"Desserts, Mexican, BBQ, Mediterranean, Seafood",60,3.8 +4305,Informal,Long Beach,"Desserts, Pizza, Fast Food, Cafe, Indian",63,3.9 +4306,Lutyens Cocktail House,Buffalo,"Bakery, BBQ, Fast Food",12,3.9 +4307,McDonald's,Jacksonville,"Tea, Indian, Desserts, Italian",15,3.8 +4308,Office Office,Augusta,"Desserts, Cafe, Bakery, Fast Food, Chinese",16,3.9 +4309,Pappu Chat Bhandar,Eugene,"Tea, Bakery, BBQ, Fast Food, Chinese",43,3.5 +4310,The Beer Cafe,Kotzebue,"Desserts, Mexican, Fast Food, Mediterranean, Seafood",99,3.6 +4311,The Masala Trail,Monterey,"Cafe, Mediterranean, Desserts",15,3.9 +4312,Chill House Kafe,Cheyenne,"Pizza, Mexican, BBQ, Fast Food, Seafood",45,0.0 +4313,Connoisseur,Hilton Head,"Desserts, Tea, Italian, Cafe, Seafood",61,0.0 +4314,Mahesh Chaat Corner,Christiansted,"Tea, BBQ, Fast Food",92,0.0 +4315,Pind Balluchi,Monterey,"Bakery, American, Desserts",46,0.0 +4316,Queen's Way,Cincinnati,"Cafe, Fast Food",99,0.0 +4317,Sea Lord,Minot,"Cafe, Bakery, Desserts, Seafood",80,0.0 +4318,52 Janpath,Nantucket,"Desserts, Mexican, BBQ, Bakery, Cafe",10,4.2 +4319,Cafe Southall,Rockford,"Seafood, Pizza, Cafe, Fast Food",56,4.2 +4320,Saravana Bhavan,Manhattan,"Desserts, Pizza, BBQ",93,4.2 +4321,Tourist Janpath,Boise,"Fast Food, Pizza, BBQ, Seafood",59,4.1 +4322,Cafe Coffee Day,Presque Isle,"Tea, Pizza, Mediterranean",49,3.1 +4323,Cafe Punjabi,Aberdeen,"Tea, Indian, Desserts, Seafood",19,3.3 +4324,Chai Garam,Portsmouth,"Desserts, Mexican, Bakery, Cafe, Seafood",42,2.9 +4325,Chai Shots,Dothan,"Desserts, Tea, Pizza, Bakery, Indian",58,3.0 +4326,Chao Cart,Scranton,"French, Bakery, Fast Food",90,3.1 +4327,Deli Belly,Bakersfield,"Tea, Indian, Desserts",99,2.6 +4328,Ego,Presque Isle,"Tea, Cafe, Pizza, Fast Food",33,3.3 +4329,Fresh n Refresh,Fayetteville,"Fast Food, Cafe, BBQ, Italian",33,2.8 +4330,Jack Po!tato's,Chattanooga,"Tea, Bakery, Mediterranean, Seafood",63,3.3 +4331,Moti Mahal Delux,Bloomington,"Bakery, Desserts",59,2.8 +4332,Pizza Hut Delivery,Iron Mountain,"Desserts, Seafood",27,2.5 +4333,Riviera,Laredo,"Cafe, BBQ, Mediterranean, Fast Food",16,3.2 +4334,Subway,Fort Leonard Wood,"Fast Food, American, BBQ, Italian",82,2.8 +4335,Tamura,Bemidji,"Cafe, American, BBQ",85,3.3 +4336,ANF Kitchen Express,Hilton Head,"Mexican, Bakery, Mediterranean, Seafood",38,3.5 +4337,Mumu Dahlin,Oakland,"Cafe, Mexican, Pizza, Mediterranean",49,3.8 +4338,Startup Cafe,St. Louis,"Bakery, Pizza, American, Cafe",31,3.7 +4339,Starvin' Marvin,Albany,"Tea, Cafe, Mexican, Indian",20,3.8 +4340,Wok On Wheels,Oakland,"Tea, Pizza, Bakery, Mediterranean",100,3.8 +4341,Chai Mantra,Paducah,"Cafe, Seafood",74,0.0 +4342,Sagar Ratna,Charleston,"Cafe, Pizza, French, Fast Food, Chinese, Seafood",84,2.4 +4343,Paatra - Jaypee Siddharth,North Platte,"Tea, Bakery, BBQ",35,3.4 +4344,Eggspectation - Jaypee Siddharth,Pensacola,"Cafe, BBQ, Italian",25,3.5 +4345,Ano Tai - Jaypee Vasant Continental,Moline,"Tea, American, BBQ",27,3.4 +4346,Tapas - Jaypee Vasant Continental,Myrtle Beach,"BBQ, Mediterranean, Seafood",90,3.2 +4347,The Old Baker - Jaypee Vasant Continental,Salisbury,"Tea, BBQ, Desserts, Seafood",15,3.3 +4348,Eggspectation - Jaypee Vasant Continental,Rockford,"Tea, Mediterranean, Seafood",77,3.6 +4349,Paatra - Jaypee Vasant Continental,Gainesville,"Desserts, Pizza, Mexican, Cafe, Seafood",18,3.5 +4350,Ambarsaria by Gourmet Affaire's,Portsmouth,"Cafe, Desserts, American, BBQ",63,3.1 +4351,August Moon,Santa Ana,"BBQ, Pizza, Bakery, Desserts",45,2.8 +4352,Keventers,Laredo,"Pizza, Bakery, Mediterranean, Fast Food",68,3.3 +4353,Moets Curry Leaf Express,Midland,"Tea, Pizza, BBQ, Bakery, Chinese",27,3.2 +4354,Natural Ice Cream,Oklahoma City,"Desserts, Italian, Fast Food, Mediterranean, Seafood",45,4.5 +4355,"34, Chowringhee Lane",Gainesville,"French, BBQ, Fast Food, Chinese, Seafood",25,3.2 +4356,Qureshi,Melbourne,"Tea, French, Cafe, Desserts",76,3.0 +4357,Shree Ram Sweet Centre,Hagerstown,"Tea, Italian, Bakery, BBQ, Seafood",46,2.7 +4358,Teflas,Billings,"Cafe, Bakery, BBQ, Italian",80,3.4 +4359,The Viraj Food Zone,Baltimore,"Chinese, BBQ, Desserts",75,3.2 +4360,RollsKing,Charlottesville,"Tea, Chinese, Pizza, BBQ",63,3.5 +4361,Secular House Canteen,Jacksonville,"Desserts, BBQ, Fast Food, Chinese, Seafood",64,3.8 +4362,Amul Ice-Cream Parlour,Waco,"Cafe, Desserts",83,0.0 +4363,Sunny Restaurant & Tiffin,Aberdeen,"Tea, Chinese, Desserts, Fast Food",54,0.0 +4364,Kerala Cafe,Tallahassee,"Tea, Pizza, Bakery, Chinese, Seafood",10,2.3 +4365,Veer Jee Restaurant,Wichita,"Desserts, Tea, Italian, BBQ, Fast Food",33,3.1 +4366,Oval Bar - JW Marriott New Delhi,Laramie,"Desserts, Pizza, Bakery, BBQ, Chinese, Mediterranean",59,3.3 +4367,Bakey Wish,Bismarck,"American, Desserts, Fast Food",86,3.0 +4368,Bikaner Namkeen Bhandar,Decatur,"Fast Food, BBQ, Desserts, Italian",83,3.1 +4369,Chhole Bhature Corner,Rapid City,"Bakery, Pizza, Seafood",29,3.3 +4370,Fresh n Frozen,Idaho Falls,"French, Bakery, Mediterranean, Seafood",31,3.1 +4371,Pind Punjabi,Madison,"Bakery, Indian, Fast Food",42,3.0 +4372,Sanjha Chulha,Evansville,"Tea, Bakery, Fast Food, Chinese, Seafood",66,3.1 +4373,Shaan e Punjab,Amarillo,"Cafe, BBQ, Desserts, Italian",86,3.1 +4374,Cafe 27,Latrobe,"Pizza, Seafood",12,3.6 +4375,MR.D - Deliciousness Delivered,Hilton Head,"Tea, French, Mexican, Fast Food",18,3.5 +4376,Pita Pit,Sioux City,"French, Pizza, BBQ",83,3.8 +4377,Al-Malik Chicken Point,Moab,"French, Mexican, Cafe, Seafood",28,0.0 +4378,Amul Sweets & Bakery,Seattle,"Desserts, Tea, Pizza, BBQ, Indian",36,0.0 +4379,Elements - Mapple Express,Las Vegas,"Tea, BBQ, Mediterranean, Seafood",64,0.0 +4380,Food 24,Rochester,"Fast Food, Tea, Bakery, Seafood",48,0.0 +4381,Food Corner,Dillingham,"Tea, BBQ",38,0.0 +4382,Food Master's Galley,Butte,"Desserts, BBQ, Fast Food, Cafe, Indian",74,0.0 +4383,Habibi Express,Norfolk,"Tea, Chinese, Cafe, Italian",14,0.0 +4384,Hide Out Cafe,Omaha,"Tea, Cafe, Bakery, Fast Food, Chinese",90,0.0 +4385,Moriarty Delivers,Pasco,"Cafe, Mexican, Bakery",12,0.0 +4386,Big Chill,West Palm Beach,"French, BBQ, Fast Food",84,4.4 +4387,Maxims Pastry Shop,Beaumont,"Fast Food, Cafe, BBQ, Seafood",81,4.2 +4388,Uncultured Cafe & Bar,Watertown,"Tea, Cafe, Desserts, Seafood",39,4.3 +4389,2 Nice 2 Slice,Augusta,"Seafood, Cafe, Italian",86,3.2 +4390,Aggarwal Bikaneri Sweets,Jacksonville,"Bakery, BBQ, Cafe, Indian, Seafood",38,2.9 +4391,Aggarwal Sweet Corner & Restaurant,Stockton,"Tea, Seafood, Pizza, Italian",33,2.6 +4392,Aggarwal Sweets India,Greensboro,"Cafe, Pizza, Bakery, Mediterranean",34,2.8 +4393,Aggarwal's Sweets Paradise,Louisville,"Tea, French, Bakery, Cafe",60,2.7 +4394,Aggarwal's Sweets,Lewisburg,"Pizza, French, BBQ, Fast Food, Cafe",85,2.9 +4395,Anna Ka Dosa,Redding,"Pizza, Mediterranean, Desserts",42,3.4 +4396,Big Chow Xpress,Cedar Rapids,"Desserts, Tea, Bakery, BBQ, Chinese",43,2.6 +4397,Bikaner Sweets & Namkeen,Philadelphia,"Desserts, BBQ, Fast Food, Chinese, Seafood",83,2.9 +4398,Cafe Coffee Day,St. Petersburg,"Tea, Desserts",16,2.9 +4399,Cake Plaza,Durango,"Cafe, Desserts, Italian",95,3.1 +4400,Crispy Tokri,Spokane,"Cafe, Mexican, Bakery",91,3.1 +4401,De Royale Food's,Decatur,"Cafe, Bakery, American",95,3.2 +4402,Faasos,International Falls,"Tea, Chinese, Fast Food",67,3.0 +4403,Fouji Da Vaishno Dhaba,Yakutat,"Tea, Chinese, Bakery",40,2.9 +4404,Fun Bytes,Orlando,"Desserts, Tea, French, BBQ, Fast Food",13,2.5 +4405,G's Patisserie,Houston,"Desserts, Tea, Pizza, Fast Food, American",65,2.8 +4406,Giani,San Francisco,"Tea, Pizza, Bakery, Fast Food, Chinese, Indian",74,3.2 +4407,Gopals 56,Punta Gorda,"Cafe, Bakery, BBQ",46,3.2 +4408,Green Chick Chop,Kansas City,"Cafe, BBQ, Mediterranean, Desserts",41,3.2 +4409,Heaven's Kitchen,Nantucket,"Fast Food, French, Chinese, Seafood",42,3.3 +4410,Heavens Food Corner,Brainerd,"Tea, French, BBQ, Seafood",31,2.8 +4411,Just Kababs,Augusta,"Tea, Pizza, BBQ, American, Seafood",31,3.4 +4412,Keventers,Las Vegas,"Italian, French, Bakery, BBQ, Seafood",66,3.2 +4413,Komal Kitchen,Beaumont,"Fast Food, Pizza, Bakery, Italian",36,2.8 +4414,Kwality Sweets & Restaurant,Panama City,"Tea, Pizza",42,2.9 +4415,Mehak Food Corner,Lynchburg,"Bakery, Desserts",99,3.2 +4416,Mr. Sub,Oakland,"French, Pizza, Fast Food",66,3.2 +4417,Muradabadi Shahi Biryani & Chicken Corner,Santa Barbara,"Desserts, Tea, Pizza, French, Seafood",29,2.6 +4418,Muradabadi,Chattanooga,"Cafe, Pizza, Bakery, BBQ",16,3.0 +4419,New Radhe Radhe Snacks Corner,Deadhorse,"Desserts, Tea, Pizza, BBQ, Mediterranean",77,3.1 +4420,Nirula's Ice Cream,Gunnison,"Tea, Bakery, BBQ",16,3.2 +4421,Noor Restaurant,Pellston,"Cafe, Chinese, Pizza, Mediterranean",97,3.4 +4422,Paul's Homemade,San Juan,"Tea, BBQ, Seafood",54,3.1 +4423,Pinkom's Bar-Be-Que,Oklahoma City,"Desserts, Tea, Pizza, Italian, Mexican",66,3.2 +4424,Prince of China,Nantucket,"Desserts, Pizza, Bakery, Fast Food, American",41,3.1 +4425,Punjabi Corner,Butte,"Cafe, BBQ, Mediterranean, Seafood",87,3.3 +4426,Punjabi Snacks,Little Rock,"Tea, French, Desserts, Fast Food",41,2.9 +4427,Quality Food Point,Grand Island,"Cafe, Bakery, BBQ, Fast Food, Chinese",41,3.0 +4428,Radhe Shyam,Atlanta,"Pizza, Fast Food",32,2.8 +4429,Raj South Indian Food,Petersburg,"French, Mexican, BBQ, Fast Food, Cafe",67,3.0 +4430,Roll Club,Charlotte Amalie,"Tea, Bakery, Desserts, Fast Food",47,3.3 +4431,Shameem Kabab Corner,Roanoke,"Desserts, Tea, Mexican, Cafe, Seafood",72,3.3 +4432,Shiv Dhaba,Washington,"Bakery, American, Cafe, Seafood",61,3.1 +4433,Silver Spoons,North Platte,"Bakery, Mexican, Pizza, Italian",47,2.7 +4434,Takkar Dhaba,Richmond,"Fast Food, Indian, Seafood",45,2.6 +4435,The Biryani Wallas,Melbourne,"Tea, BBQ, Desserts, Italian",61,3.2 +4436,The Tuck Shop,State College,"Bakery, BBQ, Mediterranean",20,3.3 +4437,Uncle Xpress,Reno,"Chinese, Pizza, Fast Food",17,3.4 +4438,Vaishno Rasoi,Salisbury,"Pizza, Fast Food",80,2.6 +4439,Vatika,Eau Claire,"Tea, Cafe, BBQ, Fast Food",25,2.7 +4440,Walk To Italy,Moline,"Tea, Seafood, Desserts, Fast Food",69,3.1 +4441,Behrouz Biryani,Augusta,"Mexican, Bakery, Desserts",40,3.6 +4442,Big Dragon,Laredo,"Tea, Cafe, Desserts",31,3.6 +4443,Cafe Filter,Dodge City,"Fast Food, Tea, Bakery, Seafood",91,3.6 +4444,Chowki,Mason City,"French, Bakery, BBQ, Cafe, Indian, Seafood",26,3.7 +4445,Circle Cafe and Bar,Roanoke,"Cafe, BBQ, Desserts, Seafood",64,3.5 +4446,FreshMenu,Minneapolis,"Seafood, Desserts, Fast Food",88,3.6 +4447,Giani's,Niagara Falls,"Pizza, Indian, Seafood",74,3.5 +4448,Gopal's 56,San Juan,"French, Bakery, Cafe",10,3.8 +4449,Instapizza,Bellingham,"Cafe, Mexican, Bakery, BBQ, Chinese",17,3.8 +4450,Just Vada Pav,Helena,"Desserts, Pizza, Mexican, Cafe, Seafood",87,3.6 +4451,Khidmat,Fort Wayne,"Desserts, Pizza, Mexican, BBQ, American",99,3.6 +4452,Naivedyam,Santa Rosa,"Tea, Cafe, Desserts, Seafood",37,3.8 +4453,New Shere Punjab Dhaba,Sitka,"Desserts, Tea, Pizza, BBQ, Indian, Mediterranean",30,3.6 +4454,Sant Sweets,Omaha,"Chinese, Pizza, BBQ",25,3.5 +4455,Tikka- Way,Jackson,"Desserts, Italian, Bakery, Fast Food, Seafood",44,3.5 +4456,Bake Bite,North Platte,"Cafe, Mexican, Pizza, Seafood",84,0.0 +4457,Chinese Chaat Corner,Greensboro,"Desserts, Pizza, Mexican, Bakery, Indian",32,0.0 +4458,Chocofairies,South Bend,"Tea, Chinese, Pizza, Desserts",91,0.0 +4459,Punjabi Rasoi,Waterloo,"Tea, Mexican, Bakery, Fast Food, Seafood",17,2.4 +4460,Punjabi Xpress,Brainerd,"Tea, Cafe, Bakery",90,2.3 +4461,The Cake Factory,Ketchikan,"Cafe, Mexican, Bakery",50,2.3 +4462,"34, Chowringhee Lane",Jackson,"Cafe, Pizza, Italian",90,3.3 +4463,Annapurna Restaurant,Branson,"Pizza, Desserts, Seafood",94,2.5 +4464,BTW,Lake Charles,"Tea, Pizza, Bakery, Fast Food, Mediterranean",80,3.1 +4465,Cafe Coffee Day,Muskegon,"Tea, Bakery, Pizza, Fast Food",41,3.3 +4466,Chawla's Chic Inn,Pittsburgh,"Tea, Mediterranean, Desserts",89,3.3 +4467,Chennai Hot Cafe,Aberdeen,"Cafe, Pizza, BBQ, Mediterranean",19,3.4 +4468,Daawat E Mezbaan,Houston,"Pizza, BBQ, Cafe, American, Seafood",63,3.1 +4469,Dessert in Desert,Missoula,"Tea, Cafe, Bakery, Pizza",80,3.4 +4470,Domino's Pizza,Green Bay,"Tea, Cafe",54,3.4 +4471,Filmy Cafe & Bar,Bangor,"Tea, Pizza, Italian, BBQ, American",97,2.9 +4472,Firenze,Brownsville,"Bakery, Mediterranean, BBQ, Seafood",81,2.8 +4473,Giani,Idaho Falls,"Desserts, Pizza, BBQ, Cafe, American",67,3.4 +4474,Gullu's,Cleveland,"Mexican, Pizza, Indian, Seafood",38,3.1 +4475,Manwhar,Moab,"Tea, Cafe, Pizza, Chinese, Seafood",91,3.2 +4476,Midnight Hunger Hub,Mason City,"Mexican, Pizza, American, Seafood",72,3.3 +4477,Mini Shop,Florence,"Cafe, Pizza, Indian, Desserts",98,3.3 +4478,Nine 75 Lounge & Bar,Wichita,"Tea, American, Seafood",84,3.2 +4479,Pradhan Ji Multi Cuisine Restaurant,Gulfport,"Tea, Mexican, Fast Food, Cafe, Seafood",29,3.3 +4480,Punjabi Chaap Corner,Lubbock,"Pizza, Italian, BBQ, Fast Food, Chinese, Seafood",15,2.9 +4481,Sagar Ratna,Ithaca,"Tea, Italian, Bakery, Fast Food, Cafe",88,2.7 +4482,Shiva Coffee & South Indian Fast Food,Iron Mountain,"Tea, Pizza, Bakery, Fast Food, Indian",93,2.7 +4483,The Ice Cafe,Peoria,"Tea, Pizza, Bakery, Mediterranean",66,3.2 +4484,Tikka Junction,West Palm Beach,"Tea, Fast Food, Bakery, Seafood",53,3.4 +4485,Trending Eats,San Luis Obispo,"Pizza, BBQ",83,3.4 +4486,Twenty Four Seven,Lexington,"Fast Food, Seafood, Italian",13,3.3 +4487,Vikrant Cafe,Louisville,"Tea, Bakery, Fast Food, Mediterranean, Seafood",86,3.3 +4488,Vishal Restaurant,Chattanooga,"Tea, Pizza, BBQ, Seafood",27,3.1 +4489,Badri Prasad Ramesh Kumar Caterers,Salt Lake City,"Desserts, Tea, Bakery, Mediterranean, Seafood",55,3.5 +4490,Bistro,Newport News,"Cafe, BBQ, Seafood",61,3.9 +4491,Chaudhary Sweets Corner,Moline,"Tea, French, Desserts, Seafood",86,3.8 +4492,Chowringhee,Pellston,"Tea, Bakery, Desserts, Seafood",44,3.6 +4493,Cones & Curries,Hartford,"Pizza, Desserts, Italian",92,3.7 +4494,Darvesh Corner,Ithaca,"Desserts, Tea, Pizza, Cafe, Indian, Mediterranean",65,3.6 +4495,Deez Biryani & Kebabs,Mosinee,"Pizza, French, BBQ, Bakery, Fast Food, Chinese",75,3.7 +4496,Frozen Pan,Grand Rapids,"Tea, Bakery, BBQ",73,3.9 +4497,Giani's,Kodiak,"Pizza, Bakery, Desserts, Seafood",73,3.8 +4498,Havmor Ice Cream,Saipan,"Desserts, Pizza, French, BBQ, Chinese, Seafood",39,3.7 +4499,Keventers,St. Louis,"Tea, Bakery, Fast Food, Chinese, Indian",23,3.5 +4500,Manohar Bikkaneri,Hartford,"Chinese, BBQ, Fast Food",61,3.8 +4501,Manohar Bikkaneri,St. Cloud,"Chinese, American, Desserts, Fast Food",62,3.6 +4502,Nukkadwala,Grand Junction,"Pizza, BBQ",82,3.7 +4503,Om Di Hatti,Bemidji,"Indian, American, BBQ, Fast Food",95,3.7 +4504,Orange Tree Cafe,Killeen,"Desserts, Tea, Italian, Bakery, Fast Food, Mediterranean",16,3.5 +4505,Rigo Noodles,Alexandria,"Tea, Cafe, Mediterranean, Seafood",93,3.5 +4506,Sethi's The Cake Shop,Kona,"Chinese, Mexican, Pizza, Seafood",32,3.9 +4507,Shake Square,Ketchikan,"French, BBQ, Cafe, Desserts",36,3.6 +4508,Sharma Kachoriwala,Manchester,"Chinese, Indian, Cafe, Fast Food",34,3.7 +4509,Shawarma Wala,Alexandria,"Pizza, Indian, Seafood",57,3.7 +4510,Shree Rathnam,Roswell,"Tea, Pizza, Bakery, Chinese, Indian",21,3.5 +4511,Shri Bankey Bihari Brajwasi Rasgulle Wala,Louisville,"Tea, Cafe",79,3.5 +4512,Sid's Kitchen,Hagerstown,"Tea, French, Cafe, Fast Food",56,3.8 +4513,Subway,Brainerd,"Tea, Bakery, Desserts, Fast Food",21,3.5 +4514,Sweet Life By Henna,Wichita,"Tea, Bakery, Indian, Mediterranean",68,3.5 +4515,The Midnight Heroes,Alamosa,"Tea, BBQ, Cafe, Indian, Seafood",10,3.8 +4516,Urban Hub,Kalispell,"Desserts, Tea, Mexican, BBQ, Indian",64,3.6 +4517,Vaishno Chat Bhandar,Louisville,"Cafe, Bakery, Seafood",48,3.9 +4518,Ved Dhaba,Rochester,"Cafe, Pizza, BBQ",57,3.5 +4519,Veg Ex,Islip,"Seafood, Pizza, Desserts, Italian",21,3.6 +4520,Wokin Street,Sault Ste. Marie,"Pizza, Mediterranean, Fast Food",62,3.6 +4521,Yadav Namkeens & Bakers,Montgomery,"Desserts, Tea, Pizza, French, American, Seafood",19,3.5 +4522,Javed Chicken Corner,Helena,"Chinese, French, Bakery, BBQ, Cafe",44,0.0 +4523,Kamal Chicken,Birmingham,"Tea, Mexican, BBQ, Seafood",83,0.0 +4524,Singh Chinese Fast Food,Binghamton,"Tea, Mexican, Bakery, BBQ, Mediterranean, Seafood",94,0.0 +4525,Chill'm Bar & Cafe,Scranton,"Tea, Chinese, Bakery, Cafe",49,4.2 +4526,Coffee & Cream,Pasco,"Cafe, Mexican, Desserts",17,4.0 +4527,Chawla Di Hutti,Trenton,"Chinese, Pizza, BBQ, Italian",44,3.1 +4528,Sher 'A' Punjab Bhojnalya,Traverse City,"French, Bakery, Fast Food, Cafe, Seafood",76,3.3 +4529,Guru Rakha,Montgomery,"Desserts, Tea, Cafe, Pizza, French, Chinese",43,3.1 +4530,Shudh Vaishno Hotel,Marquette,"Desserts, Tea, BBQ, Fast Food, Mediterranean",22,3.4 +4531,Kumar Samose Wala,Cape Girardeau,"Tea, Mexican, BBQ, Italian",82,4.1 +4532,Amigo's Deli,Ketchikan,"Desserts, BBQ, Fast Food, Indian, Seafood",46,3.2 +4533,Ananda Food Express,Augusta,"Fast Food, Cafe, Seafood",13,3.2 +4534,Green Chick Chop,San Francisco,"Tea, Pizza, Italian, BBQ, Mediterranean, Seafood",39,3.4 +4535,Khana Vaana,Niagara Falls,"Bakery, BBQ, Cafe, Desserts",80,3.4 +4536,Momoholic,Gunnison,"Cafe, Pizza, American, Desserts",75,3.3 +4537,Nazeer Foods,Scottsbluff,"Tea, BBQ, Desserts",69,3.3 +4538,Pind Balluchi,Hartford,"Tea, Mexican, BBQ, Fast Food, Cafe",21,2.6 +4539,Rumours,Mason City,"Cafe, Seafood, Desserts, Fast Food",80,3.4 +4540,Spice Grill,Bishop,"Tea, French, Mexican, BBQ",37,3.2 +4541,Utopia,La Crosse,"Bakery, BBQ, Fast Food, American, Seafood",15,3.2 +4542,Aroma Rest O Bar,Rockford,"Bakery, Fast Food, Chinese, American, Seafood",58,3.6 +4543,Cafe Shloka,Traverse City,"Chinese, Mexican, BBQ, Fast Food",49,3.5 +4544,Chawla's Tandoori Junction,Wichita,"Pizza, American, Seafood",57,3.5 +4545,Desi Villa,Albany,"Tea, Indian, American, Pizza",48,3.7 +4546,Kanwarji's,Boise,"Desserts, Pizza, French, Fast Food, Seafood",50,3.5 +4547,Palomino,Punta Gorda,"Desserts, Italian, BBQ, Cafe, American",48,3.7 +4548,Raasa The Luxuriate Fine Dine,Everett,"Desserts, Pizza, Mexican, BBQ, Fast Food, Indian",93,3.7 +4549,Shiv Tikki Wala,Yuma,"Cafe, Bakery, Desserts, Fast Food",14,3.8 +4550,The Barbeque Company,Fort Leonard Wood,"Tea, Pizza, French, Bakery, Seafood",26,3.8 +4551,The Wrap Factory,Yuma,"Fast Food, BBQ, Desserts, Italian",88,3.6 +4552,Urban Punjab,Albany,"Desserts, Tea, Pizza, Indian, Mediterranean, Seafood",63,3.5 +4553,Classic,Greenville,"Tea, French, BBQ",25,4.0 +4554,Goosebumps,Bishop,"French, Seafood, Fast Food",74,4.0 +4555,Adyar Ananda Bhavan,Omaha,"Cafe, BBQ",59,2.8 +4556,Amma Mess,Eugene,"Desserts, Tea, Mexican, BBQ, Bakery, Chinese",81,3.4 +4557,Amritsari Chaap Corner,San Juan,"Tea, Chinese, Desserts",97,2.9 +4558,Aroma Spice,Flagstaff,"Tea, Pizza, Desserts, Fast Food",85,3.4 +4559,Boheme Cafe Bar,Lawton,"Desserts, Seafood",90,3.2 +4560,Cafe Coffee Day,Charlottesville,"Tea, French, Bakery, Pizza",50,2.6 +4561,Chinese King,Branson,"Desserts, Fast Food",13,2.5 +4562,Chopsuey,Champaign,"Cafe, American, Mediterranean, Seafood",31,3.2 +4563,Chowringhee,Albuquerque,"Bakery, Indian, Desserts, Fast Food",91,3.4 +4564,Crossroad Bar and Restaurant,Vernal,"Tea, Bakery, Desserts",73,3.0 +4565,Domino's Pizza,Ogden,"Pizza, Bakery, Seafood",90,3.4 +4566,Giani's,Fairbanks,"Tea, Bakery, Fast Food",93,3.4 +4567,Giani,Minneapolis,"Cafe, Mexican, Bakery, Desserts",17,2.7 +4568,Gulnar Bar Be Que,Alamosa,"Desserts, Tea, Indian, Cafe, American, Seafood",30,3.1 +4569,Kwality Bengali Sweets,Richmond,"Tea, Desserts",36,2.9 +4570,Little Chef,Wrangell,"Desserts, Mexican, BBQ, Cafe, Indian",15,2.7 +4571,M J Dosa Corner,Omaha,"Tea, French, Bakery, Italian",69,2.9 +4572,Moolchand's,Killeen,"French, Pizza, BBQ",59,3.3 +4573,New Angaar Hyderabadi,Wichita,"BBQ, Desserts, Fast Food",32,3.1 +4574,New Frontier Hotel,Cedar City,"Seafood, Indian, BBQ, Italian",26,3.3 +4575,Oberoi Biryani,Omaha,"Tea, BBQ, Mediterranean",100,2.9 +4576,Om Ji Om,Ogdensburg,"Pizza, Seafood",67,3.2 +4577,Om Saravana Bhavan,Hibbing,"Bakery, BBQ, Italian",52,2.7 +4578,Pindi Meat,Salisbury,"BBQ, Pizza, Bakery, Desserts",99,3.4 +4579,Punjab Sweet Corner,Rochester,"Bakery, Pizza, Desserts, Italian",40,3.3 +4580,R1 Lounge,Concord,"Tea, Seafood",78,2.6 +4581,R1 Take Away,Daytona Beach,"French, Pizza, Bakery, Desserts",47,2.5 +4582,Raffles,Colorado Springs,"Chinese, Pizza, BBQ, Fast Food",67,3.1 +4583,Raj Sweets,Chattanooga,"Desserts, Tea, BBQ, Cafe, Mediterranean",69,2.8 +4584,Ramas Cafe,Kalispell,"Tea, Pizza, French, Mexican, Bakery, Cafe",86,3.3 +4585,Sandoz,Lewisburg,"Tea, Pizza, American, Seafood",75,3.4 +4586,Sandoz,Shreveport,"Cafe, Indian, Mediterranean, Desserts",21,2.7 +4587,Shudh,Key West,"French, Pizza, Seafood, Fast Food",38,3.1 +4588,Southy,Ogdensburg,"Tea, Mexican, Desserts",32,3.1 +4589,Spicy by Nature,Paducah,"Cafe, Desserts",62,2.7 +4590,Spicy N Karara,Cheyenne,"Bakery, Indian, Seafood",43,3.3 +4591,Spooky Sky,Phoenix,"Tea, Pizza, Fast Food, Cafe, Indian",15,3.4 +4592,Sri Krishna Udupi,Sitka,"Tea, Cafe, Mexican, Seafood",69,3.0 +4593,Tempting Restaurant,Lansing,"Cafe, Pizza, BBQ",35,2.7 +4594,The Smokin' Grill by The Flashback,Gustavus,"Tea, Cafe, BBQ, Chinese, Seafood",68,3.3 +4595,Three Tuns,Ithaca,"Tea, French, Cafe",87,3.2 +4596,Wah Ji Wah,Missoula,"Tea, Cafe, Pizza, Bakery, Chinese, American",41,2.5 +4597,Wow! Momo,Bishop,"Mexican, Bakery, Fast Food",19,2.6 +4598,Wrap & Roll,Bristol,"Bakery, Indian, Cafe, BBQ",35,3.4 +4599,Anjlika Pastry Shop,Pocatello,"Pizza, French, Bakery, BBQ, Cafe",11,3.6 +4600,Bakeology,Corpus Christi,"Tea, Pizza, Mediterranean",26,3.5 +4601,Changezi Chicken,Yakima,"Cafe, Bakery, Seafood, Fast Food",83,3.7 +4602,Chargrill Resto Bar,Latrobe,"Desserts, Tea, Cafe, Bakery, Chinese",70,3.6 +4603,Chowringhee,Newburgh,"Fast Food, Cafe, BBQ, Seafood",90,3.7 +4604,Glenz Cafe N Bakers,Alexandria,"Chinese, Pizza, Cafe, Desserts",68,3.8 +4605,Happy2Bake,Killeen,"Cafe, Indian, BBQ",71,3.5 +4606,Nazeer Foods,Idaho Falls,"Cafe, BBQ",24,3.5 +4607,Pakode Ki Dukaan,Ogdensburg,"Bakery, BBQ, Fast Food",49,3.6 +4608,Peshawari Chicken Corner,North Bend,"Pizza, Italian, Fast Food, Cafe, Seafood",80,3.6 +4609,Prem Dhaba,Ogdensburg,"Pizza, Mexican, BBQ, Fast Food, Cafe, Indian",23,3.7 +4610,Ravi Raj Di Kulfi,Salina,"Desserts, Tea, Cafe, Pizza, Chinese, Indian",65,3.6 +4611,Shawarma King's,Hyannis,"Tea, Chinese, Pizza, Italian",85,3.7 +4612,Shri Rama Restaurant,Gunnison,"Bakery, Mediterranean, Desserts",13,3.5 +4613,Sri Balaji,Punta Gorda,"Chinese, Bakery, Cafe, Desserts",60,3.5 +4614,Standard Burfee,Harrisburg,"Cafe, Fast Food",85,3.8 +4615,Subway,Hartford,"Pizza, Italian, BBQ, Fast Food, Seafood",80,3.6 +4616,Suruchi,Fort Lauderdale,"Desserts, Tea, French, Mexican, BBQ, Fast Food",13,3.8 +4617,Tera Hotel,St. Louis,"Fast Food, Pizza, Seafood",88,3.5 +4618,The Diet Kitchen,Bishop,"Pizza, Bakery, BBQ, Fast Food",97,3.7 +4619,The Spot,Richmond,"Indian, BBQ, Seafood",17,3.5 +4620,Wrapss,Yakima,"BBQ, Seafood",50,3.5 +4621,Wrapss,Ketchikan,"Desserts, Italian, BBQ, Cafe, American",46,3.5 +4622,Al Naseem Foods Shawarma,Jacksonville,"Cafe, Pizza, American",24,0.0 +4623,Ganpati Bhoj,Palm Springs,"Cafe, Mexican, Pizza",67,0.0 +4624,Pandit Dhaba,Waco,"Bakery, American, BBQ",42,0.0 +4625,Red Chili Potato,Long Beach,"Cafe, Bakery, Desserts, Seafood",47,0.0 +4626,Cafe Coffee Day,Gainesville,"Bakery, Mexican, Indian, BBQ",17,2.3 +4627,Jade Garden,Little Rock,"Mexican, BBQ, Mediterranean, Seafood",90,2.4 +4628,Art of Spices,Harrisburg,"Chinese, Pizza, French, Bakery, BBQ, Cafe",11,4.0 +4629,Sindhi Corner,White Plains,"American, Desserts, Fast Food",53,4.0 +4630,The Feast House,Champaign,"Chinese, Cafe, Seafood",45,4.3 +4631,Zaffran,Louisville,"Desserts, Tea, Bakery, Fast Food, Chinese",12,4.5 +4632,McDonald's,Ogden,"Tea, Pizza, BBQ",17,3.3 +4633,Captain Grub,Laramie,"Tea, Cafe, Desserts",64,3.1 +4634,M:Eat by Blanco,Kona,"Cafe, Pizza, American, BBQ",60,3.3 +4635,Omazoni,Brainerd,"Tea, Pizza, Italian, Bakery, BBQ, Mediterranean",58,2.5 +4636,Prabhu Chaat Bhandar,Paducah,"Tea, Bakery, BBQ, Fast Food, Chinese",12,3.2 +4637,Sugar & Spice - Le Marche,Omaha,"Tea, Cafe",55,3.3 +4638,Big Chill,Salisbury,"Tea, Pizza, Desserts, Italian",72,4.5 +4639,Big Chill,Evansville,"Tea, American, BBQ",33,4.6 +4640,Amici Cafe,Del Rio,"Cafe, Mexican, Bakery",96,3.8 +4641,Azam's Mughlai,Sacramento,"Bakery, Pizza, American",28,3.9 +4642,Boombox Cafe,Palm Springs,"Tea, Pizza, Mediterranean",28,3.6 +4643,Cafe Illuminatii,Moline,"Desserts, Pizza, Mexican, Fast Food, Cafe, Mediterranean",74,3.6 +4644,Cafe Turtle,Fayetteville,"Fast Food, Tea, BBQ, Seafood",67,3.6 +4645,China Fare,Pittsburgh,"French, Bakery, Seafood",50,3.7 +4646,Chokola,Decatur,"Desserts, Tea, Mexican, Cafe, Seafood",31,3.8 +4647,Cravings By Arshi Dhupia,Escanaba,"Fast Food, Pizza, Italian",48,3.6 +4648,Harry's Bar + Cafe,Newport News,"Tea, Cafe, BBQ, Fast Food, Chinese",40,3.7 +4649,Khan Chacha,Tallahassee,"Cafe, BBQ",78,3.7 +4650,La Bodega,Lawton,"Desserts, Pizza, Fast Food, Cafe, American",84,3.6 +4651,La Vie,Salisbury,"Tea, Bakery, Mediterranean, Fast Food",88,3.9 +4652,Latitude 28,Mason City,"Tea, BBQ, Seafood",60,3.8 +4653,Laziz Kabab (Subhash Restaurant),Mason City,"Desserts, Pizza, BBQ",72,3.7 +4654,Mr. Choy,Charlotte Amalie,"French, BBQ, Seafood",67,3.9 +4655,Public Affair,Concord,"Desserts, Pizza, Cafe, Mediterranean, Seafood",23,3.8 +4656,Qureshi Kabab,Miami,"French, Pizza, BBQ",34,3.5 +4657,Side Wok,Appleton,"Tea, Italian, Bakery, Chinese, Seafood",15,3.9 +4658,Subway,Alexandria,"Desserts, Seafood",56,3.7 +4659,t Lounge by Dilmah,Yakutat,"Tea, Fast Food, BBQ, Seafood",66,3.6 +4660,The Blue Door Cafe,Austin,"Cafe, Pizza, Mediterranean, Desserts",95,3.7 +4661,The Coffee Bean & Tea Leaf,Wichita Falls,"Chinese, Bakery, Desserts",21,3.8 +4662,Town Hall,Nashville,"Tea, Seafood",55,3.8 +4663,Wok In The Clouds,Minneapolis,"Pizza, Seafood",52,3.8 +4664,Cafe Coffee Day,Los Angeles,"Tea, Bakery, BBQ, Seafood",71,0.0 +4665,Civil House,Salt Lake City,"Tea, Bakery, BBQ, Fast Food",94,4.2 +4666,L'Opera,Iron Mountain,"Desserts, Tea, Bakery, Chinese, Seafood",12,4.0 +4667,Mamagoto,Abilene,"Desserts, Tea, Bakery, Cafe, Indian, Mediterranean",93,4.1 +4668,Out Of The Box,Sioux City,"Tea, Cafe, Mexican, BBQ, Chinese",66,4.0 +4669,Parallel,Lawton,"Tea, French, Cafe, Seafood",54,4.0 +4670,Perch Wine & Coffee Bar,Reno,"Bakery, Pizza, Seafood",72,4.2 +4671,Smoke House Deli,Nashville,"Cafe, Mediterranean, Seafood",59,4.0 +4672,Smokey's BBQ and Grill,Mission,"Desserts, Tea, Pizza, BBQ, Indian",55,4.2 +4673,SodaBottleOpenerWala,Valdosta,"Pizza, BBQ, Fast Food",54,4.2 +4674,The Artful Baker,Lansing,"Chinese, Pizza, Seafood",71,4.0 +4675,The Big Chill Cakery,Mason City,"Desserts, BBQ, Fast Food, Indian, Seafood",58,4.4 +4676,The Chatter House,Sun Valley,"Tea, Seafood, American, Fast Food",78,4.2 +4677,Amaze Dining,Washington,"Cafe, Pizza, American, Fast Food",92,3.1 +4678,Amritsari Naan & Kulcha,Presque Isle,"Tea, French, Bakery, Fast Food, Cafe, Mediterranean",18,3.1 +4679,Bangla Sweets,Indianapolis,"Desserts, Tea, Pizza, Bakery, Chinese",59,3.3 +4680,Bj's Lounge & Cafe,Roswell,"Tea, French, American, Seafood",52,3.0 +4681,BTW,North Platte,"Cafe, BBQ",77,3.2 +4682,Cabana's Kabab & Curry's,Sioux Falls,"Desserts, Pizza, Fast Food, Chinese, Seafood",100,3.3 +4683,Cafe Coffee Day,Wichita Falls,"Desserts, Pizza, Italian, BBQ, Mediterranean, Seafood",93,3.2 +4684,Chaap Point,Gulfport,"Tea, Pizza, Cafe, Mediterranean, Seafood",93,3.2 +4685,Chicken Chilli Corner,White Plains,"Desserts, Tea, Italian, French, BBQ, Bakery",11,3.1 +4686,Chinese Dragon,Sarasota,"Cafe, BBQ",36,2.6 +4687,Copper Restro Bar,Eau Claire,"Tea, Pizza",71,2.8 +4688,Corner Sweets,Bismarck,"French, Bakery, BBQ, Fast Food",40,3.2 +4689,D'Casa,Albuquerque,"Tea, Cafe, Bakery, BBQ",30,2.7 +4690,Delhi 15,Sun Valley,"Tea, Mexican, American, Fast Food",92,2.7 +4691,Dialogue Lounge & Caf愆,Nashville,"Tea, Indian, BBQ, Cafe, American, Seafood",83,3.0 +4692,Domino's Pizza,Dodge City,"Tea, Cafe, American, Italian",91,3.3 +4693,Flavours From Heaven,West Yellowstone,"Fast Food, Mexican, Seafood",36,3.3 +4694,Flavours Of Biryani,Providence,"Bakery, Indian, American, Pizza",99,3.3 +4695,Flirty Momo's,Boston,"Tea, Pizza, French, Fast Food, Indian, Seafood",36,3.0 +4696,Gedi Grill,Prescott,"Cafe, Chinese, Pizza, Mediterranean",97,3.4 +4697,Green Chick Chop,Victoria,"French, Bakery, Pizza, Fast Food",62,2.7 +4698,Indian Bites,Kotzebue,"Tea, Pizza, Bakery, Chinese, Mediterranean",24,2.7 +4699,Karan's Vaishno Dhaba,Hattiesburg,"Cafe, Bakery, Desserts, Seafood",46,3.2 +4700,Le Swaadik,Idaho Falls,"Tea, Pizza, French, Bakery, Fast Food",31,3.3 +4701,Let's Meet Up,Grand Rapids,"Cafe, BBQ, Mediterranean",43,3.2 +4702,Madan's Kabab Centre,Oklahoma City,"Cafe, American, Seafood",76,3.2 +4703,Midnight Fries,Augusta,"Mexican, BBQ, Pizza",50,2.7 +4704,Moradabadi Biryani,Washington,"Cafe, Mexican, Fast Food",12,3.1 +4705,Namdhari's Icecream & Bakers,Boise,"Tea, Fast Food",45,2.8 +4706,Pahariya Chicken Corner,Grand Forks,"Cafe, Mediterranean, Fast Food",84,3.1 +4707,Pahariya Chicken,Memphis,"Desserts, Pizza, Italian, Fast Food, Cafe, Indian",25,2.7 +4708,Pappi Machhi Wala,Yakutat,"Cafe, Bakery, BBQ, Italian",35,3.2 +4709,Pizza Hut Delivery,San Angelo,"Tea, Pizza, Bakery, Cafe, Indian, Mediterranean",33,2.6 +4710,Polka Cakes & Coffee,Jackson,"Tea, Mexican, Fast Food",41,3.3 +4711,Punjabi Joint,Great Falls,"Tea, Cafe, Desserts",26,2.8 +4712,Rain Tree Grill,Denver,"Tea, Mexican, BBQ, Italian",94,3.2 +4713,Resunga Food Corner,Boston,"Tea, Mexican, Bakery, Fast Food, Indian",72,3.0 +4714,Shri Ram Poori Wale,Lawton,"Desserts, Italian, Mexican, Fast Food, Seafood",57,2.8 +4715,Supa's Restaurant,Hattiesburg,"Desserts, BBQ, Fast Food, Chinese, American",11,3.2 +4716,Swad Fast Food,Gulfport,"Pizza, Fast Food",26,2.9 +4717,Syall Kotian Da Dhaba,Great Falls,"Tea, Bakery, Mediterranean, Fast Food",40,3.0 +4718,The Krib,Atlanta,"Seafood, BBQ, Italian",45,3.2 +4719,Turtle Bay,North Platte,"Tea, Bakery, Mediterranean",44,3.4 +4720,Yakooz,Denver,"Pizza, Bakery, Fast Food, Cafe, American",52,3.1 +4721,Above & Beyond,Shreveport,"Pizza, Desserts, Seafood",86,3.5 +4722,Bawa Chicken,Minneapolis,"Cafe, Seafood, Fast Food",47,3.5 +4723,Chatore,Baltimore,"Bakery, Mexican, Pizza, Seafood",59,3.6 +4724,Chocomore,Nantucket,"Desserts, Italian, BBQ, Indian, Seafood",42,3.7 +4725,Clay 1 Grill,Oklahoma City,"Cafe, Seafood",13,3.6 +4726,Firangi Island,Iron Mountain,"Desserts, Tea, Italian, BBQ, Fast Food",13,3.5 +4727,Jeet Chaat Bhandar,Portland,"Tea, Cafe",77,3.5 +4728,Mr. Grill,Twin Falls,"BBQ, Cafe, American, Desserts",80,3.6 +4729,Tikka Junction,Dallas,"Tea, Bakery, Fast Food, Cafe, American, Mediterranean",86,3.5 +4730,Momos Hut & Chinese Food,San Diego,"Tea, Cafe, Fast Food",94,2.4 +4731,Wah Ji Wah,Oklahoma City,"Desserts, Pizza, Italian, Bakery, Cafe",99,2.1 +4732,Yo! China,Minot,"Tea, Chinese, BBQ, Desserts",43,2.4 +4733,Aapki Apni Rasoi,St. Petersburg,"French, Pizza, Indian, BBQ",20,2.9 +4734,Aapki Rasoi,Detroit,"Mediterranean, Desserts, Seafood",21,3.0 +4735,Advance Bakery,Rockford,"Desserts, Pizza, Mexican, Bakery, Chinese, Seafood",100,2.9 +4736,Apni Rasoi,Grand Island,"Desserts, Pizza, BBQ, Fast Food, Indian",93,2.9 +4737,Bakeyard,Billings,"Tea, BBQ, Cafe, Mediterranean, Seafood",74,3.0 +4738,Bharat Chicken Inn Foods,Santa Fe,"Pizza, Mediterranean, Desserts",38,2.9 +4739,Bobby Veg Corner,Bishop,"Seafood, Pizza, Fast Food",59,2.9 +4740,Brunch Point,Sun Valley,"Tea, Cafe, BBQ, Seafood",63,2.9 +4741,Bunty Dhaba,Bozeman,"Indian, Desserts, Fast Food",55,2.5 +4742,Chandni Chowk Ka Sonu Parathe Wala,Scranton,"Fast Food, Chinese, Desserts, Seafood",16,3.1 +4743,Chankya,Norfolk,"Bakery, Fast Food",42,3.2 +4744,Chaudhary Di Hatti,San Diego,"Desserts, Pizza, Italian, BBQ, Fast Food",30,3.3 +4745,Cook Du Kdu,Baltimore,"Desserts, Pizza, BBQ, Cafe, Indian",86,3.2 +4746,Daawat Restaurant,Williston,"Desserts, Tea, French, BBQ, Fast Food",68,3.3 +4747,Delhi Dairy,Phoenix,"Seafood, Cafe, Fast Food",23,3.2 +4748,Domino's Pizza,Grand Rapids,"Seafood, BBQ, Desserts, Italian",34,2.9 +4749,Domino's Pizza,Santa Fe,"Tea, Pizza, Desserts",100,3.1 +4750,F 2 Pastry Shop,Great Falls,"Tea, Pizza, Indian, Desserts",49,3.3 +4751,Food Villa,Medford,"Fast Food, Mediterranean, Seafood",21,2.9 +4752,Goosebumps,New York,"Chinese, Pizza, Bakery",94,3.2 +4753,Gulab,Duluth,"Cafe, American, BBQ, Italian",59,3.3 +4754,Health Buzzz,Cedar Rapids,"Fast Food, Mediterranean, Desserts, Seafood",13,3.1 +4755,Jain Dhaba,Eau Claire,"Pizza, Italian, BBQ, Fast Food, Indian, Seafood",82,3.2 +4756,Jeeta Kulfi Walle,Niagara Falls,"Cafe, Mediterranean, Desserts",51,3.3 +4757,Kamal Meat House,Salisbury,"Fast Food, BBQ, Italian",93,2.6 +4758,Katyani Rasoi,Oakland,"Tea, French, Bakery, BBQ, Indian, Seafood",34,3.2 +4759,Magic Masala,Pittsburgh,"French, Bakery, BBQ, Fast Food, Cafe",90,3.0 +4760,Masala Magic,Nantucket,"Desserts, Pizza, French, BBQ, Bakery",69,3.0 +4761,Mother Sweets,Toledo,"Seafood, Indian, Fast Food",24,3.4 +4762,Panj Taara,Prescott,"Bakery, American, Seafood",30,3.1 +4763,Prince Fried N Grilled Chicken,Scottsbluff,"Desserts, Tea, Pizza, Italian, BBQ, Chinese",21,2.7 +4764,Punjabi's Veg Grill,Jamestown,"BBQ, American, Desserts",89,3.1 +4765,Raja Chat Corner,Shreveport,"Cafe, American, Mediterranean, Desserts",82,3.3 +4766,Rajshree,Branson,"Mexican, Bakery, Desserts, Seafood",14,3.3 +4767,Sachdeva Chicken Corner,Asheville,"Cafe, Mexican, Pizza, Italian",52,3.4 +4768,Shree Rathnam,Anchorage,"Cafe, BBQ, Mediterranean, Seafood",82,2.9 +4769,Sialkot,Pensacola,"Chinese, Bakery, Seafood",66,3.1 +4770,Singh-O-Singh Kebabs,San Jose,"Tea, BBQ, Fast Food, Mediterranean, Seafood",53,3.1 +4771,Super Snacks,St. Petersburg,"Pizza, Italian, French, BBQ, Cafe, Seafood",72,3.1 +4772,Tandoori Night,Branson,"Tea, Pizza, Fast Food",60,3.1 +4773,The Chaupal Bar And Restaurant,Santa Fe,"Mexican, Pizza, Mediterranean, Seafood",59,2.9 +4774,The Grill Point,Montgomery,"Cafe, Bakery, Mediterranean",96,3.0 +4775,The Roll Hut,Pago Pago,"Desserts, French, Bakery, Fast Food, Cafe, Indian",64,3.1 +4776,Triveni,Lansing,"Desserts, Mexican, Bakery, BBQ, Mediterranean, Seafood",37,3.2 +4777,Gokul Foods,Presque Isle,"BBQ, Mediterranean, Seafood",16,3.6 +4778,Papa Pizza,Las Vegas,"Cafe, Pizza, BBQ",38,3.5 +4779,Aalishaan,Evansville,"Tea, French, Bakery, Cafe, American, Seafood",71,0.0 +4780,Amritsari Chaat Bhandar,Provo,"Tea, Pizza, French, Mexican, Cafe",82,0.0 +4781,Bansal Foods,Belleville,"Chinese, Pizza, Cafe, Fast Food",68,0.0 +4782,Bhatia Chinese Food,Burbank,"Tea, Bakery, American, BBQ",67,0.0 +4783,Break Fast Junction,Stockton,"Fast Food, Pizza, Bakery, Italian",46,0.0 +4784,Breakfast Hut,Huntsville,"Cafe, Bakery, Desserts, Seafood",81,0.0 +4785,Buddy 's. Pizza,Niagara Falls,"Tea, BBQ",50,0.0 +4786,Chai Garam,Charlotte Amalie,"Desserts, Tea, French, Mexican, Cafe, Seafood",50,0.0 +4787,Deepu Fish & Chicken,Traverse City,"Tea, Cafe, American, BBQ",49,0.0 +4788,deliKitchen,Belleville,"Seafood, BBQ, Fast Food",64,0.0 +4789,Dial A Cake,Rockford,"Cafe, American, Mediterranean, Desserts",29,0.0 +4790,Fuel Diet Cafe,Hilo,"Tea, Desserts, Pizza, BBQ",89,0.0 +4791,GO CHATZ With Breadz,Los Angeles,"Cafe, Bakery, Pizza, Desserts",55,0.0 +4792,Goldy Chat Bhandar,Ogdensburg,"Tea, Bakery, Seafood",83,0.0 +4793,Green Chick Chop,Lewisburg,"Bakery, Desserts",59,0.0 +4794,Hungry Heights,Santa Barbara,"Tea, Pizza, Italian, French, BBQ",32,0.0 +4795,Kebabish,Wilmington,"Desserts, Italian, BBQ, Cafe, Indian, Seafood",64,0.0 +4796,Khalsa Dhaba,Reno,"Chinese, Bakery, Indian, Fast Food",100,0.0 +4797,Khanna's Hot Pizza,Houston,"Pizza, Mediterranean, Desserts, Fast Food",80,0.0 +4798,Lets Eat Veg,Worcester,"French, Pizza, Desserts",68,0.0 +4799,Mitra Da Dhabha,Waco,"Cafe, Seafood, Mediterranean, Fast Food",68,0.0 +4800,Murliwala Bakers,Omaha,"Desserts, Tea, Italian, BBQ, Cafe",27,0.0 +4801,Panjabi Chic-Shoppe,Wrangell,"Cafe, Pizza, Bakery, Seafood",54,0.0 +4802,Raj Petha Bhandar,Valdosta,"Cafe, Fast Food",95,0.0 +4803,Ramlal Sweets,Sioux City,"Bakery, Mexican, Pizza, Desserts",89,0.0 +4804,Sanjha Chula Baba Da,Worcester,"Chinese, BBQ, Desserts, Seafood",47,0.0 +4805,Sri Krishna,Salisbury,"Pizza, BBQ, Seafood",85,0.0 +4806,Sugandh Corner,Kodiak,"Italian, Mexican, BBQ, Fast Food, Cafe, Seafood",51,0.0 +4807,The Friends Cafe,Charlottesville,"Desserts, Pizza, American, Mediterranean, Seafood",62,0.0 +4808,The Muffin Girl,Sioux Falls,"Mexican, Mediterranean, Desserts, Fast Food",36,0.0 +4809,Rainbows,Paducah,"Chinese, Desserts, Seafood",36,3.1 +4810,The Nest,San Angelo,"Tea, BBQ, Fast Food",25,3.5 +4811,Burger Head Quarter BHQ,Johnstown,"Desserts, Tea, BBQ, Indian, Seafood",60,0.0 +4812,Chez Jerome - Q Cafe,Bellingham,"Mexican, Indian, Desserts, Pizza",10,0.0 +4813,Mr. Billiken,Anchorage,"Tea, American, Desserts, Seafood",81,0.0 +4814,Mulligan Cafe,Los Angeles,"Tea, Mexican, BBQ, Fast Food, Indian",100,0.0 +4815,Naya Adda,North Bend,"Seafood, Pizza, Fast Food",68,0.0 +4816,OCD - Online Cake Delivery,Jacksonville,"Cafe, American, Desserts, Fast Food",34,0.0 +4817,Puja Sandwich House,Jacksonville,"French, Cafe, Desserts",71,0.0 +4818,Ambersari Dhaba,West Yellowstone,"Tea, Pizza, Italian, BBQ, Seafood",70,3.4 +4819,Arabian Knites,Hattiesburg,"Tea, Pizza, French, Mexican, Fast Food, Seafood",38,3.0 +4820,Aryan's Rajasthani Pyaz Ki Kachori,New York,"Cafe, Pizza, Indian, Seafood",17,3.1 +4821,Aviram's Chinese Kitchen,Aguadilla,"Cafe, Mexican, Pizza, Fast Food",58,2.7 +4822,Bhagwan Sweets,San Juan,"Desserts, Tea, Pizza, Italian, Fast Food, Mediterranean",96,2.8 +4823,Chawla,Decatur,"Bakery, American, Fast Food",45,2.7 +4824,Chinese Hut,West Yellowstone,"Cafe, Chinese, Bakery, Mediterranean",26,3.2 +4825,Flavourz,Saipan,"Tea, Bakery, BBQ",24,3.3 +4826,Lets Bake Love,Kalispell,"French, Bakery, Seafood",92,3.0 +4827,Mahadev Dhaba,Birmingham,"French, Pizza, American, Bakery",80,2.6 +4828,Sethi's Food Corner,Charleston,"Tea, Pizza",61,3.3 +4829,Sethi's Restaurant,St. Petersburg,"French, Mexican, Pizza, BBQ",86,3.4 +4830,Sindhi Kulfi,Abilene,"Pizza, French, BBQ, Fast Food, Cafe",37,3.0 +4831,Sri Kamakshi Vilas,Sarasota,"Tea, BBQ, Bakery, Fast Food, Indian, Mediterranean",20,2.7 +4832,The Midnight Hub - C,Pensacola,"Tea, Pizza, Bakery, BBQ, Chinese",32,2.6 +4833,Anand Ji,West Palm Beach,"Tea, Cafe, BBQ, Fast Food",57,3.8 +4834,Happy Hakka,White Plains,"Desserts, Pizza, Fast Food, Chinese, Seafood",37,3.7 +4835,Oberoi's,Jacksonville,"Mexican, Pizza, Seafood",75,3.6 +4836,Relax Restaurant,Fort Wayne,"Cafe, BBQ, Seafood",35,3.5 +4837,Al-Rihan,Bishop,"Bakery, Pizza, BBQ, Fast Food",57,0.0 +4838,All Day 99,Hilo,"Desserts, Pizza, Bakery, Fast Food, Mediterranean",37,0.0 +4839,Anna Dosa,Charleston,"Desserts, Pizza, Mexican, BBQ, Cafe",84,0.0 +4840,Chick Chicken House,Bristol,"Desserts, Cafe, Pizza, Bakery, Chinese",19,0.0 +4841,Chicken King,Santa Rosa,"Pizza, Mexican, BBQ, Fast Food, American",12,0.0 +4842,Choco Kraft,Manhattan,"Tea, Cafe, Italian",81,0.0 +4843,Cocoalicious Delights,Ogdensburg,"Tea, Pizza, American, BBQ",56,0.0 +4844,FNV,Honolulu,"Desserts, Tea, Bakery, Cafe, Mediterranean",90,0.0 +4845,Food En Vouge,La Crosse,"Chinese, French, Bakery, Cafe",45,0.0 +4846,Food Junction,Hyannis,"Desserts, Italian, BBQ, Bakery, Fast Food",94,0.0 +4847,Gian Ji Punjabi Dhaba,Pittsburgh,"Tea, Cafe, Pizza, Fast Food, Chinese",19,0.0 +4848,Govinda,Wichita,"Chinese, Pizza, Bakery, Italian",43,0.0 +4849,Intermission,Bristol,"Cafe, Pizza, American",77,0.0 +4850,Karma Cafe & Lounge,Tulsa,"Cafe, Mexican, Desserts",68,0.0 +4851,Lotes Bakes,Charlotte,"BBQ, Bakery, Desserts, Seafood",29,0.0 +4852,New Anna Ka Dosa,Kodiak,"Chinese, Mexican, BBQ, Fast Food",12,0.0 +4853,New Sethi's,Twin Falls,"Tea, Seafood, Mexican, Italian",10,0.0 +4854,Punjab Sweets,Fort Wayne,"Tea, Bakery, BBQ, American, Seafood",67,0.0 +4855,Shri Ram Dhaba,Bloomington,"Pizza, Italian, Mexican, Bakery, Fast Food, Cafe",99,0.0 +4856,Standard Punjabi Food,Salisbury,"Pizza, Fast Food",37,0.0 +4857,Sunrise Bakery,Fort Lauderdale,"Pizza, Bakery, BBQ, Seafood",56,0.0 +4858,Taste of Spice,Alexandria,"Pizza, Desserts, Seafood",52,0.0 +4859,The Celiac Kitchen,El Paso,"Desserts, Tea, French, BBQ, Fast Food",22,0.0 +4860,Aggarwal Sweet Corner,Wilmington,"Tea, Pizza, Italian",66,3.4 +4861,Behrouz Biryani,Pellston,"Fast Food, Mexican, Desserts, Seafood",77,3.0 +4862,Biryani Blues,Saginaw,"Pizza, French, BBQ, Fast Food, Mediterranean, Seafood",41,3.1 +4863,Burger King,Yakima,"Pizza, Mediterranean, Fast Food",98,3.4 +4864,Domino's Pizza,Killeen,"Chinese, Bakery, BBQ, Fast Food",97,2.5 +4865,Gopal (Sindhi) Restaurant,Key West,"Desserts, Mexican, Bakery, BBQ, Fast Food",95,3.4 +4866,Kabul Delhi,Harrisburg,"Cafe, Bakery, Mediterranean",71,2.9 +4867,Khan Chacha,Roanoke,"Desserts, Tea, French, Mexican, Cafe, Seafood",84,2.9 +4868,Pizza Hut Delivery,Fairbanks,"Desserts, Tea, Pizza, Italian, French, Fast Food",63,2.8 +4869,Punjabi Jaika,Shreveport,"Mexican, BBQ, Desserts, Seafood",13,3.3 +4870,Rozy Restaurant,Staunton,"Pizza, American, Bakery, BBQ, Indian, Seafood",49,2.6 +4871,Taj Cafe,Houston,"French, BBQ, Seafood",18,3.1 +4872,Tewari Sweets,Dothan,"Desserts, Pizza, French, BBQ, Fast Food",10,3.1 +4873,The Burger Hut & Cake Shop,Missoula,"Pizza, Bakery, BBQ, American, Seafood",39,3.0 +4874,Angel's Basket,Greensboro,"Cafe, BBQ",67,3.5 +4875,Bikanervala,Austin,"Cafe, BBQ, Mediterranean, Fast Food",87,3.7 +4876,Haldiram's,Syracuse,"Tea, French, BBQ, Cafe",43,3.8 +4877,Moon of Taj,Pittsburgh,"Pizza, BBQ, Bakery, Cafe, Mediterranean",44,3.8 +4878,Tongue Thai'd,Madison,"Bakery, Pizza, American, Fast Food",78,3.7 +4879,Udupi Sai Sarover,Arcata,"French, Bakery, Chinese, Fast Food",56,3.8 +4880,Wagh Bakri Tea Lounge,Aguadilla,"Cafe, BBQ, Seafood",32,3.5 +4881,K2 Multi Cuisine Restaurant,Jamestown,"Tea, Cafe, Seafood",89,0.0 +4882,Tibet Kitchen,Owensboro,"Cafe, Pizza, BBQ, Seafood",49,3.5 +4883,Baba Nagpal Corner,Oklahoma City,"Tea, Chinese, Bakery, Seafood",11,4.1 +4884,Burger Street,Oklahoma City,"Mexican, Bakery, BBQ",85,3.4 +4885,Dilli Zaika,Lewiston,"Seafood, Pizza, BBQ, Fast Food",97,3.2 +4886,Mughal Chic Inn,Ponce,"American, Desserts, Seafood",15,3.3 +4887,Nutrition Theka,Dallas,"Pizza, American, Fast Food",77,3.3 +4888,Punjabi Chaap Corner,Binghamton,"French, Cafe, Seafood",12,3.1 +4889,Samosa Street,Brunswick,"Chinese, Pizza, Desserts, Fast Food",10,3.3 +4890,Shanu's Chicken Planet,Dodge City,"Desserts, Tea, Italian, Mexican, BBQ, Fast Food",31,3.2 +4891,Shanu's Food Shop,Corpus Christi,"Bakery, Pizza, Cafe, BBQ",10,2.8 +4892,Bigbee,Florence,"Desserts, French, Bakery, BBQ, Cafe",79,0.0 +4893,Delhi 6 Cafe,Miami,"Pizza, Fast Food, Cafe, Indian, Seafood",29,0.0 +4894,Lala Ji Sweets,Reno,"Desserts, Tea, Pizza, Mexican, BBQ",63,0.0 +4895,MK's Chinese Food,Missoula,"Desserts, Italian, Mexican, Fast Food, Cafe, Seafood",89,0.0 +4896,Nirvana The Divine Kitchen,Great Falls,"Desserts, Mexican, Fast Food, Cafe, Mediterranean, Seafood",90,0.0 +4897,Preechen,Key West,"Desserts, Tea, French, BBQ, Fast Food",78,0.0 +4898,Rahul Eggs,Portland,"Tea, Fast Food, Desserts, Seafood",57,4.2 +4899,7 Stick,Little Rock,"Desserts, Pizza, Italian, BBQ, Cafe",44,2.8 +4900,Aashirwad Restaurant,Dubuque,"Bakery, BBQ, Fast Food, American, Seafood",34,2.6 +4901,Amar Bakery,Peoria,"Tea, American, BBQ",63,3.3 +4902,Apni Rasoi,Midland,"Chinese, Pizza, BBQ, Cafe, Mediterranean",23,3.1 +4903,Baked Buns,Birmingham,"Bakery, Pizza, Indian, Mediterranean",37,3.1 +4904,Banspi,Akron,"Tea, Cafe, Desserts",40,2.9 +4905,Benchmark,Hattiesburg,"Tea, Pizza, BBQ, Cafe, American",34,2.8 +4906,Bobby Tikki Wala,Minneapolis,"Bakery, BBQ, Desserts, Seafood",62,3.0 +4907,Cafe Coffee Day,Wichita Falls,"Tea, Pizza, BBQ, Seafood",98,2.7 +4908,Cafe Coffee Day,Miami,"Desserts, American, BBQ, Seafood",77,2.8 +4909,Canteeno,Saipan,"Tea, Desserts, Fast Food",80,3.0 +4910,Chai Mantra,New Bern,"Tea, Cafe, Bakery, Desserts",54,3.2 +4911,Chandni Chowk ke Mashhoor Makkhan Wale Paranthe,Longview,"Chinese, Pizza, BBQ",66,2.8 +4912,Chandni Chowk Parantha Corner,Ogdensburg,"Tea, Mexican, Mediterranean, Seafood",15,3.1 +4913,Chauhan Laxmi Sweets,San Juan,"French, Bakery, Cafe, Seafood",63,3.0 +4914,Chawla's The Cake Room,Green Bay,"Mexican, Pizza, Desserts, Italian",36,3.4 +4915,China Town,Idaho Falls,"Cafe, Mexican, Desserts",34,2.9 +4916,Domino's Pizza,Ketchikan,"Tea, BBQ",84,2.6 +4917,Faasos,Charlotte Amalie,"Tea, French, BBQ, Mediterranean",58,2.6 +4918,Fast Trax,Charleston,"Tea, Mexican, Bakery, BBQ, American, Seafood",81,3.2 +4919,Finger Licious,Stockton,"Desserts, Tea, Pizza, Italian, Cafe",50,3.4 +4920,Gulshan Pastry Shop,Wichita Falls,"Desserts, Italian, BBQ, Indian, Seafood",49,3.0 +4921,Handa's,Miami,"Cafe, Bakery, American, Fast Food",61,2.6 +4922,Homely Delight,Appleton,"Desserts, Cafe, Mexican, Bakery, Fast Food, Chinese",34,3.1 +4923,Jahangeer Foods,Portsmouth,"Cafe, Mediterranean, Seafood",41,2.7 +4924,Kaleva,Harrisburg,"Fast Food, Chinese, Pizza, Italian",73,3.3 +4925,Laxmi Vaishno Dhaba,Iron Mountain,"Tea, Seafood, Cafe, Fast Food",35,3.0 +4926,Little Pleasure Restaurant & Cafe,Pellston,"Cafe, Pizza, Fast Food, Chinese, Seafood",90,2.9 +4927,Mauryan Multi Cuisine Restaurant,Hattiesburg,"Tea, Pizza, French, BBQ, Mediterranean",100,3.4 +4928,Mehta Food Junction,Long Beach,"Tea, Italian, Bakery, Fast Food, Indian",93,3.0 +4929,Om Bikaner Wale,Kona,"Pizza, BBQ, Seafood",33,2.8 +4930,Ovenstory Pizza,Lynchburg,"Tea, Cafe, Indian, Fast Food",91,2.9 +4931,Prasadam,Sioux Falls,"Cafe, Bakery, Desserts, Italian",56,2.8 +4932,Priyanshi Fast Food,Midland,"Bakery, BBQ, Seafood",20,3.3 +4933,Punjabi Tadka,Binghamton,"Pizza, Bakery, Mediterranean, Fast Food",43,3.1 +4934,Pyaali,Idaho Falls,"Pizza, Bakery, Fast Food",14,2.8 +4935,Ruby Dhaba,Lubbock,"Tea, Bakery, BBQ, Mediterranean, Seafood",98,2.7 +4936,Shree Manakamna Fast Food,Los Angeles,"Tea, Bakery, Mediterranean, Desserts",21,3.4 +4937,The Chinese Hut,Hagerstown,"Tea, Pizza, BBQ, Mediterranean, Seafood",39,3.0 +4938,The Chinese Hut,Austin,"American, Desserts, Fast Food",99,3.2 +4939,The Chinese Kitchen,Milwaukee,"Fast Food, Bakery, Mediterranean, Italian",23,3.1 +4940,Twenty Four Seven,Presque Isle,"Cafe, Mexican, Indian, Seafood",52,3.1 +4941,Vegie Kitchen,Elmira,"Cafe, Mexican, Indian, BBQ",99,3.1 +4942,Behrouz Biryani,Charlotte,"Mexican, Bakery, Fast Food, Cafe, American, Seafood",19,3.5 +4943,Burger King,Tallahassee,"French, Mexican, Pizza, Bakery",53,3.5 +4944,Mohit di Hatti,Durango,"Desserts, Italian, Bakery, Chinese, Seafood",74,3.8 +4945,Play Pizza,Valdosta,"Pizza, BBQ",93,3.8 +4946,Sushiya Express,Hilo,"Tea, Seafood, Italian",22,3.7 +4947,Tantrum Coffee Bar,Akron,"Tea, French, Cafe, Seafood",34,3.5 +4948,Chawla's Tandoori Junction,Austin,"Cafe, Pizza, American",82,0.0 +4949,Chennai Express Greens,Montgomery,"Tea, Fast Food, Seafood",33,0.0 +4950,Omi Pizza,Fort Leonard Wood,"Tea, BBQ, Fast Food, Cafe, Mediterranean",65,0.0 +4951,South Indian & Chinese Fast Food,Fort Smith,"French, Mexican, Bakery, Cafe",58,0.0 +4952,The Khoj Cafe Restaurent,Walla Walla,"Pizza, Italian, French, Bakery, Fast Food, Seafood",68,0.0 +4953,Bharat Chicken Inn,Toledo,"Pizza, BBQ",22,2.4 +4954,Nathu's Sweets,Denver,"Tea, Bakery, BBQ, Fast Food",12,2.1 +4955,Wah Ji Wah,West Palm Beach,"Tea, Cafe, American, Seafood",40,2.2 +4956,QD's Restaurant,New York,"Tea, Desserts, Indian, BBQ",93,4.1 +4957,Henri's Bar - Le Meridien,San Angelo,"Tea, Cafe, BBQ, Seafood",70,3.3 +4958,Le Belvedere - Le Meridien,Manhattan,"Desserts, Cafe, Chinese, Indian, Seafood",65,3.5 +4959,Longitude - Le Meridien,Sarasota,"French, Cafe, Desserts",71,3.9 +4960,Nero - Le Meridien,Santa Ana,"Mexican, BBQ, Desserts, Seafood",88,3.5 +4961,The One - Le Meridien,San Jose,"Fast Food, Cafe, Bakery, Italian",98,3.8 +4962,Eau De Monsoon - Le Meridien,Ogden,"Desserts, Tea, Cafe, French, Fast Food, Chinese",93,4.0 +4963,Slounge - Lemon Tree Premier,Helena,"Fast Food, Cafe, Mediterranean, Seafood",14,3.5 +4964,Al Bake,Traverse City,"Tea, Bakery, Indian, Mediterranean",77,2.5 +4965,Al-Bawarchi,Saipan,"Pizza, Mexican, BBQ, Fast Food, Cafe",83,3.1 +4966,Big Dragon,Richmond,"Tea, Chinese, American, Seafood",72,3.1 +4967,BTW,Petersburg,"Cafe, Bakery, Fast Food",90,3.3 +4968,Capital Curry,New Bern,"Tea, French, Bakery, BBQ, Mediterranean",79,3.1 +4969,Domino's Pizza,Scranton,"French, Mexican, Pizza, Fast Food",40,2.5 +4970,Ekta's Kitchen,Milwaukee,"French, Pizza, Indian, BBQ",42,3.2 +4971,Gopal's,Kona,"BBQ, Bakery, American, Desserts",69,2.9 +4972,Moti Mahal Delux,Branson,"Cafe, Pizza, American, Seafood",90,2.6 +4973,Open Oven,Concord,"Tea, Bakery, Indian, Desserts",33,3.4 +4974,Relax Xpress,Dallas,"Desserts, Pizza, Bakery, Cafe, Mediterranean",53,3.2 +4975,Roll Club,Hagerstown,"Chinese, Pizza, Indian, Desserts",30,2.7 +4976,SM Gopal Ice Cream & Cakes,Bakersfield,"Pizza, French, Bakery, American, Seafood",57,3.2 +4977,Bangla Sweet Corner,Philadelphia,"Cafe, BBQ, Fast Food",14,2.6 +4978,Chinois,Corpus Christi,"BBQ, Desserts, Italian",76,3.0 +4979,Dawat,Toledo,"Tea, Cafe, Bakery, Pizza",46,2.9 +4980,Establishment Ristorante,Santa Barbara,"Tea, Mexican, Bakery, BBQ",60,3.1 +4981,Ganesha Sweets & Restaurant,Presque Isle,"Desserts, Mexican, Bakery, Cafe, American, Seafood",52,2.6 +4982,Gopala,San Diego,"Pizza, Mexican, BBQ, American, Seafood",98,3.3 +4983,Green Chick Chop,Jackson,"Seafood, Pizza, Italian",45,2.9 +4984,Hot Chimney,Seattle,"Tea, Pizza, Mexican, Bakery, Fast Food",19,2.5 +4985,Icon,Punta Gorda,"Tea, Pizza, BBQ, Cafe, Indian",90,3.2 +4986,Juneja's Eating Plaza,Clarksburg,"Tea, Desserts, Seafood",89,3.4 +4987,Lodhi Knights,Dallas,"Tea, Pizza, French, Bakery, Cafe",18,3.1 +4988,Ram Singh's Bhoj,Salt Lake City,"Tea, Cafe",98,2.9 +4989,Republic of Chicken,Killeen,"Bakery, Desserts, Seafood",24,2.7 +4990,Slice of Italy,Cedar Rapids,"Seafood, BBQ, Italian",48,3.3 +4991,Subway,Nantucket,"Cafe, BBQ, Desserts",34,3.2 +4992,The Altitude Cafe and Deli,San Juan,"Tea, BBQ, Fast Food, Chinese, Mediterranean, Seafood",100,3.1 +4993,Tokyo Mon Amour,Newburgh,"Tea, Desserts, Italian",36,3.1 +4994,Bhane,Long Beach,"Pizza, Mexican, BBQ, Fast Food, Seafood",38,3.6 +4995,Celeste,Gainesville,"Pizza, Bakery, Desserts, Fast Food",79,3.5 +4996,Chidambaram's New Madras Hotel,Richmond,"Desserts, Pizza, Bakery, BBQ, Chinese",33,3.8 +4997,CJ's Fresh,Des Moines,"French, Mexican, Pizza, Seafood",26,3.8 +4998,Elma's Brasserie,La Crosse,"French, Indian, Cafe, Fast Food",78,3.7 +4999,Kunafa,Johnstown,"BBQ, Pizza, Desserts",68,3.9 +5000,Lahori Gate,Branson,"Tea, Bakery, Desserts",53,3.5 +5001,M I Food Center,Raleigh,"Pizza, Mediterranean, Fast Food",41,3.8 +5002,Sugar Blossoms,Kodiak,"Seafood, Desserts, Fast Food",22,3.6 +5003,Eywa by Saby @ Celeste,Pago Pago,"Cafe, American, Fast Food",67,0.0 +5004,Cafe Coffee Day,Washington,"Tea, Mexican, Fast Food, Cafe, American, Seafood",53,2.3 +5005,Guppy,Roanoke,"Bakery, Mexican, American, Cafe",59,4.1 +5006,Ping's Caf愆 Orient,Trenton,"Pizza, BBQ, Fast Food",52,4.1 +5007,The All American Diner,Newburgh,"Tea, Pizza, Mexican, Bakery, Seafood",89,4.1 +5008,Armaan's Restaurant,San Diego,"Fast Food, Cafe, Seafood, Italian",29,2.8 +5009,Garden Chef,El Paso,"Desserts, Mexican, Fast Food, Cafe, Indian",46,3.0 +5010,Golooji's Chat Waat,New York,"Pizza, BBQ",53,3.3 +5011,Oriental Lee,Harrisburg,"Pizza, Bakery, Desserts",18,2.7 +5012,Peshawari Restaurant,Bloomington,"Desserts, Tea, French, Mexican, Seafood",17,3.1 +5013,Tikka Town,Plattsburgh,"Tea, Cafe, Desserts, Fast Food",78,3.1 +5014,Titu Restaurant,Gunnison,"Pizza, French, Mexican, BBQ, Bakery, Fast Food",44,2.9 +5015,Vijay Dhaba,Mason City,"Chinese, Pizza, Fast Food",10,2.9 +5016,Wild Willy,Islip,"French, Mexican, Pizza, Desserts",89,3.2 +5017,Diva Spiced,San Antonio,"Pizza, Desserts",86,3.7 +5018,Granma's Homemade,Texarkana,"Tea, Mexican, Bakery, Cafe, Seafood",57,3.6 +5019,Karim's,Decatur,"Cafe, BBQ, Desserts",89,3.8 +5020,Sab Ki Khatir,Billings,"Pizza, Fast Food",98,3.7 +5021,Golden Bakery,Watertown,"Desserts, Pizza, BBQ, Fast Food, Chinese",15,0.0 +5022,Krishan Sweets,Bristol,"Mexican, Bakery, Seafood",88,0.0 +5023,Rai Ji Caterers,Columbus,"Cafe, Indian, BBQ",96,0.0 +5024,Szoun Chinese Food,Panama City,"Desserts, Tea, French, Bakery, Seafood",76,0.0 +5025,Yummy Mummy @ Delhi,Beaumont,"Tea, Pizza, Desserts, Italian",20,0.0 +5026,Lodi - The Garden Restaurant,Bemidji,"American, Desserts, Fast Food",71,4.2 +5027,Aggarwal Sweets & Restaurant,Key West,"Tea, Chinese, Pizza",13,2.7 +5028,Ashirwad Dhaba,Palm Springs,"French, Bakery, Fast Food, Chinese, Seafood",91,2.9 +5029,Barichi Restaurant,Plattsburgh,"Tea, Seafood",67,2.9 +5030,Bikaner Sweets,Trenton,"Tea, Pizza, Italian, BBQ, Mediterranean",31,2.7 +5031,Bikaner,Concord,"Tea, Mexican, BBQ, Fast Food",52,2.9 +5032,Chatori Zubaan 2,Green Bay,"Fast Food, Mexican, BBQ, Italian",55,3.0 +5033,Chinese Mania,Bakersfield,"French, Bakery, Chinese, Fast Food",31,3.2 +5034,Da Pizza Corner,Wichita Falls,"Tea, BBQ, Desserts, Seafood",16,2.5 +5035,Dhaba Cash 'N' Carry Kitchen,Traverse City,"BBQ, Mediterranean, Desserts",91,3.1 +5036,Dom Dang Kins Restaurant,West Palm Beach,"Cafe, Pizza, BBQ",82,3.1 +5037,First Choice,Wichita Falls,"Tea, Mexican, BBQ, Fast Food, Seafood",93,2.9 +5038,Hungry Hut,Ogdensburg,"Tea, Chinese, Pizza, Fast Food",21,3.1 +5039,Le Seasons Restaurant,Spokane,"Tea, Mexican, Desserts",43,2.8 +5040,Moti Mahal Delux,Yakutat,"Cafe, French, Pizza, Chinese",37,3.0 +5041,Popsy's,Charleston,"French, BBQ, Desserts, Fast Food",58,3.0 +5042,Prabhu,Pago Pago,"Tea, Seafood, BBQ, Italian",92,3.1 +5043,Saptagiri,Vernal,"French, Pizza, American, Fast Food",35,2.8 +5044,Spice Hut,Orlando,"Chinese, Cafe, Seafood",25,2.9 +5045,Taste of Vishal,Atlanta,"Desserts, Tea, American, Bakery, Indian, Seafood",13,2.9 +5046,The Tandoori Night,Augusta,"Tea, Italian, BBQ, Cafe, Seafood",30,2.8 +5047,Traffic Jaam,Ithaca,"Seafood, Bakery, Cafe, Italian",26,2.9 +5048,Tripti,Brunswick,"Cafe, BBQ, Desserts, Fast Food",49,3.1 +5049,Uttaranchal Dhaba & Restaurant,Tucson,"French, Bakery, Fast Food",39,2.9 +5050,Wah Ji Wah,Lansing,"Tea, Pizza, Bakery, BBQ, Chinese",40,2.9 +5051,Resto 37,Binghamton,"Chinese, BBQ, Cafe",31,3.9 +5052,Aakash Sweets & Caterers,Eau Claire,"Tea, Pizza, Desserts",38,0.0 +5053,Aapka Mangal Restaurant,Dillingham,"Tea, Mediterranean, Fast Food",62,0.0 +5054,Al-Karim,Evansville,"Cafe, Pizza, BBQ, Fast Food",75,0.0 +5055,Apna Dhaba,Eugene,"BBQ, French, American, Desserts",69,0.0 +5056,Burger Wala,Pasco,"Chinese, Pizza, BBQ",26,0.0 +5057,Cafe Highway,Sarasota,"Desserts, Seafood",12,0.0 +5058,Cake Point,Twin Falls,"French, Pizza, Cafe",100,0.0 +5059,Chatori Zubaan Chur Chur Naan,Waco,"Bakery, Pizza, Fast Food",56,0.0 +5060,Coffee Shop,Roanoke,"French, Bakery, BBQ, Fast Food",53,0.0 +5061,Colonel's Kebabs & Curries,Pellston,"Cafe, BBQ, Seafood",54,0.0 +5062,Dhaba Cash 'n' Carry Kitchen Chur Chur Naan,Albuquerque,"Pizza, French, Bakery, Fast Food, Cafe",100,0.0 +5063,Dolphin - The Food Cafe,Dillingham,"Desserts, Pizza, Bakery, BBQ, Chinese, Mediterranean",81,0.0 +5064,First Treat Bakers,Punta Gorda,"Cafe, Pizza, American, Bakery",36,0.0 +5065,Flavours Of Delhi,New Bern,"Cafe, BBQ, Mediterranean, Desserts",30,0.0 +5066,Foresto Lawn & Restaurant,Amarillo,"Pizza, Bakery, Mediterranean, Desserts",80,0.0 +5067,Jain Sweets & Bakers,Fairbanks,"Pizza, Italian, BBQ, Fast Food, Mediterranean",48,0.0 +5068,JD's Restaurant,Islip,"French, Mexican, BBQ, Bakery, Fast Food, Seafood",22,0.0 +5069,Just Vada Pav,Dubuque,"BBQ, Fast Food, Cafe, Indian, Seafood",69,0.0 +5070,Kaka De Dhaba,Wenatchee,"Cafe, Bakery, Desserts",78,0.0 +5071,Kolcata Bengali Dhaba,Dayton,"Cafe, Mediterranean, Seafood",51,0.0 +5072,Kukkuu Da Dhaba,Bozeman,"Tea, Bakery, BBQ, Cafe, Indian",58,0.0 +5073,M&S Coffee Cafe,Santa Ana,"Desserts, Pizza, Fast Food, Cafe, Indian",53,0.0 +5074,Malabar Style Kitchen,Rochester,"Chinese, Pizza, Desserts, Fast Food",34,0.0 +5075,Mathura Lassi Wala,Punta Gorda,"Tea, Mediterranean, Fast Food",25,0.0 +5076,Metropolitan Cafe,Brownsville,"Tea, Bakery, Mexican, Indian",68,0.0 +5077,Mr. Bake,Dillingham,"Tea, Mexican, BBQ, Fast Food, American, Seafood",23,0.0 +5078,Mughal-E-Zaika,Lihue,"Cafe, Mexican, BBQ, Seafood",26,0.0 +5079,Mukesh Bhojnalaya,Rhinelander,"Fast Food, Cafe, Desserts, Seafood",13,0.0 +5080,New Royal Blue Dhaba,Grand Island,"French, Mexican, Bakery, Fast Food, Seafood",35,0.0 +5081,New Sharma Chicken Corner,Victoria,"Desserts, BBQ, Bakery, Cafe, Indian",76,0.0 +5082,Pakwan,Cedar City,"Desserts, Italian, BBQ, Fast Food, Seafood",53,0.0 +5083,Pizza Corner,Duluth,"Pizza, Indian, BBQ, American, Seafood",68,0.0 +5084,Pokhreli Kitchen,Ithaca,"Mexican, BBQ, Seafood",71,0.0 +5085,Rasoi,Escanaba,"Cafe, Pizza",65,0.0 +5086,Satya Dhaba,Idaho Falls,"Desserts, Tea, Italian, BBQ, Seafood",79,0.0 +5087,Sha-O-Lin Chinese Fast Food,Jacksonville,"Desserts, Italian, Bakery, BBQ, Seafood",72,0.0 +5088,Shahi Chicken Corner,Charlottesville,"Cafe, Seafood",85,0.0 +5089,Shama Muradabadi,Pensacola,"Desserts, Indian, BBQ",93,0.0 +5090,Sunil Punjabi Dhaba,Baltimore,"Cafe, Pizza, BBQ, Seafood",62,0.0 +5091,Sunita Dhaba,Las Vegas,"Cafe, Bakery, BBQ, Fast Food",51,0.0 +5092,Taste of India,Fort Myers,"Bakery, Mexican, BBQ, Desserts",65,0.0 +5093,U.P. Al-Flah Restaurant,Roswell,"Cafe, Pizza, Indian, Seafood",37,0.0 +5094,Vaishno Da Dhaba,Sioux Falls,"French, Bakery, Fast Food",89,0.0 +5095,Yadav Sweets,Deadhorse,"Indian, BBQ, Fast Food",24,0.0 +5096,The Cavalry Bar - Maidens Hotel,Newport News,"BBQ, American, Desserts",87,2.7 +5097,The Curzon Room - Maidens Hotel,Peoria,"Pizza, French, Bakery, BBQ, Cafe",50,3.4 +5098,The Garden Terrace - Maidens Hotel,Las Vegas,"Desserts, Tea, Bakery, BBQ, Indian",78,3.3 +5099,Ama Rabsel House,Boston,"Tea, Cafe, Desserts",18,3.0 +5100,Cafe Plus,Cincinnati,"Cafe, Pizza, Bakery, Fast Food, Chinese",93,3.2 +5101,Hornbill,Clarksburg,"Cafe, Mexican, BBQ, Mediterranean",43,3.1 +5102,Orange Cafe & Restaurant,Louisville,"Desserts, Tea, Pizza, Mexican, BBQ",83,3.1 +5103,ABC Restaurant,Devils Lake,"Tea, Italian, French, Bakery, BBQ, Fast Food",78,0.0 +5104,Achi Restaurant,Hattiesburg,"Desserts, Pizza, Fast Food, Cafe, Mediterranean",75,0.0 +5105,Asian House Restaurant,Muskegon,"Tea, Cafe, Bakery, Fast Food",94,0.0 +5106,Cafe 59,Killeen,"Pizza, Desserts, Fast Food",74,0.0 +5107,Drepung Loselling,Minot,"Pizza, BBQ, Fast Food, Indian, Mediterranean, Seafood",17,0.0 +5108,Dus Bab,Midland,"Tea, Chinese, BBQ, Cafe",71,0.0 +5109,DZI House,Williston,"Bakery, Fast Food, Cafe, American, Seafood",90,0.0 +5110,Good Luck Cafe,Alamosa,"Cafe, Mexican, Pizza",10,0.0 +5111,Kathmandu,Islip,"Pizza, Italian, Cafe, Indian, Seafood",24,0.0 +5112,Kullu Manali Restaurant,Billings,"French, Bakery, Seafood, Fast Food",48,0.0 +5113,Lhamo's Kitchen,Yakutat,"Tea, French, BBQ, Cafe, Mediterranean",61,0.0 +5114,Lhasa Manthang Restaurant,Brainerd,"Bakery, Pizza, BBQ, Italian",73,0.0 +5115,Lhasa Thali House,Aberdeen,"Tea, Mexican, Seafood",22,0.0 +5116,Little Tibet,Greensboro,"Desserts, Pizza, BBQ, Fast Food, Chinese, American",72,0.0 +5117,Lotus House Restaurant,Sarasota,"Tea, Cafe, Pizza, Italian, Fast Food, Chinese",37,0.0 +5118,Mahi Rasoi,Anchorage,"Cafe, Pizza, Mediterranean",75,0.0 +5119,New Open Restaurant,West Yellowstone,"Desserts, French, BBQ, Cafe, Mediterranean, Seafood",72,0.0 +5120,Rooftop Restaurant,New Bern,"Desserts, Pizza, Mexican, Bakery, Cafe",32,0.0 +5121,Somang House Restaurant,Fort Dodge,"Chinese, Indian, Cafe, BBQ",65,0.0 +5122,Tandoori Khazana,Dallas,"Tea, Pizza, BBQ, Chinese, Indian, Seafood",61,0.0 +5123,Tsopema Restaurant,Nantucket,"Pizza, BBQ, Fast Food, Chinese, Seafood",63,0.0 +5124,33 Food,West Yellowstone,"Desserts, Italian, BBQ, Fast Food, American, Seafood",94,3.2 +5125,Burger Point,Tulsa,"French, Bakery, Pizza, BBQ",66,3.3 +5126,Cafe Blur,San Luis Obispo,"Tea, Pizza, Italian",45,3.1 +5127,Cafe Coffee Day,New Orleans,"Pizza, Bakery, Mediterranean, Italian",96,2.5 +5128,Cafe Rendezvous,Lihue,"Tea, Chinese, Pizza, Indian",97,3.3 +5129,Cakes & Bakes,Worcester,"Fast Food, Tea, BBQ, Italian",88,3.4 +5130,Chatorey Chacha,Fayetteville,"Tea, American, BBQ, Italian",11,3.3 +5131,Chilli Dragon,Yakima,"Fast Food, Cafe, Desserts, Seafood",83,3.3 +5132,DCK- Dana Choga's Kitchen,Waterloo,"French, BBQ, Fast Food, Cafe, American",50,3.4 +5133,Divya's Rimpy Restaurant,Williston,"Chinese, Cafe, Fast Food",76,3.2 +5134,Express Dhaba,Pago Pago,"Tea, French, Fast Food, Cafe, Seafood",38,2.7 +5135,Go Foodie,Cincinnati,"Tea, Indian, Bakery, Cafe, American",26,3.3 +5136,Health Pan,Erie,"Chinese, BBQ, Seafood",43,3.4 +5137,Karim's,Greer,"Tea, Italian, Bakery, Cafe, Mediterranean, Seafood",32,3.0 +5138,Karuna,Martha's Vineyard,"Tea, Cafe, French, BBQ, Chinese",52,3.0 +5139,Kathi,Fort Lauderdale,"Tea, Cafe, Bakery",100,2.8 +5140,King Chilly Kitchen,Ketchikan,"Tea, Bakery, BBQ, Fast Food, Chinese",71,3.2 +5141,Kolhapuri Veg Non-Veg Foods,Texarkana,"Tea, Cafe, Mexican, BBQ",84,3.3 +5142,Mehfil Dhaba,Yakima,"Chinese, Bakery, BBQ",46,3.4 +5143,Moti Mahal Delux - Legendary Culinary,West Yellowstone,"Tea, Chinese, Desserts, Fast Food",32,2.6 +5144,Open Oven,Bismarck,"Bakery, Pizza, Italian",75,3.4 +5145,Paapi Paet,Pensacola,"Cafe, Mediterranean, Fast Food",96,3.3 +5146,Pepper Corn Express,Bellingham,"BBQ, Mediterranean, Desserts, Fast Food",58,3.4 +5147,Pinch Of China,Moline,"Seafood, Pizza, BBQ, Fast Food",22,3.2 +5148,Pizza Hut Delivery,Killeen,"Tea, Bakery, Desserts, Seafood",78,2.8 +5149,Punjabee's Darbar,Chattanooga,"Tea, French, Bakery, Fast Food, Chinese",41,3.0 +5150,Ramjee's,Lewisburg,"Tea, Pizza, Italian, French, Bakery, Seafood",72,3.3 +5151,Rollmaal,Anchorage,"Tea, Chinese, Desserts",13,3.4 +5152,Shaolin,Baltimore,"Tea, Pizza, Indian, Bakery, American, Seafood",64,3.4 +5153,Subway,Santa Rosa,"Desserts, Pizza, Mexican, Bakery, Fast Food",74,2.8 +5154,The Chocolate Room,Kodiak,"Cafe, Indian, Seafood",48,3.4 +5155,The Delhi Heights,Lihue,"Seafood, Desserts, Italian",48,2.8 +5156,Thok (The House of Kakori),Dubuque,"Mexican, Pizza, Fast Food",23,3.4 +5157,Uloo,Memphis,"Tea, Pizza, Fast Food, Cafe, American",41,3.2 +5158,Vadapav Junction & More,Mosinee,"Tea, Pizza, Bakery, American, Mediterranean",50,3.3 +5159,Behrouz Biryani,Kahului,"Tea, Bakery, Desserts, Seafood",20,3.6 +5160,Beliram Degchiwala,Christiansted,"Bakery, Mediterranean, Desserts, Seafood",59,3.5 +5161,Bhukkhar,Baltimore,"Desserts, Fast Food, Cafe, Indian, Seafood",46,3.9 +5162,Biryani Blues,Wilmington,"Bakery, BBQ, Seafood, Fast Food",90,3.9 +5163,Bun Intended,San Diego,"Cafe, Pizza, Desserts, Seafood",91,3.9 +5164,Casa Asia,Bangor,"Pizza, American, BBQ",66,3.8 +5165,Chic Fish,West Palm Beach,"Bakery, BBQ",79,3.5 +5166,Dunkin' Donuts,Raleigh,"Desserts, Indian, Bakery, American, Seafood",22,3.6 +5167,Farratta,Newport News,"Tea, Cafe, Desserts, Seafood",71,3.7 +5168,Flavors of Chennai,Lewisburg,"Desserts, Pizza, BBQ, Fast Food, Chinese",98,3.7 +5169,Food For Thought,Petersburg,"Tea, Desserts",24,3.8 +5170,FreshMenu,Ketchikan,"Tea, Mexican, BBQ, Fast Food, Cafe, Mediterranean",53,3.7 +5171,Giani's,Niagara Falls,"Seafood, Bakery, Desserts, Fast Food",44,3.7 +5172,Gopala,Greer,"Tea, Cafe, Pizza, Seafood",72,3.8 +5173,Green Chick Chop,Deadhorse,"Tea, Cafe, Pizza, Seafood",56,3.5 +5174,Hunger Must Die,Manhattan,"Fast Food, Pizza, Bakery, Seafood",76,3.7 +5175,Kolkata Kathi Roll,Kalamazoo,"Tea, Chinese, BBQ, Cafe",11,3.6 +5176,Max Grille and Kitchen,Waterloo,"Tea, Pizza, Indian, Seafood",30,3.5 +5177,Moti Sweets,Alamosa,"Pizza, American, BBQ, Fast Food",14,3.6 +5178,Nazeer Foods,Fairbanks,"American, BBQ, Fast Food",68,3.6 +5179,Nikashee,Huntsville,"Tea, Pizza, French, Mexican, BBQ",85,3.7 +5180,Noodle Box,Provo,"Tea, Bakery, BBQ, Seafood",28,3.5 +5181,Pema's,Tampa,"Fast Food, Tea, BBQ, Italian",47,3.6 +5182,Plumber - The Lounge,Ogden,"Cafe, Fast Food",81,3.9 +5183,Pudding & Pie,Waterloo,"Desserts, Bakery, BBQ, American, Seafood",18,3.7 +5184,RP's Restaurant,Staunton,"Tea, Italian, Bakery, BBQ, Seafood",22,3.5 +5185,Soi Thai,North Platte,"Desserts, Pizza, French, BBQ, Bakery",72,3.6 +5186,Speedy Chow,Devils Lake,"Fast Food, Cafe, Italian",84,3.6 +5187,Stoned Age Kitchen,Tulsa,"Desserts, Cafe, Mexican, Chinese, Seafood",28,3.9 +5188,Suribachi,Lewiston,"Desserts, Cafe, Italian, BBQ, Chinese",64,3.5 +5189,Swagath,Dodge City,"Tea, Mexican, Desserts",76,3.5 +5190,The Delhi Canteen,Sioux City,"Cafe, Bakery, Mediterranean, Fast Food",83,3.6 +5191,The Grill Kitchen,Charleston,"Tea, Chinese, BBQ, Cafe",88,3.8 +5192,The Midnight Heroes,Medford,"Bakery, Indian, Mediterranean, Seafood",63,3.7 +5193,The Salad Bowl,Hilton Head,"Cafe, Mexican, BBQ",70,3.5 +5194,Domino's Pizza,Longview,"Tea, French, Bakery, Fast Food, Cafe",48,2.3 +5195,Food Army,Helena,"Cafe, Pizza, Desserts, Fast Food",21,2.3 +5196,Moti Restaurant,Charleston,"Tea, Bakery, Fast Food, Chinese, Seafood",71,2.4 +5197,New Baba Da Dhaba,Valparaiso,"Tea, French, Bakery, Cafe, Seafood",54,2.0 +5198,Tunday Kababi,Newark,"Tea, Bakery, American, Indian",10,2.2 +5199,Dilli BC,Dillingham,"Tea, Fast Food, Seafood, Italian",34,4.4 +5200,Litti.In,Florence,"Bakery, Seafood",13,4.0 +5201,Nizam's Kathi Kabab,Cody,"Seafood, Bakery, Fast Food",69,4.0 +5202,Pepper Kitchen,Bozeman,"Pizza, BBQ, Seafood",75,4.0 +5203,Rustom's Cafe & Bakery,Kotzebue,"Pizza, Bakery, Mediterranean",29,4.1 +5204,Salad Days,Portland,"Tea, Cafe, Indian",41,4.0 +5205,Stop My Starvation,Honolulu,"Desserts, BBQ, Bakery, Cafe, Indian",64,4.3 +5206,Sushi Junction,Cody,"Chinese, Pizza, Indian, BBQ",54,4.0 +5207,Vero Gusto,Phoenix,"Desserts, Indian, BBQ",13,4.1 +5208,Snack Junction,Bozeman,"Cafe, Pizza, American, Fast Food",98,3.2 +5209,Turant,Pocatello,"Mexican, Pizza, BBQ, Fast Food",89,3.3 +5210,Snacks Point,Pellston,"Tea, BBQ, Bakery, American, Mediterranean, Seafood",78,0.0 +5211,The Sweet Spot,Lake Charles,"Seafood, Mexican, Bakery, Fast Food",21,0.0 +5212,Kafe @ Museum,Clarksburg,"Tea, French, Bakery, Desserts",25,0.0 +5213,Friends Cafe,Sacramento,"Cafe, American, Fast Food",47,0.0 +5214,Aromas of Pind,Redding,"Tea, BBQ, Seafood",86,4.2 +5215,Apna Dhaba and Caters,Greer,"Tea, Bakery, Indian, Desserts",48,3.2 +5216,Green Chick Chop,Pasco,"Bakery, American, Mediterranean, BBQ",52,2.7 +5217,Jai Shree Durga South Indian Corner,Albuquerque,"Tea, Cafe, Pizza, Desserts",37,3.0 +5218,Malabar Catering House,Dayton,"Bakery, BBQ, Fast Food",56,3.2 +5219,Meenakshi Bhawan,Nashville,"Tea, Desserts",24,3.1 +5220,New Raja Sweets,Colorado Springs,"Seafood, Mediterranean, Desserts, Italian",30,2.9 +5221,Pizza Treat,Arcata,"Mexican, Bakery, BBQ, Fast Food, Seafood",12,3.0 +5222,Pudding & Pie,Saginaw,"Tea, BBQ, Desserts, Fast Food",54,3.1 +5223,Rita Chinese Food,Palm Springs,"Tea, Chinese, Pizza, Cafe",74,3.1 +5224,Vibes of Punjab,Cincinnati,"Pizza, BBQ, Fast Food, Cafe, Indian",79,3.2 +5225,Ramji Di Hatti & Caterers,Laredo,"Bakery, Pizza, American",16,3.5 +5226,Spicy Tadka,Saipan,"Pizza, Bakery, Cafe, American, Seafood",14,3.5 +5227,Mr. Tandoori Lal,Walla Walla,"Bakery, Pizza, Fast Food",50,0.0 +5228,Om Sweets & Caterers,Islip,"Chinese, Pizza, BBQ, Cafe",61,0.0 +5229,Sardar Ji Take Away & Caterers,Lawton,"French, Pizza, Desserts, Fast Food",50,0.0 +5230,9 is Mine,Sioux City,"Fast Food, Cafe, Indian, Seafood",57,2.6 +5231,Aashirwad,Norfolk,"Pizza, BBQ, Cafe, American, Seafood",100,3.2 +5232,Aggarwal Sweet & Bakers,Abilene,"Pizza, Mediterranean, BBQ",79,2.9 +5233,Amit Hotel,Wichita Falls,"Cafe, Bakery",58,2.9 +5234,Angrezee Dhaba,Prescott,"Chinese, Bakery, BBQ, Cafe",88,2.8 +5235,Ankur Family Restaurant,Amarillo,"French, Pizza, Cafe, Desserts",58,2.9 +5236,Bansal Sweet,Williston,"Cafe, BBQ",16,2.7 +5237,Baskin Robbins,Santa Barbara,"Tea, Pizza, Bakery, BBQ, American",65,3.1 +5238,Caravan Resto Bar,Myrtle Beach,"Desserts, Tea, BBQ, Mediterranean, Seafood",57,3.2 +5239,Celebration Multi Cuisine Restaurant,Seattle,"Pizza, American, Desserts",65,2.7 +5240,Chatto Chapati,Erie,"Tea, French, Desserts",95,3.0 +5241,Chawla's宊,Denver,"Desserts, Tea, Pizza, Italian, Fast Food, Indian",72,2.7 +5242,China Town,Gainesville,"Desserts, Cafe, Fast Food, Chinese, Seafood",56,2.7 +5243,China Town,Gainesville,"Tea, Mediterranean, Seafood",55,2.7 +5244,Dazzle Pastry Shop,La Crosse,"Desserts, Indian, BBQ, Seafood",98,2.6 +5245,Delicacy Foods,Santa Fe,"Tea, French, Bakery, Indian",74,3.2 +5246,Dolphin Rolls,Kahului,"Pizza, Desserts, Italian",39,2.9 +5247,Durbar Restaurant,Lake Charles,"Tea, Cafe, Pizza, Bakery, Chinese",99,2.7 +5248,Ever Green Pastry Shop,Killeen,"Desserts, Tea, French, BBQ, Seafood",51,3.1 +5249,Evergreen Sweets Corner,Great Falls,"Seafood, American, Cafe, Italian",53,3.0 +5250,Great Plates By AJ,Vernal,"Chinese, Bakery, Pizza, Mediterranean",52,3.1 +5251,Green Chick Chop,Austin,"Cafe, Mediterranean, Fast Food",43,3.2 +5252,Haqeem's,Gunnison,"Cafe, Mediterranean, Seafood",85,2.7 +5253,Himalaya Food Corner,Milwaukee,"Desserts, Tea, BBQ, Fast Food, Chinese",40,2.7 +5254,Hot Joint Fast Food,Spokane,"Desserts, Pizza, Mexican, Bakery, Fast Food, Mediterranean",54,2.6 +5255,Hyderabadi Dum Biryani,Harlingen,"Tea, Italian, Mexican, BBQ, Seafood",37,2.7 +5256,Kasturi Family Restaurant,Dayton,"Pizza, Italian, French, BBQ, Fast Food, Cafe",64,3.0 +5257,Kerala Cafe,Mason City,"Pizza, Desserts",64,3.3 +5258,Keuchen Paradise,Muskegon,"Tea, BBQ, Desserts, Seafood",83,2.8 +5259,Kook For Health,Killeen,"Tea, Pizza, Bakery, Seafood",78,3.3 +5260,Lahorian's Sweets & Bakers,Mission,"French, Bakery, Seafood",17,2.9 +5261,Mr. Baker's,Prescott,"Tea, Indian, BBQ, Fast Food, Cafe, American",10,3.0 +5262,Night Food Delivery,Waco,"Fast Food, French, Cafe, Italian",20,2.7 +5263,Nine 2 Nine Snacks & Restaurant,Bangor,"Tea, Chinese, Pizza, BBQ",55,2.9 +5264,Punjabi Mirch,West Yellowstone,"Cafe, Pizza, Mediterranean, Seafood",91,3.0 +5265,Rasoi The Food Express,Del Rio,"Tea, Bakery, Mexican, BBQ",73,2.6 +5266,Republic of Chicken,Mosinee,"Mediterranean, Desserts, Fast Food",71,2.8 +5267,Sandwichai,Bend,"Tea, BBQ, Fast Food, Chinese, Indian, Seafood",64,3.3 +5268,SB's Raisins,Ontario,"Tea, French, Bakery, Cafe",38,2.8 +5269,Shanghai Kitchen,Del Rio,"Tea, Seafood, Italian",19,3.1 +5270,Shiv Shakti Restaurant,Appleton,"French, Pizza, BBQ",34,3.0 +5271,Smoky Chettinad,North Bend,"Chinese, Pizza, Bakery, Cafe, Mediterranean",11,2.8 +5272,Spice Fusion,Grand Forks,"Desserts, BBQ, Fast Food, Cafe, American",98,3.1 +5273,Sweet Toof Designer Cakes,Yakima,"Cafe, Mediterranean, Seafood",40,3.1 +5274,The Chef,Idaho Falls,"Tea, Cafe, BBQ",11,3.2 +5275,The Edge Cafe,Bismarck,"Tea, Cafe, Bakery",14,3.1 +5276,The Epicure - Fraser Suites,Daytona Beach,"Tea, French, Pizza, Fast Food",98,3.1 +5277,Udupidarshini Veg Restaurant,Greenville,"Pizza, Mediterranean, Desserts",73,3.4 +5278,36 lebzelter,Johnstown,"Chinese, Bakery, Cafe",86,3.7 +5279,Baked Buns,Bakersfield,"Tea, Cafe, BBQ, Fast Food",73,3.6 +5280,Freakin Beans,Memphis,"Cafe, Bakery, American, Mediterranean",67,3.7 +5281,Nutri Cafe,State College,"Desserts, Tea, Pizza, French, American",85,3.7 +5282,Senorita's,Augusta,"Italian, Mexican, BBQ, Fast Food, Seafood",50,3.7 +5283,Village - The House of Food,Los Angeles,"Chinese, Pizza, Cafe",87,3.7 +5284,Aman Vaishno Dhaba,Petersburg,"Fast Food, Bakery, Seafood",71,0.0 +5285,Anupam Hotel,Petersburg,"Tea, Italian, Bakery, BBQ, Cafe",81,0.0 +5286,Bake Bank,Gunnison,"Tea, French, Bakery, BBQ, Fast Food",93,0.0 +5287,Buzybee,Birmingham,"Desserts, Pizza, French, BBQ, Cafe",92,0.0 +5288,Cafe Tandoor,Dayton,"Desserts, Tea, BBQ, Bakery, American, Mediterranean",100,0.0 +5289,Chawlas 2,San Diego,"Bakery, Pizza, Indian, Seafood",67,0.0 +5290,Choksi Chinese,Santa Rosa,"Tea, Pizza, BBQ, Desserts",79,0.0 +5291,Desi Chulha,Laredo,"Bakery, Pizza, Indian, BBQ",13,0.0 +5292,Fumble Foods,Fort Leonard Wood,"Tea, Bakery, Mediterranean, Fast Food",34,0.0 +5293,Games v/s Cafe,Rock Springs,"Mexican, Pizza, BBQ, Fast Food",31,0.0 +5294,Goodies- Snacks N More,Boise,"French, Desserts, Seafood",83,0.0 +5295,Grubhouse Cafe,Laredo,"Cafe, Bakery, Desserts, Seafood",38,0.0 +5296,Mr. Baker's,Santa Ana,"Tea, Bakery, Desserts",33,0.0 +5297,Muradabadi Chicken Biryani & Dhaba,Durango,"Cafe, Bakery, Pizza, Seafood",86,0.0 +5298,Pakiza Restaurant,Sacramento,"Bakery, BBQ, Fast Food, Cafe, American",70,0.0 +5299,Riddhi Siddhi Restaurant,Jamestown,"Chinese, Bakery, Indian, Cafe",45,0.0 +5300,Rockers & Shockers,Sioux Falls,"French, Pizza, BBQ",39,0.0 +5301,Saikutir Food,Los Angeles,"Tea, Pizza, Italian, Cafe, Mediterranean, Seafood",96,0.0 +5302,Satnaam Foods,Hilton Head,"Cafe, Mexican, Indian, Seafood",53,0.0 +5303,Senorita's,Mosinee,"Fast Food, Chinese, Cafe, Seafood",94,0.0 +5304,Shri Bala Ji Rasoi,Brownsville,"Desserts, Tea, Mexican, Fast Food, Seafood",38,0.0 +5305,South Indian,Sioux City,"Tea, Desserts",56,0.0 +5306,Tip Top Eating Corner,Cape Girardeau,"Seafood, Cafe, Fast Food",45,0.0 +5307,ToLoveFromLove,Wilmington,"Cafe, Bakery, Indian, Fast Food",53,0.0 +5308,Tripti Foods,Boston,"Pizza, Mexican, Bakery, Fast Food, Cafe",74,0.0 +5309,U Like,Rockford,"Tea, French, Desserts",32,0.0 +5310,Zayka chicken restaurant,Mason City,"Chinese, Bakery, Seafood, Fast Food",68,0.0 +5311,Cafe Coffee Day,Brownsville,"Seafood, BBQ, Mediterranean, Italian",18,2.4 +5312,Food Fantasy,Salina,"Chinese, Pizza, BBQ, Seafood",35,2.4 +5313,Just Chinese,Mason City,"Desserts, Pizza, Italian, Fast Food, Seafood",27,2.4 +5314,Agarwal Bikaneri Sweets,Pasco,"Cafe, Desserts, Fast Food",92,3.1 +5315,Bikaner Sweets,Bangor,"Tea, Cafe, Italian",82,2.8 +5316,Breadz,Presque Isle,"Chinese, Indian, Seafood, Fast Food",28,3.3 +5317,Desi Jugaad,Little Rock,"Fast Food, Cafe, Seafood",26,3.2 +5318,Food Trax,Roswell,"Tea, Pizza, Bakery, Seafood",72,2.9 +5319,Hub Tub,Great Falls,"Tea, Pizza",56,3.0 +5320,Malabar Foods,Fort Dodge,"Bakery, Seafood",71,2.7 +5321,Mitra Di Chaap,Harlingen,"Pizza, Indian, BBQ, Seafood",59,3.0 +5322,New Hyderabadi Biryani House,Baton Rouge,"Desserts, Mexican, Bakery, Fast Food, Indian, Seafood",81,2.5 +5323,New Madras Cafe,Scottsbluff,"Tea, Cafe",42,2.8 +5324,Roll Club,Melbourne,"Cafe, Pizza",11,3.2 +5325,Sanju Cool & Hot Hut,Wenatchee,"Bakery, Pizza, American",66,2.8 +5326,Sethi's Kabab & Curries,Chicago,"Bakery, BBQ, Cafe, Mediterranean, Seafood",69,3.1 +5327,South Indian Fast Food,Richmond,"Fast Food, Chinese, BBQ, Seafood",83,3.3 +5328,Sweets and Spices,Eugene,"Mexican, Bakery, Desserts, Seafood",84,2.8 +5329,Urban Degchi Kitchen & Bar,Ogdensburg,"Desserts, Pizza, BBQ, American, Mediterranean, Seafood",40,2.6 +5330,Wah Ji Wah,Saginaw,"Indian, Desserts, Seafood",82,3.1 +5331,Zaiqa Kathi Roll & Momos,Belleville,"Cafe, BBQ, Fast Food",80,3.3 +5332,Duggal Snacks,San Diego,"Desserts, Pizza, Italian, Fast Food, Cafe, Indian",82,3.6 +5333,Granny's Flavour,Victoria,"Fast Food, BBQ, Italian",19,3.5 +5334,Moustache Coffee,Jackson,"Cafe, BBQ, Italian",40,3.7 +5335,Pradeep Pav Bhaji,San Luis Obispo,"Mexican, BBQ, Desserts",18,3.8 +5336,Sandwich Factory,Lewiston,"Cafe, Desserts, Seafood",19,3.9 +5337,Scorpio Cafe,Charlotte,"Tea, Cafe, Pizza, Mediterranean",89,3.7 +5338,Veggie-Licious,State College,"Tea, BBQ, Desserts, Fast Food",70,3.6 +5339,Creamy Creation,Newark,"Mexican, Pizza, Seafood",44,0.0 +5340,Evergreen Food Corner,Concord,"Tea, Bakery, Desserts, Seafood",19,0.0 +5341,K.D Corner,Kansas City,"Desserts, Tea, French, American, Seafood",49,0.0 +5342,Slice Of Italy,Gustavus,"Pizza, Mediterranean, Fast Food",22,2.2 +5343,Anokha Chinese Hut,Lexington,"Tea, Pizza, Mexican, BBQ, Chinese",85,2.6 +5344,Bobby Dhaba & Caterers,Cedar Rapids,"Tea, Pizza",41,3.1 +5345,Clever Fox Cafe,Fort Dodge,"French, Mexican, Cafe, Desserts",33,3.0 +5346,Dana Pani,Plattsburgh,"Cafe, Pizza, American, BBQ",65,2.8 +5347,Hotel Malabar,Flagstaff,"Tea, Indian, Desserts, Fast Food",13,3.0 +5348,Lumbini Fast Point,Savannah,"Seafood, BBQ, Desserts, Fast Food",71,3.0 +5349,Mayur Restaurant,Memphis,"Cafe, Fast Food",58,2.8 +5350,MOC - The American Restaurant,Adak Island,"Pizza, Mediterranean, Seafood",80,2.6 +5351,Muradabadi Chicken Biryani,Syracuse,"Cafe, American, Fast Food",10,3.3 +5352,New Aggarwal Sweet Corner,Portland,"Chinese, Bakery, Desserts",23,2.7 +5353,Pizza Castle,Newburgh,"Tea, Pizza, Indian, Fast Food",13,2.7 +5354,Punjabi Dhaba,Grand Forks,"Tea, French, Fast Food, American, Seafood",28,3.0 +5355,Qureshi Chicken Corner,Shreveport,"Seafood, Pizza, Mediterranean, Italian",52,3.0 +5356,Samarpan Fast Food,Akron,"Cafe, Pizza, Bakery, BBQ, Chinese, American",52,2.9 +5357,Shaan-E-Tandoorz,Greer,"BBQ, Fast Food",91,2.9 +5358,Sonu Sudh Bhojnalaya,Presque Isle,"Cafe, Fast Food",13,2.8 +5359,The Test,Seattle,"Tea, Pizza, Bakery",18,2.9 +5360,True Blue,South Bend,"Seafood, Mediterranean, Fast Food",53,3.3 +5361,Zaika Kathi Rolls,Laredo,"French, Bakery, Cafe",30,3.0 +5362,Baked Buns,New Bern,"Desserts, Tea, Pizza, Mexican, Fast Food, American",13,3.5 +5363,A One Muradabadi,Eugene,"Desserts, Tea, Bakery, Cafe, American",80,0.0 +5364,Annapurna,Ontario,"Pizza, BBQ, Italian",61,0.0 +5365,Cake Walkers,Concord,"Indian, Desserts, Fast Food",48,0.0 +5366,Harish And Sonu Sudh Bhojnalya,Walla Walla,"Desserts, Tea, Cafe, Pizza, Italian, Chinese",44,0.0 +5367,Mitra Da Dhaba,Gustavus,"Chinese, Bakery, Cafe, Seafood",64,0.0 +5368,Munchies Midnight Delivery,Jackson,"Tea, Cafe",49,0.0 +5369,Muradabadi Chicken Corner,Appleton,"Cafe, Pizza, Bakery, Seafood",97,0.0 +5370,Riyaz Chicken Corner,Fort Wayne,"Tea, Pizza, BBQ, Fast Food, Indian, Mediterranean",64,0.0 +5371,Romano's Pizza,Lewiston,"Cafe, Pizza, Bakery, Mediterranean",37,0.0 +5372,Royal Spice,La Crosse,"Cafe, Bakery, Mediterranean, Desserts",90,0.0 +5373,Sonu Bhojanalya,Bishop,"Cafe, Mexican, Fast Food",34,0.0 +5374,The Deshi Bites,North Platte,"French, Indian, BBQ, Seafood",16,0.0 +5375,Green Chick Chop,San Jose,"French, Bakery, BBQ, Seafood",66,3.0 +5376,Mahara Hotel,Great Falls,"Tea, French, Fast Food, Cafe, Seafood",27,2.9 +5377,Malik Vegetarian Rasoi,Victoria,"Cafe, Pizza, BBQ, Chinese, Seafood",59,2.9 +5378,Yash Aadi Food Corner,Tallahassee,"Chinese, Pizza, Mediterranean, Desserts",70,2.9 +5379,#hashtag,Akron,"Cafe, Pizza",77,0.0 +5380,Al Zaika,Greer,"Tea, Mexican, Bakery, Cafe, Seafood",30,0.0 +5381,Ashiyan Foods,Rapid City,"Pizza, French, Bakery, Cafe, American, Seafood",45,0.0 +5382,Bake My Day,Denver,"Desserts, Tea, Pizza, Mexican, BBQ",82,0.0 +5383,Bhutani Chaap,Spokane,"Desserts, Tea, BBQ, Bakery, Mediterranean",73,0.0 +5384,China Pan,Helena,"Tea, Bakery, Fast Food, Chinese, Seafood",91,0.0 +5385,Chinese Fast Food,Latrobe,"Bakery, Indian, Fast Food",64,0.0 +5386,Dilkhush Punjabi Dhaba,Wichita Falls,"Desserts, Tea, Pizza, Indian, Seafood",62,0.0 +5387,Dragun Hut,Greenville,"Desserts, Indian, Bakery, BBQ, American, Seafood",33,0.0 +5388,Giani's,West Palm Beach,"Desserts, Tea, Cafe, French, Fast Food, Chinese",98,0.0 +5389,Kathi House,Cleveland,"Seafood, Fast Food",52,0.0 +5390,Kerala Kitchen & Restaurant,Denver,"Mexican, Desserts, Fast Food",65,0.0 +5391,Retro Kichen,Ponce,"Cafe, Desserts, Fast Food",67,0.0 +5392,The China Town,Lewiston,"Pizza, Fast Food, Cafe, Indian, Seafood",100,0.0 +5393,The Urban Dhaba,Punta Gorda,"Bakery, Fast Food, Cafe, American, Seafood",87,0.0 +5394,Twenty Four Seven,Concord,"Tea, Cafe, Fast Food, Chinese, Seafood",39,0.0 +5395,McDonald's,Melbourne,"Pizza, Italian, Fast Food, Cafe, Mediterranean, Seafood",83,3.4 +5396,Moti Mahal Delux Tandoori Trail,Phoenix,"Mexican, Bakery, Desserts, Seafood",95,3.2 +5397,Pizza Hut,Durango,"Fast Food, French, Bakery, Italian",35,2.8 +5398,Dill's Chawla Chik-Inn,Fort Smith,"Chinese, Bakery, Cafe",29,2.9 +5399,Tandoori Zaaika,Seattle,"Pizza, Indian, Seafood",96,3.0 +5400,Aap Ki Khatir,Greenville,"Cafe, Seafood",61,0.0 +5401,Aggarwal Sweets,Panama City,"Tea, Mexican, Desserts, Seafood",58,0.0 +5402,Baskin Robbins,Marquette,"Mexican, BBQ, Mediterranean, Seafood",72,0.0 +5403,Bikaner Sweets,Cheyenne,"Pizza, French, Mexican, Fast Food, Cafe",14,0.0 +5404,Bollywood Khana,Muskegon,"Bakery, Mediterranean, Fast Food",81,0.0 +5405,Cake And Bakes,State College,"Tea, Cafe, Pizza",24,0.0 +5406,Cake Point,Bloomington,"Desserts, Pizza, Bakery, Cafe, American",64,0.0 +5407,Chinese Corner,Great Falls,"Bakery, Pizza, Indian, Fast Food",66,0.0 +5408,Choudhary Dhaba,Billings,"Pizza, Bakery, Mediterranean, Fast Food",15,0.0 +5409,Green Chick Chop,New Orleans,"Pizza, French, Bakery, BBQ, Indian, Seafood",66,0.0 +5410,Green Chick Chop,Raleigh,"Tea, Pizza, BBQ, Cafe, American",82,0.0 +5411,Gujjar Dhaba,Fort Myers,"Tea, French, Bakery, BBQ, Cafe",22,0.0 +5412,Hotel Aditi,Corpus Christi,"Cafe, Pizza, Mexican, BBQ, Chinese",36,0.0 +5413,JMD Food Palace,Bakersfield,"Tea, Cafe, Desserts, Fast Food",66,0.0 +5414,Kitchen Namaste,Mosinee,"French, Indian, BBQ, Seafood",53,0.0 +5415,Lajawab Chicken & Fish Fry,Minneapolis,"Desserts, Pizza, Mexican, BBQ, Indian, Seafood",42,0.0 +5416,Lotus Kitchen,Abilene,"French, Bakery, BBQ",15,0.0 +5417,Manami Japanese Restaurant,Bemidji,"Cafe, Bakery, Seafood",82,0.0 +5418,Manna Sweets & Restaurant,Corpus Christi,"Tea, French, Bakery, Seafood",46,0.0 +5419,Moets Curry Pot,Santa Ana,"Tea, Cafe, Pizza, Desserts",99,0.0 +5420,Mr. Sub,Jacksonville,"Pizza, American, BBQ, Seafood",23,0.0 +5421,New Gaurav Dhaba,Louisville,"Desserts, BBQ, Indian, Mediterranean, Seafood",97,0.0 +5422,Pandit Ji Ki Apni Rasoi,Greensboro,"Tea, Seafood, Mediterranean, Italian",55,0.0 +5423,Rajdhani Restaurant,Los Angeles,"Desserts, Tea, French, Bakery, Fast Food, Chinese",30,0.0 +5424,Saraswati Food Corner,Gunnison,"Bakery, BBQ",50,0.0 +5425,Shri Balaji Bhojnalaya,Cedar Rapids,"Pizza, Bakery, BBQ, Fast Food, Indian",48,0.0 +5426,Swadist Bhojnalaya,Helena,"Tea, Cafe, Italian",46,0.0 +5427,Swiss Gourmessa,Des Moines,"Desserts, Pizza, French, BBQ, Cafe, Mediterranean",90,0.0 +5428,Truly Yours,San Jose,"Desserts, Tea, Bakery, Fast Food, Mediterranean",70,0.0 +5429,Uttrakhand Hotel,Santa Barbara,"Chinese, Bakery, Cafe, Fast Food",34,0.0 +5430,Vandana Food Corner,Owensboro,"BBQ, Seafood",17,0.0 +5431,Zaika Biryani,Bakersfield,"Tea, Cafe, BBQ",85,0.0 +5432,Buzz,Sun Valley,"Tea, Mexican, BBQ, Pizza",82,3.4 +5433,Lighthouse 13,Bend,"Desserts, BBQ, Fast Food, American, Mediterranean",12,3.4 +5434,Berco's,Brunswick,"Tea, French, BBQ, Desserts",68,3.8 +5435,The Great Kabab Factory,Gulfport,"Pizza, Italian, BBQ, Fast Food, Seafood",94,3.5 +5436,The Tea Place by Manjushree,St. Louis,"Bakery, Indian, BBQ, Fast Food",86,4.1 +5437,Victoria,Punta Gorda,"Pizza, Bakery, Desserts, Fast Food",36,3.2 +5438,Aces - The Card Room,North Platte,"Tea, Mediterranean, Desserts",81,0.0 +5439,Curzon - The Royal Bar,Pocatello,"BBQ, Mediterranean, Fast Food",69,0.0 +5440,London Eye - The Open Lounge,Tulsa,"Bakery, American, Desserts",68,0.0 +5441,Lord's - The Sports Lounge,Wrangell,"Tea, Cafe, Bakery",52,0.0 +5442,Viceroy - The Coffee Shop,Bismarck,"Fast Food, Chinese, Pizza, Italian",38,0.0 +5443,Munch Nation,Seattle,"Desserts, BBQ, Cafe, Mediterranean, Seafood",55,3.8 +5444,"34, Chowringhee Lane",Ithaca,"Desserts, Cafe, Bakery, Chinese, Indian",50,3.2 +5445,Any Time Food,Sitka,"Desserts, Mexican, Bakery, Fast Food, Indian, Seafood",76,2.6 +5446,Bikaner Sweet House,Washington,"BBQ, Desserts",61,3.2 +5447,Domino's Pizza,Jamestown,"Tea, French, Pizza, Fast Food",45,2.8 +5448,Giani,Rapid City,"Cafe, Mediterranean, Desserts, Seafood",16,2.9 +5449,Grand Plaza,Lake Charles,"American, BBQ, Fast Food",98,3.3 +5450,Great Wall,Aguadilla,"Bakery, Pizza, American",19,2.7 +5451,Healthy Food Station,Medford,"Tea, Pizza, Italian, Bakery, Seafood",71,3.1 +5452,Hostess Tasty Bites,Billings,"Desserts, Tea, French, BBQ, Fast Food, Chinese",60,3.1 +5453,Hot Pot,Moline,"Desserts, Tea, Pizza, French, Bakery, Chinese",24,3.1 +5454,Kabab Factory,Boise,"Fast Food, Chinese, Seafood, Italian",89,3.0 +5455,Keventers,St. Petersburg,"Tea, Bakery, Mediterranean, Fast Food",43,3.1 +5456,Krishna Sweet House,Monterey,"Tea, Bakery, American, Cafe",73,3.3 +5457,Mitraz,Jacksonville,"Pizza, Desserts",65,3.4 +5458,Nut Khut Chaats & Snacks,Salina,"BBQ, Fast Food, Cafe, Mediterranean, Seafood",26,3.2 +5459,Subway,Rockford,"Tea, Chinese, Pizza",42,3.4 +5460,The Host,Kodiak,"Tea, BBQ, Fast Food, Chinese, Seafood",70,2.7 +5461,Chacha Di Hatti,Bangor,"Tea, Pizza, Italian, Mexican, BBQ, Cafe",98,3.7 +5462,Cocoberry,Midland,"Chinese, BBQ, Fast Food",25,3.5 +5463,Eating Corner,Hartford,"Tea, Chinese, Cafe, Fast Food",73,3.7 +5464,El Posto,Knoxville,"Tea, Cafe, Pizza, BBQ",63,3.5 +5465,McDonald's,Helena,"Fast Food, Pizza, Italian",37,3.6 +5466,Pizza Station,Rapid City,"Mexican, Bakery, BBQ, Fast Food, Cafe",13,3.5 +5467,Puri Bakers,Helena,"Cafe, Pizza, Bakery, Fast Food",14,3.7 +5468,JAIL - Behind The Bar,Providence,"Cafe, BBQ",39,4.1 +5469,Curry Shurry,Honolulu,"Tea, BBQ, Desserts",47,3.3 +5470,Frontier,Birmingham,"Mexican, BBQ, Fast Food",12,3.2 +5471,Hari Om Bhojnalaya,Anchorage,"Desserts, Pizza, Fast Food, American, Seafood",61,3.2 +5472,Nirmal's,Lawton,"Cafe, BBQ, Seafood",14,2.7 +5473,Sardar A Pure Meat Shop,Melbourne,"Tea, Bakery, American, Desserts",22,2.8 +5474,The Dragon Hucks,Sacramento,"Pizza, Mediterranean, Desserts, Fast Food",97,3.3 +5475,Green Chick Chop,Elmira,"Tea, BBQ, Pizza, Desserts",32,3.5 +5476,New Arjun Bombay Pav Bhaji,Daytona Beach,"Tea, French, Mediterranean, Fast Food",91,3.8 +5477,Sweeter Delight,Laredo,"Tea, Mediterranean, Seafood",38,0.0 +5478,Madaari,Escanaba,"Tea, Cafe, Pizza, Chinese, Seafood",72,4.3 +5479,Amritsari Express,Kansas City,"Pizza, American, Fast Food",59,3.4 +5480,Barista,Muskegon,"Tea, Chinese, Pizza, Fast Food",67,3.1 +5481,Baskin Robbins,Greenville,"Tea, Cafe, Fast Food",89,3.1 +5482,Bikano's Chat Cafe,Missoula,"Tea, French, Seafood",99,2.7 +5483,Burger Singh,Laramie,"Desserts, Pizza, Fast Food, American, Seafood",49,3.3 +5484,Cafe Grub,Aguadilla,"Cafe, American, Desserts",26,3.2 +5485,Chicago Pizza,Minot,"Desserts, Mexican, BBQ, Cafe, American, Seafood",67,2.9 +5486,Cocoberry,Indianapolis,"Mexican, BBQ, Seafood",40,3.1 +5487,Dosa Plaza,Boston,"Tea, Cafe, Bakery, BBQ, Chinese",65,3.2 +5488,Karim's,Kansas City,"Cafe, Bakery, American, BBQ",49,3.3 +5489,Kebab Xpress,Salina,"Tea, Bakery, BBQ, Mediterranean, Seafood",89,3.2 +5490,Keventers,Victoria,"Desserts, French, BBQ, Fast Food, Seafood",68,3.3 +5491,KFC,Hattiesburg,"French, Bakery, BBQ, Mediterranean, Seafood",52,2.6 +5492,Paranthas 21,Manhattan,"Desserts, Tea, French, American, Seafood",55,3.3 +5493,Subway,Cedar Rapids,"Pizza, Desserts",81,2.6 +5494,Wow! Momo,Seattle,"Desserts, BBQ, Fast Food, Cafe, Mediterranean",28,3.2 +5495,Berco's,Bellingham,"Desserts, Mexican, BBQ, Fast Food, American",21,3.5 +5496,Dunkin' Donuts,Brainerd,"Chinese, Bakery, BBQ, Pizza",82,3.5 +5497,Giani's,Arcata,"Cafe, French, Bakery, BBQ, Fast Food, Chinese",97,3.5 +5498,The Beer Cafe,Milwaukee,"Tea, Bakery, Desserts, Italian",36,3.8 +5499,Basil Tree,Chattanooga,"Bakery, Indian, American, Desserts",20,2.4 +5500,Chaayos,Hartford,"Tea, Cafe, Bakery, Desserts",35,4.1 +5501,QD's Restaurant,Cedar City,"Tea, Chinese, Pizza",46,4.1 +5502,Ada e Handi Restaurant,Beaumont,"Desserts, Pizza, BBQ, Mediterranean, Seafood",23,2.6 +5503,Darjeeling Momos,Fresno,"Chinese, Pizza, Fast Food",80,2.9 +5504,Ingredients,Vernal,"Pizza, Seafood",32,3.3 +5505,Al Quresh,Paducah,"Fast Food, Tea, BBQ, Seafood",57,3.6 +5506,Angels in my Kitchen,Los Angeles,"Bakery, Pizza, Indian, Desserts",52,3.5 +5507,Aapki Rasoi,Greensboro,"French, Bakery, Desserts, Seafood",99,3.1 +5508,Bats On Delivery,Green Bay,"Mexican, Bakery, Seafood",51,3.1 +5509,Bimbo Cakes,Idaho Falls,"Fast Food, Bakery, Pizza, Italian",94,3.2 +5510,Burger Bros,Beaumont,"Bakery, American, BBQ",84,3.1 +5511,Chinese Food Corner,Daytona Beach,"Desserts, Pizza, Mexican, BBQ, Seafood",64,2.5 +5512,CL Snacks,Nome,"Desserts, French, Bakery, Fast Food, Cafe",59,3.1 +5513,Kapoor's Sanjha Chulha,Lubbock,"Tea, Cafe, Indian, American",21,3.0 +5514,King's,Pocatello,"Italian, French, Bakery, Fast Food, Seafood",13,3.2 +5515,Kumar Hotel,Toledo,"Bakery, BBQ, Seafood",14,3.4 +5516,Kumar Pastry Shop,Sioux Falls,"Cafe, Seafood",47,3.2 +5517,Midnight Adda,Charleston,"BBQ, Pizza, Desserts",47,3.0 +5518,Mughlaai Daawat,Syracuse,"Tea, Mexican, BBQ, Italian",96,2.9 +5519,Pindiwala,Dayton,"Pizza, Bakery",21,3.0 +5520,Pipes & Hipes,Petersburg,"Desserts, Tea, Pizza, Italian, Cafe, Indian",22,3.0 +5521,Sai Rasoi,Saipan,"Desserts, Seafood",37,3.1 +5522,Snaxpress Tastes & Cakes,Jacksonville,"Bakery, Fast Food, Cafe, American, Seafood",19,2.9 +5523,Veggie Adda,Stockton,"Desserts, American, BBQ, Fast Food",85,3.4 +5524,C L Corner,Fort Lauderdale,"Chinese, Bakery, BBQ, Fast Food",59,3.8 +5525,Chin 10,Greenville,"Tea, Cafe, Bakery, BBQ",49,3.5 +5526,Kati Roll Cottage,Dayton,"Pizza, Bakery, BBQ, Seafood",15,3.7 +5527,Kings Kulfi,Fort Wayne,"Tea, BBQ, Cafe, Indian, Mediterranean, Seafood",91,3.7 +5528,Paramjeet Machi Wala,Los Angeles,"Seafood, Mexican, Fast Food",36,3.6 +5529,Rajan Corner,Nantucket,"Pizza, Bakery, BBQ, Indian, Mediterranean, Seafood",59,3.6 +5530,Amit Dhaba,Texarkana,"Cafe, Mexican, Bakery, BBQ, Chinese",81,0.0 +5531,Apni Rasoi,Panama City,"Cafe, Pizza, Bakery, Fast Food",70,0.0 +5532,Chap Corner,Marquette,"Tea, French, Desserts",62,0.0 +5533,Chinese Corner,Austin,"Tea, Fast Food, BBQ, Seafood",69,0.0 +5534,Evergreen Punjabi Swad,Cody,"Desserts, French, BBQ, Cafe, Seafood",23,0.0 +5535,Giani,Tampa,"Pizza, French, Mexican, Bakery, Seafood",59,0.0 +5536,Hot & Hot Shudhir Chinese Point,Moab,"Desserts, Mexican, Bakery, Cafe, Seafood",58,0.0 +5537,Hungerz Hub,Jackson,"Desserts, Tea, Mexican, Bakery, Cafe",41,0.0 +5538,Magic Mo:Mo Corner,Champaign,"Chinese, BBQ, Cafe, Seafood",74,0.0 +5539,Malhotra's Zayeeka,Bishop,"Cafe, Mexican, American, Desserts",74,0.0 +5540,Moji Dhaba,Bellingham,"Tea, Cafe, Fast Food",63,0.0 +5541,Naughty 9 Kitchen & Bar,La Crosse,"Pizza, BBQ, Cafe, Indian, Seafood",79,0.0 +5542,Street Chaat Chatoron Ka Adda,Manhattan,"Pizza, French, Fast Food, Chinese, Seafood",86,0.0 +5543,Syall Kotian Da Dhaba,Boston,"Fast Food, Cafe, Mexican, Seafood",12,0.0 +5544,Taaj Kitchen,Boise,"Bakery, Pizza, BBQ, Italian",67,0.0 +5545,Tirath Sweets,Saginaw,"Desserts, Tea, French, BBQ, Fast Food",23,0.0 +5546,Tummyy Tull,Belleville,"Bakery, Pizza, Indian",46,0.0 +5547,34 Parkstreet Lane,International Falls,"Tea, Cafe, Mexican, Mediterranean",63,2.9 +5548,Bhikaram Bhujawala,Miami,"Desserts, Tea, Pizza, BBQ, American",73,3.0 +5549,Chawla The Pastry Palace,Beaumont,"Tea, Cafe, BBQ, Seafood",39,2.9 +5550,Food Box,Cheyenne,"Tea, Cafe, Fast Food",59,3.0 +5551,Foody Box,Dubuque,"Tea, French, Pizza, Italian",80,3.1 +5552,Giani,Spokane,"Tea, Pizza, Fast Food, Mediterranean, Seafood",57,3.1 +5553,Green Chick Chop,Bloomington,"Pizza, Bakery, Fast Food, Indian, Seafood",30,3.1 +5554,Heaven's Shawarma,Daytona Beach,"French, Bakery, BBQ, Fast Food, Seafood",35,3.0 +5555,Hyderabad Spl. Chicken Biryani Point,Daytona Beach,"Tea, Pizza, Seafood",26,3.0 +5556,Keshar,Lawton,"BBQ, Fast Food",67,3.0 +5557,Madras Cafe,Harrisburg,"Tea, Italian, Fast Food, Cafe, Seafood",23,2.7 +5558,Milan Chole Bhature,Scottsbluff,"Bakery, BBQ, Italian",33,3.1 +5559,New Laxmi Sweets,Salina,"Cafe, Bakery",81,2.8 +5560,Pasta Hub,Flagstaff,"French, Bakery, Seafood",38,3.1 +5561,Patna Roll Center,Fort Smith,"Tea, Mexican, Bakery, BBQ, Fast Food",36,3.1 +5562,Refuel,Rhinelander,"Bakery, Seafood",75,3.1 +5563,Saara Veg,Las Vegas,"Italian, Bakery, BBQ, Fast Food, American",51,3.0 +5564,SGF - Spice Grill Flame,Brainerd,"Desserts, Pizza, French, Mexican, Cafe",67,3.1 +5565,Shivam Corner,Lynchburg,"Cafe, Mexican, Desserts",36,3.0 +5566,Swad Mubarak,Minot,"Mexican, Bakery, BBQ, Seafood",83,3.0 +5567,The Little Fork,Adak Island,"Tea, Bakery, Seafood",68,3.1 +5568,The Metro Fast Food,Eugene,"Tea, Chinese, Bakery",35,2.6 +5569,Tibet Kujing,New Bern,"Tea, BBQ, Cafe, American, Seafood",87,2.9 +5570,Yummy Adda,Charlotte Amalie,"Chinese, Pizza, BBQ",16,3.5 +5571,Bawarchi's Canteen,International Falls,"Pizza, Mexican, BBQ, Cafe, Seafood",66,0.0 +5572,Bikaner Restaurant,Myrtle Beach,"BBQ, Fast Food",96,0.0 +5573,Bikaner Sweets Chaat cafe,Beaumont,"Cafe, Fast Food",69,0.0 +5574,Brijwasi,Aberdeen,"Tea, Pizza, BBQ, Mediterranean, Seafood",35,0.0 +5575,Chaap Chaska,Wilmington,"Cafe, BBQ, Desserts, Seafood",95,0.0 +5576,Delhi Chaap Express,Elmira,"Pizza, Fast Food, Cafe, American, Mediterranean",75,0.0 +5577,Delhi Chaat Bhandar,Sioux Falls,"Chinese, Pizza, Cafe, Fast Food",92,0.0 +5578,Delhite P恝tisserie,Panama City,"Tea, Pizza, French, Mexican, Cafe, Seafood",87,0.0 +5579,Desi Dhaba,North Platte,"Tea, Cafe, Pizza, Chinese, Seafood",66,0.0 +5580,Desi Thaat Amritsari Naan,Evansville,"Tea, Mexican, Fast Food",93,0.0 +5581,Dhaba Express,Paducah,"Cafe, Pizza, American",33,0.0 +5582,Flavours Kitchen,Sault Ste. Marie,"Tea, Chinese, Bakery",75,0.0 +5583,Food Campus,Santa Ana,"Seafood, Bakery, Mediterranean, Fast Food",20,0.0 +5584,Fresh Fast Food,Tampa,"Cafe, Seafood, Desserts, Fast Food",29,0.0 +5585,Gungun Tiffin Services,Bloomington,"Chinese, Tea, French, Fast Food, Cafe, Seafood",74,0.0 +5586,Happy Italiano,Gustavus,"Fast Food, Bakery, Mediterranean, Seafood",88,0.0 +5587,Haryana Bhojnalaya,Atlantic City,"Tea, Pizza, Italian, Bakery, Cafe",73,0.0 +5588,Hasty Tasty,Wrangell,"Desserts, Pizza, BBQ, Fast Food, American",51,0.0 +5589,Inam Muradabadi,Abilene,"Tea, Seafood, Mediterranean, Fast Food",35,0.0 +5590,Just In,Syracuse,"Desserts, Indian, BBQ, Italian",94,0.0 +5591,Jyoti Dhaba,Pensacola,"Tea, Bakery, Fast Food",11,0.0 +5592,Lasha Chinese Food,Cody,"Pizza, Desserts",80,0.0 +5593,Lasha Chinese Food,Pittsburgh,"Chinese, Bakery, Desserts",39,0.0 +5594,Lily Tasty Fast Food,Nome,"French, Pizza, Cafe, Fast Food",89,0.0 +5595,Maa Vaishno Dinesh Dhaba,North Bend,"Tea, French, BBQ",93,0.0 +5596,Madras Cafe,Dallas,"Bakery, Pizza, American, Fast Food",90,0.0 +5597,NIK's Chicken Corner,Aberdeen,"BBQ, Pizza, Desserts, Italian",100,0.0 +5598,Om Shanti Foods,Prescott,"Tea, Chinese, Bakery",11,0.0 +5599,Panj Tara,Escanaba,"Seafood, BBQ, Mediterranean, Fast Food",48,0.0 +5600,Pasta Pizza & Roll Hut,Decatur,"Desserts, Pizza, French, BBQ, Chinese",93,0.0 +5601,Pheva Tandooris,Brainerd,"Tea, Cafe, Pizza, Fast Food",55,0.0 +5602,Punjabi Delight,Williston,"Pizza, Indian, Mediterranean, BBQ",25,0.0 +5603,Punjabi Parantha Station and Punjabi Thali,Salina,"Tea, Seafood, Pizza, Fast Food",48,0.0 +5604,Punjabi Paratha Station,Los Angeles,"Cafe, Chinese, Pizza, Mediterranean",67,0.0 +5605,Raja Rasoi,Minneapolis,"Tea, French, Cafe, Desserts",85,0.0 +5606,Rollacious,Myrtle Beach,"Desserts, French, Bakery, Indian, Seafood",85,0.0 +5607,Singh Chicken,Iron Mountain,"Tea, Indian, Mediterranean, Desserts",60,0.0 +5608,Special Tea Point,Phoenix,"Tea, Pizza, Mexican, BBQ, Seafood",88,0.0 +5609,Spl. Flavour Sodas & Fruit shakes,Shreveport,"French, Bakery, Chinese, Seafood",98,0.0 +5610,Student Corner,Gainesville,"French, BBQ, Desserts",40,0.0 +5611,Taneja Corner,Eugene,"Bakery, BBQ, Fast Food, American, Seafood",71,0.0 +5612,Taste Zone,Columbus,"Seafood, Pizza, Bakery, Fast Food",32,0.0 +5613,Tea Point,Santa Maria,"Bakery, American, Desserts",42,0.0 +5614,West Bangal Kolkata Hot Kathi Rolls,Santa Barbara,"Tea, Bakery, Mediterranean, Desserts",50,0.0 +5615,Asli Alam Muradabadi Biryani Centre,Fort Smith,"Seafood, Indian, Fast Food",56,2.8 +5616,Cafe Rasoi,Grand Rapids,"Tea, French, BBQ",42,3.2 +5617,Chinese Food,Gustavus,"Desserts, French, Fast Food, Cafe, Seafood",95,2.9 +5618,Green Chick Chop,Long Beach,"Bakery, Desserts",77,2.9 +5619,Hasty Tasty,Belleville,"Tea, Cafe, Pizza, Mediterranean",56,3.3 +5620,Hunter's Kitchen,White Plains,"Desserts, BBQ, Bakery, Indian, Seafood",15,3.0 +5621,Manahang Restaurant,Trenton,"Tea, Bakery, American, Mediterranean",74,3.2 +5622,Mezbaan Restaurant,Mosinee,"Chinese, Seafood, Mediterranean, Fast Food",50,3.4 +5623,Moon Light Sweets,Belleville,"Pizza, BBQ",70,3.3 +5624,North East Castle,San Jose,"Desserts, Tea, BBQ, Fast Food, Mediterranean",57,2.9 +5625,Pizza Point,Adak Island,"Cafe, Pizza, Desserts, Italian",58,2.9 +5626,Roll Point,West Yellowstone,"Tea, Bakery, Mediterranean, Seafood",14,2.8 +5627,Sanjha Tandoor,Charlotte Amalie,"Tea, Cafe, Bakery, Seafood",33,2.8 +5628,Sayyam,Sault Ste. Marie,"Tea, Cafe, Desserts, Fast Food",86,2.7 +5629,Shiv Bhojnalaya,Aguadilla,"French, Bakery, Cafe, Seafood",18,2.8 +5630,Subway,Appleton,"Desserts, Bakery, Chinese, Indian, Seafood",62,3.4 +5631,Take Away,Honolulu,"Seafood, Bakery, Mediterranean, Fast Food",21,2.9 +5632,Vedanta's,Grand Junction,"Tea, French, Bakery, Cafe, Seafood",21,2.7 +5633,Asian Chopstick,Philadelphia,"BBQ, Bakery, Desserts, Fast Food",10,3.5 +5634,Chinese Delights,Tampa,"Cafe, Mexican, Pizza, BBQ",33,3.5 +5635,Dezertfox,Madison,"Tea, BBQ, Desserts",19,3.7 +5636,Aggarwal Sweets,Lansing,"Desserts, American, Bakery, Fast Food, Indian, Seafood",97,0.0 +5637,Aggarwal Sweets,Charlotte,"Bakery, BBQ, Desserts, Fast Food",76,0.0 +5638,Al Meraj Chicken Shop,Alpena,"French, BBQ, Fast Food, Indian, Seafood",77,0.0 +5639,Chinese Food Corner,Santa Maria,"Tea, Pizza, Bakery, Cafe, American",21,0.0 +5640,Creative Food House,Longview,"Tea, French, BBQ, Seafood",24,0.0 +5641,D.A.A.,Tampa,"Desserts, Pizza, Fast Food, Cafe, Mediterranean",22,0.0 +5642,Dee Cake Shop,Pittsburgh,"Pizza, Italian, Mexican, Fast Food, Cafe",70,0.0 +5643,Jaca Restaurant,Florence,"Tea, Indian, Seafood",28,0.0 +5644,King Of Roll,Kansas City,"Fast Food, French, Pizza, Italian",79,0.0 +5645,Kirti Food Plaza,Memphis,"Chinese, Bakery, Pizza, Fast Food",16,0.0 +5646,KT's Shik-Shack,Niagara Falls,"BBQ, Fast Food",25,0.0 +5647,Namaste Restaurant,Little Rock,"Fast Food, French, BBQ, Seafood",90,0.0 +5648,Nishaj Chicken Corner,Huntsville,"Pizza, French, BBQ, Fast Food, Seafood",49,0.0 +5649,Royal Bakery,Hilton Head,"Tea, Pizza, BBQ, Indian, Seafood",18,0.0 +5650,S.R. Bakers,Provo,"Seafood, BBQ, Fast Food",75,0.0 +5651,Shahi Muradabadi,Chicago,"Cafe, Pizza, Bakery, Seafood",67,0.0 +5652,Shree Vinayaga Restaurant,Pensacola,"Desserts, Tea, Pizza, French, Cafe",55,0.0 +5653,The Cake Basket,Santa Maria,"Tea, BBQ",98,0.0 +5654,The Pure Kitchen,Richmond,"Desserts, Italian, BBQ, Chinese, Seafood",91,0.0 +5655,The Yolmo Kitchen,Charleston,"Pizza, Desserts",44,0.0 +5656,Zawlbuk,Eau Claire,"Mexican, Bakery, BBQ, Cafe, Seafood",58,0.0 +5657,Anupam Restaurant,Brainerd,"Tea, Cafe",96,2.3 +5658,Bobby Di Punjabi Rasoi,Branson,"French, Bakery, Cafe, Desserts",41,2.9 +5659,Aditya Da Vaishno Dhaba,Charlotte,"Cafe, Pizza, Indian, Seafood",70,0.0 +5660,Aggarwal Bikaner Sweets,New Orleans,"Desserts, Bakery, Chinese, Mediterranean, Seafood",20,0.0 +5661,Aggarwal Sweet Centre,Rockford,"Desserts, Tea, Italian, Bakery, Cafe",81,0.0 +5662,Anjel China & Tibetian Food,Charlottesville,"Tea, Chinese, Bakery, BBQ",48,0.0 +5663,Annpurna Rasoi,Iron Mountain,"Tea, BBQ, Cafe, Mediterranean, Seafood",20,0.0 +5664,Apni Rasoi,Petersburg,"Bakery, Mediterranean, BBQ",94,0.0 +5665,Bajrang Misthan Bhawan,Waterloo,"Bakery, BBQ, Cafe, American, Seafood",45,0.0 +5666,Bake Town,Fayetteville,"Tea, Mexican, American, Pizza",83,0.0 +5667,Bikaner Sweets & Restaurant,San Antonio,"Fast Food, Seafood, Mexican, Italian",31,0.0 +5668,Brown Town Bakers,Fayetteville,"Cafe, Italian, Bakery, Chinese, Seafood",77,0.0 +5669,Captain Food Factory,Bloomington,"Cafe, Bakery, Desserts",76,0.0 +5670,Cheffron Bakery,Minneapolis,"Desserts, Bakery, BBQ, Mediterranean, Seafood",31,0.0 +5671,Chicken Darwar,Midland,"Italian, Bakery, BBQ, Fast Food, Seafood",43,0.0 +5672,Chili's Treat,Greensboro,"Fast Food, Seafood",51,0.0 +5673,Chilli Tadka,Daytona Beach,"Tea, BBQ, Mediterranean, Seafood",91,0.0 +5674,Chinese Food Point,Concord,"Bakery, Indian, Seafood, Fast Food",81,0.0 +5675,Chinese Temptation,Corpus Christi,"French, Bakery, American, Cafe",44,0.0 +5676,Dana Pani,Houston,"Bakery, Indian, Seafood",91,0.0 +5677,Dev Sweets & Restaurant,Santa Fe,"Tea, Chinese, Pizza",16,0.0 +5678,Dilli Darbar Chicken Point,Newark,"Desserts, Pizza, French, BBQ, Cafe",87,0.0 +5679,Food Point and Sweets Corner,Trenton,"Pizza, Mexican, Bakery, Cafe, American, Seafood",70,0.0 +5680,Green Chick Chop,Ontario,"BBQ, Desserts, Fast Food",92,0.0 +5681,Grover Burfee & Cakes,Hancock,"Tea, Fast Food, Cafe, Seafood",45,0.0 +5682,Hans's Planet-F,Paducah,"Cafe, Pizza, Desserts, Seafood",23,0.0 +5683,Hotel Delhi 43,Indianapolis,"Pizza, Mexican, BBQ, Fast Food, Seafood",84,0.0 +5684,Kanhaiya Fast Food,West Yellowstone,"French, Pizza, Cafe, Desserts",95,0.0 +5685,Karol Bagh Ke Chhole Bhature,Scranton,"Tea, Pizza, Bakery, Chinese, Mediterranean",98,0.0 +5686,King's Food,Bishop,"Pizza, Bakery, Desserts, Seafood",42,0.0 +5687,Lamba Sweets Corner,Saipan,"American, Desserts, Fast Food",98,0.0 +5688,Laxmi Food Corner,Dodge City,"Cafe, Bakery, BBQ, Seafood",12,0.0 +5689,Lounge Bakery,Orlando,"Tea, Italian, BBQ, Fast Food, Cafe",31,0.0 +5690,Mehtaab Sweet Corner & Restaurant,Grand Rapids,"Tea, Italian, Mexican, BBQ, Cafe",29,0.0 +5691,Melting Food Point,Monterey,"Tea, Pizza, Mexican, Indian, Seafood",100,0.0 +5692,Mithla Dhabha,Charlotte,"Tea, BBQ, Fast Food",71,0.0 +5693,Mittal Caterer,Palm Springs,"Seafood, American, Fast Food",18,0.0 +5694,Mittal Restaurant & Fast Food,Lewisburg,"French, Bakery, Cafe, BBQ",63,0.0 +5695,NBC Nirankari Bakers,Hilo,"BBQ, Pizza, Bakery, Desserts",100,0.0 +5696,Pind Balluchi,Waterloo,"Pizza, Mediterranean, BBQ, Fast Food",93,0.0 +5697,Prem Chinese Fast Food,Pensacola,"Tea, Bakery, Mediterranean, Desserts",89,0.0 +5698,Punjabi Rasoi,Ogdensburg,"Cafe, Mexican, Pizza, Desserts",84,0.0 +5699,Punjabi Special,Islip,"Bakery, Mediterranean, Desserts, Seafood",88,0.0 +5700,Radhe Shyam Dhaba,Sitka,"Pizza, Indian, Seafood",78,0.0 +5701,Raj Rasoi,Nome,"Bakery, Desserts",16,0.0 +5702,Raju De Special Paneer Wale,Milwaukee,"Tea, Cafe, Fast Food",26,0.0 +5703,Sangeeta Dhaba,Newark,"Tea, Cafe, Bakery, American",47,0.0 +5704,Sat Narayan Fast Food,Binghamton,"Cafe, Pizza, BBQ, Chinese, Indian, Seafood",16,0.0 +5705,Shahi Chicken Point,Kalispell,"Tea, Cafe, Mediterranean, Seafood",32,0.0 +5706,Sharma Sweets,Great Falls,"Chinese, Pizza, Seafood",45,0.0 +5707,Shere Hind Chicken Corner,Honolulu,"Desserts, Pizza, French, BBQ, Seafood",38,0.0 +5708,Shiv Shakti Dhaba,Houston,"Tea, Pizza, American",54,0.0 +5709,Shree Shyam Sweets,Prescott,"French, Bakery, BBQ, Fast Food, Seafood",37,0.0 +5710,Shri Shyam Ji Shudh Shakahari Bhojnalaya,Valparaiso,"Desserts, Italian, BBQ, Cafe, Indian, Seafood",52,0.0 +5711,Sky Hawk,Rochester,"Pizza, French, Bakery, Fast Food, Cafe, Mediterranean",36,0.0 +5712,Snack Shack,Rhinelander,"Cafe, Pizza, BBQ",62,0.0 +5713,Soya Bite's,Gunnison,"Desserts, Fast Food, Cafe, Mediterranean, Seafood",61,0.0 +5714,Soya Bite's,Lewiston,"Tea, BBQ, Cafe, Indian, Seafood",13,0.0 +5715,Taj Mahal Dhaba,Hartford,"Desserts, Bakery, Fast Food, American, Seafood",59,0.0 +5716,Yadav Sweets,Mosinee,"Seafood, Pizza, Bakery, Fast Food",52,0.0 +5717,Yummy Chinese Food,Wichita,"Tea, BBQ, Mediterranean",25,0.0 +5718,Aggarwal Sweets Corner,Charleston,"Desserts, Tea, Pizza, Indian, Seafood",21,0.0 +5719,Anand Sweets,Scottsbluff,"Desserts, Pizza, French, BBQ, Fast Food, Indian",67,0.0 +5720,Annapurna Sweets Palace,Hilton Head,"Tea, Mediterranean, Seafood",83,0.0 +5721,Aujla's Punjabi Zaika,Lake Charles,"Tea, Chinese, Seafood",90,0.0 +5722,Baba Ji,Bellingham,"Tea, Italian, BBQ, Fast Food, American",35,0.0 +5723,Babu Soup Wala,Sun Valley,"Bakery, BBQ, Fast Food, Indian, Seafood",39,0.0 +5724,Baketown By Gagan Bakers,Sault Ste. Marie,"Desserts, Tea, Bakery, American, Mediterranean",53,0.0 +5725,Bala Ji Rasoi,Wichita Falls,"Cafe, Bakery, BBQ, Mediterranean",11,0.0 +5726,Bansiwala Sweets & Caterers,Kodiak,"Tea, Bakery, Desserts",40,0.0 +5727,Best Chicken Corner,Hartford,"French, Bakery, BBQ, Cafe, Seafood",41,0.0 +5728,Bhardwaj Bakery,Syracuse,"Tea, Cafe, Bakery, BBQ",21,0.0 +5729,Bikaner Sweets & Restaurant,Roswell,"Tea, Pizza, Mexican, Bakery, Fast Food",58,0.0 +5730,Classic Chef Corner,Mosinee,"French, Pizza, Chinese, Desserts",61,0.0 +5731,Dabas Ke Special Chole Bhature,San Diego,"BBQ, Pizza, Bakery, Desserts",35,0.0 +5732,Daily Belly,Cincinnati,"Tea, Seafood",18,0.0 +5733,Deep Bakery And Cake,Santa Ana,"Desserts, Pizza, Italian, BBQ, American",20,0.0 +5734,Dhaba NH10,Rochester,"Tea, Seafood",36,0.0 +5735,Dilkhush Dhaba,Branson,"Tea, Cafe, Mexican, Pizza",78,0.0 +5736,Do Bhai Paneer Wale And Sweets,Marquette,"Desserts, Pizza, Bakery, BBQ, Mediterranean",97,0.0 +5737,Dosa and Pizza Corner,Harrisburg,"Tea, Italian, Cafe, Indian, Seafood",24,0.0 +5738,Gulati Ki Rasoi,Las Vegas,"Tea, Bakery, Fast Food, Indian, Mediterranean",21,0.0 +5739,JMD Family Restaurant,Jacksonville,"Pizza, Mexican, BBQ, Fast Food, Cafe",78,0.0 +5740,Jyoti Sweets,Christiansted,"Tea, BBQ, Desserts",90,0.0 +5741,Khana Khazana,Orlando,"Chinese, Desserts, French, Cafe, Seafood",36,0.0 +5742,Krishna Panjabi Rasoi,Punta Gorda,"Chinese, Bakery, Cafe, Desserts",19,0.0 +5743,Lazeez Zaika,Harrisburg,"Tea, Pizza, BBQ, Fast Food, Chinese, Indian",84,0.0 +5744,Mannat Chinese Fast Food,Fairbanks,"Tea, Seafood, Pizza, Fast Food",70,0.0 +5745,Pizza Hot,Fort Lauderdale,"Mexican, Pizza, Desserts, Seafood",73,0.0 +5746,Raju Fast Food,Aguadilla,"Seafood, Fast Food",45,0.0 +5747,Ramesh Caterers & Dhaba,Ontario,"French, Bakery, BBQ, Fast Food, Cafe, Indian",55,0.0 +5748,Sethi's Express,Owensboro,"Tea, Pizza, Desserts, Seafood",32,0.0 +5749,Shahi Chicken Biryani Corner,Cincinnati,"BBQ, Fast Food",34,0.0 +5750,Spicy Curry,Medford,"French, Desserts, Seafood",42,0.0 +5751,Super Star Restaurant,Pocatello,"Pizza, Italian, Bakery, BBQ, Fast Food",35,0.0 +5752,Swagi Food Corner,Trenton,"Chinese, Desserts, Seafood",90,0.0 +5753,Taoji Ke Amratsari Naan,Muskegon,"Cafe, BBQ, Mediterranean, Italian",97,0.0 +5754,TCW Chaat Point,Pellston,"Pizza, French, Bakery, Fast Food, Chinese",78,0.0 +5755,The Food Express,Alpena,"Desserts, Pizza, Bakery, Fast Food, Mediterranean",86,0.0 +5756,The Pizza Family,Bakersfield,"BBQ, Seafood",68,0.0 +5757,The Regal Chicken Corner,Johnstown,"Pizza, BBQ, Fast Food, Indian, Seafood",57,0.0 +5758,Welcome Rasoi,Nantucket,"Tea, Pizza, American, Desserts",42,0.0 +5759,Agarwal Sweets,Atlantic City,"Bakery, Mediterranean, Desserts, Fast Food",21,3.0 +5760,Aurangzeb Rd,Hancock,"Tea, Bakery, Fast Food, Cafe, Indian",39,3.4 +5761,Bengali Sweet Corner,Memphis,"Desserts, Tea, Pizza, Mexican, BBQ",45,3.0 +5762,Cafe Coffee Day,Salt Lake City,"Tea, Pizza, Mexican, Cafe, Indian, Seafood",75,2.6 +5763,Chinese K. Food,Duluth,"Pizza, Bakery, Cafe, Mediterranean, Seafood",29,2.9 +5764,Chocowell,Minot,"Bakery, BBQ, Desserts, Fast Food",54,3.2 +5765,Choice,Moline,"Tea, Pizza, Mediterranean",75,3.0 +5766,Desi Street,Alexandria,"Tea, American, Desserts, Fast Food",46,3.1 +5767,Enigma Lounge,Phoenix,"Desserts, Tea, Pizza, Italian, Mexican, Bakery",50,2.8 +5768,Flavors Of London,Wichita,"Desserts, Italian, Bakery, BBQ, Cafe",57,3.0 +5769,Frontier,San Juan,"Desserts, Pizza, Bakery, Cafe, American",16,3.0 +5770,Green Chick Chop,Panama City,"Pizza, Desserts",43,3.2 +5771,Hot House Grill,Hattiesburg,"Tea, Cafe, Pizza, Fast Food",48,3.2 +5772,Kanshi Ram Chole Kulche Wala,Lynchburg,"Tea, Cafe, BBQ, Italian",74,3.4 +5773,Kents Fast Food,Traverse City,"Tea, Cafe, BBQ, Seafood",32,2.8 +5774,Paharia Meat & Chicken Shop,Cody,"Tea, French, Pizza, Fast Food",31,2.8 +5775,Palji Corner,Fresno,"Tea, Bakery, Pizza, BBQ",17,3.3 +5776,Paratha Hi Paratha,Muskegon,"Seafood, Bakery, Italian",69,3.1 +5777,Picasso Roof Top,Charlottesville,"Tea, Pizza, Italian, Mexican, BBQ, Seafood",63,3.1 +5778,RK Dosa,Fort Dodge,"Desserts, Tea, French, Bakery, BBQ",100,2.8 +5779,Sandoz,Harlingen,"Seafood, Bakery, Cafe, Italian",31,2.6 +5780,Sardar Ji,Decatur,"Bakery, Desserts, Fast Food",64,3.0 +5781,Satkar Fast Food,Fort Dodge,"Desserts, Tea, French, Indian, Seafood",43,2.8 +5782,Sweetheart Cupcakes,Bangor,"Bakery, Desserts, Pizza, BBQ",37,3.1 +5783,The Earthen Grill,Lake Charles,"French, Bakery, Cafe",33,3.2 +5784,Twenty Four Seven,Bakersfield,"Chinese, Bakery, Seafood, Italian",63,2.8 +5785,A Patisseries Gallery,Lexington,"Tea, Chinese, Indian, Seafood",51,0.0 +5786,Aggarwal Bikaneri Sweets,Newark,"Desserts, Tea, French, Fast Food, Mediterranean",76,0.0 +5787,Aggarwal Sweets & Bakers,Albany,"Tea, Cafe, Pizza, Seafood",62,0.0 +5788,Avatar Da Dhaba,Owensboro,"Desserts, American, Mediterranean, BBQ",67,0.0 +5789,Bengali Restaurant,Huntsville,"Italian, Mexican, BBQ, Fast Food, Seafood",62,0.0 +5790,Biryani Express,Niagara Falls,"Tea, Pizza, Seafood",28,0.0 +5791,Brahm Point Fast Food,West Palm Beach,"Tea, Cafe, Bakery, BBQ, Chinese, Indian",40,0.0 +5792,Chinese Hot,Wenatchee,"Cafe, Indian, BBQ",24,0.0 +5793,Curry Man,Sault Ste. Marie,"Seafood, Pizza, Mediterranean, Italian",63,0.0 +5794,Diya Chinese Food,Salt Lake City,"Pizza, Fast Food",74,0.0 +5795,Foodies,Norfolk,"Fast Food, Tea, BBQ, Seafood",75,0.0 +5796,Fresh Meat CO,Pensacola,"French, Seafood, Desserts, Italian",82,0.0 +5797,Hans Fast Food Center,Grand Island,"Cafe, Bakery",45,0.0 +5798,Happy Hours,Johnstown,"Bakery, Pizza",23,0.0 +5799,Khalsa Eating Point,Hagerstown,"Pizza, Bakery, Fast Food",94,0.0 +5800,Krishna Yummy Foods,Pittsburgh,"Cafe, Desserts, Fast Food",52,0.0 +5801,Laxmi Dhaba,Worcester,"Cafe, Mexican, Indian, Seafood",16,0.0 +5802,Milan Shudh Vaishno,Myrtle Beach,"Tea, Bakery, Seafood",97,0.0 +5803,Milko Sweets Corner,Sioux City,"Cafe, BBQ, Desserts, Seafood",64,0.0 +5804,New Punjabi Chaap Corner,Moline,"Tea, Bakery",70,0.0 +5805,Nik's Chawla Chik Inn,Pasco,"Desserts, Mexican, Bakery, Indian, Seafood",78,0.0 +5806,Paras Corner,Great Falls,"French, Pizza, Seafood, Italian",32,0.0 +5807,Punjabi Tadka,Santa Barbara,"Tea, Cafe, Pizza, Italian",62,0.0 +5808,Sardar A Pure Meat Shop,Sarasota,"Tea, BBQ, Desserts, Seafood",63,0.0 +5809,Shahi Hyderbadi Biryani,Nantucket,"Chinese, Pizza, Bakery, Cafe",100,0.0 +5810,Shashi's China Wok,Alpena,"Tea, Bakery, BBQ, Desserts",29,0.0 +5811,Urban Palate,Chicago,"Tea, Pizza, Bakery, Seafood",21,0.0 +5812,Wrapss,Cedar City,"Chinese, Bakery, Pizza, BBQ",67,0.0 +5813,China Kitchen,Santa Ana,"Desserts, Tea, Mexican, Bakery, Fast Food",50,0.0 +5814,Chowringhee,Hattiesburg,"Fast Food, Cafe, Seafood",88,0.0 +5815,D-Food,Grand Forks,"Cafe, Bakery, Mediterranean",25,0.0 +5816,Kith N Kin Cafeteria,Grand Island,"Tea, French, Pizza",34,0.0 +5817,Lazeez Rasoi,Hilton Head,"Fast Food, Mexican, Seafood",95,0.0 +5818,Red Rose Restaurant,Santa Ana,"Tea, Mexican, Desserts, Fast Food",13,0.0 +5819,Shri Bikaner Sweets & Restaurant,Iron Mountain,"Cafe, Chinese, Tea, Mediterranean",81,0.0 +5820,Welcome Family Restaurant,Elmira,"Mexican, BBQ, Desserts, Fast Food",10,0.0 +5821,Al Bake,Hibbing,"Tea, Mexican, Mediterranean, Fast Food",86,2.7 +5822,Americana Kitchen and Bar,Gainesville,"Tea, Bakery, Cafe, American, Mediterranean",75,2.8 +5823,Bawa Snacks Corner,Lawton,"Seafood, BBQ, Fast Food",51,2.8 +5824,Bhimsain's Bengali Sweet House,Ogdensburg,"Desserts, Tea, Italian, Bakery, Fast Food",35,2.9 +5825,Cafe Coffee Day,Harlingen,"BBQ, Desserts, Seafood",45,3.1 +5826,Cafe Coffee Day,Seattle,"Pizza, Bakery, BBQ, Chinese, Seafood",79,3.0 +5827,Dolce Gelato,Provo,"Pizza, American, Seafood",43,3.2 +5828,Domino's Pizza,Fayetteville,"Desserts, Pizza, BBQ, Fast Food, Mediterranean",54,3.0 +5829,Gopala,Deadhorse,"Chinese, Pizza, BBQ",40,3.0 +5830,New Punjabi Khana,Grand Junction,"Chinese, French, Cafe, Seafood",10,3.1 +5831,New Vishal Corner,Ponce,"Cafe, Desserts",28,3.1 +5832,Punjabi Khana,Devils Lake,"Desserts, French, Mexican, Bakery, Fast Food, Seafood",50,3.2 +5833,Rajshree,Baltimore,"Italian, Bakery, BBQ, Cafe, Mediterranean, Seafood",13,3.1 +5834,Snack Junction,Yuma,"Cafe, Bakery, BBQ, Fast Food",21,3.0 +5835,Sona,College Station,"Tea, BBQ, Fast Food, Chinese, Seafood",94,3.4 +5836,Southy,Omaha,"Tea, Fast Food, Cafe, Indian, Seafood",59,2.5 +5837,The First Floor,Lewisburg,"Bakery, Pizza, American, Fast Food",49,3.1 +5838,Hype,Niagara Falls,"Bakery, Pizza, Desserts, Seafood",88,3.7 +5839,McDonald's,Bristol,"Chinese, French, BBQ, Cafe",33,3.7 +5840,New Punjabi Khana,Iron Mountain,"Desserts, Tea, Pizza, Bakery, Chinese",34,3.9 +5841,Pizza Hut Delivery,Little Rock,"Desserts, Indian, Fast Food, Cafe, American",89,3.6 +5842,Shree Rathnam,Juneau,"Fast Food, Tea, Pizza, Seafood",16,3.6 +5843,Subway,Watertown,"Chinese, Pizza, Seafood",43,3.6 +5844,Al Mughal,Cleveland,"Desserts, Tea, French, BBQ, Seafood",99,0.0 +5845,Anupama Restaurant,Everett,"Chinese, Bakery, Cafe, Seafood",46,0.0 +5846,Cafe Einstein,Decatur,"Tea, Cafe, Bakery, BBQ",82,0.0 +5847,Delicious Eating Corner,Lihue,"Tea, Pizza, Mexican, Cafe, Indian",100,0.0 +5848,Gupta Rasoi,Palm Springs,"Tea, Cafe, Pizza, Fast Food, Chinese",36,0.0 +5849,Paras Chicken Point,Kotzebue,"Pizza, Italian, Bakery, Fast Food, American",40,0.0 +5850,Ralhan Eating Corner,Kahului,"Tea, Cafe, Pizza, Mediterranean",45,0.0 +5851,Pind Balluchi,Branson,"Desserts, Tea, Pizza, French, Cafe",88,2.4 +5852,Oh! Calcutta,Nashville,"Tea, Mexican, BBQ, Cafe, Indian",83,4.4 +5853,Alcoholic Lounge & Bar,Wrangell,"Pizza, Mexican, BBQ, Indian, Seafood",74,2.8 +5854,Baljeet's Amritsari Koolcha,Colorado Springs,"Cafe, Desserts",65,3.1 +5855,Bikanervala,Madison,"Chinese, Pizza, Bakery, Seafood",76,3.4 +5856,Cafe Coffee Day,Moline,"Pizza, Desserts, Fast Food",88,3.3 +5857,Chicago Pizza,Manhattan,"Tea, Cafe, American, Desserts",72,3.4 +5858,Cocoberry,Deadhorse,"Tea, French, BBQ",44,3.3 +5859,Dilli Chaap Wale,Watertown,"Bakery, Pizza, BBQ, Seafood",39,3.4 +5860,Dips,Orlando,"Tea, Pizza, BBQ, Fast Food",56,2.8 +5861,Domino's Pizza,Baltimore,"Tea, Indian, BBQ",42,3.4 +5862,Gullu's,Rhinelander,"Pizza, Desserts",22,2.9 +5863,Hashtag Foods,Salisbury,"Tea, Cafe, Pizza, Italian, Chinese, Seafood",25,3.4 +5864,Mini Meals,Hyannis,"Cafe, Bakery, BBQ, Desserts",78,2.7 +5865,No Name - Taste Hi Kaafi Hai,Watertown,"Tea, Bakery, BBQ, Fast Food, Chinese, Mediterranean",75,3.2 +5866,Pind Balluchi,Charleston,"Cafe, Mexican, Bakery, Pizza",67,2.7 +5867,Pizza Hut,Rapid City,"Pizza, Bakery",29,3.3 +5868,Raj Bhature wala,Grand Rapids,"Tea, Pizza, Mexican, Bakery, BBQ",31,3.4 +5869,Rolls Tiger,Latrobe,"Tea, Cafe, Mediterranean, Italian",90,3.4 +5870,SGF - Spice Grill Flame,Lake Charles,"French, Bakery, Cafe",16,3.4 +5871,Smoksha Cafe and Lounge,Oklahoma City,"Desserts, Pizza, French, Cafe, Indian",53,3.4 +5872,Subway,Lynchburg,"Tea, French, Bakery, BBQ, Cafe, American",73,3.4 +5873,Sura Vie,New Bern,"Desserts, Tea, Italian, Bakery, Cafe",28,3.4 +5874,Billu's Hut,Dayton,"Bakery, BBQ, Fast Food, Mediterranean, Seafood",77,3.9 +5875,BTW,Birmingham,"Cafe, Pizza, American, BBQ",33,3.7 +5876,Burger King,Salina,"Desserts, Tea, Italian, Fast Food, Seafood",65,3.6 +5877,Cafe Coffee Day,Oklahoma City,"Desserts, Tea, Pizza, Bakery, American, Mediterranean",47,3.5 +5878,Chills 'n' Grills,Escanaba,"Mexican, BBQ, Desserts",48,3.6 +5879,Fusion N Food,Sacramento,"Tea, Cafe, BBQ, Chinese, Indian, Seafood",22,3.8 +5880,Giani,St. Louis,"Desserts, Tea, Pizza, Bakery, American",35,3.6 +5881,Hot Spot,Bishop,"BBQ, Desserts",59,3.8 +5882,La Americana,Florence,"Tea, Pizza, Indian, Mediterranean, Seafood",32,3.6 +5883,Mogambo Khush Hua,Newark,"Cafe, Bakery, Mediterranean, Desserts",39,3.8 +5884,Niti Shake & Ice Cream Hub,Valparaiso,"Bakery, Indian, Desserts, Italian",72,3.8 +5885,Pacific Asia,Del Rio,"Cafe, Mexican, Pizza, Mediterranean",65,3.7 +5886,Papa Veg Chinese Food,Ontario,"American, BBQ, Fast Food",79,3.8 +5887,Pasta Hut,Williston,"French, Bakery, BBQ",14,3.5 +5888,Ram G Snacks & Food Corner,Devils Lake,"Tea, Cafe, Fast Food, Italian",46,3.5 +5889,Sandwich King,Baton Rouge,"Tea, Pizza, Mediterranean, Fast Food",26,3.8 +5890,Shake Eat Up,Decatur,"Pizza, Mexican, BBQ, Fast Food, Chinese, Seafood",22,3.9 +5891,Starbucks,New Bern,"Bakery, Fast Food, Cafe, Mediterranean, Seafood",38,3.7 +5892,The Chai Story,Midland,"Tea, Cafe, Pizza, Desserts",33,3.6 +5893,Themis Barbecue House,Green Bay,"Tea, Pizza, Fast Food, Cafe, Mediterranean",33,3.8 +5894,Utsav,Plattsburgh,"Tea, Pizza",80,3.5 +5895,Barbeque Nation,Bemidji,"Tea, Desserts",45,4.1 +5896,Bistro 57,Newburgh,"Fast Food, Indian, BBQ, Seafood",57,4.0 +5897,Calendar Khana Laao,Santa Maria,"Desserts, Tea, Fast Food, Cafe, Indian",91,4.2 +5898,Chaayos,Newburgh,"Tea, Pizza, Italian, BBQ, Fast Food, Indian",65,4.1 +5899,Eleven Course,Brainerd,"Pizza, Fast Food",15,4.0 +5900,Sinciti,Hagerstown,"Desserts, American, BBQ, Seafood",64,4.0 +5901,Admission Lounge,Myrtle Beach,"BBQ, Desserts, Italian",32,2.7 +5902,Al Zaika,Jackson,"Tea, Cafe, Pizza, Italian",83,2.9 +5903,Angels in my Kitchen,Santa Rosa,"Tea, Bakery, BBQ, Italian",21,3.2 +5904,Asian Curry,Appleton,"Tea, Fast Food, Bakery, Seafood",62,3.0 +5905,Chaska,Harrisburg,"Desserts, Tea, French, BBQ, Indian, Seafood",24,3.3 +5906,Chik Chow,Kahului,"Cafe, Mexican, American, BBQ",60,3.3 +5907,Deep Sweet Corner,Eau Claire,"Cafe, Seafood",68,2.7 +5908,Deepika Khaitan's Cakes,Atlanta,"Tea, Mexican, Bakery, Fast Food",41,2.9 +5909,Dhaba On Wheels,Savannah,"Tea, Bakery, Pizza, American",18,2.7 +5910,Domino's Pizza,Chattanooga,"Bakery, Pizza, American, BBQ",77,2.8 +5911,Evergreen Sweets,Boise,"Desserts, Tea, Pizza, Fast Food, Chinese, Indian",16,2.8 +5912,Gopala,Lewiston,"Desserts, Pizza, Indian, Fast Food, American, Seafood",40,3.0 +5913,Green Chick Chop,Jacksonville,"Fast Food, Bakery, BBQ, Seafood",65,3.0 +5914,Halal Pizza Fun,Santa Maria,"Cafe, Mediterranean, Fast Food",14,3.1 +5915,Keventers,Erie,"Tea, Italian, Mexican, Bakery, BBQ",33,3.3 +5916,Khan Chicken Biryani,San Jose,"Desserts, Tea, French, Bakery, BBQ",49,2.9 +5917,McDonald's,Vernal,"French, Bakery, Desserts",26,3.4 +5918,Midnight Bites,San Diego,"Bakery, Indian, Cafe",63,3.1 +5919,Moti Mahal Delux,Muskegon,"Cafe, Bakery, BBQ",16,2.9 +5920,MT Everest Food Corner,Melbourne,"Tea, Cafe, Pizza, Seafood",78,2.9 +5921,Muradabad Ki Mashoor Sama Chicken Biryani,Milwaukee,"Chinese, BBQ, Cafe",42,2.9 +5922,New Laziz,Wenatchee,"BBQ, Desserts, Italian",100,2.9 +5923,Talab South Indian Restaurant,Devils Lake,"Tea, Chinese, Bakery, Cafe",77,2.7 +5924,Tipu Sultan Chicken Point,Richmond,"Tea, Chinese, Seafood, Italian",63,3.2 +5925,Yo Wok,Pellston,"Bakery, Mexican, Pizza",27,2.8 +5926,Zoet Desserts,Bishop,"Cafe, BBQ, Fast Food",92,3.0 +5927,Zooby's Kitchen,Beaumont,"Tea, French, Desserts, Seafood",98,2.8 +5928,Hotel Malabar,Portsmouth,"Seafood, Fast Food",76,3.6 +5929,Hwealthcafe,Savannah,"Tea, Bakery, Cafe, American, Seafood",25,3.5 +5930,Noorjahan,Laredo,"Tea, Bakery, Fast Food, Cafe, Indian",86,3.8 +5931,Pizza Hut Delivery,Chattanooga,"Tea, Cafe, American, Indian",25,3.9 +5932,Sushiya Express,Bend,"Italian, Bakery, BBQ, Fast Food, Indian, Seafood",89,3.5 +5933,Tuptakes,Hagerstown,"Cafe, Pizza, Desserts, Seafood",67,3.6 +5934,Annapurna Food Point,Richmond,"Desserts, Italian, Mexican, BBQ, Seafood",27,0.0 +5935,Arabian & Turkish Caf愆,Philadelphia,"Cafe, Bakery",37,0.0 +5936,Brij Palace Restaurant,Bishop,"Desserts, Italian, Bakery, Cafe, Mediterranean, Seafood",47,0.0 +5937,Bruncheez,Cleveland,"Tea, Pizza, Bakery, Cafe, Indian, Mediterranean",36,0.0 +5938,Buena Tierra,New Orleans,"Desserts, Tea, Cafe, Mediterranean, Seafood",94,0.0 +5939,Cafe Coffee Day,Texarkana,"Tea, Cafe, BBQ, Seafood",28,0.0 +5940,Chokoreto - The Cake Design Studio,Newark,"Cafe, BBQ, Seafood",96,0.0 +5941,Crazylicious Cakes N Desserts,Lexington,"Pizza, BBQ, Fast Food, Cafe, American",30,0.0 +5942,Halal Pizza 'n' Joy,Dayton,"Seafood, Pizza, Bakery, Fast Food",37,0.0 +5943,Shree Bhojnalaya,Grand Forks,"Tea, Pizza, Italian, Bakery, Cafe",14,0.0 +5944,Shree Laxmi Dhaba,Lawton,"Bakery, American, Seafood",63,0.0 +5945,Swaad Restaurant,Minot,"Tea, Fast Food",60,0.0 +5946,The Bay Leaf,Spokane,"Fast Food, BBQ, Desserts, Italian",74,0.0 +5947,Lotus Pond,South Bend,"Tea, Seafood, Italian",83,4.2 +5948,Cafe Turtle,Fort Myers,"Desserts, Cafe, Bakery, Fast Food, Chinese",30,3.2 +5949,Gulfam Kashmiri Wazwan,Bismarck,"Tea, French, Fast Food",21,3.4 +5950,Kit Care Kabab Corner,Cheyenne,"French, Indian, Cafe, Desserts",57,2.9 +5951,Liter Basar,Hibbing,"Mexican, Fast Food, Cafe, Mediterranean, Seafood",41,3.1 +5952,N. Iqbal Restaurant,Detroit,"Tea, Cafe, Bakery, Desserts",11,3.2 +5953,Ghalib Kabab Corner,Rapid City,"Tea, French, Bakery, Fast Food",85,3.9 +5954,Karim's,Idaho Falls,"Pizza, Indian, BBQ, Cafe, American",44,3.7 +5955,Chick Fish Point,Burbank,"Bakery, BBQ",70,0.0 +5956,Monis Kada Hotel,Pellston,"Pizza, BBQ, Fast Food",51,0.0 +5957,Comesum,Aberdeen,"Fast Food, Cafe, Desserts, Seafood",79,2.2 +5958,Lunch Express,Helena,"Chinese, Bakery, Pizza, BBQ",65,3.3 +5959,Aloo Bhaji Restaurant,Aberdeen,"Cafe, Pizza, Mediterranean, BBQ",79,0.0 +5960,Chinese Corner,Santa Barbara,"Pizza, Italian, Fast Food, Chinese, Seafood",79,0.0 +5961,Gupta Bhojnalya,Providence,"Cafe, Chinese, BBQ, Mediterranean",93,0.0 +5962,Sam's 22,Fort Wayne,"Tea, Bakery, Fast Food",71,0.0 +5963,The Bakery,Anchorage,"Desserts, Tea, Pizza, French, Fast Food, Chinese",53,0.0 +5964,Twenty Four Seven,Fort Leonard Wood,"Tea, Pizza, Italian, French, Fast Food",15,0.0 +5965,Vishal Snacks,Mason City,"Bakery, Desserts, Fast Food",80,0.0 +5966,Chawla Dhaba,Sarasota,"Tea, Seafood, Desserts, Italian",91,3.0 +5967,Shri Gupta'z,Bemidji,"Pizza, BBQ, Bakery, Chinese, American, Seafood",57,3.2 +5968,The Golden Leaf,Stockton,"Tea, French, Chinese, Fast Food",34,3.0 +5969,Red Moon Bakery,Gustavus,"BBQ, Desserts, Fast Food",31,3.5 +5970,Cafe Point,Branson,"Tea, Mexican, Indian, Pizza",24,0.0 +5971,TLC Kitchen,Jacksonville,"Pizza, Fast Food",91,0.0 +5972,Berco's,Saipan,"Tea, Desserts, Seafood",36,3.1 +5973,Bikano Chat Cafe,Marquette,"Tea, Bakery, Desserts",78,2.6 +5974,BonJuz,Great Falls,"Tea, Bakery, Pizza, Desserts",14,3.1 +5975,Cafe Coffee Day - The Lounge,Omaha,"Tea, Pizza, Mexican, Bakery, Fast Food, American",21,2.6 +5976,Chicago Pizza,Nashville,"Tea, French, Pizza, BBQ",20,3.2 +5977,Domino's Pizza,Sacramento,"Pizza, French, BBQ, Cafe, Indian",70,3.3 +5978,Dosa Village,Huntsville,"Tea, Cafe, Pizza, BBQ",40,3.2 +5979,Dunkin' Donuts,Indianapolis,"Desserts, Bakery, BBQ, Fast Food, Mediterranean",44,3.4 +5980,Gelato Italiano,Ithaca,"Tea, Mexican, Bakery, Desserts",69,3.3 +5981,Gelato Vinto,Gustavus,"Cafe, Bakery, Fast Food, Chinese, Seafood",14,2.7 +5982,Keventers,Montgomery,"Cafe, Pizza",62,3.2 +5983,KFC,Grand Forks,"Desserts, Seafood",27,2.6 +5984,Kings Kulfi,Grand Junction,"Tea, Pizza, BBQ, Mediterranean, Seafood",93,3.3 +5985,Mr. Sub,Hartford,"Tea, Desserts, Seafood",38,2.8 +5986,Shanghai Moon,Appleton,"Indian, Desserts, Seafood",28,2.6 +5987,The Blue Tandoor,Stockton,"Cafe, American, Seafood",16,2.6 +5988,Costa Coffee,Austin,"Fast Food, Cafe, BBQ, Seafood",65,3.6 +5989,Giani's,Paducah,"Bakery, American, Desserts, Fast Food",20,3.9 +5990,Hinglish - Cafe Beach Bar,Bozeman,"Tea, Pizza, Bakery, American, Mediterranean",75,3.7 +5991,Spaghetti Kitchen,St. Louis,"Chinese, Pizza, Cafe, Seafood",97,3.8 +5992,Subway,Victoria,"Desserts, Pizza, French, Fast Food, American, Seafood",19,3.5 +5993,Swiss Softy,Deadhorse,"Pizza, Bakery, Fast Food, Cafe, American",39,3.9 +5994,The Bubble Tea,Eau Claire,"Tea, Pizza, American, Fast Food",97,3.5 +5995,Creambell & Chocoxess,Wrangell,"Desserts, Tea, BBQ, Chinese, Seafood",57,0.0 +5996,Hang Out,Punta Gorda,"Tea, Bakery, Mexican, Pizza",40,0.0 +5997,Mx Corn,Kalispell,"Cafe, Pizza, American",70,0.0 +5998,The Belgian Fries Company,Ketchikan,"Desserts, American, Bakery, Indian, Seafood",10,0.0 +5999,Al-Sameer,Salt Lake City,"French, American, Desserts, Seafood",10,2.9 +6000,Allure,Myrtle Beach,"Desserts, Tea, BBQ, Indian, Mediterranean",71,2.8 +6001,BarShala,San Luis Obispo,"BBQ, Desserts, Italian",76,3.1 +6002,Bikaner House,Medford,"French, Bakery, Cafe, Fast Food",49,3.0 +6003,Cafe Coffee Day,Saipan,"Chinese, Tea, French, Fast Food, Cafe, Seafood",92,2.7 +6004,Cafe CoffeeCo,Kona,"Fast Food, Desserts, Italian",32,3.4 +6005,Cafe Festa,Del Rio,"Pizza, Italian, Mexican, Bakery, BBQ, Seafood",55,3.2 +6006,Cheers Lounge Bar,South Bend,"Desserts, Tea, Pizza, BBQ, American",30,2.8 +6007,Chowmein Hut,Pago Pago,"Desserts, Tea, Mexican, Bakery, Fast Food, Indian",26,2.9 +6008,Club India Cafe & Restaurant,Tampa,"Desserts, Tea, Bakery, Cafe, American",98,2.9 +6009,Domino's Pizza,Fairbanks,"Tea, Bakery, Pizza, Seafood",46,3.1 +6010,Everest Bakery Cafe,Rapid City,"Fast Food, Cafe, Mediterranean, Italian",31,2.8 +6011,Everest Kitchen,Alexandria,"Fast Food, Pizza, Mediterranean, Italian",29,3.2 +6012,Exotic Rooftop Restaurant,Dodge City,"Tea, Cafe, Bakery, Pizza",34,3.0 +6013,Flavours,Santa Rosa,"Desserts, Tea, Cafe, BBQ, Chinese, Indian",14,2.9 +6014,Gagan Assam Bengal Restaurant,Lake Charles,"Pizza, French, Fast Food, Chinese, Seafood",98,2.9 +6015,Gold Resto Bar,Green Bay,"Chinese, Bakery, Mediterranean, Seafood",13,2.9 +6016,Grand Madras Cafe,Staunton,"Pizza, Italian, Bakery, Fast Food, Indian, Seafood",62,2.9 +6017,Green Chilli,Shreveport,"Bakery, Pizza, Desserts",55,2.8 +6018,Gurdev Punjabi Restaurant,Missoula,"Seafood, Bakery, Italian",74,3.0 +6019,Haji Irshad Biryani Centre,Valdosta,"Tea, Pizza",65,3.0 +6020,Hungerzz Grill,Walla Walla,"Tea, Pizza, Desserts",33,3.0 +6021,Janta Sweets,Milwaukee,"Fast Food, Cafe, BBQ, Italian",51,3.0 +6022,Khosla Cafe,Santa Ana,"Pizza, BBQ, Fast Food, Cafe, Mediterranean",76,3.2 +6023,King Bar & Restaurant,Ithaca,"Desserts, Pizza, Bakery, Fast Food, Indian",15,3.0 +6024,Le Fairway Restaurant & Bar,Missoula,"Pizza, Mediterranean, Fast Food",84,3.1 +6025,Madan Cafe & Restaurant,Melbourne,"Tea, Pizza, Italian, BBQ, Seafood",69,3.1 +6026,Malhotra Restaurant,Nashville,"Tea, Desserts, Seafood",76,2.9 +6027,Metropolis Bar,Brownsville,"Pizza, Desserts, Fast Food",10,3.0 +6028,Mikky Restaurant,Kansas City,"Tea, Pizza, Mexican, BBQ, Indian",54,2.8 +6029,Mourya Sweets Chat Bhandar,Asheville,"Pizza, Indian, BBQ, Fast Food",59,2.9 +6030,My Bar & Restaurant,Santa Ana,"Tea, Chinese, Bakery",90,3.2 +6031,My Love Restaurant & Bar,Anchorage,"Indian, BBQ, Fast Food",91,2.7 +6032,Organic German Bakeshop - Brown Bread Bakery,Gunnison,"Desserts, Pizza, BBQ, Cafe, Indian",19,3.2 +6033,Paankhuri Restaurant,Flagstaff,"Chinese, BBQ, Cafe, Fast Food",43,3.0 +6034,Pardeep Corner,North Bend,"French, Bakery, BBQ, Seafood",35,3.3 +6035,Pehalwan Da Hotel,Indianapolis,"Tea, BBQ, Desserts, Seafood",72,3.1 +6036,Pizza Hut Delivery,Salisbury,"Tea, Cafe, Mediterranean, Seafood",69,2.8 +6037,Re Cafe,Ogdensburg,"Tea, Pizza, Fast Food, American, Seafood",33,3.1 +6038,Rumi Amritsari Naan,Islip,"Desserts, Indian, BBQ, Fast Food",54,3.2 +6039,Sagar Bar-Be Que,Twin Falls,"Chinese, Pizza, Seafood",14,2.7 +6040,Satyam Rooftop Restaurant,Fort Wayne,"Pizza, Indian, Desserts, Seafood",72,2.9 +6041,Sethi Restaurant,Marquette,"Desserts, Tea, Pizza, Mexican, Chinese, Seafood",67,2.8 +6042,Shri Bankey Bihari Samosa Wala,Bristol,"Tea, Pizza, French, BBQ, Fast Food",39,3.1 +6043,Sonu South Indian Restaurant,Montgomery,"Tea, Chinese, Indian, BBQ",52,2.9 +6044,Southern Welcome Restaurant,International Falls,"Cafe, Bakery, Desserts, Fast Food",98,2.7 +6045,Swagat Dhaba,Missoula,"Cafe, Pizza",24,2.7 +6046,Tadka 4986,North Bend,"Tea, Pizza, Bakery, Seafood",34,3.4 +6047,The Drunkyard Cafe,Minot,"Tea, Italian, Bakery, Fast Food, Chinese, Seafood",47,3.0 +6048,The Gem Bar & Restaurant,Rhinelander,"Cafe, Pizza, Mediterranean",36,3.2 +6049,The Indian Grill Restaurant,Harlingen,"Bakery, Fast Food, Chinese, American, Seafood",26,2.8 +6050,True Blue,Paducah,"Cafe, Bakery, Pizza, Seafood",49,3.0 +6051,U Like,Amarillo,"Tea, Fast Food",44,3.0 +6052,Vaga Bond,Longview,"Tea, Seafood, BBQ, Italian",75,2.9 +6053,Vrinda Vaishno Dhaba,Houston,"French, Bakery, Fast Food, Cafe, Seafood",54,2.8 +6054,White Heart Restro Bar,Provo,"French, Bakery, BBQ, Chinese, Seafood",91,2.7 +6055,Haldiram Bhujiawala,Deadhorse,"Desserts, Mexican, BBQ, Bakery, Cafe",99,3.5 +6056,Maa Bhagwati,West Yellowstone,"Tea, Pizza, Indian, BBQ",35,3.5 +6057,Cafe Brownie,Clarksburg,"Tea, Pizza, Indian",52,0.0 +6058,Cafexpress,Green Bay,"Tea, Pizza, Italian, Bakery, BBQ, Mediterranean",41,0.0 +6059,Mauja Hi Mauja,Sioux Falls,"French, BBQ, Desserts",50,0.0 +6060,Metro Bar & Family Restaurant,Midland,"Cafe, Mexican, Bakery, Chinese, Seafood",12,0.0 +6061,Bajaj Vaishno Dhaba,Watertown,"Bakery, Desserts, Fast Food",53,2.2 +6062,Sita Ram Diwan Chand,Albuquerque,"Tea, Mexican, Fast Food, Cafe, American, Seafood",44,4.3 +6063,Aayush Food Plaza,Stockton,"Tea, French, Pizza, Italian",70,2.9 +6064,Ankit Fast Food Corner,Wichita,"Cafe, BBQ, Desserts",32,2.9 +6065,Da Pizza Corner,Owensboro,"Desserts, Italian, Bakery, Chinese, Seafood",15,3.0 +6066,Mughal Zaika Chicken Point,Texarkana,"Tea, Pizza, French, Mexican, Fast Food, Cafe",30,2.9 +6067,Nawab Restaurant,Flagstaff,"French, Bakery, Cafe, Italian",83,2.9 +6068,New Bikaner Sweets,Santa Fe,"Pizza, Cafe, American, Mediterranean, Seafood",95,3.0 +6069,Pizza Yum,Sitka,"Tea, French, BBQ, Cafe, Seafood",61,2.7 +6070,Radhika Sweets,Denver,"Tea, Fast Food, Cafe, Mediterranean, Seafood",26,2.9 +6071,Satguru Di Hatti,Brownsville,"Italian, Bakery, BBQ, Fast Food, American",14,2.8 +6072,Sher-E-Punjab,Provo,"French, Bakery, BBQ",73,3.0 +6073,Shudh Vaishno Amritsari Naan,Wenatchee,"Cafe, BBQ",30,3.0 +6074,Sumit Sweets,Bend,"French, Mediterranean, Desserts, Fast Food",33,2.8 +6075,Aggarwal Bikaner Wala,West Palm Beach,"French, BBQ, Fast Food",17,0.0 +6076,Aggarwal Sweet Centre,Santa Ana,"Desserts, Tea, Italian, BBQ, Seafood",96,0.0 +6077,Aggarwal Sweet India,Omaha,"Chinese, Pizza, BBQ, Italian",11,0.0 +6078,Aggarwal Sweets Centre,Rockford,"Fast Food, Chinese, BBQ, Italian",73,0.0 +6079,Aggarwal Sweets,Oakland,"Bakery, BBQ, Chinese, Indian, Seafood",28,0.0 +6080,Anupama Snacks and Sweets Corner,San Luis Obispo,"BBQ, Fast Food",50,0.0 +6081,Baba Ka Dhaba,Moline,"Fast Food, Tea, Bakery, Seafood",42,0.0 +6082,Balaji Eating Point,St. Louis,"Tea, French, Desserts, Italian",28,0.0 +6083,Bhagat Ji Sweets,Elmira,"Tea, Seafood, Desserts, Fast Food",91,0.0 +6084,Bikaner Sweet Corner,Lewisburg,"Tea, Pizza, Italian",35,0.0 +6085,Chavi Food Point,Williston,"Mexican, BBQ, Fast Food, Cafe, Indian, Seafood",58,0.0 +6086,Cook & Connect,Williston,"Tea, Chinese, Pizza, Seafood",66,0.0 +6087,Dinesh Ka Mithila Dhaba,Wichita,"Tea, Bakery, Mediterranean",12,0.0 +6088,Domino's Pizza,Christiansted,"Tea, BBQ, Seafood",84,0.0 +6089,Flavors Of London,Grand Junction,"BBQ, Pizza, Desserts, Seafood",80,0.0 +6090,Flavours Of London,Corpus Christi,"Pizza, Bakery, BBQ, Fast Food, Indian",52,0.0 +6091,Foji Bhai Hotel,Prescott,"BBQ, Indian, Desserts, Seafood",34,0.0 +6092,Green Chilli,Austin,"Pizza, Mediterranean, BBQ",66,0.0 +6093,Hook N Cook,Peoria,"Chinese, Pizza, Indian, Desserts",72,0.0 +6094,Hyderabadi & Muradabadi Chicken Corner,Shreveport,"French, Pizza, Desserts",94,0.0 +6095,It's Pizza Town,Latrobe,"Fast Food, Cafe, Desserts, Seafood",80,0.0 +6096,ITO Ke Mashoor Chole Bhature,Hilton Head,"Tea, Cafe, Mexican",39,0.0 +6097,Janta Special Lassi Corner,Waterloo,"Fast Food, Indian, Desserts, Seafood",38,0.0 +6098,Kairi The Royal Taste,Moline,"French, BBQ, Desserts, Italian",70,0.0 +6099,Kasba,Charlottesville,"Cafe, Indian, BBQ, Seafood",91,0.0 +6100,Kayasthas Food Junction,Kona,"Pizza, Fast Food, Indian, Mediterranean, Seafood",14,0.0 +6101,KGN Chicken Corner,Punta Gorda,"Tea, BBQ, Bakery, Desserts",11,0.0 +6102,Maggi Point,Dillingham,"Bakery, Pizza, Cafe",91,0.0 +6103,Momozone,Philadelphia,"Tea, Pizza, Desserts",17,0.0 +6104,Munna Bakery,Florence,"Cafe, American, Desserts",45,0.0 +6105,N.S. Pizza Point,Midland,"Tea, Mexican, Mediterranean, Fast Food",95,0.0 +6106,Nand Bhai Chholey Bhature,Stockton,"Tea, Bakery, BBQ, American, Seafood",33,0.0 +6107,New Lazeez Tandoor,Alexandria,"Pizza, Bakery, BBQ, Fast Food, Indian",77,0.0 +6108,Pizza Day,Savannah,"Pizza, Desserts, Seafood",27,0.0 +6109,Pizza Day,Lihue,"Desserts, Pizza, Italian, Bakery, Seafood",98,0.0 +6110,Pritam Tiffin Service,Sacramento,"Bakery, Fast Food, Cafe, American, Seafood",22,0.0 +6111,Rana Sweets and Restaurant,Staunton,"Pizza, American, BBQ",66,0.0 +6112,Rastogi Sweets & Caterers,St. Cloud,"Desserts, BBQ, Bakery, Cafe, American",75,0.0 +6113,Recipe Tadka,Worcester,"Desserts, French, BBQ, Chinese, Seafood",25,0.0 +6114,Sahi Pakde Hain,Grand Forks,"Cafe, Fast Food",77,0.0 +6115,Sher e Punjab Rasoi,Bishop,"Cafe, Pizza, Bakery, Seafood",71,0.0 +6116,Shyam Rasoi,Jacksonville,"Tea, Bakery, Fast Food, Mediterranean, Seafood",52,0.0 +6117,Subhan Chicken Biryani,San Francisco,"Cafe, Bakery, BBQ, Seafood",49,0.0 +6118,Surprise - Bakers & Bites,Minneapolis,"Tea, Chinese, BBQ, Desserts",22,0.0 +6119,The Night Rider,Grand Rapids,"Desserts, Pizza, Bakery, Cafe, Mediterranean",28,0.0 +6120,Vikram Ji Snacks,Omaha,"Cafe, American, BBQ",71,0.0 +6121,Yadav Chaat Bhandar,Monterey,"Pizza, Seafood",52,0.0 +6122,Yadav Ji Chholey Bhature,Columbus,"Pizza, Mexican, BBQ, Fast Food, Cafe",74,0.0 +6123,Burger King,Yakima,"Chinese, Desserts, Seafood",13,3.2 +6124,Chaayos,Moline,"Fast Food, Bakery, BBQ, Italian",92,3.2 +6125,Berco's,Cedar City,"Tea, Pizza, Fast Food, Cafe, Indian, Mediterranean",54,0.0 +6126,Chicago Pizza,North Bend,"Desserts, Pizza, BBQ, Cafe, Mediterranean",44,0.0 +6127,Domino's Pizza,Indianapolis,"Tea, Cafe, Italian, Fast Food, Chinese",44,0.0 +6128,Dunkin' Donuts,Binghamton,"Pizza, BBQ, Bakery, Cafe, Indian",81,0.0 +6129,Keventers,Jacksonville,"Pizza, Fast Food",67,0.0 +6130,Khan Chacha,Wichita Falls,"Cafe, Indian, Seafood",20,0.0 +6131,Wow! Momo,Manchester,"BBQ, Desserts",62,0.0 +6132,Aalis Kathi Kabab,Palm Springs,"Desserts, Tea, BBQ, Fast Food, American, Mediterranean",51,3.3 +6133,Dill's Chawla Chik Inn,Roanoke,"Seafood, Bakery, Desserts, Italian",54,3.4 +6134,Ipshita's Cakes Mamma Bakes,Atlantic City,"Tea, Pizza, French, BBQ, American",18,3.1 +6135,Big Wong,Yakima,"Cafe, Bakery, American, Fast Food",56,4.3 +6136,Giani's,Tampa,"Desserts, Fast Food, Cafe, American, Seafood",19,3.3 +6137,Baskin Robbins,San Diego,"Italian, Bakery, BBQ, Fast Food, Cafe",48,3.5 +6138,Chicken Inn,Charlotte,"Tea, Pizza, Italian, BBQ, Seafood",18,3.6 +6139,Ichiban,Chattanooga,"Mexican, Bakery, Desserts",87,3.9 +6140,Krishna Di Kulfi,Redding,"American, BBQ, Seafood",77,3.8 +6141,Pindi,Redding,"Desserts, Mexican, Bakery, Cafe, American, Seafood",42,3.8 +6142,Veg Gulati,El Paso,"Fast Food, Cafe, Seafood",63,3.8 +6143,Chor Bizarre,Prescott,"French, Mexican, Desserts, Seafood",28,4.4 +6144,Gulati,Tampa,"Chinese, Bakery, Pizza",12,4.4 +6145,Havemore,Salina,"Desserts, Tea, Italian, French, Bakery",96,4.1 +6146,Aggarwal Sweets,Palm Springs,"Desserts, Tea, Mexican, BBQ, Fast Food, American",41,2.9 +6147,Om Sai Dosa Corner,Pago Pago,"Bakery, Pizza, Indian, Mediterranean",70,2.9 +6148,Angelena Restaurant,Honolulu,"Cafe, Mexican, Bakery, Desserts",38,0.0 +6149,Chennai Dosa Express,Alpena,"Tea, Pizza, Mexican, BBQ, Bakery, American",20,0.0 +6150,Chennai Dosa Xpress,Hibbing,"Bakery, BBQ, Desserts",97,0.0 +6151,Domino's Pizza,Abilene,"Bakery, Pizza, American, Seafood",89,0.0 +6152,Foodizm,Seattle,"Cafe, Pizza, Bakery, Italian",68,0.0 +6153,Healthy Nutrienty,Great Falls,"BBQ, Desserts",86,0.0 +6154,Kalka Ji Rasoi,Salisbury,"Desserts, Tea, Pizza, Indian, Seafood",51,0.0 +6155,Kolkata Biriyani On Call,Greensboro,"French, Pizza, BBQ, Seafood",99,0.0 +6156,Mahavir Sweets,Green Bay,"Tea, Cafe, American, BBQ",50,0.0 +6157,Massi's Kitchen,Duluth,"Fast Food, Desserts, Seafood",25,0.0 +6158,New Shama Chicken Restaurant,Clarksburg,"Bakery, Indian, Seafood",77,0.0 +6159,Pizza King,Chicago,"Tea, Cafe, Pizza",92,0.0 +6160,Raj Shri,Rapid City,"Pizza, Bakery, Desserts",59,0.0 +6161,Roll Junction,Killeen,"French, Pizza, Mediterranean, Desserts",67,0.0 +6162,Sai Bhojanalay,Lawton,"Pizza, Mexican, Fast Food, Cafe, American",77,0.0 +6163,Shree Balaji Caterers,Syracuse,"Chinese, Desserts, Seafood",46,0.0 +6164,Smily Cakes,Colorado Springs,"Tea, Bakery, Desserts, Fast Food",100,0.0 +6165,Zaika Restaurant,Jacksonville,"Desserts, Tea, Pizza, Mexican, Seafood",92,0.0 +6166,"34, Chowringhee Lane",Nome,"Tea, Bakery, BBQ",44,2.7 +6167,A Pizza House,Tampa,"Cafe, Desserts, Italian",51,2.9 +6168,Amrit Family Rasoi,Fort Dodge,"Desserts, Pizza, BBQ, American, Seafood",27,2.8 +6169,Bake Club,Dallas,"Cafe, Indian, Mediterranean, BBQ",100,3.1 +6170,Cafe Coffee Day,Pasco,"Tea, BBQ, Fast Food, Chinese, Indian",12,3.3 +6171,Cake O Frost,Milwaukee,"BBQ, Desserts",22,3.3 +6172,Chawla Kitchen,Asheville,"Tea, Cafe, Bakery, Desserts",98,3.3 +6173,Cherry Fresh,Jackson,"French, Pizza, American, Cafe",69,3.3 +6174,Chocooze,Corpus Christi,"BBQ, Desserts, Italian",57,3.2 +6175,Chuk Chuk Mail,Oklahoma City,"Bakery, BBQ, Mediterranean",37,2.9 +6176,Da Pizza Bakers,Appleton,"Tea, Italian, Bakery, Cafe, American",58,3.1 +6177,Domino's Pizza,Sioux City,"Tea, Chinese, Mexican, Bakery",28,3.2 +6178,Green Chick Chop,Ogden,"Seafood, Mediterranean, Desserts, Italian",39,3.3 +6179,Grill Zone,Grand Junction,"Fast Food, BBQ, Seafood",59,3.4 +6180,Grover Mithaivala,Bend,"Fast Food, Cafe, Mediterranean, Italian",78,3.4 +6181,Hong Kong Express,Charlotte,"Chinese, Cafe, Desserts",74,3.2 +6182,Hot Spot Roll Corner,Lexington,"Tea, Cafe, BBQ, Desserts",56,3.2 +6183,Jaiveer Naan & Chaap,Staunton,"Pizza, Indian, Seafood",100,3.4 +6184,Jaiveer Naan & Chaap,Boise,"Tea, Seafood, Italian",59,3.1 +6185,Kabab Hut,Lake Charles,"Tea, Bakery, Desserts, Fast Food",21,2.9 +6186,Kabbaba,Midland,"Tea, Cafe, Pizza",70,3.3 +6187,McDonald's,Killeen,"Tea, Bakery, BBQ, Seafood",65,3.3 +6188,New Durga Corner,South Bend,"BBQ, Chinese, Pizza, Desserts",20,3.2 +6189,New Durga Dosa Corner,Lansing,"BBQ, Pizza, Bakery, Desserts",31,3.0 +6190,Pishori Chicken,Brunswick,"Fast Food, Cafe, Mexican, Italian",66,3.4 +6191,Pizza Break,Greer,"Desserts, French, Mexican, Bakery, Fast Food, Cafe",11,3.4 +6192,Pizza Hut Delivery,Brunswick,"Chinese, Bakery, Cafe, Seafood",10,3.1 +6193,PK Shoppe,Jacksonville,"Desserts, Cafe, Chinese, American, Seafood",41,2.7 +6194,Pudding & Pie,Niagara Falls,"Pizza, BBQ, Fast Food",61,2.7 +6195,Punjabi Angithi,Montgomery,"Tea, Indian, Desserts, Fast Food",90,3.3 +6196,Punjabi Handi,Sitka,"Tea, Cafe, Seafood",56,3.4 +6197,Quality Cake Shop,Ogdensburg,"Desserts, Tea, Italian, BBQ, Bakery",63,3.2 +6198,Rahul's Rasoi,Plattsburgh,"Tea, Pizza, Italian, Bakery, BBQ, Chinese",67,2.5 +6199,RTW,Prescott,"Tea, Italian, French, Bakery, BBQ",17,2.6 +6200,Sahib e Aalam,Juneau,"Tea, Pizza, BBQ, American, Seafood",14,3.2 +6201,Shree Durga Dosa,Lewisburg,"Desserts, Tea, Pizza, Mexican, Seafood",87,3.4 +6202,Shree Durga Dosa,Brainerd,"Pizza, Fast Food",89,2.7 +6203,Shree Rathnam,College Station,"Desserts, Tea, Indian, Bakery, Fast Food, American",33,3.2 +6204,Sunil Momos.Com,Montgomery,"French, BBQ, Desserts, Seafood",50,3.4 +6205,Temptation Food,Nome,"Tea, Bakery, Mediterranean, Desserts",77,2.8 +6206,Wheelyz,Nantucket,"French, Pizza, Cafe, Fast Food",23,3.2 +6207,Ashok Meat Wala,Nome,"Desserts, Tea, BBQ, Cafe, Indian",48,3.6 +6208,Biryani Sons & Co.,Amarillo,"Tea, Pizza, Bakery, BBQ",14,3.8 +6209,Curry Tree,Kona,"Pizza, BBQ, Mediterranean, Seafood",69,3.5 +6210,Deli 63,Grand Rapids,"Cafe, Pizza, American, Indian",41,3.6 +6211,Friends Shawarma,Norfolk,"Bakery, American, BBQ, Italian",72,3.5 +6212,Ganesh Restaurant,Sun Valley,"Tea, Fast Food, American, Seafood",34,3.8 +6213,Kake Da Hotel,San Angelo,"Desserts, Pizza, American, Fast Food, Indian",92,3.6 +6214,Nirmal Vada Pav,Grand Rapids,"BBQ, Mediterranean, Seafood",39,3.5 +6215,Oasis Baklawa,Pocatello,"Cafe, Bakery, BBQ, Chinese, American",21,3.5 +6216,Puri Bakers,Bloomington,"Desserts, Tea, Bakery, Mediterranean, Seafood",24,3.6 +6217,Wonder Taste of Spices,Greenville,"Desserts, Italian, Bakery, Fast Food, Indian, Seafood",66,3.6 +6218,Biryaniwala,Norfolk,"French, BBQ, Seafood, Italian",76,2.1 +6219,Firangi N More,Hilo,"French, Bakery, Cafe, Fast Food",97,2.2 +6220,Pakwan,Valparaiso,"Cafe, Pizza, Fast Food",98,2.1 +6221,Subway,Idaho Falls,"Pizza, American, BBQ, Fast Food",10,2.3 +6222,24x7,Williston,"Chinese, Bakery, Pizza, Seafood",67,3.1 +6223,Cafe Cook,Reno,"BBQ, Desserts",100,2.8 +6224,La-Nawaab,Knoxville,"French, Bakery, Cafe, Seafood",17,3.0 +6225,Roadside Cafe,San Juan,"Tea, French, Indian, Cafe",69,2.8 +6226,Royal India Food Plaza,Longview,"Desserts, Tea, Mexican, Bakery, Seafood",47,3.2 +6227,Sir John Bakery Cafe,New York,"Pizza, Bakery, Desserts",78,3.4 +6228,Bikku Bakes,Wrangell,"Tea, Pizza, Fast Food",36,3.7 +6229,Giani,Portsmouth,"Tea, Cafe, Bakery",78,3.5 +6230,Zune - Piccadily Hotel,Killeen,"Cafe, Seafood",87,2.6 +6231,361 Restaurant & Banquet,Niagara Falls,"Tea, Cafe, Pizza, Bakery",86,3.4 +6232,6 Pack Momos,Aberdeen,"Pizza, Indian, Desserts",12,2.8 +6233,Amritsari Kulcha,Charlottesville,"French, Bakery, Fast Food, Mediterranean, Seafood",49,3.1 +6234,Bake Houz,Sitka,"Pizza, Mediterranean, BBQ, Seafood",67,3.0 +6235,Ben's Foods,Salina,"Seafood, Mediterranean, Fast Food",87,3.2 +6236,Bobby Punjabi Rasoi,Pasco,"American, Desserts, Fast Food",24,2.6 +6237,Bromfy Public House,Punta Gorda,"Mexican, Desserts, Fast Food",76,2.8 +6238,BTW,Appleton,"Tea, Pizza, Italian, Mexican, Cafe",83,2.8 +6239,Chacha Shankar,Gainesville,"Tea, Pizza, French, Bakery, Fast Food, Indian",43,3.2 +6240,Chaska,Tallahassee,"Cafe, Pizza, BBQ, Desserts",59,3.2 +6241,Chatore.e.e,Fort Leonard Wood,"Tea, French, Desserts, Seafood",10,3.2 +6242,Chawla's Tandoori Xpress,Durango,"Desserts, French, Fast Food, Cafe, Seafood",59,2.5 +6243,Chawla's Tandoori Xpress,Charlottesville,"Desserts, Tea, Pizza, Mediterranean, Seafood",75,3.2 +6244,Chinese Hut,Missoula,"Desserts, Tea, Cafe, American, Seafood",16,2.9 +6245,Culinaria,Roswell,"French, Pizza, Desserts",49,3.3 +6246,Deli Cake Cafe,Newport News,"Tea, BBQ",35,3.4 +6247,Domino's Pizza,Wichita,"Tea, Chinese, Cafe, Fast Food",65,3.2 +6248,Domino's Pizza,Los Angeles,"Tea, Mexican, BBQ, Cafe, American",80,2.6 +6249,Dragon Hut,Lihue,"Desserts, Tea, French, BBQ, Indian, Seafood",87,3.3 +6250,Frontier Restaurant,Baton Rouge,"Desserts, Tea, Pizza, French, Seafood",80,2.5 +6251,Giani's,Tucson,"Desserts, Tea, Cafe, American, Mediterranean, Seafood",63,3.1 +6252,Giani,Fresno,"Tea, Bakery, BBQ, Indian, Seafood",31,2.9 +6253,Grand Bikaner,Ogden,"Desserts, Tea, Mexican, Fast Food, Cafe",37,3.0 +6254,Hill Chillz 26,Shreveport,"Tea, American, Seafood",79,3.1 +6255,K's Town,Muskegon,"Desserts, Tea, Pizza, Bakery, Mediterranean",96,2.8 +6256,Laxmi Ice Cream Parlour,Portsmouth,"Chinese, French, BBQ, Cafe",32,3.1 +6257,Make My Day,Lake Charles,"Desserts, French, BBQ, Cafe, American",42,3.1 +6258,McDonald's,College Station,"Tea, Pizza, Mexican, Bakery, BBQ, Indian",65,3.3 +6259,Mikky Peshawari,White Plains,"Cafe, Indian, Desserts, Seafood",13,2.8 +6260,Moroca,Oklahoma City,"Pizza, Bakery, Italian",88,3.2 +6261,New Punjabi Dhaba and Caterers,Boston,"Bakery, Mexican, BBQ, Mediterranean",52,3.2 +6262,Pandey Chinese Hut,San Luis Obispo,"Cafe, Bakery, Mediterranean, Italian",26,2.7 +6263,Pandey Chinese Hut,Laredo,"Tea, Italian, Bakery, BBQ, Cafe, Indian",27,2.7 +6264,Peppers & Pipes,Knoxville,"Chinese, Pizza, Cafe, Italian",86,3.1 +6265,Punjabi Zaika,Tucson,"Tea, Bakery, Mexican, American",34,3.3 +6266,Punjabi's Eating Hub,Stockton,"Tea, Chinese, Bakery, Desserts",45,3.3 +6267,Punjabian Di Shaan,Deadhorse,"Desserts, Pizza, Mexican, Bakery, BBQ",96,2.6 +6268,Puran Chand,Kahului,"Fast Food, Pizza, BBQ, Seafood",32,2.6 +6269,Ram Chinese Food,Waterloo,"Desserts, Tea, BBQ, Fast Food, Indian",70,2.9 +6270,Rooftop,Hagerstown,"Cafe, Pizza, BBQ, Mediterranean",20,3.3 +6271,Ruchi's Food Junction,Kalamazoo,"Desserts, Cafe, Pizza, Fast Food, Chinese",15,2.7 +6272,Sahni Veg & Non Veg,Minneapolis,"Chinese, BBQ, Desserts, Fast Food",97,3.1 +6273,Shiv Chinese Chat Bhandar,Fort Smith,"Pizza, Mexican, BBQ, Fast Food, Cafe",69,3.1 +6274,Shutup 'N' Eat,Paducah,"Tea, French, Desserts, Seafood",59,3.2 +6275,Sindhi Chicken Corner,Wrangell,"Cafe, Fast Food",50,3.0 +6276,Smokshh The Lounge,Tampa,"Pizza, BBQ",33,3.4 +6277,Subway,La Crosse,"Pizza, Desserts, Italian",23,3.3 +6278,The Blessing Bliss,Ogdensburg,"French, Pizza, Cafe, BBQ",28,3.4 +6279,The Butter Cup,Charleston,"Tea, French, BBQ, Cafe",41,3.0 +6280,The Cake Bucks,Gunnison,"Tea, Pizza, French, Bakery, Chinese, Seafood",31,3.3 +6281,The Taste of Delhi,Arcata,"Mexican, Bakery, Desserts, Seafood",32,3.3 +6282,The Taste,Presque Isle,"Tea, Fast Food",25,3.0 +6283,VadaPav 'n' Frankie,Evansville,"Bakery, BBQ, Fast Food, Cafe, Indian",98,3.0 +6284,Vaishnav Chat & Caterers,Augusta,"French, Bakery, BBQ, Cafe, Indian",81,3.3 +6285,Yellowtail,Indianapolis,"BBQ, Desserts",28,3.1 +6286,Baker's Stop,Oakland,"Tea, Pizza, American, Desserts",95,3.7 +6287,Bansal Sweets,Erie,"Tea, American, Seafood",75,3.9 +6288,Bharat Sweets,Bristol,"Pizza, Bakery, BBQ, Fast Food, American",61,3.5 +6289,Dosa Corner,Wenatchee,"Cafe, Bakery",67,3.6 +6290,Green Chick Chop,Adak Island,"Tea, French, Cafe",31,3.6 +6291,Greenvich,Boise,"Tea, Fast Food, Indian, Seafood",95,3.6 +6292,Hamburg To Hyderabad,Alamosa,"Cafe, Mediterranean, Seafood",23,3.9 +6293,I Food You,Killeen,"Desserts, Pizza, French, Bakery, Seafood",28,3.9 +6294,Kay's Chicken Corner,Rochester,"Desserts, Tea, Fast Food, American, Seafood",54,3.6 +6295,Lanche,Montgomery,"Tea, Cafe, Bakery, Seafood",96,3.7 +6296,Marshmallow Cakes & More,Dubuque,"Pizza, Italian, Bakery, Cafe, Mediterranean, Seafood",100,3.5 +6297,Om Corner,Evansville,"Cafe, Mexican, Bakery",57,3.7 +6298,Peshawari,Louisville,"Tea, Pizza, BBQ, Desserts",74,3.6 +6299,Puri Bakers,Minneapolis,"Pizza, Bakery, Italian",85,3.9 +6300,Republic Of Food Lovers,St. Petersburg,"Desserts, Pizza, French, BBQ, Bakery",76,3.6 +6301,Sharma Bakers,Montgomery,"Tea, Chinese, Pizza",53,3.5 +6302,Street Hawkers,Gulfport,"Pizza, Mexican, Cafe, Mediterranean, Seafood",46,3.5 +6303,The Midnight Heroes,Louisville,"Desserts, Pizza, Mexican, American, Seafood",35,3.6 +6304,Tilak Munjal-R Panchkuian Samose Wale,Cedar Rapids,"BBQ, Cafe, Indian, Mediterranean, Seafood",54,3.5 +6305,3x Cafe,Dodge City,"Desserts, Tea, Mexican, Bakery, Cafe",39,0.0 +6306,Amritsari Naan,Texarkana,"Bakery, Indian, Desserts, Fast Food",98,0.0 +6307,Chinese Tadka,Daytona Beach,"Desserts, Cafe, Pizza, Chinese, Seafood",77,0.0 +6308,Dinesh Meat Wala,Yakima,"Tea, French, Bakery, Fast Food",12,0.0 +6309,Jeet Pizza,Minneapolis,"Tea, Desserts",68,0.0 +6310,New South Indian & Chinese Foods,Valdosta,"Tea, Fast Food, Mexican, Seafood",67,0.0 +6311,Niti Shake & Ice Cream Hub,Dubuque,"French, Pizza, Bakery, Fast Food",59,0.0 +6312,Yumbuns,San Angelo,"Italian, French, Bakery, BBQ, Cafe",13,0.0 +6313,Giri Momos Centre & Chinese Fast Food,Rockford,"Cafe, Indian, Seafood",44,2.4 +6314,Laalwala's,Albany,"Tea, French, Pizza, Desserts",58,2.4 +6315,Sagar Ratna,Juneau,"Tea, Indian, BBQ",75,2.3 +6316,Babu Shahi Bawarchi,Tampa,"Tea, Seafood",62,3.3 +6317,Cafe Lota,Missoula,"Desserts, Fast Food",78,4.5 +6318,Bombay's Royal China,Yakutat,"Tea, American, BBQ",32,3.2 +6319,Chin China,Arcata,"Tea, Fast Food, Indian, Seafood",91,3.1 +6320,Cholkat,Pellston,"Fast Food, French, Seafood",12,3.0 +6321,Deluxe Butter Omlette,San Jose,"Cafe, American, Desserts",21,3.3 +6322,Giani's,College Station,"Desserts, Pizza, Fast Food, Chinese, Seafood",16,3.0 +6323,Kanha Sweets,Peoria,"Chinese, Pizza, Mediterranean, BBQ",20,2.8 +6324,Liquid,Branson,"Desserts, Tea, Bakery, Cafe, Mediterranean",20,3.2 +6325,Papa Chinese Veg Food,Monterey,"Tea, Bakery, Indian, Mediterranean, Seafood",35,2.8 +6326,Punjab To China,Harlingen,"Tea, Mexican, Mediterranean, Seafood",90,3.2 +6327,Chocolacious by WedCraft,Louisville,"Fast Food, French, Indian, Seafood",22,0.0 +6328,Frontier,Charlottesville,"Tea, Bakery, BBQ, Seafood",34,0.0 +6329,Gopal Ji Rasoi Wala,Redding,"Desserts, Indian, Cafe, American, Seafood",72,0.0 +6330,Kanuchawala,Champaign,"Bakery, American, Mediterranean, Fast Food",27,0.0 +6331,Keventers,Seattle,"Tea, Bakery, Fast Food",53,0.0 +6332,Muncheezz,Philadelphia,"Tea, Bakery, Indian, Seafood",17,0.0 +6333,Shaketastic,Roanoke,"Tea, French, Seafood",89,0.0 +6334,Sree Krishna Udupi,Ithaca,"Bakery, Pizza, Mediterranean, Seafood",56,0.0 +6335,Asia 21,Elmira,"Tea, Pizza, BBQ, Fast Food, Mediterranean",34,2.9 +6336,Barkat,Atlanta,"Bakery, Indian, Mediterranean, Desserts",78,3.4 +6337,Bikanervala,San Jose,"Desserts, Pizza, BBQ, Cafe, Mediterranean",47,3.4 +6338,Chawla's,Arcata,"Tea, Bakery, BBQ, Fast Food, Chinese",69,3.4 +6339,Cilantro Woodapple,Dayton,"Fast Food, Seafood, Desserts, Italian",14,3.0 +6340,Domino's Pizza,Binghamton,"Cafe, Bakery, Pizza, Desserts",74,2.8 +6341,Giani's,Brainerd,"French, Pizza, Desserts, Seafood",20,3.2 +6342,Gopala,Miami,"Chinese, Pizza, American, BBQ",23,2.9 +6343,Green Chick Chop,Binghamton,"Bakery, American, Desserts, Seafood",15,3.0 +6344,Gupta Chat Corner,Sarasota,"Desserts, Tea, Cafe, Fast Food, Chinese, American",30,3.3 +6345,Kake Da Hotel,International Falls,"Tea, Pizza, BBQ, Indian, Seafood",91,2.7 +6346,Karim's,Everett,"Bakery, Seafood",69,2.5 +6347,Katyal Pure Vegetarian,Evansville,"Desserts, Bakery, Fast Food, Cafe, Mediterranean",24,3.0 +6348,Kunal Dhaba,Escanaba,"Cafe, Pizza, French, Bakery, Fast Food, Chinese",86,3.2 +6349,Midnight Hunger,Deadhorse,"Tea, Pizza, BBQ, Chinese, American",71,3.1 +6350,Moon Bite,Everett,"Tea, Chinese, Seafood",82,3.1 +6351,Nirula's Ice Cream,Peoria,"French, Mexican, Bakery, Pizza",48,3.0 +6352,Pash!,Jacksonville,"Cafe, Pizza, BBQ, Seafood",32,3.1 +6353,Rashi's De La Creme,Eugene,"Desserts, Pizza, Italian, French, Bakery",84,3.1 +6354,Rupa Dairy,Memphis,"Tea, Chinese, Cafe, Desserts",42,2.9 +6355,Sandy's Punjabi Rasoi,Bemidji,"Pizza, BBQ, Seafood",55,3.2 +6356,Shree Rathnam,Victoria,"Cafe, BBQ, Desserts, Seafood",25,3.3 +6357,Tandoori Planet,Baton Rouge,"Pizza, BBQ, Desserts, Italian",81,3.4 +6358,Tandoori Tadka,Trenton,"Desserts, Pizza, French, Fast Food, Chinese",26,3.3 +6359,Urban Owl,West Palm Beach,"Tea, Pizza",68,3.1 +6360,4th Street Cafe,St. Louis,"Tea, Mexican, Bakery, Cafe, Mediterranean",42,3.5 +6361,Late Lateefe,Twin Falls,"Tea, Pizza, French, Bakery, BBQ",64,3.5 +6362,Mr. Brown,Hilton Head,"Desserts, Italian, BBQ, Fast Food, Cafe",23,3.7 +6363,The Riding Guns Cafe,State College,"Desserts, Pizza, Cafe, Indian, Seafood",51,3.6 +6364,Baskin Robbins,Niagara Falls,"Desserts, Tea, Bakery, Fast Food, American",39,0.0 +6365,Chai Garam,Sault Ste. Marie,"Tea, BBQ, Italian",32,0.0 +6366,Chilli Tadka,Palm Springs,"Chinese, Cafe, Seafood",34,0.0 +6367,Colours of Biryani,Indianapolis,"French, Mexican, Bakery, Desserts",32,0.0 +6368,Fc Katyal,Erie,"Tea, Desserts, Bakery, BBQ",83,0.0 +6369,Food State,Ponce,"Tea, Cafe, Indian, Mediterranean",51,0.0 +6370,Giani,Baltimore,"Bakery, Mediterranean, Fast Food",16,0.0 +6371,Gupta Eating Corner,Sarasota,"Pizza, Desserts",39,0.0 +6372,Hot 'N' Cool,Pittsburgh,"Chinese, Mexican, Bakery, Cafe",87,0.0 +6373,Hot Joint Fast Food,Del Rio,"Tea, Bakery, American, BBQ",44,0.0 +6374,Murliwala Bakers,Gunnison,"French, Pizza, Fast Food",56,0.0 +6375,New Garden Hut,Newark,"Tea, Cafe, Pizza, Fast Food",12,0.0 +6376,Perfect Party Chef,Traverse City,"Pizza, French, BBQ, Fast Food, Cafe",77,0.0 +6377,R.S. Chinese Food,Lansing,"Desserts, Pizza, Mexican, Bakery, American",12,0.0 +6378,Rama Fast Food,International Falls,"French, Bakery, Fast Food",94,0.0 +6379,Shanghai Chinese Food,Cedar City,"Tea, Mexican, Bakery, Fast Food",64,0.0 +6380,Teens Cafe Fast Food,Monterey,"Seafood, Fast Food",40,0.0 +6381,The Tandoor Hut,College Station,"Cafe, Mexican, Bakery, Fast Food, Chinese, Seafood",100,0.0 +6382,The Taste of Tandoor,Hibbing,"Tea, Cafe, Mexican, Mediterranean",46,0.0 +6383,The Chinese Hut,Dillingham,"Pizza, BBQ",57,2.4 +6384,Linx - Premier Inn,Abilene,"Tea, Bakery, Pizza",44,3.0 +6385,The 87 - Premier Inn,Williston,"Pizza, Desserts, Seafood",13,3.1 +6386,Stallion - Pride Plaza Hotel,Marquette,"Tea, American, Desserts, Fast Food",59,3.1 +6387,Aqua Grill - Pride Plaza Hotel,Pellston,"American, Desserts, Seafood",44,0.0 +6388,Mr. Confectioner - Pride Plaza Hotel,Rockford,"Bakery, Desserts",74,0.0 +6389,Aditya's Kulcha Express,Buffalo,"Bakery, BBQ, Fast Food, Chinese, Seafood",43,3.3 +6390,Allterian By Chanson,Gulfport,"Tea, Bakery, BBQ, American, Seafood",77,3.4 +6391,Amuse Lounge,Bismarck,"Chinese, Seafood, Cafe, Fast Food",38,3.3 +6392,Bikanervala,Yuma,"Pizza, Seafood",88,3.2 +6393,Cakes Dot Com,Portsmouth,"Fast Food, French, Bakery, Italian",29,3.2 +6394,Chez Papillons by Bonjour Chocolates,Everett,"Pizza, American, Fast Food",52,3.3 +6395,Chicago Pizza,Daytona Beach,"Pizza, Italian, Bakery, BBQ, Fast Food",62,2.6 +6396,Choco Doux,Bloomington,"Cafe, French, Mediterranean, Seafood",41,3.1 +6397,Cocoberry,Staunton,"Cafe, BBQ, Desserts, Italian",39,3.2 +6398,Curries N More,Texarkana,"Tea, French, Cafe, Italian",78,3.2 +6399,Dili's Chawla Chik Inn,Gustavus,"Seafood, American, BBQ, Fast Food",64,3.1 +6400,Dimsum Vs Sushi,Myrtle Beach,"Tea, Desserts, American, BBQ",83,3.4 +6401,Domino's Pizza,Hagerstown,"French, BBQ, Seafood",15,3.2 +6402,Everest Momos & Chinese Fast Food,Niagara Falls,"Cafe, Pizza",23,3.2 +6403,Food Plaza,Baton Rouge,"Tea, American, Cafe, Indian, Seafood",12,3.2 +6404,Giani,Kodiak,"Desserts, Mexican, Bakery, Fast Food, Chinese",51,3.4 +6405,Grillz & Gravy,Great Falls,"Cafe, Bakery",85,3.3 +6406,Kabab,Santa Maria,"Tea, Desserts",35,3.2 +6407,Khalsa,Cody,"Fast Food, Pizza, Bakery, Seafood",82,2.7 +6408,Kumar Pastry Shop,Ketchikan,"French, BBQ, Cafe, Italian",12,3.3 +6409,Little Chef,Adak Island,"French, American, Cafe, Desserts",28,3.4 +6410,Mafia 2.0,Wrangell,"Desserts, Tea, Pizza, Mexican, Cafe, Indian",38,3.4 +6411,Makhni's,Binghamton,"Tea, Pizza, Fast Food, Chinese, American",83,2.7 +6412,Moksha,Redding,"Chinese, Pizza, Seafood",34,3.2 +6413,Moti Mahal Delux,Kotzebue,"Tea, Cafe, Bakery, Seafood",54,2.5 +6414,Pudding & Pie,Martha's Vineyard,"Cafe, Mediterranean, Desserts, Fast Food",14,3.0 +6415,Republic of Chicken,Tampa,"Desserts, Tea, Pizza, BBQ, Mediterranean",34,3.1 +6416,Shree Rathnam,New York,"Tea, Bakery, Fast Food, American, Seafood",91,3.4 +6417,Soo Yung by the backyard,Del Rio,"Tea, Bakery, Seafood",70,3.4 +6418,Subway,Indianapolis,"Bakery, Mexican, BBQ",48,2.6 +6419,The Cake Shop,Toledo,"Desserts, BBQ, Cafe, Indian, Seafood",74,3.3 +6420,The Night Shift,Hancock,"French, Mexican, BBQ, Bakery, Seafood",90,3.1 +6421,The Night Walkers,Birmingham,"Tea, French, Indian, Cafe",74,3.4 +6422,The Submarine Lounge,Hagerstown,"Cafe, BBQ, Desserts",16,3.4 +6423,Tikka Junction,Des Moines,"Tea, Cafe, Fast Food, Chinese, Seafood",58,3.4 +6424,Twenty Four Seven,Sioux City,"Chinese, Mexican, BBQ, Seafood",74,3.2 +6425,WTF - Wraps Toast Fries,Sault Ste. Marie,"Desserts, Italian, Mexican, BBQ, Cafe",52,3.2 +6426,Food Scouts,Madison,"Tea, Cafe, Pizza, Bakery, Chinese",17,4.6 +6427,Alkakori,Grand Island,"Tea, French, Indian, Cafe",62,3.6 +6428,Arabian Delites,Augusta,"Mexican, BBQ, Desserts, Italian",15,3.6 +6429,Blue Water Grille,Juneau,"Cafe, Mediterranean, Seafood",21,3.5 +6430,Cafe Coffee Day,San Luis Obispo,"Pizza, Indian, BBQ, Fast Food",78,3.6 +6431,D韄ner Grill,Harrisburg,"Cafe, Seafood, Desserts, Fast Food",47,3.9 +6432,Drinks At Stake - Bar Exchange,Monterey,"Fast Food, Cafe, American, Italian",81,3.8 +6433,Ghungroo Club & Bar - By Gautam Gambhir,Greer,"Tea, Mexican, Bakery, Fast Food, Seafood",47,3.8 +6434,Gupta Chat Corner,Ontario,"Desserts, Pizza, Mexican, Fast Food, American, Seafood",56,3.7 +6435,Gupta Sweets & Namkeen,Baton Rouge,"French, BBQ, Desserts",68,3.5 +6436,hug!,Tulsa,"Pizza, Desserts",92,3.5 +6437,Lucky's Bakery and Patisserie,Bend,"French, Pizza, Bakery, Fast Food",12,3.9 +6438,McDonald's,Reno,"French, BBQ, Mediterranean, Seafood",63,3.7 +6439,Mughal Darbar,Vernal,"Pizza, Mexican, Bakery, Fast Food, Cafe",89,3.5 +6440,Nutritious Nation,Juneau,"Tea, Chinese, Bakery",64,3.6 +6441,Paapi Paet,Clarksburg,"Tea, Pizza, Desserts",99,3.6 +6442,The Derby Cookhouse,Harlingen,"Chinese, Pizza, Seafood, Fast Food",18,3.6 +6443,The Midnight Heroes,Rochester,"Tea, Pizza, Mediterranean, Seafood",43,3.6 +6444,World Art Dining - Brew House,Little Rock,"French, Bakery, Desserts",51,3.8 +6445,Yo! China,Burbank,"Tea, Pizza, BBQ, Cafe, Indian",91,3.6 +6446,Bake Me A Cake,Waco,"Tea, Pizza, Bakery, Fast Food, Indian",97,4.0 +6447,Bakerz Lodge,Providence,"Tea, Mexican, Fast Food, Cafe, Mediterranean",54,4.1 +6448,Hawalat Lounge & Bar,Las Vegas,"Cafe, Mexican, Indian, BBQ",49,4.0 +6449,Al Bake,Kalamazoo,"Cafe, BBQ, Italian",36,3.2 +6450,Domino's Pizza,Prescott,"Cafe, Indian, Desserts, Seafood",29,2.5 +6451,Madhuban,Kodiak,"Tea, Mexican, Desserts",47,3.1 +6452,Pind Balluchi,Charlotte,"Pizza, French, Mexican, BBQ, Cafe, Seafood",42,2.8 +6453,Subway,Yuma,"Cafe, BBQ",22,3.2 +6454,Burger King,Marquette,"Tea, Cafe, BBQ",49,3.6 +6455,Lebanese Point,Brownsville,"Bakery, BBQ, Cafe, American, Seafood",93,3.7 +6456,McDonald's,Lewiston,"Tea, Mexican, Bakery",65,3.6 +6457,Nukkadwala,Dayton,"Desserts, Tea, Fast Food, Cafe, American, Mediterranean",38,3.8 +6458,The Bunk House,North Platte,"Tea, Pizza",45,3.9 +6459,The Kathis,Appleton,"Desserts, Pizza, Mexican, Bakery, Seafood",15,2.4 +6460,Locale,Del Rio,"Desserts, Pizza, Fast Food, Chinese, American, Seafood",43,4.4 +6461,The Coffee Shop,Iron Mountain,"Bakery, Indian, Seafood",81,4.4 +6462,Chakhna Food Point,Jacksonville,"Bakery, Desserts",35,2.9 +6463,Da Pizza Corner,Presque Isle,"Tea, French, Mexican, BBQ, Cafe",88,2.9 +6464,Parashar's,Reno,"Desserts, Pizza, Italian, Mexican, Fast Food, Cafe",97,2.9 +6465,Cafe Coffee Day,Vernal,"Tea, Mexican, BBQ, Pizza",85,0.0 +6466,Cake Walk,Hancock,"Bakery, Desserts",57,0.0 +6467,Chhotu Restaurant,Sault Ste. Marie,"French, Pizza, Fast Food",62,0.0 +6468,Dabbba Wala Home Away,Greensboro,"Chinese, Pizza, Fast Food",44,0.0 +6469,Foodieholic,Elmira,"Pizza, American, Desserts",58,0.0 +6470,Fourteen Eleven Tea Cafe,Worcester,"Tea, French, BBQ, Fast Food, Cafe, Indian",95,0.0 +6471,Hungry Folks Food Corner,Roanoke,"Tea, Mexican, Pizza, Seafood",59,0.0 +6472,Hungry Folks,Wilmington,"Tea, French, BBQ, Desserts",91,0.0 +6473,Hussain - UP Ki Mashoor Biryani,Hyannis,"Cafe, BBQ, Desserts",61,0.0 +6474,Just Vada Pav,Billings,"Tea, Pizza, French, Mexican, BBQ, Seafood",15,0.0 +6475,Mangal Ji and Gupta Ji Dhaba,Huntsville,"Seafood, Bakery, Fast Food",86,0.0 +6476,Pandey Ji Restaurant,Texarkana,"Cafe, Pizza, Fast Food",75,0.0 +6477,Quality Restaurant,Decatur,"Pizza, Mediterranean, Fast Food",98,0.0 +6478,Ravi Ke Parathe,Pellston,"Tea, American, Indian, Fast Food",65,0.0 +6479,Sahara Restaurant,Long Beach,"Tea, Mexican, Bakery, Fast Food, Seafood",41,0.0 +6480,Shere-E-Punjab,Branson,"Tea, Pizza, French, Fast Food, Cafe",41,0.0 +6481,Shree Jagannath Restaurant,Raleigh,"Desserts, Italian, Bakery, Cafe, Seafood",28,0.0 +6482,Sumona Restaurant,Montgomery,"Tea, Bakery, BBQ, Desserts",75,0.0 +6483,The Hubbub Cafe and Restaurant,Wenatchee,"French, BBQ, Desserts, Fast Food",31,0.0 +6484,Welcome Fast Food & Parantha,Milwaukee,"Cafe, Bakery, Pizza, Mediterranean",47,0.0 +6485,Abdul Muradabadi Chicken,Laramie,"Tea, Mediterranean, Desserts",26,2.9 +6486,Anupam Sweets,Brunswick,"Cafe, Desserts, Seafood",78,2.5 +6487,Colonel's Kababz,Pasco,"Tea, American, Indian, Fast Food",26,3.2 +6488,Green Chick Chop,Atlantic City,"Bakery, Pizza, American, Desserts",58,3.0 +6489,Jasmine Fast Food Centre,Toledo,"BBQ, Desserts",19,2.9 +6490,Khalsa Restaurant,Sault Ste. Marie,"Cafe, Desserts, Italian",89,2.9 +6491,Kitchen King,San Angelo,"Cafe, Bakery, Indian, Seafood",31,2.6 +6492,Laxmi Corner,Yakutat,"Desserts, Tea, Cafe, Indian, Seafood",82,3.0 +6493,Nazeer Delicacies,Columbus,"French, Pizza, Desserts",91,3.3 +6494,Vdesi,Savannah,"Tea, Cafe, Desserts, Seafood",81,3.1 +6495,Alkakori Alkauser,Valparaiso,"Cafe, Pizza, Bakery, Chinese, Indian",24,3.7 +6496,Mathew's Cafe,Appleton,"Mexican, Bakery, BBQ, Cafe, Indian",13,3.7 +6497,Supreme Bakery,Brunswick,"Desserts, Tea, Cafe, Chinese, American",67,3.9 +6498,The Midnight Heroes,Redding,"Cafe, Mexican, Fast Food",100,3.6 +6499,"34, Chowringhee Lane",Kalispell,"Tea, French, BBQ, Fast Food, Mediterranean",18,0.0 +6500,Aggarwal Sweets,Grand Forks,"Tea, Cafe, Bakery, Pizza",44,0.0 +6501,Alam Biryani,Christiansted,"Italian, Bakery, Fast Food, Cafe, Seafood",88,0.0 +6502,Behrouz Biryani,Norfolk,"Tea, Bakery",67,0.0 +6503,Biryani Point,Washington,"Desserts, Tea, Pizza, Cafe, American",46,0.0 +6504,Chinese Hut,Palm Springs,"Tea, Cafe, Mexican, Fast Food",90,0.0 +6505,Dada Ka Dhaba,Portsmouth,"Desserts, Mexican, Cafe, Mediterranean, Seafood",41,0.0 +6506,Die B韄ckerei,Gulfport,"Desserts, Pizza, Bakery, BBQ, Indian",18,0.0 +6507,Faaso's,Rockford,"Bakery, Desserts, Seafood",98,0.0 +6508,Gupta Ji Ka Dhaba,Green Bay,"Tea, Fast Food, Seafood",62,0.0 +6509,Hot & Tasty,Lawton,"French, BBQ, Cafe, Italian",43,0.0 +6510,Kaka Da Dhaba,Bismarck,"Desserts, Pizza, BBQ, Chinese, Seafood",53,0.0 +6511,Kingdom Restaurant,Fort Leonard Wood,"Cafe, Seafood",95,0.0 +6512,Little Delhi,Santa Rosa,"Tea, Cafe, Desserts, Seafood",64,0.0 +6513,Million Kitchen,Longview,"Desserts, Cafe, Mexican, BBQ, Bakery, Chinese",54,0.0 +6514,Ok Indian & Chinese Food Corner,Kalispell,"Desserts, BBQ, Fast Food, Chinese, Mediterranean",58,0.0 +6515,Ovenstory Pizza,San Luis Obispo,"Tea, Seafood, Desserts, Italian",95,0.0 +6516,Pakeeza Chicken Corner,Owensboro,"Tea, Pizza, Bakery, BBQ, Mediterranean",53,0.0 +6517,Rapchick Biryani,Oklahoma City,"Desserts, Tea, French, Mexican, BBQ, Seafood",28,0.0 +6518,Rupa Bangali Dhaba,Phoenix,"Cafe, Pizza, Indian",15,0.0 +6519,Sindh Snacks,Las Vegas,"Cafe, Mexican, BBQ, Bakery",37,0.0 +6520,Vaishanavi Food Store,Salisbury,"Bakery, Indian, BBQ, Italian",78,0.0 +6521,"Ada ""e"" Haandi's",Staunton,"Chinese, Desserts, Tea, Pizza, French, Cafe",63,2.4 +6522,Karnataka Food Centre,Columbus,"French, BBQ, Fast Food, Cafe, Mediterranean",18,4.1 +6523,Cafe Coffee Day,Bemidji,"Tea, Chinese, Fast Food",36,2.9 +6524,Savannah Bar - Radisson Blu Plaza Delhi,Memphis,"Tea, Italian, Bakery, Cafe, Mediterranean",79,3.3 +6525,Neung Roi - Radisson Blu Plaza Delhi,Hattiesburg,"Pizza, Desserts, Fast Food",39,4.5 +6526,R The Lounge - Radisson Blu Plaza Delhi,Newport News,"French, Desserts, Fast Food",60,3.7 +6527,The Pastry Shop - Radisson Blu Plaza Delhi,Chicago,"Tea, Cafe, Bakery",87,3.6 +6528,NYC - Radisson Blu Plaza Delhi,Miami,"Tea, BBQ",95,4.4 +6529,The Great Kabab Factory - Radisson Blu Plaza Delhi,Wrangell,"French, Mexican, Pizza, Fast Food",66,4.2 +6530,Cup Cakes - Radisson Blu,Wenatchee,"Seafood, Indian, Desserts, Italian",97,3.1 +6531,Oro The Bar - Radisson Blu,Sitka,"Chinese, Desserts, Tea, Bakery, Cafe, Mediterranean",99,3.3 +6532,McDonald's,Cedar Rapids,"American, Mediterranean, BBQ, Seafood",25,3.4 +6533,Mughal Mahal,Escanaba,"Desserts, Seafood",14,3.2 +6534,Imly,Yuma,"Bakery, Mediterranean, Seafood",60,3.9 +6535,Lanterns Kitchen & Bar,Clarksburg,"Tea, Italian, BBQ, Fast Food, Seafood",60,3.8 +6536,Guru Om Vanna,Amarillo,"Desserts, Tea, Bakery, Indian, Seafood",43,0.0 +6537,Khaao Peeyo,Reno,"Desserts, Pizza, Indian, Bakery, American, Seafood",24,0.0 +6538,New Chow Maun,Aberdeen,"Tea, Chinese, Bakery, Italian",35,0.0 +6539,Oye!! Shawarma,Hancock,"Desserts, Tea, BBQ, Bakery, American",43,0.0 +6540,27 China Street,Newburgh,"Tea, Mexican, BBQ, Fast Food",28,3.4 +6541,Ada'e Handi,Punta Gorda,"Tea, American, BBQ",25,2.5 +6542,Alkauser,Lake Charles,"Pizza, Italian, Fast Food, Cafe, Indian",73,3.4 +6543,Barbeque Creation By Kadhai Tadka,College Station,"French, BBQ, Cafe",87,2.5 +6544,Baskin Robbins,San Luis Obispo,"Chinese, Cafe, Fast Food",66,3.3 +6545,Bikaner Sweets Corner,Rock Springs,"Desserts, Tea, Italian, BBQ, Cafe",60,2.8 +6546,Biryaniwala,Aberdeen,"Pizza, Desserts",15,2.6 +6547,Cafe Coffee Day,Killeen,"Cafe, Mexican, Bakery, Seafood",61,2.9 +6548,Chinese Corner,Wenatchee,"Cafe, American, Desserts",24,2.6 +6549,Choice Corner,Santa Ana,"Tea, Italian, Cafe, Mediterranean, Seafood",20,3.0 +6550,Chowringhee,Saipan,"Tea, Bakery, Fast Food, Indian, Seafood",83,2.7 +6551,Darshan Dhaba,Charleston,"Cafe, Bakery, Desserts, Fast Food",36,2.7 +6552,Domino's Pizza,Scranton,"Desserts, Tea, Italian, BBQ, Cafe, Indian",87,2.9 +6553,Durga Dhaba,Seattle,"Seafood, American, Cafe, Fast Food",95,2.9 +6554,Flashback Midnight Hunger,Hilo,"Chinese, Cafe, Seafood",45,3.4 +6555,Flavours of Punjab,Detroit,"Desserts, Tea, Fast Food, Cafe, American",28,2.5 +6556,Flirty Momo's,Newburgh,"Desserts, Tea, Pizza, Italian, Cafe",52,3.1 +6557,Food Factory,Syracuse,"Tea, Pizza, Seafood",13,3.0 +6558,Foodies Joint,Reno,"Tea, Pizza, French, Bakery, Seafood",19,3.4 +6559,Fresh Meat CO,Atlantic City,"Tea, Bakery, American, Fast Food",16,2.9 +6560,Friends Restaurant,St. Cloud,"Pizza, Fast Food",93,2.8 +6561,Giani,Sarasota,"Seafood, Bakery, Mediterranean, Fast Food",22,3.3 +6562,Green Chick Chop,Yuma,"Tea, Cafe, BBQ, Chinese, Seafood",73,3.2 +6563,Havmor Ice Cream,Sitka,"Tea, Seafood",84,2.8 +6564,Hot Pot,Laredo,"Desserts, French, Bakery, Cafe, Indian",57,2.5 +6565,Hyderabadi Biryani Parlour,Bemidji,"Fast Food, Seafood",93,2.9 +6566,iGNiTE,Gainesville,"Tea, Pizza, French, BBQ, Indian, Seafood",12,3.0 +6567,Just Cakez,Reno,"Desserts, Pizza, French, Fast Food, Cafe, Indian",74,3.2 +6568,Kay's Bar-Be-Que,Idaho Falls,"Mexican, Pizza, Fast Food",11,3.0 +6569,Kolkata Kathi Roll,Scottsbluff,"Pizza, Indian, Fast Food",15,2.6 +6570,Madras Cafe,Akron,"Tea, BBQ, Fast Food, American, Seafood",32,2.7 +6571,Mama's Chinese Kitchen,Honolulu,"Tea, Pizza, Desserts, Italian",13,3.0 +6572,Mama's Nu Khana Khazana,Augusta,"Cafe, Indian, BBQ",25,2.6 +6573,Marathi Katta,Idaho Falls,"Tea, Cafe, Mexican, Desserts",81,2.7 +6574,Mitra Da Dhaba,Roswell,"Chinese, Pizza, American, BBQ",80,2.8 +6575,Moti Mahal Delux - Kebab Trail,Greenville,"Desserts, Tea, French, Bakery, Mediterranean",86,3.2 +6576,Nirula's Ice Cream,Santa Rosa,"Tea, Mediterranean, Desserts, Fast Food",28,2.9 +6577,Oberoi Biryani,Petersburg,"Desserts, Pizza, French, American, Seafood",96,2.6 +6578,Pappu Ka Dhaba,Hilton Head,"Desserts, Tea, Pizza, Cafe, American",67,3.1 +6579,Peshawar Sweets Shop,Portland,"Tea, Mexican, Indian, Pizza",67,3.4 +6580,Piyu Kitchen,Fort Wayne,"Tea, Bakery, BBQ, Cafe, American, Mediterranean",83,3.2 +6581,Posh Spice,Martha's Vineyard,"Tea, Cafe, Seafood",61,3.0 +6582,Prince Chicken & Mutton Shop,Gainesville,"Tea, Chinese, Mediterranean, Desserts",47,2.6 +6583,Punjab Chicken & Bar-Be-Que,Anchorage,"Mexican, Bakery, BBQ, Cafe, Seafood",94,2.9 +6584,Republic of Chicken,Montgomery,"Cafe, Pizza, Indian, Seafood",46,2.8 +6585,Sagar Ratna,Richmond,"French, Pizza, Cafe, Seafood",27,2.7 +6586,Sardar A Pure Meat Shop,Plattsburgh,"French, BBQ, Fast Food",40,3.0 +6587,Shama Chicken Corner,Paducah,"Tea, Bakery, Desserts, Italian",94,3.0 +6588,Shawarma King's,Milwaukee,"Cafe, American, Desserts",32,3.1 +6589,Sindh Sweet Corner,Toledo,"Tea, French, Mexican, Bakery",58,2.7 +6590,Singh Tawa Corner,Wrangell,"Tea, Chinese, American, Fast Food",14,2.6 +6591,Singh's Kitchen,Charleston,"Cafe, Pizza",32,2.7 +6592,South Indian Cafe,State College,"Desserts, Mexican, Bakery, Fast Food, American",90,2.7 +6593,Subway,Akron,"Bakery, Pizza, American, Seafood",100,3.4 +6594,Swaad Bar-Be-Que,Indianapolis,"Tea, Cafe, Desserts",94,3.2 +6595,Tadak Punjabi,Fresno,"Cafe, Bakery, Mediterranean, Seafood",53,2.7 +6596,Tandoori Delights,Scranton,"Pizza, Seafood",67,2.5 +6597,The Culinary Pitaara,San Juan,"Cafe, French, Chinese, Desserts",52,2.8 +6598,The Grill Cafe,Wichita,"Tea, Cafe, BBQ, Desserts",66,3.4 +6599,The Sunset,Gunnison,"Pizza, French, Mexican, BBQ, Seafood",59,2.6 +6600,Tomatoes Kitchen,Dodge City,"Seafood, Pizza, Mediterranean, Italian",54,2.9 +6601,Udupi Eating House,Moline,"Tea, Cafe, Italian",53,3.2 +6602,Wrapss,Alpena,"Chinese, French, Bakery, Cafe, Seafood",79,3.1 +6603,Burger Point,Des Moines,"Cafe, Mexican, BBQ, Desserts",31,3.7 +6604,Kings,San Luis Obispo,"Desserts, BBQ, Fast Food, Mediterranean, Seafood",68,3.6 +6605,Millionaire - Powered by Wrapss,Cedar Rapids,"Desserts, Tea, Cafe, Italian, Bakery, Chinese",64,3.5 +6606,Punjabi Chaap Corner,Austin,"Desserts, Seafood",99,3.6 +6607,Spooky Sky,Reno,"Tea, Pizza, American, Seafood",34,3.5 +6608,Standard Corner,Indianapolis,"Chinese, American, Desserts, Seafood",65,3.6 +6609,The Canteen,Akron,"Fast Food, Pizza, Desserts, Seafood",53,3.5 +6610,The Diet Kitchen,Jackson,"Tea, Chinese, Pizza, Seafood",20,3.5 +6611,The Flashback,Great Falls,"Chinese, Pizza, BBQ",55,3.7 +6612,The Mashal,Durango,"Italian, BBQ, Fast Food, Cafe, American, Seafood",85,3.5 +6613,Chillax Cafe And Bistro,Ogden,"Tea, Mexican, Desserts",53,0.0 +6614,Jee Aao Jee Chole Bhature,Richmond,"Pizza, Bakery, Seafood",99,0.0 +6615,LSK Express,Cleveland,"Indian, Mediterranean, BBQ, Seafood",29,0.0 +6616,Aggarwal Sweets India,Moab,"Chinese, Pizza, Mediterranean, Desserts",44,2.4 +6617,Dilli Treat,Jackson,"Indian, BBQ, Seafood",20,4.2 +6618,Dukes Pastry Shop,Traverse City,"Fast Food, BBQ, Italian",77,4.2 +6619,HotMess Bakes,Cape Girardeau,"Seafood, Desserts, Fast Food",39,4.1 +6620,London Street Kitchen,Santa Maria,"Chinese, Cafe, Seafood",90,4.2 +6621,Bablu Chic-Inn,Minneapolis,"Tea, Pizza, BBQ, American, Seafood",95,2.6 +6622,Babu Jhatka,Devils Lake,"Mexican, BBQ, Fast Food, Cafe, Indian",73,2.8 +6623,Bal Gopal,Grand Rapids,"Pizza, French, BBQ, Fast Food, Cafe",51,3.4 +6624,Bharat Sweets,Rhinelander,"Tea, Cafe, Fast Food",36,3.0 +6625,Cafe Blue Tomato,Decatur,"Tea, Italian, Fast Food, Chinese, Seafood",36,3.2 +6626,Cafe TAB,Lewisburg,"Pizza, Desserts, Seafood",65,3.0 +6627,Cake-O-Licious,Shreveport,"Tea, Indian, BBQ",61,3.3 +6628,Chaap Point,West Yellowstone,"Tea, French, Fast Food, Seafood",58,3.2 +6629,Chawla Family Restaurant,Bemidji,"Chinese, Bakery, American, Cafe",88,2.9 +6630,Chawla Family Restaurant,Des Moines,"Fast Food, Cafe, Italian",28,3.2 +6631,Chawla Restaurant,Moab,"Tea, Italian, Bakery, Fast Food, Cafe",85,3.1 +6632,Chawlas 2,San Diego,"Desserts, Fast Food, American, Mediterranean, Seafood",91,3.0 +6633,Chicken Addiction,Bismarck,"Cafe, Mexican, Fast Food",23,3.1 +6634,Crave Busters,Salina,"Tea, Pizza, French, BBQ, Fast Food, American",12,3.4 +6635,Garage,Omaha,"Fast Food, BBQ, Italian",67,3.0 +6636,Gola Sizzlers,Branson,"Desserts, Pizza, Fast Food, Chinese, Indian, Seafood",17,3.4 +6637,Golden Tandoor,Billings,"Tea, French, BBQ, Bakery, Cafe, Indian",35,3.2 +6638,Green Chick Chop,Akron,"Desserts, Tea, Mexican, Fast Food, Cafe, Mediterranean",39,3.1 +6639,Indo Traditional Kulfi,Idaho Falls,"Desserts, Tea, Mexican, Cafe, American",87,3.1 +6640,Invitation Foodex,Buffalo,"Desserts, Pizza, Italian, Bakery, BBQ, Mediterranean",85,3.2 +6641,King's Kabab,Baltimore,"Tea, Italian, Fast Food, American, Seafood",54,3.2 +6642,New Kadimi,Kansas City,"Pizza, Seafood",82,3.3 +6643,Paramjeet Machi Wala,San Antonio,"Bakery, Indian, Fast Food",31,3.4 +6644,Polka Pastry & Snack Bar,Niagara Falls,"Tea, Bakery, BBQ, Seafood",62,3.4 +6645,Punnu Biryani,Ketchikan,"Seafood, Bakery, BBQ, Italian",47,2.6 +6646,Raju Chinese Food,Great Falls,"Mexican, Bakery, Fast Food",90,3.2 +6647,Sandoz,Pasco,"Bakery, Mexican, Pizza, Desserts",18,3.3 +6648,Scoop Junction,Bishop,"Tea, Cafe, Bakery, Desserts",41,3.3 +6649,Shri Durga Dosa Corner,Alamosa,"Pizza, Italian, BBQ, Fast Food, Cafe, Mediterranean",80,3.0 +6650,Soni Bakers,Minneapolis,"Pizza, Bakery, Seafood",42,3.4 +6651,Subway,Elmira,"Tea, Bakery, Cafe, Mediterranean, Seafood",42,2.7 +6652,The Tandoor,Boise,"Cafe, Mexican, Pizza",73,2.6 +6653,Twenty Four Seven,Evansville,"Cafe, Mediterranean, Fast Food",80,3.2 +6654,Unique Tasty Bites,Raleigh,"Tea, Pizza, Indian",30,3.0 +6655,Band Baaja Baaraat,Lansing,"Bakery, Pizza, American, Seafood",21,4.6 +6656,Kopper Kadai,Birmingham,"Desserts, Pizza, Mexican, BBQ, Fast Food",86,4.8 +6657,Naturals Ice Cream,Mosinee,"Italian, Bakery, BBQ, Cafe, Indian",79,4.7 +6658,Qubitos - The Terrace Cafe,Evansville,"Desserts, Bakery, Fast Food, Cafe, Mediterranean",70,4.5 +6659,The California Boulevard,White Plains,"Cafe, Mexican, Bakery, Desserts",56,4.6 +6660,Anjlika Pastry Shop,Decatur,"Tea, French, BBQ, Seafood",10,3.9 +6661,Atul Chaat Corner,Kodiak,"Tea, American, Fast Food",89,3.8 +6662,Bake A Wish,Kahului,"French, Pizza, Fast Food",52,3.7 +6663,Berco's,Durango,"Cafe, Bakery, Indian, Mediterranean",33,3.6 +6664,Bikanervala,Aguadilla,"Desserts, Pizza, Italian, Mexican, Bakery, Fast Food",72,3.8 +6665,Bintang Sweet Thrills,Santa Maria,"Pizza, Bakery, Mediterranean",86,3.5 +6666,Boombox Cafe Reloaded,Pittsburgh,"Tea, Cafe, Mexican",82,3.9 +6667,Cafe Foto Club,Akron,"Tea, Cafe, American, Desserts",81,3.8 +6668,Capital Grill,Niagara Falls,"French, Pizza, BBQ",74,3.8 +6669,CG's - Lounge Cafe Bar,Dayton,"Pizza, Indian, Seafood",29,3.9 +6670,Dhaba,Valparaiso,"Tea, BBQ, Cafe, American, Seafood",69,3.7 +6671,Domino's Pizza,Aberdeen,"Cafe, Pizza, Mediterranean, Seafood",80,3.5 +6672,Garam Dharam,Augusta,"Tea, Pizza, French, BBQ, Cafe",44,3.7 +6673,Gayway Bakery,Miami,"Tea, Pizza, Bakery, BBQ, American",57,3.6 +6674,Giani's,Hattiesburg,"Chinese, Seafood, Fast Food",97,3.9 +6675,Grub House,Hibbing,"Chinese, Desserts, Indian, BBQ",73,3.5 +6676,Habibi,Chattanooga,"Cafe, BBQ, Seafood",95,3.7 +6677,High Street Caf愆,Gulfport,"Bakery, Pizza, Desserts",89,3.8 +6678,Hungry Heroes,Flagstaff,"Chinese, BBQ, Desserts",25,3.8 +6679,IKKA - The Ace Bar,Bemidji,"French, BBQ, Desserts",17,3.6 +6680,Jungle Jamboree,Walla Walla,"Desserts, Mexican, Bakery, BBQ, Cafe",39,3.9 +6681,Lord of the Drinks Chamber,Juneau,"French, Mexican, BBQ, Bakery",45,3.9 +6682,Marine Drivve - Club & Courtyard,Brunswick,"Tea, Mexican, Fast Food",100,3.8 +6683,McDonald's,Fresno,"Tea, Seafood, Pizza, Italian",78,3.7 +6684,Mister Gulati Bakers,Lake Charles,"Bakery, Indian, BBQ",35,3.8 +6685,My Fit Food,Tallahassee,"Pizza, BBQ, Cafe, Indian, Mediterranean, Seafood",59,3.7 +6686,Otik Cake Shop,Madison,"Desserts, Pizza, BBQ, American, Seafood",24,3.8 +6687,Pind Balluchi,Bakersfield,"Tea, Pizza, Italian, Fast Food, Chinese, Seafood",28,3.6 +6688,SardarBuksh Coffee & Co.,Moline,"Fast Food, Tea, Bakery, Italian",37,3.6 +6689,Sethi's Restaurant & Barbeque,Atlanta,"Pizza, American, Bakery, Cafe, Indian, Seafood",19,3.7 +6690,Sufiaana,Palm Springs,"Chinese, BBQ, Mediterranean, Desserts",48,3.8 +6691,The Burger Club,Gunnison,"Desserts, Tea, Pizza, Italian, Cafe, Mediterranean",85,3.9 +6692,The Junkyard Caf愆,Sioux City,"Fast Food, Seafood, Bakery, Italian",99,3.8 +6693,The Masterpiece Cafe,Richmond,"Cafe, Mexican, Bakery, Fast Food",82,3.5 +6694,The Momoz Hub,Williston,"Chinese, Mediterranean, Desserts, Seafood",79,3.6 +6695,The Post Office Cafe,Madison,"Tea, Cafe, BBQ, Seafood",84,3.6 +6696,The Royal Turban,Eau Claire,"Bakery, Pizza, BBQ, Seafood",90,3.8 +6697,The Vintage Bakers,Santa Rosa,"Tea, Seafood, Italian",56,3.7 +6698,Wok In The Clouds,Monterey,"Tea, French, Pizza, Cafe",71,3.7 +6699,Aggarwal Sweet Centre,Hattiesburg,"Tea, Mexican, Pizza, Fast Food",85,0.0 +6700,Crazy Cow,Iron Mountain,"Cafe, Desserts, Seafood",41,2.2 +6701,AMPM Caf愆 & Bar,Boise,"Desserts, Cafe, Mexican, Chinese, Seafood",40,4.1 +6702,Caf愆 Foreground,Harrisburg,"Tea, Cafe, Indian",65,4.2 +6703,Calendar's Kitchen by Satish Kaushik,Medford,"Chinese, Bakery, BBQ, Desserts",28,4.0 +6704,Desee Dakshin Coastal Cafe,Huntsville,"Desserts, Cafe, BBQ, Bakery, Chinese",96,4.0 +6705,Food Scouts,Jacksonville,"Tea, Pizza, French, Bakery, BBQ, American",36,4.4 +6706,Ghar Bistro Cafe,Petersburg,"Cafe, Pizza",83,4.4 +6707,Goosebumps,Lihue,"Tea, Bakery, American, Mediterranean",21,4.2 +6708,Kalol- Bar Te Kitchen,Ponce,"Tea, Seafood",68,4.0 +6709,Lights Camera Action - Air Bar,Alamosa,"Tea, Italian, Bakery, Cafe, Seafood",27,4.4 +6710,Midnight Hunger Hub,La Crosse,"Tea, Pizza, BBQ, Cafe, Indian",64,4.3 +6711,National Highway 44,Juneau,"Tea, Bakery, Fast Food, Chinese, Mediterranean, Seafood",70,4.4 +6712,Pirates of Grill,Tucson,"French, Bakery, BBQ, Fast Food, Chinese",52,4.1 +6713,Prem Di Hatti,Midland,"Tea, Chinese, Bakery, Cafe",98,4.0 +6714,Showstopper,Lewisburg,"Fast Food, Chinese, Cafe, Seafood",77,4.1 +6715,Spotlight Bistro & Bar,Greensboro,"Cafe, Bakery, Desserts, Italian",82,4.0 +6716,The Diet Kitchen,Cincinnati,"Bakery, Fast Food",80,4.1 +6717,The Drunk House,Santa Maria,"Desserts, Tea, Bakery, Fast Food, American, Mediterranean",91,4.2 +6718,The Headquarter,San Angelo,"Tea, Desserts",51,4.1 +6719,Tippling Street,College Station,"Pizza, American, Mediterranean, Fast Food",80,4.0 +6720,"34, Chowringhee Lane",San Luis Obispo,"BBQ, Mediterranean, Desserts",34,3.3 +6721,Apni Rasoi,Newark,"Tea, Mexican, Desserts, Seafood",42,3.0 +6722,Apsara Restaurant,Evansville,"Cafe, Mexican, Indian, Fast Food",34,2.7 +6723,Ashu Bhature Wala,Rapid City,"Cafe, American, Desserts, Fast Food",82,3.3 +6724,Bakery Wala - The Cake Shop,International Falls,"Pizza, Fast Food",71,3.4 +6725,Bikanervala,Dillingham,"Bakery, BBQ, Desserts, Fast Food",57,3.4 +6726,Chalte Firte Momos & Special Foods,International Falls,"Cafe, Mexican, Bakery, BBQ, Chinese, Seafood",10,3.2 +6727,Chicken Khurana,Manchester,"Tea, Bakery, Pizza, Desserts",52,2.7 +6728,Chit Chat,Knoxville,"Pizza, Fast Food",15,3.1 +6729,Domino's Pizza,New York,"Tea, French, Pizza, Indian",86,3.3 +6730,Gurdasman Punjabi Khana & Caterers,Spokane,"Tea, Cafe, Bakery, Fast Food",85,3.3 +6731,KFC,Wichita Falls,"Cafe, Seafood, Desserts, Fast Food",33,3.1 +6732,Malika Bakers Pastry Shop,Watertown,"Tea, Chinese, Pizza, Cafe",23,3.4 +6733,McDonald's,Sacramento,"Desserts, Fast Food",63,3.4 +6734,Nakshatra Punjabi Rasoi,Del Rio,"Pizza, Mexican, Bakery, Fast Food, American",45,3.3 +6735,New Eleven to Eleven,Branson,"Tea, BBQ",13,3.0 +6736,Pasta Hut,Sacramento,"Tea, Pizza, BBQ, Indian, Seafood",18,3.3 +6737,Patiala Shahi,Greenville,"Pizza, Bakery, Cafe, Mediterranean, Seafood",74,3.4 +6738,Pavitra Bakers,Bakersfield,"Pizza, Bakery, BBQ, Seafood",84,3.2 +6739,Punjabi Rasoi,Santa Maria,"Desserts, Mexican, Fast Food, American, Seafood",11,2.8 +6740,Puratan - Family Restaurant & Bar,Evansville,"Cafe, Desserts, Fast Food",80,3.3 +6741,Sardar A Pure Meat Shop,Fort Myers,"Chinese, Bakery, Pizza",28,3.4 +6742,Spice Court,Lawton,"Desserts, Italian, Bakery, Fast Food, Seafood",10,2.6 +6743,Subway,Phoenix,"Cafe, Chinese, Seafood, Fast Food",25,3.3 +6744,Urban Garden Cafe,Fort Myers,"Tea, Cafe, BBQ, Chinese, Seafood",77,3.1 +6745,Behrouz Biryani,Gulfport,"Tea, French, Cafe, Fast Food",28,3.6 +6746,BTW,Champaign,"Desserts, Pizza, Italian, Cafe, Indian, Seafood",12,3.5 +6747,Chalte Firte Momos & Special Foods,Kotzebue,"Tea, Chinese, BBQ",72,3.5 +6748,Domino's Pizza,Boise,"Pizza, Italian, BBQ, Fast Food, Mediterranean",25,3.5 +6749,Gaurav Pastry Palace,Ketchikan,"Bakery, Desserts, Seafood",35,3.6 +6750,Jhakkas,Greensboro,"Cafe, French, Bakery, Fast Food, Chinese, Seafood",71,3.5 +6751,Kebab Xpress,San Jose,"Bakery, Mexican, Pizza, Mediterranean",29,3.5 +6752,Keventers,Lubbock,"Desserts, Tea, Italian, Mexican, Bakery, Seafood",51,3.8 +6753,McDonald's,Juneau,"Fast Food, Chinese, Indian, Seafood",38,3.5 +6754,Moti Mahal Delux,Belleville,"Cafe, American, Desserts",55,3.5 +6755,Mr. Sub,Fort Myers,"Pizza, Bakery, Fast Food, Chinese, Seafood",17,3.5 +6756,Nik's Kitchen,Madison,"Tea, Italian, BBQ, Mediterranean, Seafood",10,3.8 +6757,Punjabi Dhaba,Paducah,"French, Bakery, Desserts, Italian",10,3.6 +6758,Satvik Rasoi,Watertown,"Tea, Cafe, BBQ, Fast Food",82,3.8 +6759,Shree Gopal Ji Chole Bhature,Ithaca,"Tea, Italian, French, BBQ, Fast Food, Cafe",86,3.9 +6760,South Indian Corner,Worcester,"Cafe, Mexican, Bakery, Seafood",15,3.5 +6761,The Chocolate Villa,Trenton,"Tea, Italian, French, Bakery, BBQ, Fast Food",75,3.9 +6762,Vaishno Punjabi Dhaba,Rapid City,"Cafe, BBQ, Desserts, Italian",65,3.5 +6763,WTF - What's the Food?,Williston,"Pizza, Desserts",79,3.5 +6764,Handi Chhareyan Di,Cape Girardeau,"Mexican, Bakery, Mediterranean, Desserts",32,2.3 +6765,Svaruchi Bhoj,Erie,"Desserts, Pizza, Bakery, Chinese, Mediterranean",46,2.4 +6766,Caffe 9,Moab,"Cafe, Bakery",60,4.2 +6767,Jai Vaishno Rasoi,Monterey,"Tea, Cafe, BBQ, Desserts",74,4.2 +6768,Chidya Ghar - Roseate House,Washington,"Tea, Bakery, BBQ, Seafood",70,2.9 +6769,DEL - Roseate House,San Antonio,"Fast Food, French, Mexican, Seafood",63,3.6 +6770,Roasted - Roseate,Santa Rosa,"Seafood, Mexican, Pizza, Italian",33,0.0 +6771,Adish,Erie,"Cafe, Pizza, American, BBQ",68,3.1 +6772,Amritsari Dhaba,Fresno,"Desserts, Tea, Italian, Bakery, Mediterranean, Seafood",14,3.2 +6773,Amritsari Xpress,Salisbury,"Tea, Pizza, Bakery, Mediterranean, Seafood",46,3.0 +6774,Anupam Sweets,Charleston,"Tea, Cafe, Mediterranean, Desserts",51,2.6 +6775,B Two,Oakland,"Tea, Chinese, Cafe",83,3.0 +6776,Babbu Da Punjabi Dhaba,Oklahoma City,"Mexican, Pizza, Desserts, Seafood",76,3.3 +6777,Baker's Byte,Syracuse,"Cafe, Desserts, Seafood",82,3.3 +6778,Bamboo Hut,Augusta,"Mexican, BBQ, Mediterranean, Desserts",80,3.4 +6779,Bengal Sweet Corner,Bismarck,"Tea, Bakery, American, Indian",15,2.8 +6780,Cafe Coffee Day - The Lounge,Alamosa,"Cafe, American, BBQ, Italian",23,2.5 +6781,Cafe Coffee Day,Medford,"Cafe, Italian, BBQ, Fast Food, Chinese",78,2.8 +6782,Cake Away,Lewisburg,"Chinese, Cafe, Desserts",99,3.0 +6783,Chanky Restruoo,Miami,"Tea, Cafe, American, Desserts",56,3.0 +6784,Chawla Fast Food,Hibbing,"Tea, Pizza, American, Fast Food",38,2.9 +6785,Chawnsan Chef,Burbank,"Tea, Cafe, BBQ, Fast Food",20,3.4 +6786,China King,Mason City,"Cafe, Bakery, Seafood",13,3.1 +6787,Dec,Minot,"Tea, Mexican, Desserts",17,3.3 +6788,Desi Zaika,Portland,"Tea, Cafe",18,2.6 +6789,Druk,Santa Fe,"Desserts, Italian, Mexican, Fast Food, Cafe, Seafood",68,2.8 +6790,Flavours of Tibet,Martha's Vineyard,"Tea, Cafe, BBQ, Chinese, American",89,3.3 +6791,Get Lost in Flavours,Saipan,"Tea, Indian, Fast Food",14,2.6 +6792,Giani,Paducah,"French, Pizza, Desserts",99,2.9 +6793,Green Chick Chop,Pocatello,"Chinese, Bakery, Cafe, Fast Food",66,3.3 +6794,Grover Dhaba,Palm Springs,"Desserts, Mexican, Bakery, BBQ, Cafe",70,3.1 +6795,Gupta's Rasoi,San Francisco,"Cafe, Bakery, BBQ, Mediterranean",13,2.8 +6796,Hangchuaa's Chinese Food Corner,Rockford,"Tea, BBQ, Seafood",64,3.1 +6797,High On Burgers,Gulfport,"Desserts, Bakery, BBQ, Pizza",28,3.2 +6798,Hot Paprika,Manchester,"Bakery, Pizza, Cafe, Desserts",47,2.7 +6799,Jalsa,Hilo,"Tea, French, Cafe",76,2.7 +6800,KPG Express,Valparaiso,"French, Indian, BBQ, Seafood",51,3.3 +6801,Le Himalaya,Minot,"Pizza, Italian, Bakery, Fast Food, American",93,3.1 +6802,Lunia Italian,Saipan,"Bakery, American, Desserts",28,3.4 +6803,Mahipal Dhaba,Aguadilla,"Desserts, Pizza, French, Cafe, American",74,2.8 +6804,Morong Ki,Lawton,"Fast Food, Bakery, Indian, Seafood",74,3.0 +6805,Moti Mahal Delux - Tandooori Trail,Branson,"Tea, Bakery",34,2.7 +6806,Pooja Take Away Kitchen,St. Louis,"Desserts, Cafe, BBQ, Fast Food, Chinese",61,2.7 +6807,Red Chilli,Laramie,"Tea, Cafe, BBQ, Chinese, American",94,3.0 +6808,Saturn,Fort Leonard Wood,"Bakery, Mexican, American, Fast Food",88,2.8 +6809,Smokey Flavours,Manchester,"Tea, French, Fast Food",89,3.3 +6810,Subway,Fort Lauderdale,"Desserts, Pizza, Italian, BBQ, Bakery, American",70,2.9 +6811,Sugar Loft,Alexandria,"Fast Food, Pizza, BBQ, Seafood",44,3.4 +6812,Sugary Affairs,New York,"Desserts, Tea, Fast Food, Cafe, Indian",55,3.0 +6813,The Baking Fusion,Dillingham,"Fast Food, Tea, Mediterranean, Italian",52,3.1 +6814,The Belly Giggles,Santa Maria,"Desserts, Pizza, Fast Food, American, Mediterranean, Seafood",27,3.0 +6815,The Chef Restaurant,Atlantic City,"Tea, Cafe, Fast Food, Italian",97,3.4 +6816,Yo Tibet,Dallas,"Desserts, Pizza, BBQ, Chinese, Indian, Seafood",96,3.3 +6817,Cafe Rock 'n' Rolla,Pasco,"Mexican, BBQ, Fast Food, Cafe, Mediterranean",29,3.6 +6818,Charcoal,Mason City,"Pizza, French, Mexican, Bakery, BBQ, Fast Food",33,3.7 +6819,Chawla Chicken,Madison,"Tea, Bakery, American",40,3.5 +6820,Freedom Corner,St. Cloud,"Cafe, Pizza, American",48,3.5 +6821,Kori's,Birmingham,"Mexican, Indian, BBQ, Seafood",81,3.6 +6822,Mizo Diner,Paducah,"Tea, French, BBQ",66,3.7 +6823,Rainbows,Salisbury,"Tea, French, BBQ",37,3.5 +6824,Rajinder Xpress,San Angelo,"Tea, French, Cafe, Fast Food",44,3.8 +6825,RDX,Valparaiso,"French, Mexican, BBQ, Desserts",23,3.9 +6826,Sumo Sushi,Sacramento,"Desserts, Tea, Pizza, BBQ, Mediterranean",48,3.9 +6827,The Categorical Eat Pham,Florence,"Tea, BBQ, Bakery, Cafe, Indian, Mediterranean",95,3.7 +6828,The Hungry Monkey,Iron Mountain,"Tea, Bakery, Fast Food, Chinese, Seafood",70,3.7 +6829,Treat Up Cafe and Restaurant,Portsmouth,"French, Pizza, Seafood, Italian",53,3.6 +6830,Weird Time Food,Providence,"Tea, BBQ, Desserts, Fast Food",94,3.6 +6831,Amor Kitchen,West Yellowstone,"Tea, Bakery, BBQ, Mediterranean, Seafood",82,0.0 +6832,CHA! WA!!,Hibbing,"Tea, Cafe, Mexican, BBQ",78,0.0 +6833,Chip N Dale,Rock Springs,"Cafe, Bakery, BBQ, Fast Food, Chinese",71,0.0 +6834,Chocolangels,Sioux Falls,"Desserts, French, BBQ, Cafe, American",51,0.0 +6835,Home Kitchen,Rochester,"Cafe, Desserts, Italian",86,0.0 +6836,Laziz Foods,Lewisburg,"Cafe, BBQ, Fast Food, Chinese, Seafood",38,0.0 +6837,Mummy's Food Corner,Syracuse,"Pizza, Seafood",30,0.0 +6838,Riyaz Biryani Corner,Charlottesville,"Cafe, Bakery, BBQ, Chinese, Indian, Seafood",17,0.0 +6839,Safdarjung Club,Ontario,"Chinese, Bakery, BBQ, Desserts",33,0.0 +6840,Starup Catering,Waterloo,"Desserts, Indian, BBQ, Seafood",51,0.0 +6841,The Chinese & Thai Restaurant,Atlanta,"Desserts, Tea, Italian, Bakery, Fast Food",57,0.0 +6842,Cafe Coffee Day,San Antonio,"Tea, BBQ, Desserts, Italian",22,2.4 +6843,Zustt Yummy,Corpus Christi,"Tea, Seafood, Italian",36,2.3 +6844,Cafe Hashtag LoL,Peoria,"French, Bakery, Fast Food, Cafe, Indian",24,4.2 +6845,Dirty Apron,Santa Ana,"Tea, Pizza, Italian, BBQ, Seafood",60,4.3 +6846,Hornbill,Fort Leonard Wood,"Tea, Bakery, Seafood",62,4.0 +6847,Napoli Pizza,Hartford,"Cafe, Mexican, American, Desserts",19,4.0 +6848,Rajinder Da Dhaba,Salina,"Fast Food, BBQ, Seafood",81,4.3 +6849,The Piano Man Jazz Club,Bismarck,"Bakery, Indian, BBQ",35,4.2 +6850,Tossin Pizza,Atlantic City,"Cafe, Pizza, BBQ, Seafood",27,4.1 +6851,Big Belly Burger,Manchester,"Cafe, American, Mediterranean, Fast Food",93,2.7 +6852,Bikaner Choice,Fort Lauderdale,"Tea, Seafood, Mexican, Fast Food",39,2.8 +6853,Bikaner Misthan,Sarasota,"Tea, Cafe, Desserts",95,2.7 +6854,Da Yummy Pizza,Santa Ana,"Chinese, Bakery, Desserts",89,2.7 +6855,Food Nursary,Harrisburg,"Desserts, Pizza, Italian, BBQ, Fast Food",49,2.8 +6856,Puja Sandwich House,Albuquerque,"BBQ, Desserts, Fast Food",28,2.7 +6857,PVR Bhojanalay,Duluth,"Fast Food, Chinese, Tea, Italian",33,2.7 +6858,The Bake Studio,Salina,"Fast Food, American, Seafood",20,3.1 +6859,The Blue Tandoor,Greenville,"Tea, Cafe, Mediterranean",57,2.9 +6860,Abdullah Biryani Centre,Albany,"Desserts, Pizza, Italian, Cafe, Seafood",49,0.0 +6861,Allishan Family Restaurant,Bishop,"Bakery, BBQ",38,0.0 +6862,Bhawani Restaurant,Cape Girardeau,"Tea, Mexican, BBQ, Fast Food, Seafood",50,0.0 +6863,BonJuz,St. Louis,"Bakery, BBQ, Mediterranean, Seafood",47,0.0 +6864,Chawla Chik Inn,Aguadilla,"BBQ, Fast Food, Indian, Mediterranean, Seafood",100,0.0 +6865,Foodies,Syracuse,"Pizza, Fast Food",45,0.0 +6866,G+,Baltimore,"Desserts, Italian, Bakery, BBQ, Fast Food",33,0.0 +6867,Janta Canteen,Lexington,"Tea, Mexican, Bakery, Desserts",48,0.0 +6868,Kalka's Food Centre,Kotzebue,"Cafe, Pizza, Mexican, Bakery, Chinese, Seafood",70,0.0 +6869,Le Village Pastry Shop,Charleston,"Tea, Cafe, Mediterranean, Desserts",56,0.0 +6870,Meatwale.com,Sarasota,"Tea, Pizza, American",87,0.0 +6871,Mohit Bakery,Reno,"Desserts, Mexican, BBQ, Mediterranean, Seafood",46,0.0 +6872,Mouthmatics ,Pensacola,"Mexican, BBQ, Desserts",56,0.0 +6873,Pastry Place,Wichita Falls,"Desserts, Italian, French, Bakery, Cafe",36,0.0 +6874,Pho King Awesome,Bismarck,"Cafe, Desserts, Italian",77,0.0 +6875,PIE,Ogdensburg,"Tea, Pizza, Desserts, Fast Food",41,0.0 +6876,Rasoi - The Indian Zaika,Elmira,"Tea, French, Bakery, Fast Food, Chinese",74,0.0 +6877,Shree Balaji Bhojnalaya,Pensacola,"Fast Food, Seafood, Mexican, Italian",93,0.0 +6878,Smoke Trailer Grill,Indianapolis,"Tea, Pizza, Bakery, Fast Food, American, Mediterranean",36,0.0 +6879,Sonu Sweets,Hancock,"French, Bakery, BBQ, Cafe",62,0.0 +6880,Spice Treat,Ogden,"Tea, Pizza, Mexican, Bakery, BBQ, American",49,0.0 +6881,Star Restaurant,Oakland,"Pizza, American, Indian, Desserts",87,0.0 +6882,The Twisted Bakery,Greenville,"Tea, BBQ",76,0.0 +6883,Tiffino Mania,Kalamazoo,"Tea, Bakery, Mediterranean, BBQ",78,0.0 +6884,Yaadgaar,Appleton,"Cafe, Desserts, Italian",26,0.0 +6885,Pandit Ji Ki Apni Rasoi,Honolulu,"Tea, Bakery, BBQ, Cafe, American",83,2.4 +6886,Alam Muradabadi Chicken Biryani,Beaumont,"Desserts, Tea, Pizza, Mexican, Fast Food",91,3.0 +6887,Boheme Bar & Grill,Kalamazoo,"Bakery, BBQ, Seafood",26,3.3 +6888,Budapest Kitchen & Bar,Richmond,"Tea, Cafe, Mediterranean, Desserts",65,3.0 +6889,Dark House,Key West,"Tea, Pizza",22,2.8 +6890,Henry's Cafe,Aberdeen,"BBQ, Desserts",24,3.4 +6891,Kathi Zone,Medford,"Pizza, BBQ, Fast Food, Chinese, American",61,3.3 +6892,Kehar Cafe & Restaurant,Wichita,"Tea, Cafe, Bakery, Italian",33,2.8 +6893,Kumaon Dhaba & Service,Milwaukee,"Tea, American, Fast Food",28,3.0 +6894,Let'z Eat,Hartford,"Cafe, Bakery, Fast Food, Chinese, Seafood",61,2.7 +6895,Lite Eat Cafe,Aguadilla,"Desserts, Tea, Mexican, Bakery, Chinese",100,3.0 +6896,Malabar Dosa Hut,Phoenix,"Tea, Seafood, American, Italian",92,3.2 +6897,New Red Onion,Rhinelander,"Desserts, Tea, Pizza, French, Fast Food",31,2.5 +6898,Pizza Hut,Indianapolis,"Tea, BBQ, Italian",64,3.1 +6899,The Tiffin Hut,Missoula,"Tea, Fast Food, BBQ, Seafood",99,3.2 +6900,The Upper Crust,Worcester,"Bakery, American, Cafe, BBQ",66,3.0 +6901,Touch of Punjab,Melbourne,"Cafe, Pizza, BBQ",88,2.9 +6902,Tulicakes,Ogdensburg,"Bakery, Desserts, Fast Food",19,3.4 +6903,Wanchai By Kylin,Missoula,"Tea, Pizza, Mexican, BBQ, Seafood",52,3.2 +6904,Wow! India,Paducah,"Pizza, Bakery, BBQ, Fast Food",94,2.7 +6905,All About Food,Killeen,"French, Mexican, Bakery, Fast Food, Cafe",80,3.9 +6906,Costa Coffee,Pittsburgh,"Tea, Cafe, Fast Food, Chinese, Indian, Seafood",21,3.7 +6907,Hey' Sugar Delhi,San Luis Obispo,"Chinese, Pizza, BBQ",37,3.7 +6908,India Grill - Hilton Garden Inn,Jacksonville,"Desserts, Pizza, BBQ, Mediterranean, Seafood",89,3.6 +6909,Jugmug Thela,Sioux City,"Bakery, BBQ, Fast Food, Cafe, American",19,3.8 +6910,Mucchad Di Chai,Greensboro,"Tea, French, BBQ, Italian",70,3.7 +6911,SS ONN THE GO,Missoula,"Seafood, Mexican, Desserts, Italian",78,3.6 +6912,The Junkyard Cafe,Cape Girardeau,"Pizza, Bakery, BBQ, Fast Food, American",18,3.8 +6913,Aradhya Restaurant,Concord,"Tea, Pizza",45,0.0 +6914,Nanu Ki Rasoi,Vernal,"Desserts, Cafe, Pizza, Fast Food, Chinese",79,0.0 +6915,PSR Foods,Sarasota,"Bakery, Pizza, Indian, Seafood",16,0.0 +6916,Rasoi - The Indian Zaika,Myrtle Beach,"Tea, American, BBQ",88,0.0 +6917,The Pizza Corner,Johnstown,"Tea, Cafe, Indian, Fast Food",80,2.1 +6918,Wah Ji Wah,Mosinee,"Desserts, Cafe, Mexican, Chinese, Seafood",72,2.1 +6919,Blue Tokai Coffee Roasters,Kodiak,"Cafe, American, BBQ, Italian",50,4.4 +6920,Ice Pan Creamery,Fayetteville,"Pizza, French, Bakery, Cafe, Seafood",75,4.2 +6921,Rose Cafe,Wilmington,"Italian, Bakery, Fast Food, Cafe, American",96,4.1 +6922,Nueva,Wrangell,"Cafe, Bakery, Pizza, Seafood",29,3.3 +6923,Cafe Diva,Denver,"Chinese, Cafe, Desserts, Fast Food",44,3.8 +6924,Starbucks,Roswell,"Bakery, Indian, Seafood",59,3.7 +6925,Cafe Delhi Heights,Alamosa,"Tea, Bakery, Fast Food",98,4.0 +6926,Delhi Club House,Clarksburg,"Desserts, Tea, Pizza, Cafe, American",44,4.1 +6927,The Fatty Bao,Martha's Vineyard,"Tea, BBQ",76,4.1 +6928,Ziu,Vernal,"Tea, American, Desserts",55,4.1 +6929,Al-Arabi Restaurant,Traverse City,"Cafe, Mexican, Bakery, Seafood",89,2.9 +6930,Bikaner Sweets,Moab,"Tea, Fast Food, Pizza, Seafood",81,3.0 +6931,Chawla's宊,Bristol,"French, Bakery, BBQ, Fast Food",35,3.0 +6932,DELI2NITE,Omaha,"American, BBQ, Seafood",29,2.6 +6933,Green Chick Chop,Longview,"Tea, Chinese, Cafe",12,3.3 +6934,Laziz Fast Food & Laziz Khana,Duluth,"Chinese, Bakery, BBQ",59,2.8 +6935,New Zaika Kathi Rolls,Waterloo,"Fast Food, Mexican, Bakery, Seafood",24,3.1 +6936,Sardar Ji Chaap & Rolls,West Palm Beach,"Tea, Seafood, Fast Food",55,3.2 +6937,Shri Bala Ji,Salina,"Tea, BBQ, Fast Food",54,3.0 +6938,The Kitchen Exotica,Spokane,"Pizza, Indian, BBQ",48,3.0 +6939,Wake And Bake,West Yellowstone,"Tea, Bakery, BBQ, Mediterranean, Seafood",73,3.2 +6940,Neha's Biscotte,Kalispell,"Cafe, Desserts",18,3.5 +6941,Bikaner Sweets,Erie,"Fast Food, Seafood",74,0.0 +6942,Biryani Bot,Texarkana,"French, Bakery, BBQ",27,0.0 +6943,Brij Ki Rasoi,Evansville,"Tea, Chinese, Indian, Desserts",27,0.0 +6944,Devika Restaurant,Columbus,"Desserts, Tea, Pizza, Mexican, BBQ, Mediterranean",90,0.0 +6945,Facebook Fast Food,Grand Junction,"Tea, Indian, BBQ",90,0.0 +6946,Jo's Peace of Cake,Bristol,"BBQ, Bakery, Desserts",96,0.0 +6947,Kaka's Tiffin Service,Deadhorse,"BBQ, Bakery, Indian, Desserts",87,0.0 +6948,MK Tiffin Service,Little Rock,"Desserts, Italian, BBQ, Fast Food, Chinese",11,0.0 +6949,Moni Bakers,Hilton Head,"Bakery, Mediterranean, Seafood",42,0.0 +6950,Nutri Lunch,Peoria,"Mexican, American, Desserts, Fast Food",33,0.0 +6951,Om Aggarwal Sweets,Hattiesburg,"Tea, Cafe, Bakery, Seafood",97,0.0 +6952,Sansar Hotel,Valdosta,"Cafe, Seafood",31,0.0 +6953,Shama Muradabadi Chicken Biryani,White Plains,"Bakery, Pizza, Desserts",34,0.0 +6954,Midnight Delight,Los Angeles,"Tea, Indian, Mediterranean, Seafood",44,2.4 +6955,Ashok & Ashok Meat Dhaba,Brainerd,"Desserts, Tea, Italian, Bakery, Seafood",94,3.2 +6956,Durga Sweets Corner,Key West,"Tea, Pizza, Fast Food, Chinese, Seafood",95,3.2 +6957,Hot Pot,Monterey,"Tea, BBQ, Fast Food",62,2.7 +6958,Kwic Bitte Restaurant,Dothan,"Tea, Bakery, Fast Food",91,3.3 +6959,Khandani Pakodewala,Manchester,"Tea, Bakery, Desserts, Fast Food",87,3.7 +6960,Kulcha King,New Orleans,"Pizza, French, Bakery, Fast Food, American, Seafood",68,3.8 +6961,Cake Spot,Victoria,"Bakery, BBQ, Indian, Mediterranean, Seafood",17,0.0 +6962,Chicken Point,Charleston,"Desserts, Pizza, Cafe, American, Mediterranean",23,0.0 +6963,Chowringhee,Monterey,"Bakery, Pizza, American",16,0.0 +6964,Koolees Milkshake Bar,Newburgh,"French, BBQ, Cafe",97,0.0 +6965,Krispy Kitchen,Pensacola,"Fast Food, Bakery, Desserts, Italian",78,0.0 +6966,Mughlai Point,Decatur,"Tea, BBQ, Fast Food",23,0.0 +6967,Shama Chicken Corner,Saipan,"Tea, French, Bakery, Cafe",83,0.0 +6968,Alfa Kathi Rolls,Birmingham,"Cafe, Pizza, Mediterranean, Fast Food",15,2.6 +6969,Angeethi Express,Cedar City,"Mexican, Bakery, Fast Food",41,3.2 +6970,Backbenchers,Tulsa,"Tea, French, BBQ, Fast Food, Indian, Seafood",47,3.4 +6971,Bake Day,Akron,"Bakery, Pizza, Indian, Desserts",15,3.2 +6972,Balaji Dhaba,Jackson,"Tea, Cafe, Pizza",76,2.7 +6973,Bhukkad,Devils Lake,"Indian, Mediterranean, BBQ, Fast Food",62,3.2 +6974,Cafe Coffee Day,Wichita,"French, American, BBQ, Fast Food",99,3.3 +6975,Cafe Cones & Curries,Punta Gorda,"Bakery, Seafood",66,3.1 +6976,Cafe Trance & Lounge,Hilo,"Cafe, American, BBQ",13,2.6 +6977,Chinese Hut,Florence,"Tea, Mexican, BBQ, American, Seafood",37,3.2 +6978,Chocolate Square,Oakland,"Tea, Pizza, Mexican, Fast Food, Cafe",81,3.4 +6979,Chocolate Temptation,Belleville,"Tea, Chinese, Fast Food",16,3.3 +6980,Flirty Momo's,Boise,"BBQ, Desserts, Fast Food",74,3.0 +6981,Food Junkies,Santa Maria,"BBQ, Mediterranean, Desserts, Seafood",70,3.2 +6982,Frozen Fantasy,Cincinnati,"Bakery, Mediterranean, Desserts",75,3.3 +6983,Hooters,Florence,"Bakery, Seafood",99,3.1 +6984,Katwalk Lounge,Burbank,"Italian, Bakery, Cafe, American, Seafood",90,3.3 +6985,Mom Hand Momos,Brownsville,"Tea, Cafe, Desserts, Seafood",36,3.3 +6986,Muradabadi Biryani Centre,Indianapolis,"Chinese, Indian, Desserts, Seafood",54,2.9 +6987,NCR Cafe ,Manchester,"Desserts, Tea, Pizza, Bakery, American",12,3.0 +6988,Peri Peri Momos,Salisbury,"Bakery, Fast Food, Indian, Mediterranean, Seafood",97,3.2 +6989,Rosart愆 Chocolate,Minneapolis,"Desserts, Tea, Italian, BBQ, Seafood",45,3.4 +6990,Shanghai Restaurant,Great Falls,"French, BBQ, Bakery, Fast Food, American, Seafood",92,2.5 +6991,SharpShooters Roof Top Cafe,Laredo,"Tea, Desserts, Indian, BBQ",57,3.0 +6992,Stuti Restaurant,Saipan,"Desserts, Italian, Fast Food, Cafe, Seafood",67,3.0 +6993,The Addictions,Los Angeles,"Chinese, Pizza, Bakery, BBQ",86,2.6 +6994,The Kahuna,Dallas,"Bakery, Pizza, BBQ, Fast Food",23,3.1 +6995,Turn Up,Beaumont,"BBQ, Pizza, Desserts, Seafood",96,3.0 +6996,Wow! Momo,Durango,"Seafood, Mexican, Desserts, Fast Food",12,3.4 +6997,Echoes Satyaniketan,Albany,"Chinese, Bakery, Cafe",91,4.7 +6998,#OFF Campus,Melbourne,"Indian, Desserts, Seafood",46,3.7 +6999,2 Bandits Lounge & Bar,Palm Springs,"Seafood, Fast Food",56,3.9 +7000,"34, Chowringhee Lane",Manchester,"Bakery, Pizza, Cafe, Seafood",68,3.5 +7001,Amigo's Hub,Toledo,"Desserts, Tea, Mexican, Bakery, Seafood",30,3.7 +7002,CAD M CAD B,Hilo,"Fast Food, Tea, Italian",86,3.5 +7003,Cafe 121,Islip,"Tea, Cafe, Fast Food, Seafood",52,3.6 +7004,Cafe Hera Pheri,Dallas,"Cafe, Desserts",18,3.8 +7005,Cafe Tansen,Paducah,"French, Bakery, BBQ, Fast Food, Cafe",66,3.5 +7006,Caf砺 Befikre,Kalamazoo,"Desserts, Italian, Mexican, BBQ, Bakery, Fast Food",43,3.8 +7007,Caf愆 101,Gunnison,"Pizza, Bakery, BBQ, Fast Food",72,3.6 +7008,Canteen Till I Die,Tucson,"Tea, BBQ, Pizza, Desserts",24,3.9 +7009,China Bowl,Bloomington,"Bakery, American, Desserts, Italian",73,3.9 +7010,Chowringhee,Fayetteville,"Pizza, Bakery, BBQ, Chinese, Indian",87,3.6 +7011,Crazy Kitchen Lounge & Terrace,Toledo,"Fast Food, Pizza, Italian",25,3.9 +7012,FrenZone,Seattle,"Tea, Cafe, BBQ",44,3.9 +7013,Giani,Green Bay,"Tea, Mexican, Pizza, Italian",69,3.5 +7014,Grill Master,Scranton,"Cafe, Seafood",58,3.7 +7015,High On Burgers,Lubbock,"Tea, Chinese, BBQ, Desserts",57,3.5 +7016,Kev's,Bemidji,"Tea, Pizza, Mexican, Fast Food, Mediterranean, Seafood",49,3.9 +7017,Madira,Brownsville,"French, Pizza, Cafe",38,3.6 +7018,Nature Hut Cafe,Cedar City,"Desserts, Pizza, BBQ, Chinese, Seafood",80,3.9 +7019,Papa Buns,Butte,"Desserts, Tea, French, BBQ, Cafe",15,3.6 +7020,Pirates of Campus,Cedar Rapids,"Cafe, Chinese, Mediterranean, Seafood",100,3.7 +7021,Subway,Longview,"Tea, Mexican, Bakery, BBQ, Fast Food, Chinese",82,3.6 +7022,Sushiya Express,Augusta,"Tea, Mexican, Desserts",75,3.7 +7023,The Chai Story,Bismarck,"Pizza, Bakery",49,3.9 +7024,The Food Truck Cafe,Des Moines,"Tea, Chinese, Pizza, Desserts",39,3.9 +7025,The Punter House,Walla Walla,"Pizza, American, Fast Food",41,3.7 +7026,Thikaana,Evansville,"Bakery, BBQ, Mediterranean, Seafood",37,3.6 +7027,Tin Town Caf愆,Medford,"French, Cafe, Fast Food",15,3.9 +7028,Uptown Cafe,Scottsbluff,"Pizza, Mexican, BBQ, Bakery, Chinese",27,3.6 +7029,Vadapav Junction,Grand Island,"Tea, Chinese, French, Cafe",88,3.7 +7030,Crispers,Kalamazoo,"Tea, Cafe, Bakery, Seafood",58,0.0 +7031,Pizza Hut Delivery,West Yellowstone,"Seafood, Bakery, Italian",67,2.3 +7032,Wrapss,Juneau,"Chinese, Cafe, Desserts",57,2.2 +7033,Big Yellow Door,Flagstaff,"Tea, Cafe, BBQ, Desserts",22,4.2 +7034,Bombay Brunch,Mission,"Chinese, Bakery, Seafood, Fast Food",31,4.1 +7035,Burgrill,San Diego,"Desserts, Tea, Pizza, Fast Food, Chinese",54,4.4 +7036,Cafe Kazbaah,Texarkana,"Tea, Bakery, Fast Food",71,4.0 +7037,Eat Golf Repeat,Wenatchee,"Seafood, Bakery, Italian",10,4.1 +7038,Espress-o-Ville,Charleston,"Tea, Cafe, Pizza, Desserts",49,4.0 +7039,Frosty Rollies,Oklahoma City,"Pizza, Mediterranean, Desserts",96,4.0 +7040,Pipeline Cafe,Long Beach,"Desserts, Italian, Fast Food, Cafe, Seafood",89,4.0 +7041,QRO Gourmeteriia BY DARK HOUSE KAFE,Dubuque,"Pizza, Bakery, BBQ",28,4.2 +7042,Superstar Caf愆,St. Cloud,"American, BBQ, Fast Food",89,4.2 +7043,TBH - The Big House Cafe,Denver,"Cafe, Indian, Seafood, Fast Food",22,4.0 +7044,The Biryani Co.,Concord,"Tea, Bakery, BBQ, Fast Food",65,4.2 +7045,Wood Box Cafe,Gustavus,"Desserts, Bakery, Cafe, Mediterranean, Seafood",91,4.1 +7046,Young Wild Free Cafe,Alpena,"Bakery, Mexican, BBQ, Fast Food",45,4.1 +7047,A-One Green Sweet Corner,Jacksonville,"Cafe, Bakery, Pizza, Seafood",30,2.9 +7048,Cake Symphony,Fort Leonard Wood,"Tea, Pizza, Bakery, Fast Food, Chinese, Indian",61,3.1 +7049,Charu Nanda's Home Baked Cakes,Idaho Falls,"Tea, Bakery, BBQ, Indian, Seafood",78,3.1 +7050,Costa Coffee,Prescott,"Pizza, Bakery, BBQ, American, Seafood",78,3.4 +7051,IndoCheen,St. Louis,"Tea, Mediterranean, Seafood",16,3.2 +7052,The Staircase Cafe by Doggy Style,Hyannis,"Cafe, Pizza, Mediterranean, BBQ",66,2.6 +7053,Twisted Tacos,Salisbury,"Tea, Italian, Bakery, BBQ, Indian",30,3.4 +7054,Typsy Crow,Alexandria,"Tea, Desserts, Fast Food",75,2.9 +7055,Urban Dhaba,Moab,"Desserts, Tea, Pizza, BBQ, Chinese",41,2.5 +7056,Barista,Lexington,"Cafe, Bakery, Desserts, Italian",64,3.6 +7057,Keventers,Prescott,"Tea, Pizza, BBQ, Italian",62,3.6 +7058,Little Punjab,Niagara Falls,"Italian, Mexican, Bakery, Fast Food, Cafe, Seafood",13,3.7 +7059,Miam,Branson,"Desserts, Pizza, French, Bakery, Indian",97,3.9 +7060,Maharaja Food Club,State College,"Desserts, Indian, BBQ",14,0.0 +7061,Sugar Rush,New York,"Tea, Chinese, Pizza, Cafe",89,0.0 +7062,Tippy Tippy Tap,Spokane,"Desserts, French, BBQ, Fast Food, Cafe, Mediterranean",100,3.1 +7063,Alaturka,Evansville,"Tea, Italian, Bakery, Fast Food, Seafood",51,3.4 +7064,Chicago Pizza,Owensboro,"Chinese, BBQ, Cafe, Fast Food",43,3.4 +7065,Fast Trax,North Bend,"Tea, French, BBQ, Fast Food, Mediterranean, Seafood",92,3.4 +7066,Khan Chacha,Long Beach,"Desserts, Tea, Pizza, Bakery, Mediterranean",13,3.4 +7067,Pa Pa Ya,St. Cloud,"Tea, Pizza, Bakery, Cafe, Mediterranean",64,4.7 +7068,Barista,Yuma,"Desserts, Pizza, BBQ, Mediterranean, Seafood",60,3.6 +7069,Bings Cafe,Memphis,"BBQ, Pizza, Desserts, Seafood",54,3.9 +7070,Fat Lulu's,Tampa,"Desserts, Pizza, BBQ, Indian, Seafood",96,3.8 +7071,Harry's Bar + Cafe,San Diego,"Fast Food, French, Cafe, Seafood",55,3.6 +7072,Joy Luck Moon,Killeen,"Desserts, Fast Food",14,3.5 +7073,Keventers,St. Cloud,"Seafood, Cafe, Italian",11,3.9 +7074,L'Opera,Salina,"Cafe, BBQ, Fast Food, Chinese, Seafood",52,3.8 +7075,Pita Pit,Elmira,"Pizza, Bakery, BBQ, Fast Food, Chinese",59,3.7 +7076,Saravana Bhavan,Plattsburgh,"Desserts, Cafe, Bakery, BBQ, Chinese, American",78,3.9 +7077,Starbucks,Sault Ste. Marie,"Tea, Bakery, Fast Food",28,3.9 +7078,The Coffee Bean & Tea Leaf,Portland,"Tea, Cafe, Desserts",24,3.7 +7079,The Coffee Bean & Tea Leaf,Memphis,"Desserts, Tea, Pizza, Italian, BBQ",71,3.6 +7080,Habibi Express,Branson,"Italian, BBQ, Fast Food, Cafe, Seafood",57,2.2 +7081,Andrea's Eatery,Roanoke,"Desserts, Pizza, Fast Food, Chinese, Seafood",57,4.3 +7082,Drool Waffles,Durango,"Tea, Bakery, BBQ, Indian, Seafood",65,4.2 +7083,Elma's at Good Earth,Trenton,"Cafe, Pizza, Fast Food",22,4.0 +7084,H韄agen-Dazs,Petersburg,"Bakery, American, Desserts",23,4.0 +7085,Krispy Kreme,Santa Fe,"Tea, Pizza, Bakery, Mediterranean, Seafood",49,4.0 +7086,Movenpick,Reno,"Fast Food, BBQ, Desserts, Italian",43,4.0 +7087,Punjab Grill,Rock Springs,"Tea, Cafe, Seafood, Fast Food",66,4.2 +7088,Aapka Bhojanalaya,La Crosse,"Tea, Pizza, French, Cafe, Seafood",39,2.8 +7089,Aayana Foods,Manchester,"Tea, Bakery, BBQ, Seafood",37,3.1 +7090,Aggarwal Sweet India,Harrisburg,"Cafe, American, Desserts",88,2.9 +7091,Amchur,New York,"Tea, Bakery, American",67,2.9 +7092,Anand Ji de Choley Bhatoore,Atlanta,"Fast Food, Cafe, Pizza, Italian",83,2.7 +7093,Annapoorna,Alpena,"Cafe, Pizza, BBQ, Fast Food",49,3.1 +7094,Big Bite,Sault Ste. Marie,"BBQ, Desserts",71,3.0 +7095,Ceaser Fast Food Centre,Wrangell,"Mexican, Bakery, Desserts, Seafood",27,2.8 +7096,Chanana Ice Cream Parlour,Dallas,"Chinese, Pizza, BBQ, Italian",77,2.9 +7097,Chaska,Dodge City,"Tea, Desserts, Italian",89,3.0 +7098,Chowranghee,Oakland,"Tea, Bakery, BBQ",50,2.9 +7099,Darbaar Chicken,Milwaukee,"Tea, Pizza, BBQ, Fast Food, Mediterranean",84,3.0 +7100,Dilli Darbar,Dallas,"Tea, Cafe, Mediterranean, Italian",64,3.3 +7101,Domino's Pizza,Raleigh,"Mexican, Bakery, BBQ, Pizza",64,2.8 +7102,Empire,Martha's Vineyard,"Tea, Chinese, Indian, Cafe",100,2.9 +7103,Giani,Erie,"Cafe, Bakery, Mediterranean, Italian",68,3.1 +7104,Goldy Da Dhaba,Austin,"Desserts, Pizza, BBQ, Fast Food, Indian",49,3.0 +7105,Gufa Restaurant,Evansville,"Desserts, Italian, French, BBQ, Bakery, Fast Food",29,3.2 +7106,Gulshan,Christiansted,"Cafe, Pizza, American, Seafood",61,3.3 +7107,Hira Sweets,Santa Rosa,"Desserts, Italian, Bakery, Fast Food, Seafood",24,3.3 +7108,Hot Shop,West Palm Beach,"Desserts, Tea, Italian, BBQ, Cafe",70,3.3 +7109,Janta Eating House,Champaign,"Italian, BBQ, Fast Food, Indian, Seafood",71,3.3 +7110,Madras Cafe,Dayton,"Cafe, Pizza, Bakery, Chinese, Indian",68,3.4 +7111,Mitra Da Dhaba & Caterers,West Palm Beach,"Desserts, Cafe, Pizza, Chinese, American",77,3.0 +7112,Mr. Momo,North Platte,"Bakery, American, Desserts, Seafood",13,2.7 +7113,New Anand Sagar,Melbourne,"Chinese, Desserts, Seafood",97,2.8 +7114,New Tayal's Restaurant,Dallas,"Mexican, Bakery, BBQ, Fast Food",67,2.8 +7115,Paramjeet Fish & Chicken Point,Charlotte Amalie,"Cafe, Mexican, Seafood",87,3.1 +7116,Pizza Diet,Newburgh,"Desserts, Tea, BBQ, Fast Food, Chinese, Mediterranean",84,2.8 +7117,Pizza Diet,Lansing,"Cafe, Bakery",96,2.7 +7118,Pizzalicious,Monterey,"Desserts, Pizza, Italian, Bakery, American",90,3.0 +7119,Prem Punjab,Flagstaff,"Tea, French, Mexican, Bakery, BBQ, Fast Food",83,2.8 +7120,Priya Panchvati,San Angelo,"Desserts, Seafood",79,2.9 +7121,Ram Singh Chaat Bhandaar,Escanaba,"Bakery, Desserts",53,3.1 +7122,Ramchander Bhalushahi Wale,Kona,"Tea, BBQ, Seafood",23,3.2 +7123,Shahi Food Corner,Amarillo,"French, Pizza, Bakery, Mediterranean",90,3.0 +7124,Titu Chaat Corner,Gustavus,"Desserts, BBQ, Bakery, Fast Food, Chinese",26,2.9 +7125,Vinayak Restaurant,Charleston,"Tea, Chinese, Pizza",80,2.7 +7126,Vrinda's Food,Sioux Falls,"Tea, Indian, BBQ, Fast Food",37,2.9 +7127,Walia's Dawat Mahal,Greensboro,"Tea, Pizza, Seafood",22,3.1 +7128,Crazy Delights,Kahului,"Tea, Pizza, Mediterranean, Desserts",62,3.5 +7129,Aapki Rasoi,Newark,"Fast Food, Pizza, Desserts, Italian",98,0.0 +7130,ADM Foodi,Amarillo,"Tea, Seafood",96,0.0 +7131,Aggarwal Bikaner Sweets Corner,Baltimore,"Cafe, Desserts, Fast Food",25,0.0 +7132,Aggarwal Petha Store and Bakers,Birmingham,"Desserts, Tea, Pizza, Italian, Mexican, BBQ",49,0.0 +7133,Aggarwal Sweet Fresh,Hancock,"Tea, Mediterranean, Desserts, Fast Food",13,0.0 +7134,Aggarwal Sweet India,Manchester,"Bakery, Indian, American, BBQ",98,0.0 +7135,Aggarwal Sweets,Alamosa,"Tea, Bakery, Pizza, BBQ",77,0.0 +7136,Al-Taj Shamim Chicken Point,Richmond,"Cafe, Bakery, Mediterranean, Seafood",81,0.0 +7137,Apni Rasoi,Billings,"Desserts, Tea, Pizza, French, Cafe, Mediterranean",52,0.0 +7138,Bikaner Sweets & Bakers,Scottsbluff,"Bakery, Pizza, Mediterranean",24,0.0 +7139,Bikaner Sweets & Restaurant,Baltimore,"Tea, Pizza, Mexican, BBQ, Mediterranean",74,0.0 +7140,Bikaner Sweets,Del Rio,"Bakery, Pizza, Fast Food",87,0.0 +7141,Bitoo Chat Corner,Kalispell,"Cafe, Bakery, Seafood",63,0.0 +7142,Chaska,Pocatello,"Desserts, Pizza, French, BBQ, Fast Food, Chinese",67,0.0 +7143,Chilli Tadka Food Villa,Gulfport,"French, BBQ, Chinese, Seafood",27,0.0 +7144,China Town,Deadhorse,"Seafood, Fast Food",19,0.0 +7145,Chinese Delight,Yakima,"Tea, Cafe, Pizza, BBQ, Chinese, Indian",57,0.0 +7146,D Food,Charlottesville,"American, Mediterranean, Desserts, Seafood",93,0.0 +7147,Da Bawarchi,Fayetteville,"French, Bakery, BBQ",73,0.0 +7148,Delhi Cafe Restaurant,Sun Valley,"Tea, Pizza, Seafood",45,0.0 +7149,Dosa Plaza,Grand Island,"Tea, Chinese, BBQ",83,0.0 +7150,Ex- Taj Foods,Devils Lake,"Seafood, Mexican, BBQ, Fast Food",51,0.0 +7151,Fantasy Pastry Shop,Green Bay,"Tea, French, Fast Food, Cafe, Seafood",38,0.0 +7152,Gareeb Dhaba,Appleton,"Fast Food, Cafe, BBQ, Seafood",64,0.0 +7153,Hira Lal Sweets,Grand Island,"Seafood, Bakery, Fast Food",61,0.0 +7154,Hot & Chilly Point,New Bern,"Bakery, Fast Food, American, Mediterranean, Seafood",69,0.0 +7155,Hot Chinese & Fast Food,Cincinnati,"French, BBQ, Seafood",56,0.0 +7156,Jainco Sweets,Boise,"Chinese, Bakery, BBQ, Fast Food",93,0.0 +7157,Jony Sweets,Traverse City,"Desserts, Mexican, Fast Food, Cafe, Mediterranean, Seafood",82,0.0 +7158,Laxmi Dairy,Bishop,"Cafe, BBQ, Seafood",51,0.0 +7159,Madras Cafe,Nashville,"Pizza, Desserts, Seafood",88,0.0 +7160,Mehak Restaurant,Alamosa,"Desserts, Seafood",50,0.0 +7161,Mr. Gold,Petersburg,"French, BBQ, Fast Food, Cafe, Mediterranean",36,0.0 +7162,New Madras Cafe,Pellston,"French, Seafood, Desserts, Fast Food",69,0.0 +7163,Pizza Hub,Miami,"Tea, Mexican, American, BBQ",86,0.0 +7164,Pizza Hub,Charlotte Amalie,"Fast Food, BBQ, Desserts, Seafood",45,0.0 +7165,Prakash Sweets,Escanaba,"Chinese, Bakery, BBQ",11,0.0 +7166,Punjabi Chaska & Rasoi,North Platte,"Desserts, Pizza, Italian, BBQ, Bakery",90,0.0 +7167,Sagar,Wrangell,"French, BBQ, Desserts",16,0.0 +7168,Sardar A Pure Meat Shop,San Jose,"Tea, Cafe, Italian",53,0.0 +7169,South Cafe,Alamosa,"Chinese, Desserts, Fast Food, Cafe, Mediterranean",31,0.0 +7170,Sultan Chicken Corner,Montgomery,"Cafe, Bakery, Pizza, Italian",11,0.0 +7171,The AB's Kitchen,Monterey,"Chinese, Mexican, BBQ, Pizza",32,0.0 +7172,Wah Ji Wah,Hyannis,"Desserts, Tea, Pizza, BBQ, Chinese",34,0.0 +7173,Yum Yum,Worcester,"Cafe, Bakery, Fast Food",58,0.0 +7174,Zaika-e-Dilli,Roswell,"Tea, BBQ, Mediterranean",27,0.0 +7175,Anandini - The Tea Room,Moline,"Pizza, BBQ, Fast Food",24,3.4 +7176,Slice of Italy,Daytona Beach,"French, Bakery, Cafe, Fast Food",44,2.6 +7177,The Coffee Garage,Bemidji,"Desserts, Tea, Pizza, French, Mexican, Cafe",96,3.4 +7178,The Fashion Street Caf愆,Montgomery,"Desserts, Mexican, Bakery, Fast Food, Seafood",22,3.2 +7179,Urban Village,Cedar City,"French, American, Desserts, Seafood",88,3.4 +7180,Greenr Cafe,Dodge City,"Desserts, French, BBQ, Indian, Seafood",79,4.6 +7181,Boom Food,Scranton,"Tea, Chinese, American, Desserts",77,3.8 +7182,Cafe Red,Wichita,"Tea, Mexican, BBQ, Chinese, Seafood",55,3.6 +7183,Hyderabad House,San Juan,"Desserts, Tea, French, Bakery, Seafood",43,3.5 +7184,Le ROFL,Sioux Falls,"Tea, French, BBQ, Fast Food, Mediterranean, Seafood",75,3.8 +7185,Ma Cuisine,Santa Rosa,"Cafe, BBQ, Mediterranean, Fast Food",16,3.6 +7186,Mumbai Matinee,Pago Pago,"Pizza, Indian, Desserts, Seafood",65,3.5 +7187,Old Town Cafe,Cody,"Mexican, Bakery, BBQ",21,3.6 +7188,Spanish Delights,Waterloo,"Tea, Mexican, BBQ",14,3.5 +7189,Sweet Nothings By Avanti Mathur,Harrisburg,"Tea, French, Indian, BBQ",28,3.7 +7190,Threads,Brainerd,"Desserts, Tea, Italian, BBQ, Bakery",25,3.8 +7191,Bats On Delivery,Reno,"BBQ, Mediterranean, Desserts, Italian",60,2.3 +7192,Asia Central,Dubuque,"Desserts, Pizza, Italian, Cafe, Mediterranean, Seafood",14,4.2 +7193,Biryani By Kilo,Saipan,"Mexican, Bakery, Desserts",55,4.0 +7194,Cafe 5H By The Kitchen Connect,Erie,"Pizza, Desserts, Fast Food",47,4.0 +7195,Hearken Caf愆,Washington,"Cafe, Desserts, Italian",30,4.0 +7196,Puppychino,Billings,"Desserts, Tea, Mexican, Bakery, Cafe, American",66,4.4 +7197,Remember Me Caf愆,New Bern,"Desserts, Pizza, BBQ, Seafood",74,4.0 +7198,Sugarama Patisserie,Johnstown,"French, Mexican, Desserts, Fast Food",42,4.2 +7199,The Last Mughal (TLM),Killeen,"Cafe, Mediterranean, Desserts",41,4.4 +7200,The Mad Teapot/The Wishing Chair,Fort Dodge,"Tea, Mexican, BBQ, Seafood",66,4.1 +7201,Fusion Dosa Cafe,Long Beach,"Mexican, Indian, BBQ, Pizza",75,3.3 +7202,Goyal Eating Point,Midland,"Pizza, Bakery, BBQ, Seafood",40,2.8 +7203,Haveliram,Minneapolis,"Pizza, Italian, Bakery, BBQ, Mediterranean",19,2.9 +7204,Meet You There,Erie,"Tea, Pizza, Mexican, BBQ, Indian",93,2.6 +7205,Shree Bhog Pure Veg Restaurant,Bozeman,"Indian, BBQ, Fast Food",79,3.0 +7206,The Crust,San Luis Obispo,"Desserts, Pizza, Mexican, BBQ, Bakery",52,3.1 +7207,Vijay Eating Point,Helena,"Cafe, Bakery, Desserts, Italian",42,2.9 +7208,Aggarwal Bikaner Sweets,Corpus Christi,"Tea, Seafood",83,0.0 +7209,Bikaner Sweets & Restaurant,White Plains,"Tea, French, BBQ, Cafe, American",82,0.0 +7210,Cafe Coffee Day,Toledo,"French, BBQ, Fast Food, Indian, Seafood",47,0.0 +7211,Cake'ry,Fort Smith,"Seafood, Bakery, Italian",18,0.0 +7212,Come 'n' Eat,Dodge City,"Pizza, Mediterranean, Seafood",41,0.0 +7213,Darbar Chicken Corner,Salisbury,"Mexican, BBQ, Bakery, Fast Food, Cafe, Indian",48,0.0 +7214,Food Care,St. Cloud,"French, BBQ, Cafe, Italian",13,0.0 +7215,Himalaya Momos,Sacramento,"Tea, American, Desserts, Fast Food",76,0.0 +7216,Hirdesh Eating Point,Sioux City,"Seafood, Bakery, BBQ, Italian",88,0.0 +7217,Joshi Eating House,Newark,"Pizza, Indian, Fast Food",52,0.0 +7218,Just Veg,Pensacola,"Cafe, Desserts, Fast Food",59,0.0 +7219,Natural Pizza Hub & Food Court,Binghamton,"Seafood, Bakery, Indian, Italian",91,0.0 +7220,Pawar's Food Court Inc.,Yakutat,"Cafe, Pizza, Seafood, Italian",32,0.0 +7221,Rajesh Eating Corner,Butte,"Desserts, Tea, French, Bakery, BBQ",92,0.0 +7222,Raju Ice Cream Parlor,Kansas City,"Tea, Fast Food, Bakery, Seafood",25,0.0 +7223,Sangam Ratna,Evansville,"Tea, Pizza, Mexican, BBQ, Fast Food, American",78,0.0 +7224,Tandoor & Curry Restaurant,Tulsa,"Cafe, Fast Food",78,0.0 +7225,Uttarakhand Eating Point,Santa Rosa,"Fast Food, Pizza, Bakery, Seafood",54,0.0 +7226,Uttranchal Eating Point,Mission,"Italian, Fast Food, Cafe, Mediterranean, Seafood",14,0.0 +7227,Yummy Rasoi,Twin Falls,"Bakery, Mediterranean, Desserts, Fast Food",29,0.0 +7228,Aggarwal Restaurant,Baltimore,"Desserts, Pizza, Mexican, Bakery, Seafood",21,3.1 +7229,Ane China,Nantucket,"Tea, American, Desserts",21,2.7 +7230,Arora's Veg. Corner,El Paso,"Desserts, Pizza, Italian, Bakery, Fast Food, Mediterranean",64,3.4 +7231,Ashu Thali Wala,Staunton,"Seafood, Bakery, Fast Food",51,3.0 +7232,Bangla Sweets & Pastry Shop,Salina,"Desserts, Tea, Italian, Fast Food, Mediterranean",43,2.9 +7233,Baskin Robbins,Sitka,"Cafe, Pizza, Bakery",26,3.4 +7234,Believe in Taste,Owensboro,"Desserts, Tea, Pizza, Italian, French, Fast Food",25,3.0 +7235,Bharat Sweet House,Jacksonville,"Cafe, Italian, Bakery, Fast Food, Chinese",69,3.2 +7236,Bikaner Kesarvala,Presque Isle,"Tea, Cafe, Pizza, Bakery",85,3.2 +7237,Cafe Coffee Day,Rapid City,"Tea, Pizza, BBQ",89,3.1 +7238,Chawla's Chic Inn,International Falls,"Fast Food, Bakery, Pizza, Seafood",70,3.0 +7239,Chhappan Bhog,Spokane,"Tea, French, Cafe, Desserts",51,3.2 +7240,Chinese Hut Fast Food,Honolulu,"Desserts, Cafe, Pizza, French, Bakery, Chinese",55,3.0 +7241,Domino's Pizza,Bangor,"Tea, Seafood, BBQ, Italian",54,3.0 +7242,Frontier,Vernal,"Pizza, French, Bakery, BBQ, Fast Food",56,3.1 +7243,Giani,Moab,"Seafood, Pizza, BBQ, Italian",32,3.3 +7244,Hot Pot Snacks,Burbank,"Chinese, Pizza, Seafood",57,3.4 +7245,Keventers,Owensboro,"Tea, Mexican, Pizza",34,3.1 +7246,Kishan Dhaba,Killeen,"Bakery, Fast Food",74,3.0 +7247,Madras Dosa & Chinese,Dillingham,"French, Bakery, BBQ, Mediterranean, Seafood",87,2.7 +7248,Mehfil Tawa Tandoor,Amarillo,"Cafe, Indian, Desserts, Seafood",48,3.1 +7249,Mitthu Tikki Wala,North Platte,"Tea, Mediterranean, Fast Food",44,3.2 +7250,Mitthu Tikki Wala,San Juan,"Tea, Italian, Bakery, Cafe, Mediterranean, Seafood",38,3.4 +7251,Pandit Ji Ka Dhaba,Ogden,"Bakery, Fast Food",15,2.9 +7252,Punjabi Angeethi,Trenton,"Desserts, Bakery, Fast Food, Chinese, Mediterranean",94,3.2 +7253,Ram Chinese Food,Watertown,"Pizza, American, BBQ",46,3.1 +7254,Sardar Ji Punjabi Jayeka,Long Beach,"Desserts, Cafe, Pizza, Italian, Bakery, Chinese",66,2.9 +7255,SFC,El Paso,"BBQ, Indian, Desserts, Fast Food",23,2.8 +7256,SGF - Spice Grill Flame,Akron,"Cafe, Pizza, Mediterranean, Fast Food",21,3.1 +7257,Shalimar Vyanjan,Cincinnati,"Cafe, BBQ, Seafood, Fast Food",45,3.0 +7258,Shri Rudram,Atlanta,"Tea, Chinese, Cafe, Desserts",35,3.1 +7259,Smile Bakers,Great Falls,"Desserts, Pizza, Italian, Cafe, Seafood",55,3.1 +7260,Spice Sea,Devils Lake,"Pizza, Mexican, BBQ, Fast Food, Seafood",18,3.3 +7261,Street 5,Evansville,"BBQ, Desserts, Seafood",16,2.8 +7262,Subs n Shakes,Dallas,"French, Bakery, Mediterranean, Seafood",74,3.1 +7263,Subway,Longview,"American, Desserts, Seafood",22,2.6 +7264,Twenty Four Seven,Bloomington,"Fast Food, Bakery, Desserts, Seafood",74,3.3 +7265,Wah G Wah,Wenatchee,"Tea, Seafood, Italian",55,2.6 +7266,Aman-Deep Pure Veg,Branson,"Bakery, Desserts, Fast Food",25,3.5 +7267,Kwality Pastry Parlour,San Antonio,"Pizza, Seafood",74,3.5 +7268,McDonald's,Charleston,"Mexican, BBQ, Desserts",55,3.5 +7269,Nagpal's,Charleston,"Desserts, Cafe, Pizza, Bakery, Chinese",10,3.5 +7270,Peshawari's Deluxe,Bangor,"Cafe, Mexican, Pizza, Italian",41,3.7 +7271,Slic Chic,Kahului,"Cafe, Pizza, Seafood",69,3.8 +7272,Standard Ice Cream,Jackson,"Chinese, Pizza, American, Cafe",63,3.5 +7273,Aunty Chings Fast Food,Marquette,"Pizza, Bakery, Cafe, American, Seafood",42,0.0 +7274,Baba Chaap Wala,Corpus Christi,"Cafe, Pizza, Bakery, Chinese, Indian",51,0.0 +7275,Cafe Coffee Day,Honolulu,"Tea, Mexican, Fast Food, Mediterranean, Seafood",86,0.0 +7276,Chick N Grills,Petersburg,"Fast Food, Cafe, Pizza, Italian",63,0.0 +7277,Choc-oholic,Moab,"Chinese, Pizza, Fast Food, Cafe, Mediterranean, Seafood",33,0.0 +7278,Da Pizza Palace,Peoria,"French, BBQ, Cafe, Fast Food",92,0.0 +7279,Dosa Junction,Jacksonville,"Tea, Italian, French, BBQ, Fast Food, Cafe",21,0.0 +7280,Ganga Food Factory,Roswell,"Tea, Mexican, Desserts, Fast Food",89,0.0 +7281,Hot Wok,Champaign,"Fast Food, Pizza, Desserts, Seafood",74,0.0 +7282,Ichak Dana,Mosinee,"Tea, Cafe, Bakery, Fast Food",67,0.0 +7283,Madras Dosa & Chinese,St. Petersburg,"Pizza, Indian, BBQ, Italian",15,0.0 +7284,Mashoor Gulati,San Jose,"Bakery, Desserts, Seafood",68,0.0 +7285,Nidhi's Cake Lounge,Detroit,"Desserts, Pizza, Bakery, BBQ, Mediterranean",73,0.0 +7286,Night Diner,Manchester,"Cafe, Mexican, Bakery, Pizza",87,0.0 +7287,Nirula's Ice Cream,Deadhorse,"Pizza, Italian, BBQ, Fast Food, Seafood",47,0.0 +7288,Niti Shake & Ice Cream Hub,Los Angeles,"Tea, Cafe, Mexican, Mediterranean",32,0.0 +7289,Raja Chinese Foods & Snacks,North Platte,"Pizza, BBQ, Italian",65,0.0 +7290,Royal Chicken Corner,Everett,"Seafood, Pizza, Italian",44,0.0 +7291,Shalimar Food,Bozeman,"Cafe, Indian, BBQ",81,0.0 +7292,Shalimar Vyanjan,Jackson,"Tea, Bakery, Desserts, Fast Food",29,0.0 +7293,The Urban Canteen,Santa Maria,"Cafe, Mexican, Pizza, Seafood",37,0.0 +7294,Ever Bake,Indianapolis,"Chinese, Pizza, Desserts",47,4.0 +7295,Grappa - Shangri-La's - Eros Hotel,Rockford,"Bakery, Desserts, Italian",21,3.4 +7296,Shang Palace - Shangri-La's Eros Hotel,San Luis Obispo,"Tea, Mexican, BBQ, Fast Food, Indian",33,3.7 +7297,Sorrento - Shangri-La's - Eros Hotel,Williston,"Tea, Cafe, Pizza, Desserts",99,3.9 +7298,Mister Chai - Shangri-La's - Eros Hotel,Santa Barbara,"Cafe, Indian, Desserts, Seafood",87,4.1 +7299,Tamra - Shangri-La's - Eros Hotel,Iron Mountain,"Tea, Cafe, Pizza",25,4.3 +7300,Cafe Coffee Day,Charleston,"Cafe, BBQ, Desserts, Seafood",60,3.4 +7301,Domino's Pizza,Sun Valley,"Tea, French, Bakery, Cafe",99,2.8 +7302,Lush,Devils Lake,"Cafe, Seafood",23,0.0 +7303,Shivas Cafe,Midland,"Bakery, Mexican, Pizza",50,3.1 +7304,Dakshin - Sheraton New Delhi Hotel,Nashville,"Cafe, Pizza, Indian, Bakery",63,4.0 +7305,Delhi Pavilion - Sheraton New Delhi Hotel,Bemidji,"Tea, Chinese, Pizza, Fast Food",70,4.0 +7306,Pan Asian - Sheraton New Delhi Hotel,White Plains,"Mexican, Bakery, Mediterranean, Desserts",72,4.2 +7307,Domino's Pizza,Medford,"Chinese, BBQ, Desserts",47,2.5 +7308,Kitchen of Awadh,Fort Myers,"Desserts, Italian, Cafe, Mediterranean, Seafood",88,3.4 +7309,McDonald's,Charleston,"Chinese, Cafe, Desserts",15,3.3 +7310,ODT,West Palm Beach,"Tea, Cafe, Bakery",58,3.3 +7311,Rainbows,Huntsville,"Bakery, BBQ, Seafood",11,2.6 +7312,Subway,Midland,"Tea, Mediterranean, Desserts, Seafood",89,3.4 +7313,Bombay Bhelpuri,Indianapolis,"Tea, Pizza, BBQ, Fast Food, Indian",92,3.9 +7314,The Owl's Kitchen,Punta Gorda,"Tea, Mexican, Seafood",28,3.5 +7315,7 Colours Xpress Kitchen,Memphis,"Chinese, Bakery, Mediterranean, BBQ",33,0.0 +7316,Royal Cakes,Helena,"Tea, Fast Food, Cafe, American, Seafood",37,0.0 +7317,Street Cafe,Cincinnati,"Cafe, Mexican, Desserts",71,0.0 +7318,Street Cafe,Provo,"Tea, Seafood, Cafe, Fast Food",11,0.0 +7319,Dare To Deliver,Fayetteville,"Chinese, Desserts, Seafood",88,2.3 +7320,Aggarwal Sweet and Restaurant,San Francisco,"Desserts, Mexican, BBQ, Fast Food, Cafe",17,2.9 +7321,Burger Lust,Cape Girardeau,"Desserts, French, BBQ, Cafe, Seafood",63,2.9 +7322,Cafe Coffee Day,Amarillo,"Tea, Bakery, American",15,3.4 +7323,Cakes & Bakes,Bozeman,"Seafood, BBQ, Fast Food",71,3.2 +7324,Chic Fillet,La Crosse,"Bakery, Pizza, BBQ, Seafood",52,2.9 +7325,Chinese Express,Panama City,"Pizza, Fast Food, Cafe, Mediterranean, Seafood",14,3.1 +7326,Costa Coffee,Martha's Vineyard,"Desserts, Tea, Pizza, Bakery, Chinese",61,3.1 +7327,Domino's Pizza,Ogdensburg,"Mexican, Bakery, BBQ, Fast Food, Seafood",74,2.9 +7328,Gupta Fast Food,Eugene,"French, Pizza, Indian, Bakery",34,3.4 +7329,Hangchuaa's Chinese Food Corner,Yakima,"Fast Food, BBQ, Italian",37,3.1 +7330,Kathi's,Long Beach,"Tea, BBQ, Fast Food, Cafe, Indian, Mediterranean",88,3.0 +7331,Kitchen & Chicken,Bellingham,"Tea, Cafe, Desserts, Fast Food",28,3.2 +7332,Meal A Deal,Helena,"American, BBQ, Fast Food",36,2.8 +7333,Mohit Restaurant,Eugene,"Tea, Bakery, BBQ, Seafood",31,2.8 +7334,Princess Garden,Corpus Christi,"Desserts, Tea, BBQ, Fast Food, Chinese",15,2.7 +7335,Republic of Chicken,St. Cloud,"Tea, Chinese, Seafood, Fast Food",98,2.8 +7336,Sai Juice Point,Baltimore,"BBQ, Desserts",90,3.1 +7337,The Pirates Of China Town,Baltimore,"Chinese, Cafe, Desserts",31,3.2 +7338,Voda Bar,South Bend,"Tea, Fast Food, BBQ, Seafood",95,3.2 +7339,All Things Yummy,Ontario,"Cafe, Bakery, Italian",20,3.8 +7340,Cake Palace,Kodiak,"Desserts, Pizza, Italian, Mexican, Bakery, BBQ",90,3.8 +7341,Charan Singh Kulfi & Kala Khatta,Nantucket,"Desserts, Tea, Cafe, American, Seafood",65,3.6 +7342,Chinese Hut,San Luis Obispo,"Desserts, Italian, BBQ, Fast Food, Cafe, American",89,3.6 +7343,Costa Coffee,Scottsbluff,"Tea, Bakery, Italian",79,3.8 +7344,Daitchi,West Yellowstone,"Tea, Mexican, Pizza, Desserts",40,3.5 +7345,DomDom Biryani,Fresno,"Pizza, BBQ, Desserts",23,3.7 +7346,Gupta's Restaurant,Oakland,"Tea, Bakery, American, Mediterranean",32,3.5 +7347,Mama's,Bloomington,"Tea, Pizza, French, BBQ, Cafe, Mediterranean",73,3.5 +7348,McDonald's,Iron Mountain,"Desserts, BBQ, Bakery, Cafe, American",20,3.6 +7349,Moti Mahal Delux- Legendary Culinary,Bismarck,"Pizza, BBQ",80,3.6 +7350,Qureshi's Kabab Corner,Beaumont,"Tea, Chinese, Desserts",77,3.6 +7351,TukTuk,Hilo,"Desserts, Italian, Bakery, Mediterranean, Seafood",60,3.8 +7352,Anand Sweets,Knoxville,"Fast Food, Pizza, Indian, Seafood",45,0.0 +7353,Cafe Corner,Helena,"French, Cafe, Desserts, Seafood",65,0.0 +7354,Chocolics,Mosinee,"Bakery, American, BBQ",81,0.0 +7355,ChocoLite,Valdosta,"Desserts, Pizza, Mexican, Fast Food, Cafe, Indian",23,0.0 +7356,F Marquee,Cincinnati,"Tea, Cafe, Desserts, Fast Food",91,0.0 +7357,Republic of Chicken,Valdosta,"Mexican, Bakery, Seafood",12,0.0 +7358,Special Chicken Biryani,Kotzebue,"Cafe, Bakery, Desserts, Italian",72,0.0 +7359,Circus,Fayetteville,"Seafood, BBQ, Desserts, Italian",40,4.0 +7360,The Society Cafe,Sarasota,"Fast Food, French, Seafood, Italian",29,4.1 +7361,Club London,Muskegon,"Tea, Chinese, Bakery, Fast Food",63,3.3 +7362,3 Pegs Down,Dubuque,"Chinese, Pizza, Cafe, Fast Food",80,3.6 +7363,Chicago Pizza,Brunswick,"Cafe, Bakery, Fast Food",46,2.6 +7364,Maakhansingh,San Angelo,"Tea, Bakery, Indian, Desserts",53,2.9 +7365,Mad Over Donuts,Salt Lake City,"Desserts, Seafood",32,3.8 +7366,Starbucks,Charlotte Amalie,"French, Pizza, Fast Food",21,3.7 +7367,World of Wok,Milwaukee,"Italian, Fast Food, Cafe, Mediterranean, Seafood",74,3.6 +7368,Alvi's Food Spot,Tampa,"Desserts, Mexican, American, BBQ",22,3.2 +7369,Cafe Coffee Day,St. Louis,"Desserts, Tea, Cafe, Mexican, Chinese",29,2.7 +7370,Code,Pensacola,"French, Bakery, Indian, Fast Food",29,2.5 +7371,Haowin,Yakima,"Fast Food, French, Indian, Seafood",12,3.2 +7372,Mirror,Kahului,"Tea, BBQ, Pizza, Desserts",91,3.3 +7373,Pizza Hut Delivery,Philadelphia,"Cafe, Desserts, Bakery, BBQ",76,2.7 +7374,Platinum Lounge,Lubbock,"Tea, French, BBQ, Fast Food, Seafood",86,3.3 +7375,Aap Ki Rasoi Ghar,Pasco,"Desserts, Tea, Mexican, BBQ, Fast Food",27,3.0 +7376,Aggarwal Sweet & Pastry,Raleigh,"Tea, Bakery, BBQ, Mediterranean",95,2.8 +7377,Craving,Plattsburgh,"Desserts, Pizza, Italian, Bakery, Fast Food",42,3.1 +7378,Dakshin South Indian Hut,Christiansted,"Bakery, BBQ",95,3.0 +7379,Food & Travel Cafe,Saipan,"Desserts, BBQ, Bakery, Cafe, Indian",48,3.2 +7380,Jolly Tandoori Zaika,Atlantic City,"Mexican, Indian, BBQ, Pizza",76,3.2 +7381,Lababdar Rasoi,Beaumont,"Pizza, American, Indian, Desserts",35,3.3 +7382,Madan Da Dhaba,Watertown,"Pizza, Italian, Bakery, BBQ, American, Seafood",55,3.0 +7383,Nishtha,Portsmouth,"Cafe, Mexican, Bakery, Fast Food",52,3.3 +7384,P2 Tandoori Momos Station,Wilmington,"Bakery, Indian, Seafood",64,3.1 +7385,Punjabi's Veg Grill,Yuma,"American, Desserts, Seafood",44,2.9 +7386,Sethi's The Cake Shop,Twin Falls,"Tea, Bakery, BBQ, Seafood",78,2.8 +7387,Soya Grill,Dallas,"Cafe, Pizza, BBQ, Fast Food",84,3.0 +7388,Sunny Kebab Wala,Beaumont,"Chinese, Pizza, Bakery, Fast Food",73,3.3 +7389,Vaishno Bhojnalaya,Belleville,"French, Bakery, Desserts",77,3.1 +7390,Valentine Coffee Bar,Killeen,"Tea, Bakery, BBQ, Chinese, American, Seafood",20,2.9 +7391,Zayka Delhi-6,Anchorage,"Bakery, Indian, Mediterranean, Seafood",99,3.1 +7392,13 Cafe,Sacramento,"Tea, BBQ, Mediterranean, Desserts",59,0.0 +7393,Aggarwal Sweet Corner,Sun Valley,"Cafe, Bakery, Chinese, Indian, Seafood",78,0.0 +7394,Babu Meat Wala,Lynchburg,"Desserts, Pizza, Mexican, Fast Food, American, Seafood",78,0.0 +7395,Batra Chinese Food & Chaap,Laredo,"Bakery, Mexican, Indian, Desserts",100,0.0 +7396,Celebration Family Restaurant,Martha's Vineyard,"Cafe, Mexican, Fast Food",53,0.0 +7397,Ching Chinese,Spokane,"Pizza, Italian, French, Bakery, Fast Food, Cafe",82,0.0 +7398,Choices An Absolute BBQ,Cedar City,"Desserts, Tea, Mexican, Mediterranean, Seafood",91,0.0 +7399,Delhi-27,Tulsa,"Pizza, Bakery, Cafe, Mediterranean, Seafood",67,0.0 +7400,Desi Kukkad,Seattle,"Bakery, American, BBQ",71,0.0 +7401,Freezy,Grand Island,"Desserts, Tea, Pizza, Cafe, Indian",31,0.0 +7402,Gourmet Bistro,Staunton,"Tea, French, Cafe",65,0.0 +7403,Jiya Amritsari Naan,Alexandria,"Cafe, Bakery",43,0.0 +7404,Kedgy Bite,Erie,"Desserts, Tea, Pizza, French, Seafood",49,0.0 +7405,Khera's Foodie Corner,Scottsbluff,"Tea, Pizza",18,0.0 +7406,Lajwab Pastry Palace,Saipan,"Desserts, Bakery, BBQ, Italian",63,0.0 +7407,Madan Sweets & Bakers,Punta Gorda,"French, Seafood, Desserts, Fast Food",49,0.0 +7408,Momo's King,Lewiston,"Tea, Cafe, Pizza, Bakery, Chinese",30,0.0 +7409,New Pishori Chicken Kabab,Tampa,"Tea, Bakery, BBQ, Mediterranean",74,0.0 +7410,New Sindhi Chicken Corner,Valparaiso,"Tea, Mexican, BBQ, Cafe, Mediterranean",17,0.0 +7411,Radha Swami Chaat Bhandar,Arcata,"Pizza, Mediterranean, Seafood",87,0.0 +7412,Rajender Di Punjabi Rasoi,Las Vegas,"Chinese, Bakery, Desserts, Fast Food",94,0.0 +7413,Ram Ji Snacks & Food Corner,Walla Walla,"Desserts, Fast Food",27,0.0 +7414,Ram Ram Ji Kachori Bhandar,Milwaukee,"Chinese, Desserts, American, BBQ",44,0.0 +7415,Rana's Food Corner,Manhattan,"Fast Food, American, Seafood",52,0.0 +7416,Sanjay Chicken Shop,Indianapolis,"Italian, French, BBQ, Fast Food, Cafe",49,0.0 +7417,Sharma Ji Spring Roll,Shreveport,"BBQ, Mediterranean, Seafood",78,0.0 +7418,Shree Raja Ram,Peoria,"Desserts, Tea, Pizza, Indian, Seafood",27,0.0 +7419,South Indian Hut,Hyannis,"Cafe, American, Seafood",31,0.0 +7420,Special Moradabadi Chicken Corner,Beaumont,"Italian, Bakery, BBQ, Fast Food, Indian",51,0.0 +7421,Standard Pastry Shop,Cape Girardeau,"Desserts, Pizza, Bakery, BBQ, American, Mediterranean",29,0.0 +7422,Sushil Punjabi Vaishno Dhaba,North Platte,"Desserts, French, BBQ, Cafe, Seafood",67,0.0 +7423,Variety of Shawarmas,Portsmouth,"Tea, Italian, Bakery, BBQ, Fast Food",29,0.0 +7424,Vrindavan Sweets,Texarkana,"Cafe, Bakery, American",80,0.0 +7425,Flirty Momo's,Hilo,"Tea, Cafe, Pizza, BBQ",67,2.4 +7426,Nathu's Sweets,Moline,"French, Bakery, BBQ, Cafe",50,3.3 +7427,Basil & Thyme,Gunnison,"Desserts, Tea, Pizza, BBQ, Chinese",22,3.6 +7428,Kamal's,Gulfport,"Cafe, BBQ, Seafood",34,3.7 +7429,Orange Peel by Rasleen Kochhar,Medford,"Pizza, Mexican, BBQ, Mediterranean, Seafood",49,3.6 +7430,ATM Bistro,San Luis Obispo,"Tea, Bakery, Pizza, American",84,0.0 +7431,Masala House,Bismarck,"Tea, Italian, Bakery, Fast Food, Cafe, Indian",72,4.0 +7432,Number 8,Manchester,"Cafe, BBQ, Seafood",43,4.0 +7433,Keventers,Lawton,"Tea, Cafe, Mediterranean",47,3.2 +7434,4700BC Popcorn,Portland,"Tea, Mexican, Fast Food, Cafe, Seafood",54,3.2 +7435,Chennai X-Press,Chicago,"Cafe, BBQ",72,2.9 +7436,Chinese Sigdi,Boston,"Tea, French, Cafe, Fast Food",58,3.0 +7437,Da Pizza Pind,Plattsburgh,"Seafood, Bakery, Cafe, Fast Food",75,3.2 +7438,Faasos,St. Cloud,"Mexican, Pizza, Mediterranean, Fast Food",74,3.0 +7439,Frontier,Austin,"Fast Food, Cafe, Bakery, Seafood",23,2.9 +7440,Gyan Di Hatti,Akron,"Tea, Pizza, Bakery, BBQ",98,2.9 +7441,Hot Stuff,Beaumont,"Cafe, Pizza, American, Desserts",90,3.3 +7442,KK Da Dhaba,Charleston,"Seafood, Mexican, Desserts, Fast Food",35,3.4 +7443,Last Bencher's,Portland,"French, Bakery, Fast Food, Cafe, Seafood",94,3.0 +7444,Raj Bakers And Confectioners,Scottsbluff,"Chinese, Seafood, Desserts, Fast Food",40,3.0 +7445,Taste Drive,Provo,"Bakery, Pizza, Indian, Cafe",46,3.4 +7446,The Kafilla,Martha's Vineyard,"Pizza, Mexican, Bakery, Fast Food, Cafe, Mediterranean",17,3.0 +7447,Tibb's Frankie,Little Rock,"Cafe, Pizza",63,3.1 +7448,4 Barrels Caf愆 & Lounge,Victoria,"Indian, BBQ, Seafood",89,3.5 +7449,Baadshah,San Juan,"Desserts, Pizza, Fast Food, Chinese, Indian",85,3.5 +7450,Behrouz Biryani,Harrisburg,"Desserts, BBQ, Fast Food, Mediterranean, Seafood",75,3.5 +7451,Galina Restaurant,Beaumont,"Cafe, Pizza, Desserts, Fast Food",99,3.5 +7452,Masala Factory,Moab,"French, BBQ, Fast Food, Cafe, American",22,3.8 +7453,Ovenstory Pizza,Deadhorse,"Italian, Fast Food, Cafe, American, Seafood",31,3.5 +7454,Ajeet Fast Food Corner,Belleville,"Tea, Bakery, Fast Food, American, Mediterranean, Seafood",91,0.0 +7455,Al Changezi,Baton Rouge,"Bakery, American, Fast Food",47,0.0 +7456,Dolce Gelato,Greensboro,"Cafe, Mexican, Seafood, Italian",44,0.0 +7457,Dragon Way,San Diego,"Desserts, Mexican, Cafe, American, Seafood",77,0.0 +7458,Foodaholic,Fresno,"Tea, Cafe, Mexican, Bakery, Chinese, Seafood",39,0.0 +7459,Indian Chinese Fast Food,Kahului,"Tea, Seafood",90,0.0 +7460,Jagadeesh Kharodewala,Harrisburg,"Cafe, Pizza, Indian, Desserts",18,0.0 +7461,Punjabi Shahi Chicken Soup,Albuquerque,"Chinese, Cafe, Seafood",28,0.0 +7462,Ramu Ka Dhaba,Tucson,"Tea, Mexican, BBQ, Fast Food, Cafe",90,0.0 +7463,Sardar Ji Chicken Corner,Omaha,"Tea, Bakery, BBQ, Seafood",37,0.0 +7464,Satguru Tiffin Service,Pensacola,"American, BBQ, Seafood",50,0.0 +7465,Seth Baker's,Rochester,"Chinese, Desserts, Pizza, French, BBQ, Cafe",58,0.0 +7466,Sri Durga Dosa Corner,Jackson,"Cafe, Mexican, Seafood",14,0.0 +7467,V S Cafe,Savannah,"Desserts, Tea, Pizza, Italian, Bakery, Chinese",97,0.0 +7468,Vijay South Indian Food,Fort Leonard Wood,"Pizza, Desserts, Fast Food",38,0.0 +7469,Punjab Grill,Nantucket,"Tea, Mexican, Indian, BBQ",83,4.3 +7470,Insomnia - Taj Vivanta,Ontario,"Desserts, Italian, Bakery, BBQ, Fast Food",44,3.3 +7471,Larry's China - Taj Vivanta,Gunnison,"Cafe, Bakery, Indian, Italian",33,3.7 +7472,Yellow Brick Road - Taj Vivanta,Roanoke,"Cafe, Pizza, Italian, Bakery, Chinese",75,3.9 +7473,English Tadka,North Bend,"Pizza, Seafood",32,3.3 +7474,Burger King,Eau Claire,"Tea, Pizza, French, BBQ, Cafe",80,3.6 +7475,Pizza Hut,Dayton,"Desserts, Cafe, Mexican, Bakery, Chinese, Seafood",76,3.6 +7476,Cake Shop - The Ashok,Green Bay,"Tea, Pizza, Desserts",78,3.1 +7477,Samavar - The Ashok,Portland,"Tea, Bakery, Indian, Seafood",76,3.2 +7478,Tea Lounge - The Ashok,Staunton,"Pizza, French, Fast Food, Cafe, Seafood",81,3.2 +7479,Frontier - The Ashok,Gulfport,"Tea, Chinese, BBQ",71,3.7 +7480,The Oudh - The Ashok,Decatur,"BBQ, Seafood",45,3.6 +7481,Zerruco - The Ashok,Boise,"Italian, Bakery, Fast Food, Cafe, Indian",15,4.4 +7482,The Claridges Garden -The Claridges,Durango,"Tea, Pizza, Mexican, Mediterranean, Seafood",94,3.1 +7483,Aura - The Claridges,Rochester,"Desserts, Cafe, Bakery, Chinese, Seafood",77,3.5 +7484,Dhaba - The Claridges,West Yellowstone,"Pizza, Mediterranean, Seafood",70,3.9 +7485,Jade - The Claridges,Fresno,"Tea, BBQ, Seafood",81,3.8 +7486,Pickwicks - The Claridges,Cheyenne,"Cafe, American, Fast Food",31,3.7 +7487,Ye Old Bakery - The Claridges,Bellingham,"Desserts, Tea, BBQ, Cafe, Indian",84,3.7 +7488,Sevilla - The Claridges,Dillingham,"Tea, French, Bakery",75,4.3 +7489,GBar - The Grand New Delhi,Myrtle Beach,"Desserts, Italian, Cafe, Indian, Seafood",88,3.3 +7490,Cascades - The Grand New Delhi,Charleston,"Bakery, BBQ",62,3.6 +7491,1911 Bar - The Imperial,Nashville,"Desserts, Pizza, Italian, American, Seafood",76,3.2 +7492,Nostalgia at 1911 Brasserie - The Imperial,Escanaba,"Tea, Fast Food",58,3.2 +7493,Patiala Peg - The Imperial,Cincinnati,"Chinese, BBQ, Mediterranean, Desserts",40,3.3 +7494,1911 - The Imperial,Lake Charles,"Tea, French, Seafood, Fast Food",53,3.9 +7495,Daniell's Tavern - The Imperial,Greenville,"Desserts, BBQ, Fast Food, Cafe, Mediterranean",61,3.7 +7496,La Baguette - The Imperial,Fort Dodge,"Chinese, Bakery, Mediterranean, BBQ",20,3.8 +7497,San Gimignano - The Imperial,Richmond,"Tea, Pizza, American, Seafood",78,3.7 +7498,The Atrium - The Imperial,Yakutat,"Seafood, Cafe, Italian",32,3.6 +7499,The Spice Route - The Imperial,Key West,"Chinese, Pizza, BBQ",36,4.0 +7500,Bao Cha,Kalispell,"Tea, Bakery, Italian",24,3.0 +7501,Nazeer Delicacies,Indianapolis,"Tea, Bakery, Pizza, Cafe",25,3.3 +7502,Open Oven,Bakersfield,"Fast Food, BBQ, Italian",84,3.4 +7503,Slurp Pasta Express,Alexandria,"Tea, Pizza, BBQ, Fast Food",100,2.9 +7504,Urban Gala,Duluth,"Cafe, Mexican, Mediterranean, Seafood",63,2.8 +7505,Shree Rathnam,Aguadilla,"Pizza, American, BBQ, Italian",89,3.5 +7506,Stuffed Kathi Roll,Daytona Beach,"Desserts, Mexican, Bakery, Fast Food, Chinese",67,0.0 +7507,Subway,Philadelphia,"Tea, Cafe, Pizza, Fast Food",96,1.9 +7508,24/7 Pastry Shop - The Lalit New Delhi,Kotzebue,"Tea, Cafe, Mediterranean, Fast Food",19,3.3 +7509,Le Petit Cafe - The Lalit New Delhi,Islip,"French, Bakery, Fast Food",84,3.2 +7510,The Grill Room - The Lalit New Delhi,Aguadilla,"Desserts, Mexican, BBQ, Cafe, Mediterranean",27,3.4 +7511,24/7 Bar- The Lalit New Delhi,Evansville,"Desserts, Italian, French, Bakery, BBQ, Seafood",28,3.5 +7512,24/7 Restaurant - The Lalit New Delhi,Salt Lake City,"Cafe, Mexican, BBQ, Desserts",30,3.7 +7513,Baluchi - The Lalit New Delhi,Ithaca,"Cafe, Pizza, Italian, BBQ, Fast Food, Chinese",77,3.9 +7514,Kitty Su - The Lalit New Delhi,Devils Lake,"Tea, French, Fast Food",73,3.7 +7515,Woks - The Lalit New Delhi,West Yellowstone,"Cafe, Chinese, Pizza, Mediterranean",27,3.6 +7516,Caf愆 Knosh - The Leela Ambience Convention Hotel,Portsmouth,"Desserts, Tea, BBQ, Bakery, Chinese, Indian",67,3.9 +7517,Cherry Bar - The Leela Ambience Convention Hotel,Madison,"Tea, BBQ, Cafe, Indian, Seafood",28,3.6 +7518,Mei Kun - The Leela Ambience Convention Hotel,Alexandria,"French, Bakery, American, BBQ",95,3.6 +7519,Dilli 32 - The Leela Ambience Convention Hotel,Bend,"Desserts, Tea, Pizza, BBQ, Chinese, Indian",40,4.0 +7520,Jamavar - The Leela Palace,Boston,"Cafe, Pizza",38,3.9 +7521,Le Cirque - The Leela Palace,Decatur,"Fast Food, Bakery, Pizza, Seafood",30,3.8 +7522,MEGU - The Leela Palace,Norfolk,"Tea, Pizza, Italian, French, Fast Food",100,3.9 +7523,The Library - The Leela Palace,Fort Myers,"Bakery, Pizza, American, Seafood",24,3.7 +7524,The Lobby Lounge - The Leela Palace,Bismarck,"Pizza, Mexican, Fast Food, American, Seafood",24,3.6 +7525,The Lodhi Bakery - The Lodhi,Plattsburgh,"Desserts, Pizza, Fast Food, Cafe, Indian",90,2.9 +7526,Elan - The Lodhi,Los Angeles,"Seafood, Desserts, Italian",61,3.8 +7527,Agni - The Park,Las Vegas,"Mexican, BBQ, Desserts",61,3.3 +7528,Mist - The Park,Valdosta,"Desserts, Pizza, BBQ, Mediterranean, Seafood",37,3.3 +7529,Aqua - The Park,Provo,"Fast Food, Mexican, BBQ, Pizza",56,3.8 +7530,Atrium Bar & Lounge - The Suryaa New Delhi,Fayetteville,"Cafe, Pizza, Italian",45,3.1 +7531,French Crust - The Suryaa New Delhi,Midland,"Desserts, Pizza, Mexican, Bakery, Fast Food",81,3.3 +7532,Club BW - The Suryaa New Delhi,North Bend,"Chinese, Mexican, Bakery, Desserts",68,3.6 +7533,Sampan - The Suryaa New Delhi,Portsmouth,"Desserts, Pizza, French, Mexican, Bakery",17,3.7 +7534,The Grill Room - The Taj Mahal Hotel,Mason City,"Tea, BBQ",63,3.1 +7535,Emperor's Lounge - The Taj Mahal Hotel,Alamosa,"Tea, Italian, BBQ, Cafe, Seafood",65,3.8 +7536,Machan - The Taj Mahal Hotel,Marquette,"Bakery, BBQ, Desserts, Fast Food",84,3.9 +7537,Ricks Bar - The Taj Mahal Hotel,Petersburg,"Tea, Bakery, Fast Food, Cafe, Mediterranean",29,3.6 +7538,Wasabi by Morimoto - The Taj Mahal Hotel,Pocatello,"Tea, Pizza, Mexican, BBQ, Cafe, Indian",36,3.9 +7539,House of Ming - The Taj Mahal Hotel,Devils Lake,"Tea, Desserts, Fast Food",33,4.0 +7540,Varq - The Taj Mahal Hotel,Ontario,"Cafe, Pizza, Fast Food",81,4.2 +7541,Capital Kitchen - Taj Palace Hotel,Lewiston,"Cafe, Pizza, Fast Food",35,3.7 +7542,Spicy Duck - Taj Palace Hotel,Kona,"Italian, Bakery, BBQ, Fast Food, Chinese",85,3.5 +7543,Orient Express - Taj Palace Hotel,Fort Myers,"French, Pizza, Bakery, Cafe",48,4.0 +7544,The Tea Lounge - Taj Palace Hotel,Ontario,"Desserts, BBQ, Cafe, Indian, Seafood",24,4.0 +7545,Bonitos - The Uppal,Sault Ste. Marie,"Tea, Cafe, BBQ, Seafood",94,3.2 +7546,Bonitos Blu - The Uppal,Yakima,"Chinese, Bakery, Desserts, Fast Food",47,3.0 +7547,The Gourmet Shop - The Uppal,Birmingham,"Desserts, Tea, Mexican, Fast Food, American",52,3.0 +7548,Chopsticks,Buffalo,"Cafe, Seafood, Italian",14,3.6 +7549,TabulaBeach Cafe,Ogdensburg,"Pizza, Mexican, Fast Food, Cafe, Indian",67,3.8 +7550,Arriba - Mexican Grill & Tequileria,Atlanta,"Tea, Fast Food",99,4.1 +7551,Chatori Gali,Portland,"Desserts, Pizza, Italian, BBQ, Fast Food",40,0.0 +7552,Aggarwal Sweet Center,Kahului,"Chinese, Pizza, Mediterranean, Desserts",94,2.9 +7553,Aggarwal Sweets,Binghamton,"Pizza, Mediterranean, Desserts, Seafood",29,2.7 +7554,Alag Khana Khazana,Harrisburg,"Chinese, Desserts, Seafood",61,2.9 +7555,Bhape Di Hatti,Toledo,"Tea, BBQ, Fast Food, Cafe, Mediterranean",42,3.1 +7556,Bhappe Di Hatti,Santa Maria,"Tea, BBQ, Mediterranean",50,3.1 +7557,Bhatura King,Kodiak,"Tea, BBQ, Desserts, Fast Food",80,2.9 +7558,Bhukkadzz Point,Hagerstown,"French, Pizza, Mediterranean, Seafood",31,3.0 +7559,Bimbos,Atlanta,"Pizza, Italian, BBQ, Fast Food, Seafood",13,3.1 +7560,Brothers' Bakery,Billings,"Italian, Bakery, Fast Food, Cafe, Mediterranean",45,2.9 +7561,Chaap Nation,Elmira,"Desserts, Tea, Cafe, Bakery, Chinese",48,3.0 +7562,Dev Burger,Newark,"Tea, Italian, Bakery, Fast Food, Cafe",31,2.9 +7563,Green Chick Chop,Baltimore,"Pizza, Mexican, Bakery, Mediterranean, Seafood",15,3.0 +7564,Green Chick Chop,Victoria,"Tea, BBQ, Pizza, Desserts",69,3.2 +7565,Hum Sabki Rasoi,San Diego,"Pizza, BBQ, Fast Food, American, Seafood",63,3.3 +7566,Janki Vaishno Dhaba,Des Moines,"Fast Food, BBQ, Desserts, Seafood",69,3.0 +7567,Manmohan Food Plaza,Santa Ana,"Tea, BBQ, Fast Food",24,2.6 +7568,Mr.Hunger,Durango,"Chinese, BBQ, Desserts, Fast Food",81,3.0 +7569,Neelma Punjabi Dhaba,Pocatello,"Mexican, Bakery, Desserts",10,2.9 +7570,New Raj Kachori Bhandar,Savannah,"Tea, Seafood",12,3.4 +7571,Punjabi Ninja,Staunton,"Tea, BBQ, Fast Food, American, Seafood",60,3.0 +7572,Radha Swami Cool Hut,Panama City,"Tea, French, Pizza, Seafood",69,3.1 +7573,Sagar Choley Bhatoorey,St. Cloud,"Pizza, Fast Food",62,3.2 +7574,Sehyog Alpahar,Kona,"Cafe, Mexican, BBQ, Bakery",82,3.2 +7575,South Indian Hut,Salina,"Seafood, Pizza, Fast Food",67,2.9 +7576,Vijay Corner,Shreveport,"Tea, Pizza, Bakery, Cafe, Indian",19,3.0 +7577,Mithlesh Ande Wala,Worcester,"Bakery, Pizza, American",91,3.5 +7578,Roti N Boti,Kansas City,"Bakery, Seafood",12,3.5 +7579,Annapurna Caters,Dodge City,"Cafe, Mexican, Pizza",40,0.0 +7580,Ashoka's Ice Zone,Johnstown,"Tea, Fast Food, Seafood",11,0.0 +7581,Bikaner Sweets & Pastry Corner,Johnstown,"Chinese, Bakery, Pizza, Mediterranean",86,0.0 +7582,Bikaner Sweets,Dallas,"Bakery, Pizza, Indian, Desserts",33,0.0 +7583,Dee Pizza Hub,Bristol,"Mexican, BBQ, Pizza",23,0.0 +7584,Flavors of London,Burbank,"Pizza, French, BBQ, Bakery, Fast Food",49,0.0 +7585,Funduz Cafe,Milwaukee,"Chinese, Mexican, Desserts, Seafood",40,0.0 +7586,Giani,Baton Rouge,"Desserts, Cafe, Fast Food, Chinese, American",75,0.0 +7587,Grover Sweets Rajouri Wala,Valparaiso,"Desserts, Pizza, French, BBQ, Bakery",41,0.0 +7588,Guru Kripa Chicken Corner,Jacksonville,"Desserts, BBQ, Bakery, Cafe, Indian",92,0.0 +7589,Health-O-Lic,Juneau,"BBQ, Mediterranean, Fast Food",55,0.0 +7590,Himalya Chinese,Columbus,"Chinese, American, Cafe, Fast Food",25,0.0 +7591,KindBhutani's,Binghamton,"Tea, Chinese, Desserts, Seafood",99,0.0 +7592,Mama Bhanja Corner,Milwaukee,"Desserts, Pizza, Mexican, Fast Food, Cafe",28,0.0 +7593,Mama Tao,Ogdensburg,"Tea, BBQ, Mediterranean, Desserts",51,0.0 +7594,Manpasand Punjabi Zaika,Dothan,"Tea, Mediterranean, Desserts",46,0.0 +7595,Pal Restaurant,San Francisco,"Bakery, Fast Food",64,0.0 +7596,Pizza Station,Grand Junction,"Tea, French, BBQ, Fast Food, Seafood",29,0.0 +7597,Punjabi Dhaba,Newburgh,"Tea, Bakery, Fast Food",59,0.0 +7598,Punjabi Virsa,Nashville,"Desserts, Italian, BBQ, Cafe, Seafood",35,0.0 +7599,Sahib Jhatka Chicken Shop,Atlanta,"Bakery, Mexican, Indian, Seafood",26,0.0 +7600,Salt & Peppers,Santa Fe,"Pizza, French, Bakery, BBQ, American, Seafood",18,0.0 +7601,Sethi Ice Cream Parlour,Minot,"Pizza, Fast Food",36,0.0 +7602,Shah Ji Di Rasoi,Rapid City,"Tea, Pizza, Desserts",22,0.0 +7603,Shawarma Wala,Pocatello,"Fast Food, Pizza, Seafood",63,0.0 +7604,Snazzy Delights,Newburgh,"French, Bakery, BBQ, Cafe, Seafood",87,0.0 +7605,South Indian Hut,Newark,"Tea, Cafe, BBQ, Desserts",47,0.0 +7606,T-2 Di Hatti,Moab,"Fast Food, Tea, BBQ, Seafood",93,0.0 +7607,The Second Wife Kitchen,Duluth,"Desserts, BBQ, Fast Food, Cafe, American",90,0.0 +7608,Today Pizza,Bozeman,"French, Bakery, BBQ, Fast Food, Cafe, Indian",27,0.0 +7609,Turban Tadka,Mission,"Pizza, Bakery, BBQ, Indian, Seafood",62,0.0 +7610,Wah Shah Ji Wah,Saginaw,"Cafe, Pizza, Bakery, BBQ, Chinese",84,0.0 +7611,Wah Wah Chicken Corner,Colorado Springs,"Pizza, BBQ, Fast Food, Indian, Mediterranean",30,0.0 +7612,Brijwasi Sweet and Namkeen,Martha's Vineyard,"French, Pizza, Cafe",16,0.0 +7613,Khana Khazana,Albuquerque,"Tea, Seafood, Italian",93,3.7 +7614,Ahad Sons Restaurant,Bismarck,"Chinese, Bakery, Mediterranean, Seafood",60,3.4 +7615,Jughead's Fast Food Corner,Manhattan,"Cafe, Bakery, Mediterranean",67,3.6 +7616,The Coffee Bond,Eugene,"Desserts, Tea, Cafe, BBQ, Chinese",49,4.2 +7617,Wow! Momo,Boise,"Desserts, Pizza, Cafe, Mediterranean, Seafood",97,2.9 +7618,Domino's Pizza,Devils Lake,"Desserts, Tea, Indian, Fast Food, American",30,3.6 +7619,Haldiram's,Valdosta,"Tea, Pizza, French, Bakery, Fast Food, Chinese",98,3.7 +7620,Keventers,Wilmington,"Cafe, Desserts",78,3.8 +7621,Pat 'N' Harry,Brainerd,"Pizza, BBQ",69,2.3 +7622,"34, Chowringhee Lane",Albuquerque,"Chinese, Tea, French, Fast Food, Cafe",83,3.1 +7623,Aggarwal Sweets,Santa Fe,"French, Cafe, Desserts",40,2.8 +7624,Amritsari Dhaba,Scranton,"Bakery, BBQ, Fast Food, Mediterranean, Seafood",39,2.9 +7625,Apna Swad,El Paso,"Cafe, Bakery, Desserts, Seafood",63,2.9 +7626,ATM Food Corner,Amarillo,"Chinese, Bakery, Cafe",40,3.0 +7627,Burger House,Alpena,"Tea, Cafe",39,2.8 +7628,Cafe De Bienka,Elmira,"Tea, Mexican, BBQ, Indian, Seafood",100,2.7 +7629,Chatkaara Point,Grand Rapids,"Desserts, Pizza, Italian, Cafe, American",25,2.9 +7630,Dharma Punjabi Dhaba,Fort Dodge,"Tea, Mexican, BBQ, Fast Food, Indian",77,2.7 +7631,Domino's Pizza,Hilo,"Tea, Bakery, BBQ, Italian",76,2.5 +7632,Flavourz Factoree,Bishop,"Bakery, Pizza, Cafe, Fast Food",16,3.1 +7633,Gabbar Chowmein,Oakland,"Bakery, Indian, Mediterranean, BBQ",92,3.0 +7634,Gayatri's Break Point Restaurant,Louisville,"Seafood, Bakery, Desserts, Fast Food",39,3.1 +7635,Grover Sweets & Bakers,Staunton,"Cafe, Mexican, BBQ, Seafood",27,3.3 +7636,Khalsa Veg Corner,West Yellowstone,"Desserts, Bakery, Fast Food, Cafe, Indian",17,3.1 +7637,Lajawab Chinese Food,Johnstown,"Tea, Desserts",12,3.0 +7638,Lajwab Bakery,Philadelphia,"Desserts, Tea, Italian, Bakery, Seafood",54,3.1 +7639,Maharani Rasoi,Peoria,"French, Bakery, American, Seafood",44,3.0 +7640,Natkhat Bakers,Juneau,"Bakery, Desserts, Seafood",61,3.1 +7641,Pastry Palace,Roswell,"Seafood, American, Fast Food",44,3.2 +7642,Punjabi Tadka,Johnstown,"Tea, Seafood",93,2.7 +7643,Radha Swami Vaishno Dhaba,Longview,"Pizza, Bakery, Fast Food",38,3.0 +7644,Scoops,Dallas,"Tea, Chinese, Seafood, Fast Food",76,2.8 +7645,Shah Bakery,Charlottesville,"Pizza, American, Seafood",20,3.0 +7646,Shahi Kachauri Wale,Oklahoma City,"French, Pizza, Cafe",28,2.8 +7647,Shahi Kachauri,Hancock,"Cafe, Bakery, Indian, Desserts",94,2.8 +7648,Shri Bikaner Sweets,Manhattan,"Cafe, Pizza, Seafood",18,2.9 +7649,Shri Krishna Vaishno Dhaba,Butte,"Tea, Chinese, BBQ, Desserts",15,3.0 +7650,Shri Murli Wala,Memphis,"Pizza, French, Bakery, BBQ, Mediterranean",13,2.8 +7651,Shri Radha Ki Rasoi,Ogdensburg,"Chinese, Mediterranean, Desserts, Seafood",15,2.8 +7652,Singh's Ice Cream Parlour,Harlingen,"Cafe, Mexican, Desserts, Seafood",17,3.0 +7653,Swastik Restaurant,Miami,"Tea, Bakery, American, Seafood",67,2.7 +7654,Tanatan Corner,Brownsville,"Tea, Cafe, BBQ, Seafood",76,2.9 +7655,Tasty Bite,Houston,"Bakery, Fast Food, Cafe, American, Seafood",15,2.8 +7656,Aggarwal Jalebi Wale,State College,"Tea, Pizza, Bakery, American, Seafood",77,0.0 +7657,Aggarwal Sweets,Cedar Rapids,"Pizza, BBQ, Mediterranean",65,0.0 +7658,Arora Pastry Palace,Ontario,"Fast Food, French, Bakery, Seafood",65,0.0 +7659,Chinese Chatorey Xpress,Trenton,"Desserts, Italian, Cafe, Indian, Seafood",61,0.0 +7660,Chocochill,Del Rio,"Bakery, Seafood",33,0.0 +7661,Da Pizza Zone,State College,"Tea, Mexican, Bakery, Mediterranean, Seafood",15,0.0 +7662,Food N Shakes,Dallas,"Desserts, Pizza, French, BBQ, Seafood",23,0.0 +7663,Green Chick Chop,Scranton,"Pizza, Bakery, Fast Food",96,0.0 +7664,Grover Sweets,Alexandria,"Tea, Bakery, BBQ, Fast Food, Indian",20,0.0 +7665,J V's Fried Chicken,Harlingen,"American, Desserts, Fast Food",88,0.0 +7666,Kamal Chat Bhandar,New York,"Chinese, Bakery, BBQ",36,0.0 +7667,Khalsa Chicken Corner,Paducah,"Tea, French, Bakery, BBQ",72,0.0 +7668,Lala Da Shudh Vaishno Dhaba,Eugene,"Cafe, French, Bakery, Chinese",67,0.0 +7669,Madras Cafe,Jacksonville,"Bakery, Indian, Mediterranean, Fast Food",81,0.0 +7670,New China Town,Greer,"Tea, Bakery, Fast Food",82,0.0 +7671,Pick & Carry,New Bern,"Tea, Cafe, Indian, Fast Food",65,0.0 +7672,Punjabi Chicken,Key West,"Bakery, BBQ, Desserts",93,0.0 +7673,Sandwiches 'N' More,Pasco,"Tea, Cafe, Mediterranean, Desserts",82,0.0 +7674,Sapna Restaurant,North Bend,"Tea, Cafe, BBQ, Desserts",84,0.0 +7675,Sargam Sweets,Flagstaff,"Seafood, BBQ, Desserts, Italian",60,0.0 +7676,Tandoori Theka,Los Angeles,"Pizza, Bakery, BBQ, Chinese, Seafood",47,0.0 +7677,The Darjiling Delicious Chinese Food,Devils Lake,"Tea, Pizza, Mexican, Fast Food, Seafood",41,0.0 +7678,Veg Darbar - The Royal Taste,Kodiak,"Tea, Italian, BBQ, Fast Food, Cafe",19,0.0 +7679,Veg. Darbar,Norfolk,"Tea, Cafe, Fast Food",49,0.0 +7680,Wah Ji Wah,Colorado Springs,"Tea, Pizza, Desserts",95,2.4 +7681,Cafe Coffee Day,Harrisburg,"Bakery, American, Seafood",41,2.6 +7682,Chalte Firte Momos,Longview,"Tea, Mexican, Seafood",87,2.6 +7683,Chutneez Restaurant Lounge & Bar,Savannah,"Cafe, Seafood",52,2.7 +7684,Domino's Pizza,Denver,"Desserts, Tea, Pizza, Mexican, Mediterranean",81,3.4 +7685,Fattoush,Hartford,"Desserts, Tea, Italian, Mexican, Fast Food, Cafe",68,2.9 +7686,Keventers,Cedar City,"Bakery, American, Seafood",89,3.3 +7687,Kutty's South Indian Cafe,Butte,"Tea, Pizza, Italian, Bakery, Mediterranean",66,3.4 +7688,Mandrain,San Juan,"Cafe, Bakery",27,2.8 +7689,Nazeer Foods,Concord,"Pizza, Seafood",23,3.4 +7690,Nirula's Ice Cream,Gulfport,"Cafe, Mexican, Pizza, Desserts",79,3.0 +7691,Punjabi Tadka,Flagstaff,"Cafe, Italian, Fast Food, Chinese, Seafood",85,2.8 +7692,Rocking Woods,Grand Forks,"Tea, Cafe, Bakery",62,2.6 +7693,Shawarma Wala,Roswell,"Bakery, Pizza, Mediterranean, Seafood",15,2.5 +7694,Subway,Austin,"Tea, French, Cafe, Desserts",91,2.5 +7695,The Yellow Chilli,Yuma,"Italian, French, BBQ, Bakery, Fast Food, Cafe",14,2.7 +7696,The Yummy Chilli,Atlantic City,"Bakery, Pizza",11,2.9 +7697,United Punjab,Kalispell,"French, Bakery, Pizza, Fast Food",88,2.5 +7698,McDonald's,Valparaiso,"French, BBQ, Cafe, Fast Food",37,3.6 +7699,Vintro,Sitka,"BBQ, Seafood",81,3.9 +7700,Wow! Momo,Eugene,"Tea, Mexican, Desserts, Fast Food",28,3.5 +7701,"34, Chowringhee Lane",Charlotte Amalie,"Desserts, Italian, Bakery, BBQ, Cafe",19,2.3 +7702,Kebab Xpress,Colorado Springs,"Indian, Mediterranean, BBQ, Seafood",57,2.4 +7703,Moti Mahal Delux Tandoori Trail,Fort Myers,"Desserts, Tea, French, BBQ, Cafe",32,2.2 +7704,Pizza Hut,Petersburg,"French, BBQ, Desserts",56,2.4 +7705,The Golden Dragon,Hagerstown,"Desserts, Mexican, BBQ, Bakery, Cafe",39,2.4 +7706,Yo! China,Ithaca,"Tea, Pizza, Italian, Bakery, Fast Food",66,2.0 +7707,Hawkers,Albuquerque,"Tea, Pizza, French, BBQ, American",21,3.4 +7708,Nirula's,Gustavus,"Cafe, Pizza, Fast Food, Chinese, Seafood",74,3.0 +7709,Sagar Ratna,St. Petersburg,"Pizza, Indian, BBQ",87,2.8 +7710,Tribe,Juneau,"Tea, Pizza, Bakery",64,3.3 +7711,Angels in my Kitchen,Spokane,"Tea, Cafe, American, Fast Food",95,3.7 +7712,Beijing Street,Little Rock,"Bakery, Fast Food",73,3.8 +7713,Bun Intended,Memphis,"French, Pizza, Bakery, Seafood",59,3.8 +7714,Captain Chang,Bishop,"Seafood, Mexican, Desserts, Fast Food",35,3.9 +7715,Captain Grub,El Paso,"Tea, French, Cafe, Fast Food",92,3.8 +7716,Clemency- The Restaurant & Cafe,Fort Wayne,"Tea, Chinese, Mexican, Fast Food",54,3.8 +7717,Flaming Chilli Pepper,New Bern,"Bakery, BBQ, Seafood",32,3.8 +7718,Hong Kong Express,Vernal,"Bakery, BBQ, Fast Food, American, Seafood",31,3.7 +7719,Majeed's,Punta Gorda,"Tea, French, Bakery, Mediterranean",26,3.5 +7720,Majlis-e-Mughal,Charlottesville,"French, Pizza, Desserts",95,3.5 +7721,Mickey's Kitchen,Yakima,"Desserts, Italian, Bakery, BBQ, Seafood",13,3.9 +7722,Nanking,Roswell,"Bakery, Pizza, Indian, Italian",27,3.6 +7723,Nawab Dera,North Bend,"Pizza, BBQ, Cafe, Indian, Seafood",72,3.8 +7724,The Cafe,Deadhorse,"Tea, Pizza, Indian, Bakery, Cafe, American",16,3.8 +7725,The Village Caf愆,Chicago,"Tea, Cafe, Mediterranean, Seafood",57,3.7 +7726,Cookfresh,La Crosse,"Fast Food, Mediterranean, Seafood",91,0.0 +7727,Cafe Connect,Valdosta,"Tea, Chinese, Bakery",98,4.2 +7728,Happy Hakka,Key West,"Pizza, Mexican, Bakery, BBQ, American",28,4.1 +7729,Indian Saffron Co.,Cedar City,"Pizza, Mexican, BBQ, Cafe, American, Seafood",39,4.2 +7730,DCK- Dana Choga's Kitchen,Raleigh,"Pizza, Mexican, Bakery, Fast Food, Cafe",32,2.9 +7731,Domino's Pizza,Hattiesburg,"Bakery, Indian, Seafood",64,2.8 +7732,Sagar Ratna,Bloomington,"Pizza, Italian, Bakery, BBQ, Fast Food",48,3.3 +7733,Shree Bhagatram,San Juan,"Desserts, Pizza, Mexican, Fast Food, Cafe",11,3.3 +7734,Subway,Great Falls,"BBQ, Seafood",18,2.5 +7735,Biryani Blues,Muskegon,"Cafe, Pizza, Fast Food",68,3.9 +7736,Kebab Gali,Denver,"Tea, Bakery, BBQ, Italian",63,3.9 +7737,KFC,Kalispell,"Cafe, Mexican, Mediterranean, Desserts",60,3.6 +7738,Tipu Sultan,Worcester,"Pizza, Bakery, Fast Food, Indian, Seafood",85,3.7 +7739,Angels in my Kitchen,Omaha,"Desserts, Mexican, Bakery, BBQ, Fast Food, American",32,3.2 +7740,Barista,Fort Wayne,"Tea, Pizza, Italian, Bakery, BBQ",28,3.3 +7741,Bengal Sweet Palace,Wenatchee,"Cafe, Bakery",42,3.3 +7742,Bread'D Bites,Albuquerque,"Tea, Pizza, Italian, Fast Food, Mediterranean",76,3.1 +7743,Chinese Hut,Florence,"Cafe, Indian, Desserts, Seafood",56,3.4 +7744,Foodland by Orchid,Syracuse,"Tea, Indian, BBQ, Fast Food",95,2.9 +7745,From The Kitchen of Mala Bindra,Sun Valley,"Cafe, Desserts, Fast Food",31,3.1 +7746,Go Kylin,Brownsville,"Pizza, Italian, BBQ, Indian, Seafood",11,2.8 +7747,Green Chick Chop,Melbourne,"French, Pizza, Desserts, Seafood",43,3.3 +7748,Hawkers,Bishop,"Tea, Pizza, Fast Food, Cafe, Mediterranean",19,2.7 +7749,HotPlate,Bismarck,"Tea, Pizza, Cafe, Indian, Seafood",28,3.1 +7750,New Janta Restaurant,Manchester,"Cafe, Bakery",64,3.1 +7751,Rainbows,Cheyenne,"Tea, Mediterranean, Desserts, Fast Food",87,3.2 +7752,Sinfully Yours,Grand Junction,"Pizza, Bakery, BBQ, Seafood",43,3.3 +7753,Slice of Italy,Bemidji,"Cafe, Pizza, BBQ, Chinese, Indian",99,2.8 +7754,Spice Deli,San Antonio,"Tea, Fast Food, American, Italian",19,3.3 +7755,Twenty Four Seven,Nantucket,"Chinese, Pizza, Bakery, Mediterranean",39,3.1 +7756,Uncle Tom's Steamed Hot Dogs,Gulfport,"Tea, French, Desserts, Seafood",58,3.3 +7757,AOWLS,Escanaba,"Tea, Italian, BBQ, Fast Food, Mediterranean, Seafood",57,3.5 +7758,Costa Coffee,San Angelo,"Tea, Italian, Bakery, Indian, Seafood",92,3.6 +7759,Georgia Dakota,Nome,"Desserts, Tea, Cafe, Fast Food, Chinese",43,3.6 +7760,Instapizza After Hours,Brunswick,"Tea, Cafe, Indian, Italian",30,3.5 +7761,The Pint Room,Sacramento,"Tea, Cafe, Mediterranean",62,3.7 +7762,Anthony's Kitchen,Helena,"Desserts, Tea, BBQ, Cafe, Indian",93,0.0 +7763,Bakermania,Cleveland,"Bakery, Pizza, BBQ, Cafe",71,0.0 +7764,Cafe Coffee Day,Vernal,"Cafe, Desserts",39,0.0 +7765,Cones & Curries,Vernal,"Tea, Fast Food, Cafe, Indian, Seafood",54,0.0 +7766,Giani,Sun Valley,"Chinese, Bakery, Pizza",74,0.0 +7767,Kaptain Bakery,San Angelo,"Tea, BBQ, Desserts, Seafood",53,0.0 +7768,Kayasth Cuisine,Pensacola,"Desserts, Cafe, BBQ, Fast Food, Chinese, American",69,0.0 +7769,Mahinder Food Corner,Islip,"Cafe, BBQ, Fast Food",67,0.0 +7770,Mohanty Bakery & Confectionery,Escanaba,"Chinese, Bakery, Pizza, BBQ",18,0.0 +7771,Practically Perfect,Valparaiso,"Pizza, Indian, Seafood",38,0.0 +7772,Take Away Depot,Fort Smith,"Pizza, American, Desserts",32,0.0 +7773,The Artful Baker,Fort Wayne,"Indian, Mediterranean, Desserts, Seafood",75,0.0 +7774,Perch Wine & Coffee Bar,Norfolk,"Tea, Chinese, BBQ, Seafood",20,4.3 +7775,Aggarwal Confectionary,Billings,"Bakery, American, Cafe",12,2.8 +7776,Aggarwal Sweet Corner,Helena,"Bakery, Mexican, Indian, Pizza",30,2.9 +7777,Ananda's,Valparaiso,"Chinese, Cafe, Desserts",45,3.0 +7778,Ankur Family Restaurant,Bishop,"Desserts, Pizza, Bakery, Cafe, Mediterranean",53,2.8 +7779,Ayush Restaurant,Longview,"Bakery, Indian, Cafe, Italian",80,3.2 +7780,Chef's Paradise,Everett,"Desserts, Tea, Pizza, French, Bakery",90,3.1 +7781,Domino's Pizza,Nome,"Chinese, Bakery, Cafe",81,2.6 +7782,Fatafat Fast Food,Yakima,"Tea, Cafe, Desserts",73,3.3 +7783,Giani,Missoula,"Tea, Chinese, BBQ",28,3.0 +7784,Green Tea Fanatics,Hartford,"Mexican, Bakery, BBQ",32,3.4 +7785,Khansama,Melbourne,"Cafe, BBQ, Fast Food",60,3.3 +7786,Pauls Food,Rochester,"BBQ, Fast Food",84,2.9 +7787,Punjabi Vaishno Rasoi,Prescott,"Cafe, Pizza, Desserts",29,2.9 +7788,Republic of Chicken,Augusta,"Desserts, Mexican, Bakery, Fast Food, Seafood",46,2.9 +7789,Taj Sweets,Honolulu,"Bakery, Mediterranean, BBQ",23,3.1 +7790,The Cake,San Jose,"Cafe, American, BBQ",53,3.0 +7791,The Food Court,Ithaca,"Cafe, Indian, BBQ, Seafood",14,3.7 +7792,Adi's Restaurant,Ketchikan,"Cafe, Bakery, Pizza, Fast Food",90,0.0 +7793,Aggarwal Sweet & Bakers,Grand Island,"Tea, Pizza, Seafood",41,0.0 +7794,Aggarwal Sweets,Cedar City,"American, Indian, Desserts, Seafood",60,0.0 +7795,Aggarwal Sweets,Presque Isle,"Desserts, Italian, BBQ, Cafe, Mediterranean",46,0.0 +7796,Always Eat Green,Orlando,"Tea, Italian, Fast Food, Cafe, Seafood",98,0.0 +7797,Anjali Resaturant,San Angelo,"Desserts, Tea, BBQ, Fast Food, American, Mediterranean",44,0.0 +7798,Annapoorna Bhojanalya,Charleston,"Tea, Pizza, Desserts",89,0.0 +7799,Anupam Eating Point,San Francisco,"Desserts, Pizza, Mexican, BBQ, Fast Food",10,0.0 +7800,Bikaner Rasoi,Birmingham,"Tea, Bakery, Cafe, Mediterranean, Seafood",17,0.0 +7801,Cafe Mom,Laredo,"French, BBQ, Seafood",26,0.0 +7802,Cafe Youth,Provo,"Tea, Pizza, Mexican, Fast Food, Chinese",50,0.0 +7803,Cake Express,Columbus,"Tea, Pizza, BBQ",28,0.0 +7804,Cake Knighter,Dallas,"Pizza, Fast Food, American, Mediterranean, Seafood",95,0.0 +7805,Catchup Green,Victoria,"Pizza, BBQ",27,0.0 +7806,D Food,Ogden,"French, Pizza, Desserts, Fast Food",73,0.0 +7807,Delicious Cake,Boston,"Tea, Mexican, Bakery, BBQ, Seafood",67,0.0 +7808,Famous Parantha and Poori Sabzi,Greensboro,"Cafe, BBQ, Fast Food",18,0.0 +7809,FM Biryani Point,Yakutat,"Cafe, Bakery, BBQ, Italian",87,0.0 +7810,Food Plaza,Laramie,"Chinese, Bakery, American, Pizza",64,0.0 +7811,Foodiez,Missoula,"Fast Food, Cafe, BBQ, Italian",34,0.0 +7812,Goli Vada Pav No. 1,Latrobe,"Cafe, Pizza, Fast Food",51,0.0 +7813,Hyderabad's Delight,State College,"BBQ, Desserts, Seafood",12,0.0 +7814,Khan Tandoori Hub,West Palm Beach,"Desserts, Pizza, French, Bakery, Cafe, Mediterranean",35,0.0 +7815,Khan Tandoori Nights,Columbus,"Fast Food, Seafood",33,0.0 +7816,Meatwale.com,Alpena,"Tea, Fast Food",55,0.0 +7817,New Aggarwal Sweets & Fast Food,Durango,"Tea, BBQ, Desserts, Fast Food",86,0.0 +7818,Night Munchers,Sioux City,"Chinese, Pizza, Desserts",20,0.0 +7819,Old Moradabadi Chicken Corner,Elmira,"Tea, Chinese, Cafe",87,0.0 +7820,Richa's Bakery,Adak Island,"Tea, Fast Food, Desserts, Seafood",81,0.0 +7821,Riyaz Biryani Corner,Gainesville,"Chinese, Desserts, Seafood",69,0.0 +7822,Rudra The Dhaba,Tulsa,"Pizza, Italian, Bakery, Fast Food, Chinese",23,0.0 +7823,Seven Star Pizza,Montgomery,"Cafe, Seafood",82,0.0 +7824,Shahi Muradabadi Chicken Biryani,Richmond,"Tea, Mexican, Pizza, Fast Food",55,0.0 +7825,Shree Krishna Restaurant,Provo,"Pizza, Italian, BBQ, Cafe, Indian, Seafood",95,0.0 +7826,Shree Sai Bhog,Rock Springs,"Tea, Fast Food, Bakery, Italian",65,0.0 +7827,Soni Food Court,Los Angeles,"Tea, Chinese, French, Pizza",96,0.0 +7828,South Street Cafe,Plattsburgh,"Fast Food, BBQ, Seafood",70,0.0 +7829,Special Chicken Biryani,Brunswick,"Tea, Seafood, Desserts, Italian",34,0.0 +7830,Sweets n Treats,Grand Forks,"Fast Food, Bakery, BBQ, Italian",53,0.0 +7831,The Royal Prestige,Atlantic City,"French, BBQ, Fast Food, Cafe, Seafood",48,0.0 +7832,Twenty Four Seven,Stockton,"Desserts, Tea, Fast Food, Indian, Mediterranean",70,0.0 +7833,Two Friends Roll Corner,Harrisburg,"Tea, Pizza, Mexican, BBQ, Cafe",89,0.0 +7834,Waikiki,Augusta,"Tea, Pizza, Desserts",85,0.0 +7835,Zaika Chicken Corner,Kansas City,"Tea, Bakery, Fast Food, Indian, Seafood",86,0.0 +7836,Zombiez,Nome,"Desserts, Tea, BBQ, Chinese, Indian",92,0.0 +7837,366 Junction,Muskegon,"Cafe, Indian, Desserts, Fast Food",49,3.3 +7838,Black & Brew,Missoula,"Desserts, Pizza, Mexican, Bakery, Indian",88,3.1 +7839,Hari Om Bhojanalaya,Fort Myers,"Fast Food, Cafe, BBQ, Seafood",49,3.4 +7840,Nalwa's Hotspot,Burbank,"Bakery, Desserts",63,3.1 +7841,Pasta Hub,Wichita,"Tea, Cafe, Bakery, BBQ, Chinese",63,3.0 +7842,Rock n Wood Cafe,Latrobe,"Tea, Pizza, Bakery",35,3.4 +7843,Roll Corner,Plattsburgh,"Tea, Fast Food, Seafood, Italian",18,3.3 +7844,Shree Nandhini Cafe,Owensboro,"Cafe, Pizza, BBQ, Seafood",71,3.3 +7845,Sindhi Dhaba,Scottsbluff,"Tea, Bakery, American, Italian",23,2.9 +7846,Take N Taste,Hancock,"Pizza, Bakery, Cafe, Mediterranean, Seafood",60,3.1 +7847,Taxi Bar & Cafe,Elmira,"Pizza, Italian, Fast Food, Cafe, Mediterranean",24,3.3 +7848,The Little Diner,Sioux Falls,"French, Desserts, Seafood",14,3.4 +7849,Cafeteria & Co.,Panama City,"Tea, Pizza, Indian",94,4.6 +7850,Burger Point,Amarillo,"BBQ, Pizza, Indian, Desserts",15,3.8 +7851,Cafe All-Inn,San Francisco,"American, Desserts, Seafood",81,3.8 +7852,Chowringhee,Cincinnati,"Tea, Cafe, American",72,3.5 +7853,Flamess Restaurant & Cafe Village,Daytona Beach,"Chinese, Pizza, Seafood",14,3.5 +7854,Jack 'n' Chill,Spokane,"Tea, Pizza, BBQ, Fast Food",67,3.6 +7855,Kake Di Hatti,Watertown,"Tea, Chinese, Cafe",83,3.6 +7856,Mad Monkey,Scottsbluff,"Tea, Fast Food",89,3.7 +7857,Manohar Cakes & Bikaneri,Boston,"Tea, Cafe, Pizza, Bakery",34,3.5 +7858,Shagun,Lynchburg,"Tea, American, BBQ",15,3.9 +7859,Shyam Chaat Bhandar,Spokane,"Mexican, Desserts, Seafood",35,3.5 +7860,Telegram,Helena,"Tea, BBQ, Desserts",74,3.5 +7861,The University Bistro,Branson,"Cafe, Pizza, BBQ",46,3.6 +7862,736 A.D.,New York,"Desserts, Bakery, Fast Food, American, Mediterranean",99,4.1 +7863,Big Yellow Door,Harlingen,"Tea, Bakery, Desserts, Seafood",21,4.3 +7864,Mr. Crust Bakers,Killeen,"Tea, Mexican, Bakery, BBQ, Seafood",63,4.2 +7865,Phonebooth Caf愆,Baton Rouge,"Desserts, Pizza, French, Fast Food, American, Seafood",25,4.1 +7866,Tony's,Minneapolis,"Pizza, French, Fast Food, Mediterranean, Seafood",27,4.4 +7867,Wake 'n' Bake Cafe,Saginaw,"Tea, Chinese, Mexican, Fast Food",12,4.0 +7868,Gabbar Di Hatti,Grand Forks,"Cafe, Seafood, Italian",19,3.4 +7869,Chennai Express,Baton Rouge,"Tea, Seafood",68,0.0 +7870,1990's,Honolulu,"Tea, Pizza, Italian, Fast Food, Seafood",85,3.3 +7871,Amul Cafe,Mosinee,"Tea, Indian, Desserts",24,3.3 +7872,Burger Point,Elmira,"Tea, Pizza",87,3.4 +7873,Buta Singh Da Dhabba,Madison,"Tea, Bakery, Mediterranean, Italian",22,2.8 +7874,Cafe Amigo,Phoenix,"Tea, Desserts, Italian",24,3.0 +7875,Cafe Coffee Day,Dallas,"Cafe, BBQ, Desserts, Seafood",22,3.0 +7876,Cake Palace,Manhattan,"French, BBQ, Desserts",27,2.7 +7877,Carara,Brainerd,"Pizza, BBQ, Desserts",19,2.6 +7878,Channi Pishori Chicken,Tucson,"Tea, Mexican, Desserts, Italian",55,3.3 +7879,Chatkora Food N Snacks Corner,Dayton,"Fast Food, Bakery, Italian",88,2.9 +7880,Chetana Bakes,Sioux Falls,"Desserts, Tea, Italian, Fast Food, Seafood",56,3.0 +7881,Chily Hut,Buffalo,"Fast Food, Cafe, Mexican, Seafood",23,3.2 +7882,De' Bistro,State College,"Tea, French, Pizza, Bakery",17,3.3 +7883,Deep Bakers,Harrisburg,"Tea, Seafood, Cafe, Italian",98,3.2 +7884,Delhi 6,Monterey,"Desserts, Pizza, Fast Food, Indian, Seafood",82,2.6 +7885,Finest Pizzeria,Baltimore,"Tea, Seafood",72,3.1 +7886,Food Lab,Minot,"Tea, Bakery, Mediterranean, Desserts",98,3.0 +7887,Goli Vada Pav No. 1,Sun Valley,"BBQ, Indian, American, Desserts",25,3.3 +7888,Grover Sweets,Watertown,"Tea, French, Mexican, BBQ, Fast Food",17,3.1 +7889,Hema Chinese Foods,Petersburg,"Desserts, Tea, Italian, Cafe, Seafood",68,3.3 +7890,Hunger Stop,Bishop,"Fast Food, Seafood, Tea, Italian",64,3.2 +7891,Ishwar Sweets,Charlotte Amalie,"Desserts, Tea, Italian, Cafe, Seafood",79,3.4 +7892,Kathi Express,Bellingham,"BBQ, Chinese, Pizza, Desserts",85,2.6 +7893,Kream's,San Francisco,"Tea, Pizza, BBQ, Chinese, Seafood",67,3.1 +7894,Madras Cafe,Lake Charles,"Bakery, Pizza",42,3.3 +7895,Mandeep Punjabi Rasoi,San Angelo,"Cafe, Pizza, Fast Food",16,3.0 +7896,Masti Curry,Nantucket,"BBQ, Indian, Desserts, Fast Food",89,2.8 +7897,New Madras Cafe,Wenatchee,"Mexican, Bakery, BBQ, Fast Food",36,3.1 +7898,Pakwan,Long Beach,"Desserts, Pizza, Fast Food, Indian, Seafood",96,2.8 +7899,Patiala Shahi Soups,Raleigh,"Desserts, Tea, Bakery, Fast Food, Chinese",28,3.1 +7900,Pizza Yum,Mason City,"French, Pizza, Cafe, Seafood",27,3.1 +7901,Polka Pastry & Snack Bar,Raleigh,"Pizza, Mexican, Fast Food, Cafe, Indian",48,2.7 +7902,Red Hot,Great Falls,"Seafood, Bakery, Pizza, Italian",24,3.3 +7903,Republic of Chicken,Chicago,"Tea, Bakery, Fast Food",91,3.1 +7904,Sai Ann Kutir,Tucson,"Pizza, Mexican, Bakery, Cafe, Seafood",80,2.8 +7905,Saravana South Indian Hut,Rock Springs,"Tea, Cafe, Pizza, Mediterranean",68,3.2 +7906,Sardar Pure Meat Shop,San Antonio,"Cafe, Mexican, Desserts",53,3.2 +7907,Shama Chicken Corner,Yakima,"Bakery, Indian, Desserts, Fast Food",58,3.1 +7908,Shan E Punjab,Mosinee,"Chinese, Pizza, BBQ, Desserts",66,3.4 +7909,Shanghai Nights,Charleston,"Tea, Bakery, Desserts",47,2.8 +7910,Shree Ram Sweets & Bakers,Duluth,"American, BBQ, Seafood",72,3.0 +7911,Sindhi Kulfi Wala,New Bern,"Cafe, Bakery, Indian",68,3.0 +7912,South Indian Cafe,Newark,"Indian, Desserts, Fast Food",83,3.3 +7913,South Indian Hut,Pensacola,"Tea, Seafood, Fast Food",48,3.4 +7914,Spinns Resto-Bar,Charleston,"Pizza, BBQ, Desserts, Seafood",16,2.6 +7915,Subway,Stockton,"Cafe, Mexican, Bakery, Fast Food",58,2.6 +7916,Taneja Bakery,Amarillo,"Tea, Bakery, Indian",80,3.2 +7917,Tequila Express,Muskegon,"Tea, Pizza, BBQ, Fast Food",17,3.4 +7918,The China Town,Durango,"Cafe, Pizza, BBQ, Seafood",55,3.4 +7919,THS - The Hunger Street,Elmira,"Bakery, Pizza, American, Seafood",80,3.2 +7920,True Blue,Salisbury,"Desserts, Italian, Fast Food, American, Seafood",30,3.2 +7921,Twenty Four Seven,Hilton Head,"Cafe, Indian, Fast Food",51,3.1 +7922,Your's Chole Bhature,Islip,"Desserts, Pizza, Italian, Mexican, BBQ, Fast Food",74,2.6 +7923,Baskin Robbins,Washington,"Tea, Mexican, Bakery, Fast Food, Seafood",87,3.5 +7924,Pure Punjabi,Prescott,"Desserts, Tea, Italian, BBQ, Chinese, Seafood",10,3.5 +7925,Brick Station,Williston,"Tea, Cafe, Mediterranean, Fast Food",26,0.0 +7926,Food Factory,Duluth,"Fast Food, Chinese, Seafood",11,0.0 +7927,Pastry Point,Vernal,"Tea, BBQ",66,0.0 +7928,Prem Jee Da Dhaba,Idaho Falls,"Desserts, Indian, BBQ",95,0.0 +7929,Welcome Food Point,Wilmington,"Bakery, Desserts",68,2.3 +7930,Arora Snacks,Austin,"Tea, Indian, BBQ, Cafe, American",57,2.8 +7931,Bansal Mithai Wale,Elmira,"Seafood, Desserts, Fast Food",21,2.9 +7932,Fabulous Cake Bites,Boise,"Chinese, Pizza, Bakery, Desserts",76,3.4 +7933,Garam Masala Food Corner,New York,"Pizza, Bakery, Desserts",40,3.3 +7934,Health Buzzz,Toledo,"Tea, BBQ, Seafood",19,3.1 +7935,Kumar Pav Bhaji Corner,State College,"Cafe, Mexican, Pizza, Fast Food",72,3.2 +7936,Le Chef,Harlingen,"Tea, Cafe, French, Bakery, Chinese, Seafood",64,3.0 +7937,Nainy Fast Food,Newburgh,"Tea, Pizza, Mexican, Bakery, BBQ",10,3.3 +7938,Platform Nine and Three Quarters,Wichita Falls,"Chinese, Bakery, BBQ",99,2.6 +7939,Pudding & Pie,Oklahoma City,"Cafe, Bakery, Desserts",67,3.1 +7940,Rapture,Dothan,"Tea, Cafe, BBQ, Desserts",99,2.5 +7941,Sachdeva Chinese Fast Food,Arcata,"Chinese, Bakery, Seafood",90,3.3 +7942,Simply Cakes,Oakland,"French, BBQ, Desserts, Italian",53,3.2 +7943,The Dosa King,Newport News,"Desserts, Tea, Pizza, French, Bakery, Chinese",46,2.9 +7944,Bhappe Di Hatti,Kotzebue,"Tea, Fast Food, Indian, Seafood",21,3.5 +7945,Cafetorium,Tampa,"Desserts, Pizza, French, Mexican, Seafood",58,3.8 +7946,Food Express,Palm Springs,"Cafe, Chinese, Pizza, Mediterranean",21,3.6 +7947,Sai Bajaj Restaurant,Cedar Rapids,"Chinese, Bakery, Fast Food",67,3.6 +7948,The Chimney Bar-Be-Que,Buffalo,"Desserts, French, Bakery, BBQ, Seafood",71,3.6 +7949,Urban Punjab,Detroit,"Tea, Cafe, Fast Food",40,3.6 +7950,Cheese Bitez Pizza,Daytona Beach,"Tea, Seafood, Pizza, Fast Food",95,0.0 +7951,Goyal Sweets,Kahului,"Tea, Fast Food",38,0.0 +7952,Gulati's Takeaway,Sioux City,"French, BBQ, Cafe, American, Seafood",81,0.0 +7953,Jyoti Sweets,Hartford,"Tea, Pizza, Italian, American, Seafood",75,0.0 +7954,Momos Hi Momos,Portland,"Bakery, Mediterranean, Fast Food",86,0.0 +7955,New Bhappe Di Hatti,Rockford,"Seafood, Mexican, BBQ, Fast Food",76,0.0 +7956,Oven Fresh,Adak Island,"Pizza, Bakery, BBQ",19,0.0 +7957,Rupa Ice Cream Parlour,Duluth,"Seafood, Indian, Cafe, Fast Food",69,0.0 +7958,Scoopers 'n' Bakers,Burbank,"Chinese, Pizza, BBQ",98,0.0 +7959,South Indian Food Plaza,Chicago,"Mexican, BBQ, Mediterranean, Seafood",68,0.0 +7960,Super Snacks,State College,"Desserts, Pizza, French, Bakery, Fast Food, American",72,0.0 +7961,Unique Pastry,Valdosta,"French, Bakery, BBQ, Italian",57,0.0 +7962,Veg Food Express,Bend,"Bakery, BBQ, Cafe, American, Seafood",88,0.0 +7963,Chintamani's Namkeen,Kalispell,"Bakery, Seafood",30,2.4 +7964,Deltasious,Scottsbluff,"Chinese, Bakery, Cafe, Desserts",72,2.2 +7965,Tandoori Junction,Oklahoma City,"Mexican, Bakery, BBQ, Fast Food",55,2.4 +7966,Apni Rasoi,Charlottesville,"Desserts, French, Bakery, Cafe, Mediterranean",76,2.6 +7967,Haldiram Bhujiawala,Ogdensburg,"French, BBQ, Cafe, Mediterranean, Seafood",28,3.4 +7968,Meghraj Food Court,Twin Falls,"Tea, Cafe, Bakery, Chinese, Seafood",61,3.0 +7969,Meghraj Sweets,Niagara Falls,"Desserts, Pizza, Mexican, Bakery, Fast Food",63,3.2 +7970,Chill Out,Arcata,"French, Pizza, Indian, Seafood",20,0.0 +7971,Chilli Chinese,Grand Island,"Tea, Mexican, Fast Food",28,0.0 +7972,"34, Chowringhee Lane",Juneau,"Pizza, BBQ, Desserts",18,3.4 +7973,Subway,Butte,"Mexican, Pizza, American, Seafood",30,2.1 +7974,The Golden Dragon,Seattle,"BBQ, Mediterranean, Seafood",15,3.5 +7975,KFC,Raleigh,"Chinese, Seafood, Mediterranean, Fast Food",72,3.4 +7976,Mitra Da Dhaba,Ponce,"Desserts, Italian, BBQ, Cafe, Seafood",76,3.5 +7977,Mr. Sub,Binghamton,"Tea, Mexican, BBQ",23,3.7 +7978,Kennedy's,Oklahoma City,"Tea, Pizza, Italian, BBQ, Chinese, Seafood",70,4.1 +7979,Keventers,Juneau,"Tea, Cafe, Indian, Desserts",63,3.1 +7980,Street Foods by Punjab Grill,Valdosta,"Tea, Fast Food",96,3.2 +7981,Subway,Fort Wayne,"Cafe, Bakery, Seafood",100,3.1 +7982,Wow! Momo,Laredo,"Pizza, French, Bakery, BBQ, Fast Food",87,3.1 +7983,Biryani Blues,Everett,"Seafood, Desserts, Fast Food",56,3.6 +7984,Asia Seven Express,Petersburg,"French, Bakery, Fast Food, Cafe, Mediterranean",76,0.0 +7985,Bikanervala,Salina,"Tea, BBQ, Italian",76,0.0 +7986,Cafe Huddle,Shreveport,"Tea, Cafe, Bakery",69,0.0 +7987,Chai Garam,Grand Island,"Fast Food, Seafood, Bakery, Italian",83,0.0 +7988,Dolce Gelato,Gainesville,"French, Bakery, Indian, Seafood",58,0.0 +7989,GoGourmet,Boston,"Bakery, Desserts",18,0.0 +7990,Karim's,Wilmington,"Cafe, Pizza, Bakery, Chinese, Indian",93,0.0 +7991,Khan Chacha,Daytona Beach,"Tea, Mediterranean, Desserts, Italian",73,0.0 +7992,Pizza Hut Delivery,Austin,"Bakery, Mexican, Pizza, Seafood",66,0.0 +7993,Foodhall,Boise,"Desserts, Tea, Cafe, Pizza, Chinese",17,0.0 +7994,Eat Me,North Bend,"Desserts, Pizza, Bakery, Fast Food, American",78,2.7 +7995,EDC Mania,Long Beach,"Desserts, Pizza, Italian, Bakery, Mediterranean",24,3.3 +7996,Elegant China X-Press,Aberdeen,"Tea, Chinese, Mexican, Bakery",75,3.1 +7997,Gopala,Durango,"Chinese, Bakery, Fast Food, Cafe, Mediterranean",45,3.3 +7998,Green Chick Chop,Concord,"Tea, Cafe, BBQ, Seafood",57,3.1 +7999,Hangchuaa's Chinese Food Corner,Concord,"Pizza, Bakery, Fast Food, Cafe, American",56,2.7 +8000,Madhuvan Chinese Fast Food,Arcata,"Tea, Chinese, Bakery",29,2.7 +8001,Momos House,Eau Claire,"Tea, Pizza, Indian, Italian",46,2.9 +8002,Punjab Restaurant,Atlanta,"Desserts, BBQ, Chinese, Mediterranean, Seafood",30,3.2 +8003,Rhythm Restro-Bar,La Crosse,"Desserts, French, Bakery, BBQ, Cafe",45,3.0 +8004,Say Cheese,Gulfport,"Tea, Pizza, Bakery, Fast Food, Mediterranean",31,2.7 +8005,Sona Restaurant,Dallas,"Tea, Cafe, Pizza, Fast Food",47,3.2 +8006,Uraki,Tucson,"Cafe, Bakery, Fast Food",12,2.7 +8007,Wah Ji Wah,Marquette,"Tea, Mexican, Bakery, Fast Food, American, Seafood",40,3.0 +8008,Annapurna Sweets,St. Cloud,"Fast Food, Seafood, Italian",57,3.9 +8009,Karnataka,Austin,"Fast Food, Desserts, Italian",43,3.7 +8010,EDC Mania,Champaign,"Desserts, Mexican, Bakery, BBQ, Fast Food",28,0.0 +8011,Faeem Chicken Corner,Jacksonville,"Bakery, Seafood",46,0.0 +8012,Grills N Chills,Moline,"Tea, Fast Food, Seafood",85,0.0 +8013,Gupta Sweets,Dayton,"Desserts, Tea, Bakery, Cafe, Indian",48,0.0 +8014,Khub Chand,Ponce,"Tea, Cafe, Pizza, Fast Food, Chinese",17,0.0 +8015,OCD - Online Cake Delivery,Kodiak,"Seafood, BBQ, Desserts, Fast Food",92,0.0 +8016,Sher E Punjab,Jamestown,"Tea, BBQ, Desserts",15,0.0 +8017,Shri Balaji,San Antonio,"Desserts, Tea, Pizza, American, Mediterranean, Seafood",17,0.0 +8018,Sidhi Cafe,Salt Lake City,"Tea, Desserts, Fast Food",69,0.0 +8019,Al Hayat Bakers,Erie,"Tea, Italian, French, Bakery, Fast Food",51,0.0 +8020,Al-Kausar's,Greensboro,"Fast Food, Seafood, Cafe, Italian",80,0.0 +8021,Alam Biryani Center,Charlottesville,"Desserts, Tea, Mexican, Fast Food, Seafood",91,0.0 +8022,Bismillah Hotel,Cincinnati,"Fast Food, Cafe, Italian",94,0.0 +8023,Halal Pizza Star,Owensboro,"Desserts, Pizza, French, BBQ, Mediterranean, Seafood",27,0.0 +8024,HTW Bakers,Aberdeen,"Tea, Italian, Mexican, BBQ, Cafe",23,0.0 +8025,Javed Bawarchi Restaurant,Sioux City,"Chinese, Pizza, Fast Food",57,0.0 +8026,Let's Eat,Harrisburg,"Bakery, Pizza, American, Seafood",98,0.0 +8027,Moonis Kada,Yakima,"Cafe, BBQ, Desserts, Seafood",69,0.0 +8028,Motu N Patlu,Gulfport,"Desserts, French, Mexican, BBQ, Bakery, Cafe",73,0.0 +8029,S.K. Fast Food,Salisbury,"BBQ, Cafe, Pizza, Desserts",96,0.0 +8030,Sufiyan Restaurant,Indianapolis,"Tea, Bakery, Mediterranean, Desserts",29,0.0 +8031,The Relax Point,Oakland,"Tea, BBQ, Seafood",67,0.0 +8032,Zareen's Dastarkhwan,Amarillo,"Tea, Cafe, American, Desserts",21,0.0 +8033,Ali Baba Caves,Charlotte,"Desserts, Tea, Bakery, Cafe, Indian",41,3.1 +8034,Caf愆 Doo Ghoont,Rhinelander,"French, Mediterranean, Desserts, Fast Food",39,3.4 +8035,Knights Chaska,Detroit,"Tea, Mexican, Bakery",29,2.9 +8036,Thirsty Scholar Cafe,Hyannis,"Desserts, Tea, Pizza, Chinese, American, Seafood",25,3.2 +8037,Savoury Street,Mosinee,"French, Pizza, BBQ, Seafood",40,0.0 +8038,JSB Evergreen Snack & Sweets,Roanoke,"Tea, Chinese, Bakery, Fast Food",52,3.1 +8039,221 B Baker Street,Escanaba,"Desserts, Mexican, BBQ, Bakery, Seafood",26,3.5 +8040,Kapoors Balle Balle,Erie,"Tea, French, Desserts, Fast Food",20,3.7 +8041,Lakshmi Coffee House,Rock Springs,"Tea, Seafood, Desserts, Fast Food",43,3.8 +8042,Geoffrey's,Eau Claire,"Mexican, Pizza, Fast Food",28,3.0 +8043,Haldiram's,Twin Falls,"French, Cafe, Seafood",23,3.5 +8044,Maamouchee @ My Way,Cape Girardeau,"Pizza, Italian, French, Bakery, Fast Food, Seafood",16,3.5 +8045,Americana Kitchen and Bar,Charleston,"Seafood, Mediterranean, Desserts, Italian",69,2.4 +8046,Punjabi By Nature Quickie,Sun Valley,"Desserts, Tea, French, BBQ, Cafe",25,3.4 +8047,United Coffee House Rewind,Staunton,"Bakery, Desserts",13,3.4 +8048,Wow! Momo,Scranton,"Fast Food, Mexican, American, Pizza",63,2.7 +8049,Oh So Stoned!,New Bern,"Bakery, Pizza, Indian, Desserts",13,4.5 +8050,The Big Chill Cakery,Scranton,"Tea, French, Mediterranean, Fast Food",43,4.5 +8051,Barista,Bellingham,"Tea, Cafe, Mexican, Desserts",48,3.5 +8052,Big Wong XL,Indianapolis,"Chinese, Bakery, BBQ, Desserts",52,3.9 +8053,Carl's Jr.,Ketchikan,"Pizza, French, Bakery, Cafe, Indian, Seafood",43,3.8 +8054,Chaayos,Staunton,"Tea, French, Bakery, Desserts",98,3.9 +8055,Chi Asian Cookhouse,Moab,"Desserts, French, Fast Food, Cafe, American",84,3.9 +8056,Costa Coffee,Aberdeen,"Cafe, Pizza, Mediterranean",96,3.7 +8057,Dunkin' Donuts,Boise,"Fast Food, Bakery, Desserts, Italian",65,3.7 +8058,Instapizza,Valdosta,"Pizza, Mexican, Fast Food, Cafe, American",50,3.7 +8059,Keventers,Lansing,"Tea, Mexican, Pizza, BBQ",73,3.8 +8060,Pirates of Grill,Dallas,"Desserts, Italian, BBQ, Bakery, Cafe",72,3.9 +8061,Pizza Hut,Spokane,"Tea, Pizza, French, Fast Food, Seafood",16,3.9 +8062,PizzaExpress,Colorado Springs,"Tea, Pizza, Desserts, Seafood",34,3.9 +8063,RollsKing,Richmond,"Seafood, American, Cafe, Fast Food",54,3.9 +8064,Taco Bell,Evansville,"Seafood, BBQ, Desserts, Italian",30,3.6 +8065,The Frozen Factory,San Angelo,"Bakery, Indian, American, Desserts",33,3.7 +8066,Theos,State College,"French, BBQ, Cafe",94,3.5 +8067,Wendy's,Butte,"Tea, Cafe, BBQ, Fast Food, Chinese, American",77,3.7 +8068,Zizo,West Palm Beach,"Pizza, BBQ, Desserts, Fast Food",76,3.8 +8069,Cafe Delhi Heights,Dillingham,"Cafe, Pizza, American",16,4.1 +8070,Chili's Grill & Bar,Waterloo,"Tea, Pizza, Desserts, Fast Food",11,4.1 +8071,Made In Punjab,Ogden,"Tea, Mexican, American, Pizza",84,4.1 +8072,Mamagoto,Watertown,"Pizza, Mexican, Fast Food, Cafe, Mediterranean, Seafood",10,4.3 +8073,Movenpick,International Falls,"Cafe, Mexican, Pizza, Seafood",13,4.0 +8074,Smaaash,Presque Isle,"Pizza, Mexican, BBQ, Cafe, Indian",44,4.0 +8075,SodaBottleOpenerWala,Madison,"Desserts, Tea, Pizza, Cafe, Indian",92,4.0 +8076,The Bento Cafe,Hyannis,"Bakery, BBQ, Desserts, Seafood",34,4.2 +8077,Earthen Oven - Fortune Inn Grazia,Rochester,"Bakery, Indian, Mediterranean, Fast Food",54,3.4 +8078,Fortune Deli - Fortune Inn Grazia,Portland,"Cafe, Pizza, Desserts",26,3.2 +8079,Cafe Pipa,Plattsburgh,"Tea, Cafe, BBQ, Fast Food",25,3.4 +8080,Cook Du Kdu,Chattanooga,"Pizza, Fast Food, Cafe, Indian, Mediterranean, Seafood",69,3.1 +8081,Green Chick Chop,Roanoke,"Desserts, Pizza, Italian, Bakery, Chinese",62,2.6 +8082,New Vishal's Kitchen,Fayetteville,"American, BBQ, Seafood",31,2.5 +8083,Samarkand,Valparaiso,"Italian, BBQ, Bakery, Fast Food, Cafe, American",76,3.3 +8084,Mirchievous,Wenatchee,"Cafe, Mexican, Seafood",70,3.9 +8085,Pearls Regency,Yuma,"French, Pizza, BBQ, Seafood",51,3.7 +8086,The Feast Box,Waco,"Cafe, Chinese, Tea, Mediterranean",27,0.0 +8087,Imperfecto,Palm Springs,"Tea, Pizza, Fast Food, American, Seafood",90,3.4 +8088,Chaayos,Anchorage,"Tea, Bakery, Mediterranean, Fast Food",60,3.6 +8089,Dunkin' Donuts,Walla Walla,"Bakery, Pizza, American, Fast Food",98,3.7 +8090,The Smoke Factory,Christiansted,"Tea, Bakery, Fast Food, Mediterranean, Seafood",100,3.8 +8091,Turquoise Cottage - TC Original 1997,Charlotte Amalie,"BBQ, French, American, Desserts",73,3.8 +8092,Baskin Robbins,Miami,"Desserts, Fast Food",18,0.0 +8093,Cafe Coffee Day,Medford,"Tea, Chinese, Pizza, Fast Food",16,0.0 +8094,Dolce Gelato,Islip,"Mexican, Desserts, Fast Food",93,0.0 +8095,Dunkin' Donuts,Rockford,"Cafe, Bakery, BBQ, Seafood",24,0.0 +8096,Joost Juice Bar,Rapid City,"Pizza, Italian, BBQ, Cafe, Seafood",50,0.0 +8097,KFC,Flagstaff,"Pizza, Bakery, BBQ, American, Seafood",64,0.0 +8098,Pizza Hut,Newark,"Indian, Desserts, Fast Food",70,0.0 +8099,Laat Saab,Ithaca,"Chinese, BBQ, Cafe, Desserts",69,4.1 +8100,Starbucks,Latrobe,"Mediterranean, Desserts, Seafood",32,4.0 +8101,Rocket Food,Chicago,"Tea, Chinese, Desserts, Seafood",95,0.0 +8102,Aim Cafe And Restaurant,Dallas,"Tea, French, BBQ",85,3.3 +8103,Al-Swad,Medford,"Chinese, BBQ, Cafe, Desserts",91,2.5 +8104,Anands,Valdosta,"Tea, Bakery, Chinese, American, Seafood",25,2.6 +8105,Bansiwala Restaurant,Albany,"Desserts, Bakery, BBQ, Cafe, Indian",55,2.5 +8106,Cafe Coffee Day,Valdosta,"Desserts, Tea, Pizza, Italian, Mexican, Fast Food",12,2.8 +8107,Food Tamasha & Co.,Hyannis,"Pizza, French, BBQ, Cafe, Seafood",41,3.2 +8108,Grand Heritage Resort,Lexington,"Desserts, Tea, Cafe, American, Seafood",19,3.1 +8109,Green Chick Chop,Saipan,"Tea, Bakery, Pizza, Seafood",67,3.2 +8110,Kafe Republic,Toledo,"Chinese, Pizza, BBQ",94,3.1 +8111,Kar C Lounge & Restaurant,Manhattan,"Bakery, Indian, BBQ",46,2.8 +8112,Kolkata Roll Point,Elmira,"French, Bakery, Pizza, BBQ",24,2.8 +8113,Royal Awadh,Little Rock,"Pizza, Italian, BBQ, Fast Food, Seafood",32,3.0 +8114,Royal Rasoi,Hattiesburg,"Tea, BBQ, Seafood",48,2.8 +8115,Royale Bakers,New Orleans,"Pizza, Mexican, BBQ, Fast Food, Seafood",22,2.8 +8116,Sahi Darbar,North Bend,"Cafe, BBQ",27,2.6 +8117,Taco Street,Charleston,"Desserts, Tea, BBQ, Mediterranean, Seafood",59,2.9 +8118,The Noodle Co,Newport News,"Tea, Chinese, Cafe",61,3.1 +8119,Veg Always,Martha's Vineyard,"Tea, Bakery, Mediterranean, Desserts",78,2.7 +8120,Yu Turn,Branson,"BBQ, Seafood",48,2.9 +8121,Zaika,Tampa,"Desserts, Fast Food",27,2.5 +8122,Zaika,Killeen,"Tea, BBQ, Fast Food, American, Seafood",31,2.8 +8123,Domino's Pizza,Gulfport,"Chinese, Pizza, BBQ",89,3.5 +8124,Night Food Service,Kansas City,"Bakery, American, BBQ, Fast Food",16,3.8 +8125,Uncle's Patty,Branson,"Bakery, BBQ, Fast Food",44,3.5 +8126,Baskin Robbins,Shreveport,"Tea, Cafe, Bakery, Seafood",64,0.0 +8127,Evergreen Food Point,Florence,"Pizza, French, Bakery, Cafe, American, Seafood",98,0.0 +8128,Food Plaza,Portsmouth,"Desserts, Pizza, French, BBQ, Fast Food, Chinese",47,0.0 +8129,Giani,Fort Myers,"Desserts, Tea, Bakery, Chinese, Seafood",12,0.0 +8130,Grill Inn,Yakutat,"Pizza, Italian, Bakery, BBQ, Cafe",36,0.0 +8131,Hunger's Hut,Asheville,"Tea, Bakery, Pizza, Cafe",71,0.0 +8132,Kanha Cake O' Pastry,Duluth,"Desserts, Pizza, French, Bakery, American",42,0.0 +8133,Serendipity Cafe,Norfolk,"Bakery, BBQ",16,0.0 +8134,Spice Affair,Lake Charles,"Tea, French, Bakery, Fast Food, Cafe",27,0.0 +8135,Tandoori Junction,Los Angeles,"Tea, Pizza, BBQ, Desserts",75,0.0 +8136,Tod-Bistro Cafe,Fort Lauderdale,"Tea, Cafe, BBQ, Fast Food, Chinese, American",21,0.0 +8137,Upper Deck,Brownsville,"Cafe, Bakery, Desserts, Fast Food",42,0.0 +8138,Vadilal Ice Cream Parlour,San Jose,"Tea, French, Chinese, Seafood",15,0.0 +8139,Wich 'N' Shake,Dallas,"Tea, Mexican, Bakery, Fast Food, Cafe",31,0.0 +8140,Desi Galli,Burbank,"Chinese, Bakery, Seafood",92,2.9 +8141,Mr. Flavour,Bristol,"Bakery, Pizza, Cafe, Seafood",48,2.7 +8142,Wah Ji Wah,Texarkana,"Tea, Pizza, Mexican, Bakery, Fast Food",55,3.1 +8143,Indian Diners,Wrangell,"Desserts, Bakery, Fast Food, Mediterranean, Seafood",75,3.0 +8144,Airborne,Cody,"Tea, Mexican, Bakery, Seafood",38,0.0 +8145,Vivino - Hotel Golf View,Tallahassee,"Bakery, BBQ, Fast Food",97,0.0 +8146,Gravity,Scottsbluff,"Bakery, Fast Food, Cafe, Indian, Seafood",20,2.6 +8147,Kolkata Biryani House,Dallas,"Tea, French, Cafe, Indian, Seafood",11,2.8 +8148,Rotees n More,Plattsburgh,"Fast Food, Chinese, Pizza, Seafood",56,3.2 +8149,Saleem's Takeaway,Pensacola,"Chinese, Desserts, Fast Food, Cafe, Seafood",37,2.6 +8150,Sikandrabadi Biryani,Pellston,"French, Bakery, American, Fast Food",79,3.4 +8151,Wok N Spice,Evansville,"Tea, Mexican, BBQ, Seafood",84,3.1 +8152,Zaika Hindustani,Gainesville,"Pizza, BBQ, Desserts, Fast Food",63,2.7 +8153,Chanda Food,Syracuse,"Fast Food, Bakery, Desserts, Italian",82,3.6 +8154,Chhote Nawab,Kansas City,"Cafe, Pizza, BBQ, Desserts",93,3.5 +8155,Delish BBQ,Amarillo,"Mexican, Bakery, Desserts, Seafood",92,3.9 +8156,Goli Vada Pav No. 1,Minneapolis,"Pizza, BBQ, Italian",41,3.6 +8157,Happy Hakka,Aberdeen,"Cafe, American, Fast Food",23,3.6 +8158,Sadda Adda,Eau Claire,"Mexican, Pizza, Seafood",98,0.0 +8159,Baker's Studio - Jaypee Greens,Pago Pago,"Cafe, BBQ, Fast Food",30,3.4 +8160,Matrix - Jaypee Greens,Amarillo,"Cafe, Indian, BBQ, Seafood",61,3.2 +8161,Tea Lounge - Jaypee Greens,Bend,"French, Bakery, Desserts, Seafood",95,2.9 +8162,Paatra - Jaypee Greens,Miami,"Desserts, Tea, Bakery, Indian, Seafood",73,3.5 +8163,Cooks Cafe - Jaypee Greens,Savannah,"Cafe, Bakery, Mediterranean",74,3.3 +8164,The Butler & The Chef - Jaypee Greens,Panama City,"Seafood, Bakery, Mediterranean, Fast Food",99,0.0 +8165,Burger King,Bishop,"Tea, Bakery, Fast Food",43,3.3 +8166,Cafe Pitacos,Boise,"Cafe, Bakery, Desserts, Seafood",87,3.0 +8167,Cinnabon & Auntie Anne's,Clarksburg,"French, Pizza, Cafe",27,3.1 +8168,Cocoberry,Rochester,"Tea, BBQ",36,3.4 +8169,Hakka Haus,North Bend,"Seafood, Pizza, Italian",57,3.2 +8170,Kebab Xpress,Phoenix,"Tea, Cafe, Indian, Mediterranean",82,2.9 +8171,KFC,Great Falls,"French, Pizza, Seafood",40,2.5 +8172,Mad Over Donuts,Bismarck,"Bakery, Mediterranean, Fast Food",63,3.2 +8173,Ni Hao,Walla Walla,"Tea, BBQ, Cafe, Indian, Seafood",46,3.0 +8174,Pizza Hut,Alpena,"Pizza, Italian, Mexican, Bakery, BBQ, Seafood",93,2.6 +8175,Subway,Bemidji,"Desserts, BBQ, Cafe, American, Seafood",63,2.6 +8176,Time To Tea,Gunnison,"French, Mexican, BBQ, Bakery, Cafe, Seafood",53,2.8 +8177,Vaango!,Orlando,"Tea, Italian, Bakery, BBQ, Seafood",32,2.8 +8178,Biryani Blues,Panama City,"French, Cafe, Desserts, Fast Food",31,3.5 +8179,Jungle Jamboree,Killeen,"Tea, Bakery, Indian",28,3.8 +8180,Keventers,Washington,"Tea, Pizza, French, Bakery, Seafood",46,3.5 +8181,Pita Pit,Toledo,"Bakery, BBQ, Italian",28,3.6 +8182,Baskin Robbins,Petersburg,"Tea, Bakery, Mediterranean, Seafood",56,0.0 +8183,Cha Cha Cha,Duluth,"Fast Food, Tea, American, Seafood",22,0.0 +8184,Chai Thela,Atlanta,"French, BBQ, Desserts, Fast Food",82,0.0 +8185,Costa Coffee,Dothan,"Pizza, Indian, Mediterranean, Fast Food",73,0.0 +8186,Dolce Gelato,Tulsa,"BBQ, Desserts, Seafood",22,0.0 +8187,Joost Juice Bar,Redding,"Desserts, Bakery, Fast Food, Chinese, Seafood",88,0.0 +8188,Juice Lounge,Kalamazoo,"Fast Food, Chinese, Pizza, Seafood",83,0.0 +8189,Kings Kulfi,Aberdeen,"Bakery, Desserts, Fast Food",28,0.0 +8190,Kwality Wall's Swirl's,Salt Lake City,"Pizza, Desserts, Italian",92,0.0 +8191,Mx Corn,Fairbanks,"Pizza, Indian, BBQ, Seafood",62,0.0 +8192,The Gaming Vegas,Duluth,"Desserts, Tea, French, Chinese, Seafood",41,0.0 +8193,Chicago Pizza,Sitka,"Cafe, Bakery, American, Desserts",89,2.3 +8194,Mr. Sub,Salt Lake City,"Desserts, Tea, Pizza, Italian, French",84,2.3 +8195,Kwality Wall's Swirl's,Punta Gorda,"Tea, Chinese, BBQ, Mediterranean",85,0.0 +8196,My Corn,Waco,"Tea, Pizza, Fast Food, Chinese, Indian",78,0.0 +8197,Flluid - Mosaic Hotels,Plattsburgh,"Tea, Pizza, Desserts, Fast Food",38,3.2 +8198,Latitude - Mosaic Hotels,Longview,"Cafe, Mexican, Indian, Seafood",81,3.3 +8199,Baker's Zone,Portland,"Cafe, Pizza, Fast Food",35,2.9 +8200,Chakna,Richmond,"Desserts, Tea, BBQ, Cafe, American",96,2.7 +8201,Get Set Go,Sioux City,"Tea, Indian, Desserts",19,3.1 +8202,Sip & Snacks,West Palm Beach,"Desserts, Tea, Cafe, Fast Food, Chinese",65,3.2 +8203,The Anna,Santa Maria,"Seafood, Pizza, Fast Food",68,2.8 +8204,Kathi Junction,Fairbanks,"Tea, Cafe, Desserts, Italian",98,3.5 +8205,Golden Chaat,Corpus Christi,"Pizza, Mediterranean, BBQ",31,0.0 +8206,Malt n Brew,Owensboro,"BBQ, Desserts, Seafood",72,0.0 +8207,Cakewalk - Park Plaza,St. Cloud,"Cafe, Mediterranean, Desserts, Fast Food",93,3.4 +8208,New Town Lounge - Park Plaza,Santa Ana,"Tea, Pizza, Italian, Bakery, Cafe, Indian",64,3.2 +8209,New Town Cafe - Park Plaza,Denver,"Cafe, American, BBQ, Fast Food",79,4.1 +8210,S-18 - Radisson Blu,Spokane,"Bakery, Desserts, Seafood",19,3.5 +8211,Foodicious,Laredo,"Bakery, Pizza, Indian, BBQ",26,0.0 +8212,Rasoi Dil Se,Plattsburgh,"Desserts, Tea, BBQ, Chinese, Mediterranean",79,0.0 +8213,Chip Chap Shahi Corner,Ogden,"Tea, Cafe, Bakery, Desserts",94,2.9 +8214,Mother's Kitchen,Sacramento,"Fast Food, Bakery, American, Italian",45,2.9 +8215,Food Express,Newport News,"Mexican, Bakery, Desserts",15,0.0 +8216,Lemonier,Waco,"American, Desserts, Seafood",18,0.0 +8217,Punjabi Zaika,Kona,"Desserts, Tea, French, Bakery, Fast Food",41,0.0 +8218,Robins Sweets & Restaurant,Adak Island,"Tea, Mexican, BBQ",76,0.0 +8219,TBH 潴 To Be Healthy,Sault Ste. Marie,"French, BBQ, Seafood",21,4.0 +8220,Mehfill,Bellingham,"Tea, French, Cafe",23,2.7 +8221,Punjabi Pakwaan,Sun Valley,"Cafe, Bakery, Mediterranean",56,3.3 +8222,Santushti,Charleston,"Cafe, Pizza, Seafood",31,2.6 +8223,Uncle's,Butte,"Bakery, BBQ, Seafood",94,3.4 +8224,Cafe Limelight,Brunswick,"Desserts, Bakery, Chinese, American, Seafood",82,3.7 +8225,Rendezvous Adda,Champaign,"Seafood, Desserts, Italian",55,0.0 +8226,Wow Noodle,Providence,"Cafe, Desserts",67,0.0 +8227,Wraps Cafe,Hilo,"Seafood, Mediterranean, Desserts, Italian",90,0.0 +8228,Alley's Urbane Cafe,Albuquerque,"Tea, BBQ",27,3.2 +8229,Backstreet Kitchen,Reno,"Tea, French, BBQ, Fast Food, Seafood",35,3.4 +8230,Berco's,Spokane,"Seafood, BBQ, Cafe, Fast Food",100,3.1 +8231,Breaktym,Alpena,"Tea, BBQ",67,2.6 +8232,Chawla's 2,Grand Forks,"Bakery, Pizza, BBQ",38,2.5 +8233,Chicken Kraft,Wilmington,"Cafe, Mexican, Desserts, Italian",89,2.9 +8234,Chinese By Nature,Vernal,"Pizza, Italian, Bakery, American, Seafood",37,2.9 +8235,DV's Chinese Kitchen,Detroit,"Desserts, Pizza, Italian, Bakery, Cafe, Mediterranean",91,2.8 +8236,Evergreen Sweets,Redding,"French, Bakery, Pizza, BBQ",98,2.6 +8237,Green Chick Chop,Mosinee,"Pizza, BBQ, Fast Food",20,2.9 +8238,Hyderabad Delights,Madison,"Tea, Cafe, Pizza, BBQ",82,3.3 +8239,Kabab And Tadka,Flagstaff,"Cafe, Desserts, Fast Food",27,2.5 +8240,Kanha Bhog,Albuquerque,"Tea, Mediterranean, Desserts, Seafood",68,2.6 +8241,Mezbaan Jaika Restaurant,Daytona Beach,"French, Pizza, Mediterranean, Fast Food",49,2.7 +8242,Pind Balluchi,El Paso,"French, Bakery, BBQ, Fast Food",51,2.6 +8243,Red Capsicum,Lansing,"Cafe, Mediterranean, Fast Food",76,2.6 +8244,Singh Foods,Fort Smith,"Cafe, BBQ, Desserts",46,3.2 +8245,Sparrows At Home Bakery & Cafe,Greer,"Seafood, Pizza, Mediterranean, Fast Food",25,3.3 +8246,The New Koyla Kitchen,Tallahassee,"Cafe, Bakery, BBQ",63,2.7 +8247,They鯻燊,Spokane,"Cafe, Mexican, Seafood",96,3.4 +8248,Your Spicy Kitchen,Harlingen,"Cafe, Pizza, BBQ, Seafood",29,3.1 +8249,Yumm Biryani,Cedar Rapids,"Seafood, Bakery, Italian",21,3.2 +8250,Aureo Dine & Bake House,Sitka,"Bakery, Pizza, Fast Food",100,3.5 +8251,Being Truckers,Helena,"Pizza, BBQ",55,3.8 +8252,China Leaf,Norfolk,"Bakery, Pizza, American, Seafood",69,3.7 +8253,Mera Vala Dabba,Baton Rouge,"Mexican, Bakery, Fast Food",31,3.6 +8254,Moti Mahal Delux- Legendary Culinary,Waco,"Desserts, Pizza, BBQ, Chinese, Indian, Seafood",56,3.6 +8255,Noshh,Evansville,"Tea, BBQ, Fast Food, Cafe, Indian",20,3.6 +8256,Tadqa Tandoor Express,Devils Lake,"Desserts, Pizza, Italian, Bakery, BBQ, Indian",99,3.6 +8257,The Kebab Company,Cape Girardeau,"Cafe, Bakery, American, Fast Food",95,3.5 +8258,Affamato,Alexandria,"Pizza, Bakery, BBQ, Fast Food, Mediterranean",87,0.0 +8259,Ahmed's,Newark,"Tea, Seafood, Cafe, Fast Food",36,0.0 +8260,Caff愆 La Poya,Hattiesburg,"Cafe, Fast Food",40,0.0 +8261,Chaskaa Restaurant,Cedar City,"French, Pizza, BBQ",10,0.0 +8262,Chawla's 2,Appleton,"Cafe, Bakery, American, BBQ",84,0.0 +8263,Chination,Salina,"Cafe, Pizza, American",54,0.0 +8264,Essen Foods,Greensboro,"Fast Food, BBQ, Seafood",55,0.0 +8265,Haochi,Dodge City,"Fast Food, Indian, Seafood",23,0.0 +8266,Lassilo,Atlantic City,"Tea, French, BBQ, Fast Food, Chinese, Seafood",12,0.0 +8267,Mittal Bikaneri Sweets,Ketchikan,"Cafe, Mediterranean, Desserts, Fast Food",83,0.0 +8268,Royale Bakers,Memphis,"Bakery, BBQ, Fast Food",21,0.0 +8269,RV's Family Restaurant,Kahului,"Tea, Pizza, Italian, Cafe, Seafood",88,0.0 +8270,The Cake Shop,Vernal,"French, BBQ, Desserts, Fast Food",17,0.0 +8271,Top Food,Escanaba,"Tea, French, Seafood",83,0.0 +8272,Uncle's Corner,Missoula,"Tea, Pizza, Mexican, Bakery, BBQ",87,0.0 +8273,Urban Express,Kotzebue,"Chinese, Mexican, Cafe, Fast Food",32,0.0 +8274,Viddya Chinese Fast Food,Billings,"Tea, Pizza, Indian, Seafood",53,0.0 +8275,Domino's Pizza,International Falls,"Tea, Seafood, Italian",82,2.1 +8276,Kamboj's,Bristol,"Pizza, Bakery, BBQ, Fast Food",77,2.4 +8277,Pizza Hut Delivery,Christiansted,"Tea, Mexican, Pizza",46,2.3 +8278,Subway,Las Vegas,"Desserts, Fast Food",48,2.4 +8279,The Cake Expert's,St. Cloud,"Tea, Chinese, Cafe",12,2.4 +8280,The Saffron Boutique,Adak Island,"Desserts, Italian, Bakery, Chinese, Seafood",32,4.0 +8281,Aggarwal Kachori Wale,Texarkana,"Pizza, Bakery, Desserts, Fast Food",34,3.0 +8282,Bakes & Cakes,Panama City,"Cafe, Bakery, Mediterranean, Fast Food",87,3.0 +8283,Burger's Kitchen,Greer,"Tea, Pizza, Fast Food, Cafe, Mediterranean",51,2.8 +8284,Jhatpat Khana,Saipan,"Mediterranean, Desserts, Seafood",85,3.0 +8285,Mahi Rasoi,Chicago,"Tea, Cafe",51,2.6 +8286,Night Safari Cafe,Harlingen,"Cafe, American, BBQ",99,3.0 +8287,Saheb's Restaurant,Sun Valley,"BBQ, Bakery, Indian, Desserts",68,2.7 +8288,Scrummy Bites,Abilene,"Indian, Desserts, Seafood",69,3.1 +8289,Berco's,Baltimore,"Fast Food, Bakery, Indian, Italian",21,3.7 +8290,Cream Bell Scoopers,Cedar City,"Bakery, Pizza, Indian, Fast Food",54,0.0 +8291,Mayur Kitchen,Grand Forks,"French, Pizza, BBQ",79,0.0 +8292,Raghav Ki Rasoi,Hagerstown,"Desserts, Tea, Pizza, Bakery, Chinese",18,0.0 +8293,Red Chilli,Fort Myers,"French, BBQ, Seafood, Fast Food",28,0.0 +8294,Riyaz Biryani Corner,Concord,"Bakery, Mediterranean, Seafood",38,0.0 +8295,Standard Sweets & Confectioners,Traverse City,"Cafe, Pizza, BBQ, Bakery, Chinese",32,0.0 +8296,Standard Sweets,Monterey,"BBQ, Fast Food",26,0.0 +8297,Sushma Homemade Tiffin,Florence,"Bakery, Pizza, Desserts, Fast Food",19,0.0 +8298,The Tasty Corner,Lawton,"Tea, Cafe, Bakery",13,0.0 +8299,The Zaika King,Waco,"Cafe, BBQ, Fast Food",59,0.0 +8300,Tiffinhunt,Waterloo,"Tea, Mexican, Pizza, Seafood",86,0.0 +8301,Top Burger,Reno,"Pizza, Mexican, Bakery, Cafe, Mediterranean",80,0.0 +8302,Aggarwal Sweet Shop,Minot,"Tea, French, Pizza, Cafe",74,2.3 +8303,Hungry - I,Ontario,"Tea, Cafe, Seafood",18,2.6 +8304,Oh Buoy,Anchorage,"Desserts, French, BBQ, Bakery, Fast Food",23,3.4 +8305,Caffeinated,Bellingham,"Tea, Fast Food",23,3.9 +8306,Sam and Scrooge,Atlanta,"Pizza, BBQ, Mediterranean, Italian",95,3.9 +8307,Tpot,Bishop,"Tea, American, Indian, Desserts",30,3.6 +8308,Hunger's Hub,Pensacola,"Fast Food, Indian, BBQ, Seafood",76,0.0 +8309,Modi's Baker's Zone,Pittsburgh,"Tea, Pizza, Indian, Seafood",23,0.0 +8310,The Flip On Wheel,Dillingham,"Cafe, Mexican, Pizza, Fast Food",58,0.0 +8311,Big Biryani,Hyannis,"Desserts, Tea, Italian, Cafe, Seafood",100,0.0 +8312,Aroma,St. Louis,"Cafe, Mexican, Bakery, Pizza",90,3.0 +8313,Bawarchi,Duluth,"Cafe, Pizza, Desserts",52,2.9 +8314,Book Food Kitchen,Nome,"Italian, French, BBQ, Cafe, Seafood",87,3.1 +8315,Breaktym,Plattsburgh,"Cafe, BBQ, Desserts, Seafood",69,2.5 +8316,Chaska By Taste,Wilmington,"Tea, Fast Food, Cafe, American, Mediterranean",72,2.9 +8317,Domino's Pizza,Orlando,"Tea, Pizza, French, BBQ, Bakery",12,2.5 +8318,Grill King,Jacksonville,"Pizza, BBQ, Cafe, Mediterranean, Seafood",24,3.0 +8319,Moti Mahal Deluxe Advant,Las Vegas,"Cafe, American, Seafood",64,2.8 +8320,Rolling Beans,Providence,"Desserts, Indian, BBQ",65,2.8 +8321,RollsKing,Birmingham,"Pizza, Seafood",90,3.2 +8322,SnacksWale.com,Belleville,"Mexican, BBQ, Fast Food, Indian, Seafood",38,2.8 +8323,Subway,Kansas City,"Tea, Pizza, Desserts",13,2.6 +8324,Super Cake Shop,San Antonio,"Desserts, Pizza, Mexican, Bakery, Cafe",16,2.9 +8325,Aureo Dine & Bake House,Pittsburgh,"Tea, Pizza, BBQ",92,0.0 +8326,B Bawarchi Restaurant,Petersburg,"Desserts, Pizza, Italian, BBQ, Seafood",85,0.0 +8327,Brajwasi,Jamestown,"BBQ, Mediterranean, Fast Food",24,0.0 +8328,Cafe Coffee Day,Santa Fe,"Desserts, Mexican, Bakery, BBQ, Fast Food, American",12,0.0 +8329,Cafe Coffee Day,Brownsville,"Pizza, Fast Food",30,0.0 +8330,Cafe Lounge,Kalamazoo,"Desserts, Mexican, BBQ, Bakery, Mediterranean, Seafood",58,0.0 +8331,Cafe Treat,Bismarck,"Tea, Pizza, BBQ, Mediterranean",11,0.0 +8332,Casa Bake,Redding,"Pizza, Bakery",80,0.0 +8333,China Town,Bakersfield,"Fast Food, BBQ, Italian",98,0.0 +8334,Costa Coffee,Montgomery,"Tea, American, BBQ",28,0.0 +8335,Delhi Foods,Tucson,"Desserts, Tea, Mexican, Bakery, American",25,0.0 +8336,Deli Chic,Seattle,"Pizza, Seafood",91,0.0 +8337,Delicacies,Wichita Falls,"Chinese, Bakery, BBQ",20,0.0 +8338,Kanha Ji Sweets & Restaurant,Fort Leonard Wood,"Tea, Bakery, Mediterranean, BBQ",68,0.0 +8339,Little China,Juneau,"Pizza, Bakery, BBQ, Fast Food, Indian",65,0.0 +8340,Lola's Cafe,Adak Island,"Tea, Bakery, BBQ",72,0.0 +8341,Madras Coffee House,Staunton,"Cafe, Bakery, Desserts, Fast Food",53,0.0 +8342,Moju Juice Bar,Miami,"Tea, Bakery, Mediterranean, BBQ",30,0.0 +8343,Peniel Restaurant,Norfolk,"Indian, BBQ, Seafood",94,0.0 +8344,Pizza Key,Brownsville,"Bakery, Indian, Desserts, Fast Food",93,0.0 +8345,Sandoz,Laramie,"Mexican, Bakery, Fast Food, Cafe, Mediterranean, Seafood",76,0.0 +8346,Subway,Wichita,"French, BBQ, Fast Food",100,0.0 +8347,Tandoori Mystery,Philadelphia,"Tea, French, Fast Food, Seafood",91,0.0 +8348,Taste of Punjab,Albuquerque,"Cafe, Pizza, BBQ, Seafood",42,0.0 +8349,Tea Nation,Flagstaff,"Bakery, Indian, Desserts",26,0.0 +8350,The Corporate Kitchen,Charleston,"Bakery, Indian, Fast Food",48,0.0 +8351,The Royal Kitchen,Long Beach,"French, Desserts, Fast Food",62,0.0 +8352,Tpot,Hilton Head,"Cafe, Pizza, Fast Food",29,0.0 +8353,Wild Chef House,Cleveland,"Tea, Cafe, Mediterranean, Seafood",93,0.0 +8354,DIOS The Neighbourhood Bistro,Niagara Falls,"Tea, BBQ, Desserts, Italian",62,4.2 +8355,Cake n Flower,Brownsville,"Tea, Cafe, Pizza, Italian",99,2.9 +8356,Dilli 6,San Francisco,"Pizza, Mediterranean, Desserts",63,2.8 +8357,Food Bell,Dothan,"Desserts, Pizza, French, Bakery, Seafood",99,2.8 +8358,Kalpana Hotel,Dillingham,"Desserts, Pizza, BBQ",57,2.9 +8359,Sagar Dhaba,Laramie,"Cafe, French, Mediterranean, Seafood",98,3.1 +8360,Shree Balaji Shudh Vaishno Hotel,Hibbing,"Tea, Cafe, Mexican, Bakery, Fast Food, Chinese",21,2.9 +8361,Shree Rathnam,Palm Springs,"Seafood, Pizza, American, Fast Food",51,3.3 +8362,Simran's Cake Studio,Fort Leonard Wood,"BBQ, Tea, Indian, Desserts",57,3.4 +8363,Sweet Cake,Ontario,"Italian, BBQ, Bakery, Cafe, Mediterranean, Seafood",40,3.0 +8364,The Cake Xpress,Lewiston,"Desserts, French, Cafe, Mediterranean, Seafood",12,3.0 +8365,The Chef,New Orleans,"Bakery, Pizza, Indian",42,2.7 +8366,The Flying Pan,Burbank,"Tea, Cafe, Bakery, BBQ, Chinese",49,3.2 +8367,Wrapster,Hilton Head,"French, Seafood, Desserts, Italian",18,3.2 +8368,Getafix Petit,Dillingham,"Tea, Mediterranean, Fast Food",82,3.5 +8369,Lawn Bistro,Orlando,"Fast Food, Bakery, Italian",100,3.6 +8370,Cake N Gifts,Wenatchee,"Chinese, Desserts, Seafood",34,0.0 +8371,Cheese Pizza,Dothan,"Desserts, Bakery, Fast Food, Chinese, American",10,0.0 +8372,Divya Hotal,Boston,"Cafe, Pizza, Bakery, Mediterranean",40,0.0 +8373,Green Valley Chinese Food,Greenville,"Cafe, Bakery, Mediterranean",21,0.0 +8374,Hooting Owl Cafe,Aberdeen,"Tea, Pizza, Fast Food, Cafe, American",16,0.0 +8375,Jaak Foods,Peoria,"Desserts, Cafe, Pizza, Bakery, Chinese, Indian",96,0.0 +8376,Kaka Restaurant,Ketchikan,"Desserts, Bakery, BBQ, Fast Food, Chinese",30,0.0 +8377,KC Bakers,Burbank,"Desserts, Mexican, Fast Food, Mediterranean, Seafood",100,0.0 +8378,KC Bakery,Bloomington,"Tea, Pizza, Mexican, Cafe, American",81,0.0 +8379,Rajan Foods Corner,Arcata,"Tea, Pizza, Bakery",84,0.0 +8380,Sagar Dhaba,Nashville,"Tea, Bakery, BBQ, Cafe, Mediterranean",55,0.0 +8381,Sarfira,San Antonio,"Pizza, Desserts, Seafood",72,0.0 +8382,Shama Chicken Corner,Brainerd,"French, Bakery, Fast Food",70,0.0 +8383,Yummy Kitchen,Pago Pago,"Tea, Pizza, Seafood",99,0.0 +8384,Barista,Los Angeles,"Tea, Cafe, Mexican",29,2.9 +8385,Divine Curries,Manchester,"Tea, Cafe",72,3.0 +8386,Moon Bite,Montgomery,"Tea, Indian, Desserts",25,3.3 +8387,Subway,Punta Gorda,"Tea, Pizza, French, Fast Food, Seafood",76,3.4 +8388,Hurry's Paratha,Tulsa,"Desserts, Tea, Cafe, BBQ, Chinese",20,3.5 +8389,McDonald's,Owensboro,"Tea, American, Seafood",16,3.7 +8390,Cafe Coffee Day,Des Moines,"Desserts, Mexican, BBQ, Bakery, Fast Food",23,0.0 +8391,Dunkin' Donuts,Lynchburg,"Pizza, BBQ, Mediterranean, Seafood",47,0.0 +8392,Green Chilli Fast Food,Owensboro,"Tea, Italian, BBQ, Fast Food, Indian",70,0.0 +8393,Street Food Corner,Ogden,"Tea, Bakery, Chinese, Indian, Seafood",63,0.0 +8394,Barbeque Nation,La Crosse,"Tea, Pizza, Indian, BBQ",38,4.3 +8395,Aggarwal,Kahului,"Tea, Bakery, Indian, Cafe",90,3.3 +8396,Anchor Bar & Kitchen,Omaha,"Cafe, Desserts, Fast Food",74,2.5 +8397,Basil Tree,Bismarck,"Bakery, BBQ, Italian",63,3.4 +8398,Bon Bon Pastry Shop,Eau Claire,"Cafe, Bakery, Mediterranean",60,3.1 +8399,BSGulati's Punjabi Swad,Ketchikan,"French, Indian, Desserts, Seafood",81,2.5 +8400,Cafe-18,Provo,"Tea, French, BBQ, Seafood",51,2.5 +8401,Chandni Chowk Ke Mashhoor Paranthe,Watertown,"Bakery, American, Cafe",11,2.8 +8402,Cheenos,Lewisburg,"Desserts, Tea, Pizza, French, BBQ",67,2.6 +8403,Gola Sizzlers,Stockton,"Tea, Mediterranean, Desserts, Italian",45,3.3 +8404,Hira Sweets,Elmira,"Tea, Cafe, Pizza",82,3.3 +8405,Karim's,Punta Gorda,"Tea, Indian, Fast Food",54,3.3 +8406,KFC,Rhinelander,"BBQ, Pizza, Desserts, Fast Food",50,2.7 +8407,Khan's Kathi Rolls,Asheville,"Cafe, Indian, Seafood",53,3.2 +8408,Nathu's Sweets,Bangor,"Desserts, Italian, Bakery, BBQ, Fast Food, Mediterranean",11,2.5 +8409,Nawabi Mughlai Zaika,Brownsville,"Mexican, Bakery, Desserts, Seafood",19,3.3 +8410,Nite Bites,Hattiesburg,"Cafe, Fast Food",94,3.4 +8411,Nizam's Kathi Kabab,Myrtle Beach,"Desserts, Cafe, Pizza, French, Chinese, Seafood",32,3.0 +8412,NSD Resto Bar & Kitchen,Valparaiso,"French, Pizza, Cafe",32,2.6 +8413,PS Wah Bhai Wah,Elmira,"Tea, Cafe, Pizza, Fast Food",52,2.6 +8414,Sagar Ratna,Santa Barbara,"Fast Food, Cafe, Italian",29,3.2 +8415,Sbarro,Punta Gorda,"Cafe, Pizza, Desserts",68,3.3 +8416,Swag & Swad,Wichita,"Italian, BBQ, Fast Food, Cafe, Seafood",67,3.4 +8417,The Fizz,Mason City,"Cafe, Desserts, Seafood",27,3.2 +8418,The Kitchen,Sitka,"Bakery, BBQ, Mediterranean, Fast Food",92,3.2 +8419,Twenty Four Seven,Peoria,"Desserts, Tea, Bakery, American, Seafood",35,3.4 +8420,Vinny's Restro Bar,Pocatello,"Pizza, French, Bakery, Cafe, Mediterranean",82,3.2 +8421,Walk In The Woods,Fort Smith,"Pizza, American, Desserts, Seafood",14,3.0 +8422,Xiian,Miami,"BBQ, Indian, Desserts",64,3.4 +8423,Zest Bar and Lounge,Ogdensburg,"Tea, French, BBQ, Fast Food, American",33,3.4 +8424,Angels in my Kitchen,Kona,"Bakery, Indian, Fast Food",93,3.9 +8425,Baby Dragon Bar & Restaurant,Hattiesburg,"Tea, Bakery, Fast Food",43,3.5 +8426,Baker Street,Philadelphia,"Cafe, Mexican, Pizza",54,3.6 +8427,Bamboo Shoots,Charleston,"Desserts, Pizza, French, Fast Food, Seafood",53,3.9 +8428,Bikanervala Bliss,Cedar Rapids,"Tea, Bakery, Fast Food, Indian, Seafood",79,3.6 +8429,Bikanervala,Cheyenne,"Pizza, Italian, Bakery, Fast Food, Chinese",78,3.7 +8430,Bikkgane Biryani,Cincinnati,"French, Bakery, Cafe, BBQ",37,3.8 +8431,Burbee's Cafe,Trenton,"French, Mexican, Pizza, Cafe",63,3.7 +8432,Cafe Coffee Day,South Bend,"Desserts, French, Bakery, Cafe, Indian",81,3.6 +8433,Deez Biryani & Kebabs,Jacksonville,"Chinese, French, Bakery, Desserts",99,3.5 +8434,Desi Vibes,Bellingham,"Desserts, Tea, French, BBQ, Mediterranean, Seafood",67,3.8 +8435,Dhaba at Atta,Little Rock,"Desserts, Tea, Fast Food, Cafe, American",16,3.8 +8436,DND,Charlottesville,"French, Bakery, BBQ, Cafe",64,3.5 +8437,Domino's Pizza,Twin Falls,"Pizza, BBQ, Cafe, Mediterranean, Seafood",92,3.6 +8438,Donald's Pastry Shop,Santa Fe,"Desserts, French, Bakery, BBQ, Fast Food",15,3.8 +8439,Doosri Mehfil,Decatur,"Tea, Bakery, BBQ, Cafe, Mediterranean",36,3.8 +8440,Fit Bites,Lexington,"French, Bakery, BBQ, Seafood",100,3.8 +8441,Hungry Minister,Atlanta,"Bakery, BBQ, Italian",97,3.5 +8442,Hurry's Paratha,Alexandria,"Desserts, Pizza, Italian, Mexican, BBQ",62,3.5 +8443,Imly,Little Rock,"Tea, Cafe, BBQ, Seafood",61,3.9 +8444,Jambox,Yuma,"Tea, Chinese, BBQ, Seafood",87,3.6 +8445,LIT Ultrabar,Colorado Springs,"Cafe, Italian, Fast Food, Chinese, Seafood",94,3.6 +8446,Mainland China,Kodiak,"Tea, Bakery, BBQ, Fast Food",82,3.7 +8447,McDonald's,Jackson,"Tea, Pizza, Indian, Desserts",27,3.9 +8448,Metro Dhaba,Fairbanks,"Desserts, BBQ, Fast Food, Chinese, Indian, Seafood",11,3.8 +8449,Nazeer Foods,Eugene,"BBQ, Mediterranean, Fast Food",94,3.6 +8450,Our Story Bistro & Tea Room,South Bend,"Tea, Pizza, Italian, BBQ, Mediterranean, Seafood",10,3.9 +8451,Paddy's Cafe,Great Falls,"Chinese, Desserts, Seafood",16,3.7 +8452,Popular Cakery,Victoria,"Cafe, Pizza, American, Seafood",92,3.9 +8453,Punjabi By Nature,Pellston,"Tea, Bakery, Pizza, Fast Food",26,3.7 +8454,Sadda Adda,Appleton,"Pizza, Desserts",77,3.5 +8455,Subway,Rockford,"Bakery, Pizza, BBQ, Desserts",26,3.8 +8456,Swagath,Hancock,"Cafe, BBQ, Desserts, Fast Food",85,3.6 +8457,TFK - The Flaming Kick,Albany,"Tea, Cafe, Indian, Fast Food",95,3.5 +8458,The Great Kabab Factory,Fayetteville,"Fast Food, BBQ, Mediterranean, Seafood",13,3.5 +8459,The Patiala Kkitchen,Santa Rosa,"Tea, Italian, BBQ, Cafe, Indian",20,3.6 +8460,The Tandoori Village,Saginaw,"Desserts, Tea, Bakery, Fast Food, Chinese",54,3.5 +8461,The Yellow Chilli,Ketchikan,"Tea, Seafood, Fast Food",39,3.7 +8462,Top Breads,Charlotte Amalie,"Bakery, Desserts",65,3.5 +8463,Wat-a-Burger!,Bloomington,"Bakery, Pizza, American",45,3.6 +8464,Chawla's 2,Long Beach,"Pizza, Bakery, Fast Food, Indian, Seafood",17,2.2 +8465,Himalaya,Melbourne,"Tea, Pizza, Indian, Seafood",11,2.3 +8466,Public Cafe,Portland,"Bakery, Mediterranean, Fast Food",40,2.1 +8467,RPM - Zanzi Bar,Owensboro,"Tea, Bakery, Indian, Desserts",75,2.4 +8468,Mad Over Donuts,Jackson,"Tea, Cafe",96,4.2 +8469,RollsKing,Belleville,"Chinese, Bakery, BBQ, Pizza",27,4.0 +8470,Lumbini Food Point,Fort Leonard Wood,"Cafe, Indian, Mediterranean, BBQ",91,2.8 +8471,Owlcity,Albuquerque,"Desserts, Pizza, BBQ, Indian, Seafood",100,3.6 +8472,Night Munchers,Islip,"BBQ, Desserts, Seafood",72,0.0 +8473,Night Munchies,Dodge City,"Seafood, BBQ, Fast Food",82,0.0 +8474,Anand Food Factory,Jackson,"Pizza, BBQ, Mediterranean, Fast Food",54,2.9 +8475,Nirula's,Iron Mountain,"Desserts, BBQ, Fast Food, American, Seafood",100,2.5 +8476,Snacks India,Moline,"Tea, French, Pizza, Cafe",91,3.6 +8477,Ahaar Udyan,Lewisburg,"Tea, Pizza, Fast Food, Cafe, Indian",11,0.0 +8478,Choco Bee,Trenton,"French, Pizza, Bakery, BBQ",99,0.0 +8479,Crazy Noodles,Bangor,"Pizza, Italian, BBQ, Cafe, Mediterranean, Seafood",28,0.0 +8480,Dakshin Platter,Myrtle Beach,"Cafe, Bakery, Italian",56,0.0 +8481,Kathi Junction,Lake Charles,"French, Bakery, Pizza, Seafood",64,0.0 +8482,Sonu Parantha Corner,Presque Isle,"Tea, Bakery, BBQ, Cafe, Mediterranean",70,0.0 +8483,Olive Kitchen,Mosinee,"Tea, Pizza, Desserts, Seafood",38,2.6 +8484,R Cafe,Bishop,"Desserts, Tea, Mexican, Bakery, Cafe",73,3.0 +8485,Eating Point,Tucson,"Tea, Bakery, Mediterranean",100,0.0 +8486,New Gee Pee,Watertown,"Cafe, Pizza, Mediterranean, Desserts",42,3.3 +8487,Uncle's JVCC Restaurant,Duluth,"Cafe, Pizza",12,3.0 +8488,Twenty Four Seven,Dodge City,"Fast Food, Desserts, Seafood",70,0.0 +8489,Hari Om Restaurant,San Antonio,"Tea, Bakery, Indian, Fast Food",98,3.0 +8490,Jain Restaurant,Buffalo,"French, BBQ, Desserts",78,3.0 +8491,Lajawab Family Restaurant,Norfolk,"Fast Food, Tea, Seafood",26,2.5 +8492,Alam Muradabadi & Hyderabadi Biryani,Decatur,"Pizza, American, Mediterranean, Seafood",41,0.0 +8493,Bala Ji Raja Dhaba,Saginaw,"Bakery, Seafood",70,0.0 +8494,Brijwasi Dhaba,Kalispell,"Desserts, Tea, BBQ, Fast Food, Chinese",100,0.0 +8495,Prerna Family Restaurant,Louisville,"Cafe, American, Mediterranean, Seafood",70,0.0 +8496,Rana Dhaba,Lake Charles,"Desserts, Pizza, Mexican, Fast Food, Seafood",74,0.0 +8497,The Food Factory,Martha's Vineyard,"Bakery, Pizza, Fast Food",74,0.0 +8498,221 B Baker Street,Oakland,"Fast Food, Cafe, Desserts, Seafood",68,3.4 +8499,Hunger's Hub,Hilton Head,"Tea, Bakery, Desserts, Seafood",97,3.1 +8500,Lajwaab Restaurant,Ogden,"Tea, Mexican, Desserts",52,2.6 +8501,Republic of Chicken,North Bend,"Pizza, Desserts",59,3.0 +8502,Gauranga Sweets,Boise,"Desserts, Tea, Pizza, American, Seafood",53,0.0 +8503,Green Valley Chinese Food,Palm Springs,"Pizza, BBQ, Desserts, Fast Food",27,0.0 +8504,Super Cake Shop,Great Falls,"Cafe, Pizza, Fast Food",51,2.5 +8505,Dev Food,Saginaw,"Desserts, Pizza, Italian, BBQ, Chinese",81,0.0 +8506,Wakhra Swaad,Ithaca,"BBQ, Mediterranean, Fast Food",54,4.1 +8507,27 Grills,Paducah,"Tea, Pizza, BBQ, Fast Food, Chinese",76,3.3 +8508,China Hot Pot,Worcester,"Cafe, Mediterranean, Desserts, Seafood",94,3.0 +8509,Himalaya Momos & Roll,Great Falls,"Cafe, Bakery, Italian",91,2.7 +8510,Hungry House Pizzas & More,Fort Myers,"Tea, Italian, Fast Food, Chinese, Seafood",15,3.4 +8511,Khana Khajana Da Dhaba,Walla Walla,"Bakery, Pizza, Seafood",88,2.9 +8512,M.P. Chole Tikki Wala,Laramie,"Cafe, Mexican, BBQ, Bakery",23,3.0 +8513,Maa Vaishno Shudh Bhojnalaya,White Plains,"Bakery, Desserts, Pizza, BBQ",18,3.1 +8514,More Than Caf愆,International Falls,"French, Bakery, American, Desserts",51,3.0 +8515,Public Cafe,Boston,"Bakery, Seafood",29,2.6 +8516,Sadda Taste,Duluth,"Pizza, Bakery, Fast Food, Indian, Seafood",90,3.1 +8517,Sati Restaurant,Hagerstown,"Desserts, Tea, Pizza, Mexican, BBQ",62,3.2 +8518,Super Cake Shop,El Paso,"Tea, Mexican, BBQ, Fast Food, Mediterranean",49,2.8 +8519,Uncle's Punjabi Rasoi,Minneapolis,"Cafe, BBQ, Seafood, Fast Food",40,2.9 +8520,Yours Deliciously,Worcester,"Tea, Pizza, American, BBQ",76,2.9 +8521,Captain Curry,Cedar Rapids,"Tea, Indian, Desserts",27,3.6 +8522,Oh My Scoop!,Dubuque,"Bakery, BBQ",88,3.5 +8523,Reena Restaurant,Orlando,"Fast Food, Seafood, Bakery, Italian",98,3.5 +8524,Delight Food,Rock Springs,"Tea, Bakery, Pizza, Desserts",31,0.0 +8525,Hungro,Rhinelander,"Tea, Pizza, Italian, Fast Food, Chinese",83,0.0 +8526,Shiparma Shri,Rapid City,"Desserts, Tea, Pizza, Mexican, BBQ, Indian",67,0.0 +8527,Shri Adarsh Kulfi,Kahului,"Pizza, BBQ",71,0.0 +8528,Simla Bakery,Milwaukee,"Desserts, Pizza, BBQ, Cafe, Mediterranean",51,0.0 +8529,Swad E Punjab,Pensacola,"Pizza, Bakery, Cafe, American, Seafood",80,0.0 +8530,Vishnu Ki Rasoi,Bangor,"Seafood, Pizza, BBQ, Italian",98,0.0 +8531,Pizza Hut Delivery,Yakima,"Tea, Fast Food, Desserts, Seafood",79,2.3 +8532,Wah Ji Wah,Erie,"Desserts, French, Mexican, Bakery, Fast Food, Cafe",63,2.0 +8533,Chawla's Chic Inn,Greenville,"Tea, French, BBQ, Seafood",39,2.8 +8534,Grill Point,Jackson,"Tea, Chinese, Bakery, BBQ",33,3.2 +8535,Hari Sweets,Bemidji,"Tea, Cafe, Seafood",51,3.1 +8536,Sultanate of Spice,Omaha,"Chinese, Desserts, Italian, BBQ, Cafe, Seafood",95,2.9 +8537,Yamu's Panchayat,Decatur,"Cafe, BBQ, Chinese, American, Seafood",27,3.2 +8538,Debon,Albuquerque,"Tea, Mexican, Bakery, Cafe, Indian",31,3.5 +8539,Hot & Sour,Madison,"Tea, Bakery",28,3.2 +8540,Open Kitchen,Knoxville,"Pizza, Bakery, BBQ, Cafe, Indian, Mediterranean",13,3.0 +8541,Truffle Muffle,Charleston,"Cafe, Seafood, Desserts, Fast Food",87,3.4 +8542,Go! Biryani,Indianapolis,"Bakery, BBQ",97,3.5 +8543,Tastee Chauka,Devils Lake,"Tea, Mexican, BBQ, Fast Food, Seafood",83,3.7 +8544,Maharba Chicken Point,Los Angeles,"Pizza, Italian, French, BBQ, Fast Food, Cafe",68,0.0 +8545,Sweet Spells,Roanoke,"Mexican, Bakery, Seafood",79,0.0 +8546,Foodie,Milwaukee,"Desserts, Cafe, Italian, Chinese, Seafood",35,2.8 +8547,Lapaalap,Manhattan,"Pizza, BBQ, Bakery, Cafe, Indian",20,3.0 +8548,Fresh Food Factory,Yuma,"Cafe, BBQ, Seafood",61,3.9 +8549,Bollycric,Brownsville,"Pizza, Bakery, Fast Food, Chinese, Seafood",86,0.0 +8550,The Kitchen Factory,Portland,"Tea, Bakery, Mediterranean",77,0.0 +8551,Caff愆 La Poya,Santa Fe,"Tea, Cafe, Mexican",39,3.7 +8552,Elixir Health Caf愆,Des Moines,"Cafe, BBQ",42,3.7 +8553,Radhey Foodz,Spokane,"Pizza, Desserts, Seafood",11,3.0 +8554,The Kitchen,Billings,"Cafe, American, BBQ, Seafood",13,2.7 +8555,Uncle's Treat,Spokane,"Mediterranean, Desserts, Seafood",87,3.1 +8556,Wow! Momo,El Paso,"Desserts, Pizza, Fast Food, Cafe, American",78,2.6 +8557,KD's Hunger Point,New Bern,"Desserts, Tea, Bakery, Cafe, Mediterranean",31,3.7 +8558,Food Town,Hattiesburg,"French, Bakery, Desserts",18,0.0 +8559,The Big Chefs,Salina,"Tea, Cafe, BBQ, Fast Food",98,0.0 +8560,The Big Scoop,Boston,"Desserts, Fast Food",71,0.0 +8561,Govinda's Restaurant,Missoula,"Desserts, Tea, French, Bakery, Chinese",30,3.0 +8562,Not Just Dilli,Asheville,"Tea, Fast Food, Cafe, Mediterranean, Seafood",46,3.2 +8563,RollsKing,Decatur,"French, Seafood, Fast Food",53,3.4 +8564,Bunz & Dogz,Wenatchee,"BBQ, Cafe, Bakery, Desserts",71,0.0 +8565,Radha Rani Bakery,Pasco,"Tea, Cafe, Bakery",17,0.0 +8566,Chauhan Vatika,San Francisco,"Bakery, BBQ, Mediterranean",45,2.8 +8567,Frozen Stone,Laredo,"Desserts, BBQ, Fast Food, Cafe, Mediterranean",45,3.1 +8568,Kavita's Restaurant,Jamestown,"Desserts, Pizza, French, BBQ, Bakery",57,2.6 +8569,Mudrika Food Factory,Pellston,"Tea, Pizza, French, Fast Food, Seafood",10,2.5 +8570,Pind Balluchi,Tallahassee,"Tea, BBQ, Mediterranean, Desserts",91,2.9 +8571,Zaffran- Ikshita's Kitchen,Fairbanks,"Fast Food, Mediterranean, Desserts, Seafood",50,3.0 +8572,Chaayos,Sitka,"Desserts, Pizza, Fast Food, Cafe, Mediterranean",26,3.6 +8573,Punjabi Tadka,Norfolk,"Tea, French, Bakery, Mediterranean, Seafood",89,3.7 +8574,Cafe Krisa,Raleigh,"Fast Food, BBQ, Italian",98,0.0 +8575,Chill Grill,Los Angeles,"Tea, Fast Food, Italian",41,0.0 +8576,Dolce Gelato,Midland,"Tea, Pizza, Indian, Fast Food",74,0.0 +8577,Maa Ka Khaana,Vernal,"Seafood, Pizza, BBQ, Fast Food",71,0.0 +8578,The Beer Cafe,Augusta,"Tea, French, Mexican, BBQ, Bakery, Seafood",41,0.0 +8579,Heaven's Point,Sun Valley,"Pizza, French, Bakery, Cafe, Seafood",94,3.0 +8580,Kamboj's,Austin,"Desserts, Bakery, Fast Food, Cafe, American",72,2.8 +8581,Mexican Pizza,Dothan,"Desserts, Indian, BBQ, Fast Food, American, Seafood",22,3.4 +8582,Shahenshah,Hagerstown,"Cafe, BBQ",99,2.9 +8583,Snack Chat,Asheville,"Tea, French, Bakery",48,3.4 +8584,The Amazing Buger's,Twin Falls,"Desserts, BBQ, Bakery, American, Mediterranean, Seafood",22,2.9 +8585,The Black Box,Christiansted,"Seafood, Pizza, Italian",100,3.1 +8586,Al Bake,Lewiston,"Cafe, Mexican, BBQ",89,3.7 +8587,Asian Fun,Eau Claire,"French, Bakery, Cafe, Desserts",67,3.8 +8588,Burnout,Jacksonville,"Tea, Bakery, Desserts",52,3.6 +8589,Cafe Fusion,Greensboro,"Cafe, Bakery, Mediterranean",44,3.7 +8590,Fit Bites,Juneau,"Desserts, Pizza, Mexican, BBQ, Mediterranean",70,3.7 +8591,Go Krazy,Chattanooga,"French, BBQ, Fast Food",64,3.5 +8592,Green Restaurant,Brownsville,"American, Mediterranean, Desserts, Seafood",97,3.6 +8593,Hunger Strike,Huntsville,"Cafe, Pizza, Indian, Fast Food",37,3.7 +8594,The Munchkart Cafe,Sacramento,"Tea, Mexican, American, Fast Food",57,3.8 +8595,Thee Pot,Ketchikan,"Bakery, Pizza, American, Seafood",94,3.7 +8596,Waffles and Crepes,Martha's Vineyard,"Tea, Desserts, Italian",69,3.9 +8597,Biryani Vice,Panama City,"Desserts, French, BBQ, Cafe, Seafood",33,0.0 +8598,Chinese Chilly Sizzler,Anchorage,"Chinese, Tea, Bakery, BBQ, Cafe, Mediterranean",51,0.0 +8599,Moonlight Cafe,Martha's Vineyard,"Cafe, Mexican, Bakery",82,0.0 +8600,Sugar Ruffles,Reno,"Desserts, Pizza, French, BBQ, Fast Food",12,0.0 +8601,Bistro 37,Eau Claire,"Bakery, Pizza, American",76,4.3 +8602,Desi Swag,Mosinee,"Pizza, Bakery, Seafood",63,4.3 +8603,Teasta,Texarkana,"Pizza, Italian, French, Bakery, Cafe, Seafood",94,4.1 +8604,Appu Ghar Express,Owensboro,"Tea, Mexican, Bakery, Fast Food, Seafood",47,2.8 +8605,Barista,Lewisburg,"French, Pizza, Cafe, Fast Food",15,3.0 +8606,Burger King,Raleigh,"Cafe, Fast Food",50,3.2 +8607,Keventers,Bozeman,"Desserts, Pizza, BBQ, Fast Food, Indian",39,3.1 +8608,Kenny Rogers Roasters,Louisville,"Tea, Pizza, Italian, Cafe, Indian, Seafood",17,3.7 +8609,McDonald's,Lake Charles,"Bakery, Fast Food",49,3.5 +8610,Baskin Robbins,Alamosa,"Mexican, Pizza, Mediterranean, BBQ",56,0.0 +8611,Cafe Buddy's,Cedar Rapids,"Pizza, BBQ, Seafood",21,0.0 +8612,Fusionn Rolls,Orlando,"Pizza, Bakery",63,0.0 +8613,Kwality Walls - Happiness Station,Fort Lauderdale,"Desserts, Indian, BBQ, Seafood",74,0.0 +8614,Shakti Food & Restaurant,Greenville,"Pizza, Italian, Bakery, BBQ, Fast Food",13,0.0 +8615,Domino's Pizza,Toledo,"Cafe, Fast Food",77,2.4 +8616,Mr. Brown,San Angelo,"Desserts, Tea, Pizza, Fast Food, Chinese",26,4.0 +8617,Chef's Bar-Be-Que,Lawton,"Cafe, BBQ, Seafood",20,3.4 +8618,Sen's Sational Xpress Kitchen,Valparaiso,"Desserts, Pizza, Fast Food, Chinese, Mediterranean",32,3.0 +8619,Shanghai Dreams,Mosinee,"Tea, Cafe, Mexican",37,3.0 +8620,InnerChef,Boston,"Cafe, Bakery, BBQ, Seafood",75,3.3 +8621,Antaryami Paratha Corner,Peoria,"Pizza, Desserts, Seafood",49,0.0 +8622,F-all (Food for All),Louisville,"Tea, Pizza, Mexican, Bakery, Fast Food",42,3.4 +8623,Green Restaurant,New York,"Tea, Cafe, Bakery, Desserts",74,0.0 +8624,2 Bros Kitchen,Jamestown,"Tea, Bakery",46,3.2 +8625,Baskin Robbins,Lewisburg,"Chinese, BBQ, Desserts, Seafood",43,3.3 +8626,Big Bone - The Meat Shop,Flagstaff,"Seafood, Bakery, Desserts, Fast Food",48,3.1 +8627,Biryani House,Sacramento,"Desserts, Tea, Cafe, Fast Food, Chinese",23,3.1 +8628,China Hot,Atlanta,"Tea, Cafe, BBQ",13,2.9 +8629,City Hut,Prescott,"Bakery, Seafood",53,2.5 +8630,Defence Bakery,Evansville,"Pizza, Mexican, Bakery, Cafe, Mediterranean, Seafood",26,3.4 +8631,Dhabha 27,Orlando,"Tea, French, Mexican, Bakery, Fast Food, Seafood",24,3.2 +8632,Faasos,Staunton,"Cafe, Bakery, Desserts, Seafood",35,3.1 +8633,Green Chick Chop,Appleton,"Tea, Italian, Bakery, Indian, Seafood",60,2.7 +8634,JSB Evergreen Cool Point,Anchorage,"Desserts, Bakery, Chinese, Indian, Seafood",40,2.9 +8635,JSB Evergreen Snack & Sweets,Prescott,"Mexican, Pizza, Desserts",25,3.2 +8636,Keventers,Bishop,"Bakery, Indian, Desserts, Seafood",94,2.9 +8637,More Than Cafe,Gulfport,"Tea, Cafe, Pizza, BBQ",77,3.3 +8638,Mutfi,Phoenix,"Desserts, Bakery, Fast Food, Indian, Seafood",67,3.3 +8639,Nawabi Mughlai Zaika,International Falls,"Tea, American, Desserts, Fast Food",73,3.2 +8640,Ovenstory Pizza,Saipan,"Desserts, Tea, Pizza, Italian, Seafood",17,3.3 +8641,ProFit Kitchen,Long Beach,"Tea, BBQ, Desserts, Seafood",14,3.4 +8642,Public Cafe,Burbank,"Bakery, American, Desserts, Italian",66,2.5 +8643,The Chickmunks Express,Huntsville,"Fast Food, Cafe, Desserts, Seafood",54,3.0 +8644,Time to Tea,Great Falls,"Tea, Bakery",42,3.4 +8645,Twenty Four Seven,Bakersfield,"Cafe, Bakery, Indian, BBQ",70,3.0 +8646,Virundu,Charleston,"Fast Food, Pizza, Italian",82,2.8 +8647,Be Bhukkad,Myrtle Beach,"Tea, French, Bakery, BBQ",96,3.6 +8648,Behrouz Biryani,Bozeman,"Bakery, American, Seafood",27,3.5 +8649,Bistro 365,White Plains,"French, Desserts, Seafood",31,3.7 +8650,Engineers Da Dhaba,Punta Gorda,"French, Pizza, American, Seafood",76,3.6 +8651,Hungry Minister,Huntsville,"Tea, Desserts, Seafood",36,3.5 +8652,Kake Da Hotel,Kodiak,"Desserts, Tea, Italian, BBQ, American",42,3.5 +8653,Biryani,Jamestown,"Tea, Pizza, BBQ, Italian",65,0.0 +8654,C Cube,Moline,"Tea, Pizza, Desserts, Fast Food",42,0.0 +8655,Chicago Pizza,Green Bay,"Desserts, Pizza, BBQ, Fast Food, Chinese",60,0.0 +8656,Kettle & Kegs,Nashville,"Tea, Seafood",60,0.0 +8657,Keventers,Killeen,"Seafood, American, BBQ, Italian",30,0.0 +8658,Keventers,Charlottesville,"Desserts, Tea, Pizza, Bakery, Mediterranean",90,0.0 +8659,Navab's,Florence,"Bakery, Pizza, BBQ",83,0.0 +8660,Nawabi Mughlai Zaika Food Van,Martha's Vineyard,"Italian, Bakery, BBQ, Cafe, American",16,0.0 +8661,NS Punjabi Swad,Dillingham,"Chinese, Mexican, Bakery, Fast Food",39,0.0 +8662,Pitstop,Anchorage,"Cafe, BBQ, Desserts",54,0.0 +8663,Royal Spice Restaurant,Wichita Falls,"Tea, Fast Food, Cafe, Seafood",70,0.0 +8664,Sethi's,Brunswick,"Tea, Cafe, Pizza, Fast Food, Chinese",63,0.0 +8665,Snacks Parties,State College,"Seafood, Pizza, Fast Food",26,0.0 +8666,Peshawari Delux Restaurant,Appleton,"Tea, French, Seafood",30,2.4 +8667,WTF - World's Tastiest Food,Fort Dodge,"Cafe, Pizza, Indian",56,2.4 +8668,Salato Salad Studio,Hilton Head,"Tea, Pizza, Mexican, Bakery, Cafe, American",100,4.1 +8669,AB Fast N Food,Harlingen,"Desserts, Tea, Pizza, Mexican, Bakery, Chinese",27,2.7 +8670,Cafe 44,Saipan,"Tea, Mediterranean, Desserts",81,3.0 +8671,Cafe Onion Rings,Sault Ste. Marie,"Tea, Cafe, Mediterranean",88,2.9 +8672,Club 44,Provo,"Tea, Chinese, Bakery, Desserts",75,3.2 +8673,Indian Curry House,Fresno,"Tea, Chinese, BBQ, Italian",17,3.1 +8674,Krunchies,West Palm Beach,"Desserts, Tea, BBQ, Chinese, American",20,2.5 +8675,Platefull,Branson,"Tea, Pizza, Italian, Bakery, Cafe",42,3.4 +8676,Sanghai Food,Key West,"Mexican, BBQ, Seafood",32,2.9 +8677,Shadev Saini Dhaba,Anchorage,"Tea, Pizza, Bakery, Italian",87,3.0 +8678,Wasim Biryani Center,Norfolk,"Cafe, Bakery, American",19,2.8 +8679,Hungry - I,Bishop,"Cafe, Pizza, Indian",72,3.7 +8680,Smoking Tikka,Ogden,"Tea, French, Seafood",67,3.7 +8681,The Fusion Food Stand,Idaho Falls,"Desserts, Cafe, Italian, BBQ, Chinese, Seafood",49,3.8 +8682,44 Grills,Idaho Falls,"Seafood, Pizza, BBQ, Fast Food",97,0.0 +8683,Ammi's Kitchen,Albuquerque,"Cafe, Bakery, Pizza, Desserts",70,0.0 +8684,Bangali Restaurant,Kahului,"Tea, BBQ, Bakery, Desserts",99,0.0 +8685,Home Cafe,Melbourne,"Cafe, American, Desserts",38,0.0 +8686,Hot Chilli Food Plaza,Grand Forks,"Chinese, Seafood, Fast Food",90,0.0 +8687,Kanak Kitchen,Wichita,"Fast Food, French, Desserts, Italian",83,0.0 +8688,Speziato Foods,Daytona Beach,"Cafe, Pizza, BBQ, Fast Food",55,0.0 +8689,The Golden Spoon,Palm Springs,"Chinese, Mexican, Pizza, Fast Food",38,0.0 +8690,The Saffron Plant Restaurant,Fayetteville,"Tea, BBQ, Mediterranean, Seafood",19,0.0 +8691,Zaika Tiffin Center,San Antonio,"Tea, French, Bakery, Cafe, Indian",73,0.0 +8692,#Urban Caf愆,Martha's Vineyard,"Fast Food, Cafe, Italian",96,3.3 +8693,Baked! Cakes & Desserts,Reno,"Tea, Seafood, Desserts, Italian",43,3.3 +8694,Quick Grabs,Alexandria,"French, Pizza, BBQ, Seafood",77,3.1 +8695,The Roll Van,Iron Mountain,"Tea, Pizza, French, Mexican, Fast Food, Cafe",90,2.9 +8696,Balaji Restaurant & Sweets,Santa Ana,"Tea, Chinese, Bakery, Desserts",24,0.0 +8697,Baskin Robbins,Spokane,"Cafe, Mexican, BBQ, Pizza",93,0.0 +8698,Baskin Robbins,Midland,"Cafe, Desserts, American, BBQ",44,0.0 +8699,Chandu Chat Bhandar,Philadelphia,"Desserts, Tea, Italian, BBQ, Seafood",48,0.0 +8700,Foodies Park,Vernal,"Tea, Mexican, Pizza",14,0.0 +8701,Noida Cakes Online,Richmond,"Cafe, Seafood, Desserts, Fast Food",92,3.0 +8702,The Epicureans,Kalispell,"Bakery, BBQ, Desserts",24,3.4 +8703,Bhojanam4u,Rochester,"Tea, Pizza, BBQ, Fast Food, Indian, Mediterranean",59,0.0 +8704,Chocadoodledoo,Atlanta,"BBQ, Pizza, Indian, Desserts",24,0.0 +8705,Chocolate Therapy by Nishi,College Station,"Tea, Mediterranean, Seafood",78,0.0 +8706,Cookie House,Cheyenne,"Desserts, French, Bakery, Fast Food, Cafe",10,0.0 +8707,Adhikari Fast Food Corner,Gulfport,"Chinese, BBQ, Mediterranean, Desserts",63,2.8 +8708,Amrit's Agni Multi Cuisine Restaurant,Bakersfield,"Tea, Pizza, Bakery, Fast Food, American",89,2.9 +8709,Punjabi Chaska,Appleton,"Tea, Bakery, Desserts",45,3.0 +8710,The Choco Shop,Iron Mountain,"Tea, Pizza, Desserts",58,3.0 +8711,The Taste,Provo,"Pizza, BBQ, Bakery, Cafe, Mediterranean",99,3.1 +8712,Tibb's Frankie,Eugene,"Seafood, Indian, BBQ, Fast Food",82,3.4 +8713,Amazing Burgers,Champaign,"American, Fast Food, Cafe, Indian, Seafood",37,0.0 +8714,Kitchen Express,Ithaca,"Pizza, Mediterranean, Desserts",12,0.0 +8715,Domino's Pizza,Syracuse,"Mexican, Bakery, BBQ, Fast Food, Cafe",36,2.3 +8716,Public Cafe,Daytona Beach,"Chinese, Pizza, Bakery, Fast Food",67,2.4 +8717,Chocopur,Bozeman,"Desserts, Tea, Bakery, BBQ, American",78,3.0 +8718,Sweta Restaurant,Bozeman,"Desserts, Mexican, Bakery, Fast Food, Cafe",48,3.2 +8719,Flames of Tandoor,Dallas,"Tea, Chinese, Desserts, Fast Food",57,3.5 +8720,Shaivi's Kitchen,Atlanta,"French, Pizza, Seafood",77,0.0 +8721,Kuppies,Clarksburg,"Bakery, Pizza, Italian",71,3.8 +8722,The Urban Chulha,Owensboro,"BBQ, Desserts",56,3.5 +8723,Goyal Chhole Kulche Wala,Bangor,"Pizza, Bakery, Fast Food, Cafe, Indian, Mediterranean",32,0.0 +8724,Cafe Coffee Day,Hilo,"Tea, Seafood, Indian, Fast Food",64,2.7 +8725,Choco House,Albuquerque,"Tea, Pizza, Desserts, Seafood",12,3.4 +8726,DCK- Dana Choga's Kitchen,Brunswick,"Desserts, Tea, BBQ, Fast Food, Chinese",49,2.7 +8727,Fresh and Fit Ghar Ka Khana,San Luis Obispo,"Tea, Mexican, American, Seafood",81,3.1 +8728,Hungry Ullu,New York,"Tea, Bakery",94,3.3 +8729,Khidmat,White Plains,"Tea, Cafe",90,3.4 +8730,Lahori Restaurant,Des Moines,"French, BBQ, Cafe",98,2.5 +8731,New Chinese Chilli Sizzler,Cedar City,"Tea, Italian, Bakery, Mediterranean, Seafood",45,2.7 +8732,Nirmala's,Milwaukee,"Tea, Cafe, Bakery, Fast Food",26,3.4 +8733,Prime Bakery,Texarkana,"Cafe, Pizza, BBQ, Fast Food",94,3.0 +8734,Royal Empire Meat Shop,Paducah,"Tea, Bakery, Desserts",95,3.4 +8735,Southern Treat,Minneapolis,"French, Pizza, Bakery",52,2.8 +8736,Subway,Paducah,"Tea, Mexican, Bakery, BBQ, American",29,2.5 +8737,The Chickmunks Caf愆,Lawton,"Pizza, Italian, Bakery, BBQ, Fast Food",70,3.2 +8738,The FLIP Cafe,Pocatello,"Pizza, Italian, BBQ, Cafe, American",78,2.6 +8739,Yo! China,South Bend,"BBQ, American, Desserts",95,2.5 +8740,Gopala,Beaumont,"Chinese, Seafood, Fast Food",56,3.6 +8741,R.I.P Cafe & Lounge,Colorado Springs,"Desserts, Mexican, Bakery, Fast Food, Indian",89,3.5 +8742,Big Biryani,Minneapolis,"Tea, Pizza, French, Chinese, Seafood",52,0.0 +8743,Cupcakes & More,Long Beach,"Tea, Indian, Desserts",49,0.0 +8744,Heavens Food Xprs,Charlotte Amalie,"Desserts, Tea, Fast Food, Chinese, Mediterranean, Seafood",82,0.0 +8745,Parul's Cooking Hub,Greer,"Cafe, Pizza, Bakery, BBQ, Chinese",30,0.0 +8746,Republic of Chicken,Greensboro,"Bakery, Pizza",77,0.0 +8747,Somethings Sweet,Chicago,"Bakery, BBQ, Seafood",68,0.0 +8748,Chawla's宊,West Yellowstone,"French, BBQ, Cafe",12,2.3 +8749,Domino's Pizza,White Plains,"Desserts, Bakery, Fast Food, Chinese, American",76,2.4 +8750,Nazeer Foods,Petersburg,"Tea, Mexican, Pizza, BBQ",58,2.3 +8751,Night Food Xprs,Palm Springs,"Fast Food, Pizza, American, Seafood",25,2.3 +8752,Pizza Hut Delivery,Cincinnati,"Cafe, American, Fast Food",39,2.3 +8753,The Caspian,Medford,"Bakery, Pizza, American, Seafood",64,2.4 +8754,The Noodle Box Co.,Fort Smith,"Desserts, Tea, French, BBQ, Cafe",80,2.4 +8755,WTF - World's Tastiest Food,Green Bay,"Tea, Bakery, BBQ, Fast Food, Chinese",80,2.4 +8756,Biryani By Kilo,Knoxville,"Chinese, Pizza, Fast Food",17,4.1 +8757,Kalpak Restaurant & Cafe,West Palm Beach,"Tea, Mexican, Pizza",24,4.3 +8758,Theos,College Station,"Tea, Pizza",42,4.1 +8759,Aamantran Bangla,San Diego,"Pizza, Italian, Bakery, Fast Food, Cafe",33,2.7 +8760,Chung-Fu,Lansing,"Desserts, Tea, Italian, BBQ, American",75,3.0 +8761,Paco Meals,Boston,"Bakery, Fast Food, Chinese, Indian, Seafood",36,2.8 +8762,Reena Restaurant,Hartford,"Mexican, Pizza, Bakery, Fast Food",47,2.7 +8763,Sanskriti Foods,Newburgh,"Desserts, Tea, Mexican, Cafe, Seafood",43,3.1 +8764,Biryani Vice,Bemidji,"Mexican, Bakery, BBQ, Fast Food, Seafood",41,3.6 +8765,Dietwholic,Bozeman,"Pizza, Mexican, Bakery, BBQ, Chinese, Seafood",12,3.7 +8766,Goldenplates,Sioux City,"Pizza, Mediterranean, BBQ",90,3.6 +8767,Mishti's Kitchen,Amarillo,"French, Bakery, Fast Food",79,3.6 +8768,Shahenshah,Dallas,"Fast Food, Seafood, BBQ, Italian",92,3.5 +8769,Ayush Chicken Point,Rhinelander,"Seafood, BBQ, Fast Food",79,0.0 +8770,Baby Got Bacon,Evansville,"French, Mexican, Bakery, BBQ",61,0.0 +8771,Better Butter Chicken,La Crosse,"Tea, Mexican, BBQ, Fast Food, Cafe",28,0.0 +8772,Black Pepper,Kalamazoo,"Cafe, BBQ, Fast Food, Chinese, American, Seafood",36,0.0 +8773,Chandni Chowk 2 China,Williston,"Pizza, BBQ",46,0.0 +8774,Choco N Lush,Raleigh,"Tea, Bakery, Italian",54,0.0 +8775,Friend's Restaurant,West Yellowstone,"Desserts, Mexican, BBQ, Fast Food, Cafe",10,0.0 +8776,Ghar Ka Khana,Valdosta,"Desserts, Tea, Pizza, French, Mexican, Bakery",25,0.0 +8777,Ghar Ka Swad,Colorado Springs,"Cafe, Seafood",58,0.0 +8778,Kake Da Dhaba,Kansas City,"Tea, Cafe, Pizza, Fast Food",56,0.0 +8779,Knight Kitchens,Prescott,"Pizza, Fast Food",37,0.0 +8780,Lucknow Heritage,Fort Wayne,"Tea, Pizza, Italian, BBQ, Indian, Seafood",55,0.0 +8781,Momos Box,Raleigh,"BBQ, Desserts, Italian",29,0.0 +8782,Raging Bull - The Spicy Punch,Richmond,"Tea, Cafe, Mediterranean",72,0.0 +8783,Second Home,Johnstown,"Tea, Cafe",57,0.0 +8784,The Big Buddha Grill,El Paso,"Tea, BBQ, Italian",59,0.0 +8785,Whatslife.in,St. Louis,"Cafe, Mexican, Mediterranean, Seafood",92,0.0 +8786,Slice of Italy,Williston,"Tea, Seafood",67,2.3 +8787,Bebbe Da Degh,San Francisco,"Bakery, Desserts",64,3.2 +8788,Chauhan Hotel,Helena,"Tea, French, BBQ, Desserts",92,2.9 +8789,52 Food Express,Detroit,"Desserts, Tea, Italian, Fast Food, Seafood",20,0.0 +8790,Delicious Treasure,Fort Myers,"Desserts, Tea, French, Fast Food, American",25,0.0 +8791,Shiv Murti Hotel,Fort Smith,"Tea, Mediterranean, Fast Food",51,0.0 +8792,Kaka Ji Restaurant,Midland,"French, Bakery, Desserts, Fast Food",39,2.9 +8793,Lazzez's,Omaha,"Tea, Cafe, Pizza, Fast Food, Chinese",51,2.9 +8794,Mithaas Sweets,Pensacola,"Pizza, Bakery, BBQ, Cafe, Indian, Mediterranean",86,3.1 +8795,Mithaas,Wenatchee,"Desserts, Italian, BBQ, Fast Food, Seafood",92,3.2 +8796,Tandoori Corner,Laramie,"Seafood, Mexican, BBQ, Italian",87,2.6 +8797,Culinate,Brownsville,"Tea, BBQ, Fast Food, Cafe, Indian",51,3.8 +8798,Haaochi,Nome,"French, BBQ, Desserts",98,3.5 +8799,Bake Walkers,Jamestown,"French, BBQ, Bakery, Fast Food, Cafe, Mediterranean",12,0.0 +8800,Chacha Food Street,Rhinelander,"Tea, Cafe, American",24,0.0 +8801,DudeFood,Alpena,"Tea, Mexican, Fast Food, Cafe, American, Seafood",87,0.0 +8802,Indian Special Hot Momos,Tulsa,"Desserts, Cafe, Pizza, Bakery, Chinese",78,0.0 +8803,Kesarwa Bakez,Arcata,"Bakery, Pizza",94,0.0 +8804,Om Bikaner Sweets,Greenville,"BBQ, Fast Food",87,0.0 +8805,Sadda Adda 2 Cafe & Lounge,Alexandria,"Fast Food, Pizza, Desserts, Italian",89,0.0 +8806,The Backyard Chef,Salina,"Italian, Bakery, BBQ, Fast Food, Indian",83,0.0 +8807,Veer Jee,Albuquerque,"Bakery, Indian, American, Fast Food",33,0.0 +8808,VP ki Kitchen,Kansas City,"Desserts, Pizza, Mexican, Bakery, Cafe, Mediterranean",63,0.0 +8809,Flying Cakes,Sault Ste. Marie,"Cafe, Indian, BBQ, Italian",47,2.1 +8810,Taste In Box,Jackson,"Cafe, Bakery",28,2.3 +8811,Snacks Point,Devils Lake,"Cafe, Indian, BBQ",36,2.9 +8812,Sector 55 China Town,Butte,"Cafe, Pizza, Seafood",34,0.0 +8813,B Tamang Chineese,Scranton,"Desserts, Pizza, French, Bakery, Cafe, Indian",95,2.9 +8814,Foodelicious,Panama City,"Bakery, Pizza, Indian, Fast Food",52,3.1 +8815,The Cake Masters,Jackson,"Pizza, Desserts",83,2.5 +8816,Food Hut,Fort Leonard Wood,"Cafe, BBQ, Seafood",30,0.0 +8817,South Indian Snacks Stall,Plattsburgh,"Tea, Pizza, Desserts, Seafood",86,0.0 +8818,Twenty Four Seven,Staunton,"Desserts, Mexican, Bakery, BBQ, Fast Food",12,0.0 +8819,Barista,Melbourne,"Pizza, Bakery, BBQ, Fast Food",81,3.0 +8820,Barista,Aguadilla,"Pizza, Bakery, BBQ, Cafe, Mediterranean",68,2.9 +8821,The Gourmet Shack,Rockford,"Tea, Pizza, Indian, Fast Food",77,3.3 +8822,"Vanshika Indian, Chinese, & Parantha Corner",Abilene,"Pizza, Fast Food",60,3.1 +8823,Yes Bosz Food Plaza,San Jose,"Cafe, Seafood",65,2.7 +8824,A1 Restaurant,Juneau,"Tea, Pizza, Chinese, Mediterranean, Seafood",63,0.0 +8825,Aggarwal Sweets India,Ithaca,"Chinese, French, Pizza, BBQ",57,0.0 +8826,Chaska Food Hut,Provo,"Chinese, Pizza, Bakery",58,0.0 +8827,Hasty Tasty Fast Food,Branson,"Tea, Cafe, Indian",25,0.0 +8828,Pihu's Cafe,Newport News,"Pizza, Mexican, BBQ, Fast Food, Cafe, Indian",39,0.0 +8829,Sanjay Pandit Bhojnalaya,Muskegon,"Pizza, Italian, BBQ, Cafe, American, Seafood",13,0.0 +8830,Sharma Hotel,Daytona Beach,"Tea, Seafood",47,0.0 +8831,Shri G,Madison,"Desserts, Tea, French, Mexican, Fast Food",87,0.0 +8832,Nite Bites,Ponce,"Fast Food, BBQ, Seafood",17,2.7 +8833,Shankar Fast Food,Shreveport,"Cafe, Mediterranean, Desserts, Fast Food",51,2.7 +8834,Shivam Fast Food,Charleston,"Pizza, Italian, French, Bakery, BBQ, Fast Food",73,2.9 +8835,Yumbo Bites,Hartford,"Cafe, BBQ",76,3.1 +8836,Essen Foods,Des Moines,"Bakery, Mexican, BBQ",19,0.0 +8837,L'amore,Fort Leonard Wood,"Desserts, Pizza, Italian, BBQ, Fast Food, Chinese",73,0.0 +8838,SPL Food Corner,Martha's Vineyard,"Tea, Pizza",32,0.0 +8839,Shree Ganesh M Cafe,Baltimore,"Pizza, Indian, Seafood",39,3.1 +8840,Chauhan Fast Food,Great Falls,"Desserts, Bakery, Cafe, Mediterranean, Seafood",46,0.0 +8841,Right for Night,Bemidji,"Desserts, Pizza, BBQ, American, Seafood",10,0.0 +8842,Whatslife.in,Laramie,"Fast Food, Indian, Seafood",13,0.0 +8843,BakeAffair,Rhinelander,"Desserts, Tea, Pizza, Fast Food, Chinese",93,3.4 +8844,Mirchievous,Rockford,"American, Indian, BBQ, Seafood",64,3.1 +8845,Cafe Coffee Day,Johnstown,"French, Bakery, Cafe, Desserts",30,0.0 +8846,Dev Food,Greensboro,"French, Pizza, BBQ, Fast Food",81,0.0 +8847,Green Vally Chiiness Food,Bozeman,"Mexican, Pizza, Seafood",74,0.0 +8848,221 B Baker Street,Omaha,"Tea, BBQ, Fast Food, Mediterranean, Seafood",35,3.2 +8849,Binge Restaurant,Walla Walla,"Seafood, Bakery, Cafe, Fast Food",50,3.2 +8850,Boxmeal,Scranton,"Desserts, French, BBQ, American, Seafood",43,3.0 +8851,Brown Town,Ithaca,"Pizza, Italian, BBQ, Cafe, Mediterranean",43,2.7 +8852,Cafe Coffee Day,Mission,"Desserts, Tea, Pizza, French, Cafe",47,3.0 +8853,Cafe Coffee Day,Sarasota,"Tea, French, Bakery, Fast Food, Chinese",12,3.0 +8854,Cafe Green Apple,Owensboro,"Cafe, American, Mediterranean, BBQ",88,3.2 +8855,Cake Mandi,Erie,"Cafe, Mexican, American, Fast Food",59,3.2 +8856,Chai Thela,Moab,"Cafe, Indian, Seafood",93,3.1 +8857,Chinese Chilli Sizzler,Scottsbluff,"Desserts, Tea, Pizza, Mexican, American",24,2.9 +8858,Delhi Biryani Hut,Eau Claire,"Fast Food, Pizza, Mediterranean, Seafood",95,2.7 +8859,Dev's Restaurant & Bar,Mosinee,"Tea, Bakery, American, Fast Food",89,3.1 +8860,Doggy Style,Prescott,"Chinese, Desserts, Seafood",85,3.2 +8861,Domino's Pizza,Philadelphia,"Tea, Cafe, Pizza, Seafood",84,2.6 +8862,Floating Cakes,Santa Maria,"Desserts, Pizza, French, Mexican, Fast Food, Cafe",79,2.8 +8863,Food Brigade,Seattle,"Chinese, Pizza, BBQ, Fast Food",90,3.2 +8864,Frequent Bakes,Detroit,"Cafe, Pizza, BBQ, Desserts",50,2.5 +8865,GreeNox,Kalamazoo,"Seafood, Indian, Desserts, Italian",54,3.4 +8866,GVP Creations,Harlingen,"Chinese, Mexican, Desserts, Seafood",83,3.1 +8867,Health Buzzz,Laredo,"Desserts, Cafe, Fast Food, Chinese, Indian, Seafood",99,3.2 +8868,Hot & Spicy,Petersburg,"Cafe, Pizza, Fast Food",12,2.9 +8869,Malabar Junction,Gulfport,"Chinese, Pizza, Cafe, Seafood",23,3.3 +8870,Masters Caterer,International Falls,"Bakery, Pizza, American, Desserts",50,2.9 +8871,Meeting Point Corner,Indianapolis,"French, Bakery, Desserts",30,2.8 +8872,Mithaas Sweets,Lewiston,"French, Bakery, Cafe, Seafood",54,2.7 +8873,Mom's Canteen,Valparaiso,"Tea, Chinese, Bakery, BBQ",82,3.0 +8874,MS Foods,Dallas,"Cafe, Pizza, Italian",55,3.1 +8875,Oh Buoy,Bozeman,"Cafe, Seafood",79,3.3 +8876,Old Tehrii Cafe & Lounge,Aberdeen,"Cafe, Indian, Fast Food",31,3.1 +8877,Pichli Gali,Pocatello,"Cafe, Mexican, Desserts, Fast Food",29,3.0 +8878,Pizza Hut,Mosinee,"Tea, French, Bakery, BBQ, Fast Food",51,3.1 +8879,Rasoi99,Bend,"Mexican, Desserts, Fast Food",16,3.2 +8880,Republic of Chicken,Tulsa,"Cafe, Mediterranean, Seafood",22,3.1 +8881,Republic's @ Dhaba,Montgomery,"Desserts, Tea, French, Fast Food, Seafood",58,2.9 +8882,Rolling Beans,State College,"French, Chinese, Desserts, Fast Food",11,2.8 +8883,Rollmaal,Hagerstown,"Tea, Cafe, Mexican, Bakery",26,3.4 +8884,Subway,Laramie,"Chinese, French, Pizza, Desserts",82,2.5 +8885,Swad,San Juan,"Tea, French, Pizza, Seafood",34,2.8 +8886,The Chaiwalas,Mosinee,"Tea, Indian, Desserts",12,2.9 +8887,The Hunger Cure,Hyannis,"Chinese, Bakery, Cafe, Fast Food",30,3.0 +8888,World Bites,Fort Dodge,"Desserts, Tea, French, BBQ, Indian",11,3.4 +8889,BunkYard Cafe,Roswell,"Fast Food, Mexican, BBQ, Seafood",30,3.5 +8890,Chaayos,Tampa,"Cafe, Mediterranean, Desserts, Fast Food",66,3.5 +8891,RollsKing,Hagerstown,"French, Pizza, BBQ",29,3.8 +8892,Sandwich King,Rochester,"Pizza, Italian, Bakery, BBQ, Seafood",46,3.5 +8893,Speedy Chow,Missoula,"Fast Food, Desserts, Italian",16,3.6 +8894,Aggarwal Bikaneri Sweets & Restaurant,Boise,"Tea, Pizza, BBQ, American, Mediterranean",12,0.0 +8895,Al-Aayat Mughlai Biryani,Panama City,"BBQ, Fast Food",45,0.0 +8896,Baba Chinese Fast Food,Boise,"French, Bakery, American, Fast Food",23,0.0 +8897,Cafe Coffee Day,Salina,"Tea, Cafe, Pizza, Desserts",73,0.0 +8898,Cafe Rap,Rapid City,"Desserts, Tea, Bakery, BBQ, Chinese",56,0.0 +8899,Chinese Fast Food Corner,Decatur,"Cafe, BBQ, Fast Food",24,0.0 +8900,Chinese Food Corner,Knoxville,"Indian, Desserts, Fast Food",30,0.0 +8901,Chinese Hot,Cedar Rapids,"Pizza, Mexican, BBQ, Fast Food, American",50,0.0 +8902,Dial a Cake,Charlotte,"Tea, French, Indian, Seafood",25,0.0 +8903,Doon Dhaba,Omaha,"Tea, French, BBQ, Fast Food",23,0.0 +8904,Food Weavers,Dallas,"Tea, Bakery, BBQ, Fast Food, Mediterranean",71,0.0 +8905,Green Chick Chop,Gustavus,"Desserts, Tea, French, Bakery, Fast Food",81,0.0 +8906,Hookie Dookie,San Juan,"Cafe, Fast Food",54,0.0 +8907,Hotel Green View Palace,Del Rio,"Pizza, Bakery, Cafe, American, Seafood",30,0.0 +8908,Hurry Curry Express,Houston,"Fast Food, Seafood",78,0.0 +8909,Kesarwa Bakez,Sarasota,"Tea, BBQ, Cafe, Mediterranean, Seafood",43,0.0 +8910,Let's Noodle,Brunswick,"Tea, Bakery",49,0.0 +8911,New Dragon Chinese Fast Food & Paranthey Wala,Rapid City,"Cafe, Mediterranean, Desserts",51,0.0 +8912,New Shahi Chinese Fast Food,Wichita,"Tea, Pizza, American",34,0.0 +8913,Night Food Delivery,Butte,"French, Bakery, Desserts",70,0.0 +8914,Rajwana Foods,Reno,"Pizza, French, Bakery, Fast Food, Chinese",37,0.0 +8915,Shama Chicken Corner,Kodiak,"Tea, Mexican, BBQ, American, Seafood",12,0.0 +8916,Shiva Shudh Shakahari Bhojnalaya,Bellingham,"Cafe, Bakery, Italian",87,0.0 +8917,Shri Balaji Shudh Vaishno Dhaba,Lewisburg,"Tea, Cafe",59,0.0 +8918,Southern Santushti Cafe,Cleveland,"Seafood, Pizza, BBQ, Fast Food",20,0.0 +8919,Tiffin Man House,Omaha,"Tea, Pizza, Italian, Bakery, Seafood",68,0.0 +8920,WOW Zaika,Adak Island,"Tea, Cafe, Mexican, Fast Food",26,0.0 +8921,Grand Eatery,Newburgh,"Tea, Desserts, Fast Food",56,2.4 +8922,Nathu's Sweets,Moline,"Desserts, Tea, Pizza, Italian, Fast Food, Chinese",40,2.4 +8923,Subway,Chicago,"Pizza, Indian, Desserts, Seafood",10,2.4 +8924,Chick Chicken Barbeque,Key West,"Desserts, Pizza, Italian, BBQ, Seafood",11,2.6 +8925,Tiwari Hot Pot,Fort Smith,"Desserts, Tea, Pizza, Bakery, Mediterranean",87,2.6 +8926,Chaiwaalas,Saipan,"Desserts, Pizza, Mexican, BBQ, Fast Food",26,0.0 +8927,Delhi Mughlai Biryani,International Falls,"Mexican, BBQ, Fast Food, Cafe, Mediterranean",14,0.0 +8928,Dumpty's,Brownsville,"Desserts, Tea, French, Mexican, Cafe",24,0.0 +8929,Food Passengers,Roswell,"Indian, Desserts, Fast Food",87,0.0 +8930,Hungry Buddies,Grand Forks,"Tea, Seafood, Fast Food",65,0.0 +8931,Maa Durga Food Corner,Mason City,"Tea, Mexican, Fast Food",76,0.0 +8932,Subhoj,Rock Springs,"Bakery, BBQ, Desserts, Seafood",36,0.0 +8933,The Square Meal,Kodiak,"Pizza, Desserts",12,0.0 +8934,Twenty Four Seven,Harrisburg,"Fast Food, Bakery, Pizza, Seafood",36,0.0 +8935,Yeoh,Durango,"Tea, Mexican, BBQ",11,0.0 +8936,South King Restaurant,San Luis Obispo,"Cafe, Bakery, Desserts",79,2.8 +8937,Twomato Foods,Belleville,"Desserts, Tea, Italian, Fast Food, Mediterranean, Seafood",50,3.2 +8938,Lazeez Foods,Rock Springs,"Bakery, Desserts",56,0.0 +8939,Spicy Punjabi Tadka,Fort Dodge,"French, Bakery, Cafe, Fast Food",74,0.0 +8940,SPL Foods Plaza,Minot,"Tea, Bakery, Pizza, American",35,0.0 +8941,Super Cake Shop,Lansing,"Desserts, Tea, Pizza, Mexican, Fast Food, Mediterranean",100,0.0 +8942,Bats On Delivery,Boston,"Cafe, Indian, BBQ, Seafood",95,2.7 +8943,Legacy of Awadh,Dillingham,"Tea, Cafe, BBQ, Mediterranean",91,3.3 +8944,Sweetcake.in,Provo,"Cafe, Chinese, Seafood, Italian",100,0.0 +8945,Hurry Curry,Jackson,"Tea, Pizza, Indian",48,3.1 +8946,Thaaliwaalaa.com,La Crosse,"Tea, Pizza, Mexican, BBQ, American",46,2.9 +8947, Let's Burrrp,Aguadilla,"Fast Food, Desserts, Italian",18,0.0 +8948,Annapurna Caterings,Grand Rapids,"Cafe, Pizza, Bakery, Seafood",31,0.0 +8949,Beyond Food,Fayetteville,"Desserts, BBQ, Fast Food, Mediterranean, Seafood",26,0.0 +8950,Brown Town,Tampa,"Tea, Bakery, Pizza, Italian",23,0.0 +8951,Royal Spice,Kansas City,"Tea, Cafe, Pizza",22,0.0 +8952,Bikaner's,Grand Rapids,"Desserts, Pizza, BBQ",53,2.9 +8953,Chilli Zone,Long Beach,"Tea, Fast Food",67,3.4 +8954,Cold Rock Cafe,Fort Wayne,"Pizza, Mexican, Bakery, Fast Food, American",83,3.3 +8955,Cup and Cones,Gunnison,"Tea, Bakery, BBQ, Seafood",51,3.1 +8956,Desi Spice,Detroit,"Tea, Pizza, American, Desserts",16,3.0 +8957,Food Destination,El Paso,"Chinese, American, Cafe, Fast Food",50,3.0 +8958,Gangaur Sweets,Little Rock,"French, Cafe, Desserts, Fast Food",69,2.7 +8959,Handi,Lubbock,"Desserts, Tea, Pizza, French, Cafe",10,2.9 +8960,Hungry Inn,Manhattan,"Tea, BBQ, Fast Food, American, Mediterranean, Seafood",77,3.0 +8961,Keventers,Harlingen,"Tea, Bakery, BBQ, Chinese, Mediterranean",37,2.9 +8962,La-Cuisine,Ontario,"Cafe, Desserts, Seafood",100,2.9 +8963,Melting Flavours,Fort Wayne,"Bakery, Desserts",86,3.4 +8964,Mighty Mughlai,Portland,"Tea, Pizza, Mexican, Cafe, Mediterranean, Seafood",12,3.2 +8965,Mithaas,Panama City,"Desserts, Tea, French, Bakery, Fast Food",68,2.9 +8966,Mood 4 Food,Tucson,"Pizza, Bakery, Desserts, Fast Food",20,3.1 +8967,Northern Bytes,Yuma,"Tea, Pizza, French, Cafe, Indian, Seafood",85,3.1 +8968,Shahenshah,Omaha,"Desserts, Pizza, French, Fast Food, Cafe",45,3.0 +8969,Sugar Daddy Bakers,Amarillo,"Tea, Cafe, Mexican, Desserts",14,2.7 +8970,Swag Sadda Desi,Brainerd,"Tea, Pizza, French, Bakery, BBQ",15,3.1 +8971,The Chinese Hut,Aguadilla,"Tea, Chinese, Bakery",69,2.9 +8972,Wild Chef House,Concord,"Bakery, Pizza, American, Italian",37,3.1 +8973,Grub Patio,International Falls,"Mexican, Bakery, Desserts",70,3.7 +8974,The Grill @ 76,Dallas,"BBQ, Fast Food",51,3.5 +8975,Zooby's Kitchen,Boise,"Bakery, BBQ",44,3.5 +8976,4U,Wrangell,"Chinese, Bakery, Pizza, Seafood",72,0.0 +8977,Aadhya Bakery & Foods,Sault Ste. Marie,"Cafe, Pizza, Bakery, Chinese, American",31,0.0 +8978,Bake Walkers,Ogden,"Pizza, Italian, BBQ, Fast Food, Indian, Seafood",93,0.0 +8979,Bean Machine & Co.,Victoria,"Pizza, BBQ, Italian",63,0.0 +8980,Big B Pastry Shop,Grand Junction,"Tea, French, Fast Food, Cafe, Seafood",48,0.0 +8981,Breadman Cake Shop,Lexington,"Tea, Cafe, Fast Food",96,0.0 +8982,Breaky2Dinner,Montgomery,"Tea, Chinese, Desserts, Seafood",44,0.0 +8983,Brijwasi Sweets,Portland,"Cafe, Bakery, Seafood, Fast Food",17,0.0 +8984,Cafe Hot Pot,Adak Island,"Tea, Bakery",57,0.0 +8985,Chef's Curry,Asheville,"Desserts, Tea, Italian, Fast Food, Cafe",56,0.0 +8986,Dilli Bakery,Kona,"Pizza, Bakery, BBQ, Mediterranean, Seafood",41,0.0 +8987,Domino's Pizza,Laramie,"Pizza, Italian, BBQ, Fast Food, Cafe",11,0.0 +8988,Dove And Mouse,Austin,"Pizza, French, BBQ, Cafe, Seafood",19,0.0 +8989,Food Cabana,Del Rio,"Mexican, Pizza, Fast Food",87,0.0 +8990,Frozen Grillz,Huntsville,"Cafe, Fast Food, Chinese, American, Seafood",100,0.0 +8991,Ganesh Chinese Food Corner,Kodiak,"French, Bakery, Seafood, Italian",78,0.0 +8992,Green Chick Chop,Beaumont,"Tea, Cafe, Seafood",71,0.0 +8993,Handi Mitran Di,Punta Gorda,"Tea, Mediterranean, Desserts, Fast Food",35,0.0 +8994,Hunger Tales,Albuquerque,"Bakery, Indian, Mediterranean, Desserts",99,0.0 +8995,Hydrabad Biryani Express,Sun Valley,"Tea, Pizza, Indian, Desserts",45,0.0 +8996,Ice Stone Cafe,Raleigh,"Tea, Cafe, Seafood",79,0.0 +8997,Kake Da Dhaba,Oakland,"Tea, Pizza, Mexican, Indian, Seafood",16,0.0 +8998,Lucknow Wale Kwality Kabab,Amarillo,"Tea, Chinese, Pizza, American",20,0.0 +8999,Mairu's,Fresno,"Chinese, Mexican, BBQ, Desserts",73,0.0 +9000,Meatwale.com,Dubuque,"Tea, Pizza, Italian, Fast Food, Mediterranean",53,0.0 +9001,Mr. Biryani Walia,Shreveport,"Tea, Mexican, Pizza, Italian",47,0.0 +9002,N E Great Foods,Austin,"Chinese, Seafood, Desserts, Fast Food",25,0.0 +9003,New Punjabi Tadka,Laramie,"Chinese, Pizza, Bakery, Cafe",70,0.0 +9004,Royal King,Bloomington,"Bakery, Seafood",75,0.0 +9005,The Dhaba,Lewiston,"Desserts, Tea, Indian, BBQ, American, Seafood",57,0.0 +9006,Tikka Express meets Chennai Express,Rochester,"Bakery, American, Fast Food",52,0.0 +9007,Vyanjan,Roanoke,"Tea, Pizza, Mexican, American, Seafood",100,0.0 +9008,Yolkers,Bishop,"Chinese, Pizza, Seafood",26,0.0 +9009,Zaika Kathi Rolls,Lewiston,"Desserts, Tea, Pizza, American, Seafood",45,0.0 +9010,Zaika of Dilli 6,Stockton,"Desserts, Pizza, Fast Food, Indian, Seafood",70,0.0 +9011,Bikaner's,Hancock,"Tea, Cafe, Bakery, Fast Food",11,2.4 +9012,Chawla's 2,Lansing,"Cafe, Pizza, Bakery, Chinese, Seafood",78,2.1 +9013,Ginnis Oven,Moab,"Pizza, Bakery, Fast Food, Cafe, American",87,3.2 +9014,Cream Bell,Idaho Falls,"Cafe, Bakery, Italian",77,0.0 +9015,Whomely,Chicago,"Desserts, Tea, Fast Food, Chinese, Mediterranean, Seafood",28,3.2 +9016,Breaktym,Denver,"Tea, Mexican, Pizza",59,3.2 +9017,Chinese Chilli Seasonal,Minot,"Fast Food, Chinese, Bakery, Seafood",23,2.9 +9018,Gopala,State College,"Tea, Mexican, Bakery",32,3.4 +9019,Hungry's Hut,Escanaba,"Chinese, Pizza, Cafe, Desserts",82,3.1 +9020,Kebabplus,Minot,"Tea, Chinese, BBQ",84,3.1 +9021,Oh Buoy - Flying Fox,Lake Charles,"Tea, Mexican, BBQ, Fast Food, Mediterranean, Seafood",71,3.0 +9022,Punjabi Pakwaan,Hyannis,"Tea, Cafe, Mexican",32,3.1 +9023,The Dessert Table Company,Paducah,"Desserts, Tea, Cafe, Chinese, American",45,3.1 +9024,The Roll Van,Lewisburg,"Cafe, Seafood",35,3.0 +9025,Kitchen Mantra,Akron,"Desserts, Seafood",15,3.6 +9026,Wabi Sabi,Victoria,"Tea, Pizza, Indian",64,3.6 +9027,Baskin Robbins,Beaumont,"BBQ, Cafe, Bakery, Desserts",82,0.0 +9028,Choicest Cakes,Sarasota,"Pizza, Italian, BBQ, Chinese, Seafood",34,0.0 +9029,Midnight Foodies,Jackson,"Seafood, Mexican, Bakery, Fast Food",61,0.0 +9030,Om Sweets Caterers & Bakery,Tallahassee,"Chinese, Pizza, Bakery, Cafe",13,0.0 +9031,Spicy Affair,Reno,"Tea, Seafood, Fast Food, Italian",50,0.0 +9032,The Bakery Mart,Bemidji,"Desserts, Tea, Pizza, Mexican, Fast Food",81,0.0 +9033,Southern Flavours,Akron,"Desserts, Tea, Pizza, American, Seafood",48,2.4 +9034,Cakebak,Redding,"Cafe, Pizza, Bakery, BBQ, Chinese, American",89,3.1 +9035,Fire n Ice,Appleton,"Mexican, BBQ, Fast Food",22,0.0 +9036,Adarsh Kulfi,Reno,"Tea, Cafe, Mediterranean",21,3.0 +9037,Andaaz E Paranthas,Fayetteville,"Tea, Cafe, Pizza, Seafood",18,3.2 +9038,Hot Fries,Lexington,"Desserts, Tea, French, BBQ, Cafe",100,3.0 +9039,Pizza Hut,Mission,"Tea, French, BBQ, Mediterranean",21,3.4 +9040,Rasoi E Punjab,Scottsbluff,"Pizza, Bakery, BBQ, Fast Food, American",85,2.6 +9041,Subway,Sioux City,"Tea, Cafe, BBQ, Fast Food",24,3.4 +9042,Haldiram's,Roswell,"BBQ, Mexican, Pizza, Desserts",93,3.6 +9043,Legends Barbeques,Charlotte,"Desserts, Tea, Mexican, Cafe, Seafood",88,3.9 +9044,6 Packs Momos,Bloomington,"French, BBQ, Desserts, Seafood",37,0.0 +9045,Balti,Fairbanks,"Cafe, American, BBQ, Fast Food",16,0.0 +9046,Baskin Robbins,Newark,"Italian, Bakery, BBQ, Fast Food, Seafood",77,0.0 +9047,KBC宊,Rhinelander,"Desserts, American, BBQ",22,0.0 +9048,Nukkad Bites,State College,"Pizza, Mexican, Bakery, Cafe, Seafood",62,0.0 +9049,Pan Asian Noodles,El Paso,"Bakery, Indian, Seafood",94,0.0 +9050,Chicane,Montgomery,"Tea, Cafe, Indian, Fast Food",57,2.2 +9051,US Pizza,Buffalo,"Chinese, Pizza, Bakery, Seafood",100,2.2 +9052,Angeethi Se,Everett,"Tea, French, BBQ",92,3.2 +9053,Barista,Kahului,"Cafe, Bakery, Fast Food, Chinese, Seafood",15,2.5 +9054,BK's The Juice Bar,Albany,"French, Pizza, Seafood, Italian",91,3.0 +9055,Eden Kitchen & Bar,Panama City,"Desserts, Seafood",44,3.1 +9056,Moti Mahal Delux Tandoori Trail,Paducah,"Cafe, Chinese, Mediterranean, Seafood",75,2.5 +9057,New Woks,Dillingham,"Tea, Mexican, Indian, Desserts",86,2.5 +9058,Otik Hotshop,Abilene,"Desserts, Tea, BBQ, Fast Food, Indian",82,3.1 +9059,Pizza Hut,Toledo,"Cafe, Bakery, Indian, Pizza",80,3.3 +9060,Punjabi Dhaba 61,Sitka,"American, BBQ, Seafood",41,2.6 +9061,Punjabi Pakwaan,San Angelo,"Cafe, Bakery, BBQ, Fast Food",23,3.0 +9062,Spice of India,Montgomery,"Tea, Chinese, Seafood, Italian",20,2.6 +9063,Swaad,South Bend,"Tea, American, Seafood",10,2.7 +9064,Yumm Biryani,Ogdensburg,"Tea, Mexican, BBQ, American, Seafood",85,3.2 +9065,Otik Cake Shop,Montgomery,"Cafe, BBQ, Fast Food",33,3.5 +9066,Adarsh Kulfi,Concord,"Seafood, BBQ, Desserts, Italian",97,0.0 +9067,Pizza Junction,Key West,"Tea, French, BBQ, Cafe, Indian",18,0.0 +9068,Domino's Pizza,Louisville,"Desserts, Tea, Bakery, Mediterranean, Seafood",100,2.4 +9069,Sagar Ratna,Greer,"Tea, Cafe",48,2.3 +9070,Subway,Houston,"Tea, Bakery, Desserts, Seafood",51,2.3 +9071,Barista,Kona,"French, Cafe, Desserts, Fast Food",86,3.3 +9072,Bikano Chat Cafe,Providence,"Desserts, Mexican, BBQ, Cafe, American, Seafood",43,3.0 +9073,Cafe Coffee Day,Burbank,"Tea, Pizza, BBQ, Italian",34,2.7 +9074,Cafe Coffee Day,Bishop,"Pizza, Bakery, BBQ, Fast Food, Indian",57,2.7 +9075,Chaayos,Vernal,"Tea, Bakery, Mediterranean, Desserts",46,3.4 +9076,Chopaal Marwari,Jamestown,"Tea, Mexican, Bakery, Cafe, American",69,2.8 +9077,Dolce Gelato,Johnstown,"Bakery, Pizza, Indian, Seafood",65,3.0 +9078,Domino's Pizza,Lubbock,"Mexican, Bakery, BBQ, Fast Food",33,3.2 +9079,Gelato Vinto,Abilene,"Seafood, Mexican, Indian, Fast Food",12,3.1 +9080,Kebab Xpress,Atlantic City,"Desserts, Tea, Pizza, Bakery, American, Mediterranean",92,3.2 +9081,McDonald's,Sarasota,"Bakery, Pizza, BBQ",97,3.4 +9082,Pind Balluchi,Honolulu,"Cafe, Pizza, BBQ",92,3.3 +9083,Ristorante Prego,Newport News,"Pizza, Italian, Cafe, Indian, Seafood",72,3.1 +9084,The Coffee Bean & Tea Leaf,Billings,"Mexican, BBQ, Mediterranean, Fast Food",34,2.6 +9085,Turquoise Turkish Ice-cream,Detroit,"Fast Food, Tea, Desserts, Italian",79,3.4 +9086,Yo! China,Wenatchee,"Pizza, Mediterranean, Fast Food",77,2.6 +9087,Baskin Robbins,Adak Island,"Cafe, BBQ, Seafood",87,3.5 +9088,Burger King,Charlotte,"Cafe, Pizza, Indian, Desserts",15,3.5 +9089,Costa Coffee,White Plains,"Cafe, Pizza, American, Italian",43,3.5 +9090,Crazy Noodles,North Platte,"Tea, Pizza, French, Indian, Seafood",57,3.6 +9091,Jack Po!tato's,Binghamton,"Desserts, Pizza, French, Bakery, Seafood",31,3.5 +9092,Mandarin Trail,St. Louis,"Cafe, Pizza, BBQ",43,3.7 +9093,Nazeer Foods,Boise,"Tea, BBQ, Mediterranean",53,3.6 +9094,Pizza Hut,Albany,"Desserts, Tea, Mexican, BBQ, Seafood",97,3.7 +9095,Shree Rathnam,Newport News,"Tea, Bakery, BBQ, American, Seafood",12,3.5 +9096,TGI Friday's,Texarkana,"Tea, Bakery, Pizza, Desserts",27,3.5 +9097,Thaal Vaadi,Decatur,"Pizza, Bakery, Desserts",48,3.5 +9098,Cafe' Wow,West Palm Beach,"Chinese, BBQ, Desserts",24,0.0 +9099,Chef's Basket Pop Up Caf愆,New Orleans,"French, Bakery, Cafe, Fast Food",37,0.0 +9100,Chocolate Fountain,Akron,"Tea, Bakery, Pizza",36,0.0 +9101,McDonald's,Brunswick,"Tea, Cafe",20,0.0 +9102,Tea Trails,San Juan,"Fast Food, Cafe, Desserts, Italian",29,0.0 +9103,The Hangout-Deli,Ponce,"Chinese, BBQ, Mediterranean, Seafood",76,0.0 +9104,Chopaal,Atlantic City,"Fast Food, Chinese, BBQ, Italian",12,2.0 +9105,Club Ice Cube,Bishop,"Tea, American, BBQ",75,2.0 +9106,Moti Mahal Delux Tandoori Trail,Grand Island,"Pizza, Bakery, Fast Food, Chinese, Seafood",69,2.0 +9107,The Punjabiis Restro Bar,Baltimore,"French, Bakery, BBQ, Fast Food",85,4.0 +9108,Sky Grill,Bloomington,"Pizza, Seafood",39,2.6 +9109,Bread & Pasta,Myrtle Beach,"Tea, Desserts, Fast Food",37,0.0 +9110,Chillies Cafe,Walla Walla,"French, Bakery, Indian, BBQ",11,0.0 +9111,Platters,Rhinelander,"Pizza, Bakery, BBQ, Seafood",25,0.0 +9112,The Grand,St. Petersburg,"Cafe, American, Seafood, Fast Food",70,0.0 +9113,Hops n Grains,Memphis,"Cafe, Bakery, American, Seafood",95,4.2 +9114,Genuine Broaster Chicken,Charleston,"Chinese, Desserts, Tea, French, Cafe",18,3.5 +9115,Bansi Vihar,Charlotte,"Cafe, Pizza, Bakery, Desserts",45,3.4 +9116,Mainland China,Buffalo,"Tea, BBQ, Fast Food, Chinese, Seafood",60,3.5 +9117,Pukhtaan-The Royal Taste of India,Hancock,"Mexican, BBQ, Bakery, Fast Food, Seafood",66,3.5 +9118,The Yellow Chilli,Salt Lake City,"French, Bakery, Fast Food",51,3.5 +9119,Indian Summer Cafe,Eau Claire,"Tea, Bakery, Fast Food, American, Seafood",39,3.4 +9120,KFC,Oklahoma City,"Mexican, BBQ, Desserts",16,3.3 +9121,McDonald's,Portsmouth,"Tea, BBQ",65,3.4 +9122,Biryani Mahal,Miami,"Tea, Mediterranean, Seafood",71,3.6 +9123,Spice Court - Hotel Maurya,Marquette,"Desserts, Pizza, Italian, Indian, Seafood",52,3.7 +9124,Angeethi,Salt Lake City,"Cafe, Pizza, Desserts",29,3.4 +9125,Red Chilli,Williston,"Cafe, Pizza, Mexican, BBQ, Bakery, Chinese",75,3.6 +9126,Pind Balluchi,Tampa,"Tea, Pizza",13,3.3 +9127,Raj Rasoi,Gunnison,"Pizza, American, BBQ",41,3.3 +9128,Kapil Dev's Eleven,Evansville,"Desserts, Tea, Italian, Fast Food, Seafood",63,3.6 +9129,Sri Basant Vihar,Raleigh,"Fast Food, Chinese, Pizza, Seafood",69,3.6 +9130,17 Degrees,Plattsburgh,"Pizza, French, BBQ, Fast Food, Indian",13,3.5 +9131,Nirvana,Providence,"Tea, Italian, BBQ, Cafe, Mediterranean",21,3.4 +9132,Roti Restaurant,Grand Forks,"Tea, Pizza, BBQ, Cafe, Indian",86,3.1 +9133,Swaaddesh,Duluth,"Chinese, Seafood, Fast Food",58,3.5 +9134,Auroville Bakery,Decatur,"Tea, Cafe, Desserts, Fast Food",89,3.8 +9135,Tanto Pizzeria,Champaign,"Tea, Indian, Seafood",31,3.8 +9136,The Smoothie Bar,Wichita Falls,"Tea, Chinese, American, Fast Food",38,3.7 +9137,Le Club,Charlotte,"Tea, Bakery",64,3.5 +9138,Cafe Ole,Vernal,"Bakery, American, Desserts",35,3.8 +9139,Italize,Bozeman,"Italian, French, Bakery, BBQ, Fast Food, Seafood",24,3.6 +9140,The Pasta Bar Veneto,Champaign,"Mexican, Bakery, BBQ",10,3.6 +9141,Baker Street,Helena,"Bakery, BBQ, Fast Food, Cafe, Mediterranean",75,4.1 +9142,Zuka Choco-la,Alexandria,"Tea, BBQ, Desserts",42,4.2 +9143,Bay of Buddha - The Promenade,Hancock,"Desserts, Pizza, Mexican, BBQ, Seafood",71,3.8 +9144,Blueline - The Promenade,Yuma,"Bakery, Indian, BBQ",44,3.8 +9145,Villa Shanti,Lawton,"Pizza, American, Desserts",39,3.9 +9146,Le Cafe,Muskegon,"Tea, Mexican, Bakery, BBQ, Mediterranean",59,3.1 +9147,Spice Route,Manchester,"Pizza, Bakery, BBQ, American, Seafood",16,3.4 +9148,#Dilliwaala6,Colorado Springs,"Tea, Chinese, Bakery, Italian",26,3.7 +9149,Cafe des Arts,Greenville,"Seafood, BBQ, Desserts, Fast Food",46,3.5 +9150,Le Dupleix,Ontario,"Fast Food, Chinese, Seafood",80,3.8 +9151,Rendezvous Cafe Restaurant,Greenville,"Cafe, Mexican, Bakery",12,3.5 +9152,The Indian Kaffe Express,Knoxville,"Tea, Desserts",71,3.8 +9153,Gelateria Montecatini Terme,Corpus Christi,"Pizza, BBQ, Seafood",21,4.2 +9154,The Urban Foundry,Pittsburgh,"Desserts, Tea, Pizza, Italian, Bakery, Indian",91,4.5 +9155,Teddy Boy,St. Louis,"Cafe, Pizza, Bakery, Fast Food, Chinese, Indian",56,3.6 +9156,Effingut Brewerkz,San Juan,"Cafe, Pizza, BBQ, Seafood",56,4.3 +9157,Le Plaisir,Pellston,"BBQ, Bakery, American, Desserts",69,4.8 +9158,Farzi Cafe,Florence,"Desserts, Italian, Bakery, BBQ, Fast Food",22,4.3 +9159,Mineority By Saby,New Orleans,"Seafood, Pizza, BBQ, Fast Food",62,4.2 +9160,The Little Next Door,Boise,"Tea, Bakery, Desserts, Seafood",68,4.1 +9161,Effingut Brewerkz,Bristol,"Tea, BBQ",44,4.3 +9162,Kargo,Nashville,"Tea, Pizza, Desserts",84,4.4 +9163,Saut愆ed Stories,Atlanta,"Desserts, Tea, Fast Food, Chinese, Seafood",36,4.2 +9164,The Sassy Spoon,Seattle,"Bakery, Mediterranean, Desserts",29,4.1 +9165,German Bakery Wunderbar,Omaha,"Bakery, Pizza",10,4.0 +9166,Chili's,Devils Lake,"Bakery, BBQ, Fast Food, Cafe, Indian, Mediterranean",89,4.5 +9167,Barbeque Nation,Champaign,"BBQ, Indian, Desserts, Seafood",36,4.5 +9168,Blue Water,Provo,"Tea, Cafe, Bakery, Chinese, Seafood",78,4.2 +9169,Agent Jack's Bar,Minneapolis,"Desserts, Tea, Bakery, Chinese, Seafood",93,4.2 +9170,Tales & Spirits,Charlottesville,"Tea, Mexican, BBQ, Desserts",91,4.1 +9171,18 Degrees Resto Lounge,Ithaca,"Tea, Fast Food",48,3.6 +9172,Apache,Killeen,"Tea, French, Fast Food, Italian",44,4.1 +9173,Barbeque Ville,Marquette,"Tea, Pizza, French, Mexican, Bakery, Seafood",55,4.4 +9174,Hot Lips,Des Moines,"Pizza, Fast Food, Cafe, Indian, Seafood",61,3.3 +9175,The Kav's,Wichita Falls,"Cafe, Seafood",98,3.2 +9176,Prana,Green Bay,"Tea, Italian, BBQ, Fast Food, Cafe, Mediterranean",83,3.7 +9177,Kathi Kabab,Hilo,"Desserts, Pizza, Bakery, Fast Food, Chinese",64,3.3 +9178,Yo China Restaurant,Binghamton,"Tea, Mexican, BBQ, Bakery, Indian, Seafood",22,3.4 +9179,Kaveri Restaurant And Caterers,Great Falls,"Desserts, Bakery, BBQ, Fast Food, Chinese",41,4.0 +9180,Yellow Sapphire,Duluth,"Pizza, Bakery, Fast Food, American, Seafood",83,3.7 +9181,Moti Mahal Delux Tandoori Trail,Grand Junction,"Mexican, Pizza, Fast Food",85,3.6 +9182,Jungli Moon Dance Restaurant,Santa Maria,"Cafe, Bakery, Seafood",70,3.1 +9183,KFC,Fort Leonard Wood,"Tea, Pizza, BBQ, Italian",66,3.2 +9184,Punjab Sweet House,Lexington,"Mexican, Indian, Desserts, Seafood",33,3.5 +9185,Food Belle,Concord,"Tea, Bakery, Desserts, Fast Food",39,3.3 +9186,Kaveri Restaurant And Caterers,Key West,"Bakery, Pizza, Fast Food",28,3.4 +9187,OMG Cafe,Lewisburg,"Tea, Mexican, BBQ, Cafe, Seafood",26,3.3 +9188,The Best,New York,"Tea, Chinese, Cafe",79,3.4 +9189,7th Heaven,Brainerd,"Bakery, BBQ, Desserts, Seafood",94,3.7 +9190,The Urban Brava,Dubuque,"Cafe, Bakery, Desserts, Fast Food",10,3.6 +9191,Waterfront - Radisson Blu,Twin Falls,"Cafe, Pizza",72,3.4 +9192,Pizza Hut,Iron Mountain,"Seafood, Pizza, Indian, Italian",44,3.5 +9193,Aroma - The Royal Retreat,Duluth,"Desserts, Tea, BBQ, Fast Food, American",87,3.5 +9194,Saffron Mantra,White Plains,"Bakery, BBQ, Cafe, Mediterranean, Seafood",43,4.4 +9195,Coffee Cup,Provo,"Desserts, Bakery, Fast Food, Cafe, Indian",21,4.6 +9196,Level 5 - Terrace Restro & Cafe,Roanoke,"Pizza, French, Mexican, Bakery, Fast Food, Seafood",39,3.8 +9197,Wok On Fire,Pellston,"Bakery, BBQ, Fast Food",19,3.9 +9198,Thalaivaa,Plattsburgh,"Chinese, Pizza, Cafe, Seafood",19,4.1 +9199,World Platter,Wrangell,"Pizza, American, Indian, Desserts",26,3.9 +9200,Golden Dragon,Indianapolis,"Bakery, BBQ",84,4.2 +9201,Mysore Cafe,Shreveport,"Desserts, Tea, BBQ, Indian, Seafood",90,4.0 +9202,Coffee Culture - The Ristorante Lounge,Pasco,"Tea, BBQ, Fast Food, Mediterranean, Seafood",23,4.0 +9203,Falafel Lovers,Redding,"Desserts, Cafe, BBQ, Chinese, American, Seafood",98,4.3 +9204,The Centre Court,Yakima,"Bakery, Pizza, Desserts, Fast Food",85,4.1 +9205,Wok On Fire,Stockton,"Desserts, Tea, Italian, BBQ, Fast Food, Chinese",26,3.7 +9206,Leonardo Italian Mediterranean Dining,Everett,"Cafe, BBQ, Desserts",94,4.2 +9207,Kansar Gujarati Thali,Durango,"Pizza, American, Seafood",96,3.9 +9208,The Haus,Grand Rapids,"Tea, Cafe, Mediterranean, Desserts",40,3.9 +9209,Black Pepper,Pittsburgh,"Tea, Chinese, Bakery, BBQ",52,4.1 +9210,Pizza Hut,Melbourne,"Cafe, Mediterranean, Desserts",68,4.1 +9211,The Sizzling Salsa,Brunswick,"Tea, BBQ, American, Desserts",35,4.1 +9212,Global Local,Lawton,"Chinese, American, BBQ, Fast Food",41,3.4 +9213,The Creamery,St. Cloud,"Cafe, Desserts, Seafood",70,3.6 +9214,The Food Lab,Sioux Falls,"Cafe, Pizza, Indian, BBQ",69,3.6 +9215,The Hog Spot,Peoria,"Desserts, Tea, Italian, BBQ, Fast Food, American",42,3.8 +9216,22nd Parallel,Dayton,"Tea, Bakery, BBQ",48,4.5 +9217,Kabir Kitchen,Amarillo,"Fast Food, Pizza, Bakery, Seafood",54,3.8 +9218,Kaphi Pibama,Ogdensburg,"Pizza, Desserts",83,3.8 +9219,VarieTea,Midland,"Fast Food, Bakery, Italian",93,3.9 +9220,Barbeque Nation,San Jose,"Desserts, French, Bakery, BBQ, Fast Food",79,4.3 +9221,Little Italy,Lawton,"Indian, Desserts, Fast Food",54,4.1 +9222,Meraki,San Diego,"Tea, Seafood",51,4.0 +9223,That Place,Branson,"Italian, Bakery, BBQ, Fast Food, Seafood",42,4.4 +9224,Wok On Fire,Rochester,"Pizza, Bakery, BBQ, Fast Food, Mediterranean",27,3.8 +9225,Mandap - Hotel Express Towers,Detroit,"Pizza, Fast Food",37,4.0 +9226,Offside Lounge,Victoria,"American, Desserts, Seafood",79,3.8 +9227,Gazebo Garden Restaurant,Binghamton,"Fast Food, BBQ, Desserts, Seafood",39,3.5 +9228,La Quello - Mediterranean Kitchen,Fort Wayne,"Tea, Chinese, Desserts",78,4.6 +9229,El Amigos Kitchen,State College,"Bakery, Pizza, American, Desserts",45,3.5 +9230,Mr Toasties,Atlantic City,"Pizza, French, BBQ, Fast Food, Cafe, Indian",87,3.9 +9231,The Yellow Chilli,Missoula,"French, Pizza, Mediterranean, BBQ",77,3.9 +9232,Coffee Culture,Grand Junction,"French, Cafe, Desserts, Seafood",87,4.3 +9233,Freshco - The Health Caf愆,Boston,"Tea, Cafe, American",93,4.2 +9234,Pizza Hut,Cedar City,"Tea, Cafe, Fast Food, Chinese, American",51,4.1 +9235,Tomato's,Abilene,"Tea, Cafe, Bakery, BBQ",21,4.1 +9236,Open Hand Shop & Cafe,Lewisburg,"Cafe, BBQ, Mediterranean",36,3.4 +9237,Pizzeria Vaatika Cafe,Pocatello,"BBQ, Desserts",12,3.7 +9238,Aman Restaurant,Staunton,"Cafe, Mexican, Pizza, Seafood",17,3.2 +9239,Blue Lassi,Saginaw,"Italian, French, Bakery, BBQ, Seafood",66,3.7 +9240,Kerala Cafe,New Bern,"Cafe, Mexican, American, BBQ",98,3.6 +9241,Baati Chokha,Salina,"Tea, Cafe, BBQ, Fast Food",33,3.7 +9242,Deena Chat Bhandar,Missoula,"Cafe, Pizza, BBQ, Seafood",49,3.8 +9243,Dosa Cafe,Latrobe,"Desserts, Pizza, American, Indian, Seafood",93,3.5 +9244,Kashi Chat Bhandar,Boise,"BBQ, Bakery, American, Desserts",34,4.1 +9245,Chrystal Bowl Restaurant,Del Rio,"Desserts, Tea, Pizza, Mexican, Bakery, Indian",65,3.3 +9246,Flavours Cafe,Kalispell,"Tea, French, Desserts",44,3.4 +9247,Ming Garden,Sun Valley,"Seafood, Pizza, BBQ, Fast Food",66,3.5 +9248,Burger King,Fort Smith,"Desserts, Cafe, BBQ, Chinese, Seafood",24,3.4 +9249,Tandoor Villa,Wrangell,"Tea, Bakery, BBQ, Desserts",84,3.6 +9250,eastWEST - Radisson Hotel,Buffalo,"French, Pizza, Seafood",100,3.3 +9251,The Great Kabab Factory - Radisson Hotel,Pellston,"Bakery, BBQ, Fast Food",85,3.3 +9252,I:ba Cafe & Restaurant,Wichita,"Cafe, BBQ, Mediterranean, Desserts",26,3.5 +9253,3Cherryz Sky Lounge & Cafe,Wichita Falls,"Chinese, Bakery, Pizza, Italian",93,3.2 +9254,VNS Live Studio,Fort Smith,"Tea, Cafe, BBQ, Desserts",48,3.5 +9255,Singh's Delight Restaurant,Gulfport,"Tea, Cafe, Seafood, Fast Food",25,3.5 +9256,Pizza Hut,Philadelphia,"Tea, Cafe, Bakery, Seafood",61,4.6 +9257,Pizza Hut,Asheville,"Pizza, French, BBQ, Fast Food, Chinese",11,4.3 +9258,Sri Sairam Parlour,Shreveport,"Cafe, American, Desserts, Fast Food",98,4.2 +9259,Mekong - Hotel GreenPark,Cape Girardeau,"Seafood, Fast Food",88,4.4 +9260,The Square - Hotel Novotel,Wenatchee,"Tea, Cafe, Bakery",41,4.1 +9261,Alpha Hotel,Scottsbluff,"Cafe, Seafood",96,3.7 +9262,Barbeque Nation,Killeen,"Tea, Indian, BBQ, Fast Food",95,4.9 +9263,Double Roti,Boston,"Desserts, Tea, French, Bakery, Mediterranean, Seafood",78,3.8 +9264,Bake My Wish,Peoria,"BBQ, Desserts",24,3.8 +9265,Kamat Restaurant,Saipan,"Tea, French, BBQ, Desserts",18,3.6 +9266,My Restaurant,Alpena,"Tea, Pizza, American, BBQ",63,3.5 +9267,Percolator Coffee House,Toledo,"Seafood, Fast Food",97,3.6 +9268,Tea Trails,Devils Lake,"Desserts, Pizza, BBQ, Cafe, Mediterranean",65,3.7 +9269,Six Degrees,Kalamazoo,"Cafe, Italian, Bakery, Fast Food, Chinese",20,4.1 +9270,Sea Inn - Raju Gaari Dhaba,Bemidji,"Pizza, BBQ, Italian",83,4.0 +9271,D Cabana,Sarasota,"Cafe, BBQ, Fast Food",23,3.6 +9272,Kaloreez,Corpus Christi,"Chinese, Bakery, BBQ, Fast Food",67,3.7 +9273,Plot 17,Akron,"Tea, Desserts",70,4.3 +9274,Vista - The Park,Santa Rosa,"Bakery, Desserts, Seafood",14,3.8 +9275,Flying Spaghetti Monster,Brownsville,"Tea, Bakery",48,4.4 +9276,Noah's Barn Coffeenery,Kodiak,"Tea, Pizza, French, Mexican, Fast Food",83,4.2 +9277,Momo Milk,Honolulu,"Cafe, Chinese, BBQ, Mediterranean",57,3.7 +9278,Lemongrass,Kansas City,"Bakery, American, Mediterranean, Fast Food",72,4.0 +9279,Talaga Sampireun,Austin,"Fast Food, Cafe, Bakery, Seafood",37,4.9 +9280,Toodz House,Muskegon,"Fast Food, Indian, BBQ, Seafood",90,4.6 +9281,OJJU,Yakutat,"Desserts, Tea, French, BBQ, Fast Food",27,3.9 +9282,Union Deli,Harrisburg,"Tea, Pizza, Bakery, Cafe, Mediterranean",17,4.6 +9283,Skye,Staunton,"Tea, Cafe, BBQ, Desserts",90,4.1 +9284,Satoo - Hotel Shangri-La,Jackson,"Tea, Bakery, Pizza, BBQ",68,4.6 +9285,MONKS,Dallas,"Tea, Pizza, Cafe, Mediterranean, Seafood",24,4.2 +9286,Zenbu,Muskegon,"French, Pizza, Desserts",67,4.4 +9287,Sushi Masa,Colorado Springs,"Cafe, Pizza, Bakery, Fast Food",44,4.9 +9288,Lucky Cat Coffee & Kitchen,Sitka,"Tea, Pizza, Mexican, BBQ, Mediterranean, Seafood",70,4.3 +9289,3 Wise Monkeys,Latrobe,"Fast Food, Cafe, Bakery, Seafood",48,4.2 +9290,Flip Burger,Del Rio,"Desserts, Tea, Mexican, BBQ, Cafe",49,4.4 +9291,Talaga Sampireun,Fort Smith,"Tea, Fast Food",83,4.9 +9292,Fish Streat,Valparaiso,"Tea, Seafood, BBQ, Fast Food",15,3.4 +9293,Fish Streat,Louisville,"Chinese, Mexican, Bakery, Cafe",73,4.0 +9294,Avec Moi Restaurant and Bar,Erie,"French, Pizza, American, BBQ",14,4.3 +9295,Onokabe,Los Angeles,"Mexican, Bakery, Desserts, Fast Food",13,3.7 +9296,Talaga Sampireun,Jacksonville,"Pizza, BBQ, Fast Food, Indian, Mediterranean",19,4.9 +9297,Kiss Kiss,Bend,"Tea, Indian, BBQ, Seafood",36,4.3 +9298,Giapo,Niagara Falls,"Pizza, Seafood",37,4.7 +9299,Milse,Key West,"Desserts, Pizza, Italian, Mexican, Bakery, Seafood",53,4.9 +9300,Orleans,Little Rock,"Desserts, Pizza, Italian, BBQ, Cafe, American",74,4.1 +9301,Depot Eatery and Oyster Bar,Martha's Vineyard,"Pizza, Cafe, American, Mediterranean, Seafood",75,4.8 +9302,Federal Delicatessen,Savannah,"Tea, Pizza, BBQ, Italian",91,4.6 +9303,Miann,Akron,"Chinese, Bakery, Pizza, BBQ",45,4.9 +9304,Little Sister Cafe,Clarksburg,"French, Mexican, Pizza, Desserts",69,4.5 +9305,The Kimchi Project,Oklahoma City,"Desserts, Tea, Fast Food, American, Mediterranean, Seafood",40,4.2 +9306,De Fontein Belgian Beer Cafe,Pensacola,"American, BBQ, Fast Food",89,2.3 +9307,Chinoiserie,Brownsville,"Desserts, Tea, Pizza, Fast Food, Chinese",92,4.4 +9308,Eden Noodles Cafe 蝊_螄漘唭_唭_潰,Traverse City,"Pizza, BBQ, Fast Food, Cafe, Mediterranean",80,4.3 +9309,Frasers,Indianapolis,"French, Bakery, Cafe, Italian",36,4.0 +9310,The Garden Shed,Concord,"Desserts, Tea, Mexican, BBQ, Cafe",75,4.2 +9311,Tucks and Bao,Belleville,"Tea, Pizza, Mexican, Bakery, Chinese",94,3.5 +9312,Winona Forever,Martha's Vineyard,"Pizza, Desserts",53,4.0 +9313,Big Fish Eatery,Buffalo,"Bakery, BBQ",50,4.5 +9314,PappaRich,Santa Maria,"Tea, Pizza, Italian, French, Cafe, Seafood",26,4.0 +9315,Eight - The Langham Hotel,North Bend,"BBQ, Fast Food",83,4.7 +9316,Baduzzi,Peoria,"Desserts, Pizza, Mexican, Bakery, Mediterranean",37,4.6 +9317,Maranui Cafe,Wichita Falls,"Pizza, Mexican, BBQ, Bakery, Fast Food, Chinese",59,4.3 +9318,Five Boroughs,Cleveland,"French, Bakery, BBQ, Seafood",97,4.1 +9319,Ekim Burgers,Pensacola,"Pizza, Desserts, Fast Food",33,4.5 +9320,Ombra,Sarasota,"Cafe, BBQ, Fast Food",76,4.5 +9321,The Hangar,Washington,"Tea, Fast Food, Desserts, Seafood",74,4.6 +9322,Burger Liquor,Killeen,"Pizza, Bakery, Desserts, Seafood",57,4.1 +9323,Caffe L'affare,Aberdeen,"Tea, Bakery, Desserts",70,4.1 +9324,Dragonfly,Traverse City,"Tea, Italian, French, BBQ, Seafood",69,4.3 +9325,Enigma Cafe,Manhattan,"Tea, Pizza, Bakery, Fast Food, Mediterranean",95,4.0 +9326,Fidel's,Rochester,"Tea, Mexican, Cafe, American, Seafood",44,4.4 +9327,Fisherman's Plate,Arcata,"Tea, Pizza, Bakery, Cafe, Mediterranean",69,4.3 +9328,Floriditas,Kalispell,"Tea, Bakery, Pizza, Indian",78,4.2 +9329,Hippopotamus - Museum Hotel,Philadelphia,"French, Pizza, Seafood",61,4.4 +9330,Little Penang,Bend,"Tea, Cafe, BBQ",31,4.4 +9331,Loretta,Laredo,"Cafe, Mexican, BBQ, Seafood",55,4.2 +9332,Midnight Espresso,Palm Springs,"Bakery, Mediterranean, BBQ",35,4.3 +9333,Olive,Petersburg,"Desserts, Tea, Italian, BBQ, Bakery, Indian",85,4.2 +9334,wagamama,Seattle,"Tea, Pizza, Desserts, Seafood",21,3.7 +9335,Charley Noble Eatery & Bar,Bend,"Tea, Pizza, Bakery, Cafe, American",39,4.3 +9336,The Crab Shack,Lewiston,"Bakery, Mexican, American, Seafood",27,4.1 +9337,Pepe's Piri Piri,Aberdeen,"BBQ, Desserts, Fast Food",96,2.8 +9338,Ju Ju's Cafe,Grand Rapids,"Cafe, BBQ, Desserts",28,3.7 +9339,Bank,Sarasota,"Desserts, BBQ, Cafe, American, Mediterranean, Seafood",62,4.0 +9340,Chaophraya,Rockford,"Chinese, Pizza, Cafe, Desserts",74,3.9 +9341,Handmade Burger Co.,Salisbury,"Indian, BBQ, Seafood",22,3.7 +9342,Jamie's Italian,West Palm Beach,"Desserts, Tea, Mexican, BBQ, Fast Food, Mediterranean",56,3.9 +9343,Bodega,Key West,"BBQ, Bakery, American, Desserts",49,4.6 +9344,San Carlo,Lubbock,"Tea, Pizza, Mexican, BBQ, Cafe, Mediterranean",56,4.2 +9345,Purnell's,Pocatello,"Cafe, American, BBQ",76,4.5 +9346,The Warehouse Cafe,Sacramento,"Cafe, Seafood",37,3.8 +9347,Fiesta del Asado,Nome,"Tea, BBQ, Fast Food, Indian, Seafood",49,4.0 +9348,Istanbul Restaurant,Houston,"Tea, Indian, Seafood",19,3.6 +9349,The Plough,El Paso,"Tea, Cafe, Bakery, Seafood",100,4.2 +9350,Lasan Restaurant,Arcata,"Tea, Seafood, Fast Food",51,4.1 +9351,Damascena Coffee House,Alamosa,"Tea, Cafe, BBQ, Chinese, Seafood",23,0.0 +9352,Tipu Sultan,Bangor,"Tea, Cafe, BBQ, Italian",60,4.0 +9353,Jamjar,Marquette,"Bakery, Pizza, Seafood",83,3.1 +9354,Chennai Dosa,Jackson,"Italian, Mexican, Bakery, BBQ, Cafe",22,3.8 +9355,Mughal E Azam,Phoenix,"French, BBQ, Fast Food",75,3.7 +9356,Bar Estilo,Kahului,"BBQ, Indian, Desserts",48,4.0 +9357,Loudons Cafe & Bakery,New Bern,"Cafe, Bakery",51,3.9 +9358,La Favorita,Everett,"Tea, Mediterranean, Desserts, Seafood",19,4.5 +9359,Mimi's Bakehouse,Lihue,"French, BBQ, Mediterranean, Seafood",73,4.6 +9360,Roseleaf Bar Cafe,Corpus Christi,"Chinese, BBQ, Fast Food, Cafe, Seafood",35,4.7 +9361,The Kitchin,Ponce,"Bakery, Desserts, Fast Food",92,4.4 +9362,El Cartel,Punta Gorda,"Pizza, BBQ, Mediterranean",84,3.8 +9363,Chaophraya,San Juan,"Pizza, Desserts",66,4.3 +9364,Hard Rock Cafe,Pocatello,"Chinese, Tea, Pizza, Italian, Cafe, Seafood",99,4.0 +9365,The Boozy Cow,San Antonio,"Pizza, BBQ",73,4.0 +9366,10 To 10 In Delhi,Medford,"Tea, Pizza, French, BBQ, Cafe, American",94,3.8 +9367,Bentoya,Chattanooga,"Tea, Fast Food, Bakery, Seafood",41,3.8 +9368,Civerinos,Madison,"Chinese, Pizza, BBQ, Seafood",22,3.7 +9369,The Elephant House,Salina,"Desserts, Pizza, Bakery, Cafe, Indian, Mediterranean",26,3.9 +9370,The Hanging Bat,Richmond,"Seafood, Desserts, Italian",51,3.5 +9371,Love Crumbs,Billings,"Tea, Pizza, French, Mexican, BBQ, Fast Food",53,4.1 +9372,Mother India's Cafe,Yakutat,"Pizza, BBQ, Mediterranean, Desserts",59,4.4 +9373,The Witchery & The Secret Garden,Santa Rosa,"Chinese, Mexican, BBQ, Fast Food",64,4.1 +9374,Ting Thai Caravan,Pasco,"Fast Food, Seafood",49,4.1 +9375,Tuk Tuk Indian Street Food,Charlotte,"Chinese, Bakery, Seafood, Fast Food",29,4.0 +9376,Steak,Lake Charles,"French, Bakery, BBQ, Cafe, Indian",97,4.2 +9377,Gymkhana,Gulfport,"Desserts, Pizza, French, Bakery, Fast Food, Mediterranean",51,4.7 +9378,Bocca Di Lupo,Pocatello,"Tea, Cafe, Pizza, BBQ",92,4.5 +9379,Flat Iron,Sarasota,"Mexican, Bakery, Desserts",22,4.9 +9380,Duck & Waffle,Trenton,"Cafe, Pizza, Desserts",98,4.9 +9381,Dishoom,Honolulu,"Chinese, Bakery, Desserts",63,4.5 +9382,Yauatcha,Kalispell,"Pizza, Seafood",57,4.7 +9383,Roka,Charleston,"Desserts, Tea, Mexican, Fast Food, Cafe, Mediterranean",84,4.6 +9384,Restaurant Gordon Ramsay,North Platte,"Tea, Bakery",147,4.7 +9385,sketch Gallery,Santa Barbara,"Bakery, BBQ, Desserts, Seafood",64,4.5 +9386,Masala Zone,San Luis Obispo,"Desserts, Indian, BBQ",94,4.1 +9387,The Breakfast Club,Oklahoma City,"Tea, Indian, BBQ, Seafood",25,4.5 +9388,Bao,Santa Fe,"Mexican, Bakery, Desserts",17,4.9 +9389,Five Guys,Des Moines,"Fast Food, Pizza, Bakery, Seafood",36,3.8 +9390,Hakkasan,Aguadilla,"Bakery, BBQ, Fast Food, Cafe, Mediterranean",90,4.8 +9391,Nobu,Flagstaff,"Tea, Pizza, BBQ, Indian, Seafood",64,4.4 +9392,Roti Chai,Kahului,"Seafood, American, Fast Food",28,4.5 +9393,Shake Shack,Lewisburg,"Pizza, American, BBQ, Fast Food",19,4.1 +9394,Dishoom,Hartford,"Tea, American, Desserts, Fast Food",47,4.7 +9395,Jamie's Italian,Gustavus,"Tea, Bakery, Fast Food, Cafe, American",94,4.3 +9396,Bone Daddies,Pocatello,"Tea, Italian, Mexican, BBQ, Fast Food",41,4.6 +9397,Monolos Playhouse Restaurant,Del Rio,"Desserts, Bakery, BBQ, Cafe, Mediterranean",52,3.3 +9398,Santos,Panama City,"Desserts, Tea, Pizza, French, Cafe",82,3.3 +9399,Manchester House,Aguadilla,"Pizza, Mexican, BBQ, Fast Food, Cafe",73,4.0 +9400,The Grill On The Alley,College Station,"Desserts, Indian, BBQ, Fast Food",81,4.4 +9401,Nawaab,Atlanta,"Desserts, Tea, Pizza, French, Cafe",24,3.9 +9402,Jamie's Italian,Bloomington,"Tea, French, Cafe, Fast Food",85,3.9 +9403,Chaophraya,Gulfport,"Desserts, Tea, Cafe, Mediterranean, Seafood",44,4.3 +9404,Solita,Lewisburg,"Chinese, Pizza, Cafe, Seafood",32,4.9 +9405,Almost Famous Burgers,Brunswick,"Pizza, Bakery, Fast Food",25,4.0 +9406,Home Sweet Home,Sun Valley,"Tea, Bakery, Pizza, Desserts",21,4.1 +9407,Teacup,St. Cloud,"Bakery, Pizza, Cafe, Desserts",28,4.1 +9408,Archies,Dubuque,"French, Bakery, Pizza, BBQ",66,3.4 +9409,Zouk Tea Bar & Grill,Burbank,"Bakery, BBQ, Desserts",36,3.6 +9410,Mughli,South Bend,"Tea, Bakery, Mexican, Indian",89,4.5 +9411,Lahore,Alamosa,"Mexican, Bakery, Mediterranean, Fast Food",77,3.7 +9412,Gaucho,San Luis Obispo,"Mexican, Bakery, BBQ, Seafood",98,4.5 +9413,Akbars,Daytona Beach,"Desserts, Pizza, Bakery, Mediterranean, Seafood",29,4.2 +9414,San Carlo,Jacksonville,"French, Mexican, Bakery, Pizza",77,4.3 +9415,Mr Cooper's House & Garden - The Midland,Iron Mountain,"Mexican, Bakery, Desserts, Fast Food",35,4.2 +9416,The French by Simon Rogan - The Midland,Martha's Vineyard,"Cafe, BBQ, Desserts, Seafood",102,4.3 +9417,7st by Mumbai Spices,Medford,"Tea, Mexican, Bakery, Desserts",92,3.4 +9418,Indian Coffee House,Marquette,"Bakery, Mexican, Indian, BBQ",24,3.4 +9419,Zaffran Dining Experience,Santa Rosa,"Tea, Bakery, American",40,4.6 +9420,MRA Bakery Sweets & Restaurant,Erie,"Bakery, Cafe, Indian, Mediterranean, Seafood",53,4.0 +9421,Zaoq,Petersburg,"Chinese, American, Cafe, Desserts",24,4.2 +9422,Aalishan,Palm Springs,"Desserts, Pizza, Italian, Mexican, Bakery, BBQ",55,3.8 +9423,Applebee's,Sault Ste. Marie,"Cafe, American, BBQ",58,3.8 +9424,Mainland China Restaurant,Fort Leonard Wood,"Pizza, BBQ, Desserts, Seafood",99,4.9 +9425,Ponderosa,Pasco,"Tea, Cafe, Fast Food",80,3.6 +9426,Gokul Gujarati Restaurant,Cedar City,"Desserts, Bakery, BBQ, American, Mediterranean, Seafood",57,4.3 +9427,The Manhattan FISH MARKET,Bozeman,"Bakery, Indian, Cafe, Fast Food",41,4.0 +9428,Coral - InterContinental Doha,Wichita,"Tea, BBQ, Seafood",67,3.7 +9429,Texas Roadhouse,Yuma,"BBQ, Desserts, Seafood",33,4.0 +9430,Punjab Restaurant,Boston,"Desserts, Pizza, French, BBQ, Cafe",26,3.8 +9431,Gymkhana,Fort Myers,"Chinese, Bakery, Seafood",100,4.7 +9432,Eatopia,Gainesville,"Desserts, Pizza, Chinese, Indian, Seafood",92,3.9 +9433,Vine - The St. Regis,Jamestown,"Cafe, Bakery, Desserts",98,4.4 +9434,Sabai Thai - The Westin Doha Hotel & Spa,Spokane,"Chinese, Bakery, Indian, Cafe",70,4.3 +9435,Paper Moon,Harrisburg,"Bakery, Mediterranean, Desserts, Fast Food",54,4.5 +9436,Roti & Boti,Sioux Falls,"Bakery, Fast Food",82,3.9 +9437,The Butcher's Wife,Lake Charles,"Pizza, Italian, Mexican, Bakery, Seafood",18,3.7 +9438,Coco Safar,Corpus Christi,"Pizza, Fast Food",80,4.1 +9439,La Parada,Albuquerque,"Desserts, Tea, Pizza, French, Seafood",11,3.7 +9440,Jason Bakery,Durango,"Desserts, Tea, Pizza, American, Fast Food, Indian",43,4.2 +9441,Truth Coffee,Houston,"Pizza, American, Seafood",29,4.4 +9442,Salushi,College Station,"Pizza, Bakery, BBQ, Seafood",70,3.9 +9443,Origin Coffee Roasting,Monterey,"Chinese, Pizza, Bakery",100,4.0 +9444,Kloof Street House,Denver,"Pizza, Bakery, BBQ, Fast Food, Mediterranean",53,4.5 +9445,Jerry's Burger Bar,San Luis Obispo,"Pizza, BBQ, Fast Food, Cafe, Indian",29,4.4 +9446,Active Sushi,Charleston,"Desserts, Pizza, French, Mexican, Bakery",23,3.8 +9447,Beluga,Santa Barbara,"Tea, American, Seafood",39,3.8 +9448,Rocomamas,Columbus,"Pizza, Bakery, Fast Food, Cafe, Indian",21,3.6 +9449,The Creamery,Provo,"Bakery, BBQ, Cafe, Desserts",31,4.5 +9450,Nobu - One&Only,Colorado Springs,"French, Bakery, Seafood",27,4.0 +9451,Jarryds,Green Bay,"Cafe, BBQ, Desserts, Italian",13,4.8 +9452,My Sugar,College Station,"Cafe, Bakery, Mediterranean",32,4.4 +9453,Grand Caf愆 & Beach,Pellston,"BBQ, Fast Food",73,3.8 +9454,tashas,Walla Walla,"Chinese, Bakery, Seafood",71,4.1 +9455,Gibson's Gourmet Burgers & Ribs,Atlantic City,"Tea, Pizza, Italian, Bakery, BBQ, Chinese",55,4.1 +9456,Willoughby & Co.,Trenton,"Tea, Pizza, Fast Food, Indian, Seafood",15,4.4 +9457,Cube - Tasting Kitchen,Paducah,"Tea, Mexican, Bakery, BBQ, Cafe",98,4.9 +9458,Urbanologi,Corpus Christi,"Tea, Cafe, Pizza, BBQ",18,4.9 +9459,Momo Baohaus,Latrobe,"Tea, Pizza, Italian, Bakery, Indian",67,4.3 +9460,Craft,Oklahoma City,"Mexican, Bakery, Mediterranean, Fast Food",52,4.1 +9461,Hudsons,Medford,"BBQ, Desserts, Fast Food",62,4.0 +9462,The Wolfpack,Champaign,"Bakery, Pizza, Indian, BBQ",21,4.1 +9463,The National,Pago Pago,"Desserts, Mexican, Bakery, Cafe, American",77,4.2 +9464,Marble,Rochester,"Cafe, Fast Food",25,4.5 +9465,Kream,St. Cloud,"Tea, Pizza, Indian, Mediterranean",59,4.7 +9466,Carbon Bistro,Wichita,"Seafood, Desserts, Italian",19,4.1 +9467,Geet Indian Restaurant,Walla Walla,"Cafe, Bakery",26,4.4 +9468,Blos Cafe,Palm Springs,"Desserts, Tea, Cafe, Fast Food, Chinese, Mediterranean",39,3.9 +9469,The Belgian Triple,Hattiesburg,"Tea, Seafood, Mediterranean, Fast Food",96,4.2 +9470,El Pistolero,Atlanta,"Pizza, American, Fast Food",90,4.3 +9471,Brooklyn Brothers,Reno,"Tea, Pizza, BBQ, Fast Food, Indian",30,3.8 +9472,Capital Craft Beer Academy,Anchorage,"Tea, Mexican, Pizza, Fast Food",94,4.4 +9473,Spice - The Indian Kitchen,Corpus Christi,"Desserts, Mexican, BBQ, Fast Food, Cafe",77,4.3 +9474,The Black Bamboo,Baton Rouge,"Tea, Seafood",69,4.4 +9475,Old Town Italy,Watertown,"Pizza, French, Mexican, Fast Food, Cafe",47,3.9 +9476,Parrot's,Miami,"Chinese, French, BBQ, Fast Food",22,3.4 +9477,Baobab Cafe & Grill,Midland,"Desserts, Tea, Pizza, Indian, Seafood",73,4.0 +9478,Harissa Bistro,Kotzebue,"Desserts, Tea, Pizza, BBQ, Mediterranean",88,4.5 +9479,Life Grand Cafe,Charlotte,"Tea, Bakery, Fast Food, Chinese, Indian",25,4.1 +9480,Crawdaddy's,Plattsburgh,"French, Bakery, Seafood",19,4.0 +9481,Culture Club - Bar De Tapas,Tucson,"American, BBQ, Fast Food",92,4.5 +9482,23 On Hazelwood,Kotzebue,"Cafe, Mexican, American, Fast Food",50,3.9 +9483,Hogshead,Monterey,"Cafe, Pizza",48,4.1 +9484,Restaurant Mosaic @ The Orient,St. Cloud,"Tea, Seafood, Pizza, Fast Food",94,4.9 +9485,The Whippet,Amarillo,"French, Bakery, BBQ, Fast Food, Cafe",58,4.3 +9486,Gemelli Cucina Bar,Martha's Vineyard,"Desserts, Tea, Cafe, French, Chinese, Seafood",42,4.8 +9487,Social on Main,Gunnison,"Tea, Pizza, Fast Food, American, Seafood",100,4.0 +9488,Cafe Del Sol Botanico,Niagara Falls,"Tea, Cafe, Italian, Bakery, Fast Food, Chinese",78,4.4 +9489,Perron,Pellston,"Cafe, Bakery, Desserts, Fast Food",74,4.2 +9490,Jamie's Italian,Ogden,"Chinese, Pizza, American, Bakery",18,4.1 +9491,The Big Mouth,Great Falls,"Mexican, BBQ, Seafood",93,4.3 +9492,Licorish Bistro,Louisville,"Pizza, Italian, French, Fast Food, Cafe, Seafood",91,4.6 +9493,Salsa Mexican Grill,Dallas,"Desserts, BBQ, Bakery, Cafe, American",63,4.3 +9494,The Smokehouse and Grill,Birmingham,"Tea, Cafe, Bakery, Seafood",21,4.4 +9495,Escondido Tapas,Jackson,"Tea, Pizza, BBQ, Fast Food",35,4.4 +9496,Remo's Maximilliano,Shreveport,"Pizza, BBQ, Fast Food, Indian, Seafood",62,3.8 +9497,Chinese Dragon Cafe,Longview,"Tea, American, Fast Food, Indian, Seafood",74,3.4 +9498,Elite Indian Restaurant,Minneapolis,"Desserts, Tea, Italian, American, Seafood",89,2.4 +9499,CIOCONAT Lounge,Gustavus,"Pizza, Fast Food, Cafe, Indian, Mediterranean",89,3.7 +9500,The Paddington,Johnstown,"Fast Food, Indian, BBQ, Italian",44,3.6 +9501,The Commons,Salina,"Tea, BBQ, American, Desserts",79,4.0 +9502,Upali's,Spokane,"Desserts, Tea, Mexican, Chinese, Seafood",49,4.0 +9503,Malay Restaurant,Florence,"BBQ, Desserts",83,3.5 +9504,T.G.I. Friday's,Newburgh,"Cafe, Pizza, Mexican, Chinese, Seafood",87,4.0 +9505,Simply Strawberries By Jagro,Salina,"Chinese, Cafe, Desserts",95,4.5 +9506,Cafe Shaze,San Antonio,"Fast Food, Cafe, Mediterranean, Italian",30,3.8 +9507,Queen's Cafe,Mason City,"Desserts, Tea, Pizza, Bakery, Chinese, American",90,2.5 +9508,Arabian Knights,Moline,"Bakery, Fast Food, American, Mediterranean, Seafood",48,4.2 +9509,Butter Boutique,Santa Ana,"Desserts, Tea, Bakery, Cafe, Mediterranean",13,4.2 +9510,Carnival Ice Cream,Grand Rapids,"Desserts, Tea, Pizza, Italian, Bakery, Indian",41,4.1 +9511,Cricket Club Cafe,Melbourne,"BBQ, Seafood",40,4.2 +9512,The Manhattan Fish Market,Baltimore,"Tea, French, BBQ",31,4.0 +9513,The Sizzle,Melbourne,"Tea, French, Cafe",83,4.2 +9514,Ministry of Crab,Sitka,"Desserts, Seafood",26,4.9 +9515,Cafe Beverly,Honolulu,"Seafood, Pizza, Bakery, Italian",43,4.1 +9516,Burger's King,Chattanooga,"Tea, Bakery, Desserts",16,4.1 +9517,Timboo Cafe,Bend,"Desserts, Pizza, Italian, Cafe, Mediterranean, Seafood",30,4.2 +9518,Hattena Hatay Sofras郾,Santa Barbara,"Chinese, French, Fast Food, Cafe, Seafood",76,4.6 +9519,Masaba侓郾 Kebap韄郾s郾,Jackson,"Desserts, Tea, Mexican, BBQ, American",56,4.2 +9520,Turta Home Cafe,Salina,"Pizza, French, Bakery, Fast Food, American, Seafood",82,4.3 +9521,Liva,Kalispell,"Cafe, Pizza, BBQ",37,3.4 +9522,Me侓hur Tavac郾 Recep Usta,Butte,"Pizza, Indian, Mediterranean, Desserts",51,4.5 +9523,韴ukura埕a Sofras郾,Devils Lake,"Pizza, Mexican, Bakery, Cafe, Seafood",66,4.4 +9524,Gaga Manjero,Pensacola,"Tea, Desserts, Pizza, BBQ",17,4.9 +9525,Cafemiz,Sault Ste. Marie,"Tea, Cafe, Pizza, Indian",12,4.4 +9526,Nusr-Et,Reno,"Tea, Bakery, Cafe, American, Seafood",17,4.1 +9527,Kebap 49,Presque Isle,"Desserts, Mexican, Bakery, Cafe, Seafood",93,4.3 +9528,Timboo Cafe,Gunnison,"Fast Food, Cafe, Pizza, Seafood",24,4.2 +9529,Me侓hur 韄z韄elik Aspava,Cleveland,"Chinese, Pizza, Mediterranean, Seafood",34,4.6 +9530,Y郾ld郾z Aspava,Moab,"Tea, Mexican, Bakery, Fast Food, Chinese",32,4.4 +9531,The Bigos,San Luis Obispo,"Desserts, Pizza, Italian, BBQ, Seafood",70,3.8 +9532,Masaba侓郾,Reno,"Tea, Mexican, Cafe, Indian, Seafood",60,4.2 +9533,Zigana Pide,Rock Springs,"Tea, Pizza, BBQ, American, Seafood",36,4.3 +9534,D韄vero埕lu,Victoria,"Tea, Indian, Fast Food",98,4.4 +9535,D韄vero埕lu,Fort Dodge,"Desserts, Pizza, Fast Food, Chinese, Indian",80,4.2 +9536,Pizza 哿l Forno,Sioux City,"Tea, Cafe, French, BBQ, Fast Food, Chinese",75,4.7 +9537,J'adore Chocolatier,Yakima,"Chinese, Bakery, Fast Food, Cafe, American, Seafood",22,4.7 +9538,Starbucks,Decatur,"Tea, Chinese, Pizza",70,4.9 +9539,Valonia,Appleton,"Desserts, Fast Food, Cafe, American, Seafood",73,4.2 +9540,Draft Gastro Pub,Bemidji,"Desserts, Pizza, Bakery, Fast Food, Chinese",59,4.9 +9541,Emirgan S韄ti侓,Escanaba,"Tea, French, Pizza, Cafe",22,4.2 +9542,Leman K韄lt韄r,Atlantic City,"Pizza, Indian, BBQ, Seafood",73,3.7 +9543,Dem Karak韄y,Dallas,"Pizza, Fast Food",44,4.5 +9544,Karak韄y G韄ll韄o埕lu,Harrisburg,"Fast Food, Tea, Bakery, Italian",65,4.7 +9545,Baltazar,New York,"Tea, Fast Food, Bakery, Seafood",46,4.3 +9546,Naml郾 Gurme,Ontario,"Desserts, Tea, Pizza, BBQ, Chinese, Mediterranean",23,4.1 +9547,Ceviz A埕ac郾,Charleston,"Desserts, Pizza, Italian, Chinese, Seafood",31,4.2 +9548,Huqqa,Aberdeen,"French, Cafe, Desserts, Italian",78,3.7 +9549,A侓侓k Kahve,Buffalo,"Chinese, Pizza, Bakery, Seafood",14,4.0 +9550,Walter's Coffee Roastery,Des Moines,"Tea, Bakery, Pizza",72,4.0 diff --git a/evaluation/.DS_Store b/evaluation/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..ed121dbe0f669469ed7c89d9ecda8246a5a3e649 Binary files /dev/null and b/evaluation/.DS_Store differ diff --git a/evaluation/__pycache__/commonsenseConstraint.cpython-39.pyc b/evaluation/__pycache__/commonsenseConstraint.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d1da1b03b1701b79a22f84f4d7739deaa2384c67 Binary files /dev/null and b/evaluation/__pycache__/commonsenseConstraint.cpython-39.pyc differ diff --git a/evaluation/__pycache__/eval.cpython-39.pyc b/evaluation/__pycache__/eval.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4478d32388b658b5aca661079af94da9190ca184 Binary files /dev/null and b/evaluation/__pycache__/eval.cpython-39.pyc differ diff --git a/evaluation/__pycache__/hardConstraint.cpython-39.pyc b/evaluation/__pycache__/hardConstraint.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1813216f37ebcfed2fa8c77f9be181847adb6ff0 Binary files /dev/null and b/evaluation/__pycache__/hardConstraint.cpython-39.pyc differ diff --git a/evaluation/commonsenseConstraint.py b/evaluation/commonsenseConstraint.py new file mode 100644 index 0000000000000000000000000000000000000000..1894f8cac26a959e99cde0695ebc34473f4f3ba3 --- /dev/null +++ b/evaluation/commonsenseConstraint.py @@ -0,0 +1,735 @@ +from annotation.src.utils import get_valid_name_city,extract_before_parenthesis,extract_numbers_from_filenames +from tools.flights.apis import Flights +from tools.accommodations.apis import Accommodations +from tools.restaurants.apis import Restaurants +from tools.googleDistanceMatrix.apis import GoogleDistanceMatrix +from tools.attractions.apis import Attractions +import math +import json +import re +import os +import sys +from tqdm import tqdm +import argparse + +sys.path.append(os.path.abspath(os.path.join(os.getcwd(), ".."))) +os.chdir(os.path.dirname(os.path.abspath(__file__))) + +flight = Flights() +accommodation = Accommodations() +restaurants = Restaurants() +googleDistanceMatrix = GoogleDistanceMatrix() +attractions = Attractions() + +city_state_set = open('../database/background/citySet_with_states.txt','r').read().split('\n') +city_state_map = {x:y for x,y in [unit.split('\t') for unit in city_state_set]} + + +def load_line_json_data(filename): + data = [] + with open(filename, 'r', encoding='utf-8') as f: + for line in f.read().strip().split('\n'): + unit = json.loads(line) + data.append(unit) + return data + + +def count_consecutive_values(lst): + if not lst: + return [] + + result = [] + current_string = lst[0] + count = 1 + + for i in range(1, len(lst)): + if lst[i] == current_string: + count += 1 + else: + result.append((current_string, count)) + current_string = lst[i] + count = 1 + + result.append((current_string, count)) # Add the last group of values + return result + + +def transportation_match(text: str): + + if 'taxi' in text.lower(): + return 'Taxi' + + elif 'self-driving' in text.lower(): + return 'Self-driving' + + elif 'flight' in text.lower(): + return 'Flight' + + +def extract_from_to(text: str): + """ + Extracts 'A' and 'B' from the format "from A to B" in the given text, with B ending at a comma or the end of the string. + + Args: + - text (str): The input string. + + Returns: + - tuple: A tuple containing 'A' and 'B'. If no match is found, returns (None, None). + """ + pattern = r"from\s+(.+?)\s+to\s+([^,]+)(?=[,\s]|$)" + matches = re.search(pattern, text) + return matches.groups() if matches else (None, None) + + + +def is_valid_city_sequence(city_list): + """ + Checks if the city sequence is valid. A valid sequence has every city (except the first and last) + appearing consecutively, and no city should appear again once its sequence is over. + + Args: + - city_list (list): List of cities. + + Returns: + - bool: True if the sequence is valid, False otherwise. + """ + + # If the list has less than 3 cities, it's invalid. + if len(city_list) < 3: + return False + + # Set to keep track of visited cities + visited_cities = set() + + i = 0 + while i < len(city_list): + city = city_list[i] + + # If the city was already visited, it's invalid. + if city in visited_cities and (i != 0 and i != len(city_list) - 1): + return False + + # Count the consecutive occurrences of the city + count = 0 + while i < len(city_list) and city_list[i] == city: + count += 1 + i += 1 + + # If the city appeared only once in the medium, it's invalid. + if count == 1 and 0 < i - 1 < len(city_list) - 1: + return False + + visited_cities.add(city) + + return True + + + +def is_reasonalbe_visiting_city(question, tested_data): + + city_list = [] + + # print(tested_data) + for i in range(min(question['days'],len(tested_data))): + city_value = tested_data[i]['current_city'] + + if 'from' in city_value: + city1, city2 = extract_from_to(city_value) + city1 = extract_before_parenthesis(city1) + city2 = extract_before_parenthesis(city2) + if i==0 and city1 != question['org']: + return False, f"The first day's city should be {question['org']}." + + city_list += [city1, city2] + + else: + city_list.append(extract_before_parenthesis(city_value)) + + if city_list[0] != city_list[-1]: + return False, "The trip should be a closed circle." + + if not is_valid_city_sequence(city_list): + return False, "The city sequence is invalid." + + for idx, city in enumerate(city_list): + if city not in city_state_map: + return False, f"{city} is not a valid city." + if idx not in [0,len(city_list)-1] and question['days'] >3 and city_state_map[city] != question['dest']: + return False, f"{city} is not in {question['dest']}." + + return True, None + + +def is_valid_restaurants(question, tested_data): + + restaurants_list = [] + + for i in range(min(question['days'],len(tested_data))): + unit = tested_data[i] + + if 'breakfast' in unit and unit['breakfast'] and unit['breakfast'] != '-': + if unit['breakfast'] not in restaurants_list: + restaurants_list.append(unit['breakfast']) + else: + return False, f"The restaurant in day {i+1} breakfast is repeated." + # elif 'breakfast' not in unit : + # return False, f"No Breakfast Info." + + if 'lunch' in unit and unit['lunch'] and unit['lunch'] != '-': + if unit['lunch'] not in restaurants_list: + restaurants_list.append(unit['lunch']) + else: + return False, f"The restaurant in day {i+1} lunch {unit['lunch']} is repeated." + # elif 'lunch' not in unit: + # return False, f"No Lunch Info." + + if 'dinner' in unit and unit['dinner'] and unit['dinner'] != '-': + if unit['dinner'] not in restaurants_list: + restaurants_list.append(unit['dinner']) + else: + return False, f"The restaurant in day {i+1} dinner is repeated." + # elif 'dinner' not in unit: + # return False, f"No Dinner Info." + + return True, None + +def is_valid_attractions(question, tested_data): + + attractions_list = [] + + for i in range(min(question['days'],len(tested_data))): + unit = tested_data[i] + + if 'attraction' in unit and unit['attraction'] and unit['attraction'] != '-': + for attraction in unit['attraction'].split(';')[:-1]: + if attraction not in attractions_list: + attractions_list.append(attraction) + else: + return False, f"The attraction '{attraction}' in day {i+1} is repeated." + + # elif 'attraction' not in unit: + # return False, f"No Attraction Info." + + return True, None + +def is_valid_transportation(question, tested_data): + + if tested_data[0]['transportation'] and tested_data[0]['transportation'] != '-': + transportation_list = [transportation_match(tested_data[0]['transportation'])] + + else: + return False, "The transportation in day 1 should not be empty." + + for i in range(min(question['days'],len(tested_data))): + unit = tested_data[i] + + if 'transportation' in unit and unit['transportation'] and unit['transportation'] != '-': + transportation_list.append(transportation_match(unit['transportation'])) + # elif 'transportation' not in unit: + # return False, f"No Transportation Info." + + if (('Self-driving' in transportation_list) and ('Flight' in transportation_list)) or (('Taxi' in transportation_list) and ('Self-driving' in transportation_list)): + return False, "The transportation is conflicting." + + return True, None + +def is_valid_information_in_current_city(question, tested_data): + + for i in range(min(question['days'],len(tested_data))): + unit = tested_data[i] + current_city = unit['current_city'] + final_city_list = [] + + if 'from' in current_city: + city1, city2 = extract_from_to(current_city) + city1 = extract_before_parenthesis(city1) + city2 = extract_before_parenthesis(city2) + final_city_list = [city1, city2] + else: + final_city_list = extract_before_parenthesis(current_city) + + if 'transportation' in unit and unit['transportation'] and unit['transportation'] != '-': + for city in final_city_list: + if city not in unit['transportation']: + # print(city) + return False, f"The transportation in day {i+1} is invalid city choice." + # elif 'transportation' not in unit: + # return False, f"No Transportation Info." + + if 'breakfast' in unit and unit['breakfast'] and unit['breakfast'] != '-': + + flag = False + + for city in final_city_list: + if city in unit['breakfast']: + flag = True + + if not flag: + return False, f"The breakfast in day {i+1} is invalid city choice." + # elif 'breakfast' not in unit: + # return False, f"No Breakfast Info." + + if 'lunch' in unit and unit['lunch'] and unit['lunch'] != '-': + flag = False + + for city in final_city_list: + if city in unit['lunch']: + flag = True + + if not flag: + return False, f"The lunch in day {i+1} is invalid city choice." + # elif 'lunch' not in unit: + # return False, f"No Lunch Info." + + if 'dinner' in unit and unit['dinner'] and unit['dinner'] != '-': + flag = False + + for city in final_city_list: + if city in unit['dinner']: + flag = True + + if not flag: + return False, f"The dinner in day {i+1} is invalid city choice." + # elif 'dinner' not in unit: + # return False, f"No Dinner Info." + + if 'attraction' in unit and unit['attraction'] and unit['attraction'] != '-': + + attraction_list = unit['attraction'].split(';')[:-1] + + for attraction in attraction_list: + flag = False + for city in final_city_list: + if city in attraction: + flag = True + if not flag: + return False, f"The attraction in day {i+1} is invalid city choice." + + # elif 'attraction' not in unit: + # return False, f"No Attraction Info." + + + if 'accommodation' in unit and unit['accommodation'] and unit['accommodation'] != '-': + + if final_city_list[-1] not in unit['accommodation']: + return False, f"The accommodation in day {i+1} is invalid city choice." + + # elif 'accommodation' not in unit: + # return False, f"No Accommodation Info." + + return True, None + +# hallucination +def is_valid_information_in_sandbox(question, tested_data): + + for i in range(min(question['days'],len(tested_data))): + unit = tested_data[i] + + if unit['transportation'] and unit['transportation'] != '-': + value = unit['transportation'] + org_city, dest_city = extract_from_to(value) + if org_city == None or dest_city == None: + org_city, dest_city = extract_from_to(unit['current_city']) + if 'flight number' in value.lower(): + try: + org_city = extract_before_parenthesis(org_city) + dest_city = extract_before_parenthesis(dest_city) + except TypeError: + raise ValueError("The transportation {} in day {} can not be parsed.".format(value,i+1)) + # print(value) + if len(flight.data[(flight.data['Flight Number'] == value.split('Flight Number: ')[1].split(',')[0]) & (flight.data['OriginCityName']==org_city) & (flight.data['DestCityName']==dest_city)]) < 1: + return False, f"The flight number in day {i+1} is invalid in the sandbox." + + elif 'self-driving' in value.lower() or 'taxi' in value.lower(): + try: + org_city = extract_before_parenthesis(org_city) + dest_city = extract_before_parenthesis(dest_city) + except TypeError: + org_city = '-' + dest_city = '-' + print("The transportation {} in day {} can not be parsed and '-' will be used instead.".format(value,i+1)) + + if 'self-driving' in value.lower(): + if googleDistanceMatrix.run_for_evaluation(org_city, dest_city, mode='self-driving')['cost'] == None: + return False, f"The self-driving in day {i+1} is invalid in the sandbox." + else: + if googleDistanceMatrix.run_for_evaluation(org_city, dest_city, mode='taxi')['cost'] == None: + return False, f"The taxi in day {i+1} is invalid in the sandbox." + + if 'breakfast' in unit and unit['breakfast'] and unit['breakfast'] != '-': + name, city = get_valid_name_city(unit['breakfast']) + if len(restaurants.data[(restaurants.data['Name'].astype(str).str.contains(re.escape(name))) & (restaurants.data['City'] == city)]) < 1: + return False, f"The breakfast in day {i+1} is invalid in the sandbox." + # elif 'breakfast' not in unit: + # return False, f"No Breakfast Info." + + if 'lunch' in unit and unit['lunch'] and unit['lunch'] != '-': + name, city = get_valid_name_city(unit['lunch']) + if len(restaurants.data[(restaurants.data['Name'].astype(str).str.contains(re.escape(name))) & (restaurants.data['City'] == city)]) < 1: + return False, f"The lunch in day {i+1} is invalid in the sandbox." + # elif 'lunch' not in unit: + # return False, f"No Lunch Info." + + if 'dinner' in unit and unit['dinner'] and unit['dinner'] != '-': + name, city = get_valid_name_city(unit['dinner']) + if len(restaurants.data[(restaurants.data['Name'].astype(str).str.contains(re.escape(name))) & (restaurants.data['City'] == city)]) < 1: + return False, f"The dinner in day {i+1} is invalid in the sandbox." + # elif 'dinner' not in unit: + # return False, f"No Dinner Info." + + if 'attraction' in unit and unit['attraction'] and unit['attraction'] != '-': + attractions_list = unit['attraction'].split(';')[:-1] + for attraction in attractions_list: + name, city = get_valid_name_city(attraction) + if len(attractions.data[(attractions.data['Name'].astype(str).str.contains(re.escape(name))) & (attractions.data['City'] == city)]) < 1: + return False, f"The attraction {attraction} in day {i+1} is invalid in the sandbox." + # elif 'attraction' not in unit: + # return False, f"No Attraction Info." + + if 'accommodation' in unit and unit['accommodation'] and unit['accommodation'] != '-': + name, city = get_valid_name_city(unit['accommodation']) + # print(name,city) + # print(accommodation.data[accommodation.data['NAME'].astype(str).str.contains(re.escape(name))]) + if len(accommodation.data[(accommodation.data['NAME'].astype(str).str.contains(re.escape(name))) & (accommodation.data['city'] == city)]) < 1: + return False, f"The accommodation in day {i+1} is invalid in the sandbox." + # elif 'accommodation' not in unit: + # return False, f"No Accommodation Info." + + return True, None + + +def is_valid_accommodaton(question, tested_data): + data = [] + for i in range(min(question['days'],len(tested_data))): + unit = tested_data[i] + + if 'accommodation' not in unit: + return False, f"No Accommodation Info." + + data.append(unit['accommodation']) + # data = [unit['accommodation'] for unit in tested_data] + consectutive_accommodation = count_consecutive_values(data) + for unit in consectutive_accommodation: + # print(unit) + if unit and unit[0] not in ['-',''] : + name, city = get_valid_name_city(unit[0]) + # print(unit[0],name,city) + # try: + if len(accommodation.data[(accommodation.data['NAME'].astype(str).str.contains(re.escape(name))) & (accommodation.data['city'] == city)]) == 1 and unit[1] < accommodation.data[(accommodation.data['NAME'].astype(str).str.contains(re.escape(name))) & (accommodation.data['city'] == city)].iloc[0]['minimum nights']: + return False, f"The accommodation {unit[0]} do not obey the minumum nights rule." + # can not parse data + # except re.error: + # continue + + return True, None + +def is_valid_visiting_city_number(question, tested_data): + + city_set = set() + + + for i in range(min(question['days'],len(tested_data))): + city_value = tested_data[i]['current_city'] + + if 'from' in city_value: + city1, city2 = extract_from_to(city_value) + city1 = extract_before_parenthesis(city1) + city2 = extract_before_parenthesis(city2) + if i==0 and city1 != question['org']: + return False, f"The first day's city should be {question['org']}." + + city_set.add(city1) + city_set.add(city2) + + else: + city_set.add(extract_before_parenthesis(city_value)) + + city_set.discard(question['org']) + + if len(city_set) != question['visiting_city_number']: + return False, f"The number of visiting cities should be {question['visiting_city_number']}." + + return True, None + +def is_valid_days(question, tested_data): + lens = 0 + for i in range(min(question['days'],len(tested_data))): + if tested_data[i] != {} and tested_data[i]['current_city'] != "You don't need to fill in the information for this or later days.": + lens += 1 + + if lens != question['days']: + # print(lens) + return False, f"The number of days should be {question['days']}." + else: + return True, None + +def is_not_absent(question, tested_data): + needed_info = 6 * question['days'] + total_valid_info = 0 + + if not is_valid_days(question, tested_data)[0]: + return False, "Invalid Days" + + if not is_valid_visiting_city_number(question, tested_data)[0]: + return False, "Invalid City Number" + + for i in range(min(question['days'],len(tested_data))): + unit = tested_data[i] + + if 'transportation' not in unit: + return False, f"No Transportation Info." + + if 'breakfast' not in unit: + return False, f"No Breakfast Info." + + if 'lunch' not in unit: + return False, f"No Lunch Info." + + if 'dinner' not in unit: + return False, f"No Dinner Info." + + if 'attraction' not in unit: + return False, f"No Attraction Info." + + if 'accommodation' not in unit: + return False, f"No Accommodation Info." + + if ('from ' in unit['current_city'] or 'to ' in unit['current_city']) and unit['transportation'] in ['','-']: + return False, f"No transportation in day {i+1} is not allowed." + + if ('from ' not in unit['current_city'] and ' to ' not in unit['current_city']) and unit['attraction'] in ['','-']: + return False, f"No attaction in day {i+1} is not allowed." + + if i != question['days'] - 1 and unit['accommodation'] in ['','-']: + return False, f"No accommodation in day {i+1} is not allowed." + + if (unit['breakfast'] in ['','-'] or unit['lunch'] in ['','-'] or unit['dinner'] in ['','-']) and 'from ' not in unit['current_city']: + return False, f"No meal in day {i+1} is not allowed." + + + for key in unit: + if unit[key] and unit[key] != '-': + total_valid_info += 1 + + + if total_valid_info * 1.0 / needed_info < 0.5: + return False, f"The absent information is more than 50%." + + return True, None + + +def evaluation(query_data, tested_data): + return_info = {} + return_info['is_reasonalbe_visiting_city'] = is_reasonalbe_visiting_city(query_data, tested_data) + return_info['is_valid_restaurants'] = is_valid_restaurants(query_data, tested_data) + return_info['is_valid_attractions'] = is_valid_attractions(query_data, tested_data) + return_info['is_valid_accommodation'] = is_valid_accommodaton(query_data, tested_data) + return_info['is_valid_transportation'] = is_valid_transportation(query_data, tested_data) + return_info['is_valid_information_in_current_city'] = is_valid_information_in_current_city(query_data, tested_data) + return_info['is_valid_information_in_sandbox'] = is_valid_information_in_sandbox(query_data, tested_data) + return_info['is_not_absent'] = is_not_absent(query_data, tested_data) + return return_info + +def boolean_evaluation(query_data, tested_data): + return_info = {} + return_info['is_reasonalbe_visiting_city'] = is_reasonalbe_visiting_city(query_data, tested_data) + return_info['is_valid_restaurants'] = is_valid_restaurants(query_data, tested_data) + return_info['is_valid_accommodation'] = is_valid_accommodaton(query_data, tested_data) + return_info['is_valid_attractions'] = is_valid_attractions(query_data, tested_data) + return_info['is_valid_transportation'] = is_valid_transportation(query_data, tested_data) + return_info['is_valid_information_in_current_city'] = is_valid_information_in_current_city(query_data, tested_data) + return_info['is_valid_information_in_sandbox'] = is_valid_information_in_sandbox(query_data, tested_data) + return_info['is_not_absent'] = is_not_absent(query_data, tested_data) + for key in return_info: + if return_info[key][0] == False: + print(return_info[key][1]) + return False + return True + +# if __name__ == '__main__': +# number_list = extract_numbers_from_filenames('/home/xj/toolAugEnv/code/toolConstraint/data/annotation/lrz') +# # json_data = json.load(open('/home/xj/toolAugEnv/code/toolConstraint/data/annotation/x/annotation_4.json')) +# query_data = load_line_json_data('/home/xj/toolAugEnv/code/toolConstraint/data/query/lrz.jsonl') +# for idx in number_list: +# json_data = json.load(open(f'/home/xj/toolAugEnv/code/toolConstraint/data/annotation/lrz/annotation_{idx}.json')) +# print(str(idx), evaluation(query_data[idx-1], json_data)) +# # json_data = json.load(open(f'/home/xj/toolAugEnv/code/toolConstraint/results/turbo16k-turbo16k/plan_{idx}.json')) +# # query_data = load_line_json_data('/home/xj/toolAugEnv/code/toolConstraint/data/query/test.jsonl')[idx-1] +# # help me write all function name in this file, just the name +# # +# # list all function name in this file +# # ['is_reasonalbe_visiting_city', 'is_valiable_restaurants', 'is_valiable_attractions', 'is_valiable_transportation', 'is_valid_information_in_current_city', 'is_valid_information_in_sandbox'] +# # print(is_valiable_restaurants(query_data, json_data)) + +# if __name__ == "__main__": +# user = 'zk' +# query_data_list = load_line_json_data(f'/home/xj/toolAugEnv/code/toolConstraint/data/query/{user}.jsonl') +# idx_number_list = extract_numbers_from_filenames(f'/home/xj/toolAugEnv/code/toolConstraint/data/annotation/{user}') +# commonsense_statistic= {level:{day:[] for day in [3,5,7]} for level in ['easy','medium','hard']} +# for idx in idx_number_list: +# print(idx) +# query_data = query_data_list[idx-1] +# generated_plan = json.load(open(f'/home/xj/toolAugEnv/code/toolConstraint/results/turbo16k-turbo16k/{user}/plan_{idx}.json')) +# # generated_plan = generated_plan[:-1] +# if generated_plan[-1]['gpt-3.5-turbo-16k-result'] != 'Plan Fail': +# info_box = evaluation(query_data, generated_plan[-1]['gpt-3.5-turbo-16k-result']) +# generated_plan[-1]['toolAug-commonsense'] = info_box +# else: +# generated_plan[-1]['toolAug-commonsense'] = None +# info_box = None +# commonsense_statistic[query_data['level']][query_data['days']].append(info_box) +# with open(f'/home/xj/toolAugEnv/code/toolConstraint/results/turbo16k-turbo16k/{user}/plan_{idx}.json','w') as f: +# json.dump(generated_plan,f) + +# with open(f'/home/xj/toolAugEnv/code/toolConstraint/results/turbo16k-turbo16k/{user}/commonsense_statistic.json','w') as f: +# json.dump(commonsense_statistic,f) + +# if __name__ == "__main__": +# user = 'all' +# model_type = ['chatgpt','gpt4','greedy_search'][2] +# query_data_list = load_line_json_data(f'/home/xj/toolAugEnv/code/toolConstraint/data/query/{user}.jsonl') +# # idx_number_list = extract_numbers_from_filenames(f'/home/xj/toolAugEnv/code/toolConstraint/data/annotation/{user}') +# idx_number_list = [i for i in range(1,501)] +# commonsense_statistic= {level:{day:[] for day in [3,5,7]} for level in ['easy','medium','hard']} + +# for idx in idx_number_list: +# print(idx) +# query_data = query_data_list[idx-1] +# generated_plan = json.load(open(f'/home/xj/toolAugEnv/code/toolConstraint/results/pre2/{user}/plan_{idx}.json')) +# # generated_plan = generated_plan[:-1] +# if model_type == 'greedy_search': +# info_box = evaluation(query_data, generated_plan[-1][f'greedy_search_plan']) +# else: +# info_box = evaluation(query_data, generated_plan[-1][f'{model_type}_human_collected_info_results_parsed']) +# generated_plan[-1][f'{model_type}_with_human_collected_commonsense'] = info_box +# commonsense_statistic[query_data['level']][query_data['days']].append(info_box) + +# with open(f'/home/xj/toolAugEnv/code/toolConstraint/results/pre2/{user}/plan_{idx}.json','w') as f: +# json.dump(generated_plan,f) + +# with open(f'/home/xj/toolAugEnv/code/toolConstraint/results/pre2/{user}/{model_type}_with_human_collected_commonsense_statistic.json','w') as f: +# json.dump(commonsense_statistic,f) + + +# if __name__ == "__main__": +# user = 'all' +# query_data_list = load_line_json_data(f'/home/xj/toolAugEnv/code/toolConstraint/data/query/{user}.jsonl') +# idx_number_list = extract_numbers_from_filenames(f'/home/xj/toolAugEnv/code/toolConstraint/data/annotation/{user}') +# hardConstraint_statistic= {level:{day:[] for day in [3,5,7]} for level in ['easy','medium','hard']} +# not_satified = [] +# for idx in tqdm(idx_number_list): +# # print(idx) +# query_data = query_data_list[idx-1] +# generated_plan = json.load(open(f'/home/xj/toolAugEnv/code/toolConstraint/data/annotation/{user}/annotation_{idx}.json')) + +# if not boolean_evaluation(query_data, generated_plan): +# not_satified.append(idx) +# print(idx) +# generated_plan = generated_plan[:-1] +# print(not_satified) + +if __name__ == "__main__": + set_type = ["train",'dev','test'][0] + query_data_list = load_line_json_data(f'/home/xj/toolAugEnv/code/toolConstraint/data/final_data/{set_type}/query/query.jsonl') + # idx_number_list = extract_numbers_from_filenames(f'/home/xj/toolAugEnv/code/toolConstraint/data/final_data/{set_type}/plan') + commonsense_statistic= {level:{day:[] for day in [3,5,7]} for level in ['easy','medium','hard']} + not_satified = [] + # print( idx_number_list) + for idx in tqdm(range(1,len(query_data_list)+1)): + # print(idx) + query_data = query_data_list[idx-1] + generated_plan = json.load(open(f'/home/xj/toolAugEnv/code/toolConstraint/data/final_data/{set_type}/plan/plan_{idx}.json')) + try: + store_plan = json.load(open(f'/home/xj/toolAugEnv/code/toolConstraint/results/{set_type}/plan_{idx}.json')) + except FileNotFoundError: + store_plan = [{}] + info_box = evaluation(query_data,generated_plan[1]) + # if not boolean_evaluation(query_data, generated_plan[1]): + # not_satified.append(idx) + # print(idx) + # print(store_plan[-1]) + store_plan[-1][f'human_anno_commonsense_constraint'] = info_box + with open(f'/home/xj/toolAugEnv/code/toolConstraint/results/{set_type}/plan_{idx}.json','w') as f: + json.dump(store_plan,f) + commonsense_statistic[query_data['level']][query_data['days']].append(info_box) + print(not_satified) + with open(f'/home/xj/toolAugEnv/code/toolConstraint/results/{set_type}/human_anno_commonsense_constraint.json','w') as f: + json.dump(commonsense_statistic,f) + +# if __name__ == "__main__": +# user = 'all' +# model_type = ['chatgpt','gpt4'][1] +# query_data_list = load_line_json_data(f'/home/xj/toolAugEnv/code/toolConstraint/data/query/{user}.jsonl') +# # idx_number_list = extract_numbers_from_filenames(f'/home/xj/toolAugEnv/code/toolConstraint/data/annotation/{user}') +# idx_number_list = [i for i in range(1,501)] +# commonsense_statistic= {level:{day:[] for day in [3,5,7]} for level in ['easy','medium','hard']} +# cnt = 0 +# for idx in idx_number_list: +# # print(idx) +# query_data = query_data_list[idx-1] +# generated_plan = json.load(open(f'/home/xj/toolAugEnv/code/toolConstraint/results/pre/{user}/plan_{idx}.json'))[-1]['gpt4_human_collected_info_results_parsed'] +# # generated_plan = generated_plan[:-1] + +# if not boolean_evaluation(query_data, generated_plan): +# cnt += 1 +# print(idx) +# print(cnt) + +# if __name__ == "__main__": +# parser = argparse.ArgumentParser(description="") +# # model_type = ['gpt-3.5-turbo-1106','gpt-4-1106-preview','greedy_search','mistral-7B-32K','gemini2','mixtral','gpt-3.5-turbo-11062'][-1] +# # method = ['direct','cot','react','reflexion','tool-use'][-1] +# # set_type = ['dev','test'][0] +# parser.add_argument("--model_type", type=str, default="gpt-3.5-turbo-1106") +# parser.add_argument("--method", type=str, default="direct") +# parser.add_argument("--set_type", type=str, default="dev") +# args = parser.parse_args() +# directory = f'/home/xj/toolAugEnv/code/toolConstraint/data/final_data/{args.set_type}' +# query_data_list = load_line_json_data(os.path.join(directory, 'query/query.jsonl')) +# # idx_number_list = extract_numbers_from_filenames(f'/home/xj/toolAugEnv/code/toolConstraint/data/annotation/{user}') +# idx_number_list = [i for i in range(1,len(query_data_list)+1)] +# commonsense_statistic= {level:{day:[] for day in [3,5,7]} for level in ['easy','medium','hard']} +# deliver_cnt = 0 +# if args.method == 'tool-use': +# suffix = '' +# else: +# suffix = '_with_human_info' +# for idx in tqdm(idx_number_list): +# # print(idx) +# query_data = query_data_list[idx-1] +# generated_plan = json.load(open(f'/home/xj/toolAugEnv/code/toolConstraint/results/{args.set_type}/plan_{idx}.json')) +# # generated_plan = generated_plan[:-1] +# if args.model_type == 'greedy_search': +# info_box = evaluation(query_data, generated_plan[-1][f'greedy_search_plan']) +# else: +# if args.method == 'tool-use': +# suffix2 = '' +# else: +# suffix2 = '_collected' +# if generated_plan[-1][f'{args.model_type}_{args.method}{suffix2}_info_results'] and generated_plan[-1][f'{args.model_type}_{args.method}{suffix2}_info_results']!='Max Token Length Exceeded.': +# try: +# info_box = evaluation(query_data, generated_plan[-1][f'{args.model_type}_{args.method}{suffix}_results_parsed']) +# except KeyError: +# info_box = None +# generated_plan[-1][f'{args.model_type}_{args.method}{suffix2}_info_results'] = "" +# except IndexError: +# info_box = None +# generated_plan[-1][f'{args.model_type}_{args.method}{suffix2}_info_results'] = "" +# else: +# info_box = None +# if info_box: +# deliver_cnt += 1 +# generated_plan[-1][f'{args.model_type}_{args.method}{suffix}_commonsense_constraint'] = info_box +# commonsense_statistic[query_data['level']][query_data['days']].append(info_box) + +# with open(f'/home/xj/toolAugEnv/code/toolConstraint/results/{args.set_type}/plan_{idx}.json','w') as f: +# json.dump(generated_plan,f) + +# with open(f'/home/xj/toolAugEnv/code/toolConstraint/results/{args.set_type}/{args.model_type}_{args.method}{suffix}_commonsense_constraint.json','w') as f: +# json.dump(commonsense_statistic,f) + +# if args.set_type == 'dev': +# print(f"Model:{args.model_type} Method:{args.method} Set: {args.set_type} \nDeliver Rate: {deliver_cnt/180}" ) +# elif args.set_type == 'test': +# print(f"Model:{args.model_type} Method:{args.method} Set: {args.set_type} \nDeliver Rate: {deliver_cnt/1000}" ) + \ No newline at end of file diff --git a/evaluation/eval.py b/evaluation/eval.py new file mode 100644 index 0000000000000000000000000000000000000000..f739f5b7e4027984acc3ae6a894c5de372edc02e --- /dev/null +++ b/evaluation/eval.py @@ -0,0 +1,181 @@ +from commonsenseConstraint import evaluation as commonsense_eval +from hardConstraint import evaluation as hard_eval +import json +from tqdm import tqdm +from datasets import load_dataset + + +def load_line_json_data(filename): + data = [] + with open(filename, 'r', encoding='utf-8') as f: + for line in f.read().strip().split('\n'): + unit = json.loads(line) + data.append(unit) + return data + +def count_true_false(data): + """Count the number of true and false values in a list.""" + true_count = data.count(True) + false_count = data.count(False) + return true_count, false_count + +def statistics(commonsense_statistic): + """Generate statistics for each level and day in the given data with a different structure.""" + result = {level: {day: {} for day in commonsense_statistic[level]} for level in commonsense_statistic} + + for level, days in commonsense_statistic.items(): + for day, dicts in days.items(): + for dct in dicts: + if dct: + for key, data in dct.items(): + true_count, false_count = count_true_false(data) + if key not in result[level][day]: + result[level][day][key] = {"true": 0, "false": 0} + result[level][day][key]["true"] += true_count + result[level][day][key]["false"] += false_count + + return result + + +def eval_score(validation_or_test: str, file_path: str, TOKEN): + + if validation_or_test == 'validation': + query_data_list = load_dataset('osunlp/TravelBenchEval','validation',token=TOKEN)['validation'] + elif validation_or_test == 'test': + query_data_list = load_dataset('osunlp/TravelBenchEval','test',token=TOKEN)['test'] + + query_data_list = [x for x in query_data_list] + hardConstraint_statistic= {level:{day:[] for day in [3,5,7]} for level in ['easy','medium','hard']} + commonsenseConstraint_statistic = {level:{day:[] for day in [3,5,7]} for level in ['easy','medium','hard']} + tested_plans = load_line_json_data(file_path) + delivery_cnt = 0 + plan_constraint_store = [] + for idx in tqdm(range(0,len(query_data_list))): + query_data = query_data_list[idx] + tested_plan = tested_plans[idx] + if type(query_data) == str: + query_data = eval(query_data) + if type(tested_plan) == str: + tested_plan = eval(tested_plan) + if type(query_data['local_constraint']) == str: + query_data['local_constraint'] = eval(query_data['local_constraint']) + + if tested_plan['plan']: + delivery_cnt += 1 + commonsense_info_box = commonsense_eval(query_data,tested_plan['plan']) + else: + commonsense_info_box = None + + if commonsense_info_box and commonsense_info_box['is_not_absent'][0] and commonsense_info_box['is_valid_information_in_sandbox'][0]: + hard_info_box = hard_eval(query_data,tested_plan['plan']) + else: + hard_info_box = None + + plan_constraint_store.append({'commonsense_constraint':commonsense_info_box,'hard_constraint':hard_info_box}) + + commonsenseConstraint_statistic[query_data['level']][query_data['days']].append(commonsense_info_box) + hardConstraint_statistic[query_data['level']][query_data['days']].append(hard_info_box) + + commonsenseConstraint_statistic_processed = statistics(commonsenseConstraint_statistic) + hardConstraint_statistic_processed = statistics(hardConstraint_statistic) + # print(commonsenseConstraint_statistic_processed) + # print(hardConstraint_statistic_processed) + constraint_record = {key: {day: {'house rule':0, 'cuisine':0, 'room type':0, 'transportation':0} for day in [3,5,7]} for key in ['medium','hard']} + constraint_mapping = {'house rule':'valid_room_rule','cuisine':'valid_cuisine','room type':'valid_room_type','transportation':'valid_transportation'} + mapping_constraint_record = {key: {day: {'valid_room_rule':0, 'valid_cuisine':0, 'valid_room_type':0, 'valid_transportation':0} for day in [3,5,7]} for key in ['medium','hard']} + count_record = {key:{day:0 for day in [3,5,7]} for key in ['easy','medium','hard']} + + for unit in query_data_list: + count_record[unit['level']][unit['days']] += 1 + for key in constraint_record['medium'][3]: + if unit['local_constraint'][key] != None: + constraint_record[unit['level']][unit['days']][key] += 1 + mapping_constraint_record[unit['level']][unit['days']][constraint_mapping[key]] += 1 + + data_record = {key:{day:[] for day in [3,5,7]} for key in ['easy','medium','hard']} + + constraint_dis_record = {"commonsense":{"pass":0,"total":0},"hard":{"pass":0,"total":0}} + + for constraint in ['commonsense','hard']: + if constraint == 'commonsense': + constraint_statistic = commonsenseConstraint_statistic_processed + elif constraint == 'hard': + constraint_statistic = hardConstraint_statistic_processed + + key_dict = {'commonsense':['is_valid_information_in_current_city','is_valid_information_in_sandbox','is_reasonalbe_visiting_city','is_valid_restaurants','is_valid_transportation','is_valid_attractions','is_valid_accommodation','is_not_absent'],'hard':['valid_cost','valid_room_rule','valid_cuisine','valid_room_type','valid_transportation']} + + for key in constraint_statistic: + # level + for key2 in constraint_statistic[key]: + # day + # print(key2) + # key2 = eval(key2) + if key2 == -1: + print(constraint_statistic[key]) + exit(0) + for key3 in key_dict[constraint]: + data_record[key][key2].append('0/0') + if key3 in constraint_statistic[key][key2]: + constraint_dis_record[constraint]['pass'] += constraint_statistic[key][key2][key3]['true'] + if constraint == 'hard': + if key == 'hard' and key3 in ['valid_room_rule','valid_cuisine','valid_room_type','valid_transportation']: + data_record[key][key2][-1] = f"{constraint_statistic[key][key2][key3]['true']}/{mapping_constraint_record[key][key2][key3]}" + constraint_dis_record[constraint]['total'] += mapping_constraint_record[key][key2][key3] + elif key == 'medium' and key3 in ['valid_room_rule','valid_cuisine','valid_room_type']: + data_record[key][key2][-1] = f"{constraint_statistic[key][key2][key3]['true']}/{mapping_constraint_record[key][key2][key3]}" + constraint_dis_record[constraint]['total'] += mapping_constraint_record[key][key2][key3] + else: + data_record[key][key2][-1] = f"{constraint_statistic[key][key2][key3]['true']}/{count_record[key][key2]}" + if key3 in ['valid_cost','valid_visitng_city_number','valid_days']: + constraint_dis_record[constraint]['total'] += count_record[key][key2] + else: + data_record[key][key2][-1] = f"{constraint_statistic[key][key2][key3]['true']}/{count_record[key][key2]}" + constraint_dis_record[constraint]['total'] += count_record[key][key2] + + final_all_cnt = 0 + final_commonsense_cnt = 0 + final_hardConstraint_cnt = 0 + final_all_cnt_map = {level:0 for level in ['easy','medium','hard']} + for idx in (range(0,len(query_data_list))): + if plan_constraint_store[idx]['commonsense_constraint']: + final_commonsense_pass = True + final_hardConstraint_pass = True + for item in plan_constraint_store[idx]['commonsense_constraint']: + if plan_constraint_store[idx]['commonsense_constraint'][item][0] is not None and not plan_constraint_store[idx]['commonsense_constraint'][item][0]: + final_commonsense_pass = False + break + if plan_constraint_store[idx]['hard_constraint'] is None: + continue + for item in plan_constraint_store[idx]['hard_constraint']: + if plan_constraint_store[idx]['hard_constraint'][item][0] is not None and plan_constraint_store[idx]['hard_constraint'][item][0] == False: + final_hardConstraint_pass = False + break + + if final_commonsense_pass: + final_commonsense_cnt += 1 + if final_hardConstraint_pass: + final_hardConstraint_cnt += 1 + if final_commonsense_pass and final_hardConstraint_pass: + final_all_cnt += 1 + final_all_cnt_map[query_data_list[idx]['level']] += 1 + + result = {} + + if validation_or_test == 'validation': + result['Delivery Rate'] = delivery_cnt / 180 + result['Commonsense Constraint Micro Pass Rate'] = constraint_dis_record['commonsense']['pass'] / 1440 + result['Commonsense Constraint Macro Pass Rate'] = final_commonsense_cnt / 180 + result['Hard Constraint Micro Pass Rate'] = constraint_dis_record['hard']['pass'] / 420 + result['Hard Constraint Macro Pass Rate'] = final_hardConstraint_cnt / 180 + result['Final Pass Rate'] = final_all_cnt / 180 + + elif validation_or_test == 'test': + result['Delivery Rate'] = delivery_cnt / 1000 + result['Commonsense Constraint Micro Pass Rate'] = constraint_dis_record['commonsense']['pass'] / 8000 + result['Commonsense Constraint Macro Pass Rate'] = final_commonsense_cnt / 1000 + result['Hard Constraint Micro Pass Rate'] = constraint_dis_record['hard']['pass'] / 2290 + result['Hard Constraint Macro Pass Rate'] = final_hardConstraint_cnt / 1000 + result['Final Pass Rate'] = final_all_cnt / 1000 + + return result + diff --git a/evaluation/hardConstraint.py b/evaluation/hardConstraint.py new file mode 100644 index 0000000000000000000000000000000000000000..851dc3bc302b15aa62fb3d2586d6849f78e5eafc --- /dev/null +++ b/evaluation/hardConstraint.py @@ -0,0 +1,266 @@ +from annotation.src.utils import get_valid_name_city,extract_before_parenthesis,extract_numbers_from_filenames +from tools.flights.apis import Flights +from tools.accommodations.apis import Accommodations +from tools.restaurants.apis import Restaurants +from tools.googleDistanceMatrix.apis import GoogleDistanceMatrix +from tools.attractions.apis import Attractions +import math +import json +import re +import numpy as np +import os +import sys +from tqdm import tqdm +import argparse + +sys.path.append(os.path.abspath(os.path.join(os.getcwd(), ".."))) +os.chdir(os.path.dirname(os.path.abspath(__file__))) + + +flight = Flights() +accommodation = Accommodations() +restaurants = Restaurants() +googleDistanceMatrix = GoogleDistanceMatrix() +attractions = Attractions() + + +def load_line_json_data(filename): + data = [] + with open(filename, 'r', encoding='utf-8') as f: + for line in f.read().strip().split('\n'): + unit = json.loads(line) + data.append(unit) + return data + + +def convert_bool_values(item): + if isinstance(item, dict): + # If the item is a dictionary, recurse on each value + return {key: convert_bool_values(value) for key, value in item.items()} + elif isinstance(item, list): + # If the item is a list, recurse on each item in the list + return [convert_bool_values(value) for value in item] + elif isinstance(item, tuple): + # If the item is a tuple, recurse on each item in the tuple and repackage as a tuple + return tuple(convert_bool_values(value) for value in item) + elif isinstance(item, np.bool_): # Here we check for numpy's bool_ type + # If the item is a numpy bool_, convert it to a standard Python bool + return bool(item) + else: + # If the item is any other type, return it unchanged + return item + + + + +def extract_from_to(text: str): + """ + Extracts 'A' and 'B' from the format "from A to B" in the given text, with B ending at a comma or the end of the string. + + Args: + - text (str): The input string. + + Returns: + - tuple: A tuple containing 'A' and 'B'. If no match is found, returns (None, None). + """ + pattern = r"from\s+(.+?)\s+to\s+([^,]+)(?=[,\s]|$)" + matches = re.search(pattern, text) + return matches.groups() if matches else (None, None) + + +def get_total_cost(question, tested_data): + total_cost = 0 + for i in range(min(question['days'],len(tested_data))): + unit = tested_data[i] + # transporation + if unit['transportation'] and unit['transportation'] != '-': + value = unit['transportation'] + org_city, dest_city = extract_from_to(value) + if org_city == None or dest_city == None: + org_city, dest_city = extract_from_to(unit['current_city']) + + if org_city == None or dest_city == None: + pass + else: + if 'flight number' in value.lower(): + res = flight.data[flight.data['Flight Number'] == value.split('Flight Number: ')[1].split(',')[0]] + if len(res) > 0: + total_cost += res['Price'].values[0] * question['people_number'] + + elif 'self-driving' in value.lower() or 'taxi' in value.lower(): + if 'self-driving' in value.lower(): + # print(org_city,dest_city) + cost = googleDistanceMatrix.run_for_evaluation(org_city,dest_city,'self-driving')['cost'] + total_cost += cost * math.ceil(question['people_number'] * 1.0 / 5) + else: + cost = googleDistanceMatrix.run_for_evaluation(org_city,dest_city,'taxi')['cost'] + total_cost += cost * math.ceil(question['people_number'] * 1.0 / 4) + + # breakfast + if unit['breakfast'] and unit['breakfast'] != '-': + name, city = get_valid_name_city(unit['breakfast']) + res = restaurants.data[(restaurants.data['Name'].astype(str).str.contains(re.escape(name))) & (restaurants.data['City'] == city)] + if len(res) > 0: + total_cost += res['Average Cost'].values[0] * question['people_number'] + + + # lunch + if unit['lunch'] and unit['lunch'] != '-': + name, city = get_valid_name_city(unit['lunch']) + res = restaurants.data[(restaurants.data['Name'].astype(str).str.contains(re.escape(name))) & (restaurants.data['City'] == city)] + if len(res) > 0: + total_cost += res['Average Cost'].values[0] * question['people_number'] + + # dinner + if unit['dinner'] and unit['dinner'] != '-': + name, city = get_valid_name_city(unit['dinner']) + res = restaurants.data[(restaurants.data['Name'].astype(str).str.contains(re.escape(name))) & (restaurants.data['City'] == city)] + if len(res) > 0: + total_cost += res['Average Cost'].values[0] * question['people_number'] + + # accommodation + if unit['accommodation'] and unit['accommodation'] != '-': + name, city = get_valid_name_city(unit['accommodation']) + res = accommodation.data[(accommodation.data['NAME'].astype(str).str.contains(re.escape(name))) & (accommodation.data['city'] == city)] + if len(res) > 0: + total_cost += res['price'].values[0] * math.ceil(question['people_number'] * 1.0 / res['maximum occupancy'].values[0]) + # print(total_cost) + return total_cost + + +def is_valid_room_rule(question, tested_data): + + if question['local_constraint']['house rule'] is None: + return None,None + + for i in range(min(question['days'],len(tested_data))): + unit = tested_data[i] + if unit['accommodation'] and unit['accommodation'] != '-': + name, city = get_valid_name_city(unit['accommodation']) + res = accommodation.data[(accommodation.data['NAME'].astype(str).str.contains(re.escape(name))) & (accommodation.data['city'] == city)] + if len(res) > 0: + if question['local_constraint']['house rule'] == 'smoking' and 'No smoking' in str(res['house_rules'].values[0]): + return False, f"The house rule should be {question['local_constraint']['house rule']}." + if question['local_constraint']['house rule'] == 'parities' and 'No parties' in str(res['house_rules'].values[0]): + return False, f"The house rule should be {question['local_constraint']['house rule']}." + if question['local_constraint']['house rule'] == 'children under 10' and 'No children under 10' in str(res['house_rules'].values[0]): + return False, f"The house rule should be {question['local_constraint']['house rule']}." + if question['local_constraint']['house rule'] == 'visitors' and 'No visitors' in str(res['house_rules'].values[0]): + return False, f"The house rule should be {question['local_constraint']['house rule']}." + if question['local_constraint']['house rule'] == 'pets' and 'No pets' in str(res['house_rules'].values[0]): + return False, f"The house rule should be {question['local_constraint']['house rule']}." + + + return True, None + + + +def is_valid_cuisine(question, tested_data): + cuisine_set = set() + if question['local_constraint']['cuisine']: + for i in range(min(question['days'],len(tested_data))): + unit = tested_data[i] + + if unit['breakfast'] and unit['breakfast'] != '-': + name, city = get_valid_name_city(unit['breakfast']) + if city == question['org']: + continue + res = restaurants.data[(restaurants.data['Name'].astype(str).str.contains(re.escape(name))) & (restaurants.data['City'] == city)] + if len(res) > 0: + for cuisine in question['local_constraint']['cuisine']: + if cuisine in res.iloc[0]['Cuisines']: + cuisine_set.add(cuisine) + + if unit['lunch'] and unit['lunch'] != '-': + name, city = get_valid_name_city(unit['lunch']) + if city == question['org']: + continue + res = restaurants.data[(restaurants.data['Name'].astype(str).str.contains(re.escape(name))) & (restaurants.data['City'] == city)] + if len(res) > 0: + for cuisine in question['local_constraint']['cuisine']: + if cuisine in res.iloc[0]['Cuisines']: + cuisine_set.add(cuisine) + + if unit['dinner'] and unit['dinner'] != '-': + name, city = get_valid_name_city(unit['dinner']) + if city == question['org']: + continue + res = restaurants.data[(restaurants.data['Name'].astype(str).str.contains(re.escape(name))) & (restaurants.data['City'] == city)] + if len(res) > 0: + for cuisine in question['local_constraint']['cuisine']: + if cuisine in res.iloc[0]['Cuisines']: + cuisine_set.add(cuisine) + + if len(cuisine_set) == len(question['local_constraint']['cuisine']): + return True, None + else: + # judge which cuisine is not satisfied + for cuisine in question['local_constraint']['cuisine']: + if cuisine not in cuisine_set: + return False, f"The cuisine {cuisine} is not satisfied." + # return False, f"The cuisine should be {question['local_constraint']['cuisine']}." + else: + return None,None + + +def is_valid_transportation(question, tested_data): + if question['local_constraint']['transportation'] is None: + return None,None + for i in range(min(question['days'],len(tested_data))): + unit = tested_data[i] + if unit['transportation'] and unit['transportation'] != '-': + value = unit['transportation'] + if question['local_constraint']['transportation'] == 'no flight' and 'Flight' in value: + return False, f"The transportation should not be {question['local_constraint']['transportation']}." + elif question['local_constraint']['transportation'] == 'no self-driving' and 'Self-driving' in value: + return False, f"The transportation should not be {question['local_constraint']['transportation']}." + + return True, None + + +def is_valid_room_type(question, tested_data): + if question['local_constraint']['room type'] is None: + return None,None + for i in range(min(question['days'],len(tested_data))): + unit = tested_data[i] + if unit['accommodation'] and unit['accommodation'] != '-': + name, city = get_valid_name_city(unit['accommodation']) + res = accommodation.data[(accommodation.data['NAME'].astype(str).str.contains(re.escape(name))) & (accommodation.data['city'] == city)] + if len(res) > 0: + if question['local_constraint']['room type'] == 'not shared room' and res['room type'].values[0] == 'Shared room': + return False, f"The room type should be {question['local_constraint']['room type']}." + # "shared room", "not shared room", "private room", "entire room" + elif question['local_constraint']['room type'] == 'shared room' and res['room type'].values[0] != 'Shared room': + return False, f"The room type should be {question['local_constraint']['room type']}." + + elif question['local_constraint']['room type'] == 'private room' and res['room type'].values[0] != 'Private room': + return False, f"The room type should be {question['local_constraint']['room type']}." + + elif question['local_constraint']['room type'] == 'entire room' and res['room type'].values[0] != 'Entire home/apt': + return False, f"The room type should be {question['local_constraint']['room type']}." + + return True, None + + +def evaluation(query_data, tested_data): + return_info = {} + return_info['valid_cuisine'] = is_valid_cuisine(query_data, tested_data) + return_info['valid_room_rule'] = is_valid_room_rule(query_data, tested_data) + return_info['valid_transportation'] = is_valid_transportation(query_data, tested_data) + return_info['valid_room_type'] = is_valid_room_type(query_data, tested_data) + return_info['valid_cost'] = (bool(get_total_cost(query_data, tested_data) <= query_data['budget']), None) + return return_info + +def boolean_evaluation(query_data, tested_data): + return_info = {} + return_info['valid_cuisine'] = is_valid_cuisine(query_data, tested_data) + return_info['valid_room_rule'] = is_valid_room_rule(query_data, tested_data) + return_info['valid_transportation'] = is_valid_transportation(query_data, tested_data) + return_info['valid_room_type'] = is_valid_room_type(query_data, tested_data) + return_info['valid_cost'] = (bool(get_total_cost(query_data, tested_data) <= query_data['budget']), None) + for key in return_info: + if return_info[key][0] == False: + print(key) + return False + return True + diff --git a/evaluation/scored/1_validation_two-stage_1.jsonl b/evaluation/scored/1_validation_two-stage_1.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..5a24715e5b4859da974769c064a033f25f01e834 --- /dev/null +++ b/evaluation/scored/1_validation_two-stage_1.jsonl @@ -0,0 +1 @@ +{"Delivery Rate": 0.8944444444444445, "Commonsense Constraint Micro Pass Rate": 0.6111111111111112, "Commonsense Constraint Macro Pass Rate": 0.027777777777777776, "Hard Constraint Micro Pass Rate": 0.1523809523809524, "Hard Constraint Macro Pass Rate": 0.10555555555555556, "Final Pass Rate": 0.005555555555555556} diff --git a/evaluation/scored/textbox_validation_two-stage_1.jsonl b/evaluation/scored/textbox_validation_two-stage_1.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..5a24715e5b4859da974769c064a033f25f01e834 --- /dev/null +++ b/evaluation/scored/textbox_validation_two-stage_1.jsonl @@ -0,0 +1 @@ +{"Delivery Rate": 0.8944444444444445, "Commonsense Constraint Micro Pass Rate": 0.6111111111111112, "Commonsense Constraint Macro Pass Rate": 0.027777777777777776, "Hard Constraint Micro Pass Rate": 0.1523809523809524, "Hard Constraint Macro Pass Rate": 0.10555555555555556, "Final Pass Rate": 0.005555555555555556} diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc1b7ec17b65d48273a1b8e593a95eb2f7dda1f4 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +datasets==2.16.1 +gradio==3.50.2 +huggingface-hub==0.20.2 \ No newline at end of file diff --git a/tools/__init__.py b/tools/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tools/__pycache__/__init__.cpython-39.pyc b/tools/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6d91ca442877eb76a3dfe696198a62ef52e0a345 Binary files /dev/null and b/tools/__pycache__/__init__.cpython-39.pyc differ diff --git a/tools/accommodations/.ipynb_checkpoints/test-checkpoint.ipynb b/tools/accommodations/.ipynb_checkpoints/test-checkpoint.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..ea962372c0df8769bde1c8ee6515748c5b5c1287 --- /dev/null +++ b/tools/accommodations/.ipynb_checkpoints/test-checkpoint.ipynb @@ -0,0 +1,4919 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "ad7592e7", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_2459435/230780042.py:2: DtypeWarning: Columns (25) have mixed types. Specify dtype option on import or set low_memory=False.\n", + " data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/Airbnb_Open_Data.csv')\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/Airbnb_Open_Data.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "f97916a9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idNAMEhost idhost_identity_verifiedhost nameneighbourhood groupneighbourhoodlatlongcountry...service feeminimum nightsnumber of reviewslast reviewreviews per monthreview rate numbercalculated host listings countavailability 365house_ruleslicense
01001254Clean & quiet apt home by the park80014485718unconfirmedMadalineBrooklynKensington40.64749-73.97237United States...$19310.09.010/19/20210.214.06.0286.0Clean up and treat the home the way you'd like...NaN
11002102Skylit Midtown Castle52335172823verifiedJennaManhattanMidtown40.75362-73.98377United States...$2830.045.05/21/20220.384.02.0228.0Pet friendly but please confirm with me if the...NaN
21002403THE VILLAGE OF HARLEM....NEW YORK !78829239556NaNEliseManhattanHarlem40.80902-73.94190United States...$1243.00.0NaNNaN5.01.0352.0I encourage you to use my kitchen, cooking and...NaN
31002755NaN85098326012unconfirmedGarryBrooklynClinton Hill40.68514-73.95976United States...$7430.0270.07/5/20194.644.01.0322.0NaNNaN
41003689Entire Apt: Spacious Studio/Loft by central park92037596077verifiedLyndonManhattanEast Harlem40.79851-73.94399United States...$4110.09.011/19/20180.103.01.0289.0Please no smoking in the house, porch or on th...NaN
..................................................................
1025946092437Spare room in Williamsburg12312296767verifiedKrikBrooklynWilliamsburg40.70862-73.94651United States...$1691.00.0NaNNaN3.01.0227.0No Smoking No Parties or Events of any kind Pl...NaN
1025956092990Best Location near Columbia U77864383453unconfirmedMifanManhattanMorningside Heights40.80460-73.96545United States...$1671.01.07/6/20150.022.02.0395.0House rules: Guests agree to the following ter...NaN
1025966093542Comfy, bright room in Brooklyn69050334417unconfirmedMeganBrooklynPark Slope40.67505-73.98045United States...$1983.00.0NaNNaN5.01.0342.0NaNNaN
1025976094094Big Studio-One Stop from Midtown11160591270unconfirmedChristopherQueensLong Island City40.74989-73.93777United States...$1092.05.010/11/20150.103.01.0386.0NaNNaN
1025986094647585 sf Luxury Studio68170633372unconfirmedRebeccaManhattanUpper West Side40.76807-73.98342United States...$2061.00.0NaNNaN3.01.069.0NaNNaN
\n", + "

102599 rows × 26 columns

\n", + "
" + ], + "text/plain": [ + " id NAME \n", + "0 1001254 Clean & quiet apt home by the park \\\n", + "1 1002102 Skylit Midtown Castle \n", + "2 1002403 THE VILLAGE OF HARLEM....NEW YORK ! \n", + "3 1002755 NaN \n", + "4 1003689 Entire Apt: Spacious Studio/Loft by central park \n", + "... ... ... \n", + "102594 6092437 Spare room in Williamsburg \n", + "102595 6092990 Best Location near Columbia U \n", + "102596 6093542 Comfy, bright room in Brooklyn \n", + "102597 6094094 Big Studio-One Stop from Midtown \n", + "102598 6094647 585 sf Luxury Studio \n", + "\n", + " host id host_identity_verified host name neighbourhood group \n", + "0 80014485718 unconfirmed Madaline Brooklyn \\\n", + "1 52335172823 verified Jenna Manhattan \n", + "2 78829239556 NaN Elise Manhattan \n", + "3 85098326012 unconfirmed Garry Brooklyn \n", + "4 92037596077 verified Lyndon Manhattan \n", + "... ... ... ... ... \n", + "102594 12312296767 verified Krik Brooklyn \n", + "102595 77864383453 unconfirmed Mifan Manhattan \n", + "102596 69050334417 unconfirmed Megan Brooklyn \n", + "102597 11160591270 unconfirmed Christopher Queens \n", + "102598 68170633372 unconfirmed Rebecca Manhattan \n", + "\n", + " neighbourhood lat long country ... \n", + "0 Kensington 40.64749 -73.97237 United States ... \\\n", + "1 Midtown 40.75362 -73.98377 United States ... \n", + "2 Harlem 40.80902 -73.94190 United States ... \n", + "3 Clinton Hill 40.68514 -73.95976 United States ... \n", + "4 East Harlem 40.79851 -73.94399 United States ... \n", + "... ... ... ... ... ... \n", + "102594 Williamsburg 40.70862 -73.94651 United States ... \n", + "102595 Morningside Heights 40.80460 -73.96545 United States ... \n", + "102596 Park Slope 40.67505 -73.98045 United States ... \n", + "102597 Long Island City 40.74989 -73.93777 United States ... \n", + "102598 Upper West Side 40.76807 -73.98342 United States ... \n", + "\n", + " service fee minimum nights number of reviews last review \n", + "0 $193 10.0 9.0 10/19/2021 \\\n", + "1 $28 30.0 45.0 5/21/2022 \n", + "2 $124 3.0 0.0 NaN \n", + "3 $74 30.0 270.0 7/5/2019 \n", + "4 $41 10.0 9.0 11/19/2018 \n", + "... ... ... ... ... \n", + "102594 $169 1.0 0.0 NaN \n", + "102595 $167 1.0 1.0 7/6/2015 \n", + "102596 $198 3.0 0.0 NaN \n", + "102597 $109 2.0 5.0 10/11/2015 \n", + "102598 $206 1.0 0.0 NaN \n", + "\n", + " reviews per month review rate number calculated host listings count \n", + "0 0.21 4.0 6.0 \\\n", + "1 0.38 4.0 2.0 \n", + "2 NaN 5.0 1.0 \n", + "3 4.64 4.0 1.0 \n", + "4 0.10 3.0 1.0 \n", + "... ... ... ... \n", + "102594 NaN 3.0 1.0 \n", + "102595 0.02 2.0 2.0 \n", + "102596 NaN 5.0 1.0 \n", + "102597 0.10 3.0 1.0 \n", + "102598 NaN 3.0 1.0 \n", + "\n", + " availability 365 house_rules \n", + "0 286.0 Clean up and treat the home the way you'd like... \\\n", + "1 228.0 Pet friendly but please confirm with me if the... \n", + "2 352.0 I encourage you to use my kitchen, cooking and... \n", + "3 322.0 NaN \n", + "4 289.0 Please no smoking in the house, porch or on th... \n", + "... ... ... \n", + "102594 227.0 No Smoking No Parties or Events of any kind Pl... \n", + "102595 395.0 House rules: Guests agree to the following ter... \n", + "102596 342.0 NaN \n", + "102597 386.0 NaN \n", + "102598 69.0 NaN \n", + "\n", + " license \n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "... ... \n", + "102594 NaN \n", + "102595 NaN \n", + "102596 NaN \n", + "102597 NaN \n", + "102598 NaN \n", + "\n", + "[102599 rows x 26 columns]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "e21af5d1", + "metadata": {}, + "outputs": [], + "source": [ + "flight = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/flights/clean_Flights_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "966feef9", + "metadata": {}, + "outputs": [], + "source": [ + "flight = flight.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "3f4fe062", + "metadata": {}, + "outputs": [], + "source": [ + "data_dict = data.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "33213ac0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[2, '2022-04-04', '15:14', '16:36', 251.0, 'Durango', 'Denver', 100]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "flight['data'][2]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "9cef6161", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "nan\n" + ] + } + ], + "source": [ + "print(str(data_dict['data'][3][24]))" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "c5f81f43", + "metadata": {}, + "outputs": [], + "source": [ + "city_set = set()\n", + "cnt = 0\n", + "for unit in data_dict['data']:\n", + " if str(unit[24]) != 'nan':\n", + " cnt += 1" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "533a5aa6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "50468" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cnt" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "bfce5f56", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "set()" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "city_set" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "230b760c", + "metadata": {}, + "outputs": [ + { + "ename": "ValueError", + "evalue": "Sample larger than population or is negative", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[12], line 3\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mrandom\u001b[39;00m\n\u001b[1;32m 2\u001b[0m city_set \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(city_set)\n\u001b[0;32m----> 3\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[43mrandom\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample\u001b[49m\u001b[43m(\u001b[49m\u001b[43mcity_set\u001b[49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m)\u001b[49m)\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/random.py:449\u001b[0m, in \u001b[0;36mRandom.sample\u001b[0;34m(self, population, k, counts)\u001b[0m\n\u001b[1;32m 447\u001b[0m randbelow \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_randbelow\n\u001b[1;32m 448\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;241m0\u001b[39m \u001b[38;5;241m<\u001b[39m\u001b[38;5;241m=\u001b[39m k \u001b[38;5;241m<\u001b[39m\u001b[38;5;241m=\u001b[39m n:\n\u001b[0;32m--> 449\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mSample larger than population or is negative\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 450\u001b[0m result \u001b[38;5;241m=\u001b[39m [\u001b[38;5;28;01mNone\u001b[39;00m] \u001b[38;5;241m*\u001b[39m k\n\u001b[1;32m 451\u001b[0m setsize \u001b[38;5;241m=\u001b[39m \u001b[38;5;241m21\u001b[39m \u001b[38;5;66;03m# size of a small set minus size of an empty list\u001b[39;00m\n", + "\u001b[0;31mValueError\u001b[0m: Sample larger than population or is negative" + ] + } + ], + "source": [ + "import random\n", + "city_set = list(city_set)\n", + "print(random.sample(city_set,1))" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "61eddd5f", + "metadata": {}, + "outputs": [ + { + "ename": "AttributeError", + "evalue": "'dict' object has no attribute 'to_dict'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[12], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m data_dict \u001b[38;5;241m=\u001b[39m \u001b[43mdata\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mto_dict\u001b[49m(orient \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124msplit\u001b[39m\u001b[38;5;124m'\u001b[39m)\n", + "\u001b[0;31mAttributeError\u001b[0m: 'dict' object has no attribute 'to_dict'" + ] + } + ], + "source": [ + "data_dict = data.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "3292c450", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Unnamed: 0',\n", + " 'NAME',\n", + " 'room type',\n", + " 'price',\n", + " 'minimum nights',\n", + " 'review rate number',\n", + " 'house_rules',\n", + " 'maximum occupancy',\n", + " 'city']" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_dict['columns']" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "id": "cfaa21d9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "5047" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(data_dict['data'])" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "2980362d", + "metadata": {}, + "outputs": [], + "source": [ + "type_set = set()\n", + "for unit in data_dict['data']:\n", + " type_set.add(unit[2])" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "f5e36fbb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Entire home/apt', 'Private room', 'Shared room'}" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "type_set" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "bf1231c4", + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'data_dict' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[15], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mdata_dict\u001b[49m[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mdata\u001b[39m\u001b[38;5;124m'\u001b[39m][\u001b[38;5;241m147\u001b[39m]\n", + "\u001b[0;31mNameError\u001b[0m: name 'data_dict' is not defined" + ] + } + ], + "source": [ + "data_dict['data'][147]" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "f993b894", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "set()" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "type_set" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "916e9470", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1 NAME\n", + "7 lat\n", + "8 long\n", + "13 room type\n", + "15 price\n", + "17 minimum nights\n", + "21 review rate number\n", + "24 house_rules\n" + ] + } + ], + "source": [ + "for idx, unit in enumerate(data_dict['columns']):\n", + " if unit in ['NAME','lat', 'long', 'room type', 'price','minimum nights','review rate number','house_rules']:\n", + " print(idx,unit)" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "id": "1213484d", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "51764c1a3739416289913ec613816cc7", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "0it [00:00, ?it/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_3241846/557604333.py:23: DeprecationWarning: Sampling from a set deprecated\n", + "since Python 3.9 and will be removed in a subsequent version.\n", + " tmp_dict[\"city\"] = random.sample(city_set,1)[0]\n" + ] + }, + { + "ename": "ValueError", + "evalue": "Sample larger than population or is negative", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[73], line 23\u001b[0m\n\u001b[1;32m 21\u001b[0m tmp_dict[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mreview rate number\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m unit[\u001b[38;5;241m21\u001b[39m]\n\u001b[1;32m 22\u001b[0m tmp_dict[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhouse_rules\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m unit[\u001b[38;5;241m24\u001b[39m]\n\u001b[0;32m---> 23\u001b[0m tmp_dict[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcity\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[43mrandom\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample\u001b[49m\u001b[43m(\u001b[49m\u001b[43mcity_set\u001b[49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m)\u001b[49m[\u001b[38;5;241m0\u001b[39m]\n\u001b[1;32m 24\u001b[0m new_data\u001b[38;5;241m.\u001b[39mappend(tmp_dict)\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/random.py:449\u001b[0m, in \u001b[0;36mRandom.sample\u001b[0;34m(self, population, k, counts)\u001b[0m\n\u001b[1;32m 447\u001b[0m randbelow \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_randbelow\n\u001b[1;32m 448\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;241m0\u001b[39m \u001b[38;5;241m<\u001b[39m\u001b[38;5;241m=\u001b[39m k \u001b[38;5;241m<\u001b[39m\u001b[38;5;241m=\u001b[39m n:\n\u001b[0;32m--> 449\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mSample larger than population or is negative\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 450\u001b[0m result \u001b[38;5;241m=\u001b[39m [\u001b[38;5;28;01mNone\u001b[39;00m] \u001b[38;5;241m*\u001b[39m k\n\u001b[1;32m 451\u001b[0m setsize \u001b[38;5;241m=\u001b[39m \u001b[38;5;241m21\u001b[39m \u001b[38;5;66;03m# size of a small set minus size of an empty list\u001b[39;00m\n", + "\u001b[0;31mValueError\u001b[0m: Sample larger than population or is negative" + ] + } + ], + "source": [ + "from tqdm.autonotebook import tqdm\n", + "import random\n", + "new_data = []\n", + "for idx, unit in tqdm(enumerate(data_dict['data'])):\n", + " tmp_dict = {k:\"\" for k in ['NAME','room type', 'price','minimum nights','review rate number','house_rules']}\n", + " tmp_dict[\"NAME\"] = unit[1]\n", + " tmp_dict[\"room type\"] = unit[13]\n", + " if unit[13] == \"Shared room\":\n", + " tmp_dict[\"maximum occupancy\"] = 1\n", + " elif unit[13] == \"Hotel room\":\n", + " tmp_dict[\"maximum occupancy\"] = random.randint(1, 2)\n", + " elif unit[13] == \"Private room\":\n", + " tmp_dict[\"maximum occupancy\"] = random.randint(1, 2)\n", + " elif unit[13] == \"Entire home/apt\":\n", + " try:\n", + " tmp_dict[\"maximum occupancy\"] = random.randint(2, max(3,eval(unit[15].replace(\"$\",\"\").replace(\",\",\"\"))//100))\n", + " except:\n", + " tmp_dict[\"maximum occupancy\"] = random.randint(2, max(3,unit[15]//100))\n", + " tmp_dict[\"price\"] = unit[15].replace(\"$\",\"\").replace(\",\",\"\")\n", + " tmp_dict[\"minimum nights\"] = unit[17]\n", + " tmp_dict[\"review rate number\"] = unit[21]\n", + " tmp_dict[\"house_rules\"] = unit[24]\n", + " tmp_dict[\"city\"] = random.sample(city_set,1)[0]\n", + " new_data.append(tmp_dict)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "fd3e8257", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "102599" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(new_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "bfb243c0", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(new_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "af7e3411", + "metadata": {}, + "outputs": [], + "source": [ + "df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/clean_hotels_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "71d21fea", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NAMEroom typepriceminimum nightsreview rate numberhouse_rulesmaximum occupancycity
0Clean & quiet apt home by the parkPrivate room$96610.04.0Clean up and treat the home the way you'd like...1Des Moines
1Skylit Midtown CastleEntire home/apt$14230.04.0Pet friendly but please confirm with me if the...2Wilmington
2THE VILLAGE OF HARLEM....NEW YORK !Private room$6203.05.0I encourage you to use my kitchen, cooking and...2St. George
3NaNEntire home/apt$36830.04.0NaN2Kalamazoo
4Entire Apt: Spacious Studio/Loft by central parkEntire home/apt$20410.03.0Please no smoking in the house, porch or on th...3Cheyenne
...........................
102594Spare room in WilliamsburgPrivate room$8441.03.0No Smoking No Parties or Events of any kind Pl...1White Plains
102595Best Location near Columbia UPrivate room$8371.02.0House rules: Guests agree to the following ter...2Mosinee
102596Comfy, bright room in BrooklynPrivate room$9883.05.0NaN2Amarillo
102597Big Studio-One Stop from MidtownEntire home/apt$5462.03.0NaN4Binghamton
102598585 sf Luxury StudioEntire home/apt$1,0321.03.0NaN7Flint
\n", + "

102599 rows × 8 columns

\n", + "
" + ], + "text/plain": [ + " NAME room type \n", + "0 Clean & quiet apt home by the park Private room \\\n", + "1 Skylit Midtown Castle Entire home/apt \n", + "2 THE VILLAGE OF HARLEM....NEW YORK ! Private room \n", + "3 NaN Entire home/apt \n", + "4 Entire Apt: Spacious Studio/Loft by central park Entire home/apt \n", + "... ... ... \n", + "102594 Spare room in Williamsburg Private room \n", + "102595 Best Location near Columbia U Private room \n", + "102596 Comfy, bright room in Brooklyn Private room \n", + "102597 Big Studio-One Stop from Midtown Entire home/apt \n", + "102598 585 sf Luxury Studio Entire home/apt \n", + "\n", + " price minimum nights review rate number \n", + "0 $966 10.0 4.0 \\\n", + "1 $142 30.0 4.0 \n", + "2 $620 3.0 5.0 \n", + "3 $368 30.0 4.0 \n", + "4 $204 10.0 3.0 \n", + "... ... ... ... \n", + "102594 $844 1.0 3.0 \n", + "102595 $837 1.0 2.0 \n", + "102596 $988 3.0 5.0 \n", + "102597 $546 2.0 3.0 \n", + "102598 $1,032 1.0 3.0 \n", + "\n", + " house_rules maximum occupancy \n", + "0 Clean up and treat the home the way you'd like... 1 \\\n", + "1 Pet friendly but please confirm with me if the... 2 \n", + "2 I encourage you to use my kitchen, cooking and... 2 \n", + "3 NaN 2 \n", + "4 Please no smoking in the house, porch or on th... 3 \n", + "... ... ... \n", + "102594 No Smoking No Parties or Events of any kind Pl... 1 \n", + "102595 House rules: Guests agree to the following ter... 2 \n", + "102596 NaN 2 \n", + "102597 NaN 4 \n", + "102598 NaN 7 \n", + "\n", + " city \n", + "0 Des Moines \n", + "1 Wilmington \n", + "2 St. George \n", + "3 Kalamazoo \n", + "4 Cheyenne \n", + "... ... \n", + "102594 White Plains \n", + "102595 Mosinee \n", + "102596 Amarillo \n", + "102597 Binghamton \n", + "102598 Flint \n", + "\n", + "[102599 rows x 8 columns]" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "id": "0ec56283", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/clean_hotels_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "id": "5dc27048", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0NAMEroom typepriceminimum nightsreview rate numberhouse_rulesmaximum occupancycity
00Clean & quiet apt home by the parkPrivate room$96610.04.0Clean up and treat the home the way you'd like...1Des Moines
11Skylit Midtown CastleEntire home/apt$14230.04.0Pet friendly but please confirm with me if the...2Wilmington
22THE VILLAGE OF HARLEM....NEW YORK !Private room$6203.05.0I encourage you to use my kitchen, cooking and...2St. George
33NaNEntire home/apt$36830.04.0NaN2Kalamazoo
44Entire Apt: Spacious Studio/Loft by central parkEntire home/apt$20410.03.0Please no smoking in the house, porch or on th...3Cheyenne
..............................
102594102594Spare room in WilliamsburgPrivate room$8441.03.0No Smoking No Parties or Events of any kind Pl...1White Plains
102595102595Best Location near Columbia UPrivate room$8371.02.0House rules: Guests agree to the following ter...2Mosinee
102596102596Comfy, bright room in BrooklynPrivate room$9883.05.0NaN2Amarillo
102597102597Big Studio-One Stop from MidtownEntire home/apt$5462.03.0NaN4Binghamton
102598102598585 sf Luxury StudioEntire home/apt$1,0321.03.0NaN7Flint
\n", + "

102599 rows × 9 columns

\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 NAME \n", + "0 0 Clean & quiet apt home by the park \\\n", + "1 1 Skylit Midtown Castle \n", + "2 2 THE VILLAGE OF HARLEM....NEW YORK ! \n", + "3 3 NaN \n", + "4 4 Entire Apt: Spacious Studio/Loft by central park \n", + "... ... ... \n", + "102594 102594 Spare room in Williamsburg \n", + "102595 102595 Best Location near Columbia U \n", + "102596 102596 Comfy, bright room in Brooklyn \n", + "102597 102597 Big Studio-One Stop from Midtown \n", + "102598 102598 585 sf Luxury Studio \n", + "\n", + " room type price minimum nights review rate number \n", + "0 Private room $966 10.0 4.0 \\\n", + "1 Entire home/apt $142 30.0 4.0 \n", + "2 Private room $620 3.0 5.0 \n", + "3 Entire home/apt $368 30.0 4.0 \n", + "4 Entire home/apt $204 10.0 3.0 \n", + "... ... ... ... ... \n", + "102594 Private room $844 1.0 3.0 \n", + "102595 Private room $837 1.0 2.0 \n", + "102596 Private room $988 3.0 5.0 \n", + "102597 Entire home/apt $546 2.0 3.0 \n", + "102598 Entire home/apt $1,032 1.0 3.0 \n", + "\n", + " house_rules maximum occupancy \n", + "0 Clean up and treat the home the way you'd like... 1 \\\n", + "1 Pet friendly but please confirm with me if the... 2 \n", + "2 I encourage you to use my kitchen, cooking and... 2 \n", + "3 NaN 2 \n", + "4 Please no smoking in the house, porch or on th... 3 \n", + "... ... ... \n", + "102594 No Smoking No Parties or Events of any kind Pl... 1 \n", + "102595 House rules: Guests agree to the following ter... 2 \n", + "102596 NaN 2 \n", + "102597 NaN 4 \n", + "102598 NaN 7 \n", + "\n", + " city \n", + "0 Des Moines \n", + "1 Wilmington \n", + "2 St. George \n", + "3 Kalamazoo \n", + "4 Cheyenne \n", + "... ... \n", + "102594 White Plains \n", + "102595 Mosinee \n", + "102596 Amarillo \n", + "102597 Binghamton \n", + "102598 Flint \n", + "\n", + "[102599 rows x 9 columns]" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "id": "bebb9c93", + "metadata": {}, + "outputs": [], + "source": [ + "filtered_data = data[data.iloc[:, -3].notna()]" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "id": "bd010fc9", + "metadata": {}, + "outputs": [], + "source": [ + "dict_representation = filtered_data.to_dict(orient='split')" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "id": "e84db5c4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "50468" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(dict_representation['data'])" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "id": "31eaadf3", + "metadata": {}, + "outputs": [], + "source": [ + "sample_df = filtered_data.sample(frac=0.1)" + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "id": "33998ec6", + "metadata": {}, + "outputs": [], + "source": [ + "sample_df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/clean_hotels_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "id": "25396015", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "5047" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(sample_df)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "17d054b5", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/clean_hotels_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "64db8d6c", + "metadata": {}, + "outputs": [], + "source": [ + "data_dict = data.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "b32b2f0c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0 Unnamed: 0.1\n", + "1 Unnamed: 0\n", + "2 NAME\n", + "3 room type\n", + "4 price\n", + "5 minimum nights\n", + "6 review rate number\n", + "7 house_rules\n", + "8 maximum occupancy\n", + "9 city\n" + ] + } + ], + "source": [ + "for idx, unit in enumerate(data_dict['columns']):\n", + " print(idx,unit)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "fe415c1c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[0,\n", + " 'Beautiful room upper manhttn.',\n", + " 'Private room',\n", + " 131.0,\n", + " 1.0,\n", + " 2.0,\n", + " 'No smoking. No pets. ',\n", + " 1,\n", + " 'Christiansted']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_dict['data'][0]" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "38cb5c5a", + "metadata": {}, + "outputs": [], + "source": [ + "import random\n", + "new_data = []\n", + "for idx, unit in enumerate(data_dict['data']):\n", + " tmp_dict = {k:j for k,j in zip(['NAME','room type', 'price','minimum nights','review rate number','house_rules','maximum occupancy','city'],unit[1:])}\n", + " if type(unit[4]) == str:\n", + " tmp_dict[\"price\"] = eval(unit[4].replace(\"$\",\"\").replace(\",\",\"\"))\n", + " house_rules_number = random.choice([0,1,1,1,2,2,3])\n", + " tmp_dict['house_rules'] = \" & \".join(x for x in random.sample([\"No parties\",\"No smoking\",\"No children under 10\",\"No pets\",\"No visitors\"],house_rules_number))\n", + " new_data.append(tmp_dict)" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "id": "ae3d551e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'NAME': 'BIG room with bath & balcony in BK!',\n", + " 'room type': 'Private room',\n", + " 'price': 1123.0,\n", + " 'minimum nights': 1.0,\n", + " 'review rate number': 4.0,\n", + " 'house_rules': 'No pets',\n", + " 'maximum occupancy': 2,\n", + " 'city': 'Louisville'}" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_data[2]" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "6fac856c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "We live in close proximity to our neighbors so we are not able to allow parties or large gatherings or late night partying.\n", + "----------\n", + "This is a quiet building and we would only like guests that want quiet and privacy. Absolutely no smoking on the premises.\n", + "----------\n", + "This apartment is located on a third floor, no elevator. Guest must be considered and respectful with the noise level. No stumping or running please.\n", + "----------\n", + "My condo unit is one of three units shared with my fabulous neighbors. I ask for respect that my wood floors are noisy for my downstairs neighbors. Slippers or socks would be preferred.\n", + "----------\n", + "No smoking, No animals—we already have enough! No house parties. The maximum number of guests allowed in this room is two. Additional guests are not allowed unless they're just stopping in for a brief visit—still, please do clear it with me first. I am trustworthy, clean and respectful and I expect my guests to be the same. This is a calm, quiet neighborhood, so we ask that guests please adjust their decibels accordingly. I ask that guests leave rooms the same way they found them, making sure to clean up after cooking, to take hair out of the drains, and to put trash in trashcans. Please make yourself at home and feel free to use all my kitchen stuff, though I do have to play kitchen Nazi with a few items that require special cleaning (wok! cast iron frying pan!). No pets allowed. No smoking. No storage permitted outside of rented room, outside of basket for toiletries in bathroom that I'll point out to you. Guests will please keep perishables in the college-size refrigerator \n", + "----------\n", + "The home is not suitable for pets or children under 16\n", + "----------\n", + "Quietly please. I am on the top floor and have people living in the condo below me. Thanks!!\n", + "----------\n", + "Arrival time can be no later than 10:00PM. No visitors allowed at anytime without prior approval. Overnight guests are only allowed as part of the reservation. Never more than 2 people in this room. No smoking. 11:00 PM is quiet time while watching private room tv is acceptable. No eating meals in the room. It's too small, you'll see what I'm saying, and there's a nice dining table for that. Small snacks are fine. If you cook and/or uses dishes and utensils then please clean them so someone else can use them. Do not leave anything uncleaned in the sink overnight. Shared areas of the home are expected to be maintained after you use them. There are no room services provided other than normal cleaning. Closet and dresser space is provided for your clothes.\n", + "----------\n", + "No pets, no smoking whatsoever, no loud parties. Our building is home to some families with young children, some older folks, and many doctors who work long hours at the local hospitals, so quiet and respect are of utmost importance.\n", + "----------\n", + "No guests/visitors Storage not provided Limited number of things allowed:one-two suitcases The house is quiet and we want to keep it this way. Please pick up after yourself and please keep toilet bowl and shower clean Toilet must be closed when not in use It is requested to take shower and do shaving before bed and keep morning bathroom time to the minimum: others are waiting Additional toilet/sink is on the first floor. No disturbance: please walk slowly on the stairs Keep phone conversation inside your room without using computer speakers\n", + "----------\n", + "Please do not smoke or do drugs in our home, and please do not have parties. There is no glass allowed on the roof (which is on the 9th floor).\n", + "----------\n", + "1. Please clean-up after yourself in the kitchen and keep the living room tidy. 2. Since we go to work/school, please avoid loud noises after 11pm during weekdays. 3. Important: To ensure everyone's safety, guest will be charged the full fee of changing the door knob if key is lost/stolen\n", + "----------\n", + "No pets. No smoking. \n", + "----------\n", + "I kindly ask that you not smoke in the apartment, the public areas outside the main entry doors. Pets are not allowed.\n", + "----------\n", + "No smoking. No pets No visitors Cleaning of rooms & toilets will be down by guest after use and at check out. A surcharge of $50 will be imposed if guests smoke within the property. Sanitary pads are not allowed in the WC. Kitchen utensils are to be washed after use always. If you lose the keys $20 surcharge will be imposed for replacement. Turn off all lights and electronics in your room if not in use or not home.\n", + "----------\n", + "No Parties allow Non smoking\n", + "----------\n", + "Shoes off preferred.\n", + "----------\n", + "This is our home and we request that you treat the apartment and our belongings with respect during your stay. It is a quaint and quiet brownstone and we would appreciate your keeping the volume low for the neighbors.\n", + "----------\n", + "No pets. No smoking inside.\n", + "----------\n", + "No smoking. No parties. Be respectful of our neighbors.\n", + "----------\n", + "NO SMOKING (anything). Please, I beg :-) clean your dishes. They can quickly get crusty!\n", + "----------\n", + "Maximum of 2 people over 21 years of age may stay in this studio. There is a one week minimum stay and there is little if any parking available. Sorry, no children and no pets. This place is best for people visiting Boston for conferences, research, or being near family. It is not a resort and there are strict condominium rules about quiet and privacy.\n", + "----------\n", + "Please remove the shoes in the house.\n", + "----------\n", + "With respect to the property and other tenants\n", + "----------\n", + "These are prohibited: -No Smoking -No Pets -No Bed Bugs- (If you have any suspicion that you have been in a place that has bed bugs, please do not come to our home.) A full refund will be offered. Bedrooms: -Leave the room in the same condition that you found it. -\"Sleeping\" quiet hours are from 9:00PM to 9:00AM. At all other times, both guests and hosts will be considerate of noise. -The bedroom is your personal space while you are a guest here. We will not tamper with any of your belongings without your permission. -As hosts, we reserve the right to pass through the upstairs bedroom to access the storage closet. We will only access this with the guest's permission or if the guest is not inhabiting the space. Common Spaces: -Guests can use the \"Orange Room.\" -Guests can use the Living Room. Kitchen: -Guests can warm up food in the microwave. -Guests can store food in the fridge. A key can be issued to a guest, to be returned upon departure. If something breaks: If something br\n", + "----------\n", + "The usual: no smoking, no parties, no pets (sadly)! Please remove shoes upon entering the apartment, and be mindful of neighbors. It's a quiet building at any hour of the day, so do try to preserve the status quo. Thank you!\n", + "----------\n", + "Please treat our house as you would treat your own (assuming that it is good). Please clean up after yourself. Kindly remove your shoes by the door, slippers are welcome (if they have not been treading the outdoors). If you use the kitchen, please wipe down the stove and counter-tops and clean the dishes in the sink to prevent critters from visiting you at night. Laundry is available free of charge just next to the kitchen, we have a washer and dryer. Clean bedding will be provided for you when you check in, and cleaned after you check out. We will not be responsible for personal accidents or sickness, we would ask you to clean up after yourself. If you plan a lengthy stay, we can wash your sheets once a week. If you'd like additional washing, please wash your sheets along with your other laundry. A key will be provided to you for your bedroom should you want to lock anything up.\n", + "----------\n", + "There will be a contract exchange for this property which will include such things as keeping noise to respectful level, no more than six renters at a time, no pets, no smoking. Must have a credit card to put on file in case of damages. Must provide copy of license or passport. **All people are counted including infants toward the number in your group *** We will decline alterations that are made after you check in the unit. We follow the cancelation policy. **** Lost keys will be charged a $200 fee *****No parties\n", + "----------\n", + "Sorry, but no pets or smoking.\n", + "----------\n", + "• Check-in time is 4PM. • No parties or events • Not suitable for pets • No smoking No parties, no outside visitors and no overnight quests without prior approval Do not engage in illegal activities anywhere on the property Please do not leave out any food that will attract uninvited pests Please no smoking We trust you will be a courteous guest. Please feel free to write us with any questions or requests.\n", + "----------\n", + "Take shoes off when you come in\n", + "----------\n", + "Please respect our neighbors and keep the noise level at a respectful level. While we hear very little from our downstairs neighbor, she hears our sounds easily.\n", + "----------\n", + "NO SMOKING ON PREMISES! NO PARTY! A printed house rule will be provided. Please be respectful to others when both rooms are booked. Non-registered guest may not stay overnight. 11AM check-out (firm) and check-in time is between 3-9PM. No check-in later than 9PM.\n", + "----------\n", + "No smoking. No parties. No drugs. No pets. Please consider our neighbors and be respectful of them. Limit the noise level - especially at night. Thank you in advance!\n", + "----------\n", + "We're happy to be flexible with check-in and check-out times, so let us know what you need. We expect guests to be courteous and respectful, and we will do the same. We like to coordinate schedules for the bathroom on weekday mornings - we're both typically out of the house by 9am. Since it is a small space that we share, please let us know in advance if you would like to have any visitors. No need to wash your sheets or towels when you leave - we're happy to handle that for you! Please alert us immediately to any damage. Thank you!\n", + "----------\n", + "Some general information about the apartment. Please be respectful to the neighbors during your stay. Try to keep it relatively quite, especially at night. Strict no parties or entertainment policy. No additional guests are allowed outside of reservation. No smoking inside the apartment or hallway. No pets allowed in the apartment. Unfortunately no young children as the house is not equipped for children under 10. When making a booking - please have a verified email address and phone number on your airbnb account. Respect and treat the apartment as your own and how you would expect others to treat yours. Please communicate with us as soon as possible, should something go wrong during your stay, so we can try to fix it as soon as possible. Once you've confirmed the booking, please respect the apartment and don't hesitate to make it your own. We want you to feel like you are at home, so to sum it all up.. don't do things you wouldn't do at your own place We look forward to welcoming yo\n", + "----------\n", + "-Remove shoes -be sure to lock the front door when entering or leaving the house -be reasonably quiet during sleeping hours - clean up after yourself in common areas like kitchen and bathroom -Good communication is key - There may be other guests staying and you will be sharing the bathroom with the host and one other guest. Please tell me a little bit about yourself and your purpose for the trip. Are you traveling for work, visiting friends in this area, or a tourist on vacation? This is a friendly household, reasonably quiet. -We expect guests to be reasonably quiet coming in and out before (9AM and after 10PM. -No smoking -No pets - For safety reasons please do not invite other people to our place. -Ask if you need anything, I will be providing you with towels, shampoo, conditioner, body wash, lotion, hair dryer. Self serve breakfast items will be provided as well, Coffee, tea, milk, half and half, yogurt, english muffins, with jam and butter, fresh fruits, instant oatmeal, and ce\n", + "----------\n", + "This is a non-smoking, pet friendly house. Please don't let the cats out.\n", + "----------\n", + "I spent a lot of time and effort renovating my property, so I ask that you respect it as your own. Please be cognizant of neighbors - no loud music, no parties, and no people who aren't a part of the reservation should be staying overnight. Please leave all used sheets/towels in the bathroom. * No SMOKING in the unit * No PETS\n", + "----------\n", + "Please, no smoking inside the house or on the property. Cleanliness is a must, as we would be sharing a bathroom & kitchen. It is expected that you would clean the tub after each use; be professional & respectful at all times. No guests are allowed to stay overnight if not checked-in prior to your arrival and have valid identification upon arrival . We will all clean up the kitchen as we use it (dishwasher is available). Please have identification to verify your identity. No pets.\n", + "----------\n", + "1. No additional guests not part of the reservation in the building at all. 2. No Pets 3. No Smoking 4. No Children under 10. (The house is not child proof) 5. Remove your shoes 6. Check in is 3-11pm 7. Check out is 10am *early check in or late check out must be arranged before the reservation starts and may not be accommodated* 8. The bathroom is a shared space, keep the sink clear, there is limited room for your bath products in the shower. 9. No Parties\n", + "----------\n", + "I expect my guests to act as though they were in their own home. Make yourself comfortable. Enjoy the city. Put the toilet seat down. :) \n", + "----------\n", + "Be respectful. Please make sure the door is locked behind you when you leave. No shoes in the house. Slippers provided upon request. No drugs. No excessive alcohol use. No unauthorized guests.\n", + "----------\n", + "Maintain cleanliness . Please carry all the necessary items that is required for your stay , host cannot provide any of it . Also can accomodate females who are veg and eggatarians only\n", + "----------\n", + "- $150 Pet Fee - 14.45% Tax Will be adjusted into price once confirmed!\n", + "----------\n", + "Please no smoking.\n", + "----------\n", + "LOOKING FOR SOMEONE CLEAN/RESPONSIBLE. NO PETS, NO SMOKERS.\n", + "----------\n", + "No pets please - and no smoking in the apartment. Other than that, we're flexible! We'll be here to answer any other questions you might have!\n", + "----------\n", + "Fresh linens and towels are provided. No smoking, no pets, and no small children allowed. Please be respectful of our neighbors and keep the noise level to a minimum. Please clean and keep the place neat. No more than 2 guests allowed and please do not bring visitors without first getting our permission. No parties. You are otherwise welcome to make yourselves at home.\n", + "----------\n", + "Have fun, but please be respectful of your neighbors with volume. Any noise complaints will will be forwarded to me and result in a negative review and requirement to leave the next day.\n", + "----------\n", + "1. The unit is not meant for guests, families, kids, or dogs. It is ideal for a couple or corporate person in town for temporary work. 2. The heat is controlled from thermostats in the living room and bedroom. It may be set according to your needs. 3. The AC (air conditioning/cool air) has two zones. Please run only when in the unit. Each zone must be fully turned off when you leave the unit. 4. Please do not access, hallway closet, my two closets or bureau which contain my clothes. If you need to hang clothes, please feel free. 5. Please No fires in either fireplace. 6. If you run the steam shower, do not put your feet within 2 feet of the steam nozzle......after all, hot steam comes from the nozzle! Use your head. If you have never been in a steam shower, do not use it! After using the shower, leave the door slightly open for ventilation! 7. I usually leave fresh fruit for my guests. Please respect my personal pantry. Feel free to use any condiments. 8. Please also leave window s\n", + "----------\n", + "- This is a quiet, residential building. Guest need to be conscious of this. - Hostess must know your arrival time at least 2 days in advance\n", + "----------\n", + "-No shoes (leave at the entrance door) -No loud noises after 10 pm -No bike -NO SMOKERS/SMOKING/DRUG USE\n", + "----------\n", + "Please no smoking in the house, porch or on the property (you can go to the nearby corner). Reasonable quiet after 10:30 pm. Please remove shoes in the house.\n", + "----------\n", + "House Rules for Guests: Since the house is old (1898) the guest rooms have no locks on the doors. The bathrooms have locks on the doors. Guests are expected to knock on closed doors and to leave the bath doors open when exiting. All rooms have air conditioners, fans and heaters - but we do ask guests to keep them off when not in the room. No food is allowed in the guest rooms. Food is to be consumed in the kitchen, dining room - or outside porch as weather permits. A guest refrigerator and microwave are available for use in the basement. Please hang towels up in your room - please do not leave wet towels on the furniture. No pets allowed. Outdoor smoking only.\n", + "----------\n", + "Please remember that this is a residential building. The building rules, apartment occupancy restrictions, and the year-round tenants must be respected.\n", + "----------\n", + "Hello! You will be sharing the apartment in a private room with my roommate and our very friendly dog. Also, the door to the room is a curtain, not a full door, so it is less private. Please understand this situation before booking. We have had dozens of other guests who have all had a great time!\n", + "----------\n", + "This is our home, not a hotel so we expect guests to leave it as clean as they found it. No smoking in the house. No pets are allowed.\n", + "----------\n", + "- Please make sure to leave the place clean and organized so as to let other guests enjoy the space. - Cleaning fee covers washing of laundry, vacuuming of floors, changing sheets/bedding, etc. It also covers replacement of toiletry and essentials. - Absolutely NO smoking, NO parties, and please take shoes off upon entering the apt. Thank you and I look forward to providing you with an excellent stay! -James\n", + "----------\n", + "Yes please: • make yourself at home; • ask questions. Please no: • shoes inside; • smoking; • food in the bedroom; • parties; • pets.\n", + "----------\n", + "Please bring your own daily essentials, I provide nothing as of now. Please take off your shoes when you get in the house. Please don't bring any friends over unless they are confirmed guests. Please keep quiet after midnight. When booking for a weekend, please book on a Friday and for at least 3 nights, as I will not be around on Saturdays and Sundays to accept bookings. If neighbors asks, just tell them you're here to visit a friend. Don't tell then your guests from AirBNB. Please let me know exactly what time you will get to my house, or at least an hour ahead. I am not always at home so I will have to go hand keys to you and I will only have limited time. Thanks!\n", + "----------\n", + "**Complimentary breakfast is available only by request.\n", + "----------\n", + "No smoking, No pets. No shoes in the house. Visitors are permitted in the common area only. Please use the dining room to enjoy your meals. Also refrain using an electronic device while having your meal. Quiet time between 10:00pm-6:00am.\n", + "----------\n", + "No smoking --- only smoking on the patio with doors and windows closed is permitted. No parties or extra guests without prior consent. This is a quiet building with professionals living on each floor. Use of kitchen is permitted, but dishes must be put away (loaded in dishwasher) and pots and pans cleaned before leaving. A VirtuoLine Nespresso makers is available for guest use --- coffee pods are provided for you to enjoy. Instructions are on-site. Use of washer/dryer is NOT permitted.\n", + "----------\n", + "NO Smoking. No Pets.\n", + "----------\n", + "不抽烟,不带宠物,不能带其他人入屋\n", + "----------\n", + "No kitchen access. No wifi - I do have a hot spot. No key given to you. No extra guest allowed.\n", + "----------\n", + "No Pets allowed. No smoking.\n", + "----------\n", + "No smoking please. No pets.\n", + "----------\n", + "No pets, and no smoking indoors.\n", + "----------\n", + "This property is a quiet, family-friendly living space. Pricing includes required City of Boston excise tax of 14.45%\n", + "----------\n", + "Be considerate of others. Quiet hours after 10 pm. No smoking. Super Strict 30 Days: 50% refund up until 30 days prior to arrival, except fees Note: The Super Strict cancellation policy applies to special circumstances and is by invitation only. Cleaning fees are always refunded if the guest did not check in. The Airbnb service fee is non-refundable. If there is a complaint from either party, notice must be given to Airbnb within 24 hours of check-in. Airbnb will mediate when necessary, and has the final say in all disputes. A reservation is officially canceled when the guest clicks the cancellation button on the cancellation confirmation page, which they can find in Dashboard > Your Trips > Change or Cancel. Cancellation policies may be superseded by the Guest Refund Policy, safety cancellations, or extenuating circumstances. Please review these exceptions. Applicable taxes will be retained and remitted.\n", + "----------\n", + "Check in: 3pm; Check out: 12pm unless otherwise allowed. No pets please. No parties. NO smoking in or around the property. You can use anything that is inside the apartment so long as you don't break it or bring it outside the apartment. Feel free to read any book.\n", + "----------\n", + "Guests only have access to the first floor bedroom and bathroom. The rest of the house is off limits. Guests who stay a week or more may use the laundry in the basement for free. Please do not apply hair or beard dye in the bathroom as it was recently renovated. Please feel free to send me any special requests and I will try to honor them.\n", + "----------\n", + "No smoking! No party!\n", + "----------\n", + "Make yourself at home, and of course, feel free to use anything in the house, but please be respectful of the space and make sure to put things back in their rightful locations. Please wash any pots/pans/dishes that you use. No guests outside of those identified in your party. We also kindly ask that you keep loud noise to a minimum in the late evening and, needless to say, parties are not permitted.\n", + "----------\n", + "• Check-in time is 12PM (noon). • Check-in time is 12PM (noon). Please no smoking and no pets in the apartment\n", + "----------\n", + "We kindly ask that you clean up after yourselves, especially in the kitchen. We will have someone clean the linens, the bathroom, and floors after your stay.\n", + "----------\n", + "There will be a small lockbox at the building entrance (on your left side if you are facing the door). The code for this lockbox will be send to you after you have confirmed your reservation. Inside the lockbox you will find 2 keys, one that works for both of the building doors ,and another for the apartment's door). NO smoking. *We are not responsible for any accidents, injuries, or illness that occurs while on the premises; or for the loss of guests' personal belongings or valuables. By accepting this reservation, it is agreed that all guests are expressly assuming the risk of any harm to themselves arising from their use of the premises or to others whom they invite to use the premises.\n", + "----------\n", + "For instant book, only 4 or less guests. Otherwise send me a message, and we can chat about it. Smoking allowed on balcony or roof deck.\n", + "----------\n", + "Clean, no house parties, no smoking, respectful of owner's home :)\n", + "----------\n", + "No Smoking. Cats Allowed With Fee.\n", + "----------\n", + "Tenant Agreement: House Rules: The landlord reserves the right to inspect the unit to enforce the terms of this agreement at any time. No smoking. No parties. No pets. Reduced noise after 11pm. No sublet. No more than eight people to reside on premises unless given written approval. No refunds to be given for shortened stays. No refunds to be given for any cable or internet WI-FI outages. You are responsible for safe keeping of your own valuables. The landlord is not responsible for lost items.\n", + "----------\n", + "Relaxed environment, but keeping it clean is a priority. Smoking and alcohol are not allowed in the room. Smoking is not allowed anywhere in the building. No loud music or noise is allowed after 10pm.\n", + "----------\n", + "I expect guests to be respectful, clean, and caring of the space and it's belongings. No smoking in the house. No pets please. (I love them, but the space isn't conducive for them). By booking this space you are accepting responsibility for all damages caused by you and/or your guest(s) to this house and/or it's contents. Please remove shoes at the front foyer. I ask that guests do not use any of the food in the refrigerator or cabinets. You are welcome to purchase your own food to store and to cook with if you'd like. Please only use kitchen appliances that you are familiar with using so they are operated correctly and safely. There are paper bags beside the kitchen trash can and these are for recycling of glass, plastic, paper and cardboard.\n", + "----------\n", + "Guests need to understand that this is a private home, not a hotel. Arrival and departure times are flexible with the owner's schedule. \n", + "----------\n", + "• Check-in time is 3:00PM. • check out time is 11:00AM • No parties or events • Not suitable for pets • No smoking You have access to the kitchen (and all common areas), please clean after yourself. Please mind the cat, avoid letting him out. He will be your new best friend and love you instantly if you want him to. I look forward to meeting you and hosting you.\n", + "----------\n", + "No smoking, no pets, and, please, respect our need for quiet after 10 pm. The walls are thick, so reasonable noise after 10 will not travel beyond your room.\n", + "----------\n", + "NO PETS! NO SMOKING ON PREMISES! NO PARTY! No \"DRUGS\"! A printed house rule will be provided. Please be respectful to others when all rooms are booked. 10 AM Check-out and Check-in is between 12 PM (noon) - 3 PM. Late check in after 8 pm is $50, lock out is $50. Respect yourself, Respect others, clean up after yourself. No Smoking/drinking in apt. Thank You! Location Rules: The \"Exact Address Location Is Not Stockton St. It Is 2 Streets Away. It Is Not Disclosed For Security Reasons\" And Is Given Out 24 Hours Prior to Check-in. If This Is a Problem for You, Please STOP Here And Contact Other Hosts for Your Stay. This Is a Part Of My House Rules.\n", + "----------\n", + "House Rules 1. All bookings made at least a week before check in are fully refundable if cancelled within 24 hours of booking. After this, you will receive a 50% refund if you cancel at least 7 days before the start of your trip. 2. Check-in time is any time after 4 pm local time. If the unit is ready earlier, we’ll let you know. Check-out is normally 11 am local time, but we’d be happy to extend it as long as we don’t have a cleaning scheduled. Just let us know. 3. All bookings require a security deposit of at least $300. 4. For security measures we require all guests to provide proof of identification through ID verification on our own website. In order to check in, we'll need a photo of your ID. 5. Don’t let $300 go up in smoke. There's no smoking allowed in any Flatbook and a $300 fine for breaking this rule. 6. Unfortunately we don’t allow pets in most of our apartments. 7. Unless you’re staying in one of our specialty apartments, we don’t allow parties or excessive noise. 8. I\n", + "----------\n", + "Please, No pets No smoking in the building. Thank-you.\n", + "----------\n", + "No Smoking in the Building. \n", + "----------\n", + "- No Smoking In the House. There is a back porch accessible through the kitchen where you can smoke. - We try to keep the house very clean and would like to ask you to please remove your shoes when entering the house so that dirt doesn't trek around the house. There is a shoe cabinet right by the entrance where you can store your shoes. Some slippers will also be provided and can be found inside the shoe cabinet. - Please clean after yourself after you use the bathroom. It is a shared bathroom. The same goes for the kitchen.\n", + "----------\n", + "No smoke\n", + "----------\n", + "treat the property and other tenants with respect\n", + "----------\n", + "•Parties or Gatherings are not permitted. •Please be courteous to the neighbors and keep noise levels low, especially between the hours of 10pm-10am. •Absolutely no smoking in the apartment. Smoking only on the back porch •Overnight guests are not permitted unless included on the initial reservation. •Please help us conserve energy by turning off lights, small appliances, lamps, etc. when not being used. •Please store recyclables separately. •Pets are not permitted at any time. •If you need flexibility around the specified check in or check out times, let us know in advance. •Owner is NOT responsible for any accidents, injuries or illness that occurs while on the premises or its facilities.\n", + "----------\n", + "You can smoke on the back porch. Smallish, well-behaved dogs are welcome.\n", + "----------\n", + "Respect our place please.\n", + "----------\n", + "Please be considerate of the space and the neighbors. Sorry, no parties allowed, this is more of a quiet space. Looking for more towels or need an extra pillow? Don't hesitate to text me! Things happen. If something gets broken, please let me know so I can replace it.\n", + "----------\n", + "- We live in a rowhouse that contains three units. Please be respectful to our neighbors and keep the noise down - Past 11pm, please very quiet if you're still on the deck to respect our neighbors\n", + "----------\n", + "Nothing out of the ordinary...the basic considerations...being reasonably neat and tidy. Please leave shoes in the entranceway. NO SMOKING in apartment or deck. Kitchen is available for breakfast only; I stock the breakfast essentials...coffee, tea, milk, cream, juice, cereal, bread, jelly, and often other items as well. You may use the fridge for beverages and light snacks all day, but no cooking, frying baking of any meal, and no dinner in the house. You may store items in the fridge. I'm insensitive to noise, so there is no need to tip-toe. Plus we are 2 floors apart, you likely won't be hearing me either. I do request that guest be tidy and clean, i.e. dishes not left overnight, etc. I do have a housekeeper a couple of times a month to handle the big stuff.\n", + "----------\n", + "1. Please feel welcome to use our kitchen, bathroom or any other common area but we don allow guest to go in our bedroom. 2. Keep the apartment clean/clean up after yourself 3. We have a dog and a cat, so please have this in mind before staying with us. 4. Respect our pets.\n", + "----------\n", + "COMMON SENSE ----------------- Common sense is the greatest rule :-) We all have it, so lets try to utilize it. FOOD AND DRINK ---------------------- Kitchen is user friendly. Please clean up after yourself. Please eat and drink in the kitchen. No food is permitted in the guest rooms because of the potential for unwanted pests. Only bring water into the room. Feel free to use all the kitchen tools you may find useful but please when you are done, wash it. The host of the house is happy to show you how to use it. TOWELS, SHEETS AND PILLOWS --------------------- Upon your arrival you are given a couple of towels. Laundry service is not offered, there is a laundromat located close by within walking distance. Sheets/Towels are cleaned and changed every week. BATHROOMS -------------------- Please limit your shower to 15 mins (This rule is in effect because previous guest have taken 45 - 60 min showers (to soothe their stress) Not only are you depriving your fellow guest of hot water, \n", + "----------\n", + "Please no smokers or pets. \n", + "----------\n", + "We want our guests to be comfortable and enjoy not just our house but our city. To those ends we welcome inquiries about what to do and where to go. Our guests should feel free to use the kitchen and living room and not feel confined to \"their room\". Store your food in the fridge, eat your meal on the terrace, read a book on the couch or hammock. We request only your general consideration of living with others. Our one hard and fast rule is: No smoking on the property. \n", + "----------\n", + "Stay kinda quiet after 11, don't leave the door open, and you're good to go. Have fun!\n", + "----------\n", + "No Smoking Pets Allowed with Fee.\n", + "----------\n", + "Please note that we are a no smoking environment, and pets are only accepted in certain room types that have direct access to the outside. Please call ahead to make arrangements.\n", + "----------\n", + "No smoking Not suitable for pets No parties or events Check-in time is after 2pm Quiet hours: 10pm-8am - Please refrain from loud noise after 10pm as this is a family neighborhood. Music and voices . - No parties. Although we want your group to have tons of fun, additional unnamed guests at a party will result in a 100% loss of deposit. AGREEMENT This Lease Agreement (the “Agreement\") is made by and between Airbnb host (“Homeowner\") and (“Guest\") as of the date last set forth on the agreement made via the (website hidden). For good and valuable consideration, the sufficiency of which is acknowledged, the parties hereby agree as follows: 1. Property. The property address will be disclosed at time of booking. 2. Rental Party. The rental party shall consist of Adults and Children (under age 18). The maximum number of guests is limited to 2 persons. Additional guests staying the night beyond the agreed upon number is not allowed. Any guests found staying at the house over the agreed num\n", + "----------\n", + "sorry: no smoking no pets no kids no parties ...\n", + "----------\n", + "Respect yourself, respect others, clean up after yourself, no smoking in house, no partying. late check in after 9p.m. and before 9 a.m is $50, lock out is $50 thank you \n", + "----------\n", + "All outside doors including door to the backyard are to remain closed and locked at all times. No smoking in any area including backyard and front porch. Quiet hours are from 10 pm to 8 am. 11:30 on weekend. No parties or guests allowed in the property other than people who book the room. No cooking. Cold foods, salads, sandwiches, microwaveable food only. Clean after yourself. Lost keys replacement $100 (to replace lock)\n", + "----------\n", + "• Check-in time is 4PM. Occassional Get-togethers are ok but no wild parties please. No drinking or drugs.\n", + "----------\n", + "Access to kitchen appliances and cutlery, etc. Food and alcohol not included, we are close to a liquor store, Trader Joes and Whole Foods. No parties, no smoking, no pets, no more than 2 guests. Please treat the place as you would your own.\n", + "----------\n", + "No Smoking No Pets\n", + "----------\n", + "- Respect your neighbors and the living space - Check out by 11am - Check in between 3pm & 7pm\n", + "----------\n", + "Smoke free building. Please, never ever smoke inside the apartment. No guests Allowed, no exception. Microwave use in the kitchen.\n", + "----------\n", + "No smoking inside the apartment, please leave shoes at the door, turn lights off when not in use. No parties.\n", + "----------\n", + "--The building has 5 units in total and all other units are occupied by year-round young professionals who work at the local hospitals, law firms, consulting companies and University professors. Please be mindful of them and act as you would with your year-round neighbors. Please keep quiet, clean and respectful at all hours. --Absolutely NO SMOKING, of any kind, in the apartment or the building's stoop. There is a park with benches across the street if you must have a smoke.\n", + "----------\n", + "I encourage you to use my kitchen, cooking and laundry facilities. There is no additional charge to use the washer/dryer in the basement. No smoking, inside or outside. Come home as late as you want. If you come home stumbling drunk, it's OK the first time. If you do it again, and you wake up me or the neighbors downstairs, we will be annoyed. (Just so you know . . . )\n", + "----------\n", + "There are real beds for eight, one pull out couch, and one single mattress available. Linens, sheets, towels, kitchen staples, breakfast foods, and basic toiletries provided. Games, toys and books are here for your use, make themselves at home. Please leave the house in the condition that you found it. This unit is on the second and third floors of a two-family I own, and I have tenants below. Please be respectful of them, and my neighbors, and keep noise to a minimum after 11pm and before 7am. Thank you!\n", + "----------\n", + "Please remember that this is a residential building. All building rules, hotel occupancy restrictions, and year-round tenants must be respected.\n", + "----------\n", + "Absolutely no smoking in or around apartment. This includes entry way and entire Anderson Place lane. Unfortunately we are not allowed to accept children under 16.\n", + "----------\n", + "The unit is a condo, with another unit upstairs. Please be considerate of our neighbors, and respect the shared spaces (front porch, backyard) and limit any noise after 10 PM. Guests are not allowed to use the bbq or smoker during their stay (sorry!).\n", + "----------\n", + "Please take off your shoes at the front door. Pick up your hair after your shower. The kitchen is not shared. You shall speak either English or Chinese.\n", + "----------\n", + "Be clean, honest and respectful to other people living in the building\n", + "----------\n", + "Smoking: Absolutely no smoking indoors. If you need to smoke please do it on the porch and dispose of cigarette butts in the ashtrays provided. Additional Guests: Please do not arrive with more guests than are booked to stay nor invite visitors at any time. Children: The apartment is not suitable for children under the age of 12. Pets: We will graciously host friendly, well mannered, house trained dogs that are 50 pounds or less. We cannot accommodate cats or other pets. Facilities: Guests are expected to leave spaces clean and tidy after each use. Kitchen use is restricted to light use only: Kettle/Coffee, Microwave, and Refrigerator. Please take this into consideration when planning your stay. Quiqet Time: Please be aware that this is also our home. Quiet time is from 11pm to 6am.\n", + "----------\n", + "Please, be conscious of other residents in the building. Refrain from loud noises in the evening. Thank you!\n", + "----------\n", + "- No smoking, no pets - No parties and please be quiet after 11pm - Fireplace is functional, but for safety reasons please do not use it - If you use the elevator, please close the inner door after you, otherwise other people won't be able to use it - Take your shoes off when you enter the apartment, you can place them into the closet next to the entrance door\n", + "----------\n", + "*Please share with other guests in your reservation. Thanks!* [Security] Unless otherwise specified, building and apartment access is for reserved guests only. Lock doors when coming and going; keep keys and windows secure. [Courtesy] Be mindful of neighbors. No smoking in/around the property. No shoes in the apartment. Pick up after yourself. [Be Green] Turn off lights, electronics and faucets when not in use. Recycling bin (paper, plastic, glass, aluminum) and reusable shopping bags are in the pantry. [Communicate] Please tell me right away if you feel you're having less than a 5-star experience. So many of my trips were made better by caring, thoughtful hosts; it would make me happy to do the same for you.\n", + "----------\n", + "The building is very quiet, so please be respectful to my neighbors. Please do not leave dishes in the sink or dishwasher. Please leave the apartment as you found it. No parties, pets or smoking please. :)\n", + "----------\n", + "Quiet time after midnight. Please turn off the light/AC each time when you go out. :) No Staying overnight in the living room/couch. Glasses/liquor in the living room cabinets are not available. Please don't leave dirty dishes. Please tidy the kitchen when you finished cooking and leave dishes in dry in the dishwasher. Feel free to use the dishwasher. Detergent is under the sink. Thank you!\n", + "----------\n", + "Check-in time is 1PM. Read the manual after you book - it covers everything INCLUDING check in. This manual should come in the check in\n", + "----------\n", + "• Check-in time is 3PM. • Check-out time is 11:00AM. • No parties or events • Not suitable for pets • No smoking No smoking, no drugs, no parties and please, no visiting pets or unannounced visitors. Please lock up door when you go out, and during the heating season, turn down the heat. If you are new to Airbnb, the idea is that I’m not renting a room, but rather sharing my home. I live and work here, and enjoy meeting new people. It's like having old friends visit, not like a hotel. You are welcome to make yourself at home in the common living areas and to use the kitchen, but please leave everything as clean and put away as you have found it. As we will be sharing a bathroom, I appreciate your tidying up and keeping personal items in your room. The cat is not allowed outdoors – he can be sneaky so please don’t leave doors open and keep an eye out for her. You are welcome to the kitchen (and common areas), thank you for cleaning your dishes after using them. I am environmentally fri\n", + "----------\n", + "Please keep shoes off while inside. Food should be kept in the kitchen/dining area. Be mindful of our great neighbors and keep noise to a reasonable level. No pets or smoking, please!\n", + "----------\n", + "Guests to be reasonable; don't make late-night and AM noise, ASK about having pets-- dogs usually OK; cats (due to allergy) usually not OK Children welcome Shared bath has never been a problem No smoking inside. Washer and Line for drying available. Pls. use fridge/stove, etc.\n", + "----------\n", + "For Your CarYup! IT'S JUST THE PARKING SPACE. And it's reasonable but not FREE, and not even a bed is included. No Queen No Real Bed, No Beds at all, but I don't care how few or how many people use the car you park in the space. I'm writing to AIRBNB's Help Desk, to get them to add OTHER to their \"Room Type\" menu, and to add a choice of 0 beds to the pull down menus. Parking in Boston's South End is more scarce than Penthouses or Hen's Teeth. And parking per square foot rents for more than a square foot of air-mattress-for-a-night! Go To https://www.airbnb.com/rooms/\n", + "----------\n", + "Professional building with professional behavior expectations!\n", + "----------\n", + "No shoes and no smoking inside please. No smoking on the porches or around the house. The neighbors below us have a young child with severe asthma. \n", + "----------\n", + "Please observe quiet after 11pm. Please tidy up if you use any dishes. Please no smoking.\n", + "----------\n", + "-Please no pets -Quiet hours are from 10pm - 8am -No smoking inside, outside is fine -Please be respectful of the place, and cleaning up after yourself\n", + "----------\n", + "Please take off your shoes outside of house. Keep clean in the kitchen and bathroom. This room is only for one person. \n", + "----------\n", + "This is a pretty quiet house in a residential neighborhood, so please be respectful of noise. No overnight guests without prior arrangements being made.\n", + "----------\n", + "Non smoker only Guest may not bring car to the area Perfumes, sprays, candles, not allowed Cat in the house Mailing address may not be given to anyone without written permission If we get correspondence on your name, you will be charged $200 Separate recycle from trash (I can help, just ask) Black bag for recycling is in your room, put all in one bag Guests are not allowed The house is quiet as others are studying Please pick up after yourself as a courtesy to others Please don't leave your clothes or towel in the bathroom Any shampoo without name can be used (they are inside the shower) Please take shower at night or afternoon to avoid morning traffic. Use reusable bag (provided) Please don't take disposable plastic bags from stores Food left over must be placed inside kitchen sink for automatic disposal\n", + "----------\n", + "Quiet Respectful Friendly Clean No smoking of any substance on the property No pets Leave things as they were found, clean after yourself when checking out\n", + "----------\n", + "No smoking, no parties. Quiet building. Sorry, no pets.\n", + "----------\n", + "Please respect the residents by keeping noise down and absolutely no smoking. There is no bag storage at the building. Please do not ask the concierges. Thank you.\n", + "----------\n", + "Please do not play any of the guitars in the room.\n", + "----------\n", + "5 star treatment is given and expected.\n", + "----------\n", + "Please no parties, and no loud noise past 11p, out of respect for the neighbors. Please no smoking inside the building. If you cook or otherwise eat in the apartment, please reasonably clean up after yourself.\n", + "----------\n", + "Please do not let any of the animals outside! Quiet hours are from 10 pm - 6:30 am on weekdays, 11 pm - 8:30 am on weekends. Please be considerate and clean up after yourself in the kitchen and bathroom, as they are shared. We use the shower in the shared bathroom, so we appreciate it if you would refrain from lingering there in the mornings. No smoking allowed anywhere on the premises.\n", + "----------\n", + "- We're on the top floor of a multi-family dwelling, we know you'll be respectful and kind to the families downstairs! - We love to read and play board games; we'd love to share our books and games with you, just make sure they go back where you found them. - We invite you to use our kitchen and we're happy to share basics like oil and spices but please provide your own groceries - you'll have your own shelf in the refrigerator. - You're welcome to bring friends back to hang out but we ask that no one that we aren't prepared for spend the night! - Please indulge in our living room's mini theatre system - hook up your computer or phone to the monitor and speaker system with our business speed wifi for a great viewing experience.\n", + "----------\n", + "• Check-in time is 3PM. Clean up after yourself. No smoking indoors. No parties.\n", + "----------\n", + "No smoking, pets or parties please. \n", + "----------\n", + "No loud parties, no smoking\n", + "----------\n", + "We expect that you would treat the house as if it were your own. We would ask that you be respectful of noise after 10p. We expect that if you cook, you may use any of our kitchen utensils and appliances, but they should be cleaned/dishes washed/etc. before leaving the house. When you leave, please strip the bed of sheets and pillowcases, towels, etc, and either leave them on the floor, or if you are feeling helpful, bring them to the laundry room and put them into the washing machine with the provided detergent. Basically, please treat the house as if it were your inlaw's house, and you were visiting for the holidays. Show the house respect, and keep the common areas clean, and it'll be a wonderful experience! \n", + "----------\n", + "No smoking. No pets. \n", + "----------\n", + "I'm a semi kosher vegetarian which means that I don't bring any pork or shelled fish into the house. Chicken/Red meat is fine.\n", + "----------\n", + "Have fun and please be respectful of the place. No parties Please do not smoke inside\n", + "----------\n", + "Please be respectful of our neighbors. No loud parties and music, but have fun!\n", + "----------\n", + "No smoking or additional guests, please.\n", + "----------\n", + "Please treat our home as if it were your own.\n", + "----------\n", + "Please leave the apartment in the same condition it was left to you.\n", + "----------\n", + "Shoes off please Cat can go in or out as he desires, don't worry if you let him out No smoking No drugs or excessive alcohol No pets Please do not light candles We will provide a small basket for your toiletries to bring to and from the bathroom. Please discuss any guests you bring into the household beyond those on the reservation with Orion. No excessive noise and conversations, particularly in the stairwell. Please do not use space in the kitchen unless you have coordinated with Orion or Hannah. Please do not adjust shower head in bath room. We provide eco friendly cleaning supplies if you want to clean beyond our regular cleaning schedule. Please do not use bleach, or clorox.\n", + "----------\n", + "No outdoor shoes within the apartment and loud noises.\n", + "----------\n", + "1.CHECK-IN TIME IS AFTER 3 P.M. EST AND CHECK-OUT IS 11 A.M. EST. 2.This is a NON SMOKING boat. 3.We will not rent to vacationing students or singles under 25 years of age unless accompanied by an adult guardian or parent. 4.DAMAGE WAIVER- A damage waiver of $39 is required. The waiver offers up to $1500 of insurance against accidental damage. You will not be held responsible for damage incurred provided the following provisions are met: (website hidden) intentional damage is done to the boat or its contents. (website hidden) charges are incurred due to contraband, pets or collection of rents or services rendered during the stay. 3.All debris, rubbish and discards are placed in the properly bagged, and soiled dishes are placed cleaned. 4.All keys are left on the kitchen table and unit is left locked. (website hidden) linens are lost or damaged. (website hidden) Early check-in or late check-out, unless approved in advance. 5.PAYMENT - An advance payment equal to 50% of the total is re\n", + "----------\n", + "Respect the neighbors and stay quiet. No smoking. No party. This is very important for us !!!!\n", + "----------\n", + "Treat our apartment as if it were your own =). 1. No pets please. 2. Smoking outside or on the deck only. 3. Please treat the common amenities with respect. 4. We expect you to clean up after yourself.\n", + "----------\n", + "No drinking, no smoking, no parties, no pets, no drugs, no girlfriends or boyfriends moving in. Looking for a quiet, studious, clean person who is looking for a comfortable and affordable place to stay during the school year, work or vacation stay. No children please.\n", + "----------\n", + "Pet Friendly! Smoking outdoors only. In general, we just want you to relax, enjoy yourselves and take advantage of our close proximity to all things Boston. If you follow the simple rule of \"leave things how you found them\" all will be well - common sense stuff.\n", + "----------\n", + "This is my primary residence and biggest investment. Please treat it with care.\n", + "----------\n", + "Since I actually live here for part of the time, the closet space is off limits. Please no shoes in the house!\n", + "----------\n", + "- Please respect noise levels after 9pm\n", + "----------\n", + "NO Smoking Pets Allowed with a $375 non refundable pet fee.\n", + "----------\n", + "House Guidelines for our BnB We are delighted to welcome you. Check in Sun – Thurs by 8PM and Fri, Sat by 9pm. Please bear in mind that this is not a hotel but our home and we are opening it to you. We will do our utmost to make your stay enjoyable and fun. We ask that you take care to respect our home and its appearance. Thank you. Marilyn and Alan 1.ROOMS - The bedroom is yours for the duration of your stay. Be sure to let us know if you need something. Please keep it neat and tidy and take advantage of the closet and bureau for your belongings. We do ask that you turn off lights, air conditioner, fan, etc. when you are not in the room. Thank you. 2.LIGHTS – Please, too, remember to turn off lights on the stairway when returning. 3.KEYS - 2 house keys are provided - Replacement cost is $15 each 4.PARKING – Parking is available on street at all times. 5.SHOES – When the weather is inclement please remove shoes. 6.TOILETRIES - If you need them we can provide basic toiletr\n", + "----------\n", + "We ask that you are respectful of the space you are staying in. Please take off your shoes when you enter to help keep the space clean. Space heaters are available for use but should not be left on if you leave. The space is thickly insulated and sound proof so it retains heat very well. If you use the kitchen, please clean up after yourself. This is not a party house so please be respectful at late hours by not making tons of noise outside.\n", + "----------\n", + "No pets. No parties. No smoking. No alcohol consumption above 2 beers or the equivalent per night. No loud music after 10pm, please, the building is full of Graduate students who study late at night.\n", + "----------\n", + "We ask that guests leave the apartment in the condition that they found it.\n", + "----------\n", + "Smoking allowed outside, on grounds, pets under 10 lb sitting available additional charge and events possibly pre aproved by owners,\n", + "----------\n", + "No smoking or parties. Please be courteous of my cordial neighbors.\n", + "----------\n", + "No smoking permitted, no pets.\n", + "----------\n", + "Mutual respect and low maintenance. If you need to do your own thing and just need a place to crash, I'm totally cool with that - I will not take up any of your time like I know some share-hosts like to do.\n", + "----------\n", + "Please behave no parties or drug use\n", + "----------\n", + "This is a non smoking apartment. No l\n", + "----------\n", + "ANDREA’S HOUSE RULES: ** The PINK ROOM is a room in a no-shoes house. Please [BRING] wear slippers or inside-only shoes. ** All overnight guests must be booked through Airbnb. If you plan to have visitors during your stay, please check with us beforehand. ** Please help us avoid any staining and damage to the furniture & linens by keeping food and beverages out of the bed. [**For MAKEUP REMOVAL please use the wipes provided and/or the dark washcloth.] ** Enjoy our PINK ROOM, our BEVERAGE AREA in the living room, the bathroom, and please ** leave these spaces clean & tidy as you found them ** ** As it states in the “Amenities” section on my listing, I do not provide breakfast (unless you have made a specific arrangement for meals with me). I do offer a few things to get you started. However, there are always several options for coffee in the freezer and other beverage materials in the beverage section. ** Please hang coats and LEAVE shoes/boots in the hall ** Please leave towels\n", + "----------\n", + "Respect yourself, respect others, clean up after yourself. No smoking or drinking in the apt. Late check in after 9 p.m. and before 10 A.m. is $50, lock out is $50. Thank you\n", + "----------\n", + "No smoking allowed inside or on the property. Pets not allowed without prior discussion/approval. \n", + "----------\n", + "Please do not smoke and be respectful of other guests.\n", + "----------\n", + "Absolutely no smoking in the building, handling of art work or damaging personal property. All additional charges for movie rental are the responsibility of the renter. Shower before entering the hot tub. No glass or food in the hot tub. Turn off all lights and appliances when leaving the unit.\n", + "----------\n", + "Quiet Respectful, clean & organized Nice to my cat Can't arrive after 1 am to check in\n", + "----------\n", + "Shoes off apartment (slippers available to guests) No smoking of any substance on the property Respectful Friendly Quiet Leave things as they were found, clean after yourself No dishes left in the sink Please use white cups, bowls, utensils and plates and Store dry foods in pantry cabinet below the microwave for your personal food storage and store food in the fridge on the left half of the 3rd row Guests may not have additional guests without clearing them with me first\n", + "----------\n", + "Absolutely no smoking inside the house, please! There is ample space to do so outside, but please keep our neighbors happy and dispose of butts properly. Also, please keep energy efficiency in mind and turn climate controls off/down when out as well as lights.\n", + "----------\n", + "Please treat my home with the same love and care you would give your own home.\n", + "----------\n", + "You are our guests and we are so glad to have you here. For your safety, and ours, we ask that you meet your guests off site. There is no smoking in the building. There are no animals allowed. If you arrive, and we are not available to greet you, there is a lock box on the outside of the building to the right of the double front doors. The keys to the building and your guest room are there. Once you have booked, I will give you the code for it. In consideration of the other guests that will be sharing the bathroom, please keep your use to 15-20 minutes. There is a clipboard to sign up for a specific time for use. (i.e. to keep flight schedule, meeting etc.) If you have children staying with you, have all food and drinks for them in the common area at a table, please no food or drinks for the kids in the guest rooms, ( and loft area) to avoid spills etc. Please keep your children in the designated areas mentioned. ( your guest room, common area to the left of the partition, and th\n", + "----------\n", + "House Rules 1. Check-in is 4 pm local time. If the unit is ready earlier, we’ll let you know. Check-out is normally 11 am local time, but we’d be happy to extend it as long as we don’t have a cleaning scheduled. Just let us know. 2. All bookings require a security deposit of at least $300, which will be refunded within 7 days of your check-out. 3. For security measures we require all guests to provide proof of identification through ID verification on our own website. In order to check in we'll need a photo of your ID. 4. Our cancellation policy is as shown on our ad and defined by the site you are booking through. 5. Don’t let $300 go up in smoke. There's no smoking allowed in any Flatbook and a $300 fine for breaking this rule. 6. Unfortunately we don’t allow pets in any of our apartments. 7. Unless you’re staying in one of our specialty apartments, we don’t allow parties or excessive noise. 8. If we find the place very messy, we have to charge an extra $40 for every extra hour o\n", + "----------\n", + "I own a dog, but she will not be present for your stay.\n", + "----------\n", + "Guests are required to take their shoes off in the house (we have slippers for all), and to be respectful of the home.\n", + "----------\n", + "Please be respectful to the other roommate and clean after yourselves. We love this place and we want guests to have the same experience you have when they arrive.\n", + "----------\n", + "No pets allowed. No smoking.\n", + "----------\n", + "Please Note: This unit was just renovated in February 2016 and it comfortably accommodates one to three guests, but up to 4 guests are permitted if you so desire (two guests in the bedroom, 1 guest on the available twin air mattress and 1 guest on the sofa). Please request an air mattress (if needed) when making a reservation. No smoking, no pets, no parties, and must be 25 years old to book. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left next to the trash can (additional bags are under the sink) - All windows are closed and locked - If used, the air mattress is deflated and put away (please leave used linens for the air mattresses on the floor) - If furniture was moved during your stay, please return to its original location Please be mindful to our neighbors in the building; quiet hours after 10pm. Please be considerate of our next guests who will be staying after you, if so\n", + "----------\n", + "Please pick up after yourself if you use the kitchen or other common areas, keep noise down at night, and, sorry, no smoking. We're looking forward to having you!\n", + "----------\n", + "Respectable\n", + "----------\n", + "- $100 pet fee\n", + "----------\n", + "No pets. No smoking. Guests need to be respectful and gentle.\n", + "----------\n", + "Please try to be quite and keep house clean. Thank you very much!\n", + "----------\n", + "Tenant Agreement: House Rules: The landlord reserves the right to inspect the unit to enforce the terms of this agreement at any time. No smoking. No pets. No parties. Reduced noise after 11pm. No sublet. No more than eight people to reside on premises unless given written approval. No refunds to be given for shortened stays. No refunds to be given for any cable or internet WI-FI outages. You are responsible for safe keeping of your own valuables. The landlord is not responsible for lost items.\n", + "----------\n", + "Dear Guest, Thank you for appreciating that I live in a building with other people. Please always lock all doors (especially the front one) when coming and going.\n", + "----------\n", + "Each of us is working and/or going to school at the moment, so weekday guests are expected to respect a quiet period from 12am to 8am. On weekends, we almost always go out and encourage you to do the same! You're welcome to make noise in your room at a reasonable level, but we prefer that you wrap it up no later than 3am at the absolute latest on weekends.\n", + "----------\n", + "No Smoking \n", + "----------\n", + "Enjoy your stay, and please take care of the apartment like it's your own home. No parties and no smoking please.\n", + "----------\n", + "No smoking, no pets. Use of kitchen is limited to breakfast with a continental breakfast provided and use of coffee maker, toaster and hot water.. We cannot allow cooking. You may store drinks and snacks in the refrigerator.\n", + "----------\n", + "No Smoking, No pets. \n", + "----------\n", + "No Smoking. No Pets. Enjoy a morning cup of coffee as you sit on the shady porch. Like use of the kitchen area.\n", + "----------\n", + "- No smoking. - Maximum of 2 people - Sorry, no children. (I love kids, but this is a very quiet building. It's all young professionals. - Please be quiet and respectful of others in the building (no loud music/tv, - Please dispose of baby wipes and/or tampons in the waste basket, not in the toilet. (the pipes are old and clog easily – last time baby wipes had to be removed from the pipes, the plumbing bill was $350!).\n", + "----------\n", + "No smoking or drug use. No parties. No guests other than those specified in your booking. No moving of furniture without asking Turn lights off when not in use No food in rooms, food can be stored in kitchen area Front door stays unlocked until 9pm, after ring doorbell or call host (phone number hidden) or (phone number hidden)) Kitchen not for use Check-out time no later than 11am Host's food is off limits only what is serve and put out for breakfast!\n", + "----------\n", + "No smoking, please.\n", + "----------\n", + "We expect guests to be mindful of the neighbors, especially during evening hours.\n", + "----------\n", + "- Please treat this home as your own and respect the neighbors. No parties, smoking, or additional guests (other than the agreed upon).\n", + "----------\n", + "Respectful and Responsible Keep room clean and tidy Clean up after using kitchen or bathroom\n", + "----------\n", + "Please be respectful of our belongings and leave things as your found them.\n", + "----------\n", + "We are a non-smoking apartment. Thank you! Please inquire about pets and kids - we don't have any, but it's OK if you do as long as you know what you need to bring to accommodate! :)\n", + "----------\n", + " The property may be used only as a residence, not for any other purposes, commercial or otherwise (including filming). You may not have packages sent to you during your stay. Beacon Hill is a very quiet neighborhood, please keep the noise to a minimum and avoid playing loud music or making loud noises. If any noise complaints are received, I will assess a $100 fee from the deposit for each complaint. If inviting anybody over, please keep daytime occupancy to five people maximum. NO unregistered overnight guests are allowed. If you rearrange the furniture, please return everything to its original state before leaving. If bringing pets, please ensure that they are potty trained. Any pet stains left in the space will result in an additional $200 cleaning fee will be assessed from the deposit. No smoking. If any smoking occurs in the space, I will assess a $300 fee from the deposit. No illegal downloading. Do not use the internet to access, stream, or otherwise download any illega\n", + "----------\n", + "Guests can come and go as they like, we only ask that in the evening hours after 10pm that you are quiet and respectful of your neighbors as we are an old building.\n", + "----------\n", + "Make yourself at home, and of course, feel free to use anything in the house, but please be respectful of the space and make sure to put things back in their rightful locations. Please wash any pots/pans/dishes that you use. Please, no smoking in the property whatsoever. Please, no guests outside of those identified in your party. We also kindly ask that you keep loud noise to a minimum in the late evening and, needless to say, parties are not permitted.\n", + "----------\n", + "We expect that you treat our home as you would yours. If you smoke, you can do so on the back porch. There is absolutely no smoking in the apartment.\n", + "----------\n", + "Guests are liable for any damage to the unit or property. Guests assume all personal liability and risk for injury to themselves and others during their stay.\n", + "----------\n", + "Please no smoking in any of the inside premises or on the roof deck; no loud music; no moving or rearranging furniture; and no guests beyond those indicated at booking (without clearing with owner first).\n", + "----------\n", + "There is no smoking and no pets allowed in the apartment. Please leave the apartment as you found it (dishes in the dishwasher, living room & kitchen tidy)\n", + "----------\n", + "NO SMOKING! NO PARTIES!\n", + "----------\n", + "HOUSE RULES You will be staying in an apartment in our family home. We ask that you conduct yourself respectfully. **Your booking acknowledges your reading and agreement with our house rules** *There will be no access to the cellar or usage of the backyard. *We ask there be no drugs or parties. *No smoking is allowed. *No pets allowed. *We ask that only the guests that have rented be allowed in the building or apartment no additional overnight guests or visitors are allowed. *Please do not leave any food on the table outside or on the back deck. *Laundry services are not provided. (There are local laundromats in the area and we have provided some names in our handbook). *No candles are allowed. *Because we have hardwood floors, we ask if you have rolling suitcases that you will use care and try not to roll them around on the floors. There are plenty of rugs to place them on. *Please Do Not give out any of the entry key codes to anyone (Your code will only be valid for your \n", + "----------\n", + "No Smoking in building, Respect for other guests and neighbors. Quiet after 10 pm. Parking is available on Linwood and Gardner streets 24 hours. No parking is permitted on Centre Place.\n", + "----------\n", + "No pets No alcohol\n", + "----------\n", + "In order to provide a healthy, comfortable and safe environment the following rules must be respected and adhered to throughout your entire stay. Most of what follows is common sense or common courtesy. The rules serve to protect you as a guest by helping ensure the environment you find here is the one that we intended to create. Please keep in mind: You will be sharing common areas with other guests or residents, and thus the cleanliness of the common areas is far more dependent upon all guests cleaning up after themselves, than it is upon my once a week cleaning. Most guests do very well in keeping common areas clean! House rules: Please do not drag luggage up the front stairs. Please leave things as they are in your room: do not remove pictures from walls, don't move furniture around, and do not remove mattress protector from the mattress. Also, it should not be necessary to say, but since some guests have done this, I must add: please do not take any of my personal possessions ou\n", + "----------\n", + "Smoking is strictly prohibited. Your pets are welcome but please mind them. NO PARTIES ALLOWED. EXCESSIVE NOISE IS STRICTLY PROHIBITED\n", + "----------\n", + "Please treat it as it were your own home and be respectful of the neighbors!\n", + "----------\n", + "Please be respectful of my things! I have a lot of stuff that I have collected over the years. Absolutely NO smoking. This is a really relaxing space and the neighbors are all really cool. -Pets are allowed\n", + "----------\n", + "The only thing i would have to say is not playing music too loud past 11 o clock.\n", + "----------\n", + "No parties, no extra guests, no pets, no smoking. Please treat this space and our neighbors with respect.\n", + "----------\n", + "Enjoy our home and your visit to this wonderful city! We ask that you respect our home and neighbors as you would your own. Please no smoking in the house, no pets, no large social gatherings.\n", + "----------\n", + "Check-in is 2:00 pm, and checkout 11:00 am. You may bring bags in before check in time or leave it to pick up later. Let me know to arrange it. After reservation please send me your arrival and departure time for logistics Help yourself coffee or tea anytime NO shoes to the second floor Keep the volume low before 8am and after 10pm Close the doors gently No shower after 11:30pm No laundry after before 9am and after 8pm Keep the kitchen in a decent condition after your use Close the shower curtain well, no hair in the tub, no water around the sink on the sink there is a sponge you can use it to dry Turn off the light when you leave the room Trash out from the room BLUE BOX recycling Please respect this rules. Full refunded of security deposit in this case\n", + "----------\n", + "Enjoy!\n", + "----------\n", + "No smoking. No Pets. Please be mindful of noise levels while enjoying the outdoor space. No parties.\n", + "----------\n", + "We do not permit smoking, pets or parties. Thank you!\n", + "----------\n", + "Please respect our neighbors and keep noise to a minimum.\n", + "----------\n", + "Unlike most other Airbnb listings, what we do here is long-term rentals by the year, or by the semester and we can welcome compatible short-term guests. We try to keep the atmosphere conducive to studying and resting and a couple of house-rules are in place to this end. 1. No smoking on the premises. 2. No loud music or TV etc. 3. Only for one person (no couples, no visitors). We seldom have visitors, let alone overnight guests. We know this will be a major turn-off to many people, but we believe we can find a like-minded roommate who can have fun outside the house. 4. If you re not sure about your check-out date, you can reserve the minimum days and extend your stay at a discounted rate. 5. Check-in time is flexible, but it has to be coordinated at least 24 hours ahead. On arrival, a short registration process with a picture ID is needed in exchange for keys and wifi access.\n", + "----------\n", + "The house is kept very clean host does all cleaning making of beds and daily cleaning of home. Absolutely no additional company with out first checking in\n", + "----------\n", + "House handbook sent prior to arrival but please be considerate with noise, smoking on roofdeck only and parties are not allowed...thank you!\n", + "----------\n", + "quiet after midnight, no smoking on premises (smoke on the sidewalk only, cigarette smoke goes into open windows and the building is full of non-smokers), no guests\n", + "----------\n", + "No candles. Close and lock windows when you leave the house. Clean up after yourself in the bathroom and the kitchen. Mutual respect and have fun! If you want to have an event or party, let's check in about it first.\n", + "----------\n", + "Shoes off apartment (slippers available to guests) No smoking of any substance on the property Respectful Friendly Quiet Leave things as they were found, clean after yourself No dishes left in the sink Please use black cups, bowls, utensils and plates and Store dry foods in 1st tall pantry cabinet for your personal food storage and store food in the fridge on the right half of the 3rd row Guests may not have additional guests without clearing them with me first Reminder: The bedroom is lofted, open over the staircase located on the top penthouse level of the apartment & building (5th floor) all to yourself. There's no door.\n", + "----------\n", + "No pets, no smoking, no more than 6 guests. We welcome families traveling for pleasure. No corporate customers. 2 nights minimum.\n", + "----------\n", + "No smoking Respect to others\n", + "----------\n", + "No Smoking, No Pets\n", + "----------\n", + "Welcome to my home. I hope you will treat it as you would your own.\n", + "----------\n", + "No parties No smoking\n", + "----------\n", + "No shoes in the apartment please. For long term guests (5+days)- please remember this is a home not a hotel, please pick up after yourself and assist with house cleaning once per week, wash your own laundry including bedding and towels. ALL Guests -please remember to close and lock all doors. Do NOT lose your flat key's - if you lose the key you the guest is responsible for contacting and paying locksmith fees in addition to extra key fee ( this cost can be close to $500) please DO NOT lose your key. The reason why I'm listing these rules is because some people think that hosts are servants and slaves and we are not therefore be respectful please to all of your hosts. Make yourself at home and enjoy your stay but as the same time be observant and caring. I go to bed early due to long work hours therefore it is much appreciated if guests are not cooking pass 20:00. Thank you very much and safe travels.\n", + "----------\n", + "No pets No smoking No loud partying in the space\n", + "----------\n", + "Let's talk to get to know each other !\n", + "----------\n", + "Guests should treat my home as if it were their own. While my valuables are locked and kept away, I do ask that guests respect my private closet space and the items located within. Please, no smoking.\n", + "----------\n", + "No smoking anywhere on the property- including the front steps. No parties- please be considerate of the many neighbors around you. Please take the trash out at the end of your stay. The fireplace is not cleared for burning wood but you may use the candles provided. Please blow out candles when you leave.\n", + "----------\n", + "- House Rules Wifi Network: NotYours and NotYours_2EXT Password: Notyours69 Welcome to Jamaica Plain! We are located centrally with easy access to the Green Street T stop on the Orange Line. There is on street parking if needed. Street cleaning takes place at 8:00am the first and third Monday of every month, DO NOT PARK ON GREEN STREET on the first or third Monday or you risk the pleasure of ticketing and TOWING :( You are a guest in our condo, make yourself at home but please respect it as you would the home of a very tidy friend. Help yourself to tea & coffee. **No shoes in the condo! **Please water plants every 2-3 days, yellow watering can is behind couch. **Buzzer is self- explanatory. **No smoking!! **Smoke alarms have reset buttons if needed **Please turn off or set the AC to 75 when you leave. **The front door of the building needs to be pulled firmly shut to close, please be sure you close it behind you when you enter & exit. **Please be respectful of our neighb\n", + "----------\n", + "The usual \"social code\": There are three of us altogether in the flat, so use of the bathroom should be considerate of others' needs as well. Quiet is appreciated after 10:00 PM. You are more than welcome to use the kitchen for preparing food; I would ask only that you leave it in the condition you would wish to find it. Smoking allowed on deck. *Good communication is essential to ensure everyone is contented.\n", + "----------\n", + "No Smoking No Loud Parties No Pets Please be respectful of noises especially at night Check-in Time: 4PM Check-out Time: 10AM Please review the guest booklet in the living room of the condo, during your arrive for detailed policy information.\n", + "----------\n", + "No pets that shed; If you have a hypo-allergenic dog that is ok. \n", + "----------\n", + "No parties or pets. Please be courteous and keep the space clean.\n", + "----------\n", + "SEE ABOVE NOTES. Prefer REPEAT VISITORS, BUSINESS MEETINGS or family obligations, medical needs. Good for a single or couple, probably not families. Free laundry. GREAT VIEW!\n", + "----------\n", + "Absolutely no smoking, indoors or outdoors. No pets.\n", + "----------\n", + "Please be respectful to the apartment and the other people who live in the space.\n", + "----------\n", + "To be helpful to you, I have prepared detailed arrival information and send that to you a few days before you arrive. I ask that you read the info carefully to help you enjoy your stay and ask that you send me a note indicating you have read all the information before your day of arrival. Thanks!\n", + "----------\n", + "Please, no smoking and /or parties. This is my home, I would like my home to be treated with the utmost care and respect by all the wonderful individuals I host as a member of the Air BnB network. Thank you!\n", + "----------\n", + "There are no pets or smoking allowed. Because there is another family living upstairs, loud music and partying is not allowed Please treat my home as if it were yours\n", + "----------\n", + "74 Melrose House Rules *Be sure to contact us for key instructions* We request that you please be respectful of all furniture, appliances, and all other belongings within the apartment. Please make sure to turn off all lights and appliances, including A/C and Heat when you leave the apartment and follow the trash rules ~ every bit of saving helps us provide affordable and comfortable living space to everyone. Trash can be put outside in front of the building on the curb Sunday and Thursday nights at 5 PM or later it will be picked up early the following mornings. All insurance and liability including accidents - inside or outside the apartment - health, short-term cancellations and / or guest's belongings is the guest's responsibility. The entire building is non - smoking so please no smoking on the property or in any of the units. 62 Melrose General Information We offer digital cable TV, DVD and high speed Internet. We will send internet information in a separate email. For yo\n", + "----------\n", + "No illegal drugs. No smoking/vaping. No pets. No parties. No unapproved guests/visitors not agreed upon during the rental.\n", + "----------\n", + "No smoking or parties please. Kaya (the fluffiest dog you have ever seen) also insists that you pet her at least once during your stay :-)\n", + "----------\n", + "- I've lived here over 14 years. Love it! But I met a girl and moved to the burbs. You will enjoy everything about location and amenities!\n", + "----------\n", + "1. Please keep a quiet environment 2. I want friendly guests. Please be friendly to each other or other tenants and help me to manage situations easily. 3. No smoking in the room; smoking should be outside of the building 4. No pets 5. Fire pre-cauction by using kitchen; If cooking food, leaving kitchen with interruption should be less than one minute. There was a tenant in 6 weeks, cooking food and leaving kitchen for more than 30 minutes and forgot to turn off switch 3 times. One year it will have 25 times forgoting to turn off fire switch. Two tenants will be 50 times in one year. It will cause fire. This behavior is not acceptable. To cook food without a person in the kitchen is not acceptable. 6. Becareful of clots in the pipe for bathroom and kitchen. Don't remove the bathroom filter when taking shower. Flush the toilet by holding the switch for 4-5 seconds for full flush. You may flush the toilet first; when there is no clots, you can use. Please don't dump food in the kitchen \n", + "----------\n", + "Please be respectful. Keep noise to a minimum after 9pm. No Smoking. No recovering patients from medical procedures. Thanks!\n", + "----------\n", + "No pets, please - and definitely no smoking. Be nice to furniture and posessions - since this is a house that actually gets lived in, they're mostly pretty important to me, rather than just knicknacks. Read the books, don't break spines! Don't put the pots and pans or cast iron skillets in the dishwasher! You know, the basics :)\n", + "----------\n", + "NO SMOKING IN OR OUT THE APARTMENT. please be aware of the Neighbors and respect their space and privacy as well. No free parking\n", + "----------\n", + "Please treat the home like it was your own. No smoking or pets allowed.\n", + "----------\n", + "Respect our home and our house is your house. Checkout is 11 am at the end of your stay. You are welcome to leave your bags for the day. Please let us know when you plan to arrive. Depending on circumstances we can be very flexible.\n", + "----------\n", + "- No smoking inside the apartment - Checkout time is 11:00 am (a later time can be accommodated if it is available - but please ask ahead of time) - No Loud Music or Loitering outside the entrance after 10:00pm\n", + "----------\n", + "Enjoy the space responsibly. It's a quiet family-owned building on a very busy street. Only Airbnb-vetted individuals allowed in the house - for our security as well as our neighbors - we want to keep our space safe! No smoking or pets (sorry!) Please return space as you found it.\n", + "----------\n", + "Check In/ Check Out: We are flexible regarding to check in time, but please notice us ahead of time to make sure your check in goes smoothly. We would like to be home to greet you, but often times we are away at work. If so, we will leave you the keys for self check in. Please refer check out time as 11AM and kindly inquire if you require a different check out time. Shoes Off: Please kindly take your shoes off at the entrance. Dog: Rosco will bark when you approach the house, but he is very friendly and he is just doing his job guarding the house. Please kindly do not leave any food out or leave them in your room and close the door while staying, since Rosco has excellent nose and skill to get to food/garbage. Smoking: There is strictly no smoking in or outside of the house. Bring Home guests: Please inform us ahead of time if you would like to bring friends to the house. Kitchen Use: Please keep kitchen use to prepare snacks or coffee/tea. Please only use the stove when we are\n", + "----------\n", + "Please be mindful that I live in the same building. If you break these rules, I will probably know about it. I have had the rare guests that caused problems, so I do take the rules quite seriously. All guests must be OVER 21 years old to stay. No parties and/or visitors. Do not bring your own guests or visitors over. Do not show up with your friends/family that are in the area. The only people allowed in the listing are the guests (2 adults max, including yourself) that are included in your reservation. You can not bring anyone else over, even if it's just for a few minutes. No exceptions, so please don't ask. I'm picky about this rule because I have had college kids try to book this place for parties and gatherings. Please turn off the AC and lights when you go outside. Please be respectful of the neighbors and the listing. This isn't a place to be rowdy. No smoking anywhere. Please no e-cig/vaping either. No candles, incense or other open flames Please do not move or rearrange th\n", + "----------\n", + "Please care for our home as you would your own. This is not a vacation rental, it is our real home :) Upon your departure please load and run the dishwasher, and take out your garbage and recycling. Instructions will be provided for you.\n", + "----------\n", + "1. Please let me know ahead your arrival, checking out time and if you will need a parking spot, so I can plan accordingly. 2. Please keep in mind that the checking in is any time after 4 pm and checking out is by 11 am. Earlier check in and late check out must be arranged with me in advance. 3. I request the guest to be respectable and quiet specially after 10 pm. There's absolutely no parties,pets and smoking not allowed. Please shut off all lights and electrical appliances including AC when you are not using the premises and be sure that the entry door is locked all the time.\n", + "----------\n", + "I expect my home to be treated as any mature adult would treat the home of a respected friend or family member. While the space is to be enjoyed-- there are artworks, antiques, books, electronics and more that need be viewed/handled thoughtfully (i.e. use a coaster when putting a glass on wood tables, etc.) The fireplace, outdoor grill, and washer/dryer are not to be used. There is no smoking allowed (this includes on the back deck). Any special check-in and check-out times should be discussed with host. All efforts will be made to accommodate visitor travel schedules.\n", + "----------\n", + "• No parties or events • Not suitable for pets • No smoking • No parties or events • Not suitable for pets • No smoking No drugs, no smoking, no pets, no additional guests, no loud music, no lighting candles. This is a quiet and safe apartment for female travelers looking for a cosy, safe, and unique lodging in the city.\n", + "----------\n", + "Please remember that this is a residential building. The building rules, apartment occupancy restrictions and the year-round tenants must be respected. Parties and smoking are not allowed under any circumstances and incur significant fees. Parties and smoking are not allowed under any circumstances and incur significant fees. Pets may be considered with pre-approval and an additional pet fee.\n", + "----------\n", + "NO PETS! NO SMOKING ON PREMISES! NO PARTY! No \"DRUGS\"! - Keep the Place Clean at All Times! - Do Not Ask the \"Neighbors\" for anything. Ask Me!- - No Neighbors Interaction! - No \"Drugs\" Please!!! - No Noise! A printed house rule will be provided. Please be respectful to others when all rooms are booked. 10 AM Check-out and Check-in is between 12 PM (noon) - 3 PM. Late check in after 8 pm is $50, lock out is $50. Respect yourself, Respect others, clean up after yourself. No Smoking/drinking in apt. Thank You! Location Rules: The \"Exact Address Location Is Not Stockton St. It Is 2 Streets Away. It Is Not Disclosed For Security Reasons\" And Is Given Out 24 Hours Prior to Check-in. If This Is a Problem for You, Please STOP Here And Contact Other Hosts for Your Stay. This Is a Part Of My House Rules.\n", + "----------\n", + "Please treat my place as your own. Turn off the lights, AC, fan, etc when you leave the apartment, and wash any kitchenware and dishes that you've used. Put used towels on the floor, so that I now they've been used.\n", + "----------\n", + "The building is a quiet place and people enjoy peaceful and relaxing stays. We encourage consideration of others and it is the norm. Check in is at 4 pm, and check out at 11 am. When possible we will offer modifications with advanced notice. There is a laundry available for use on the top floor and we ask that it not be used after 11 pm or before 8 am. We ask that guests do not wear shoes in the apartment, and provide shoe covers for guests that feel more comfortable with shoes. There is absolutely no smoking on premises. Trash is picked up by the City on Tuesday and Friday mornings and can be put out at 5 pm on the night before. Recycling is picked up on Tuesdays, only, and has to be put out in clear plastic bags. We can not permit residents to bring bicycles in the building. \n", + "----------\n", + "This is a quiet, residential building. Please respect myself and other tenants by keeping your airbnb activities in the building to yourself. \n", + "----------\n", + "Absolutely no smoking, no pets, parties or excessive noise in the apartment. This is a quiet residential building, perfect for travelers wanting a quiet refuge at the end of a fun filled day in Greater Boston.\n", + "----------\n", + "Please remove your shoes at the door and use coasters for drinks on any furniture.\n", + "----------\n", + "No Smoking and No Pets\n", + "----------\n", + "Leave the apartment as you found it! If you used dishes or cups or anything in the kitchen area, you are expected to clean, wash, dry and return the item to its origin. Act respectful in the neighborhood and inside the halls, other units are in the building so act responsible. We ask that quiet hours be respected between 11pm and 8am. Meaning no dance parties, loud noises, or other disturbances that are not emergencies. We understand sometime guest will like to enjoy themselves until the bars close (2am). We expect you to be courteous once you return to the property, excessive noise and disturbances reported may result in cancellation of your booking immediately without refund and maybe forcibly removed at my or my agents discretion. No Smoking No Parties No Drugs No Weapons Only People on Reservation permitted to stay in the apartment. Please keep front door locked and closed at all times. You are expected to leave the apartment as you found it, kitchen clean, fridge empty, \n", + "----------\n", + "Greetings! Check-in: 5pm onwards - please contact me to schedule a time Check-out: 11am If you need an earlier or later check in time, please let me know, and I will do my best to accommodate if I can. Please contact me through the Airbnb prior to booking. Please do not hesitate to call or text or both if you need assistance during your stay. I only accept reservations from Airbnb members that have: -A profile photo showing their face :-) -ID verification No smoking in the house or on the property, please. You may use coffee maker & electric kettle for tea/coffee and you are welcome to store things in the fridge. No guests allowed in the house but those who have a reservation. If you need to reach me for any reason before or during your stay, please do not hesitate to text me or call any time. We look forward to meeting you!\n", + "----------\n", + "1. NO parties, no loud gatherings, no loud noises. 2.Please respect our neighbors by keeping noise levels low (we share an interior wall), parking only in the designated space and not overlaping spaces, and staying off their part of the property - their front patio, back deck outside the kitchen, and their section of the basement. 3. No guests not included in the booking are allowed in the house. The maximum number of people allowed at the property is 7 with special arrangement. The fourth bedroom should only be used for parties of 7 or guests who have paid an additional fee. 4. No smoking inside. 5. Antiques require an extra level of care. Use a coaster please! 6. If parking carefully read over all rules, and make sure to follow directions or you will be towed. 7. Read over your Welcome Guide prior to your stay. We expect people to be very responsible with our house. We want people to have fun and that is why we have tried to provide the best, and we hope people take notice and \n", + "----------\n", + "House Guidelines for our BnB We are delighted to welcome you. Check in Sun – Thurs by 8PM and Fri, Sat by 9pm. Please bear in mind that this is not a hotel but our home and we are opening it to you. We will do our utmost to make your stay enjoyable and fun. We ask that you take care to respect our home and its appearance. Thank you. Marilyn and Alan 1.ROOMS - The bedroom is yours for the duration of your stay. Be sure to let us know if you need something. Please keep it neat and tidy and take advantage of the closet and bureau for your belongings. We do ask that you turn off lights, air conditioner, fan, etc. when you are not in the room. Thank you. 2.LIGHTS – Please, too, remember to turn off lights on the stairway when returning. 3.KEYS - 2 house keys are provided - Replacement cost is $15 each 4.PARKING – Parking is available on street at all times. (website hidden) – When the weather is inclement please remove shoes. 6.TOILETRIES - If you need them we can provide basi\n", + "----------\n", + "No smoking, keep clean and respect property\n", + "----------\n", + "Apartment is located in quiet neighborhood so noise is ok as long as it's not excessive. We have a strict no-pet and no-smoking policy. This is our building policy and also a strongly enforced household policy.\n", + "----------\n", + "The apartment is our home 365 days of the year - we rent it only select weekends when we are away so please respect the neighbors in our building and the belongings we love. If you smoke please do so on the street. There is no smoking allowed inside the apartment or on the decks due to fire safety. We cannot accommodate guests with pets.\n", + "----------\n", + "Feel free to use any dishware in the house but please load and run the dishwasher when you leave.\n", + "----------\n", + "This place is non smoking, no pets. This home is a first floor duplex. With the kitchen and the living room on the first floor. Guests with mobility issues will not be able to go up and down the spiral stairs to the bedrooms located downstairs or get in the bathtub. There are two bathrooms, the full bathroom has a bathtub and a shower. Plumbing- Welcome to Beacon Hill – Our neighborhood dates to the 1800s, charming gas lights, brick buildings, quaint you will hear occasional ticking of the plumbing. Our building plumbing also dates to the 1800s, you may hear the pipes go on occasionally. Please exercise caution when flushing, we will provide slips to dispose of any trash and avoid visits from the Plumber. PARKING – You will find a number of parking garages throughout Beacon Hill some are: The Boston Common Garage (0 Charles Street); Charles Street Parking Garage (144 Charles Street); Standard parking (100 Cambridge Street); One Center Plaza Parking (75 Somerset Street); Brimmer S\n", + "----------\n", + "Please be honest and respectful. That's it!\n", + "----------\n", + "No smoking. No parties. Respectful of property :)\n", + "----------\n", + "Please remember that this is a residential building. All building rules, Hotel occupancy restrictions, and year-round tenants must be respected.\n", + "----------\n", + "Absolutely no smoking or pets.\n", + "----------\n", + "Be clean and respectful Be clean: I will do my best to have the place always clean when you arrive. The expectation is that you maintain it clean when you are here and that you leave it clean. Please clean the bathroom sink, wc and tub after you use them (e.g. if you shave, your hears should not remain in the sink) If you use the bathroom bin, you have to empty it. If you use dishes, glasses, pans, pots, silverware that are available for your use in the kitchen, the expectation is that you rinse everything you used and put it in the dishwasher. In a few wards, clean after yourself. Please remember this is my house that I open to you and share with you for a modest fee. This fee does not include daily housekeeping. I should not be cleaning after you. I am easy going, but I will give you a bad review if you do not clean METICULOUSLY after yourself. Doing this means you are being respectful. I will observe these rules to the fullest. Thanks\n", + "----------\n", + "No Smoking. No pets except by special arrangement. Please keep reasonably quiet when in the apartment/building--this is a quiet and densely populated neighborhood. Please DO NOT leave trash on the street. Separate recycling. Contact me if trash needs to be removed during your stay.\n", + "----------\n", + "Please keep a tidy ship and be respectful of our neighbors. No smoking No additional guests Quiet hours between 10 pm - 10 am\n", + "----------\n", + "Regular tenant requirements, no noise, do not disturb neighbors.\n", + "----------\n", + "This is a smoke free home. If parking, please leave space for other cars to get around and in and out of the drive. The fireplace is non-working. The back porch is closed for renovations, but feel free to enjoy the back yard (also being renovated, but still a great place to sit and relax).\n", + "----------\n", + "Enjoy and be respectful\n", + "----------\n", + "No shoes in the bedroom and in the bathroom please!\n", + "----------\n", + "This is my 2 family house and upstairs in the 2nd apartment I have other tenants who are great. \n", + "----------\n", + "House Rules The house rules are an important part of staying in this condo. You will be sharing a living space with other guests and a high level of consideration, respect, communication and tolerance is expected from you. They are meant to make your stay more pleasant, to prevent conflicts and to protect the property of any damage. If you feel there is something that needs to be addressed and that is not covered in these rules, please make sure you communicate that to the host. 1. Toilet · The toilettes can only be used with the toilet paper provided. Any other material disposed of will cause the plumbing system to back up and create drainage problems. No tissues, cotton balls, tampons, Q-tips cotton swabs or any kind of sanitary products are allowed down the toilets. · Any plumbing work due to clogged toilets will be charged to the guests. 2. Noise and Quiet Hours · Quiet hours are from 10pm until 7am. During quiet hours radios and stereos may be played at a level not to be h\n", + "----------\n", + "Our check in time is 3pm. If you would like to check in earlier please let us know ahead of time. We are happy to accomidate if possible, but do understand that we need some time to make sure your room is ready on your arrival. Clean up after yourself & turn lights off on our roof deck. It is a common space in the building. There is No Smoking in the apartment or on the roof deck. Please no guests without checking with us. We have some nosy neighbors so if they ask where you are staying please let them know with friends or family. Some of our neighbors are not happy with us using AirBNB. Thank you for helping us out!\n", + "----------\n", + "•Smoking is allowed outside the house. •Sorry, not pets - my Boston Terrier prefers 2 legged visitors. •Please take shoes off in the living room. •Do not flush anything down toilet except toilet paper •Please maintain a reasonable volume •Please respect the property •Do not purchase anything on cable Check out is at 11am on the last day of your reservation unless discussed during the booking process. Thank you!\n", + "----------\n", + "Please keep common areas clean and do your dishes as you use them. Please respect quiet hours from 11pm to 8am. I appreciate your respect for my belongings and keeping books, records, etc here in the home. Please keep out of my bedroom, hall closets, and the meditation room. I have one female indoor cat who is not to be let outside or into the basement. If you are a smoker I ask that you do so outside. The backyard has lots of seating and the front stoop is nice to watch the world go by.\n", + "----------\n", + "Please Note: This unit was just renovated last year and it comfortably accommodates 2 guests, but up to 3 guests are permitted if you so desire (two guests in the bedroom and 1 guest on the available queen size air mattress). Please request an air mattress (if needed) when making a reservation. No smoking, no pets, no parties, and must be 25 years old to book. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left next to the trash can (additional bags are under the sink) - All windows are closed and locked - If used, the air mattresses are deflated and put away (please leave used linens for the air mattresses on the floor) - If furniture was moved during your stay, please return to its original location Please be mindful to our neighbors in the building; quiet hours after 10pm is not a must, but a nice gesture. Please be considerate of our next guests who will be staying after you, i\n", + "----------\n", + "Please no smoking in the house. As we are working professionals we are hoping you can share this space while you visit and we'd love to chat with you, but no parties please.\n", + "----------\n", + "No Smoking. No Pets.\n", + "----------\n", + "Please be mindful in the kitchen and bathroom after 23:00.\n", + "----------\n", + "The apartment is in a brownstone shared with five other tenants. Guests are expected to be respectful of the property and treat it like their own. Small Pets are allowed but need to be approved. No parties or loud late night noise. 420 Friendly.\n", + "----------\n", + "Quiet building\n", + "----------\n", + "No pets and No smoking in the room. thanks.\n", + "----------\n", + "11 star treatment is given and expected.\n", + "----------\n", + "It's our house. So we'd like no extra visitors unless you ask in advance. Weekdays we like it quiet after 10. Smoke if you must, but on the back deck please. Oh yeah, enjoy yourself. That's required.\n", + "----------\n", + "Please have a great time but ask me before you have guests, discuss parking, no animals, no loud music, no smoking or drugs, no prostitution or smuggling and please be very respectful of owners, tenant's and neighbors. Boston is a very exciting city, we ask that you enjoy it but when you enter the premises, we also ask that you leave the party at the party. Please leave the unit as you received it and enjoy a relaxing stay!\n", + "----------\n", + "Absolutely no smoking, indoors or out. Please take your shoes off in the house. No pets allowed. We have a lovely 3-year old cat who is he's friendly and low-maintenance but will require some food and water during your stay.\n", + "----------\n", + "Please no smoking inside. During the warmer months, please bring your conversations inside after 10 pm on weekdays and 11 pm on weekends. No gatherings/parties with more than 6 outside guests without my expressed consent are not allowed. Guests who ignore this rule will lose their security deposit. I'm sorry about this but the neighbors have complained about the noise! Treat the house as your own so leave it in the same condition as you found it. Thanks!\n", + "----------\n", + "As I can't keep up the cleaning duty 24/7, please clean after yourself as you enter. Read carefully the instructions and the cancelation. I have works and I won't promise to be at the house 24/24,but I will try my best if you need help. Living and kitchen are prohibited while these are my working place. Must notify me if you're having guests. If you need anything, I'm glad to help in my power. Just ask!\n", + "----------\n", + "Please respect the place as if it was your own. No parties or crazy business. Pets are not allowed. Our apartment is also a non-smoking environment. Our community is very quiet and we have a close relationship with our neighbors. We ask that you respect our neighbor’s privacy and monitor noise levels during the night time. If you need to smoke, please smoke outside the building and dispose of your cigarettes afterward. We also ask that you keep the place relatively clean when you leave.\n", + "----------\n", + "- Please keep volume to a minimum past 11pm - No smoking -No parties or unexpected guests\n", + "----------\n", + "Please be respectful of my things! I have a lot of stuff that I have collected over the years. Absolutely NO smoking and NO parties This is a really relaxing space and the neighbors are all really cool. -Pets are allowed -Please clean after yourself and dispose of the trash properly\n", + "----------\n", + "- This is mine & my roommate's full time home. Please be respectful and peaceful. Also, an elderly dog lives here & as much as I try to keep a very clean place, it is not immaculate or hair-free. Life happens here. :)\n", + "----------\n", + "Family friendly, no smoking please. Please bring trash outside, clean dishes before departure. Please be courteous to our neighbors no parties or pets are allowed.\n", + "----------\n", + "Please treat my home like your own and as you would expect me to treat yours. Please smoke outside on the porch. I do not allow pets.\n", + "----------\n", + "No smoking.\n", + "----------\n", + "- Please bring your own daily essentials, I provide nothing as of now. - Please don't bring any friends over unless they are confirmed guests. - Please keep quiet after midnight. - When booking for a weekend, please book on a Friday and for at least 3 nights, as I will not be around on Saturdays and Sundays to accept bookings. - If neighbors asks, just tell them you're here to visit a friend. Don't tell then your guests from AirBNB. - Please let me know exactly what time you will get to my house, or at least an hour ahead. I am not always at home so I will have to go hand keys to you and I will only have limited time. Thanks!\n", + "----------\n", + "Absolutely NEVER any smoking of any kind. Please be reasonably quiet (\"No partying\"!) Sheets, towels and other cleaning are done by me. I do these things at different times. Always before dinner time (or before you arrive it's a really late arrival). Probably before 3pm, during the school year at about 1pm usually. If you have really specific needs, you should speak up ahead of time.\n", + "----------\n", + "no smoking allowed, leave it how you found it.\n", + "----------\n", + "be respectful Take off your shoes at the door\n", + "----------\n", + "No Smoking Allowed. Cats Welcome With Fee.\n", + "----------\n", + "No Smoking, Pets are allowed with additional pet fee.\n", + "----------\n", + "Guest should bring own towels; sheets are provided.\n", + "----------\n", + "No smoking please.\n", + "----------\n", + "No smoking. Please do not use the fireplace. The porch is a lot fo fun, but make sure to keep Volume down after 11pm as neighbors can hear everything.\n", + "----------\n", + "You may come and go as you please. No smoking is allowed in the house.\n", + "----------\n", + "Please do not smoke. Be respectful of the other guests.\n", + "----------\n", + "There will be no pets, parties or smoking allowed on the premises.\n", + "----------\n", + "House quiet hours are 10PM to 8AM. No smoking, No Pets.\n", + "----------\n", + "No pets/parties. Treat it like its your own place- actually no, if you treat your apartment poorly then don't treat it like it's yours! Lol. Just be as considerate as possible :)\n", + "----------\n", + "Respectful of the apartment\n", + "----------\n", + "Before checking out, please: 1. Take out trash (basement level, back door - red dumpsters) 2. Wash dishes and put in dishrack 3. Return keys to the lockbox by 12 noon (unless we made other arrangements)\n", + "----------\n", + "Please treat the home as you would your own, and treat your hosts as you would like to be treated!\n", + "----------\n", + "No smoking in the house or on the decks. Please do not leave cigarette butts on the property. Two-night minimum stay.\n", + "----------\n", + "the female is better(最好是女性房客)\n", + "----------\n", + "No smoking or drugs anywhere on property; no pets; no unauthorized guests. We expect guests to be respectful of our property and the neighborhood. Please remove shoes in downstairs entryway. Please confine eating to the kitchen area. Upon check out, please leave the apartment as close to how you found it as possible. Thank you!\n", + "----------\n", + "100% no smoking in the condo itself or in the building. This is a non-smoking building. No pets, no parties of more than four, and no additional overnight guests unless as agreed. Please be respectful of our neighbors and keep the noise low at night.\n", + "----------\n", + "During your stay please abide by the following guidelines: -No smoking anywhere in the unit -No pets -No parties/extra guests than those originally notified -Food in refrigerator is open, however, anything in the freezer I ask you do not touch *Please keep in mind this is my home, I live here when it is not open to guests therefore many personal belongings will be throughout the home. Be respectful of those things.\n", + "----------\n", + "Just be clean, be tidy, be yourself and enjoy your stay.\n", + "----------\n", + "Relatively quiet after 10 in the evening.\n", + "----------\n", + "No smoking, this is non-negotiable. No illegal drug use and we make no exceptions. We do not allow additional guests or parties. We expect respectful behavior, particularly late at night. We can allow friendly, house- trained dogs. We have a dog of our own, so its important that your dog be under your charge at all times. You may not leave your dog in the apartment alone. You will be responsible for any damage pets may incur, including paying for cleaning of carpets should they be soiled.\n", + "----------\n", + "We are seeking responsible and respectful guests for our unique property. Please do not smoke in the apartment, and refrain from loud noise after 11pm. Accommodations can be made for other lengths of stay, as well as for pets. Feel free to reach out with questions or concerns and we will respond within 24hrs, usually sooner. Strict cancellation policies apply, please refer to Airbnb's terms.\n", + "----------\n", + "NO smoking, no pets, all guests must be disclosed. \n", + "----------\n", + "I trust that you will be respectful to my home. Please do not rearrange furniture. ABSOLUTELY NO SMOKING INSIDE. NO HOUSE PARTIES! You will be escorted off the property and asked to leave WITHOUT REFUND! Take your shoes off and ENJOY BOSTON! (suggestion: Recommend you go grocery shopping before you check in because the small nearby grocery store has a limited selection. The big grocery store is a 10 minute drive.)\n", + "----------\n", + "1. CHECK IN AND CHECK OUT: Check in is at 3 pm and check out is at 10 am. This agreement does not create a tenancy or residence. You must depart and arrive at the reserved times. If you do not take possession within 24 hours of arrival date, cancellation is assumed, unless owner is notified. There is no refund for early departure. 2. NON-SMOKING: This is a NON-SMOKING unit. You may smoke outside but not in a place where smoke my blow back into the unit. 3. DAMAGE DEPOSIT: A damage deposit is required. The damage deposit does not apply to guest fees. The deposit is fully refundable within 14 days of departure provided the following provisions are met: a. No damage is done to the unit or its contents beyond normal wear and tear. b. No charges are incurred due to smoking, additional guests, or undeclared pets. c. All debris, rubbish, and discards are placed in the trashcan and soiled dishes are placed in the dishwasher. d. All property keys are left on kitchen table. e. Al\n", + "----------\n", + "Please tell me about who you will be traveling with and your purpose for the trip. I will accept adults traveling with a child over 7 years old. But I do not accept more than 2 guests at a time. So 1 adult and 1 child is fine. Are you traveling for work, visiting friends in this area, or a tourist on vacation? This is a friendly house hold, reasonably quiet. You will have to pass through our part of the house in order to get to the third floor. We expect guests to be reasonably quiet coming in and out before (9AM and after 10PM. Kindly remove your shoes as well. No smoking. No pets. For safety reasons please do not invite other people to our place without permission. There is a fire ladder under the bed in the bedroom, as a second means of egress. Please recycle. I will provide a paper bag for you to put your recycled items in. For summer months, there are two AC units provided. PLEASE keep doors and windows closed whenever you are using the AC. Otherwise please shut the AC off, if y\n", + "----------\n", + "- Animaux sur place (lapins) - respect du voisinage - Acces à la chambre des autres locataires interdit \n", + "----------\n", + "We are young professionals who like to keep our home neat and quiet. We'll likely be working from home at times during your stay and we ask you to respect us the same way we'll respect you. No shoes inside the house. No smoking. Service pets are ok.\n", + "----------\n", + "Please let me know a head your checking in and checking out time. I request the guest to be respectable. Only the guest is allowed to stay in the room, pets and smoking not allowed. Please shut off all lights and electrical appliances when you not using the premises.\n", + "----------\n", + "Respect yourself, respect others, clean up after yourself. No smoking/drinking in apt. Late in check in after 9 P.M. or before 9A.m. is $50, lock out is $50. Thank you \n", + "----------\n", + "Please be respectful of the neighbors after 9 pm. Treat the home as you would your own.\n", + "----------\n", + "Overall please treat the apartment as you would you own home, Keeping it as clean and tidy as you found it. Please clean up before checking out. Any major clean-up service required may be deducted from the deposit. No Loud / Large Parties . Please include the number of people who will be staying before you reserve this apartment. No extra guests other than the maximum 4 allowed who booked All smoking should be done outside, as this is a smoke free enviroment. \n", + "----------\n", + "Please plan to check in after 4 PM and check out before 11AM. No Smoking, No pets Please No parties and quiet hours after 9 pm Clean dishes We are not responsible for your belongings. Thank You!\n", + "----------\n", + "Please be mindful of others, no loud music and please be clean and keep the place in great condition, as you found it. Any question or problem, or immediate need you may have, please send me a message or call me, and I would solve it ASAP.\n", + "----------\n", + "1. Guests should be considerate of the other roommates in the apartment. The other roommates are all great/friendly/easy-going people, so there shouldn't be an issue! 2. I expect guests to clean up after themselves, especially in the kitchen and bathroom since those are communal areas. 3. I would prefer if guests did not invite their own guests or throw any events without the consent of the other roommates 4. Obviously, I would like the guest to be respectful of the furniture and make sure they do not damage/break any property that is not theirs 5. The guest cannot be a smoker or expect to do any illicit drugs while staying the apartment\n", + "----------\n", + "**The building has 5 units in total and all other units are occupied by year-round young professionals who work at the local hospitals, law firms, consulting companies or even dance at the Boston Ballet! Please be mindful of them and act as you would with your year-round neighbors. You know, keeping it quiet, clean and pleasant to you and all else! **The kitchen is fully equipped with top of the line items, but please maintain it a vegetarian kitchen if you choose to cook, so that our kosher friends can enjoy the apartment as well. You may bring in non-vegetarian takeout from Wholefoods or one of the great restaurants around, we will have plenty of plastic/paper utensils and plates for your convenience. **Absolutely NO SMOKING, of any kind, in the apartment or the building's stoop. There is a garden with benches a few buildings down if you must have a smoke.\n", + "----------\n", + "Check-in and check-out times are flexible. In general, afternoon/evening check-ins and morning/early afternoon check-outs are preferred. Guests are expected to be respectful and independent. Guests are welcome to use the kitchen, and are asked to clean up after themselves.\n", + "----------\n", + "Absolutely no additional guests other than those confirmed in the reservation. Please be mindful of cleanliness in living spaces - I live here and like to keep things tidy. :) No smoking in the building. No drugs.\n", + "----------\n", + "No smoking in the apartment, even with the windows open. No excessive cologne/perfume. Please take off your shoes on the landing and don't wear any outdoor shoes inside. No food in the bedroom, please. No food or drinks in the music room. Be considerate of the neighbors; no excessive noise, and keep quiet after 9pm. Please tell me if anything gets broken in the apartment. Talk to me first if you want to hold Yggy. Don't open the terrarium before we talk. No overnight guests.\n", + "----------\n", + "8 nights minimum stay, no smoking or pets.\n", + "----------\n", + "This apartment is for residential purpose. No any commercial or other non-residential activities are allowed. Keep quiet and clean in the apartment. No guest is allowed to stay after 9:00 p.m. and before 8:30 a.m. Anyone who keeps his/her guest overnight without permission from the host will lose the reservation and should move out immediately. No party in the apartment. You need to share housing duty if staying over 5 days.\n", + "----------\n", + "No pets and no smoking (including outside near the entrance, as it sometimes blows back into the building). Please remove your shoes when entering (we have sensitive floors :)). Thank you!\n", + "----------\n", + "Professional building, please be considerate of other residents in the building. This is not a place for parties.\n", + "----------\n", + "- no shoes inside - quiet after 8:30pm\n", + "----------\n", + "There are real beds for eight. Linens, sheets, towels, basic kitchen and basic toiletries are provided. Please leave the house in the condition that you found it. This unit is a townhouse with two neighbors attached side by side to the building. Please be respectful and keep noise to a minimum after 11pm and before 7am. \"NO SMOKING\" \"NO PARTIES Thank you!\n", + "----------\n", + "No smoking, drugs, alcohol or pets allowed in the property, including the balcony. No overnight guests or parties.\n", + "----------\n", + "My cat is outdoor/indoor so he comes and goes. We are pretty quiet except the occasional radio news in the late morning.\n", + "----------\n", + "Please tidy up and leave place clean. Dishes are to be placed in dishwasher and cleaned. Laundry to be placed in washer and turned on before leaving.\n", + "----------\n", + "• Check-in time is 3PM.\n", + "----------\n", + "Feedback is welcome--please let us know how we can improve your experience! Check in is 4-9 p.m. Early and late check-ins are possible upon request in advance, subject to availability. Check out time is 11 a.m. Late check-out is possible upon request in advance subject to availability. Regretfully, the suite is not appropriate for young children and we cannot accommodate them. Regretfully, for health and safety reasons, we cannot permit smoking on the property. Regretfully, we cannot accommodate pets ! week's cancellation notice or full charge. Discounted rates for weekly and longer stays.\n", + "----------\n", + "This is a non-smoking building. Absolutely no smoking of any kind is permitted. Please respect that this is a quiet, peaceful building; please keep the volume of voice and television at a reasonable level. No pets, please.\n", + "----------\n", + "We have two kids. We will be respectful to Guests and expect you to be the same. Its a 3 floor house and we live in the top floor so you will have quiet time. Kids go to Daycare all day.\n", + "----------\n", + "No smoking in apartment, in building or within 50 feet of entrance. No pets. Quiet and respectful of our neighbors.\n", + "----------\n", + "Building rule - respect other rooms quiet and private period after 10pm during weekdays and 11pm for weekend\n", + "----------\n", + "In the building you are my guest, know my name and our unit at all times or they will throw you out. they don't care if you are from airbnb or the king of England, you don't know who you are here with they toss you. Don't make a problem for the doorman under any circumstances (being drunk and locked out, call me not him). He can't get you in. There are some high rollers in the building, act like you have been there before :) There are some nice common areas, just act like the upstanding business professional you are.\n", + "----------\n", + "No smoking in the house. No pets.\n", + "----------\n", + "No Smoking in the building and common courtesy and respect. Roomate who rents with me needs use of the batroom around 7:15 am to get ready for work. Enjoy your time here in Boston!\n", + "----------\n", + "Please no parties, and no loud noise past 11p, out of respect for the neighbors. Please no smoking in the building. If you cook or otherwise eat in the apartment, please reasonably clean up after yourself.\n", + "----------\n", + "Check-in is after 3 PM Check-out is before 11 AM\n", + "----------\n", + "-Quiet hours after 10 pm -Lock the front door when exiting and entering the property\n", + "----------\n", + "Please Note: This unit was just renovated in April 2016 and it comfortably accommodates one to three guests (two guests in the bedroom and 1 guest on the available queen air mattress). Please request an air mattress (if needed) when making a reservation. No smoking, no pets, no parties, and must be 25 years old to book. Please be mindful to our neighbors in the building; quiet hours after 10pm. Please be considerate of our next guests who will be staying after you, if something is broken or needs fixing, please let me know, as I have an arsenal of tools and enjoy fixing things. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left next to the trash can (additional bags are under the sink) - All windows are closed and locked - If used, the air mattresses are deflated and put away (please leave used linens for the air mattresses on the floor) - If furniture was moved during your stay,\n", + "----------\n", + "Please remember that this is a residential building. The building rules, apartment occupancy restrictions, and the year-round tenants must be respected. There is no smoking allowed in the apartments and significant fees will take place if occurs.\n", + "----------\n", + "Must be 21 to book No loud music No parties No smoking No pets\n", + "----------\n", + "- 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. Fee for smoking will be 10 times your total reservation cost. For example, your total reservation cost is $350. Fee for smoking on premises will be $3,500. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $20\n", + "----------\n", + "We except our guest to be respectful of our home and us. There is no smoking in the home but smoking outside is allowed and needs to be disposed of properly.\n", + "----------\n", + "Not smoking, drugs, or alcoholics allow. Guest most inform the purpose of their trip and provide ID or passport upon arrival. Only 1 gust allow unless the guest consult the host first for any other type of arrangements.\n", + "----------\n", + "- It is just the couch you will be sleeping on, but you will have access to the rest of the house i.e bathroom and kitchen. 3 of us live here and are very friendly! But as you can see from the pictures, our place is spacious. - We are not allowed to make extra copies of keys so you just need to coordinate with one us when you need to be let in. We are flexible and willing to accommodate you. Our place is meant for short visits, a few days tops so you don't have to pay crazy Boston hotel prices. -We provide clean sheets, a pillow, and blankets to make your stay as comfortable as possible -New Rule 7/27: I didn't realize how many bookings I would get, so I ask that you check in and check out before or at 10:00 AM on the days of your reservation. If other accommodations are needed, please contact me! If not, I will plan for a 10:00 AM arrival and a 10:00 AM departure. I'm very flexible and can wake up early or late to let you in, but I just need to know in advance!\n", + "----------\n", + "Please respect the house as if it were your own. This is NOT a party house. We live here, as do our neighbors. Quiet time is generally after 10 PM. Check-in is at 3:00 PM sharp, and check out is at 10:00 AM sharp. We DO NOT accommodate early check-ins or late check-outs. These time are in place for our cleaning crew. PLEASE be respectful of their timetable. They work very hard to turn around the entire house in time. If these times do not work for your group please do not book. Please remove your shoes and place them in the sitting room directly to the left of the entrance on the shoe mats. There are no shoes allowed in the house. We DO NOT allow smoking in the house, on the deck, in the courtyard, or in the driveway. Please do not loiter in the courtyard or driveway. Parking in the driveway is prohibited. You must contact me when booking to receive instructions for use of my parking pass to a nearby garage. The parking pass is for ONE non-oversized vehicle. The garage is a 2.5 minu\n", + "----------\n", + "- Pets under 30pounds only. - There is a grill in the back yard for guest use\n", + "----------\n", + "When you arrive, the keys will be in a lock box outside. Please return keys to that lock box upon your departure.\n", + "----------\n", + "Please be respectful of my home and treat the space as if it were your own. No guests No Smoking Always turn off lights when leaving space Please clean up after yourself Always lock door when leaving and after arriving Please observe quiet hours between midnight and 7 am. Upon check-out, please leave sheets + towels on the floor of the bedroom and return key. Check in 3pm: flexible Check out 11am: strict\n", + "----------\n", + "No drugs/ No loud sex ( sound easily go through to my roomie's room next door ) / ID copy required for check in, and it need to match your credit card information/ Please try to be nice to my fellow roomies, they are all both from China, really organized and nice guys, we are all go to Boston University, we tried really hard to keep this house clean and in the order./ Lost keys charge: $10.05\n", + "----------\n", + "Earlier than 1pm check-in may be an option, will accommodate when possible. Mutual civility and respect make life simple. I tend to turn in by 10pm - so this not a great location for very late night check-ins. Not a good situation for coming and going into the small hours. Quiet after 10pm.\n", + "----------\n", + "- We have school age children and request that our guests do not come and go and after 11pm on weekdays.\n", + "----------\n", + "Enjoy yourself as if this were your home. All we ask is that you are mindful of other guests and tenants when entering and exiting the home. No smoking on the property, both inside and outside. No candles. No pets.\n", + "----------\n", + "PLEASE NOTE THE FOLLOWING BEFORE REQUESTING A BOOKING: * I will reply as soon as possible to let you know if my apartment will be available for ALL your needs. - 1. We are happy to host Friendly, Neat, Low-Maintainence Adults & Well-Behaved Children. ---- All cookware, dishes and utensils in the kitchen are at your disposal ---- There will be basic condiments provided for you, but please ask about food as this is our home. We ask that you rinse whatever dishes you use & place in dishwasher & leave the kitchen as you found it. - 2. NO UNPAID ADULTS, CHILDREN, OR OVERNIGHT VISITORS PERMITTED - 3. NO SMOKING - 4. NO PARTIES - 5. NO LOUD MUSIC - 6. PETS (decided on a case by case basis, please inquire for more information and additional fees) - 7. PLEASE MAKE REQUESTS EARLY (to ensure availability) FOR ANY EXTRA Special Requests or Needs. - 8. RATES, AVAILABILITY & AMENITIES ARE SUBJECT TO CHANGE UNTIL A RESERVATION IS FINALIZED, AND WILL DEPEND ON TIME OF YEAR AND WHO REQUESTS A R\n", + "----------\n", + "- Check-in time is 1PM - 12PM. - Earlier than 1pm check-in may be an option, will accommodate when possible. -When you move in, I will clean the room for you. - Quiet after 11pm - Please treat the home as you would your own, and treat your hosts as you would like to be treated! - Please let me know If you have any question, I will try my best to help you. - Please try to keep quiet It is okay that you have a child who is more than 7 years to live in, but the price should be discussed.\n", + "----------\n", + "No pets and no smoking. Please place all of your dishes in the dishwasher.\n", + "----------\n", + "Keep in mind your neighbors are very close. Excessive noise and unacceptable behavior will not be tolerated.\n", + "----------\n", + "You will be very comfortable in our home but we ask that guests are respectful of the artwork that we have as we want to keep the place a fun place to hang out! Please no smoking.\n", + "----------\n", + "We prefer to limit the apartment to 4 people. It's our home, and we take good care of it -- so we hope you will, too. No smoking, no pets, no parties. All dinner ware/cooking supplied should be left in the dishwasher and all trash should be left in the trash can (additional bags are in the drawer above the trash if you need them).\n", + "----------\n", + "NO SMOKING ALLOWED AND NO PETS ALLOWED!\n", + "----------\n", + "Be a courteous neighbor - please keep noise at an appropriate level Be a courteous guest - Please leave my home and belongings in the condition of how and where you found them Clean up after yourself appropriately. Details regarding trash and cleanup will be provided in your welcome pack No smoking in the unit or in the building (strict). There will be a $450 fine for smoking in the unit or in the building No open flame No pets There is a $50 fee for lost keys\n", + "----------\n", + "No Smoking. NO pets. Please take off shoes when entering the apartment. NO PARTIES or HOSTING EVENTS, if a guests hosts an event or party, guests may be asked to leave.\n", + "----------\n", + "No parties or extra guests! Sorry\n", + "----------\n", + "No cooking Strictly one guest only\n", + "----------\n", + "Ideally a person that is respectful of my home , non smokers and no parties\n", + "----------\n", + "No smoking please. Sorry but no pets. No drinking to excess. No drugs. No children or guests under 21. \n", + "----------\n", + "1. Only the ORIGINAL OCCUPANTS at the time of booking are allowed to stay in the property overnight and secondly no additional guest will be brought in without prior authorization. 2. Excessive NOISE & DISTURBANCES, specifically on work nights (Sunday thru Thursday) are to be kept to a minimum after 10pm. On other nights of the week we ask that noise is kept to a controlled, restrained and respectable level do to the nature of this being a shared space. 3. SMOKING is not permitted in any of the inside premisses. You may smoke outside on the outdoor patio. 4. DAMAGES to the property and its contents (within the bedroom and the condo itself) will be subject to reinstitution in accordance to airbnb rules and regulations and may lead to the immediate dismissal from the property. 5. NO PETS allowed. 6. ENERGY: We are very energy-conscious, and ask that you turn off lights and other energy-using items when you leave the house for the day. 7. The CLEANING FEE covers the maintenance of the sha\n", + "----------\n", + "No smoking please!\n", + "----------\n", + "- We are young professionals who like to keep our home neat and quiet. We'll likely be working from home at times during your stay and we ask you to respect us the same way we'll respect you. No shoes from outside worn inside the house (indoor shoes are okay). No smoking. No pets.\n", + "----------\n", + "1. Only the ORIGINAL OCCUPANTS at the time of booking are allowed to stay in the property overnight and secondly no additional guest will be brought in without prior authorization. 2. CHECK IN/OUT: The standard check in and out times are 4 p.m., 12 p.m., respectively. However we're flexible and can accommodate your needs as long as it doesn't impact another renter if you have special check-in or out times. There is a keypad lock and each renter will receive their own passcode so you can come and go as you please and not worry about keys or timing. 3. Excessive NOISE & DISTURBANCES, specifically on work nights (Sunday thru Thursday) are to be kept to a minimum after 10 pm. On other nights of the week we ask that noise is kept to a controlled, restrained and respectable level do to the nature of this being a shared space. 4. SMOKING is not permitted in any of the inside premises, this includes the guest room, condo unit and building. You may smoke outside in the street or on the outdoor \n", + "----------\n", + "Please take care of my space and things.\n", + "----------\n", + "We ask guests to leave the house as they found it and to respect our home, our belongings, and our privacy. No smoking or drug use in our home at any time.\n", + "----------\n", + "Please take care of and respect the apartment as if it were your own home. We expect guests to be courteous of the other residents of the building. Both the building and apartment are strictly non-smoking. No pets allowed. Please do not use the hair dryer in the bathroom.\n", + "----------\n", + "No street shoes in the house, please, but especially not in the bedrooms. We recycle - make sure you do too while you're here. It's single stream so very easy -ask if you're not sure how it works. Check-in and check-out times are flexible all days except Sunday where check-out is by 11 a.m.\n", + "----------\n", + "This is a residential property and quiet is maintained. Absolutely zero smoking on or near the property. Be respectful and kind.\n", + "----------\n", + "1.The security deposit will be returned to the lessee, without interest, after lessee has vacated the premises and left the premises in clean and reasonable condition. The security deposit is non-refundable in case of noise violation and damage. 2.Premises may not be sublet. 3.Lessee agrees to leave the unit clean with doors and windows locked. 4.Premises shall be delivered to lessee in good and clean condition with all furnishings. 5.Lessee shall not smoke in the unit nor permit others to do so; no additional guests or pets are allowed. 6.Lessor is not liable for any tenant injury within the building or apartment unit. 7.The lessor can cancel the agreement should the unit be deemed unrentable without financial penalty.\n", + "----------\n", + "No cigarettes, parties or pets. If you're looking to stay longer than a week, please contact me before instant booking. Treat others how you want to be treated. :)\n", + "----------\n", + "Please review the terms of this rental agreement. Enclosed is our rental contract and rules. Please read carefully. If you have any questions please don't hesitate to contact me before submitting your payment. By submitting your deposit you agree to these terms, and the fee and dates outlined in the booking email. Please make sure that you have provided us with a cell phone for the primary contact as well as the EXACT number of occupants. Our rates are based on 2 person occupancy. We charge $25 per person, per night for additional persons. The unit is located at 256 Amory St. #1, Jamaica Plain, MA If you need directions don’t hesitate to call Christine at (PHONE NUMBER HIDDEN). Your confirmation is as follows: Check-in: after 3pm EST (No early check-in please) Check-out: by 10 am EST (No late check-outs please) Pre-arrival info will be emailed to you before check in. By submitting my deposit, I agree to all terms and conditions of this agreement RENTAL RULES AND REGULATIONS Arthouse\n", + "----------\n", + "- Respect as if it were your own home is all we ask :)\n", + "----------\n", + "We ask that guests be respectful and considerate of the family members who live in the home. NO smoking or pets please.\n", + "----------\n", + "Unlike most other Airbnb listings, what we do here is long-term rentals by the year, or by the semester and we can welcome compatible short-term guests. We try to keep the atmosphere conducive to studying and resting and a couple of house-rules are in place to this end. 1. No smoking on the premises. 2. No loud music or TV etc. 3. Only for one person (no couples, no visitors). We seldom have visitors, let alone overnight guests. We know this will be a major turn-off to many people, but we believe we can find a like-minded roommate who can have fun outside the house. 4. If you re not sure about your check-out date, you can reserve the minimum days and extend your stay at a discounted rate. 5. Check-in time is flexible, but it has to be coordinated at least 24 hours ahead. On arrival, a short registration process with a picture ID is needed in exchange for keys and wifi access. 6. Inside the apartment, we take off our outside shoes. So if you bring your own flip-flops, slippers or \n", + "----------\n", + "Respect the neighbors Absolutely no smoking in and around the property. Respect the neighbors Back door is for Emergency Exit only (clearly marked) Respect the neighbors We love dogs but sorry no pets\n", + "----------\n", + "Please remember that this is a residential building. The building rules, apartment occupancy restrictions and the year-round tenants must be respected. Parties, pets and smoking are not allowed under any circumstances and incur significant fees. \n", + "----------\n", + "- Enjoy Your self and have a pleasant stay!\n", + "----------\n", + "I have no time restraints on Guests. Come and go as you please.\n", + "----------\n", + "Leave shoes by door No strong scents (perfumes, hair sprays, etc.) No events, drunkenness, or loud music No noise in the stairway\n", + "----------\n", + "Please enjoy your stay while also respecting the apartment. Please no smoking, no guests except those on reservation, and no parties. Thank you and enjoy!\n", + "----------\n", + "Please treat my home as if it were your own. Be respectful of me, my cleaning lady,and anyone you may encounter in the building. No smoking (indoors or on the balcony). Please clean up after yourself, especially in the bathroom. Upon leaving, please put your trash in the chute and strip the linens off the bed. If you have any questions, please ask me.\n", + "----------\n", + "Always lock the front door and the apartment door. Always enter/exit through the front door. Don't smoke in the house. Don't leave dirty dishes. Tidy the kitchen when done and leave dishes ti dry in the dishwasher rack. Feel free to use the dishwasher. Detergent is under the sink.\n", + "----------\n", + "I love meeting guests, and expect you to be clean and respectful of our shared space.\n", + "----------\n", + "No smoking! If I smell smoke or if there is other evidence of smoking, you will forfeit your entire security deposit. Check in and check out time can be flexible depending upon the dates you are looking for and whether anyone else is staying. Unless we arrange otherwise, check in and check out is at noon. The cleaning fee covers two hours. If additional cleaning is required, you will be charged $50/hour, deducted from your deposit. Out of respect for my neighbors, I must insist upon no parties being held at my place. If my neighbor complains about a party happening, or if there is a big mess left at the place, you will forfeit your entire deposit. You agree to follow all of the rules of the building, including no smoking in the unit or on the balcony. Any issues with not following the building rules and you forfeit your entire deposit.\n", + "----------\n", + "We expect that you will treat our house like yours. We have done many exchanges all over the world and everybody loved our house. No smoking and no pets.\n", + "----------\n", + "Smoke-free house.\n", + "----------\n", + "No smoking is a MUST. Fireplace is decorative only. No candles may be lit - I do have battery operated available.\n", + "----------\n", + "This is a non smoking house. Quiet hours are from 10pm until 8am. Cars must be parked within fence so as not to block neighbors driveway. One parking spot only per room. Please don't use the kitchen for cooking as cleanliness becomes difficult to maintain with the velocity of guests that we host. We welcome you to have breakfast at your leisure. Please place dirty dishes in the dishwasher unless it’s full of clean dishes!\n", + "----------\n", + "No Smoking No Parties No Excess Noise - We have neighbors in the building.\n", + "----------\n", + "There are no towels included\n", + "----------\n", + "希望房间里一切都好好的吧\n", + "----------\n", + "--No Smoking. --Pets allowed with a $500 NON-Refundable Pet Fee (breed and weight restrictions may apply). \n", + "----------\n", + "No smoking, no pets, no parties please. Respect property and neighbors.\n", + "----------\n", + "This is a non-smoking residence. There is light housekeeping (biweekly washing of linens, removal of kitchen trash) but guests are expected to clean up after themselves and keep the area tidy, including removing hair from bathtub and sink and washing dishes right away. Remove shoes in the apartment. Slippers are OK. Turn off lights when exiting a room or hallway. Guests are not permitted without prior authorization. Overnight guests are not allowed. Be courteous to others in the household. Additional rules will be in the house manual, available upon arrival.\n", + "----------\n", + "Please be respectful of our neighbors and keep voices, music, etc at a reasonable volume. Please be tidy and take good care of our home. No shoes on the area rug, be neat with food and drink.\n", + "----------\n", + "- Peanut/Nut Free, Gluten Free house please for the safety of many people including the cleaning crew, myself, and others who wish to stay here in the future do not bring these items (i.e. peanut butter or peanuts) into the house - Please let me know if you plan to bring an animal as I do occassionally have a foster animal here, I'd want to make sure I wasn't fostering at that time, or make other arrangements. - No smoking in doors, it WILL set off the fire alarms in the building, which is loud and causes the entire building to have to evacuate and wait outside (and trust me, it is loud enough and annoying enough it WILL wake you from a dead sleep and you'll be rushing to get out and save your ears from the sound! Also there is a $100-$200 fee for smoking inside or for smoking infront of the building (or either building on each side). But, you are welcome to walk across or down the street a bit or around the block, etc to smoke - You may order movies or anything else On Demand, but ple\n", + "----------\n", + "Shoes off apartment (slippers available to guests) No smoking of any substance on the property Respectful Friendly Quiet Leave things as they were found, clean after yourself No dishes left in the sink Please use blue cups, bowls, utensils and plates and Store dry foods in 3rd tall pantry cabinet for your personal food storage and store food in the fridge on the 1st top row Guests may not have additional guests without clearing them with me first\n", + "----------\n", + "House rules: Guests agree to the following terms and conditions 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes, and parking passes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with Jordan or AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $125 per hour fee for unauthorized early checkin or late checkout. 16\n", + "----------\n", + "No Smoking, Respect for other guests and neighbors. Well behaved children only. Limit noise after 10pm. Please do dishes/run dishwasher prior to departure. Parking is available on Linwood and Gardner streets 24 hours. No parking is permitted on Centre Place.\n", + "----------\n", + "Make yourself at home! While that means enjoy the amenities in the apartment during your stay, I hope you would also treat my home with respect. Lastly, accidents do happen — I get it :) Just leave me a note about things that are broken or not working. \n", + "----------\n", + "Quiet times are 9pm-8am. Please note that there are children in the house getting up for school at 6 am on Thursdays and Fridays. This is not the ideal place for late-sleepers! All overnight guests must be booked through Airbnb. If you plan to have visitors to your room please check with us beforehand. No smoking or drugs in the house. Moderate drinking ok. No candles or any open flames. \n", + "----------\n", + "No smoking inside the apartment. Pets are allowed but for a fee Be respectful of the neighbors\n", + "----------\n", + "No smoking and no party allowed. We don't want the neighbor to complain.\n", + "----------\n", + "- - NO PETS! NO SMOKING ON PREMISES! NO PARTY! A printed house rule will be provided. Please be respectful to others when all rooms are booked. 10 AM Check-out and Check-in is between 12 PM (noon) - 3 PM. Late check in after 8 pm is $50, lock out is $50. Respect yourself, Respect others, clean up after yourself. No Smoking/drinking in apt. Thank You! Location Rules: The \"Exact Address Location Is Not Disclosed For Security Reasons\" And Is Given Out 24 Hours Prior to Check-in. If This Is a Problem for You, Please STOP Here And Contact Other Hosts for Your Stay. This Is a Part Of My House Rules.\n", + "----------\n", + "Please be respectful of everything in our apartment. This is our primary residence, so please treat our home like it were your own! Thank you!\n", + "----------\n", + "Feel free to wear house slippers to keep the place feeling fresh and cozy. No frying fish (or preparing other foods with strong odors). Absolutely No Smoking inside the house (OK on the back porch, only).\n", + "----------\n", + "NO Smoking.\n", + "----------\n", + "- Please clean after yourself. Do not leave dishes and personal items in the common area such as the kitchen and Bathroom - Please do not bring guest over - Please don't play loud music\n", + "----------\n", + "THE HOUSE HAS 4 FLOORS AND IS SHARED WITH THE OWNER AND ONE OR TWO OTHER OCCUPANTS. QUIET IS ASSURED (ESPECIALLY LATE EVENINGS) SMOKING IS NOT PERMITTED INSIDE THE HOUSE. THERE ARE NO LOCKS ON ROOM DOORS AS THESE ARE BEDROOMS IN A PRIVATE HOME. PRIVACY IS ASSURED AND RESPECT OTHERS' BELONGINGS \n", + "----------\n", + "No guests over other than the ones in your booking. No smoking in apartment or rooftop lounge No partying No loud music that would disturb other residents. No pets. Must be clean and sanitary. If you cook, you must clean up and return all cooking utensils back in their proper place. If you wish to do laundry, bring your own detergent.\n", + "----------\n", + "Enjoy our home and please leave it clean & tidy like you found it :) Thank you for not smoking. Sorry, no pets even though we love them. We have nice respectful neighbors so no loud music or parties. Hanging out & music are fine just keep others in mind :) Thank you!\n", + "----------\n", + "We want you to treat our home as your own. We have a few house rules- -Extra visitors and overnight guests are not allowed. - No pets -No smoking -Cooking facilities are not available -Minimum 2 night stay\n", + "----------\n", + "All overnight guests must be booked through Airbnb. If you plan to have visitors to your room please check with us beforehand. No candles or other open flames. No smoking, or drugs in the house. Moderate drinking ok. \n", + "----------\n", + "Be courteous and kind, act with respect toward all house guests. Also, please know you will be staying with other AirBnb guests and/or a roomate in the house. If you need two separate beds, you must book either two rooms or be willing to stay complaint free in a semi private room (pictured) in living room with think, noise cancelling curtain (actually quite nice).\n", + "----------\n", + "Be respectful and mindful of neighbors.\n", + "----------\n", + "No loud house parties. Please be respectful of others living in the building in other units.\n", + "----------\n", + "Hello! We look forward to having you. Have a great time! House Rules and Information Greetings! We like to think of all of our guests as friends and hope that you will treat our apartment as you would treat yours, not as one might treat a hotel room. There is NO SMOKING allowed in the apartment at any time. Damages: if you notice any damage when you arrive, please report it to our office so we are aware of it and don’t assume it happened during your stay. Laundry: there is a European style washer/dryer combo unit in the apartment. The manual is located on the left side wall in the closet. This is a high efficiency energy efficient unit. HE laundry detergent only is to be used. Be advised that wash/dry cycles take a considerable amount of time. Bath: there is a hair dryer in the bathroom for guest use. Linens: When you are done with your towels, please put them in the laundry basket in the bedroom. It would be great if you can take the sheets you have slept on and put them in the b\n", + "----------\n", + "No smoking in building per MGL. \n", + "----------\n", + "We just ask that you respect the other guests and residents in the building.\n", + "----------\n", + "Quiet time (including TV sound turned low) at 9:30 PM, though guests, of course, can come and go before and after that. Just be respectful that this is also a house where we live and work. Also, no smoking and no pets - thanks.\n", + "----------\n", + "1. No damage to the house or furniture 2. No Smoking, No Pets, No Drugs 3. No more sleepover people then you booked 4. Keep quiet after 11:00 PM 5. Be respectful to neighbors 6. Keep the kitchen clean after used 7. Keep the bathroom clean after used 8. Return “Parking Permit\" before check out 9. Check-in: 3PM, Check-out: 11:00AM\n", + "----------\n", + "不要恶意破坏家具,不能过于吵闹影响他人生活。这里不是度假村或是轰趴馆,只是提供舒适的休息场所。\n", + "----------\n", + "- The building and its premises and grounds are 100% smoke free. No smoking of any kind is allowed, neither inside or outside. No smoking in front of the house please. - Please use only the front stairs for access - We apologize but the tub is not available for use. - Please make sure to return any furniture you take out to the deck at night, to prevent it from getting it wet from rain or dew. Thanks!\n", + "----------\n", + "- I like to keep a quiet house. Please keep all noise low, especially in the morning and late at night. - Please take your shoes off before entering the apartment. - Always bolt the apartment door when entering or exiting. - If I am away when you check out, please put the keys in the lockbox and remember to set the code to 0000. - I don't charge for cleaning or extra people. Kindly return the favor by keeping the place clean. - No smoking indoors. - You may make use of food and beverages only if they are explicitly shared. If you have any questions, please ask.\n", + "----------\n", + "-No smoking -No guests except those registered in advance. -House is not child friendly. No guests under 18 years old. Only 2 guests can be accommodated. -No pets! -Quiet in common stairway /entranceway used by 3 tenants is required common courtesy. -Please remove shoes in the unit to minimize noise below. \n", + "----------\n", + "Not really a 'rules based' household, or perhaps it is more that we and our guests have always understood each other! We do appreciate people taking outdoor shoes off in the house.\n", + "----------\n", + "Please, no smoking indoors. Do not climb onto the fire escape because the police who routinely walk around will fine you $350. If you're unsure about anything, just ask! I'm here to help :)\n", + "----------\n", + "- There is no dedicated parking spot for this apartment. Use the abundant street parking. - This is a quiet residential neighborhood. No late loud partying allowed. - It's the first (bottom) floor, please do not meander to upper floors and be courteous to the neighbors. - Close all windows and lock doors whenever you leave the house. Very important. This is not a dangerous neighborhood but it's not crime free and the neighbors are very annoyed when this occurs. - No smoking indoors or outdoors close to the apartment. - This is an old house so please be mindful of the noise. - You are welcome to cook of course but leave the place as you found it - There will be basic breakfast in the fridge/freezer and cabinets: bread, chocolate spread, cereals, tea, coffee, etc. Help yourself.\n", + "----------\n", + "No smoking or drug use. No parties. No drinking of alcohol in room\"p No guests other than those specified in your booking. No moving of furniture without asking Turn lights off when not in use No food in rooms, food can be stored in kitchen area Kitchen not in use Check-out time no later than 11am Host's food is off limits only what is serve and put out for breakfast!\n", + "----------\n", + "The art is for your enjoyment. Please do not touch or move anything. Please make up beds with fresh linens and wash towels and linens before you leave. Leave house broom clean. Dishes should be washed and put away. Sorry, no pets and no smoking. There are age restrictions for guests.\n", + "----------\n", + "Treat it as your own and have a blast!\n", + "----------\n", + "I prefer guests who are in town for a reason (work or sight-seeing, etc) so they are out & about all day & in to the evening, not hanging around the condo all day. I require my guests to leave for the day by 10AM & not return before 4PM. Please obey check-in (4PM) & check-out times (10AM). I need time to clean up after prior guest to get ready for your stay. No pets. No parties, this is a quiet building with all working professionals. When using the kitchen facilities, I ask that you tidy up after yourself (dishes in dishwasher, wipe counters down, trash in the trash barrel, etc...) and if you spill anything on the floor/furniture, please clean up after yourself.\n", + "----------\n", + "Please clean after yourself, wipe spilled water after using the bathroom, do not smoke in the apartment and treat the place as you would treat your home! Please let us know about pets or service animals in advance.\n", + "----------\n", + "No smoking inside. Since I have a dog, there are no other pets allowed.\n", + "----------\n", + "Don't do anything you wouldn't want done at your place. Our home is your home when you stay here. Smoking is not allowed indoors, but we have a balcony you can smoke on.\n", + "----------\n", + "Please no smoking or pets. You are welcome to use our cookware, dishes and utensils. We just ask that you are respectful of the things in the apartment. \n", + "----------\n", + "No smoking or loud parties inside the apartment. As long as you are respectful, and do not cause any damage to the property or make too much noise to disturb me or the neighbors, you will be fine!\n", + "----------\n", + "One week minimum stay please. No smoking, no pets. Antique furnishings so just be careful with glasses, coffee cups, etc..\n", + "----------\n", + "No smoking and no pets. No parties without prior approval. Names and ages of all guests is required for booking.\n", + "----------\n", + "No smoking or partying in the apartment.\n", + "----------\n", + "Please leave the room as it was when you first came.\n", + "----------\n", + "No smoking in apartment, foyer, or outside building. No parties. No pets. Quiet and respectful of our neighbors. \n", + "----------\n", + "No smoking please, no pets to protect our hardwood floors. Children under 18 to be supervised at all times. Bedroom accommodates only 2 people. This is a historic Victorian on three levels. There is no elevator in the building or inside so please note if you have a mobility issues\n", + "----------\n", + "No smoking. No hosting visitors in-house.\n", + "----------\n", + "Be courteous and respectful to people in the house. We like to keep it clean and tidy, so your help in keeping your areas clean is much appreciated.\n", + "----------\n", + "All guests are expected to be respectful and mindful of shared spaces, including bathroom, kitchen, and TV room. This includes cleaning up after you and your group in all shared areas. Absolutely no smoking. Guests arriving or returning after 10:00pm must maintain a courteous volume in consideration of other guests. Pets are welcome! If you have a pet and use the backyard, please clean up after your pet.\n", + "----------\n", + "Please be respectful of the driveway and do not park in the driveway or anywhere on Barrett Ave ( as all spots are assigned to residents) Parking on M street is fine!\n", + "----------\n", + "Smoking whatever is your preference is ok on the decks. Please use ashtrays and dispose of debris. Clean up after your pet but feel free to use the yard for bathroom activities.\n", + "----------\n", + "This is a quiet residential neighborhood. No partying or loudness please. No smoking in or around the premises. Please avoid wearing shoes in the carpeted parts of the house. Thank you!\n", + "----------\n", + "I expect guest to be kind and do not party at the house. I am on the other hand would love to provide any advice and conversation what is possible in Boston and how to enjoy the time in South Boston. \n", + "----------\n", + "No Smoking on the apartment. No Ilegal Drugs No Parties on property. No pets PLEASE TRY TO BE AS QUIET AS POSSIBLE CONSIDER OTHER NEIGHBORS OR TENANTS. THANK YOU IN ADVANCE!.\n", + "----------\n", + "The apartment feels larger then listed, Nice high ceiling in the living room and an Island kitchen to enjoy breakfast. The bedroom has a loft that fit a queen mattress, hardwood floors through out. Bathroom has a bath tub\n", + "----------\n", + "Please no smoking or drugs. No parties.\n", + "----------\n", + "No smoking anywhere on the property is allowed including hallway, back porch, and driveway. Please take your shoes once you enter the apartment.\n", + "----------\n", + "Please treat my home with the love and care you would give your own.\n", + "----------\n", + "No smoking, no drugs, no parties, no pets. Please be polite and courteous.\n", + "----------\n", + "You have a private room but sounds should be moderate for me and the neighbors Quiet at 11pm No Pets No Parties No Smoking\n", + "----------\n", + "Please clean your dishes, alternate who takes the trash out, don't make too much noise when others go to sleep. Simple rules.\n", + "----------\n", + "We are flexible on check-in/checkout times\n", + "----------\n", + "Have FUN! Wireless Internet is Foster St. Castle and Password is Brighton169171 No smoking inside, but feel free to smoke outside or on the deck! Just please properly dispose of butts. Bigger black remote turns on the TV and Volume, Smaller black remote is for the Blue Ray Player. Comcast remote is for Cable. No loud music after 10:30, but head out on the town!! Uber and Lyft are great for getting cheaper, faster rides. The Buses are usually quicker and cleaner than the T, especially the B line. If taking the T, definitely walk to the C/D in Cleveland Circle. There are awesome fields and parks very close (walking) to the house. Make sure to pick up after your dog.\n", + "----------\n", + "You will be sharing a bathroom, so you must be considerate of time spent in the bathroom in the morning when getting ready. If you use the kitchen, please put the dirty cups, bowls, plates, and silverware in the dishwasher, and hand wash all of the pots, pans, and cooking tools you use. Please clean up any mess you may have made. Remember to turn on the fan when using the oven/stove. Please only smoke outside, away from the apartment building, and dispose of your cigarettes responsibly. Checkout: Checkout is at 11:00 am, please inquire if you would like to check out later or leave your bags with us for the day. If we are not awake/home when you leave, please leave the passes on the desk in your room, lock the front door behind you, and put your keys in the lock box behind the front stair case.\n", + "----------\n", + "Please do not smoke in the house. Please no parties or loud events.\n", + "----------\n", + "No smoking in the apartment, in the common hallway or outside the building. Respectful of our neighbors - no loud music.\n", + "----------\n", + "Clean sheets and towels will be provided. At end of stay sheets and towels must be stripped and left on the bed. You will find the kitchen spotless when you arrive, please leave it the way you found it. This same courtesy goes for the rest of the unit as well. It's a real gem, thank you for helping to minimize cleaning fees and to help the next guest to enjoy it as much as you will. The furniture will be changed on Sept 14th, but will still be nicely set up. Also new screens have been installed, to avoid bugs in the early fall its best to have the Windows or screens down. One last item is that with notice I may need to stop by / in the unit. This would only be during the daytime, for a short duration, and would have 24 hr notice. Thanks. ;)\n", + "----------\n", + "ANDREA'S HOUSE RULES: ** All overnight guests must be booked through Airbnb. If you plan to have visitors during your stay, please check with us beforehand. ** Urban Oasis is a NO-SHOES space. There is a bench just inside the door where you can sit and remove your shoes. PLEASE BRING SLIPPERS or inside shoes if it is your preference for inside. ** Please help us avoid any staining and damage to the furniture & linens by keeping food and beverages out of the bed. [**For MAKEUP REMOVAL please use the wipes provided and/or the dark washcloth.] ** AFTER CHECK-OUT, I'm happy to post forgotten items. There is a $25 (plus postage) fee for this service. Should you need this, the extra fee goes through the Airbnb Resolution Center. ** Please use the PAPER TOWELS from your kitchen area to clean up messes that could stain our whites ** Enjoy our apartment and please leave it clean & tidy as you found it ** Thank you for not smoking inside. If you must, please do so outside. There is an asht\n", + "----------\n", + "#NAME?\n", + "----------\n", + "- Quiet hours from 10 p.m - 7 a.m. - No loud parties or events - No illegal substance or activity\n", + "----------\n", + "No Smoking Be courteous to neighbors No pets\n", + "----------\n", + "We regret we cannot accommodate pets. Strictly no smoking anywhere on the property. Not inside. Not in the yard. Not on the deck or driveway. Like many New England houses, our house is constructed entirely of wood. No smoking please. \n", + "----------\n", + "I expect my guests to be respectful of me, my space and my belongings. I am pretty laid back, but a few things to note: - No pets - No smoking or drugs - Please don't eat my food without my permission (but you can store stuff if you want!) - Feel free to text me if you need to get ahold of me for any reason. - If you leave something behind, I don't have a problem trying to get it back to you, but it will be on your dime. - No more than two guests, please! - Please keep loud noise to a minimum. - Please respect my privacy if I go into my room.\n", + "----------\n", + "Pets Allowed ( With Fee ) NO Smoking\n", + "----------\n", + "No Street Shoes allowed in House. No cooking Keep rooms Neat and Clean\n", + "----------\n", + "No smoking or partying.\n", + "----------\n", + "NO Smoking. Cats Allowed With Fee.\n", + "----------\n", + "No Smoking No Pets No Parties but few friends always welcome Its a private space but keep sounds moderate for neighbors and me\n", + "----------\n", + "House Rules Please treat my home as if it were your own. Be respectful of me, my guests, and anyone you may encounter in the building. Please do NOT mention airbnb and that you are renting the unit. No smoking (indoors or on the balcony). Please clean up after yourself, especially in the bathroom. Upon leaving, please put your trash in the chute and strip the linens of the bed. If you have any questions, please ask me. No parties or loud noises in the unit after 10 pm but the club lounge is 24 hours and you are welcome to relax and socialize on the 20th (URL HIDDEN) long as your respectful and not overly loud. PLEASE ALSO BE MINDFUL OF NEIGHBORS.\n", + "----------\n", + "To keep the house and house items in the same condition they were when they arrived\n", + "----------\n", + "No smoking. Please be respectful of our neighbors.\n", + "----------\n", + "House rules: Guests agree to the following terms and conditions 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes, and parking passes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with Jordan or AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $125 per hour fee for unauthorized early checkin or late checkout. 9\n", + "----------\n", + "No cologne/perfumed aftershaves/any sprays/candles/anything burning Non-smoker, no smoking in and out of home No guests/visitors Please be considered to other and make less noise NO street shoes indoor Light use of microwave/toaster oven, not for cooking Pick up after yourself No eating in bed Shower is not to be used 5.45 am-10 am to prevent long wait for bathroom\n", + "----------\n", + "No smoking Smoking and the use of marijuana, tobacco or nicotine in any form is not permitted anywhere on the property (inside or out). Including, but not limited to; Cigarettes, Pipes, E-cigarettes, Cigars, Hookahs, Bidis, Kreteks, Chewing tobacco, Snuff, Snus, Pellets and other candy-like forms of tobacco. No parties There should be no more than 4 people sleeping in the apartment unless other arrangements have been made at the time of booking. Please note that the back yard is not intended for use by Airbnb guests. Please remember that we live in the house too. You will hear us from time to time as we move around and we will hear you as well and that is to be expected (the sound proofing in the house is not great), but please try to keep things quite after 11pm. We have a tan dog named Marco and a black cat named Pana. They are both very friendly with people, but they don't share well with other animals, so please no pets in the house.\n", + "----------\n", + "In order to provide a healthy, comfortable and safe environment, the following are the rules of my house. It is your responsibility to not only read these rules once, but to be aware of and follow all of them throughout your stay at my home. Most of what follows is common sense or common courtesy. The rules serve to protect you as a guest by helping ensure that the environment you find here is the one that I intended to create. Please keep in mind: You will be sharing common areas with other guests or residents, and thus the cleanliness of the common areas is far more dependent upon all guests cleaning up after themselves, than it is upon my once a week cleaning. Most guests do very well in keeping common areas clean! House rules: Please do not drag luggage up the front stairs. Please leave things as they are in your room: do not remove pictures from walls, don't move furniture around, and do not remove mattress protector from the mattress. Also, it should not be necessary to say, bu\n", + "----------\n", + "We don't wear shoes in the home. Guests should be respectful with noise levels when coming, going, watching TV or listening to music. We have neighbors in the building and don't want to disturb anyone. Guests should pick up after themselves, especially in kitchen & bathroom. Guests staying a week or longer may be expected to help with basic chores (taking out trash, etc). Please keep your bath towel & clothing in your bedroom after use & clean hair from the shower drain. If you forget toiletries, please ask before you use ours, and we will do our best to help. You are welcome to use our washer & dryer. Please let use show you how to use them before you do your first load of laundry. Please do not use air conditioners or space heaters in the room without permission. We provide a fan & extra blankets when needed. Please do not light candles or incense, or spray artificial air fresheners in our home. We have natural sprays and diffusers that you may use. Please close & lock windows when n\n", + "----------\n", + "This is a private room with access to a private rooftop deck. The bathroom is shared with one roommate who is at work from 6am-6pm. The kitchen is available for your use. The room has a minifridge with water and cold brewed coffee. We ask that you don't smoke.\n", + "----------\n", + "** No open flames [except kitchen gas stove and patio grill] ** Please leave shoes off upon house entry [to protect the beautiful old wood floors] ** Please try to leave things pretty much the way you found them at end of stay ** Please leave beds that were used unmade and leave all used towels, pillows and blankets on the unmade beds ** Please place all trash in large black bags [in kitchen ell] and recycling in see-through bags [gray bin, extras located in kitchen ell]. These should go out to curbside pick-up on Mondays and Fridays by 7am ** We are glad to host children but please be aware that the house is NOT child-proofed. Parents will need to watch children, especially toddlers, carefully. We can provide a stairway gate for the floor on which the toddler is staying but none-the-less this is a five story house and long winding stairway which may be a safety challenge for young children and their parents. ** Unfortunately accidents do happen so if anything in the house gets st\n", + "----------\n", + "Unfortunately no pets are allowed in the building. Smoking is prohibited on the premises. Trash is put out only on the designated day in the back of the building. No parties with kegs, djs or live music.\n", + "----------\n", + "Respect the other neighbors and the host. Quiet after 9PM Respect all apartments' belongings by leaving them as you found them. Respect check in and check out time!\n", + "----------\n", + "- Please clean up after yourself when using the kitchen. - When using the bathroom, please be careful to minimize the amount of water on the floor when showering and using the sink. - Please make sure to remove any strands of hair from the sink and floors with a tissue or paper towel. - Be respectful of the noise levels after 11pm. - Please be quiet coming in late or leaving early. - No Smoking - No Pets - No overnight guests - For safety reasons, please make sure to shut and lock the windows and front door when you leave. *** Note: cancellations are subject to fees that are non refundable ***\n", + "----------\n", + "There are still some older people in this neighborhood and it should go without saying it is important to have respect for the locals. No smoking, & no parties!\n", + "----------\n", + "Please no LOUD music after 2 AM. The neighbors have recently complained. Just be reasonable and cool and everything will be OK. Thank you : )\n", + "----------\n", + "Expect respect for the family and the space--treat it as you would your own home--or better :).\n", + "----------\n", + "I love having you here; you'll feel comfortable and at home. You will have a key to the house, so feel free to come and go as you choose. Enjoy your stay in Boston!\n", + "----------\n", + "Come as you are (only request: no smoke, no pets).\n", + "----------\n", + "No Smoking. No pets except by special arrangement. Please keep reasonably quiet when in the apartment/building--this is a quiet and densely populated neighborhood. Please DO NOT leave trash on the street. Separate recycling. Contact me if trash needs to be removed during your stay. The maple & cherry furniture is made in Boston. Please be nice to it (wipe & dry with sponge any food..don't drip hot wax..). Also say what you like about it in your review (-: if you like it follow @treeturn on instagram!\n", + "----------\n", + "No candles, smoking or flame of any kind is allowed. No pets and please be sensitive to the environment and our bills by turning off lights, heat and water when not in the apartment.\n", + "----------\n", + "No pets are allowed in the house.\n", + "----------\n", + "In order to provide a calm atmosphere for guests, as well as a comfortable and safe environment, the following are the rules of my house. Please be aware of and follow all of them throughout your stay at my home. Most of what follows is common sense or common courtesy. The rules serve to protect you as a guest by helping ensure that the environment you find here is the one that I intended to create. Please keep in mind: You will be sharing common areas with me, and the cleanliness of the common areas is more dependent upon all guests cleaning up after themselves than it is upon my cleaning. Most guests do very well in keeping common areas clean! House rules: Kindly remove shoes upon entering my apartment. I ask this because my hardwood floors are very old, and shoes increase the noise to my elderly downstairs neighbor (who is wonderful, so I do what I can to make life easy for her). Please try not to drag luggage up the stairs, as it disturbs the other building occupants. Please le\n", + "----------\n", + "1. This apartment is for residential purpose only. No any commercial or other non-residential activities are allowed. 2. Keep quiet and clean in the apartment. 3. No guest is allowed to stay after 9:00 p.m. and before 8:30 a.m. Anyone who keeps his/her guest overnight without permission from the host will lose the reservation and should move out immediately. 4. No party in the apartment. 5. No smoking inside of the house. 6. No pets, please. 7. You need to share housing duty if staying over 5 days.\n", + "----------\n", + "Please respect the other neighbors. This building contains professionals and is very quiet. Please no smoking, parties, and pets. Must be over 21.\n", + "----------\n", + "No smoking, no drugs, no partying, no pets. This is not a party pad. We would like you to respect all personal belongings in the apartment and ask you to leave everything the way it was when we gave it to you. We ask that you water the plants (4 of them) once a week. Please leave the apartment clean and the way we left it, as per AirBnB terms and conditions.\n", + "----------\n", + "Must be clean and respectful. if you come back late must be quiet if roommates are sleeping. Have fun! ages ~20-35 only!\n", + "----------\n", + "I expect my guests To make themselves feel at home and at the same time to respect my property and care for it as if it was there own. Be mindful of neighbors. Most of the residents have a full time job and is very quiet here.\n", + "----------\n", + "No smoking, parties, or additional guests. No pets without prior approval. Please clean up after yourself in the shared spaces, as this is my home.\n", + "----------\n", + "Overall please treat the apartment as you would you own home, Keeping it as clean and tidy as you found it. Please clean up before checking out. Any major clean-up service required may be deducted from the deposit. No Loud / Large Parties . Please include the number of people who will be staying before you reserve this apartment. No extra guests other than the maximum 4 allowed who booked All smoking should be done outside, as this is a smoke free environment\n", + "----------\n", + "This is not a party building. It is quiet and peaceful. Anyone who is looking to party/smoke should look elsewhere.\n", + "----------\n", + "No smoking No pets We don't charge a cleaning fee - guests are expected to contribute to light cleaning and maintenance for comfort of guests after them!\n", + "----------\n", + "- 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. Fee for smoking will be 10 times your total reservation cost. For example, your total reservation cost is $350. Fee for smoking on premises will be $3,500. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $17\n", + "----------\n", + "Smoking is not permitted inside the condo. We do not have any pets and we also ask that you don't bring yours. Please remove shoes and place in the basket upon entering the door. Although we understand the wear and tear that little ones make, we expect that all messes will be cleaned up as they happen and you will be respectful of the neighbors. Persons booking must be 18 years or older in order to rent.\n", + "----------\n", + "House rules are just common sense; especially take care not to be too noisy for the neighbors. Also no smoking inside. Also I'm quite attached to the Rietveld chair, so be careful with it :).\n", + "----------\n", + "Please be respectful to other tenants.\n", + "----------\n", + "My unit is one of 3 in the building. My place is penthouse level so please just be considerate of my neighbors downstairs.\n", + "----------\n", + "No smoking, drugs, loud volume, loud partying please. No outdoor shoes inside the house please, indoor slippers are provided. Please help me keep the place clean and organized by cleaning up after yourself, thank you.\n", + "----------\n", + "No drugs, smoking, or guests. Keep the tv volume down when roommates are sleeping. I will only accept offers from guests with previous reviews.\n", + "----------\n", + "No Smoking & No Pets\n", + "----------\n", + "Shoes off in the house, no smoking.\n", + "----------\n", + "No smoking. No pet. No shoes in the house. Visitors are permitted in the common area only. Please use the dining room to enjoy your meals. Also please refrain using an electronic device while having your meal. Quiet time between 10:00pm-6:00am.\n", + "----------\n", + "Dear Guests, Welcome to 62 Cornwall St! I hope you will enjoy your stay in Boston. General -No Smoking -You may use the washer in the laundry room. The turn-on button of dryer is broken, so it is hard to turn it on, but it is working. I usually hang clothes on hangers, they dry fairly quickly that way. -You may use the piano if you play piano. -Please be extra careful with the floor downstairs. It is very easily scratched! -You may use the grill, but be extra careful! After use, turn off the gas on the propane tank, not only on the grill! -Please refrain from loud talking/partying on the patio after 10 p.m. Check in/out: -The code for the lockbox is 1685 -When you arrive, please remove the keybox. -When you leave, place the key on the kitchen table, do not put it back in the keybox. -Please check out by 11 a.m. on your last day. The cleaners will arrive shortly after that, to prepare for the next guests potentially arriving at 3 p.m. Internet: -WIFI: (PHONE NUMBER HIDDEN) -WEP: \n", + "----------\n", + "- Minimum two night stay - No smoking or drugs - No parties and please be respectful of neighbors - Pets are welcome for an extra $50/night\n", + "----------\n", + "No smoking Pets may be allowed (inquire for further information) This is not a rental unit, it is our home that we live in with our daughter on a full-time basis. Please take care of it!\n", + "----------\n", + "Please do not rent this house if you plan to party. This is a quiet house in a quiet neighborhood. Other than that, we are pretty laid back.\n", + "----------\n", + "NO SMOKING OR PETS ANYWHERE ON THE PROPERTY 1. Be respectful of the other tenants 2. If you use the grill, be sure to turn off the gas 3. Notify the owner of any discrepancies or things not functioning properly immediately 4. Please treat carpet stains promptly (or notify the owner) 5. Kindly turn off lights, air conditioners, and other electrical items when they aren't needed\n", + "----------\n", + "We expect our guests to treat this condo as their home and to be respectful of our wonderful neighbors. This property is entirely non-smoking (including outside on the patio or front stoop). Pets are not allowed. No guests or parties.\n", + "----------\n", + "- Quiet neighborhood so remember to be respectful!\n", + "----------\n", + "No pets and no smoking. Please remove your shoes when entering. We have very sensitive floors and would like to keep them looking new ;)\n", + "----------\n", + "No smoking. And preferably no cats. dogs welcome.\n", + "----------\n", + "No pets. No smoking.\n", + "----------\n", + "-Our one golden rule is: Please treat our space with respect (i.e. Clean up after yourself, be sure to lock the door when you leave, etc.) -Absolutely NO SMOKING!!!! -We are fun-loving people, so we dont mind you having some friends over, but the above rule applies twofold in that scenario. -You're welcome to use dishes, appliances, etc in the kitchen, but we ask that you buy your own food/drinks rather than use ours. -No pets allowed (not our rule, our landlord's) -Upon checkout, please turn A/C units and lights off before leaving. -Feel free to ask us about the area-- we know it well and love to recommend!\n", + "----------\n", + "We expect guests to relax and enjoy themselves, but to be respectful of the space and the community. Please note: no extra guests allowed and please limit loud noises beyond 10pm (sensitive neighbors).\n", + "----------\n", + "No Smoking Please leave all things the way you found them. No pets allowed. We will leave more detailed guidelines in the apartment.\n", + "----------\n", + "If you are new to Airbnb, the idea is that I’m not renting a room, but rather sharing my home. I live and work here, and enjoy meeting new people. It's like having old friends visit, not like a hotel. You are welcome to make yourself at home in the common living areas and to use the kitchen, but please leave everything as clean and put away as you have found it. As we will be sharing a bathroom, I appreciate your tidying up and keeping personal items in your room. The cat is not allowed outdoors – he can be sneaky so please don’t leave doors open and keep an eye out for him. You are welcome to the kitchen (and common areas), thank you for cleaning your dishes after using them. I am environmentally friendly and appreciate you being mindful as well. Thank you for being considerate and for treating the home as you would yours. Please turn off lights, fans (and AC or heaters when available) when not in the bedroom. Always lock doors and first floor windows when outside of the home. P\n", + "----------\n", + "HELP US AVOID MAKE-UP STAINS: Dear Guest, For make-up removal, if needed, kindly use the small face towels, and not our large white towels. Thanks for being considerate!\n", + "----------\n", + "• Check-in time is 3PM. Clean and respectable . No party animals\n", + "----------\n", + "I do not allow guests with pets. Smoking is allowed on the patio or outdoors. Please be kind to the environment and recycle. Also turn all unnecessary lights off when not in use. All beds need to be stripped upon departure. Sanitary napkins need to be disposed of properly (taken outside to the trash) not in the bathroom garbage. The suite has a separate sitting area with leather couch not to be used as second bedroom. Guest must have a mobile device which makes and receives calls and or text messages.\n", + "----------\n", + "Just general respect for the place and my neighbors. Be aware about noise on the back deck in the evening.\n", + "----------\n", + "No more than 2 guests will be staying in the apartment. We appreciate clean and responsible guests. Party is not allowed since this condo is mainly occupied by family home owners. But there are plenty of bars and restaurants to hangout in this neighborhood! Please check out the section for restaurant/bar recommendations. Smoking in the apartment is strictly prohibited, but you can smoke outside the main entrance of the building. Tuxie (a 5-month old black kitten) is the co-owner of this property. Only consider this place if you are a cat lover! You are more than welcome to pet him and play with him. Although I love animals, but my cat Tuxie is likely to stressed out by other pets in the property. So unfortunately, bringing your pet is not allowed.\n", + "----------\n", + "We expect guests to treat this as they would their own home. We don't allow pets. We don't allow smoking.\n", + "----------\n", + "This is a quiet building with absolutely no smoking inside the property or on the steps. \n", + "----------\n", + "No shoes in the house\n", + "----------\n", + "No Smoking on the apartment. No Ilegal Drugs No Parties on property. No pets PLEASE TRY TO BE AS QUIET AS POSSIBLE CONSIDER OTHER NEIGHBORS OR TENANTS. THANK YOU IN ADVANCE!. Reiterating what's below>>> No parties! No loud noises, please! - realize that there are other guests (and especially residents) like you in the building that may in fact want to get sleep on a regular basis (sometime between the hours of 10pm and 7am, probably!) During the day, jumping jacks are probably ok. If you have any problems or if neighbors complain call me at (phone number hidden) and mediate over the phone or in person. Hull st. court apartment rules: 0. Absolutely NO smoking in the apartment or building. Anyhow if you need to, please do go out to Hull street and people watch while smoking. The North end has multiple cigar bars, too! 1. Most important, please, No Parties = be quiet, use \"indoor voices\" like they taught us in grade school! Also, keep the stereo at a reasonable level, etc. I\n", + "----------\n", + "100% smoke free. Quiet hours in this building are from 10pm-6am. Garbage is collected by the city of Boston on Tuesday and Friday mornings and must be placed outside in designated area for pick up.\n", + "----------\n", + "• Check-in time is 4PM. As me and my roommates are students, we often need to concentrate and study at home, what requires the environment to be quiet and silent. We like to party on the weekends though!\n", + "----------\n", + "Check in 4 PM Check out 11 AM No Smoking, No pets Please No parties and quiet hours after 9 pm Clean dishes or leave them in the dishwasher! We are not responsible for your belongings. Thank You!\n", + "----------\n", + "No hosting of events\n", + "----------\n", + "This is a condominium with a resident below. Please be respectful of that.\n", + "----------\n", + "- Bathroom and kitchen are shared, so please clean up after yourself immediately to respect the other guests!\n", + "----------\n", + "No smoking. No parties. Please be considerate of your neighbors and consolidate all trash during your stay to the trash cans at the back entrance of the building. Thank you.\n", + "----------\n", + "Please arrange arrival ahead, late arrival will be handled through our \"key service\" by cal(PHONE NUMBER HIDDEN), they will meet you at the door with room keys/instructions, the address is 29 Hancock Street, Beacon Hill 02114. We expect guests to come and go quietly, we require ID to be emailed prior to arrival to (EMAIL HIDDEN) building is \"smoke free\", please refrain from smoking indoors.\n", + "----------\n", + "No smoking or pets, please.\n", + "----------\n", + "Rules are to respect everyone in the home and keep the place clean as is found.\n", + "----------\n", + "-Leave the apartment as you found it. -Quiet time starts at 9pm. -No shoes allowed in the apartment. -Please respect us and our neighbors by not having any additional guests. -No parties. -Smoking is strictly prohibited both inside and within 50ft of the outside. -No pets. -No packages may be sent to the house without host approval.\n", + "----------\n", + "Please respect the space, and leave the apartment the way that you found it. Please do not host any parties, and be respectful of my neighbors. No pets allowed. No smoking allowed. No additional guests.\n", + "----------\n", + "NO PETS! NO SMOKING ON PREMISES! NO PARTY! A printed house rule will be provided. Please be respectful to others when all rooms are booked. 10 AM Check-out and Check-in is between 12 PM (noon) - 3 PM. Late check in after 8 pm is $50, lock out is $50. Respect yourself, Respect others, clean up after yourself. No Smoking/drinking in apt. Thank You! Location Rules: The \"Exact Address Location Is Not Disclosed For Security Reasons\" And Is Given Out 24 Hours Prior to Check-in. If This Is a Problem for You, Please STOP Here And Contact Other Hosts for Your Stay. This Is a Part Of My House Rules.\n", + "----------\n", + "House rules: Guests agree to the following terms and conditions 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes, and parking passes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with Jordan or AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $125 per hour fee for unauthorized early checkin or late checkout. 10\n", + "----------\n", + "Pets may be allowed for short stays - please check with the hosts. Small/medium sized well-behaved dogs and cats are likely fine. Please clean/put away anything you use from the kitchen. **Check-in time is 2pm and check out time is by 11am. However we can likely make arrangements to leave your bags if you are arriving earlier or not leaving Boston until later in the day.\n", + "----------\n", + "Strictly no smoking on property. Your pets are welcome but please mind them. NO PARTIES ALLOWED. EXCESSIVE NOISE IS STRICTLY PROHIBITED\n", + "----------\n", + "Clean and no party\n", + "----------\n", + "Yes try to be quite for other tenants and roommates so nothing to loud and be respectful. Be clean!\n", + "----------\n", + "Overall please treat the apartment as you would you own home, Keeping it as clean and tidy as you found it. Please clean up before checking out. Any major clean-up service required may be deducted from the deposit. No Loud / Large Parties . Please include the number of people who will be staying before you reserve this apartment. No extra guests other than the maximum 4 allowed who booked All smoking should be done outside, as this is a smoke free environment.\n", + "----------\n", + "No smoking, no parties, very quiet building with friendly neighbors close by\n", + "----------\n", + "No loud music after 10pm. Absolutely no smoking or pets. If there is other evidence of smoking or pets in the property, you will forfeit your entire security deposit. Check in and check out time can be flexible depending upon the dates you are looking for and whether anyone else is staying. Unless we arrange otherwise, check in is after 4pm and check out is before noon. The cleaning fee covers two hours. If additional cleaning is required, you will be charged $50/hour, deducted from your deposit. No parties. If a neighbor complains about a party happening or loud music after 10pm, or if there is a big mess left at the place, you will forfeit your entire deposit. Your internet usage will be logged and monitored if you access a blacklisted site or ip range. Please don't abuse the connection speed by downloading illegal content while a guest. You agree to follow all of the rules of the building, which will be provided. Any issues with not following the building rules and you forfeit your \n", + "----------\n", + "This is a \"no smoking\" home and building. Internet service: (URL HIDDEN) $2.95 hourly pass* $7.95 daily pass $19.95 weekly pass $54.95 monthly pass\n", + "----------\n", + "Please, no smoking inside the building or on the porches. Due to sensitivities, we ask that you not use perfume, cologne, or aerosol products in the house. No parties. No illegal drug use. We are an eco-friendly family and appreciate your help in recycling (bin in the kitchen) and turning off lights, fans, etc. when not in use. Please lock all doors of the building behind you.\n", + "----------\n", + "Please note there is no elevator in this building and there are indeed stairs. And the stairwells are rather narrow. Do not book if either of these are a problem for you.\n", + "----------\n", + "Please, no smoking or parties in the home.\n", + "----------\n", + "Please respect yourself, respect others, clean up after yourself especially after using the bathroom and kitchen , clean your dishes. Late check in fee after 9 Pm is $50, Lock out is $50.\n", + "----------\n", + "ABSOLUTELY NO SMOKING.\n", + "----------\n", + "No smoking\n", + "----------\n", + "Please no smoking in the apartment. There is a door to a balcony/fire escape for smoking.\n", + "----------\n", + "Note #1: Just be a good neighbor and respect your space and others. Note #2: Unit is second floor of building, Senior Citizens & Disabled may find difficult going upstairs.\n", + "----------\n", + "I'm a semi kosher vegetarian which means that I don't bring any pork or shelled fish into the house. Chicken/Red meat is fine. Please confirm in your message that you're ok with this \"house rule.\"\n", + "----------\n", + "NO SMOKING AND NO PETS ALLOWED!!\n", + "----------\n", + "Guest are to be respectful to the other tenants and keep noise levels down. No smoking in the building or the unit.\n", + "----------\n", + "We expect respect during the workweek as any other working professional would! Otherwise enjoy have fun, go out and enjoy what Boston has to offer. Also for Parties and events we love to have everything pre-cleared with us. Thanks!\n", + "----------\n", + "Terms of the Agreement: 1. The Landlord has the right to inspect the premises without prior notice at any time to enforce the terms of this agreement. Guest shall allow Landlord may have access to the premises for purposes of repairs and inspection. Should the Tenants violate any of the terms of this agreement, the rental period shall be terminated immediately. The Tenants waive all rights to process if they fail to vacate the premises upon termination of the rental period. The Tenants shall vacate the premises at the expiration time and date of this agreement. Homeowner shall exercise the right of access in a reasonable manor. 2. The Tenants shall maintain the premises in a good, clean, condition, and use the premises only in a careful and lawful manner. Cleaning is included if you leave the place like it is found, except beds. All pots, pans, dishes put away etc. If not left clean there will be a cleaning charge. Tenants shall pay for maintenance and repairs should the premises be l\n", + "----------\n", + "Pets are not allowed \n", + "----------\n", + "No excess noise Smoking Allowed Drinking Allowed Respect your room mates No Drugs Respect your neighbours\n", + "----------\n", + "- 1 floor\n", + "----------\n", + "Please be respectful in our home. Feel free to use the kitchen, cups, plates, appliances, or make some tea or coffee. Please wash dishes when you're done using them, or load them into the dishwasher (no need to run the dishwasher if it isn't full). Quiet hours in our building are from 10pm-8am. No smoking in the building. Cats are allowed! If you are planning on staying Sunday night into Monday morning, please note that checkout must be at 8am (or earlier).\n", + "----------\n", + "We hope you’ll enjoy our Boston home and that you will care for it as we do. We do not allow pets or smoking in the house.\n", + "----------\n", + "1. No additional guests without the expressed written permission of the owner. This rental offer is for one person. 2. Never any smoking indoors. 3. No pets, not even visiting pets are allowed. 4. Be considerate with television loudness and other noise after 10 pm. 5. Keep kitchen and common areas clean after use. 6. Enjoy your stay in our home as our roommate!!\n", + "----------\n", + "There are two other units in this building, quiet, clean and respectful of neighbors is all we request. Regrets, no pets and no smoking.\n", + "----------\n", + "Please be respectful of other guests. Keep the common areas clean and pick up after your self. No loud music after 10:00PM. It is a safe neighborhood but please, keep doors locked for safety No smoking in the house (smoking is allowed on the front or back decks).\n", + "----------\n", + "I would rather than you not have lots of people over (and honestly the space isn't set up for/big enough for that anyway) and ask that you respect that space :)\n", + "----------\n", + "Check-in after noon before 8pm. Check-out 11am. No smoking or pets permitted in the unit.\n", + "----------\n", + "Please leave all bed linens and towels in hamper upon departure. Please put all dishes in dishwasher upon departure.\n", + "----------\n", + "We expect our guests to be honest, to treat our property with respect, and to leave the apartment as clean (relatively) as when they arrived.\n", + "----------\n", + "- No Smoking In the House. There is a back porch accessible through the kitchen where you can smoke. - There will be other travelers staying along with you, so please be respectful and abide by common sense rules. - We try to keep the house very clean and would like to ask you to please remove your shoes when entering the house so that dirt doesn't trek around the house. There is a shoe cabinet right by the entrance where you can store your shoes. Some slippers will also be provided and can be found inside the shoe cabinet. - Please clean after yourself after you use the bathroom. It is a shared bathroom. The same goes for the kitchen. \n", + "----------\n", + "Please be respectful of other guests No Pets and No Smoking No loud music or noise after 10 PM\n", + "----------\n", + "No smoking at all. Keep the room and apartment clean. Keep quiet and no party after 9:30 p.m. This room is available to people who plan to stay 3 weeks at least. It is $45 per night if you stay over one month. It is $50 if you stay less than 3 weeks. You need to share house cleaning duty with other guests if you stay 3 weeks.\n", + "----------\n", + "I expect guests to treat my home as if it were their own. Be neat and clean, considerate, and respectful of both my home and my neighbors. There is NO additional guests permitted! There is NO smoking in the home, NO pets, NO drugs!!! NO food in the bedroom!! Shoes are to be take off upon entry!!\n", + "----------\n", + "Please treat the apartment like it is your own. No smoking.\n", + "----------\n", + "We need to know your arrival time ALMOST 2 days before your arrival, as we need to plan arrivals and cleaning, so it's to guarantee you that you will find the flat clean and ready at your arrival. - Check out is 10:00am and if you will be late, we can charge a late check out fee (min $25) and any damage that your delay can cause to the incoming guest or to the cleaning service. - Smoking is not allowed as are loud noises after 10pm or before 9am. - Guests are not allowed to have extra guests. - A regular check out cleaning is included in the price but it doesn't mean that we will wash your dishes or pick up the garbage all around the house, so please use the trash bin and clean after using the kitchen, if not we will take pictures and charge you the extra cleaning. - There is no daily cleaning service during your stay or any change of linen/towels if you're staying more than 3 nights we can agree a change of towels (only), just ask us in advance. We're here to do the best for our guest\n", + "----------\n", + "Please make yourself at home! Just treat the apartment as though it's your own. \n", + "----------\n", + "The usual \"social code\": There are three of us altogether in the apartment -- myself and two others, usually housemates, though one of the bedrooms may also be occupied by another guest -- so use of the bathroom should be considerate of others' needs as well. Quiet is appreciated before 8:00 AM and after 10:00 PM. You are more than welcome to use the kitchen for preparing food; I would ask only that you leave it in the condition you would wish to find it. Smoking allowed on deck. *Good communication is essential to ensure everyone is contented.\n", + "----------\n", + "Please treat my apartment as if it were your own.\n", + "----------\n", + "Professionally and to respect the artwork. This is an apartment for mature travelers, not backpackers.\n", + "----------\n", + "Please read the house manual along with the directions... You have plenty of liberty to do as you wish within the space. I will most likely exchange keys in person when arriving. If I'm not around, I'll be confirming the steps to exchange the keys. *As a visitor, if requested by the front desk... you might have to check-in at the lobby counter.\n", + "----------\n", + "Respect my home, space and belongings. Absolutely no smoking allowed in the unit. Please respect my neighbors by keeping the noise levels to a minimum, particularly between the hours of 10pm-7am. Enjoy your stay in Boston, fall in love with my city and make yourself at home!!\n", + "----------\n", + "No Loud Music\n", + "----------\n", + "Please remember that this is a residential building. The building rules, apartment occupancy restrictions and the year-round tenants must be respected.\n", + "----------\n", + "No smoking/pets please.\n", + "----------\n", + "No smoking, no very late nights, no pets or and crooks allowed. Respectable guests only. In a family neighborhood and building.\n", + "----------\n", + "Shoes are removed at the door to keep the house clean; slippers will be provided. Guests should be polite, courteous and respectful. Guests seeking to book 5 days or more must have a completed profile, at least three verifications and at least two reviews and/or references. Exceptions to this policy may be granted individually as warranted. Please write to inquire. There is no smoking allowed on the property. This is an environmentally friendly home and guests are encouraged to be sensitive to their use of natural resources. For example, twenty-minute long showers are discouraged.\n", + "----------\n", + "There are only a few rules: 1. Take good care of yourself, any visitors, and the place 2. Absolutely no smoking permitted on the premises including the outside space. The smoke detectors are hard wired and cannot be disabled. 3. Four guest maximum 4. Check in is at 3 pm. Check out is at 11 am. The apartment is usually occupied so a late check out or early check in is usually not possible. There is also no capacity for luggage storage. 5. This apartment is not a party venue. 6. The private park is bordered by the homes of dozens of residents and all sounds echo in this space so please be respectful about noise. 7. Please refer to the \"house manual\" on the Airbnb site for any questions you may have about the apartment 8. If you turn something on i.e. heated towel rack, warming lights, etc, please make sure to turn it back off. 9. There is usually no one available to accept deliveries and items left at the door are often taken so please no deliveries of packages, fruit, flowers, et\n", + "----------\n", + "- Absolutely NO SMOKING, vape-ing, drugs, or alcohol in the house. - Please no children under 10. The house isn't child proofed. - Quiet hours 10p-8a. - Please no showering after midnight. (The bathroom is attached to our bedroom. Unfortunately, we've had very loud guests.) - Laundry available per request. Thank you!\n", + "----------\n", + "Please remove sheets and place in the washing machine when done. Also place used towels in washing machine.\n", + "----------\n", + " No smoking in house but on the balcony it's ok. No more than 2 people. One real bed and one Murphy's bed (pull-out). Shared bath in the (URL HIDDEN) overnight guests. keep noise level down. Have fun but be respectful of the type of neighborhood that we are in. no pets (URL HIDDEN) more than 3 night stays at a time.\n", + "----------\n", + "No parties no loud music any issues please call\n", + "----------\n", + "Respect our home and our house is your house. Checkout is 11 am at the end of your stay, however you are welcome to leave your bags for the day. Please let us know when you plan to arrive. Depending on circumstances we can be very flexible.\n", + "----------\n", + "No drinking, no smoking, no parties, no pets, no drugs, no girlfriends or boyfriends moving in. Looking for a quiet, studious, clean person who is looking for a comfortable and affordable place to stay during the school year. House is open to mix sex. No children please.\n", + "----------\n", + "We love guests who are respectful, clean up after themselves, and understand that we work from home so although we may be physically present in the home, we might be preoccupied with our work. No smoking or drugs of any kind, even outside. \n", + "----------\n", + "Please reserve for yourself rather than for someone else. Air B&B has this as a basic requirement so the host than look at reviews of the guest, not of the person making the reservation. You can smoke on the back porch. Well-behaved, non-barky, friendly dogs are welcome to sleep on the floor or in their own dogbed.\n", + "----------\n", + "- First off, Thanks for choosing my home! No pets, Sorry. The house is not childproof space. There is NO smoking IN the home. (You can outside but please remove cigarette butts). If smoking is detected inside there will be a $250 charge for odor removal services. Stairs leading to the apartment are NOT handicap accessible! Condo cannot accommodate any parties and so the house is available for the guests that have booked the house only. Please let me know if you would like guests. But, again, it is not available and cannot accommodate parties or events. Thank you for your understanding.\n", + "----------\n", + "Respect and treat the property as there own. No smoking inside and sorry, as much as we love them, no pets. A guest information sheet will be provided upon check in which includes emergency contact information. Guests assume all liability and hold host harmless for any and all liability from accidents, property damage and other calamities that may arise during guests' stay.\n", + "----------\n", + "Please remember that this is a residential building. The building rules, apartment occupancy restrictions and the year-round tenants must be respected. Parties, pets and smoking are not allowed under any circumstances and incur significant fees.\n", + "----------\n", + "Common sense rules. No smoking indoors. Be courteous to the neighbors. Please respect the property, this is our home. If you intend to entertain more than 5 people at any point during your stay, please seek approval from me in advance of booking your stay. Please make sure the door is locked each time you leave the apartment. \n", + "----------\n", + "1. Only the ORIGINAL OCCUPANTS at the time of booking are allowed to stay in the property overnight and secondly no additional guest will be brought in without prior authorization. 2. Excessive NOISE & DISTURBANCES, specifically on work nights (Sunday thru Thursday) are to be kept to a minimum after 10pm. On other nights of the week we ask that noise is kept to a controlled, restrained and respectable level do to the nature of this being a shared space. 3. SMOKING is not permitted in any of the inside premisses, this includes the guest room, condo unit and building. You may smoke outside in the street or on the outdoor patio. 4. DAMAGES to the property and it's contents (within the bedroom and the condo itself) will be subject to reinstitution in accordance to airbnb rules and regulations and may lead to the immediate dismissal from the property. 5. WASHER & DRYER is available for use by the guest free of charge but under the condition that we (the host) are present at the time of use\n", + "----------\n", + "We take great care of our home and want our guests to feel welcome. We only ask that our guests respect our home and neighbors, and keep these rules in mind: - Please advise us at booking how many people are in your group so we can adequately prepare. No smoking is allowed inside. Pets are not allowed, unless you have gotten us to agree to an \"exception.\" Shoes off inside please. Please do not wander into neighbors' yard.\n", + "----------\n", + "-We simply ask you to feel like you are in your own home, and respect the condo and neighbors. - A copy/scan of a photo ID or an AirBNB ID verification will be required to receive keys. -No pets, no smoking and no party, no extra parties/guests in the Condo -that are not part of your reservation. - Please note our check in time: 3:00 PM (or anytime later) and Check out time: 10:00 AM. If you absolutely must check-in during the morning, please message us first. -Our condo is best for 2 people, but we can certainly accommodate a 3rd person without an extra-person fee! Let us know first if you have 3 guests and we can bring a floor mattress.\n", + "----------\n", + "Thank you for your reservation. By placing your reservation online you indicated that you accepted the terms and conditions which have been printed below. Please review your reservation summary as below - then print, sign and return the agreement to: (EMAIL HIDDEN) or fax it to (PHONE NUMBER HIDDEN) or mail it to: Spare Suite, Inc., 119 Braintree Street, Suite 510, Boston, MA 02134, USA Upon receipt, we will send you the welcome document with check in instructions and how to get your keys. Terms of the Agreement: BOOKING AND REFUND POLICY Once booked your reservation is guaranteed for the check in and check out times and dates specified. All reservations must be paid in advance, in full for the entire period of stay. All reservations are final, and NON REFUNDABLE UNDER ANY CIRCUMSTANCES. If you feel you may need to cancel once booked, you may consider trip insurance through AAA or other reputable provider like (URL HIDDEN) POLICY ON CHILDREN: This property is not \"KID FRIENDLY\" al\n", + "----------\n", + "House rules: Guests agree to the following terms and conditions 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes, and parking passes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with Jordan or AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $125 per hour fee for unauthorized early checkin or late checkout. 12\n", + "----------\n", + "1. No house parties 2. Do not damage any of the furniture or appliances. 3. Do not take anything that has been provided for your comfort and enjoyment. 4. Enjoy yourself! And please reach out if you have any questions or concerns.\n", + "----------\n", + "No smocking inside, no party, no loud music after 11PM.\n", + "----------\n", + "-Please don't wear shoes inside the apartment (shoes should be removed in the area just inside the door to the apartment). -Please DO wear shoes while out in the courtyard. -Please keep the doors to the apartment locked at all times. -Please recycle -Please don't move/remove the portable A/C from the bedroom window. -Please ensure that your bedroom windows are closed and securely locked when running the heat or A/C, before leaving the apartment and before going to bed. -Please ensure that the courtyard gate is closed and securely locked before leaving the apartment and before going to bed. -Please rinse off any dishes/flatware that you use and place them into the dishwasher after use. -Please help conserve energy (and my electricity bill!) by doing the following when you going to bed and when you are leaving: turn lights off, turn the thermostat down to between 60-65 degrees F (colder months), turn the A/C up to 75 degrees F or just turn it off entirely (warmer months). -Please NO smo\n", + "----------\n", + "No Smoking anywhere on the property! DO NOT ask anyone but me how to get into the building or where the lock box is DO NOT mention airbnb to anyone around the building, or leave airbnb printouts laying around. Sheets, towels and other cleaning are done by me. I do these things at different times. Always before dinner time (or before you arrive it's a really late arrival). Probably before 3pm, during the school year at about 1pm usually. If you have really specific needs, you should speak up ahead of time. Never assume cleaning will happen before 3pm. 12noon-3pm check ins are a courtesy. Occasionally cleaning happens 4pm-ish, always by 6pm and not after your arrival if arriving later. Do not write reviews about beds that were unmade if you were allowed to check in early. In general no dogs please. Other pets are generally allowed, if for instance you happen to travel with your kitty...or ferret (check first) Please confine trash to wastebaskets and take trash out (behind building\n", + "----------\n", + "No Smoking. Smoke alarms will sound (not just in the unit, but throughout the other units in the building as well). Please keep the outside gate closed. No parties. Overnight guests, other than those listed on the reservation, are not allowed.\n", + "----------\n", + "- NO PETS! NO SMOKING ON PREMISES! NO PARTY! A printed house rule will be provided. Please be respectful to others when all rooms are booked. 10 AM Check-out and Check-in is between 12 PM (noon) - 3 PM. Late check in after 8 pm is $50, lock out is $50. Respect yourself, Respect others, clean up after yourself. No Smoking/drinking in apt. Thank You! Location Rules: The \"Exact Address Location Is Not Disclosed For Security Reasons\" And Is Given Out 24 Hours Prior to Check-in. If This Is a Problem for You, Please STOP Here And Contact Other Hosts for Your Stay. This Is a Part Of My House Rules.\n", + "----------\n", + "No Smoking on the apartment. No Ilegal Drugs No Parties on property. No pets PLEASE TRY TO BE AS QUIET AS POSSIBLE CONSIDER OTHER NEIGHBORS OR TENANTS. THANK YOU IN ADVANCE!. Hull st. court apartment rules: 0. Absolutely NO smoking in the apartment or building. Anyhow if you need to, please do go out to Hull street and people watch while smoking. The North end has multiple cigar bars, too! 1. Most important, please, No Parties = be quiet, use \"indoor voices\" like they taught us in grade school! Also, keep the stereo at a reasonable level, etc. If YOU experience trouble with noise try to contact me immediately and I'll do what I can to stop it. 2. Please be kind to sheets and towels, leave wet ones in the tub, and generally pick up stuff when leaving. 3. Anything at all recyclable put in the blue wheeled bin on the way out of the building on Hull st court. Put trash in the blue trash can in the kitchen. If you are staying for more than a few days and have trash in excess o\n", + "----------\n", + "No smoking No pets \n", + "----------\n", + "No Smoking. Violators will be charged a $500 fine for each violation and may be charged for additional smoke removal following departure. Pets allowed with non-refundable pet fee. Breed restrictions apply. This is a residential property. Parties and/or loud music is not allowed after 9:00 p.m.\n", + "----------\n", + "1. You must be 25 years of age to rent this home and provide proof of age, if requested. 2. This is a non-smoking home. Any evidence of smoking in and around the property will result in forfeiture of your security deposit. 3. The home has a maximum occupancy of six people. Renters who exceed the occupancy limit and or falsify information at the time of reservation are subject to eviction. 4. Well-behaved dogs are allowed with written owner permission at time of booking, additional fee and security deposit required 5. House parties are strictly prohibited and are grounds for immediate eviction. 6. Illegal substances are strictly prohibited and are grounds for immediate eviction. 7. When you arrive, the home will be clean and we request that you leave it in good order. We will provide you with a detailed check-in and check-out procedures, as well as the code for the keyless entry lock, several days prior to your arrival. 8. Any exception to the rules here must be approved in writing in a\n", + "----------\n", + "Please keep the apartment clean for the next guest. Remove the trash to the dumpster, take the bed linen off the bed and drop into the laundry basket in the restroom. There's a coin operated laundry on the same floor. $1.75 washer and $0.75 drier. You can find the detergent in the small closet by the front door. feel free to use the laundry room if you need to. Thank you and have a nice stay in Boston\n", + "----------\n", + "**No cigarettes in the house please. **There is a strict $50 additional fee for each additional guest not on the original reservation (Emergency situations will be reviewed for accommodation.) - If you are coming in from outside the country please confirm your arrival time before your trip. Also if you are e-mailing me from an e-mail address that is different from your Air Bnb account please reference the name on the booking when you e-mail to avoid confusion. ** ABSOLUTELY NO parking in the driveway. There is ample street parking. Please keep the gate closed Feel free to use the patio and backyard Consider us & the neighbors by keeping noise down Smoking is permitted outside ONLY Please dispose of your cigarettes appropriately Have fun & Feel free to contact us for anything that you may need!\n", + "----------\n", + "According to general house rules: no smoking, pets are not allowed in the complex. \n", + "----------\n", + "• No parties or events • No smoking This is a smoke-free house but you are welcome o smoke on the balcony, Pleas keep it clean. If you have a pet please let me know and I would be happy to consider. I hope to make your stay as easy and comfortable as possible. Please email me anytime if you have any questions!\n", + "----------\n", + "No Smoking.\n", + "----------\n", + "As mentioned, this is a quiet neighborhood with a mix of young people starting out and families, and we have neighbors living above us in the house and on either side of the house. As such, loud, late night parties will not be hosted here. We would hope that this house would serve as your staging place to a great Boston experience, but that the bulk of that experience will occur while you are out exploring the area!\n", + "----------\n", + "Quiet neighborhood, middle apartment of big house, quiet after 11:00. No smoking or candles in apartment. Clean kitchen after use.\n", + "----------\n", + "Like they are in their own home!!! Please respect! This is not a hotel! Be neat & clean\n", + "----------\n", + "There is light breakfast - cereal with milk that is served.\n", + "----------\n", + "Check-in is after 3PM Some general information about the apartment. Please try to keep it relatively quite, especially at night. Strict no parties or entertainment policy. No additional guests are allowed outside of reservation. No smoking inside the apartment or hallway. No pets allowed in the apartment. Unfortunately no young children as the house is not equipped for children under 10. When making a booking - please have a verified email address and phone number on your airbnb account. Respect and treat the apartment as your own and how you would expect others to treat yours. Please communicate with us as soon as possible, should something go wrong during your stay, so we can try to fix it as soon as possible. Once you've confirmed the booking, please respect the apartment and don't hesitate to make it your own. We want you to feel like you are at home, so to sum it all up.. don't do things you wouldn't do at your own place We look forward to welcoming you and have a great time in \n", + "----------\n", + "Please Note: This unit was just renovated last year and it comfortably accommodates 6 guests, but up to 8 guests are permitted (two guests in each bedroom, 1 guest on each twin bed, and 1 guest on the available queen size air mattress). Please request an air mattress (if needed) when making a reservation. No smoking, no pets, no parties, and must be 25 years old to book. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left next to the trash can (additional bags are under the sink) - All windows are closed and locked - If used, the air mattresses are deflated and put away (please leave used linens for the air mattresses on the floor) - If furniture was moved during your stay, please return to its original location Please be mindful to our neighbors in the building; quiet hours after 10pm. Please be considerate of our next guests who will be staying after you, if something is broken o\n", + "----------\n", + "All Renters and Guests must be 25 years of age unless accompanied by a parent or guardian. Parties of any kind are not allowed. There is no smoking allowed in the boat. Use of illegal substances will be cause for immediate termination of the rental and reported to the police. All pets must be on a leash when outside the boat. Quiet hours are between 9:30pm and 8am. Noise must be kept to a minimum during this time period.\n", + "----------\n", + "I just ask that you clean after yourself if you use the kitchen.\n", + "----------\n", + "This is great place to enjoy Boston. This property is not for large groups or gatherings. No pets\n", + "----------\n", + "1. No pets allowed. 2. No smoking in the rooms. You may smoke in the yard but please don't leave the stubs in the grass etc. 3.No food in the bedroom. 4.Only water is allowed to drink in the bedroom. 5. Use slippers provided at the entrance or use your own slippers when you enter the house. 6. Please do not put your luggage on the top of the bed cover. 7. Living room and kitchen are closed at 10:00pm unless you need to get some water.\n", + "----------\n", + "Overall please treat the apartment as you would you own home, Keeping it as clean and tidy as you found it. Please clean up before checking out. Any major clean-up service required may be deducted from the deposit. No Loud / Large Parties . Please include the number of people who will be staying before you reserve this apartment. No extra guests other than the maximum 3 allowed who booked All smoking should be done outside, as this is a smoke free enviroment.\n", + "----------\n", + "No smoking! Please be respectful of our neighbors and keep noise to a minimum. Voices and music outside carry far.\n", + "----------\n", + "We require a signed lease as soon as we accept your request. No smoking, no pets, no parties. We strive to maintain a quiet, professional community. Two week minimum stay. Two occupants maximum per apartment. No Sunday checkins and no check in after 6:30 pm\n", + "----------\n", + "No Smoking facility\n", + "----------\n", + "NO smoking, no parties, no large dogs. I expect that the house will be the way I left it for you :) (small dogs ok) \n", + "----------\n", + "Only keep all like you see it, Clean Kitchen and Bathroom. No parties or Events\n", + "----------\n", + "We except you to clean up after yourself and generally be respectful. Smoking should happen outside the house. Also please do not tap on the glass terrarium or play with the ball python. It is very timid and mostly wants to sleep.\n", + "----------\n", + "No Tobacco\n", + "----------\n", + "* Guest booking room, must be the person staying in room. DO NOT book room for somebody else! Thanks! * No smoking and pets are not allowed in the building. Also, only guests listed on the booking are allowed in this house. Sorry, friends and family are not allowed inside the house. For your safety, and mine. :) Lost keys will result in a $75 fee to replace the locks in the house.\n", + "----------\n", + "This home is very clean and well kept. No shoes inside please!\n", + "----------\n", + "Keep clean; quiet; no parties or excessive drinking\n", + "----------\n", + "Treat my home as if it is your own home. NO smoking at all in the building. No more than 6 people allowed . Please take your shoes off when enter the apartment\n", + "----------\n", + "Our house is an eco-friendly, vegan, minimalistic one and we ask that guests adhere to the following guidelines: 1. No animal products such as eggs, dairy, meat, or by products are to be prepared in the kitchen. These products may be wrapped and stored in the refrigerator in such a way that does not contaminate other foods. 2. Compost (red ceramic container next to the sink) all food waste and recycle (all paper, plastic and glass either in black bin in your room or white bin in the kitchen) before throwing something out. We have a bin for donations if there is something you no longer need but does not easily recycle. And please ask if you have any questions. 3. Shoes are not required to be removed but we do ask that any wet/muddy shoes and coats be removed at the door and hung up. 4. For long-term guests we will wash sheets once a week, please let us know if we should strip the bed or if you will leave these in the hamper. 5. Our check in time is any time after 5 PM, departure must\n", + "----------\n", + "No smoking or drugs. We try to keep the house clean, so we take off our shoes when we come in. We all work or go to grad school, so we like to keep the house clean and quiet.\n", + "----------\n", + "Of course I want you to have a great time, but please no partying at the apartment. Guests must be respectful of other building tenants. The home is meant for you to have a comfortable place to relax, sleep, use the amenities, and just have a great central location to come home to.\n", + "----------\n", + "No Smoking in the Building.\n", + "----------\n", + "NO PETS! NO SMOKING ON PREMISES! NO PARTY! A printed house rule will be provided. Please be respectful to others when all rooms are booked. 10 AM Check-out and Check-in is between 12 PM (noon) - 3 PM. Late check in after 8 pm is $50, lock out is $50. Respect yourself, Respect others, clean up after yourself. No Smoking/drinking in apt. Thank You! Location Rules: The \"Exact Address Location Is Not Disclosed For Security Reasons\" And Is Given Out 24 Hours Prior to Check-in. If This Is a Problem for You, Please STOP Here And Contact Other Hosts for Your Stay. This Is a Part Of My House Rules.\n", + "----------\n", + "We have put a lot of time and effort into giving you a well furnished home with anything you could need, with this in mind, please respect our space by using the apartment for intending living purposes only and abide to the following: -Leave the home as you found it -Limit noise at all times; quiet hours begin at 9pm -No additional guests except by prior arrangement with hosts. -No filming -Smoking of any kind in the apartment and within 50 feet of the outside is not allowed. -lighting candles is strictly prohibited -The backyard is for the owners' and their family who live upstairs. They respectfully ask that you do not use the outside space -No pets\n", + "----------\n", + "No smoking indoors (a big porch with seating available for smokers) Guests are expected to clean up after themselves in the bathroom and in the kitchen.\n", + "----------\n", + "72 Melrose House Rules *Be sure to contact us for key instructions* We request that you please be respectful of all furniture, appliances, and all other belongings within the apartment. Please make sure to turn off all lights and appliances, including A/C and Heat when you leave the apartment and follow the trash rules ~ every bit of saving helps us provide affordable and comfortable living space to everyone. Trash can be put outside in front of the building on the curb Sunday and Thursday nights at 5 PM or later it will be picked up early the following mornings. All insurance and liability including accidents - inside or outside the apartment - health, short-term cancellations and / or guest's belongings is the guest's responsibility. The entire building is non - smoking so please no smoking on the property or in any of the units. 62 Melrose General Information We offer digital cable TV, DVD and high speed Internet. We will send internet information in a separate email. For yo\n", + "----------\n", + "This is the house where I live all year around; please be respectful of the place as if it was yours and leave it as you found it upon arrival.\n", + "----------\n", + "Please no smoking and no parties! Hope you don't mind if we let you know if you are too loud.\n", + "----------\n", + "1. Be respectful of me and my home 2. No Pets 3. No Smoking 4. No Children under 10. (The house is not child proof) 5. Remove your shoes 6. Check in is 3-11pm 7. Check out is 10am *early check in or late check out must be arranged before the reservation starts and may not be accommodated* 8. The bathroom is a shared space, keep the sink clear, there is limited room for your bath products in the shower.\n", + "----------\n", + "- NO parties or events. -NO smoking inside. You are welcome to smoke outside. -We ask guests to maintain a low noise level after 10pm and be respectful of noise levels during the day. You are welcome to have a few friends over for dinner but no loud music. -NOTHING but toilet paper and human waste in the toilet. -Hair dyeing are not allowed in the apartment as the wood, furniture and bathroom sink can stain very easily. -All overnight guests must be booked through Airbnb. Enjoy yourself! Ask us for anything you may need while you're here! We will do our best to help.\n", + "----------\n", + "just act like my friend in building and don't be mean to Jack, he's ugly I know but sweet and small.\n", + "----------\n", + "No parties, no outside visitors and no overnight quests without prior approval Do not engage in illegal activities anywhere on the property Please do not leave out any food that will attract uninvited pests Please no smoking We trust you will be a courteous guest. Please feel free to write us with any questions or requests.\n", + "----------\n", + "- We have a very friendly cat and two chickens (in our outdoor coop in the back of the yard). Chickens and cat will be cared for/fed ( including cat litter box) by a pet sitter through a private basement entrance. We just ask that you let our indoor/outdoor cat in and out when you are home and please enjoy our fresh \"daily\" eggs.\n", + "----------\n", + "Pets: No pets are allowed in the apartment. There are no exceptions. Smoking: No smoking is allowed in the apartment. There are no exceptions. Parties: Small, quiet gatherings of six to eight people are fine. But large parties in the apartment are strictly off-limits. Internet: Network name is [provided upon arrival]. Password is [provided upon arrival]. TV: We have cable service through Xfinity. Remote controls are in the TV console. You are free to watch the channels included in our package, but please do not order any movies or shows. Coffee: The coffeepot in the kitchen is a Bunn coffee maker. If you are not familiar with brewing coffee with a Bunn, please read the instructions behind the coffeepot (red pamphlet). If you don’t, you will be sorry because there will probably be coffee all over the counter and floor! Laundry: In the basement there are two washers and two dryers, which you are free to use. Please use the detergent, fabric softener, and dryer sheets in the plastic bin \n", + "----------\n", + "No Smoking, no pets, no late night parties, five people in home only\n", + "----------\n", + "The home is not suitable for pets or children under 15\n", + "----------\n", + "Please remember that this is a residential building. The building rules, apartment occupancy restrictions and the year-round tenants must be respected. Parties, pets and smoking are not allowed under any circumstances and incur significant fees.\n", + "----------\n", + "No smoking. No pets. No drugs. No parties. Quiet hours after 9pm. Tenants' belongings are not covered under our insurance. We recommend that you obtain renter's insurance as we are not responsible for your belongings. We care for this apartment as if it were our own home. This is a family neighborhood and a quiet/respectful one. This home was built prior to 1978 and according to MA Lead Law notification, we have to inform our renters that there is a possibility of lead paint. Kindly do not eat the walls. Check-in Time: 3:00 PM Checkout Time: 11:00 AM To ensure your safe deposit returned on time, please follow your checkout duties: - Wash and put away dishes OR start the dishwasher! - Double bag the trash and we will take it out! - We will strip the sheets and wash the towels! Thank you so much!\n", + "----------\n", + "Please Note: This unit was just renovated last year and it comfortably accommodates 4 guests, but up to 5 guests are permitted if you so desire (two guests in each bedroom and 1 guest on the available twin size air mattress). Please request an air mattress (if needed) when making a reservation. No smoking, no pets, no parties, and must be 25 years old to book. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left next to the trash can (additional bags are under the sink) - All windows are closed and locked - If used, the air mattresses are deflated and put away (please leave used linens for the air mattresses on the floor) - If furniture was moved during your stay, please return to its original location Please be mindful to our neighbors in the building; quiet hours after 10pm. Please be considerate of our next guests who will be staying after you, if something is broken or needs fix\n", + "----------\n", + "No smoking No pets No parties No extra guest No loud music No opening of windows Please be aware: This is an old fashioned building, the elevator is small and slow There is no central AC, but 2 efficient window units This is downtown Boston, you may hear some noise of people in the streets\n", + "----------\n", + "No smoking within the apartment, though may do so on the back pouch. No pet allowed for other's safety reason. Keys must be left behind at the end of stay to avoid monetary penalty. Clean after self after use of common areas for others comfort and convenience.\n", + "----------\n", + "Treat the home as you would your own. If staying through a trash day, please leave trash by curb.\n", + "----------\n", + "Absolutely not smoking in the house. I am looking for easy going people, not for party people. This is a quiet neighborhood. People who can take care of our stuff.\n", + "----------\n", + "All guests must agree to the following: 1. The hallway going up to the penthouse is narrow. Take care not to make marks or scratches from suitcases on the walls. 2. No smoking anywhere on the premises or around the building. 3. The guest must keep the room clean. Please dispose of the garbage can bag upon checkout and leave the used towels and sheets in the white hamper at the foot of the bed. 4. Guests may use the washer and dryer in the basement, but clothes must be immediately removed from machines when done. Make sure to clean the lint tray on the dryer to avoid a risk of fire. 5. No additional guests are allowed to stay past 11:00 PM or sleep over. The room is designed for a single-person use only. 6. When using the bathroom, male guests are asked to sit or keep seats down and to clean the seat after each use. Guests must tidy the shower when done. 7. Guests may NOT place hot pans or cooking items on the marble counters without a trivet. There are two silicone trivets and a\n", + "----------\n", + "Be quiet, kind and respectful, treat this as if it were your own home.\n", + "----------\n", + "- Check out by 10am\n", + "----------\n", + "This room is the perfect fit for you if you're looking for a cheap and quick few night stay! The house is laid back - smoking is allowed on the back porch, you will have access to use our refrigerator - but please bring your own food, towels will be provided, the kitchen is stocked with appliances as well. Because the space is shared with other roommates expect you may see them and keep noise and interaction to a respectful level :)\n", + "----------\n", + "• Check-in time is 2PM. NO SMOKING, DRUGS, PETS or SHOES in the house! I love my home and like to keep it clean. No food or drink on the couch to avoid spills. Please treat it with care and tidy up after yourselves. Thank you!\n", + "----------\n", + "- This apartment is a place for self-sufficient guests and travellers who require minimal host attention and checking-in except in the case of emergencies. - keys are picked up off-site at our company's offices in the Noth End. Very close to Charlestown and on the way from the airport to the apartment. - No loud music after 10pm - No overnight guests - No smoking - Non-service animals not permitted - No live flames of any kind (i.e. candles, incense, etc.)\n", + "----------\n", + "No smoking, drugs, lighting candles, or campfires on the bed. (ha!) We aren't going to tell you not to drink alcohol (we're not your mom), but it would be great if you wouldn't come in super drunk, knock on our neighbor's doors, knock over a ton of our stuff, freak out our dog, and throw up everywhere. Please remove your shoes indoors. Boston streets are pretty gross. Please do not bring your friends into the home. We are sure they're lovely people, but we don't know who they are! We are generally in bed by 10:30 pm on weeknights. You are absolutely welcome to come and go at any time of the night, just try to keep things quiet for the sake of everyone in the building. If you need anything, like a hair dryer or toiletries, please don't hesitate to ask! We are very happy to share (within reason, of course).\n", + "----------\n", + "PLEASE READ ALL HOUSE RULES TRASH can only go out BEFORE 8 AM or the night before trash days ONLY. Trash days are Monday and Friday ONLY. Trash must only be placed outside in a black or white trash bag. Recycling can be placed outside on Fridays in a clear bag or in a box. DO NOT PUT OUT TRASH ANY OTHER DAYS! A $100 fine will occur if you put trash out early. DO NOT have any mail or packages shipped to you while you are staying. Please realize that you are in an apartment and need to be very considerate of the people who live in the units around you. Beacon Hill is a quiet, professional neighborhood with working people. Please respect that they do not appreciate loud neighbors. Keep the noise level to a minimum. Do NOT play loud music. Try not to make too much noise after 10pm, and please do not bring any other guests who are not on the reservation back to the apartment unless you truly trust them. We realize we cannot stop people from bringing back a date but remember that\n", + "----------\n", + "respecfull, consideret.and loving\n", + "----------\n", + "No smoking in the apartment, in the foyer or outside the building at any time. No pets. No parties.\n", + "----------\n", + "Absolutely NO smoking NOR use of drugs. And NO shoes in the house! You will be requested to take off your shoes at the entrance. Please Bring a positive attitude and fun spirit!\n", + "----------\n", + "-Minimum two night stay. -Up to two guests max. -No pets please -No smoking/drugs. -No parties and be respectful of neighbors. -I'm LGBT friendly and expect that you are too. -Apartment is on the 4th floor and there unfortunately is no elevator, so those with mobility issues should take this into consideration.\n", + "----------\n", + "Absolutely no smoking/drugs Keep the place as clean as you found it Keep the noise down at night\n", + "----------\n", + "Please take off your shoes when walking around in the apartment, especially in Winter.\n", + "----------\n", + "Please no shoes in the house so bring slippers or extra socks to keep your feet warm- especially in winter! No smoking either inside or outside. Please be considerate of neighbors from 10pm-7am in terms of noise. Please take out any trash and leave in the large blue garbage bin at the end of the driveway when you leave.\n", + "----------\n", + "A few totally painless house rules: - Please take your shoes off once inside the apartment. My apartment is kept very clean and tidy, so taking shoes off is essential to keeping it the same way for you and for me. - Kitchen is available for \"light use\" and \"vegetarian\" food only. You are free to bring in outside cooked food/meat. Please stack the dishes in the dishwasher to the left of the sink. Keep the kitchen and counters clean immediately after use. Food should be consumed only in the dining area and not in the room. - When leaving the apartment, please always lock the top lock on the door, shut off all the lights before you leave, if you open windows, please close and lock them before you leave the apartment. - Quiet time after 10pm. - NO SMOKING IN THE APARTMENT (You can smoke in the balcony area)! - SADLY NO PETS!! - ABSOLUTELY NO PARTIES!!!\n", + "----------\n", + "* Check out: 10am * We made an effort to keep things organized. Please help us to maintain the house as beautiful and clean as possible. * Please ask before bringing visitors, and sorry I can only allow the number of guest on the reservation to stay overnight. * I also ask that shoes not be worn in the house to keep the wood floors clean, and that you only eat in the dining room area.\n", + "----------\n", + "Simply to respect the apartment and treat it as if it were your home! Unless you smoke in your home, in which case I ask that you refrain from doing so while in the unit.\n", + "----------\n", + "- NO parties or events. -NO smoking inside. You are welcome to smoke outside. -We ask guests to maintain a low noise level after 10pm and be respectful of noise levels during the day. You are welcome to have a few friends over for dinner but no loud music. -NOTHING but toilet paper and human waste in the toilet. -Hair dyeing are not allowed in the apartment as the wood, furniture and bathroom sink can stain very easily. -All overnight guests must be booked through Airbnb. If you plan to have visitors during your stay, please check with us beforehand. -All overnight guests must be booked through Airbnb. Enjoy yourself! Ask us for anything you may need while you're here! We will do our best to help.\n", + "----------\n", + "No smoking allowed inside the house. My roomates and I ask if you use any dishes in the kitchen to clean up after yourself. Respect the house and the room you're in.\n", + "----------\n", + "No smoking, no parties, no pets. Four night minimum stay. I need to have information about who will be staying at the house before a booking will be accepted.\n", + "----------\n", + "You will see a piece of paper on my kitchen table about my house rules. No parties please :)\n", + "----------\n", + "The whole PENTHOUSE is available for events your caterer or one I can recommend. But with my permission read on AND s.v.p. plan in advance. It's a \"quiet house\" so events like small graduation parties, corporate parties, small meet and greets are examples of good ideas for the space. Bachelor parties, weddings, grooms dinners are not possible. Although it's a good space for the Bride and Groom to stay if you plan to hold your reception at nearby venus. THAT SAID, it's also a Quiet Spot on a quiet street in an historic (1860) neighborhood, ideal for professionals \"working-out-of -the-house, for authors, photographers, graduate students who need to study, or for people attending or presenting at conferences. Check out is at 11am. The apartment is completely private as is the patio... The laundry room and mail room are both off the common foyer.. Please keep TV, HULU, Blu Ray DVD and music at a reasonable level between 7am and 11pm. Maximum of two guests. \n", + "----------\n", + "1. Only the ORIGINAL OCCUPANTS at the time of booking are allowed to stay in the property overnight and secondly no additional guest will be brought in without prior authorization. 2. CHECK IN/OUT: I typically follow the standard check in and out times (4 pm, 12 pm, respectively) however we're flexible and can accommodate your needs as long as it doesn't impact another renter if you have special check-in or out times. There is a keypad lock and each renter will receive their own passcode so you can come and go as you please and not worry about keys or timing. 3. Excessive NOISE & DISTURBANCES, specifically on work nights (Sunday thru Thursday) are to be kept to a minimum after 10 pm. On other nights of the week we ask that noise is kept to a controlled, restrained and respectable level do to the nature of this being a shared space. 4. SMOKING is not permitted in any of the inside premises, this includes the guest room, condo unit and building. You may smoke outside in the street or on \n", + "----------\n", + "I except guest to be respectful of my home and follow my house rules.\n", + "----------\n", + "Please respect my home. There are other long term tenants who reside in the building.\n", + "----------\n", + "I respectfull ask that you treat my home as you would a friend's home. My house rules are just common sense and courtesy. 1. No loud music. 2. No parties. 3. No removal of items from the apartment unless expressly allowed by the host. 5. Apartment door must be kept locked at all times. 4. Security deposit shall be claimed in full in the event of any of the following: a. Damaged or soiled sheets, to the extent that they require replacement. b. Theft of items kept on and about the premises. c. Unreturned keys. d. Damage to the apartment or any part or item within and without the premises. e. The presence of pets in the apartment, due to intent or negligence on the part of the guest and their party. d. The presence of illicit or illegal substances, or illicit or illegal activities, on or about the premises f. Failure to vacate the premises by the agreed check-out time\n", + "----------\n", + "- Multiple night discounts apply for 3 or more nights\n", + "----------\n", + "Clean up after oneself Be respectful Be courteous of neighbors\n", + "----------\n", + "Act like you own the place... which is to say, make yourself at home but also treat it like you would if you owned it. This is our home so we trust and hope that you will treat it like yours.\n", + "----------\n", + "- Noise to be kept to minimum level as to not to disturb others in the apartment or building between 11pm and 6:30am. - No cooking or storage of meat in the apartment (we are vegetarians) - No candles permitted - Use the compost for non-animal organic waste and recycle all recyclables\n", + "----------\n", + "Information for Your Stay at 46 Monument Avenue Charlestown, MA 02129 First, welcome and thank you for choosing my home for your stay in Boston. Please let me know if I can be of assistance in making your visit enjoyable and comfortable. Please be advised that there is absolutely no smoking in the house! Thank you for your cooperation. If you are smoker and been caught smoking in the house you will be asked to leave and no refund. Please do not smoke in front of the house or around the house. Arrival and Departure ·\tKindly remember to check out before 10:00 A.M. and check in after 4:00 P.M. ·\tMost likely, I will say good-bye to you when you leave however should our schedules not match, please shut and lock all windows and doors when leaving nd make sure all lights are off. ·\tAfter going out the black door, leave the keys in the mail slot. Internet and Cable \tFor internet access, you will get this number when you arrive. Public Transportation and Getting Around ·\tTo use the subway (un\n", + "----------\n", + "We love our home and enjoy sharing it with others. We hope you'll treat it as with as much care as we do. Our neighbors are friendly and quiet. We hope you'll fit right in.\n", + "----------\n", + "* If you are booking a room, you must be the person staying in room. DO NOT book a room for somebody else!* *ALSO, please only book if you have a face photo in your profile!* This is a residential building, with professionals living throughout. Being respectful is a must! Loud music, smoking and pets are not allowed in the building. Also, only guests listed on the booking are allowed in the house. Strangers, friends or family members are not allowed inside the house. For your safety, and mine. :) Lost keys will result in a $50 fee to replace the locks in the house.\n", + "----------\n", + "No smoking inside No parties No additional guests without approval Please be respectful and clean\n", + "----------\n", + "This apartment is located in a beautiful brownstone in Boston's Back Bay. Quiet hours are between 10pm and 8am. Garbage is collected by the city twice a week, (details of collection days and times are provided in the unit). Maximum occupancy for this unit is 3 persons. No personal items may be left in common hallways. 100% smoke free and no pets allowed.\n", + "----------\n", + "Please remember that this is a residential building. The building rules, apartment occupancy restrictions, and the year-round tenants must be respected. There is no smoking allowed in the apartments and significant fees will take place if occurs. \n", + "----------\n", + "Enjoy your stay in our home, simply be respectful of our neighbors, no smoking and no pet allowed.\n", + "----------\n", + "No Pets. Not smoking please :) \n", + "----------\n", + "No smoking, please No pets\n", + "----------\n", + "• Check-in time is 2PM. Check-out time is 11am (Unless discussed) • Not suitable for pets • No smoking Keep it clean. No smoking Voices kept low in the hallways If neighbors come by due to noise complaints/partying please turn it down. Beer Pong must be played with water in the play cups. (This is a cardinal rule, if violated will result in a negative review) Please be courteous to all the neighbors and practice common sense. If there are additional guests after midnight they will count towards the extra guest fee. Cost of Damages: Lost Key ($250) Additional Cleaning Needed includes, sticky floors, excess trash, stained walls, etc($50/hr)\n", + "----------\n", + "Quiet hours 10pm -7AM. No additional people besides the reservation listing allowed in the apartment. Alcohol in moderation is allowed. No smoking, no drugs. Please, leave the apartment the way in which you found it! Females only.\n", + "----------\n", + "You are our guests, we are so glad to have you here. For your safety and ours, we ask that you meet your guests off site. Thus is a non-smoking building. No pets allowed. Thank you\n", + "----------\n", + "Keep the apartment a little clean., the hit 70 , no more and that , the Ac if you are not in the room turn off , please , no party's .if you smoke please only in the balcony , no inside no in the hallway.\n", + "----------\n", + "This house is used year round, so please no smoking. Pets are unfortunately not allowed.\n", + "----------\n", + "The quieter the better, but otherwise make yourself at home!! Be as messy as you want - I have the place professionally cleaned when you leave, so towels, sheets, etc can all be left as-is, its no bother to me!\n", + "----------\n", + "No smoking and please be respectful of our downstairs neighbors when it comes to late night fun! If you plan to have a party or event, please let us know in advance of booking!\n", + "----------\n", + "The apartment is non-smoking and pets are not allowed.\n", + "----------\n", + "I appreciate guests on the quiet side who are mindful that this is my home. Non-smoking please. No open flames permitted. No pets.\n", + "----------\n", + "We are a second-floor apartment so please do not stomp or jump on floors.\n", + "----------\n", + "Shoes off at the door. Whatever you do, clean up after yourself. Be courteous to my neighbors. Avoid activities inside the building at strange hours. Big smile and loud greetings for extra points.\n", + "----------\n", + "Share our house as a guest, don't worry about cost of snacks or an occasional beer. No smoking. Please consult first if you will be traveling with small children. We try to keep the space clean and ask everyone to remove their shoes in the appartment and be respectful to everyone.\n", + "----------\n", + "No pets and No smoking. Guests need to be respectful and considerate of others.\n", + "----------\n", + "Check In time : 3 pm Check out time : 12 pm quiet enjoyment No pets Nonsmoking No more than 4 people staying at the apartment unless disclosed and approved Extra person charge $75 per night Please be neat treat it like you would your home\n", + "----------\n", + "Absolutely no smoking inside No pets Family friendly! Our home media center is connected to the TV, giving you access to our library of hundreds of movies and shows, including a kid friendly selection Nespresso and a Keurig machines are available for you to make espresso and coffee. We also have a selection of teas. Our yard, shared with two other units, is also available, and features a grill and a table with seating Parking on the street requires an adhesive residential permit. We have free off street parking, which will save you from a ticket There is a fourth, crib size mattress and a bassinet available should you need them Laundry is coin operated and available in the basement\n", + "----------\n", + "WHEN BOOKING, PLEASE PROVIDE THE FOLLOWING IN YOUR MESSAGE to me: - 1. Total number of guests (adults, children, babies)? Are there any elderly or children under 18? If so, what are their ages? - 2. Arrival Date AND Time of Check In? (Check In between 2 pm and 9 pm with some leniency) - 3. Departure Date (Check out before 12 pm/noon ideally) - 4. Please tell me a little about yourselves and the purpose of your trip. - 5. What Other Needs or Special Requests or Extra Options (please read below for additional options and possible related additional fees). ------ PLEASE NOTE THE FOLLOWING BEFORE REQUESTING A BOOKING: * I will reply as soon as possible to let you know if my apartment will be available for ALL your needs. - 1. We are happy to host Friendly, Neat, Low-Maintainence Adults & Well-Behaved Children. ---- All cookware and utensils in the kitchen are at your disposal. There will be water (brita) and basic condiments provided for you. We ask that you rinse whatever dishes\n", + "----------\n", + "-Remove shoes -be sure to lock the front door when entering or leaving the house -be reasonably quiet during sleeping hours - clean up after yourself in common areas like kitchen and bathroom -Good communication is key - No pets -No smoking -There may be other guests staying and you will be sharing the bathroom with the host and one other guest. is a friendly house hold, reasonably quiet. We expect guests to be reasonably quiet coming in and out before (9AM and after 10PM. Kindly remove your shoes as well. For safety reasons please do not invite other people to our place. For summer months, there will be an AC unit provided. PLEASE keep doors and windows closed whenever you are using the AC. Otherwise please shut the AC off, if you want to open the windows and doors. This is for your comfort, as the AC unit will only cool the room if the doors and windows are shut. Ask if you need anything, I will be providing you with towels, shampoo, conditioner, body wash, lotion, hair dryer. Se\n", + "----------\n", + "No smoking. We kindly ask for taxis or other rides to call and not use a horn as this is a quiet neighborhood.\n", + "----------\n", + "In fairness to the other owners who live on the 1st and 3rd floors, it will be important to keep noise to a respectful volume. No house parties allowed. No smoking on the premises. No pets allowed. No open flames (candles of any kind) allowed. Do not use back stairs off of balcony/deck, enter and exit balcony through TV room only, when sitting outside. Back stairs are meant to be used as an emergency egress only in the event of a fire should the main egress become blocked.\n", + "----------\n", + "No smoking inside or outside. Please no food in the bedroom and keep the bedroom and bathroom neat. Clean up after you are finished in the kitchen.\n", + "----------\n", + "-We do not allow pets because we already have a small dog in the house but he is very friendly! -Please make sure to close the back door when you are coming in and out.\n", + "----------\n", + "NO PETS! NO SMOKING ON PREMISES! NO PARTY! A printed house rule will be provided. Please be respectful to others when all rooms are booked. 10 AM Check-out and Check-in is between 12 PM (noon) - 3 PM. Late check in after 8 pm is $50, lock out is $50. Respect yourself, Respect others, clean up after yourself. No Smoking/drinking in apt. Thank You! Location Rules: The \"Exact Address Location Is Not Given. It Is Not Disclosed For Security Reasons\" And Is Given Out 24 Hours Prior to Check-in. If This Is a Problem for You, Please STOP Here And Contact Other Hosts for Your Stay. This Is a Part Of My House Rules.\n", + "----------\n", + "- No smoking anywhere on premises, inside or outside. - No pets. - Please take off shoes in the apartment. - Please leave the house in the condition you found it in. - Please be respectful to neighbors. - Turn off A/C when away.\n", + "----------\n", + "No smoking, please. No drugs or guns allowed. Only registered guests allowed; no other visitors please. We cannot accommodate pets as I already have two. Cat: OK to let Bella out of the house. Dog: Please don't let Moe out of the house. He'd like to run to the street. He is also a bit noisy when visitors arrive. Please say hi and then ignore him and he'll calm down. No candles or incense burning. Kitchen: you are welcome to use kitchen and appliances between 7a and 9p, except no stove use for cooking meals please.\n", + "----------\n", + "Shoes off apartment (slippers available to guests) No smoking of any substance on the property Respectful Friendly Quiet Leave things as they were found, clean after yourself No dishes left in the sink Please use green cups, bowls, utensils and plates and Store dry foods in 2nd tall pantry cabinet for your personal food storage and store food in the fridge on the 2nd row Guests may not have additional guests without clearing them with me first\n", + "----------\n", + "House Rules Welcome to Boston-Furnished-Rentals. We respectfully request that you take care of all furniture, appliances, and all other belongings in our apartments. Pets are allowed only with prior approval. Please turn off all lights and appliances including the A/C and heat when you leave. We also ask that you follow our trash rules while staying with us. The efforts of all our guests allow us to pass on savings for everyone. We look forward to your visit and thanks for choosing Boston-Furnished-Rentals while enjoying Boston.\n", + "----------\n", + "Just ask you to respect everything in apartment. No parties please. Thank you\n", + "----------\n", + "NO PETS. NO SMOKING. NO PARTIES. No recreational drugs. No open flames. No excess noise after 10:00 pm. Avoid disturbing neighbors. NO PETS. If a pet is found on the premise, a pet surcharge of $300 will be applied. You will be asked to leave immediately and will forfeit your security deposit if an animal is on the property without permission of owner. NO SMOKING PLEASE. A $500 cleaning fee will be deducted from your deposit if smoking occurs in the unit. This is a NO PARTY house. Parties, loud get-togethers, or gatherings are not allowed because of neighbor issues, and possible damage to property. If a party, loud gathering, or loud disturbance does occur, or if neighbors or other guests call for a loud disturbance, you will forfeit your security deposit and will be evicted immediately. Please Note: During your stay we ask that you leave the house tidy and in good order. Guests must provide their own toiletries/cleaning supplies/paper products. We will have a starter kit \n", + "----------\n", + "Please be respectful, this really is our home and sanctuary. Our goal is that for a time, it can be yours as well.\n", + "----------\n", + "ABSOLUTELY NO SMOKING PLEASE. OWNER IS ALLERGIC AND SMOKE ALARM IS VERY SENSITIVE. FIRE DEPARTMENT WILL BE NOTIFIED IF ALARM IS TRIGGERED. (this also includes cooking at high heat)\n", + "----------\n", + "Internet, cable and central air included in stay. No smoking allowed in the apartment - - may smoke on the deck if cigarettes are appropriately disposed (and not flicked over the deck). Please be considerate of neighbors. Not a party house! There are 5 other units in the building so noise should be kept controlled at night and in the mornings (especially when out on the deck). All plates and cups should be left in the sink or dishwasher and all trash should be left in the trash can (additional bags are under the sink if you need more space). If furniture is moved during your stay, please return to its original location. Please be considerate of our next guests who will be staying after you, if something is broken or needs fixing, please let me know immediately so that I can replace it.\n", + "----------\n", + "We ask that no alcohol or pork be brought into the home. Other than that, my home is your home. I simply ask that you please treat the home and its inhabitants with respect.\n", + "----------\n", + "Please plan to check in after 4 PM and check out before 11 AM. No Smoking, No pets Please No parties and quiet hours after 9 pm Clean dishes We are not responsible for your belongings. Thank You!\n", + "----------\n", + "It is VERY important to me that you respect my belongings. I have lots of art, antiques, knick-knacks, books, fragile items, etc. Feel free to borrow a book as long as you return it in the same condition that you found it! Otherwise, please do not pick up or play with my things, go through my drawers, etc. My things are very loved by me, and most cannot be replaced. There will be ZERO tolerance for disrespect or cruelty towards my cats.\n", + "----------\n", + "Thank you for your interest- we look forward to hosting you! We are looking for friendly, courteous guests who will be respectful of our home. No parties. No smokers please. Please be aware of usual check-in time of 6p (or after) and check-out time of 4p (or earlier). There might be flexibility on some days so feel free to ask before booking. The studio is private with its own bulkhead entrance. Microwave and fridge but no stove. We want to make sure our place is a good fit for you so feel free to read our reviews or contact us if you have questions! Danielle and Peder\n", + "----------\n", + "Be yourself, but please no wild parties, thanks :)\n", + "----------\n", + "Just the basics - No Smoking. No Pets. No Parties. Respect our home and our neighbors. Kids are welcome but the house isn't 'child-proofed'\n", + "----------\n", + "Be kind, courteous, just as how you would want to be treated. No overnight guests or loud noises at night as it is a building full of young professionals.\n", + "----------\n", + "We ask that you treat everything here with care, as it is our home. NO SMOKING IS ALLOWED IN THE HOUSE OR ANYWHERE ON OUR PROPERTY. If anything is damaged please let us know immediately.\n", + "----------\n", + "Please take your street shoes off when entering the house. This is a smoke free home. Please no smoking in and around the house. For all my male guests: Please sit on the toilet. No standing please! This is a shared facility. Therefore, please be considerate of the amount of water and electricity you use. Please keep the noise level low.\n", + "----------\n", + "Please be respectful to other members of this home., no parties or loud music is permitted. You can use a porch on the back of the house. No smoking or candles is allowed inside or outside the house, Please strip the bed and put linen and towels into laundry basket.\n", + "----------\n", + "Non Smoking, No illicit Drug Usage. Keep loud music to a minimum. Soiled shoes please keel outside. Thank you.\n", + "----------\n", + "No smoking. No guests without previous discussion with host.\n", + "----------\n", + "No pets, No Smoking, Smoking allowed on deck\n", + "----------\n", + "Smoking and drugs are not permitted on the property. Please remove outdoor shoes at the front door.\n", + "----------\n", + "Being clean and respectful of our apartment, the building and it's tenants is our number 1 \"rule\". Other than that, no pets or smoking allowed. We also ask you be mindful of our furniture, and use the coasters given. There will be a $25 fee if we find watermarks and extensive scratches. We will have before photos for guests to sign off on, insuring that we will not place blame on guests for marks previously on furniture. \n", + "----------\n", + "You are my guest - please behave as such! This is where I live. - No neighbor-disturbance-level noise past 11:00PM - No pets of any kind - No smoking - Use the kitchen, not the food (it is ours) - Clean up spills and dishes - No illegal drugs or substances\n", + "----------\n", + "CHECK IN: 2pm CHECK OUT: 10am SMOKING: Please no smoking inside. Smoking allowed outside, please dispose of cigarettes in appropriate containers provided. NO PARTIES: (please inform hosts of additional guests or visitors during your stay, only the original occupants at the time of booking are allowed to stay in the property overnight and secondly no additional guest will be brought in without prior authorization). Keep the volume low before 8am and after 11pm NO PETS: We love our pets, but ask you leave your loved ones at home. Shoes should be left inside the entrance door. PLEASE tidy the room before you depart. Return furnishings and others items to be as they were upon your arrival. Thank you!\n", + "----------\n", + "No Smoking No Pets\n", + "----------\n", + "Please keep kitchen clean. Make sure porch door is always locked when not in use. Central AC temperature must stay above 70 degrees When checking out, please leave keys on the desk provided in the room. Do not have to worry about locking the door on the way out.\n", + "----------\n", + "11 nights minimum stay No pets at any time No smoking Please be mindful of the furniture and personal belongings, it was all furnished with designer pieces and hard to replace things.\n", + "----------\n", + "Please Note: This unit was just renovated in 2015 and it comfortably accommodates four guests, but up to 6 guests are permitted if you so desire (two guests in each bedroom and 2 guests on the two available twin size air mattresses). Please request an air mattress(es) (if needed) when making a reservation. No smoking, no pets, no parties, and must be 25 years old to book. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left next to the trash can (additional bags are under the sink) - All windows are closed and locked - If used, the air mattresses are deflated and put away (please leave used linens for the air mattresses on the floor) - If furniture was moved during your stay, please return to its original location Please be mindful to our neighbors in the building, quiet hours after 10pm is not a must, but a nice gesture. Please be considerate of our next guests who will be staying \n", + "----------\n", + "All guests must observe the following house rules: The hallways are narrow. Take care not to make marks or scratches from suitcases on the walls. Towels for the Rainbow Room are gray and can be found in the small night white nightstand next to the desk. Towels for the Marble Room are white and can be found in the closet. Beach, hand, and face towels are in the hallway mirrored dresser. Each bathroom has a hairdryer. No smoking anywhere on the premises or around the building. The guest must keep the room clean. Please dispose of the garbage can bag upon checkout and leave the used towels and sheets in the hamper. Food is not allowed in rooms. Do not leave any food items or personal belongings in the Guests may NOT place hot pans or cooking items on the marble counters without a trivet. Hot items may damage the counters and will be deducted from the security deposit. Please ensure when you leave the property to place all dirty towels in the hampers provided in your closet. When using \n", + "----------\n", + "We try to keep the atmosphere conducive to studying and resting and a couple of house-rules are in place to this end. 1. Towels and linens (sheets, blankets, and pillows) are NOT provided. The bed is twin size. 2. No smoking on the premises. 3. No loud music or TV etc. 4. Only for one person (no couples, no visitors). We seldom have visitors, let alone overnight guests. We know this will be a major turn-off to many people, but we believe we can find a like-minded roommate who can have fun outside the house. 5. If you are not sure about your check-out date, you can reserve the minimum days and extend your stay at a discounted rate. 6. Check-in time has to be coordinated at least 48 hours ahead. On arrival, a short registration process with a picture ID is needed in exchange for keys and wifi access. 7. Inside the apartment, we take off our outside shoes. So if you bring your own flip-flops, slippers or some kind of indoor shoes, that will be useful.\n", + "----------\n", + "There is no smoking on the property. No outside guests are allowed. The building's quiet hours begin at 9pm.\n", + "----------\n", + "No smoking anywhere in or out of home (guest must be non-smoker) Cologne/perfume/spray use are not allowed any time anywhere (allergy prevent) Please be aware of your actions and always look back before leaving bathroom to make sure everything is left clean Please cause no disturbance and walk the stairs slower to prevent much noise OK to eat in your room but not in bed, always clean/cover food Keep your room clean during your stay Recycle and use reusable shopping bag (provided, please carry with you) Please do not bring plastic bags from stores Ask for help/assistance/information at any time, we want you to feel comfortable Night time help please call from the same phone number twice or more if the call is not answered Do not give mailing address to anyone (ask me why) If guest breaks rule about mailing address, the charge is $209\n", + "----------\n", + "Prices $150.00 per night for 1 or 2 people. Late night noise is not allowed. Over night guests are not allowed. It is allowed if you may like to cook dinner and eat at home, with us or on your own. We go to bed between 11pm and 1 am. We rise at 10am. House is very solid & quiet.\n", + "----------\n", + "No smoking or parties and be respectful of upstairs guests and neighbors.\n", + "----------\n", + "Please respect our home .\n", + "----------\n", + "I would appreciate quest to show respect to the house\n", + "----------\n", + "• Please respect the privacy of other residents of the building and keep the noise level down. • No parties, no outside visitors, no overnight guests without previous approval from your host. • No Smoking. • No Pets. • Please do not drink the host's alcohol. • Use of any rooftop grill is prohibited. • Do not engage in any illegal activities anywhere on the property. • If you break or damage something, please let me know and arrange for its replacement or repair. • Return all keys / Leave them on the counter upon exit.\n", + "----------\n", + "To treat the place with utmost respect.\n", + "----------\n", + "- 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. Fee for smoking will be 10 times your total reservation cost. For example, your total reservation cost is $350. Fee for smoking on premises will be $3,500. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $7\n", + "----------\n", + "In the kitchen the primary thing would be to wash your own dishes and clean up after yourself. We don't usually use shoes in the house, we can provide you with slippers or you might want to bring some. Its not a problem if you have to use orthopedic shoes. The bathroom is clean and we want folks to hang up your towels,either in your room or in the bathroom, and not leave the floor wet. We are not a loud house at night. Alcohol is fine so long as you aren't bent on getting drunk. And please no smoking inside, we have plenty of space outdoors for that. If you are here by yourselves for more than 3-4 days we may ask you to water the house plants. We ask that you recycle all pertinent trash and compost your food scraps, if you're not familiar with that we'll be happy to show you our system. No outdoor fires allowed if we are not present. Check in time is best at 3 PM and check out is at noon.\n", + "----------\n", + "Absolutely no smoking! It is a ground level apartment with a private entrance, there is absolutely no excuse not to walk outside.\n", + "----------\n", + "Please expect to share the apartment with guests having various backgrounds. Be respectful and decent, also enjoy interacting with each other. Please dress descent in the house especially in and out of the shower.\n", + "----------\n", + "Please treat this house as if it is your own. - No smoking - No drug use - Shoes can be left in the hall. - Help yourself to anything in the refrigerator. - LOCK THE DOORS when you leave. Front door to condo locks on it's own.\n", + "----------\n", + "No drunken, naked brawling. Other than that, no rules. And no smoking. Or illegal drugs. Or pets. OK, so there were more rules. I only accept guests who have been verified through Airbnb. And I'm a little suspect if you have a blank profile and no picture. Remember, I'm inviting you into my home and I hope you're not a axe murderer. If this is your first experience with Airbnb, read all the Airbnb information on this website. Airbnb is not a hostel, nor is it a hotel. I rarely accept guests if they have never used Airbnb before. Please keep the bedroom clean and organized. You will have exclusive access to the bathroom on the second floor during your stay. However, this also serves as the guest bathroom, so do your best to keep it tidy. Don't leave your unmentionables hanging on the light fixtures. You will have access to the first floor (living room, dining room and kitchen) and the guest bedroom and bathroom on the second floor. My bedroom and study on the second floor and t\n", + "----------\n", + "No parties. No overnight guests. Please use your time in the city to get out and explore and use the apartment as an experience to stay in a neighborhood where you'll never find a hotel! You are so close to everything!\n", + "----------\n", + "- Maximum number of guests at any time is 2 adults - No cigarette smoking inside - Please do not take food/beverages unless otherwise noted (but you can use any equipment in the kitchen) - Pets may be accepted on a case by case basis for an additional fee (Note that we have one cat and one (large, chill) therapy dog)\n", + "----------\n", + "This is a quiet and professional building. Best for quiet, mature, responsible people. There is a no-pet, no-smoking policy.\n", + "----------\n", + "Absolutely no smoking is permitted. Unfortunately no cats because I'm allergic. You may come and go as you please as long as you're staying here and are expected to keep a clean living space (kitchen, bathroom, etc.).\n", + "----------\n", + "Please no shoes inside the house and no smoking (cigarettes or anything else) either in or outside. Please be respectful of neighbors in the evening and early morning (10pm-7am). When you leave at the end of your stay, please take your trash outside to the large garbage bin at the end of the driveway.\n", + "----------\n", + "Shoes off apartment (slippers available to guests) No smoking of any substance on the property No parties Respectful Friendly Quiet Leave things as they were found upon check-out\n", + "----------\n", + "Orderly house and we want to keep it this way Bathrooms don't have high traffic as we agree to take shower before bed and not in the morning Everyone picks up after themselves No disturbance of any kind greatly appreciated:) but ASK ME (not other guests) questions any time you need/want to know something or unsure about how to do things, etc. Emails is the best way to communicate. When talking on the phone, please do it in your room with door closed Please walk calm, don't run the stairs, as it reduce the noise Close all doors gently please Non-smoker only Guests will be liable for any damages they caused: inspect the room upon arrival and sign the report Only food items can be placed into the kitchen sink compost disposal No smoking anywhere in/out of the house No perfume/cologne, scented laundry detergent allowed Doing laundry in a sink/bath not allowed Guests/visitors are not permitted Rescued/injured animals can be brought in for further assistance\n", + "----------\n", + "Enjoy our home and please leave it clean & tidy like you found it :) Thank you for not smoking. Sorry, no pets even though we love them. We have nice respectful neighbors so no loud music or parties. Hanging out & music are fine just keep others in mind :) Thank you!\n", + "----------\n", + "Two guest maximum and no pets please. No smoking or candles.\n", + "----------\n", + "I only accept clean people , reliable, no smokers. no alchool or drug tollerated.\n", + "----------\n", + "Please respect the quiet in the building. Very small dogs with kennels allowed. Condo does not have a crib and is not baby-proof.\n", + "----------\n", + "No pets. Sorry, it takes too long to clean. No smoking. Same reason. No open flames (candles, etc) Unless it is a birthday cake. No smoking inside the building or outside on the property. $10,000 fine from management billed to guest if you smoke inside the property. Quiet hours 11 p.m. -7 a.m. (Inside and outside of the property.) Parties are okay, but please respect the other tenants. This may be your vacation, but they have to go to work. Other tenants are flexible, but they also like to sleep. \n", + "----------\n", + "Shoes off please Cat can go in or out as he desires, don't worry if you let him out No smoking No drugs or excessive alcohol No pets Please do not light candles We will provide a small basket for your toiletries to bring to and from the bathroom. Please discuss any guests you bring into the household beyond those on the reservation with Orion. No excessive noise and conversations, particularly in the stairwell.\n", + "----------\n", + "No smoking! Please let me know as soon as you make reservation about your time of arrival. Late arrival after 10:00 P.M. there will be $150 extra charge. $50/more than one person during the holidays.. The use of the washer and dryer between 8:00 A.M.-9:00 P.M. No refund if cancelled in less than two weeks. Please take time to read all the house rule details on this site. Yes, I am very close to public transportation. Yes, you can walk every where from my place. Yes, I charge $50 for WiFi\n", + "----------\n", + "This is my apartment that I rent out when I'm away; I ask that you treat my things as you would yours and leave it as you found it. There is no smoking in the apartment as well as no pets. - Please be quiet in the hallway/stairs - I live in a small apartment building (5 apartments) and all of my neighbors are very quiet and polite so please reciprocate. - No overnight guests that are not on the reservation/have not been agreed upon in advance. - No smoking in the apartment, out the window, etc. -Please be mindful of shutting off lights when not in use/when leaving the apartment. -If you cook please take care of your dishes (you can use the dishwasher). \n", + "----------\n", + "Can use kitchen and either bathroom. Roommates will be at the house as well but will not be using the living during your stay. No guests permitted without prior notice and agreement. No shoes in the house and please wash all dishes promptly after use.\n", + "----------\n", + "- $20 per extra person. Maximum 2 person for attic room.\n", + "----------\n", + "Just the basics - No Smoking. No Pets. No Parties. Respect our home and our neighbors. Kids are welcome but the house isn't 'child-proofed'\n", + "----------\n", + "This is a residential neighborhood, quiet is important. No smoking. No pets.\n", + "----------\n", + "- We have a lovable and very social black lab puppy (8 months old). She is still learning her manners, so she may be overly friendly (jumping up, following you around, etc.). She is generally well behaved and crated during the weekdays, as well as sleeping hours. - There are two porches for your enjoyment. The back porch has a space for relaxing and a propane fueled grill.\n", + "----------\n", + "Quiet house, respectful of other units in the building.\n", + "----------\n", + "Limitation of Liability Waiver: Owner makes no warranties to guest of any kind, whether express or implied, including any implied warranty of merchantability, fitness for a particular purpose or non-infringement. Owner does not warrant, and neither shall be liable, to guest or any third party for any unavailability or inoperability of the booking vendor's services, telecommunications systems or the internet, technical malfunction, computer error, corruption or loss of information, or other injury, damage or disruption of any kind to person or property arising from events beyond the reasonable control of owner. In no event shall owner be liable to guest for any indirect, incidental, consequential, special or exemplary damages, including, but not limited to, loss of profits, loss of savings or loss of business opportunity, even if such damages are foreseeable and whether or not such party has been advised of the possibility thereof. Owner's maximum aggregate liability hereunder shall not\n", + "----------\n", + "Pets not allowed, no exceptions. Check in typically 5-6pm but flexible. No extra guests beyond those who have signed up please. Smoking is not permitted. Mainly just leave the place as you found it!\n", + "----------\n", + "respect others in the building\n", + "----------\n", + "Not too loud. No 'house rules' necessary as long as general nice manners are followed.\n", + "----------\n", + "THIS IS A NON-SMOKING RESIDENCE. NO Children under the age of 16 Smoking is permitted on your private deck only. Quiet hours are from 11:00 p.m. - 7:00 a.m. No pets allowed. Be respectful of your neighbors.\n", + "----------\n", + "We expect travelers to leave the apartment in the same condition that they left it in. We take great care of the apartment as we feel it is a truly special home, and hope that others will treat it the same way! We will provide fresh sheets and towels, which guests can put in a pile upon leaving. We do not allow pets unfortunately. Although we love them, the building does not!\n", + "----------\n", + "Please only smoke across the street, (smoke travels) there's a lovely green space and a bus shelter if raining Please, no bikes on the fence in front of the house. There's plenty of places to park the bikes. I have a wonderful dog, he's submissive with people, unfortunately aggressive with other dogs. I'm unable to welcome other dogs in the space.\n", + "----------\n", + "Please be courteous of our neighbors! We love them all and hope you do to! On requesting a reservation of the apartment please extend to us a description of your visit, with whom you will be traveling, and your arrival time. Also, please make certain your picture is uploaded on to your profile. We give preference for those who have verifications. On confirmation of your booking, we will email to you the address, entry instructions, and other pertinent instructions. Airbnb will collect the entire amount at the time of your reservation confirmation including the security deposit (which will be released 48 hours after your checkout date). Our cancellation policy is strict and any cancellation outside of seven days in advance will allow for a 50 percent refund. There will be a contract exchange for this property which will include keeping noise to respectful level, no more than six renters at a time (without express permission/acceptance from the hosts). Guests must have a credit\n", + "----------\n", + "- Check-in is after 12PM (noon) - No smoking! If I smell smoke or if there is other evidence of smoking, you will forfeit your entire security deposit. - The fireplace is (URL HIDDEN) do not use it as it will cause significant damage. If you do, you will forfeit your entire security deposit. - Check in and check out time can be flexible depending upon the dates you are looking for and whether anyone else is staying. Unless we arrange otherwise, check in and check out is at noon. - The cleaning fee covers two hours. If additional cleaning is required, you will be charged $50/hour, deducted from your deposit. - Out of respect for my neighbors, I must insist upon no parties being held at my place. If my neighbor complains about a party happening, or if there is a big mess left at the place, you will forfeit your entire deposit. - You agree to follow all of the rules of the building, including trash and roof deck rules. Any issues with not following the building rules and you forfeit your \n", + "----------\n", + "This is our home, please be respectful, we only accept reservations of those which the profile requesting the room represents. Thank you for your cooperation and respect for our rule.\n", + "----------\n", + "No parties, smoking or pets. Feel free to enjoy the location and space, just be respectful, thank you! (My doorman will know if you are bringing people up to the apartment.)\n", + "----------\n", + "Quiet, clean, respectable, no smoking Yes you can practice violin etc (*extra credit if you're a music student/musician, duh~)\n", + "----------\n", + "No smoking inside. Be tidy, we don't have a maid so treat our house like you'd want us to treat yours, simple really. Don't throw a \"rager\". Be respectful.\n", + "----------\n", + "This apartment is in a 3 families residential building, there is a no smoking and no drug policy, and the occupants should be concerned with common courtesy and no noises after 9.30-10 pm. No parties are allowed. We will meet you when you arrive at the building with the keys and will explain anything else you might like to know. We look forward to meeting you. \n", + "----------\n", + "• No smoking, pets, or unannounced guests. • Respect the check-out time of 11:00 AM. If you have special requests, discuss with us ahead of time! • Clean the kitchen/wash dishes after use. • Keep a reasonable volume after 11:00 PM & before 8 AM\n", + "----------\n", + "My ideal guests would be warm, friendly, and respectful of sharing my home and it's rhythms. I am allergic to cigarettes, so no smoking please, not even in the yard. A quiet homecoming is much appreciated at the end of the evening's nightlife.\n", + "----------\n", + "• Check-in time is 3PM. This is a non-smoking apartment No pets No loud music No Party 21+ guests only, unless accompanied by an adult who is 21+\n", + "----------\n", + "Unlike most other Airbnb listings, what we do here is long-term rentals by the year, or by the semester and we can welcome compatible short-term guests. We try to keep the atmosphere conducive to studying and resting and a couple of house-rules are in place to this end. 1. Non-smoker preferred. 2. No loud music or TV etc. 3. Only for one person (no couples, no visitors). We seldom have visitors, let alone overnight guests. We know this will be a major turn-off to many people, but we believe we can find a like-minded roommate who can have fun outside the house. 4. If you re not sure about your check-out date, you can reserve the minimum days and extend your stay at a discounted rate. 5. Check-in time is flexible, but it has to be coordinated at least 24 hours ahead. On arrival, a short registration process with a picture ID is needed in exchange for keys and wifi access. 6. Inside the apartment, we take off our outside shoes. So if you bring your own flip-flops, slippers or some k\n", + "----------\n", + "We provide this in the apartment. Residential neighborhood. Quiet is important. No smoking. No pets\n", + "----------\n", + "Please be respectful of the space and the other tenants in the building. Please treat the space as it were your own.\n", + "----------\n", + "- Please clean tools after you use kitchen - Please keep quite after 11pm\n", + "----------\n", + "This is a NO smoking building. NO smoking anywhere in the building or the cobblestone parking lot. There are other residents in the building. Please avoid loud music or late night parties.\n", + "----------\n", + "Please don't use the washer and dryer after 10pm or before 8am!\n", + "----------\n", + "Please be respectful and courteous of other house guests. Please keep all common areas clean after each use i.e. kitchen and bathroom. No smoking No pets No parties No back yard access\n", + "----------\n", + "The rules for my villa are the same as those for Marriott Custom House Guests.\n", + "----------\n", + "- No smoking inside the house, we have a porch out back :), no pets\n", + "----------\n", + "No company Be respectful Animals must be locked up Smoke friendly\n", + "----------\n", + "Overall please treat the apartment as you would you own home, Keeping it as clean and tidy as you found it. Please clean up before checking out. Any major clean-up service required may be deducted from the deposit. No Loud / Large Parties . Please include the number of people who will be staying before you reserve this apartment. No extra guests other than the maximum 2 allowed who booked All smoking should be done outside, as this is a smoke free enviroment.\n", + "----------\n", + "New luxury furnishings provided. Please be respectful. If an accident happens please report and it will be resolved. \n", + "----------\n", + "Absolutely *no* smoking is allowed on the premise of the property. The upstairs tenant suffers from severe asthma. Please note that by violating this rule, you will be forfeiting the entirety of your $250 security deposit.\n", + "----------\n", + "Be courteous to neighbors. No parties. No smoking. No pets. No hanging around on front porch.\n", + "----------\n", + "Please keep our place as it is your own - nice and clean. Before you leave turn off lights, AC. Shut the windows. Please do not use any oils or rich body lotions on our bedsheets. From our previous experiences If we find the stains you will be charged for the items: Full set 50$, flat sheet 15$, pillow case 10$, fitted sheet 15$, towel 10$ Please do not wipe your make up with a towel. Please do not throw anything inside of toilet: paper towels, hair, oils, food. Anything accept toilet paper. Any damaged furniture or fabric should be replaced or paid with original price. Please do not wear high hills in the apartment, the floor is just re-done. Absolutely non-smoking building inside and out, common areas. 1000$ fee will be demanded if a guest smokes in the building.\n", + "----------\n", + "No pets, smoking on the balconey only. We expect from our guests to respect the apartment and the neighbors : the quieter, the better :)\n", + "----------\n", + "Must love dogs :) NO SMOKERS/SMOKING/DRUG USE Check-in time during the week has to be after 2 pm. I am flexible on the weekends and with check out times. Other than that, be respectful and have fun in Boston.\n", + "----------\n", + "Please take of your shoes just after entering. Please strip the beds and place towel and sheets in the hamper before you go. You will see additional rules and info once you enter the residence. Parking is permitted and for residents only unfortunately. The best place is the Boston Commons Garage or Revere Hotel. A bedroom is located below our kitchen in our neighbors apartment, please walk softly and be sure to take off shoes. Thank you!\n", + "----------\n", + "Generally, we prefer that guests treat our home as a friends house, rather than a hotel. - Food/snacks left on the island are free to eat - Feel free to cook your own food, but kindly wash and put away your dishes after - Feel free to use the Keurig - No pets - Be respectful of the items in the apartment, and leave the space reasonably clean.\n", + "----------\n", + "No smoking, no pets, no parties\n", + "----------\n", + "No pets, no smoking of any manner or tobacco products allowed. This is my home and I expect guests to treat it with the same consideration and respect as they would show their own homes.\n", + "----------\n", + "Kid friendly if you bring your own pack n play or crib. IF YOU HAVE ALLERGIES PLEASE LET US KNOW. There is a dog who lives here, who will not be present for your stay, but who might have left behind some dander that could make you sad!\n", + "----------\n", + "This is a quiet residential street of owner occupied properties. Guest are expected to be respectful of other quests. No late night loud noise making. No smoking. Freshly laundered slippers are provided for guests to wear in the house. We have a no shoes policy inside the house.\n", + "----------\n", + "We expect our guests to behave in a respectful manner and try to limit loud sounds and noises (such as music and/or shouting) in the evening. All animals must be well mannered and guests are expected alert us to any animals they may have with them, so that we can clean properly after departure.\n", + "----------\n", + "Share our house as a guest, don't worry about cost of snacks or an occasional beer. No smoking and no pets. Please consult first if travelling with small children.\n", + "----------\n", + "Be respectful of my roommates and my dogs.\n", + "----------\n", + "No smoking, pets or permitted\n", + "----------\n", + "No smoking and Please respect each others space . When leaving out your space please dress respectful to other guess though out the house . ( example , if you are in the house please wear a Robe of some sort .\n", + "----------\n", + "Please be respectful of the space and building! No loud noises or extra guests beyond 10pm.\n", + "----------\n", + "I expect you to keep the apartment picked up and left how it was when you arrived.\n", + "----------\n", + "We live in a quiet neighborhood with respectful neighbors and we ask that you show them the same respect. No unreasonable noise after 11pm - no smoking - no parties.\n", + "----------\n", + "This is a non-smoking residence. There is light housekeeping (washing of linens (biweekly), towels, removal of kitchen trash) but guests are expected to clean up after themselves and keep the area tidy, including removing hair from the bathtub and sink and washing dishes right away. Remove shoes in the apartment. Slippers are OK. Turn off lights when exiting a room or hallway. Guests are not permitted without prior authorization. Overnight guests are not allowed. Be courteous to others in the household. Additional rules will be in the house manual, available upon arrival. \n", + "----------\n", + "No smoking Not suitable for pets No parties or events Check-in is after 3PM Be a good ambassador of your country. :) Due to the fact that the building is purely residential, guests are expected to respect at all times the peace and privacy of the neighbors. Principal Rules: 1) Strictly a non-smoking/ shoe-free apartment. 2) No pets allowed 3) We have zero tolerance disturbance policy, so please do not disturb the residents of the building and avoid any noisy behavior after 9:00 pm and before 9:00 AM. We reserve the right to abort the service without refund if any established complain arrives to us from the neighbors. 4) Guests are not permitted to allow other people into the apartment 5) Any property damage shall be paid in full 6) Please DO NOT send any personal mails/package to the address during your stay. (We had lots of issues from the previous guests) Please Contact us for the further arrangement if you have any mailing request before your trip. We really hope that you enjoy y\n", + "----------\n", + "Please no loud noise after 10pm as others do live here Check in after 3pm Check out at 11am Would appreciate it if you removed linens from bed post stay (not a requirement, just as a courtesy) NO SMOKING in room We do have an indoor porch if you're a smoker outside apartment\n", + "----------\n", + "Absolutely, No Smoking, No parties.\n", + "----------\n", + "No smoking or pets are permitted in the condo. This unit is single occupancy, although a guest is welcome to visit. Bruce has prepared a guest book with information about the property, the area and other important details to make your stay more comfortable.\n", + "----------\n", + "wash your dishes, turn off the AC and lights when you leave, keep noise to a minimum after 10pm\n", + "----------\n", + "For your privacy host will not greet you unless you want to meet host. The apartment is separated in two by a long hallway and black room divider. Guest are NOT allowed to go past the black room divider. 1) Upon arrival ring door bell and someone will buzz to unlock and let you into the apartment building. 2) Walk into the apartment. 3) Directly ahead will be your room. The light switch is in the room on the right of the room door . Also above light switch is the heat thermometer for the room and a air conditioner in the window. 4) Keep room door closed. 5) Pick up the keys that are in the Lotus leaf bowl on top of the desk next to the lamp. 6) keys to the lobby door (large key) apartment door (medium key) and room (small key) 7) The bathroom is directly on the left of the room. 8) Keep bathroom door closed when your occupied in there. 9) The microwave and refrigerator are in the closet. 10) Toiletries are in the closet and are for your use. 11) Cold water bottles in the refrigerato\n", + "----------\n", + "Check-in is 2:00 pm, and checkout 11:00 am (the bedrooms please, you leave your bags to pick up later or bring them early). After reservation please send me your arrival and departure time for logistics Help yourself morning coffee or tea with a toast (website hidden) shoes to the second floor 2.Keep the volume low before 8am and after 10pm 3.Close the doors gently (website hidden) shower after 11pm (website hidden) Laundry after before 9am and after 8pm 6.Keep the kitchen and bathroom in decent condition after you 7.Close the shower curtain well (important) (website hidden) water around the sink (under the sink there is a sponge you can use it to dry) 9.Turn off the light when you leave the room 10.Trash out from the room BLUE BOX recycling 11.Leave the key in the room THANK YOU PS: sorry, I need to be more strict about leaving the bathroom, kitchen neat, and lights. If you leave the lights on and the bathroom is water on the floor or around the sink, the security deposit will \n", + "----------\n", + "There is no smoking allowed anywhere on the property including back stairs or front driveway. Please take your shoes off once you enter the apartment. Also, disconnect toaster, coffee maker, and tea kettle after use. Thank you.\n", + "----------\n", + "No more than 2 people. I have neighbors above and below and to each side. Please be respectful in avoiding noises that will disturb the neighbors.\n", + "----------\n", + "No smoking, no pets, no parties.\n", + "----------\n", + "- Guests can smoke outside the building in my backyard if they smoke. - Please arrive at or after 6:30pm as I work during the day and before 11:30pm.\n", + "----------\n", + "- Non-smoker only - Cologne/perfumed sprays not allowed - Cat in the house - Do not share mailing address with anyone, and if you do it, you will pay $200 - Please take off street shoes and place them on the rack - Slippers can be provided but please bring your own if you can - Recycle all trash, we will help you to understand it - Food may not be left in your room - No eating in bed - No disturbance: please walk slowly when using stairs and very softly close all doors\n", + "----------\n", + "Our neighbors are easy going but also relatively quiet, so if you can keep that vibe, all will be well. Also, please no smoking, and absolutely no pets.\n", + "----------\n", + "No smoking No children under the age of 18 No animals No loud parties or people beyond those included in the reservation No late night check-ins\n", + "----------\n", + "The rules of the house are pretty basic: treat it like your own and please keep things tidy. Like any city apartment, the walls can be a bit thin, so guests are encouraged to keep things to a reasonable volume and be respectful of my neighbors. I have some pretty annoying allergies, so no pets are allowed.\n", + "----------\n", + "Please try to be mindful/aware of your actions and their effect on others No disturbance is greatly appreciated:) When talking on the phone, please do so only in your room with door closed:) unless it's an emergency Please walk, don't run the stairs (the slower you walk the less noise there is) Close all doors gently please No smoking anywhere in or out of the house If you tell me you stayed with friends who smoked as a reason for the smell, it will not matter No perfume/cologne, scented laundry detergent allowed (suitable product provided, just ask if needed) Guests/visitors not permitted\n", + "----------\n", + "Smoking is allowed on balcony and other designated areas. Your pets are welcome but please mind them. NO PARTIES ALLOWED. EXCESSIVE NOISE IS STRICTLY PROHIBITED.\n", + "----------\n", + "Guests are expected to keep the apartmemt clean and in good condition. Noise level should be kept at a reasonable level past 9:30 pm, as this a quiet neighborhood. Smoking in not allowed in the apartment but guests can smoke on the poarch. Small dogs and cats are allowed, but bigger pets will require prior approval.\n", + "----------\n", + "Non-smoker only Perfume/cologne/scented product not allowed Mild scent deodorant OK but no sprays If guest cases damages, the host can claim under the law of MA\n", + "----------\n", + "No smoking No Loud Music No Bad Word\n", + "----------\n", + "It's the golden rule of Airbnb; this is my home so I wish and expect that people treat it as they would if someone was staying in their house. Above all I hope there is mutual respect and that my guests enjoy themselves!\n", + "----------\n", + "No smoking No pets College student at Berklee college of music. Please treat the house belongings as if they were your own. Be comfortable and respectful.\n", + "----------\n", + "1. Please turn off lights when not in use. 2. Please use trash cans in bedroom and bathroom to dispose of waste. The blue recycling bin in the hallway can be used for clean hard plastics, glass bottles and jars, paper, cans and tins. 3. No pets are permitted on guest visits. 4. No fires (candles, incense, etc) are permitted in the apartment. 5. No smoking or drug use is permitted in the apartment. 6. No unapproved visitors are permitted in the apartment; please let Sara know in advance if you expect anyone besides the booked guest(s) to be at the apartment during your visit. 7. Please be respectful of our neighbors in the building by avoiding loud music or noise, especially late at night and early in the morning. 8. If furniture or amenities are broken or missing after a guest check-out, or if extensive cleaning is required, reimbursement may be requested through Airbnb. 9. If you have problem, requests, issues, or concerns during your visit, please contact Sara directly. I will be gla\n", + "----------\n", + "No Smoking on the apartment. No illegal Drugs No Parties on property. No pets PLEASE TRY TO BE AS QUIET AS POSSIBLE CONSIDER OTHER NEIGHBORS OR TENANTS. THANK YOU IN ADVANCE!.\n", + "----------\n", + "Hosted check in time is 4-8 p.m. Early and late check-ins are possible upon request in advance and subject to availability. Check out time is 11 a.m. Regretfully, for health and safety reasons, smoking is not permitted on the property. Regretfully, the space is not appropriate for young children, so we can't accommodate them. 48 hours cancellation notice or full charge. Regretfully, we cannot accommodate guest pets Discounted rates for weekly and monthly stays.\n", + "----------\n", + "No Pets allowed No smoking\n", + "----------\n", + "House should be left as tidy as you found it. No extra guests.\n", + "----------\n", + "Please Note: This unit was just renovated in August 2015 and it comfortably accommodates one to three guests, but up to 4 guests are permitted if you so desire (two guests in the bedroom, 1 guest on the available twin air mattress and 1 guest on the couch). Please request an air mattress (if needed) when making a reservation. No smoking, no pets, no parties, and must be 25 years old to book. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left next to the trash can (additional bags are under the sink) - All windows are closed and locked - If used, the air mattresses are deflated and put away (please leave used linens for the air mattresses on the floor) - If furniture was moved during your stay, please return to its original location Please be mindful to our neighbors in the building; quiet hours after 10pm. Please be considerate of our next guests who will be staying after you, if \n", + "----------\n", + "1. No parties. 2. Respect the neighbors. Noise level needs to stay low. 3. Keep feet on the porch when outside. 4. Clean any dishes you use. Not a good set up for children (0 - 13).\n", + "----------\n", + "Please know you will be living with others and must be courteous and respectful.\n", + "----------\n", + "This is our primary residence and we open it up to guests when we are going to be out of town. We ask that guests respect our home as they would their own. We do have a dog that lives with us, Mavis, who will also be away, but if someone has severe allergies, you may want to bring meds. This is a great condo in an amazing area with extremely nice neighbors, that being said, please be courteous to them during your stay. \n", + "----------\n", + "The (URL HIDDEN) use of tobacco/smoking/substances of abuse (including alcohol) on the property...quiet during night (you can go in and out as you like, just of course be quiet when we might be sleeping, as we try to be if coming home late when you might be in bed)...tell us a bit about yourself if you like and pls ask us about anything we might be able to tell you about locally/perhaps assist with...contact us when you're here with any questions! We particularly dislike jokes having to do with avocados. : ) Do sign our map of where you're from. Some more room/house use points: -> If you need it before we actually meet and show you, the bathroom is upstairs; feel free to get water for your use from bathroom faucet (it's fine to drink here, and in most of the US. Bottled water is rarely different than usual US tap water, with the bottling craze a big drain on resources, to be actively eschewed for the sake of our Mother Earth...). -> If you need to borrow a towel, there should b\n", + "----------\n", + "Your our guest, so please make yourself at home. Be clean! Hunter and I keep a tight ship around the apartment and we'd like our guests to be as clean as us. =) Speak up! Let us know if you need anything. Party down (if you let us know). We aren't huge partiers, but if you like to listen to music or watch loud TV, let us know ahead of time. This is important.\n", + "----------\n", + "No smoking, no loud music after 11pm.\n", + "----------\n", + "No smoking. No pets, please.\n", + "----------\n", + "Please note I require a two night minimum Please note the houseboat is limited to 6 occupants including children at any time. No Smoking All occupants must be 25 or accompanied by a parent/ guardian Children under 12 must war a life vest on the docks. We do not supply child size life vests. All guests must be considerate of other boat occupants and obey the quiet times of the marina.\n", + "----------\n", + "No smoking, No animals—we already have enough! No house parties. The maximum number of guests allowed in this room is one. Additional guests are not allowed unless they're just stopping in for a brief visit—still, please do clear it with me first. I am trustworthy, clean and respectful and I expect my guests to be the same. This is a calm, quiet neighborhood, so we ask that guests please adjust their decibels accordingly. I ask that guests leave rooms the same way they found them, making sure to clean up after cooking, to take hair out of the drains, and to put trash in trashcans. Please make yourself at home and feel free to use all my kitchen stuff. No pets allowed. No smoking. No storage permitted outside of rented room, outside of basket and pockets on shower curtain for toiletries in bathroom that I'll point out to you. Guests will please keep perishables in a college-size refrigerator dedicated to their use in the kitchen.\n", + "----------\n", + "This is two bedroom located in the heart of Brighton. It takes you to downtown by T within 20 minutes. The T is super close. The house rules are kind of very simple just please no smoking inside the house and no partying. No additional guest ($30 USD will be charged for per person if you have your guests) Shoes off please\n", + "----------\n", + "No smoking. No pets allowed in the building. Quiet hours apply.\n", + "----------\n", + "Quiet hours - 9pm to 8am\n", + "----------\n", + "Quiet building.\n", + "----------\n", + "Sorry No Smoking Sorry No Pets This is an elegant property for those who appreciate a quiet environment. Our property has no elevator and because of its historic nature is not Handicap Accessible.\n", + "----------\n", + "This is a non smoking house. Quiet hours are from 10pm until 8am. Cars must be parked within fence so as not to block neighbors driveway. One parking spot only per room. Please don't use the kitchen for cooking as cleanliness becomes difficult to maintain with the velocity of guests that we host. We welcome you to have breakfast at your leisure. Please place dirty dishes in the dishwasher unless it’s full of clean dishes!We look forward to having you! Boston is a terrific city and we are walking distance to public transportation and many wonderful shops and restaurants. Check out our reviews.\n", + "----------\n", + "House rules: Guests agree to the following terms and conditions 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes, and parking passes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with Jordan or AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $125 per hour fee for unauthorized early checkin or late checkout. 13\n", + "----------\n", + "No loud noises or loud music. Please help us save the planet by shutting off all the lights when they are not needed. Make sure the coffee maker, toaster and other appliance are off when you leave every morning. No pets. Remove your shoes and keep them inside the apartment. ABSOLUTELY NO SMOKING is allowed in the house. It is only allowed in the rear part of the building. No wild parties, this is a quiet building. All dishes should ne washed after used. All garbage should be taken out and put in the trash cans in the back porch. And last and not least, ENJOY YOUR STAY WITH US!!\n", + "----------\n", + "Thank you for your reservation. By placing your reservation online you indicated that you accepted the terms and conditions which have been printed below. Please review your reservation summary as below - then print, sign and return the agreement to: (EMAIL HIDDEN) or fax it to (PHONE NUMBER HIDDEN) or mail it to: Spare Suite, Inc., 119 Braintree Street, Suite 510, Boston, MA 02134, USA Upon receipt, we will send you the welcome document with check in instructions and how to get your keys. ------------------------------------------------------------------------ ------------------------------------------------------------------------ Terms of the Agreement: BOOKING AND REFUND POLICY Once booked your reservation is guaranteed for the check in and check out times and dates specified. All reservations must be paid in advance, in full for the entire period of stay. All reservations are final, and NON REFUNDABLE UNDER ANY CIRCUMSTANCES. If you feel you may need to cancel once booked, yo\n", + "----------\n", + "No smoking. Please keep cats out of bedrooms and bathroom to keep them clean. Do not let cats outside. Please make sure front door is locked behind you when entering the house.\n", + "----------\n", + "No smoking. Treat it as you would want your apartment to be treated.\n", + "----------\n", + "Quiet after 11pm. Other guests sleeping.\n", + "----------\n", + "Please Note: This unit was just renovated last year and it comfortably accommodates 6 guests, but up to 7 guests are permitted if you so desire (two guests in each bedroom and 1 or 2 guests on the available queen size air mattress). Please request an air mattress (if needed) when making a reservation. No smoking, no pets, no parties, and must be 25 years old to book. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left next to the trash can (additional bags are under the sink) - All windows are closed and locked - If used, the air mattresses are deflated and put away (please leave used linens for the air mattresses on the floor) - If furniture was moved during your stay, please return to its original location Please be mindful to our neighbors in the building; quiet hours after 10pm. Please be considerate of our next guests who will be staying after you, if something is broken or ne\n", + "----------\n", + "Shoes off in the house, please! Turn A/C off when not home, and hand-wash the knives. Thanks :).\n", + "----------\n", + "We offer 5 star accommodations and expect guest to treat it in that manner.\n", + "----------\n", + "Guests should do dishes.\n", + "----------\n", + "No smoking, please no shoes in the house. No partires allowed. Hardwood floors just got done. All lights, and AC must be turned off when no one is home there are trash barrels right on the back door outside where you can place your trash bags once is full . Please treat my home like it is your own home.\n", + "----------\n", + "1. Only the ORIGINAL OCCUPANTS at the time of booking are allowed to stay in the property overnight and secondly no additional guest will be brought in without prior authorization. 2. Excessive NOISE & DISTURBANCES, specifically on work nights (Sunday thru Thursday) are to be kept to a minimum after 10pm. On other nights of the week we ask that noise is kept to a controlled, restrained and respectable level do to the nature of this being a shared space. 3. SMOKING is not permitted in any of the inside premises, this includes the guest room, condo unit and building. You may smoke outside on the sidewalk. 4. DAMAGES to the property and it's contents (within the bedroom and the condo itself) will be subject to reinstitution in accordance to airbnb rules and regulations and may lead to the immediate dismissal from the property. 5. WASHER & DRYER is available for use by the guest free of charge, but under the condition that we (the host) are present at the time of use. In an effort to cons\n", + "----------\n", + "The usual courtesies apply: - No smoking - No overnight guests unless part of the reservation - Be reasonably quiet after 10 at night\n", + "----------\n", + "Please pick up/drop packet with front desk concierge. ABSOLUTELY NO SMOKING!!\n", + "----------\n", + "**We would love to hear a bit about you and what brings you to Boston before accepting any reservations. Please make sure your profile is filled out (including a clear picture of you), and your online and offline verifications are complete before you submit a reservation request so we have an idea of who you are.** Please be respectful of my home and other guests - clean up after yourself, keep your toiletries neat in the shared bathroom or leave them in your room, no smoking indoors, and please remove your shoes upon entering. I have coffee and tea for guests, and will leave out some basic breakfast items like snack bars and fresh fruit, however if you are planning on using the kitchen during your stay I ask that you provide your own food and drink. Please do not bring additional guests home without express prior permission from the host. Sorry, no pets allowed! Check out time is 12pm. Please clean your leftovers out of the refrigerator and put in the trash. Clean dishes buy run\n", + "----------\n", + "Available Upon Arrival - Looking for nice, neat, non smoking, responsible, and independent person(s).\n", + "----------\n", + "Party hard just don't break things.\n", + "----------\n", + "It is VERY important to me that you respect my belongings. I have lots of art, antiques, knick-knacks, books, fragile items, etc. Feel free to borrow a book as long as you return it in the same condition that you found it! Otherwise, please do not pick up or play with my things, go through my drawers, etc. My things are very loved by me, and most cannot be replaced. There will be ZERO tolerance for disrespect or cruelty towards my daughter or my cats.\n", + "----------\n", + "No Parties No Loud Music No Smoking\n", + "----------\n", + "1. No loud music. 2. No parties. 3. No removal of items from the apartment unless expressly allowed by the host. 4. Security deposit shall be claimed in the event of the following: a. Damaged or soiled sheets, to the extent that they require replacement b. Theft of items kept on and about the premises. c. Unreturned keys. d. Damage to the apartment or any part or item within and without the premises. e. The presence of pets in the apartment, due to intent or negligence on the part of the guest and their party. d. The presence of illicit or illegal substances, or illicit or illegal activities, on or about the premises\n", + "----------\n", + "NO SMOKING AND PETS ANYWHERE ON THE PROPERTY 1. Be respectful of the other tenants 2. When walking up the back stairwell into the unit, please minimize the amount of talking, door closing, and foot noise (these stairs border bedrooms) 3. If you use the grill, be sure to turn off the gas 4. Notify the owner of any discrepancies or things not functioning properly immediately 5. Please treat carpet stains promptly (or notify the owner) 6. Kindly turn off lights, air conditioners, and other electrical items when they aren't needed\n", + "----------\n", + "No smoking, drugs, or drinking, please.\n", + "----------\n", + "Check in is after 3 pm and check out is at 12 pm. No parties or events. No smoking. No pets. No unauthorized guests. My home is not child proof. Please leave your shoes at the entrance of the apartment.\n", + "----------\n", + "Please no pets! Again, I ask that you not consume my wine or whiskey collection.\n", + "----------\n", + "We both are very clean and tidy people. We don't accept smokers. In terms of this, we really want our guests to have good habit of living. We trust our visitors for being tidy, that's why we don't charge any cleansing fee. Party is definitely forbidden here. 我们都是非常干净整洁的人,公寓不租用给吸烟者,所以我们希望租客也是有良好生活习惯的人。我们相信我们的房客都是有良好习惯的人,所以我们不收取任何清洁费。派对聚会等活动是绝对不允许发生的。 We charge $100 deposit in case visitors make any damage in the apartment. The deposit will be keep by Airbnb Inc. If nothing in the apartment get damaged during your stay, Airbnb Inc. will give back your deposit after you leave the apartment. 我们收取100美金的押金以防房客给公寓带来任何损坏,押金将由Airbnb公司保管,如果在房客住宿期间没有任何损坏,Airbnb公司将在您的行程结束之后返还您的押金。\n", + "----------\n", + "This is a quiet condo association building from 10 p.m. to 6 a.m. Please be quiet in the stairwell and remove shoes during the hours of 10 p.m. and 6 a.m.\n", + "----------\n", + "Guests are responsible to clean up after themselves in common areas including dishes (dishwasher), and countertops. No candles or open flames in the condominium.\n", + "----------\n", + "Rules are detailed in the House Manual, which was emailed to you. There is also a printed copy of the house manual in the condo. Summary: - no guests other than those arranged with host. - no parties. - no smoking. - please be respectful of our neighbors. - please follow the check-out list provided. Failure to follow house rules will result in forfeiture of your security deposit.\n", + "----------\n", + "There's no cleaning fee, so we'd appreciate relative tidiness.\n", + "----------\n", + "No smoking anywhere on the property. Quiet and no noise after 10 pm or before 6 am. No outdoor shoes to be worn in the house. Please respect our home as we would yours. No pets.\n", + "----------\n", + "1. Check-in time is after 3 p.m. and check-out time is before 11 a.m. 2. DO NOT TAKE KEYS WITH YOU! On the Departure Date, the keys shall be left on the kitchen counter. The door to the Property MUST BE LOCKED BEHIND YOU using the key from the lockbox located inside the drawer to the foyer table. The front door to the building can simply be closed behind you. 3. This is a NON SMOKING property. The smell of smoke in the property, including the common areas of the building, will result in loss of security deposit. 4. A Security Deposit of $250 is required for stays of less than one month. For monthly stays a Security Deposit of $750 is required. The Security Deposit is fully refundable within 48 hours of departure, provided the following provisions are met: a. No damage is done to home or its contents, beyond normal wear and tear. b. No charges are incurred due to contraband, pets of Guest, or collection of rents or services rendered during the stay or any other act or om\n", + "----------\n", + "No parties. No smoking please\n", + "----------\n", + "Please arrange arrival ahead, late arrival will be handled through our \"key service\" by cal(PHONE NUMBER HIDDEN), they will meet you at the door with room keys/instructions, the address is 29 Hancock Street, Beacon Hill 02114. We expect guests to come and go quietly, we require ID to be emailed prior to arrival to (EMAIL HIDDEN) the building is \"smoke free\", please refrain from smoking indoors.\n", + "----------\n", + "Please respect the residents at the building by keeping noise down and absolutely no smoking. Thank you.\n", + "----------\n", + "House rules: Guests agree to the following terms and conditions 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes, and parking passes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with Jordan or AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $125 per hour fee for unauthorized early checkin or late checkout. 14\n", + "----------\n", + "1. no pets 2. no smoking 3. no use of fireplace \n", + "----------\n", + "Please Note: This unit was just renovated in May 2015 and it comfortably accommodates 4 guests, but up to 5 guests are permitted if you so desire (two guests in each bedroom and 1 guest on the available air mattress). Please request an air mattress (if needed) when making a reservation. No smoking, no pets, no parties, and must be 25 years old to book. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left next to the trash can (additional bags are under the sink) - All windows are closed and locked - If used, the air mattresses are deflated and put away (please leave used linens for the air mattresses on the floor) - If furniture was moved during your stay, please return to its original location Please be mindful to our neighbors in the building; quiet hours after 10pm. Please be considerate of our next guests who will be staying after you, if something is broken or needs fixing, ple\n", + "----------\n", + "Please respect and take care of this lovely space. :)\n", + "----------\n", + "No smoking in the apartment please.\n", + "----------\n", + "No Smoking in the Apartment. Pretty laid back home here with two cats that have free reign. Not a huge place so don't party here. Social & Respectful w/ cleaning after ourselves. Respecting quiet at night.\n", + "----------\n", + "Please be respectful of other guests. Keep the common areas clean and pick up after your self. No loud music after 10 pm. No pets. It is a safe neighborhood but please, keep doors locked for safety No smoking in the house (smoking is allowed on the front or back decks).\n", + "----------\n", + "No smoking Not suitable for pets No parties or events Check-in time is after 2pm Quiet hours: 10pm-8am - Please refrain from loud noise after 10pm as this is a family neighborhood. Music and voices from the upper deck carries down the block. We enforce a loss of deposit if there are noise complaints. - No parties. Although we want your group to have tons of fun, additional unnamed guests at a party will result in a 100% loss of deposit. AGREEMENT This Lease Agreement (the “Agreement\") is made by and between Airbnb host (“Homeowner\") and (“Guest\") as of the date last set forth on the agreement made via the (website hidden). For good and valuable consideration, the sufficiency of which is acknowledged, the parties hereby agree as follows: 1. Property. The property address will be disclosed at time of booking. 2. Rental Party. The rental party shall consist of Adults and Children (under age 18). The maximum number of guests is limited to 4 persons. Additional guests staying the night b\n", + "----------\n", + "No smoking or pets allowed\n", + "----------\n", + "We do not allow any pets on the property to protect our guests and family from allergies. Please do not park in our driveway. You may find on-street parking available on Spring Park Ave or Rockview St. There is no smoking on the property. Please feel free to take a walk around our lovely neighborhood if you need a smoke. Otherwise we have no real \"rules\" except common courtesy please. We always want our guests to feel as much at home as possible, so feel free to do so. Should you need something or have a question, just ask! We are always happy to help. Most of all, enjoy your visit here in our studio!\n", + "----------\n", + "The only thing we ask is that you respect our home and don't cause any damage to our personal belongings. If something breaks, please let us know is all we ask -- we don't like surprises! And, of course, be nice to our dog - that goes without saying :)\n", + "----------\n", + "Check-in is at 4pm or after. Checkout is at 1030am unless otherwise specified. Please be respectful and honest because we share the same space. We reserve the right to charge for parking upon arrival and to reject your reservation request if we do not feel comfortable with your request. Thank you!\n", + "----------\n", + "Shoes off when in the house. No smoking inside. Try to keep it quiet.\n", + "----------\n", + "All I ask is that you are respectful of my home and things, as well as my neighbors, who are excellent!\n", + "----------\n", + "No Smoking inside the apartment No Pets When possible, please remove shoes at entryway. This is our home so please treat it as you would your own and tidy up upon your checkout.\n", + "----------\n", + "This is a \"no smoking\" building. Xfinity (Comcast wirelss service) is available direct from service provider: (URL HIDDEN) $2.95 hourly pass* $7.95 daily pass $19.95 weekly pass $54.95 monthly pass\n", + "----------\n", + "- has to be clean!\n", + "----------\n", + "NO Smoking. Pets allow -- Breed Restrictions Apply.\n", + "----------\n", + "I have no doubt you will be respectful of the space but there are a few things we ask of you: 1. No smoking 2. The speakers aren't working so please don't try to reassemble them 3. Please no makeup on the towels (unfortunately, stained towels have to be replaced with a charge) 4. No parties (in an old building, the walls are thin so we need to be respectful of the neighbors) 5. Please try to clean up after yourself (old food in the fridge, etc.)\n", + "----------\n", + "Check Out is at Noon (12:00pm) unless otherwise specified. Cleanliness is next to godliness! No smoking, no pets, no parties! Please take your shoes off upon entering the apt. Thank you!\n", + "----------\n", + "No rules per say. I just ask that you respect my friendly \"building mates\" with noise levels. Oh, and no smoking or pets please!\n", + "----------\n", + "Please be quiet and respectful. Also, limited kitchen access in evenings. No pets or smoking please!\n", + "----------\n", + "No smoking or drug use. No parties. No guests other than those specified in your booking. No moving of furniture without asking Turn lights off when not in use No food in rooms, food can be stored in kitchen area Front door stays unlocked until 9pm, after ring doorbell or call host ((PHONE NUMBER HIDDEN) or (PHONE NUMBER HIDDEN)) Kitchen not for use Check-out time no later than 11am Host's food is off limits only what is serve and put out for breakfast!\n", + "----------\n", + "No pets and NO SMOKING. Please be respectful of neighbors as this is generally a quiet building. There is a sheet in the apartment with instructions to assist you in your stay. We like our guests to keep a low profile in the building.\n", + "----------\n", + "You must disclose at what time you are planning to arrive when booking. If it's too late at night, we may not be able to accommodate you. If you don't disclose the information, your reservation will be canceled immediately. International guests: Please make sure your visa/work permits are in order. We cannot refund your money if you are unable to come because your paperwork was not in order. If you are booking far in advance because of work/study issues, please be aware that if things change because of whatever circumstance we are not able to give you a full refund. Please understand that we have kept your place for months foregoing other bookings. The policy is that if you let us know a week in advance, you will receive 50% of what you have paid. Also, the money that you pay upfront to secure the place is kept by airbnb which handles all money transactions. No smoking indoors, only on the deck. No pets. Come and go as you please. No loud music please. Own housekeeping du\n", + "----------\n", + "No candles, no smoking, no food in room, no private kitchen use.\n", + "----------\n", + "No guests can be allowed access to the building/grounds that have not been mentioned at the time the reservation was made. This is to keep everyone, including my neighbors, safe. No smoking. No pets. Campsite rules - leave it as you found it please! (trash cans are right out the back door on the other side of the patio fence). Being low key/quiet after 10pm when on the patio is much appreciated by our neighbors.\n", + "----------\n", + "I want you to enjoy your stay!! Please try not to break anything and also try not to make a mess that I'll have to pay a maid to clean. Many people charge upwards of $100 a stay for a cleaning fee and I don't think that's fair to tack that on at the end so that's why I don't charge a cleaning fee. Please note that I also don't clean up after you or clean in your space while you're here.\n", + "----------\n", + "No Pets, No Smoking\n", + "----------\n", + "No smoking in the apartment.\n", + "----------\n", + "When you have \"settled\", Charlotte will show you what you need to know to make your stay perfect (door locks, porch lights, etc). Having an entire apartment (actually the larger part of the house) comes with a few small responsibilities that would not come with a hotel room. The house is professionally cleaned between guests. However we request that our guests leave the dishes, glassware and cooking utensils clean for the next guests. It is not acceptable to put dirty dishes back into the cabinets. I am very generous when I review guests. I don't believe any have gotten less than five stars. We have never had a guest we could not honestly recommend to another host! Please do not put baby wipes, diapers, paper towels, feminine products, etc. into the toilet. We are on a city sewer system over which the city planted trees. It is very costly to keep things flowing. Unknowingly, guests have caused two drainage blocks in 2 months. \"The DRain KIng\" came yesterday with a industrial size sna\n", + "----------\n", + "No smoking. No parties. Please respect our neighbors.\n", + "----------\n", + "Check in after noon and before 7pm. After 7pm $50 charge. No move-ins after midnight. check out 11am. NO PETS, NO SMOKING \n", + "----------\n", + "Apologies if some of this seems obvious. Keep the property and all furnishings in good order No smoking No pets or animals Prefer if you take shoes off when entering No moving furniture Close and lock front door at all times Please do not sleep on top of leather couch. If you need an extra bed, the leather couch converts into a queen size bed. No hosting parties Only use appliances for their intended uses Close windows if raining and when leaving Leave keys where you found them Homeowner is not responsible or liable for any accidents, injuries, or illness that occurs while on the premises or its facilities. The homeowner is not responsible for the loss of personal belongings or valuables of the guests. By completing this booking, it is agreed that all guests are expressly assuming the risk of any harm or liability arising from their use of the premises or others whom they invite to use the premise.\n", + "----------\n", + "Please treat apartment like your own home and be considerate of other tenants in the building. No parties or other guests. Quiet late at night and in the early morning hours. No loud music. No Smoking. No pets.\n", + "----------\n", + "Hi! So here are just some rules to make our experience more joyful and peaceful. We love to make our guest feel at home, however it's important to be mindful of these few things while staying in our home: feel free to use our kitchen, but remember to clean up after yourself, we do not provide toiletries nor do we provide towels, you may not bring unannounced guests or have anyone stay over that is not part of our initial agreement, we work throughout the week and it's important that we be mindful and respectful of this, no parties, loud music, or drugs in our home. And please please clean up after yourself when you use our bathroom. Smoking allowed in the room.\n", + "----------\n", + "Our building is filled with a mix of other residents. Please be respectful of them. Gatherings are okay, but loud parties after a certain hour (even on the weekends) are not tolerated. The building does not allow pets or smoking. Residents are prohibited from being on the fire escape or roof. Always lock the door when arriving or leaving. Please remove shoes at the bottom of the stairs (especially with the winter season coming up).\n", + "----------\n", + "We do not allow any pets on the property to protect our guests and family from allergies. Please do not park in our driveway. You may find on-street parking available on Spring Park Ave or Rockview St. There is no smoking on the property. Please feel free to take a walk around our lovely neighborhood if you need a smoke. Otherwise we have no real \"rules\" except common courtesy please. We always want our guests to feel as much at home as possible, so feel free to do so. Should you need something or have a question, just ask! We are always happy to help. Most of all, enjoy your visit here in our studio!\n", + "----------\n", + "This is a non-smoking residence. There is light housekeeping (biweekly changing of linens, removal of kitchen trash) but guests are expected to clean up after themselves and keep the area tidy, including removing hair from bathtub and sink and washing dishes right away. Remove shoes in the apartment. Slippers are OK. Turn off lights when exiting a room or hallway. Guests are not permitted without prior authorization. Overnight guests are not allowed. Be courteous to others in the household. Additional rules will be in the house manual, available upon arrival. \n", + "----------\n", + "Treat everything as if it was yours! Enjoy yourself.\n", + "----------\n", + "This is our home so please treat it with care. No pets and no smoking.\n", + "----------\n", + "Please understand that this is an apartment building and be mindful of other tenants during your stay. Feel free to use window A/C units but please turn off whenever you leave the apartment. 2 guests maximum; extra $25 per additional adult. (We can chat about kids) Help yourself to any non-alcoholic beverages (water, coffee. tea, milk etc) but please do not eat any food or drink any alcoholic beverages not explicitly left for you. Please place all dirty towels and sheets in the laundry basket by the bedroom door upon vacating. Please leave all keys back in the lockbox outside upon vacating.\n", + "----------\n", + "Be thoughtful and considerate! Be kind to the space and place things back in their place after use. It is a shoe-free apartment; please use the shoe racks and freely borrow the in-door slippers if you need one. Please ask before bringing visitors, and sorry I can only allow the number of guest on the reservation to stay overnight. Please No smoking anywhere (even on the balcony) and No pets; I am allergic to both! But most importantly feel at home :).\n", + "----------\n", + "1. No pets allowed. 2. No smoking inside the house, please. 3. No wearing shoes inside the house. We will give you slippers (you could bring your own slippers) 4. Quiet time starts at 10pm, and living room and kitchen are closed at that time.\n", + "----------\n", + "1.Check-ins Monday – Friday will preferably only happen between 6pm – 10:30pm because we work full-time. However, exceptions can be made. If you really need to check in at another time we are flexible and can try to coordinate accordingly. 2.We are only renting the bottom floor where the private room and bathroom is. The rest of the house is off limits for short stays. If you are staying for more than 1 week and would like to have access to cooking and other areas of the house please let us know. We are pretty easy going. 3.No smoking, No animals, No house parties. 4.The maximum number of guests allowed in this room is two. (Both have to be registered on the original reservation). Surprise additional guests are not allowed. 5.We are trustworthy, clean and respectful and expect our guests to be the same. 6.This is a calm, quiet neighborhood, so we ask that guests please adjust their volumes accordingly. 7.I ask that guests leave rooms the same way they found them, making sure to \n", + "----------\n", + "We suggest you use email or texting contact us if need, do not call us. We will not accept calling from AirBnB guests. We will back to you ASAP.\n", + "----------\n", + "LAUNDRY - Laundry can be done by the visitor before 10 pm, preferably on weekends. - Please provide your own detergent and fabric conditioner. Keep the machine clean and remember to clean the filter before and after use. - Please ask hosts to teach you how to operate the machines if you are not familiar with it. - Please limit your load and washes as not to overload the machine. - One wash per week will be ideal. HOUSEKEEPING - The bedrooms shall be kept clean and tidy by the visitor. - Please be respectful of others and keep the bathroom clean – do not leave dirty clothes and trash lying around. - Each visitor is responsible for cleaning their own dirty dishes and throwing their own trash in the garbage bin outside. - Please provide your own toiletries such as bath soap, shampoo and toothpaste. KITCHEN USE - We are sharing our kitchen and kitchenware stuff. Please make sure to take care of them and make sure you clean, dry and put them back where you found them. If you are cooking, \n", + "----------\n", + "No Smoking on the apartment. No Ilegal Drugs No Parties on property. No pets** (ask) PLEASE TRY TO BE AS QUIET AS POSSIBLE CONSIDER OTHER NEIGHBORS OR TENANTS. THANK YOU IN ADVANCE!. Reiterating what's below>>> No parties! No loud noises, please! - realize that there are other guests (and especially residents) like you in the building that may in fact want to get sleep on a regular basis (sometime between the hours of 10pm and 7am, probably!) During the day, jumping jacks are probably ok. If you have any problems or if neighbors complain call me at (phone number hidden) and mediate over the phone or in person. Hull st. court apartment rules: 0. Absolutely NO smoking in the apartment or building. Anyhow if you need to, please do go out to Hull street and people watch while smoking. The North end has multiple cigar bars, too! 1. Most important, please, No Parties = be quiet, use \"indoor voices\" like they taught us in grade school! Also, keep the stereo at a reasonable level, \n", + "----------\n", + "PLEASE NOTE: • 6.25% MA State Sales Tax is already incorporated into the room rate and extra guest fees. • The total listed as the cleaning fee is comprised of a $119 cleaning fee and a $39 damage protection plan which provides $3,000 worth of coverage for accidental damage to the property during the stay. There is no smoking allowed in the boat. Use of illegal substances will be cause for immediate termination of the rental and reported to the police. All pets must be on a leash when outside the boat. Quiet hours are between 9:30pm and 8am. Noise must be kept to a minimum during this time period.\n", + "----------\n", + "- 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. Fee for smoking will be 10 times your total reservation cost. For example, your total reservation cost is $350. Fee for smoking on premises will be $3,500. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $25\n", + "----------\n", + "We are in a neighborhood where families and people live, so we expect respect to all our rules that imply not disturbing the neighbors around us. We don't allow smoking ( any kind of smoking including cigars, or anything else) in the unit or outside ( meaning at the door). If there is smell of cigarette or any other type of smell in the apartment such as in bedding, furniture, etc. we will discount the complete security deposit, no exceptions. Excessive cleaning from misuse of the place will have extra cleaning charges. We don't allow loud music or noise that will bother our neighbors. We are happy to host people who will treat this unit as an apartment not as a hotel room. **We are in the city so some noise from the streets, traffic, people, and other noise out of control might be heard but can't have any liability over the noise that might occur.\n", + "----------\n", + "The house is absolutely NO SMOKING & NO PETS of any kind or size. Please remove shoes when going in & settling down. You will find the place clean & spotless on your arrival so please be respectful of efforts made to deliver it as such to every guest and every time. Please be respectful of apartment and its amenities. The rented apartment shall be occupied by no more than the number of listed adults and/or children on the reservation. Visiting friends are welcome, however the establishment of obvious residence by such persons is NOT permitted. Parties, large gatherings, or group events are absolutely not allowed in or around the property. Please remove all trash from unit and place in trash & recycle containers outside the unit at corner of house by back porch. Please collect all of your personal belongings upon your departure (double check bathrooms for personal items of any kind!). Please try & help us keep all aspects of managing the apartment within budgeted costs: do not t\n", + "----------\n", + "Keep noise down and have consideration for other guest. No smoking on premises.\n", + "----------\n", + "- Please be quiet in the hallway/stairs late at night - I live in a small apartment building (5 apartments), my neighbors are young professionals (no college students) and are very quiet and polite so please reciprocate - No overnight guests that are not on the reservation/have not been agreed upon in advance. - No smoking in the apartment, out the window, etc. -Please be mindful of shutting off lights, air conditioners, etc when not in use/when leaving the apartment. -If you cook please take care of your dishes (you can use the dishwasher).\n", + "----------\n", + "No smoking. Not pets/animals. No parties or events. No entertaining beyond confirmed booked guests.\n", + "----------\n", + "We expect guests to respect our neighbors and not be overly loud. No parties please. Absolutely no smoking.\n", + "----------\n", + "- - NO PETS! NO SMOKING ON PREMISES! NO PARTY! No \"DRUGS\"! - Keep the Place Clean at All Times! - Do Not Ask the \"Neighbors\" for anything. Ask Me!- - No Neighbors Interaction! - No \"Drugs\" Please!!! - No Noise! A printed house rule will be provided. Please be respectful to others when all rooms are booked. 10 AM Check-out and Check-in is between 12 PM (noon) - 3 PM. Late check in after 8 pm is $50, lock out is $50. Respect yourself, Respect others, clean up after yourself. No Smoking/drinking in apt. Thank You! Location Rules: The \"Exact Address Location Is Not Stockton St. It Is 2 Streets Away. It Is Not Disclosed For Security Reasons\" And Is Given Out 24 Hours Prior to Check-in. If This Is a Problem for You, Please STOP Here And Contact Other Hosts for Your Stay. This Is a Part Of My House Rules.\n", + "----------\n", + "Hello there! Please only enter the front door of the building if I have let you in or you have been given the key beforehand. Please leave the apartment and its contents in the same condition you found it. Please no one in the apartment except the registered guests. This is a strict one. Thanks for understanding! Please no eating or drinking on the sofa. (Also, please hand wash any dishes used.) Please walk gently in the apartment and observe quiet hours of 8pm-10am. It is an old building and sound transfers easily. Definitely no smoking and/or any other \"substances\" on the premises. Sorry, none of the alcohol in the apartment is for guest consumption. Thank you for respecting the property and also my furnishings. This helps me offer nice things for consequent guests! Sorry for the litany of rules, but adhering to these will make everyone happy. I like to keep a calm & clean place. Thank you! Paul\n", + "----------\n", + "May add extra guests (please contact for more info)\n", + "----------\n", + "Please smoke outside in the front of the building, no additional guests.\n", + "----------\n", + "No smoking or pets in the home due to potential allergies of future guests.\n", + "----------\n", + "No pets or smoking allowed any where on the premises. Check-in is at 4:00 pm or later and check out is at 11 am. After hours self check-in is available but MUST be PER-ARRANGED with host in advance. Bag storage is extra as are early check-in and late check out when possible. Guest are expected to be respectful of others in the building, neighbors, and the property.\n", + "----------\n", + "smoking outside no pets quiet friendly people preferred\n", + "----------\n", + "Kindness and courtesy appreciated. Non-dishwasher safe: pots & pans knives Water filter in the refrigerator Recycling placed between kitchen counter and living room next to the counter\n", + "----------\n", + "Be respectful of neighbors and the property.\n", + "----------\n", + "- NO SMOKING (You'll have to do that outside if you smoke) - Please keep the house exactly like you found it - Please don't leave a mess - Please don't leave things dirty. - If you use the bathroom, clean or wipe things down - If you use the kitchen, please clean dishes and wipe things down as well - No guest allowed - you can meet friends at other venues - Shoes off in the apartment - please leave by the door. If you would like please bring some slippers. - Please keep things quiet after 10pm - If you smoke, you must go outside! NO smoking inside! (the full security deposit will be withheld if a guest smokes in the house) - If you cook, please turn the fan on. - Please use your common sense, and if you are not sure, ask... - Remember, this is my house - so please treat it with respect.\n", + "----------\n", + "Apologies if some of this seems obvious. Keep the property and all furnishings in good order No smoking No pets or animals Prefer if you take shoes off when entering No moving furniture Close and lock front door at all times Please do not sleep on top of leather couch. If you need an extra bed, the leather couch converts into a queen size bed. Let me know if you plan on hosting parties Only use appliances for their intended uses Close windows if raining and when leaving Leave keys where you found them Homeowner is not responsible or liable for any accidents, injuries, or illness that occurs while on the premises or its facilities. The homeowner is not responsible for the loss of personal belongings or valuables of the guests. By completing this booking, it is agreed that all guests are expressly assuming the risk of any harm or liability arising from their use of the premises or others whom they invite to use the premise.\n", + "----------\n", + "For visitor who only need to sleep,take shower and rest from 10 pm to 8:00 am No smoking extra quiet please Check out please close doors by manual lock Walking slow and not noise please\n", + "----------\n", + "No smoking or drinking in the apt. Lock out will be $50. late check in after 9 pm and before 9 a.m. is $50. Respect yourself, respect other, clean up after yourself. Thank you\n", + "----------\n", + "Just be respectful, that's really all I ask. I love my home and hope you do too. No smoking inside, please smoke on the stoop. No pets please.\n", + "----------\n", + "House rules: Guests agree to the following terms and conditions 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes, and parking passes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with Jordan or AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $125 per hour fee for unauthorized early checkin or late checkout. 17\n", + "----------\n", + "Just be cool, we love our home and love our neighborhood - we're thrilled to have the opportunity to share it with you.\n", + "----------\n", + "The usual \"social code\": There are three of us altogether in the apartment -- myself and two others, usually housemates, though one of the bedrooms may also be occupied by another guest -- so use of the bathroom should be considerate of others' needs as well. Quiet is appreciated before 8:00 AM and after 10:00 PM. You are more than welcome to use the kitchen for preparing food; we would ask only that you leave it in the condition you would wish to find it. Smoking allowed on deck. *Good communication is essential to ensure everyone is contented.\n", + "----------\n", + "NO PETS, NO SMOKING permitted! \n", + "----------\n", + "No smoking or pets. Don't forget to recycle.\n", + "----------\n", + "No Pet. No Smoking. \n", + "----------\n", + "- No shoes on carpets and rugs - Eating and Drinking only in Kitchen - Quiet time from 11pm - 6am - No gatherings or parties\n", + "----------\n", + "Please respect my home. There are other long term tenants who reside in the building. THERE WILL BE NO PARTIES ALLOWED AT THIS PROPERTY. If guests host a party, they will be asked to leave immediately upon the first report of a disturbance and the security deposit forfeited.\n", + "----------\n", + "Please make sure the front house doors are locked when leaving. Please return keys to lock box upon check-out. Please limit use of the 2nd floor resident's bathroom to nighttime breaks only. The back areas of house are being renovated and are off-limits.\n", + "----------\n", + "Smoking is not permitted inside the house.\n", + "----------\n", + "No smoking, no pets. No jumping on bed or couch. Used toilet paper, paper towel , and sanitary napkins need to be disposed in trash can not in toilet. Thank you for treating my home with respect .\n", + "----------\n", + "No Smoking Indoors\n", + "----------\n", + "No smoking or drinking in the apt. Lock out will be $50. late check in after 9 pm and before 9 a.m. is $50. Respect yourself, respect other, clean up after yourself. Thank you \n", + "----------\n", + "Treat the home as if it were your own. If you need to smoke, you can smoke on the porch\n", + "----------\n", + "No pets, no smoking, no parties. No guests not on the reservation. You are liable for any damage. We will give you access to Netflix. Please respect the account. Please report anything broken at the beginning of your reservation to avoid the loss of your security deposit. Clean all your dishes and clean up after yourself. Please keep the noise down.\n", + "----------\n", + "Please respect all personal property/possessions on the premises. The house is the primary residence of the owner and his wife: it is not a primary rental space, vacation home, etc. Smoking: Absolutely NO SMOKING in the house, on the deck, or in the backyard. Any evidence of smoking on the premises will result in the loss of your security deposit. Pets: The house has 2 glass sliders leading out to the deck and private backyard. One of the sliders (it is fixed - do NOT try to slide it) has an installed doggy door, capable of accommodating a small dog (less than 25 pounds) or a cat. You are welcome to have your WELL-BEHAVED, HOUSE-BROKEN small dog or cat stay at the house for a small additional fee ($25/day); however, you must provide more details about your pet's needs PRIOR to renting the house. Evidence of an unapproved pet stay will result in the loss of your security deposit. Thank you for your respectful consideration!\n", + "----------\n", + "Use of all of kitchen except gas stove/oven. There is a microwave, sink, plates and all other basic kitchen utensils. No fire or lit candles.\n", + "----------\n", + "Guests are encouraged to feel at home but be respectful and gentle. A welcome sheet is provided in your room with useful information\n", + "----------\n", + "Parties, group events, having any number of guests above the number of people listed on the reservation either for a few minute visit or otherwise, or playing loud music is not allowed. Neighbors are quiet and respectable professionals and it is strictly necessary to respect their peace and to be discreet at any time. Thank you for your understanding. You can feel free to ask me for anything. Safe travels and see you soon! Sebastien\n", + "----------\n", + "1. No pets allowed. 2. No Children under the age of 10 allowed. 3. No smoking inside the house. You may smoke outside. 4. No wearing shoes inside the house. We will give you slippers for you to wear. 5. Quiet time starts at 11pm\n", + "----------\n", + "Shoes must be removed after entering the house. The cats are strictly indoor. No smoking\n", + "----------\n", + "Guests must be fit enough to maneuver themselves and any luggage up 3 flights of winding staircase. Dishes, pots, pans, and appliances are usable but please leave everything in about the same state that you found it. Apartment is not sound-proof! I like my neighbors, be kind to them. Don't get me in trouble with them. Don't hesitate to ask questions about function or location of something!! Have a great stay!\n", + "----------\n", + "- Please be mindful of the neighbors, quiet time after 10PM - Check-out time is at 11AM on the day of your departure. - If you're going to smoke outside, please clean up after yourself and do not throw cigarette butts on the ground - The refrigerator and cabinets are available for your use but please do not take food items unless explicitly permitted\n", + "----------\n", + "No Smoking No Drugs No Parties on property No pets Please be consideration of our neighbors. Thank you in advance!\n", + "----------\n", + "- Rooftop deck - 1 Block from South Station\n", + "----------\n", + "There is no smoking in any of the house rooms. Single guests are preferred, but exceptions are made to accommodate 2 people if needed. The Office Room will only accommodate 1 person. Every effort is made to insure guest privacy, and quiet, especially during late evening hours.\n", + "----------\n", + "I prefer those person Who would rent my room over 15 days once(Price will be lower) No smoking inside Cleaning my room at least one time in 3 days No other inappropriate actions on bed Thank you so much\n", + "----------\n", + "Are we allowed to drive the boats? All of our boats are in-slip rentals, and can't be taken out. Many of our rental locations have charter services available in the same marina, and we can get you information regarding these services if you desire an excursion. How safe is the location? The boats are in very safe locations. There are gates for entrance, and a fully staffed office looking after the marina. Each boat can be secured while you are on board, or if you are away for the day. The parking is all in well lit and maintained lots. Do I need to bring my car, and where do I park? We recognize the hassle of traveling with a car within cities. We try to select marinas that are convenient for car-free exploring. Most of our locations are within walking distance to major tourist sites, and also have an abundance of public transportation options. If you do need to drive to the marina, we can provide you with information for finding a parking spot convenient to the marina and boat. Do th\n", + "----------\n", + "House Manual: - No smoking, drugs or drinking alcohol/wine in the apartment - Fireplaces are decorative NEVER to be used - Clean up after yourselves - Do not leave your dirty dishes in the sink to be cleaned. Rinse them and run the dishwasher and put them back where they belong. - If you bring food into the house, do not leave it out or in the refrigerator when you leave. Please throw it away before you leave. Take garbage out. - The decorative curtains in the living room and kitchen are not to be touched. They are there for decoration only. You can not close them. - The shade over the window to the right in the bedroom should never be touched as well. The vines cover that window and no one can see in. - Feed the cat wet cat food in the evening - Take out your garbage on the trash days (Monday and Friday) - If you break it, then you pay to replace it - No loud noises - Keep the apartment clean and leave it as nice as you found it with clean sheets, comforter and pillow cases.\n", + "----------\n", + "This is a self-service room. The common areas are professionally cleaned but please be considerate and clean up after yourself in common areas - especially after cooking and eating or using the bathroom. No street shoes in the house, por favor, bring slippers. Smoking is allowed outside. We recycle and have provided the necessary information so that you can too. Reusable containers for storing food and shopping bags for shopping are provided. Please consider the environment and do not bring plastic bags or plastic wrap into this house. When in doubt, ask me!\n", + "----------\n", + "Reasonably quiet after 9. Having said that, I should note that the walls of this 145 year old mansion are thick, so average noise will not travel beyond your suite. So sorry, but no burning of candles.\n", + "----------\n", + "Please remember that this is a residential building. The building rules, apartment occupancy restrictions and the year-round tenants must be respected. \n", + "----------\n", + "Be respectful of our neighbors - No loud music or parties, please.\n", + "----------\n", + "Please treat my home as you would your own.\n", + "----------\n", + "Check-in is 2:00 pm, and checkout 11:00 am (the bedrooms please, you leave your bags to pick up later or bring them early). After reservation please send me your arrival and departure time for logistics 1.No shoes to the second floor 2.Keep the volume low before 8am and after 10pm 3.Close the doors gently 4.No shower after 11:30pm 5.No Laundry after before 9am and after 8pm 6.Keep the kitchen and bathroom in decent condition after you 7.Close the shower curtain well (important) 8.No water around the sink (under the sink there is a sponge you can use it to dry) 9.Turn off the light when you leave the room 10.Trash out from the room BLUE BOX recycling 11.Leave the key in the room THANK YOU\n", + "----------\n", + "No smoking, no pets. Otherwise, nothing in particular, please treat the other occupants and the apartment with respect.\n", + "----------\n", + "Please treat our home like you would your own family's! AGREEMENT This Lease Agreement (the “Agreement\") is made by and between Airbnb host (“Homeowner\") and (“Guest\") as of the date last set forth on the agreement made via airbnb. For good and valuable consideration, the sufficiency of which is acknowledged, the parties hereby agree as follows: 1. Property: The property address will be disclosed at time of booking. 2. Rental Party: The rental party shall consist of Adults and Children (under age 18). The maximum number of guests is limited to 2 persons. 3. Term of the Lease. The lease begins at 3:00 p.m. on (the “Check-in Date\") and ends at 10:00 a.m. on (the “Check-out Date\"). No refunds are issued for late check-in or early departure. 4. Rental Rate and Fees. As listed in the Airbnb reservation system and subject to change. Refer to the official reservation for details. 5. Security Deposit. The Security Deposit is required to protect Homeowner from loss or damage to the Property, \n", + "----------\n", + "THIS IS A NON-SMOKING RESIDENCE. NO Children under the age of 16 Smoking is permitted on the outside front porch deck only. Quiet hours are from 11:00 p.m. - 7:00 a.m. No pets allowed. Be respectful of your neighbors.\n", + "----------\n", + "No pets, no smoking or partying. No rental to guests under 25.\n", + "----------\n", + "Pet Friendly! Smoking outdoors only. In general, we just want you to relax, enjoy yourselves and take advantage of our close proximity to all things Boston. If you follow the simple rule of \"leave things how you found them\" all will be well - common sense stuff.\n", + "----------\n", + "WHEN BOOKING, PLEASE PROVIDE THE FOLLOWING IN YOUR MESSAGE to me: - 1. Total number of guests (adults, children, babies)? Are there any elderly or children under 18? If so, what are their ages? - 2. Arrival Date AND Time of Check In? (Check In between 2 pm and 9 pm with some leniency) - 3. Departure Date (Check out before 12 pm/noon ideally) - 4. Please tell me a little about yourselves and the purpose of your trip. - 5. What Other Needs or Special Requests or Extra Options (please read below for additional options and possible related additional fees). ------ PLEASE NOTE THE FOLLOWING BEFORE REQUESTING A BOOKING: * I will reply as soon as possible to let you know if my apartment will be available for ALL your needs. - 1. We are happy to host Friendly, Neat, Low-Maintainence Adults & Well-Behaved Children. ---- All cookware and utensils in the kitchen are at your disposal, but please ask about food before eating as this is my home and I may be saving something. There will be w\n", + "----------\n", + "No shoes on in the house. My home is 420 friendly yet no cigarettes. You will not have access to a key but you will be able to come and go freely.\n", + "----------\n", + "PLEASE... - No smoking. - No open flames. - No pets. - No parties. - Please be aware of your evening noise level. My neighbors are all professionals and have to get up in the morning. Thanks.\n", + "----------\n", + "This is a fragrance free property. I have fragrance free shampoo, conditioner, body wash and soap available. If you could refrain from wearing perfume or cologne and using strong smelling shampoo and soap I would really appreciate it. Natural products made with essential oils and herbs are fine. For example, Aubrey Organics, Desert Essence and Avalon Organics are made with ingredients such as lavender, rose and coconut which are all fine. The room is on the third floor. There is no curfew. I will give you a key and you can come and go as you please. I have an active life so sometimes I am not home but I do my best to be available by phone or text to assist you with your needs. If you need something you can always call me, whether it is early in the morning or late at night. You can keep things in the fridge and use the kitchen. You can use the washing machine and the dryer. This is a non-smoking household. This includes the porch and the outdoor areas around the house. Sorry,\n", + "----------\n", + "Please take your shoes off outside the front door to my apartment on the landing. I am on the very last floor so no one out of my neighbors comes up here, so your shoes are totally safe. My apartment is kept very clean and tidy, so taking shoes off is essential to keeping it the same way for you and for me. Please stack the dishes in the dishwasher to the right of the sink. Some guests go out of their way to make sure they leave everything the way they found it and clean dishes by hand, but I actually prefer you use the dishwasher to washing by hand. This should be easier for you anyway! Dishwasher detergent is under the sink to the left of the trash. When leaving the apartment, please always lock the top lock on the door. Please shut off all the lights, AC unit, TV, etc. before you leave. If you open windows, please close and lock them before you leave the apartment. ABSOLUTELY NO PARTIES!!! Sorry!\n", + "----------\n", + "Please expect to share the apartment with guests having various backgrounds. Be respectful and decent, also enjoy interacting with each other. Please dress descently in the house especially in and out of the shower.\n", + "----------\n", + "Quiet time in our building is from 10pm-8am.\n", + "----------\n", + "Unlike most other Airbnb listings, what we do here is long-term rentals by the year, or by the semester. We try to keep the atmosphere conducive to studying and resting and a couple of house-rules are in place to this end. 1. Towels and linens (sheets, blankets, and pillows) are NOT provided. The bed is twin size. 2. No smoking on the premises. 3. No loud music or TV etc. 4. Only for one person (no couples, no visitors). We seldom have visitors, let alone overnight guests. We know this will be a major turn-off to many people, but we believe we can find a like-minded roommate who can have fun outside the house. 5. If you are not sure about your check-out date, you can reserve the minimum days and extend your stay at a discounted rate. 6. Check-in time has to be coordinated at least 48 hours ahead. On arrival, a short registration process with a picture ID is needed in exchange for keys and wifi access. 7. Inside the apartment, we take off our outside shoes. So if you bring your o\n", + "----------\n", + "No smoking, pets or parties.\n", + "----------\n", + "1. No wearing shoes inside the house. We will give you slippers (you could bring your own slippers) 2. Living room and kitchen are closed at 10 pm, and please be quiet after 10 pm\n", + "----------\n", + "No pets. No smoking please.\n", + "----------\n", + "Please feel to use the kitchen, laundry, etc. I take great pride in keeping my things nice, so please be respectful and we will be all set :)\n", + "----------\n", + "No pets. No smoking. Please :)\n", + "----------\n", + "11 guest maximum. Smoking isn't permitted and unfortunately neither are pets. Sorry. Quiet hours 9p-8a.\n", + "----------\n", + "Please respect the residents in the building by keeping noise down and absolutely no smoking! Thanks.\n", + "----------\n", + "NO SMOKING, NO PETS. $100 move-in fee payable to the building and due at move in. A US check is okay or if you pay cash, then we will write a company check and give you a receipt. Check in after noon and before 7pm. $50 charge if checking in after 7pm. No check-in after 11:30pm Check-out 11am. \n", + "----------\n", + "Please be respectful of my things! I have a lot of stuff that I have collected over the years. Absolutely NO smoking. This is a really relaxing space and the neighbors are all really cool. -Pets are allowed -If you cook, please clean after yourself and make proper use of the garbage disposal.\n", + "----------\n", + "- Absolutely no smoking in, on or near the property, not suitable for children under 16 years of age.\n", + "----------\n", + "No smoking, No pets. No shoes in the house. Visitors are permitted in the common area only. Please use the dining room to enjoy your meals. Also please refrain using an electronic device while having your meal. Quiet time between 10:00pm-6:00am.\n", + "----------\n", + "No pets\n", + "----------\n", + "1. No pets allowed. 2. No smoking inside the house, please. 3. No wearing shoes inside the house. We will give you slippers (you could bring your own slippers) 4. Living room and kitchen are closed at 10 pm, and please be quiet after 10 pm\n", + "----------\n", + "No Smoking, No additional guests,\n", + "----------\n", + "Our home is a smoke-free environment. We expect everyone to act as responsible adults and respect our home.\n", + "----------\n", + "- Please call / send message to arrange meeting for check in - Check in 3 pm - 11 pm - Check out by 11 am on last day\n", + "----------\n", + "• Check-in time is 5PM. • No parties or events • Not suitable for pets • No smoking •I'd ask guests to respect my privacy and not walk down to the lower level where I stay. •No parties, this is a quiet building with all working professionals. •You ABSOLUTELY cannot just show up at my property without a reservation. •Please be respectful of noise levels at all times. Do not slam doors, play music loud, yell, etc.. •I also ask guests to pick up after themselves if they want to use the kitchen/dining areas. •No smoking please.\n", + "----------\n", + "No smoking except smoke deck.\n", + "----------\n", + "This is our primary residence, so please treat it like you would your own house!\n", + "----------\n", + "Respectful, quiet but enjoyable stay! Clean, or messy and then clean up before they leave! ;-)\n", + "----------\n", + "Please remember that this is a residential building. The building rules, hotel occupancy restrictions, and year-round tenants have to be respected.\n", + "----------\n", + "Will send it as soon as reservation is confirmed.\n", + "----------\n", + "No smoking in the unit or in the building (strict). There will be a $450 fine for smoking in the unit or in the building. No open flame. No pets. Please respect your neighbors and keep the noise down after 10pm. There is a $50 fee for lost keys.\n", + "----------\n", + "We don't allow parties or rude guests. We have others that are living in the building. Please treat our house as you would treat yours! No smoking in the apartment please!\n", + "----------\n", + "Treat our property with respect: There is no smoking in the loft. Clean up after yourself & turn lights and heating off whenever leaving the space. No Noise after 10 pm. Guest are not allowed to have other guests come over.\n", + "----------\n", + "I expect guest to respect that this is my personal home, I live here, and to fully respect the space and my belongings as you would your own. This is not a hotel and the space does not feel like a hotel or rental that other guests are constantly moving in and out of. Please do not light candles in the house or anything that would be a fire hazard. Please clean up after yourself. No smoking in the house No pets please Please be respectful of my belongings and do not move anything around. When using the firepit, please use caution. If plants look like they could use a little water, feel free to give them a little!\n", + "----------\n", + "Guests who use kitchen must wash their dishes (or put them in dishwasher) and wipe stove and counters after eating, in courtesy to other guests. No smoking inside or behind the house; smoking is permitted only in smoking area in front of house. To maintain quiet on floors with bedrooms, please use headphones to listen to music/videos or when making (SENSITIVE CONTENTS HIDDEN) calls in bedrooms, and keep hallways conversations quiet and short. \n", + "----------\n", + "We don't allow pets or smoking and would appreciate respect for our belongings and furnishings. FYI: We do have a non-shedding labradoodle which travels with us.\n", + "----------\n", + "- Please be respectful and polite to neighbors. There are downstairs tenants so please don't be noisy after 11pm. - Please turn off any lights and adjust down the thermostat to 55 before you depart or please turn off the AC window units/fans - Return keys to lockbox at end of stay. (There is a fee of $50 for each set of lost keys) - No animals - No smoking in the house (there is a backyard area) - Check in is at 4:00 pm (message for special requests) - Check out is at 12 noon\n", + "----------\n", + "- cleaning, quiet, friendly, no drug, no smoking,\n", + "----------\n", + "No loud parties, no extra guests, no pets, no smoking. Please treat this space with respect, especially as we have put so much care and love into designing it!\n", + "----------\n", + "We're laid back and don't have too many rules! There is a porch outside if you need to smoke. We like to keep our home neat and hope you help us keep it how you find it! We do ask that you do not bring guests back. This is a way for us to control who is in our home, and it means a lot to us. As for noise, just be reasonable. If it's getting late, you know the drill :)\n", + "----------\n", + "Check-in is at 3pm, and check-out is by 11am. Arriving slightly earlier, or want that extra hour to sleep? Should be fine, but please check with us first. We understand that accidents happen. But we do ask that you please let us know when they do. Chances are we can fix them as effortlessly, as long as we know in advance. No smoking or open flames inside the house. We expect guests to treat the home with respect, it's an old house be kind to her. Whilst we do a thorough professional clean between each guest stay, we kindly ask that prior to leaving, you clean and put away any dishes or kitchenware used and put any dirty towels in the tub in the downstairs bathroom. It helps us get through our cleaning process quicker and allows us to keep cleaning costs down for you and future guests. Return all keys to the lock box at departure. To keep our costs down (and pass those savings on to our guests) we kindly ask that you switch off lights, the air conditioner or heat when its not in use or\n", + "----------\n", + "No smoking of any kind indoors; no smoking on deck or in back garden; smoking allowed in front garden, where chairs and a table are provided. Guests using kitchen area are asked to keep it clean and put away food in refrigerator or cabinets or plastic containers. Quiet hours after 11pm. \n", + "----------\n", + "No Smoking\n", + "----------\n", + "Please treat this home as your own and respect the neighbors. No parties, smoking, or additional guests (other than the agreed upon).\n", + "----------\n", + "I expect guests to treat my home as if it were their own. Be neat and clean, considerate, and respectful of both my home and my neighbors. There is NO additional guests permitted! NO parties! There is NO smoking in the home, NO pets, NO drugs!!! NO food in the bedrooms!! Shoes are to be take off upon entry!!\n", + "----------\n", + "Please be respectful, Thank you !\n", + "----------\n", + "Please be clean and respectful of the apartment, building and neighbors. No smoking indoors. Pets are allowed on a case by case basis.\n", + "----------\n", + "Smoking is allowed on the patio only. No pets unless discussed with owners Be mindful of the neighbors, this is a residential area.\n", + "----------\n", + "Guests who use kitchen must wash their dishes (or put them in dishwasher) and wipe stove and counters after eating, in courtesy to other guests. No smoking inside or behind the house; smoking is permitted only in smoking area in front of house. To maintain quiet on floors with bedrooms, please use headphones to listen to music/videos or when making (website hidden) calls in bedrooms, and keep hallways conversations quiet and short. \n", + "----------\n", + "We expect our guests to behave in a respectful manner and try to limit loud sounds and noises (such as music and/or shouting) in the evening. All animals must be well mannered and guests are expected alert us to any animals they may have with them, so that we can clean properly after departure. This apartment is non-smoking.\n", + "----------\n", + "No smoking , The key located in front of the main door next to the railing Inside of the locker , I will send the passcode to the guest prior check in , please remember to put the key back in the locker when check out . With the key , please open with the passcode, take the key out , then close the locker , when you check out , please open the locker , place the key , then close the locker . Thank you The Internet username : kenwang549 Password: columbus12345 The assigned parking in the behind of the building , you can follow the direction with the picture shown , and there is a sign for the parking space . Any questions or problems please contact me at (PHONE NUMBER HIDDEN) , or e mail me . Thank you\n", + "----------\n", + "Quiet, residential. No smoking. No pets\n", + "----------\n", + "No Smoking No Parties or Events of any kind Please take out your shoes when you arrive. Remember you are not a tenant you are a Guest of the Host.\n", + "----------\n", + "The unit is a two unit condo. Noise needs to be reduced after 11pm. Unit is no smoking, any smoking must be done in the back yard area. No pets are allowed. Security deposit paid up front covers any damaged items. The deposit will be refunded after inspection of the unit. Cleaning fee of $135 will be assessed for basic cleaning of the unit. Excessive cleaning with be subject to a greater fee, taken from the security deposit. \n", + "----------\n", + "No drugs ,No smoking No loud music after 10pm Keep your room and common area clean Clean behind yourself in the bathroom, kitchen and rooms Please no food on the room All visitors of houseguest must leave by a decent hour No violence No pets Check out please leave key on the kitchen table and closed doors with manual lock\n", + "----------\n", + "No smoking or drug use. No parties. No guests other than those specified in your booking. No moving of furniture without asking Turn lights off when not in use No food in rooms, food can be stored in kitchen area Front door stays unlocked until 9pm, after ring doorbell or call host ((PHONE NUMBER HIDDEN) or (PHONE NUMBER HIDDEN)) Kitchen is not for use Check-out time no later than 11am Host's food is off limits only what is serve and put out for breakfast!\n", + "----------\n", + "-NO smoking inside. You are welcome to smoke outside, but please be respectful if the kids are in the yard or garden. -NO candles or incense please! The gas stove should be the only indoor flame. -We ask guests to maintain quiet from 9pm-9am and be respectful of noise levels during the day. You are welcome to have a few friends over for dinner, and we love noisy kids, but loud music or loud parties do not work well in this space. -The original house and foundation are over 150 years old, and although we strive to keep it very clean the occasional mouse or animal has found it's way in (mostly behind the walls, so you might hear scratching although we are trying to seal all the foundation holes), so please keep food mess put away. -Please clean up messes that could stain or damage our carpets, furniture or bathroom. Hair dyeing and hair cuts are not allowed in the apartment as the wood and claw foot tub can stain very easily. -Please remove muddy, snowy or shoes with anything on them t\n", + "----------\n", + "No smoking and no pets. No parties. Names and ages of all guests is required for booking.\n", + "----------\n", + "Clean up and treat the home the way you'd like your home to be treated. No smoking.\n", + "----------\n", + "No smoking. No party. Clean.\n", + "----------\n", + "No smoking or pets.\n", + "----------\n", + "We will try to always treat you with loving kindness and respect, and we expect the same from our guests. We expect our guest to abstain from smoking and drinking in the room (or house in general).\n", + "----------\n", + "Respect yourself, respect others, clean up after yourself. No smoking or drinking in the apt. Late check in after 9 p.m. and before 9 A.m. is $50, lock out is $50. Thank you \n", + "----------\n", + "No smoking, no pets. Please be considerate of the neighbors and keep late night noise down. I'm vegetarian, so please don't cook meat in the house (storing it covered in the fridge is fine). If you use dishes, please wash them. Don't forget to return the key when you leave!\n", + "----------\n", + "Please remember that this is a residential building. The building rules, apartment occupancy restrictions, and the year-round tenants must be respected. There is no smoking allowed in the apartments and significant fees will apply if this rule is broken.\n", + "----------\n", + "We like quirt. So please dont hold party at night.\n", + "----------\n", + "- 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. Fee for smoking will be 10 times your total reservation cost. For example, your total reservation cost is $350. Fee for smoking on premises will be $3,500. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $23\n", + "----------\n", + "* No smoking indoors. * No pets * No loud/large parties. * Please clean up before checking out. Any major clean-up service required may be deducted from the deposit. * Guests staying longer than one week are responsible for keeping the space tidy. We provide cleaning supplies. * Additional guests permitted for an extra charge per person per night (see price table).\n", + "----------\n", + "We try hard to make our home lovely, and ask you to treat it with respect. The only other rules are no guests, pets, or smoking in the apartment.\n", + "----------\n", + "A residential building. Quiet is important. No smoking. No Pets.\n", + "----------\n", + "No smoking, no parties, no pets.\n", + "----------\n", + "Apartment has stairs, so its most appropriate for children 6 years or older. Smoking is allowed outside on the porch but not inside apartment. Cats are allowed, but not dogs as pets (noise consideration).\n", + "----------\n", + "No pets or shoes at home\n", + "----------\n", + "Please treat it like your own place and leave it the way you found it! Please clean up prior to leaving. No smoking indoors, no late night parties.\n", + "----------\n", + "No smoking or open flames permitted on the property. No drugs. No pets. Notify host of extra people ($10 charge per night per extra person).\n", + "----------\n", + "Dear Guests, This is not an inn or a business – you are renting our family home. The signer on the rental agreement is personally liable in the event that any property is damaged or left unclean. Please be respectful by following these house rules: 1. No smoking inside 2. Do not move any beds or other furniture 3. Be gentle with doors, screens, windows, and furniture 4. Do not burn candles or incense 5. Stay out of locked closets and/or areas 6. No pets 7. Clean up after yourself 8. Enjoy Yourself!\n", + "----------\n", + "Please feel free to use anything in the kitchen as needed, but please clean up after yourself. Please don't use metal utensils on the pots/pans as it can scratch the non-stick surface.\n", + "----------\n", + "Please don't eat the food in the fridge.\n", + "----------\n", + "No aloud music , no outside guests stay over night without owner's permission. No late night party or assembly in this residential unit. No activities forbidden by law of any kinds. No over night stay guest without permission and payment.\n", + "----------\n", + "Please leave your shoes in the entranceway. I will leave the house sparkly clean for you and hope that youll do the same for me. ;) If you are a smoker you are welcome to use either the back porch or roofdeck. There is an ashtray on the back porch. Please be considerate of neighbors with outdoor noise levels. Congrats! You get to be surrogate parents to the other residents of 9 mark st, Turtle and Froggy, my cats. Ill leave plenty of food for them but you are responsible for feeding them.... and they will thank you with lots of purring and snuggly lap time.\n", + "----------\n", + "No street shoes in the house, please, but especially not in the bedrooms. Kitchen privileges vary and can be negotiated with length of stay but for shorter stays the kitchen can be used for food storage, occasional light meal prep, eating, and tea and snacks. Check-in and check-out times are flexible all days except Sunday where check-out is by 11 a.m. Smokers are welcome to smoke outside.\n", + "----------\n", + "No pets No parties. No smoking\n", + "----------\n", + "Have fun and be respectful of others Pets are allowed after discussion as long as they are well trained and picked up after.\n", + "----------\n", + "No surprises. No parties. No smoking. No loading of extra guests. My office is in building so I will know who is there.\n", + "----------\n", + "- No loud music after 9 pm please\n", + "----------\n", + "Absolutely no smoking and no pets. The place is decorated with taste, please be respectful. I will leave the place as is and expect you to live here as you are in your own home. I will leave instructions for Cable, Wireless and some of the funky kitchen equipments. Please enjoy coffee in the morning, make yourself lunch or diner and use utensils. \n", + "----------\n", + "5 guest maximum. Smoking isn't permitted and unfortunately neither are pets. Sorry. Quiet hours 9p-8a.\n", + "----------\n", + "This is a non smoking house. Quiet hours are from 10pm until 8am. Cars must be parked within fence so as not to block neighbors driveway. One parking spot only per room. Please don't use the kitchen for cooking as cleanliness becomes difficult to maintain with the velocity of guests that we host. Please place dirty dishes in the dishwasher unless it’s full of clean dishes!\n", + "----------\n", + "Check in time is 3pm. Check out is 11am. . Please call or text me if you are delayed in traffic..if you're travelling from the south towards Boston, expecially Friday afternoon. prepare for delays. *No smoking. Also, please do not smoke on door stoop in front of the house. The smoke makes its way into neighbors window. Also do not throw ciggarette butts into neighbors stairwell. If you need to have a smoke please take a walk.. thanks... *Please keep noise to minimum after 10 in the evening. *Please refrain from taking showers after 11pm. Please be considerate of those residing below you. *Apartment space is to be used by registered guests only. *No yelling out windows to people in street or in cars. This is a home not a frat house. *Please be considerate of others residing in the home during your stay. No pets Thank you...Joe\n", + "----------\n", + "A residential, quiet, small building. Non- smoking. No heavy drinking. No pets\n", + "----------\n", + "We live on the premises - two women, two dogs and a cat. We are a strictly NON-SMOKING household - this includes all smokeable substances. We tend to stay up late, so late arrivals to about 11 pm or so are OK. We can arrange for a later check-in via a key box, but we may not meet you in person until the next morning. Check-in is after 5 pm except by prior arrangement, and checkout is at 11 am promptly to allow time for the unit to be cleaned before the next guest. This is a quiet residential neighborhood so please, no parties or loud music. There is door from the 3rd floor onto the roof as a safety exit, but the rubber roof is very delicate. If you are tempted to walk out on the roof, please do so in your bare feet only. There is no railing for the roof. Under no circumstances may children access the roof. Thank you for not smoking any substance on the roof, on the deck or anywhere on the premises.\n", + "----------\n", + "Please always be courteous to my neighbors and keep down noise, especially in hallways. I really love living here and want it to stay that way. :)\n", + "----------\n", + "Please do not smoke. Be respectful of other guests.\n", + "----------\n", + "To keep house and house items in the same condition that they were when guests arrived\n", + "----------\n", + "Free WiFi! * No smoking anywhere on property. *No out-door shoes to be worn in the house. We ask that guests be willing to be considerate and quiet while coming and going from 10 pm to 6 am, please. This is a non-smoking property. There is no smoking anywhere on the property, inside nor on the porch. We also ask guests to bring inside shoes/slippers. Thank you. As this is our home, we request you not to move the furniture nor our belongings around and to treat our home as you would wish your home to be treated. Thank you.\n", + "----------\n", + "1. Only the ORIGINAL OCCUPANTS at the time of booking are allowed to stay in the property overnight and secondly no additional guest will be brought in without prior authorization. 2. CHECK IN/OUT: We typically follow the standard check in and out times (4 p.m., 11 p.m. respectively) however we're flexible and can accommodate your needs as long as it doesn't impact another renter if you have special check-in or out times. There is a keypad lock and each renter will receive their own passcode so you can come and go as you please and not worry about keys or timing. 3. Excessive NOISE & DISTURBANCES, specifically on work nights (Sunday thru Thursday) are to be kept to a minimum after 10 pm. On other nights of the week we ask that noise is kept to a controlled, restrained and respectable level do to the nature of this being a shared space. 4. SMOKING is not permitted in any of the inside premises, this includes the guest room, condo unit and building. You may smoke outside in the street or\n", + "----------\n", + "No smoking in house. No Pets No parties or hosting events. No recreational drugs. Please clean up after yourself. Please take off shoes and leave them in the shoe cabinet before entering the apartment. Guests may be asked to leave Immediately if partying, hosting events, or bringing pets.\n", + "----------\n", + "Please be gentle with the furniture and appliances. Absolutely no smoking allowed. No parties please.\n", + "----------\n", + "We are a relaxed household, but expect guests to use common sense and to respect our home. Smoking is not permitted in any part of the property, including common living spaces, the porch, bedroom and bedroom window. Anyone found to have smoked will be asked to leave immediately. When using the kitchen, guests agree to: - Wash up all dishes, cutlery, pots and pans after use - Clean work surfaces and table - Return all utensils to their origin place - Put all rubbish in the trash Shower & Toilet: - Please leave the shower and toilet in a clean, hygienic and fresh state. Bedroom: - Please refrain from playing music prior to 9am and after 8pm. Bikes: - There are two bikes available to use at your own risk. Guests outside of AirBnB are not permitted to stay in the apartment.\n", + "----------\n", + "NO Smoking Pets Allowed with a $375 non refundable pet fee.\n", + "----------\n", + "- One of the bedroom closets is not accessible to guests - Please be mindful of the neighbors, quiet time after 10PM - Check-out time is at 11AM on the day of your departure. - If you're going to smoke outside, please clean up after yourself and do not throw cigarette butts on the ground - The refrigerator and cabinets are available for your use but please do not take food items unless explicitly permitted\n", + "----------\n", + "No smoking, no loud parties. I would consider a pet, for an extra fee.\n", + "----------\n", + "Please be respectful of my things! I have a lot of stuff that I have collected over the years. Absolutely NO smoking. This is a really relaxing space and the neighbors are all really cool. -Pets are allowed -If you cook, please clean after yourself and make proper use of the garbage disposal.\n", + "----------\n", + "Close the elevator gate behind you!\n", + "----------\n", + "Check in/out: We can meet outside of my building at check-in between 4:00pm-6:00pm. If you can give me an estimated ETA, that would be helpful! Please leave your keys in the studio when you check-out Thursday afternoon. I am very flexible with check-out between 12:00pm-3:00pm. Go up 1 flight of stairs, and it will be the first door to the right. The door locks automatically, but there is a deadbolt and lock. You do not have to deadbolt the door every time you leave. TV – Press and hold the “All On” button to turn on TV Towels are on the top shelf in the bathroom, and the bed is all set! I do have a portable A/C in the second window on the right. Since I live on the second floor, it does not get too warm, but if you do need it, please remember to turn it off if you are leaving the building. Trash/recycling days are Sundays and Thursdays. There’s trash bags on the third shelf in the bathroom closet to the left. When you are checking out on Thursday, please take the trash out r\n", + "----------\n", + "Our Herbivorian House manual with detailed rules and helpful information is present in each apartment. The apartment must be left as clean as it was found, (especially the kitchen and bathroom) cleaning supplies are present in the apartment. (we are responsible for washing sheets and towels) If you would rather not clean up after yourself please include an extra $100.00 for the cleaning Help. No loud or late night noises or parties. No additional guests No smoking. No red meat or strong smelling meats shall be cooked (the smell disturbs our primarily vegetarian guests) Pleasant behavior to all other building residents. Any questions assistance needed?.. please contact us, we are happy to help.\n", + "----------\n", + "A list of house details, rules and local information will be provided upon arrival.\n", + "----------\n", + "Residential building so no loud gatherings No noise after 11 Basically treat it like its your place No cleaning fee charged so please leave kitchen like you found it\n", + "----------\n", + "No smoking in the bedroom. Smoking is allowed on the back porch.\n", + "----------\n", + "No smoking. No pets No visitors Cleaning of rooms & toilets will be down by guest after use and at check out. A surcharge of $50 will be imposed if guests smoke within the property. Sanitary pads are not allowed in the WC. Kitchen utensils are to be cleaned after use always. If you lose the keys $20 surcharge will be imposed for replacement. \n", + "----------\n", + "Please keep as clean as you can. Please no shoes in the house. Absolutely no smoking. Also, the building association does not allow pets.\n", + "----------\n", + "Since I go to bed early (I'm a public school teacher), I ask that you keep noise down after 9:30 p.m. on weeknights. The family upstairs would appreciate this as well. Also please let me know if you're planning to have anyone else come over. No pets, no smoking/drugs, be clean, etc.\n", + "----------\n", + "This building is home to quiet professionals; please be respectful of neighbors and be mindful of noise.\n", + "----------\n", + "NO SMOKING INSIDE! PLEASE I BEG YOU _ DO NOT DO THAT!!!!! I also only charge a $10 cleaning fee because I expect you to leave the place the way you found it. I clean the sheets, bathroom, and a general whipe down with Clorox whipes so please treat my home as if it is your own :)\n", + "----------\n", + "This is a home, not a hotel. Conservation is important. Please do not waste water or electricity. We recycle, reuse, compost and minimize waste. Clean up after yourself and put things away It's a family friendly, urban neighborhood with incidents of crime; please lock doors and windows. Basic self-awareness of the impact of your choices. Communication is important. Let me know what you need. The dining area is not a work space. There is a desk and chaise lounge in guest room that should be used for workspace. I have a study/living room which is not meant for guests.\n", + "----------\n", + "Respect yourself, Respect others. Clean up after yourself , no smoking in the house, no partying. Late check in after 9 pm and before 9 am is $50, lock out is $50 thank you \n", + "----------\n", + "No smoking inside. Please go in our backyard if you need to smoke. No pets.\n", + "----------\n", + "Please just keep your area reasonably clean and pick up after yourself. Nothing special. All the kitchen appliances that are there are available for your use. Just wash your dishes and pick up any trash you have. If anything gets dirty, no need to be embarrassed. Just let us know so we can take care of it as soon as possible. Also no smoking and no loud parties. Come, enjoy yourself and have fun.\n", + "----------\n", + "The three main lights of the apartment are on the right of the front entrance. The far light is for the bed area, the middle one (the black tab you have to flick up and down) is for the main area, and the near switch is for the light right over you as you step in. The light in the bathroom is by the storage unit. The light in the kitchen is to your left right as you walk into it.\n", + "----------\n", + "NO PETS. NO SMOKING. NO PARTIES. No recreational drugs. No open flames. No excess noise after 10:00 pm. Avoid disturbing neighbors. NO PETS. If a pet is found on the premise, a pet surcharge of $300 will be applied. You will be asked to leave immediately and will forfeit your security deposit if an animal is on the property without permission of owner. NO SMOKING PLEASE. A $500 cleaning fee will be deducted from your deposit if smoking occurs in the unit. This is a NO PARTY house. Parties, loud get-togethers, or gatherings are not allowed because of neighbor issues, and possible damage to property. If a party, loud gathering, or loud disturbance does occur, or if neighbors or other guests call for a loud disturbance, you will forfeit your security deposit and will be evicted immediately. Please Note: Guests must provide their own toiletries/cleaning supplies/paper products. We will have a starter kit of toiletries and cleaning supplies at the house, but you will need to rep\n", + "----------\n", + "No loud noises No parties\n", + "----------\n", + "No pets, no smoking. Please remove your shoes upon entering. We have very sensitive floors and would like to keep them looking new ;)\n", + "----------\n", + "No smoking of any kind allowed in house or on property at any time. Quiet and respectful of our neighbors.\n", + "----------\n", + "* No smoking * No pets * No loud music\n", + "----------\n", + "Please know this is my 2 bedroom condo that I live in full time. I am happy to allow access to the kitchen, living room, balcony/grill with the understanding that you will respect my space and belongings. Please clean up after yourselves- dishes in dishwasher if used, take out trash before leaving, ect.. Also, please be respectful of the other tenants in the building. No loud music or parties.\n", + "----------\n", + "Check-in time can sometimes be flexible and we can provide advice for luggage storage if needed. No smokers please. Please do not spray perfumes, colognes or after-shaves as Nina has allergies. Thanks for understanding. No eating in the bedroom. Enjoy your stay!\n", + "----------\n", + "No shoes inside the house\n", + "----------\n", + "8 guest maximum. Smoking isn't permitted and unfortunately neither are pets. Sorry. Quiet hours 9p-8a.\n", + "----------\n", + "Please don't be loud or disrespectful, this is a fun neighborhood, but also a family neighborhood. If you use any food/Beverage/Alcohol, please replace.\n", + "----------\n", + "please be quiet and respectful of the other renters\n", + "----------\n", + "- The price is based on double occupancy. $50. per person per night. - Check prices with host before booking - The price is based on double occupancy $300 per person per week. And $1000 monthly per person. - Single room $64 per night. Weekly, $350. Monthly $1203\n", + "----------\n", + "No smoking please, no pets to protect our hardwood floors. Children under 18 to be supervised at all times. Each bedroom accommodates 2 people\n", + "----------\n", + "Please clean up before checking out. Any major clean-up service required may be deducted from the deposit. No Loud / Large Parties . This is a smoke free enviroment. very quiet building with friendly neighbors\n", + "----------\n", + "Please, no smoking, and treat our home like your home.\n", + "----------\n", + "No smoking. No parties. Please be respectful of our neighbors.\n", + "----------\n", + "Please remember that this is a residential building. All building rules, hotel occupancy restrictions, and year-round tenants must be respected.\n", + "----------\n", + "Our home is well cared for and loved. We would love to invite people who respect personal spaces and enjoy an exotic looking home. Please note that our home is a non-smoking home.\n", + "----------\n", + "We would love to hear a bit about you and what brings you to Boston before accepting any reservations. Please make sure your profile is filled out (including a clear picture of you), and your online and offline verifications are complete before you submit a reservation request so we have an idea of who you are. Please be respectful of my home and other guests - clean up after yourself, keep your toiletries neat and organized in the shared bathroom, no smoking indoors, and please remove your shoes upon entering. I have coffee and tea for guests, and will leave out some basic breakfast items like snack bars and fresh fruit, however if you are planning on using the kitchen during your stay I ask that you provide your own food and drink. Please do not bring additional guests home without express prior permission from the host. Sorry, no pets allowed.\n", + "----------\n", + "No smoking and no pets allowed.\n", + "----------\n", + "No smoking. No pets. Children under 18 to be supervised at all times. More than 6 people can be accommodated if communicated in advance. Please be respectful on the roof - quiet time after 10pm would be greatly appreciated. This is a historic Victorian on three levels. There is no elevator in the building or inside so please note if you have mobility issues. Please strip all beds, except for mattress cover and place in 3rd floor bathroom along with all dirty/wet towels. Please wash and put away all dishes. If necessary, make sure the dishwasher is loaded and started before you leave. Laundry is in the basement, if locked, please use the front door key. Please ALWAYS leave your keys before you leave. Lock the door on your way out by turning the button on the inside lock. Please ensure all trash is put in the designated recycle and landfill trash barrels. There are extra bags in the kitchen closet.\n", + "----------\n", + "House Rules Please treat my home as if it were your own. Be respectful of me, my guests, and anyone you may encounter in the building. No smoking (indoors or on the balcony). Please clean up after yourself, especially in the bathroom. Upon leaving, please put your trash in the chute and strip the linens of the bed. If you have any questions, please ask me. No parties or loud noises in the unit after 10 pm but the club lounge is 24 hours and you are welcome to relax and socialize on the 20th (URL HIDDEN) long as your respectful and not overly loud. PLEASE ALSO BE MINDFUL OF NEIGHBORS.\n", + "----------\n", + "No unexpected night guests, please No smoke inside the house No drugs . No loud music after 10pm extra quiet Keep your room and common area clean,No food and drink on the room Clean behind yourself in the bathroom, kitchen and rooms All visitors of houseguest must leave by a decent hour No violence No pets Check out please leave key on the kitchen table and close doors by manual lock\n", + "----------\n", + "just respect people in the other 5 apartments.\n", + "----------\n", + "Pets are allowed but no smoking inside the house. You're welcome to smoke outside. Quiet building overall, respect the other tenants and please no large parties.\n", + "----------\n", + "Please clean up after yourselves when leaving. Minimal noise is appreciated given the close neighbors. Thanks!\n", + "----------\n", + "Never any smoking of any kind in the apartment or building! Leave the apartment in a respectful state of tidiness upon leaving. Wet towels should be hung in the shower/tub, trash taken out. Please check first about bringing pets (typically discouraged). Please keep reasonably quiet! Sheets, towels and other cleaning are done by me. I do these things at different times. Always before dinner time (or before you arrive it's a really late arrival). Probably before 3pm, during the school year at about 1pm usually. In the dead of winter, esp. if there is a lot of snow there may be delays. If you have really specific needs, you should speak up ahead of time. NOTE although i do try to keep the apartments stocked with toilet paper and soap i do not make additional trips to the apartments to replenish them. Try to sort out recycling, take out recycling/ trash to the alley bins if you can. Do not leave trash laying around, especially outside. Please communicate, communicate, communicate. \n", + "----------\n", + "No smoking, no pets. Rest of the house is a mix of classical and jazz musicians, so bring your instrument if you want to jam.\n", + "----------\n", + "HELP US AVOID MAKE-UP STAINS: Dear Guest, For make-up removal, if needed, kindly use the small face towels, and not our large white towels. Thanks for being considerate!\n", + "----------\n", + "Respect yourself, respect other, clean up after yourself. Late check in after 9 p.m. and before 9 A.m. is $50, lock out is $50. No smoking, drinking in the house . Thank you \n", + "----------\n", + "We are looking for quiet and respectful guests given that we have neighbors with young children. As a result, I would ask to please keep noise levels in the house at a minimum between 9pm and 8am (you can still cook and watch TV, etc. just don't go around moving furniture :)\n", + "----------\n", + "12 nights minimum stay, no smoking or pets.\n", + "----------\n", + "Please Note: This unit was just gut-renovated in May 2015 and it comfortably accommodates 2 couples. No smoking, no pets, no parties, and must be 25 years old to book. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left next to the trash can (additional bags are under the sink) - All windows are closed and locked - If used, the air mattresses are deflated and put away (please leave used linens for the air mattresses on the floor) - If furniture was moved during your stay, please return to its original location Please be mindful to our neighbors in the building; quiet hours after 10pm. Please be considerate of our next guests who will be staying after you, if something is broken or needs fixing, please let me know, as I have an arsenal of tools and enjoy fixing things.\n", + "----------\n", + "Available Upon Arrival\n", + "----------\n", + "The room is strictly non-smoking, however, you can smoke in the back porch. No drugs! No visitors without previous authorization. We do prefer adults since the house is not \"child proof\" and, we are full time workers. Babies OK! Please, keep in mind that, this is not a hotel. The room should be left in good condition and picked up when you leave. Longer term renters use of kitchen and other facilities can be arranged.\n", + "----------\n", + "NO loud parties. NO smoking in the condo, hallways, stairwells, or even on the front steps! Building occupants are allergic to smoke! This is ideal for ONE person, comfortable queen sized bed. Longer Bookings Preferred(Per Condo By-Laws and neighbors) preferred. We do not respond to requests for only a few nights stay! Thanks.\n", + "----------\n", + "- No shoes in apartment - No parties - Enjoy yourself!\n", + "----------\n", + "This is a quiet, long-standing residential community. Guests need to be respectful and gentle. \n", + "----------\n", + "It is a professional building we ask there be no parties or loud noise\n", + "----------\n", + "Fresh linens and towels are provided. No smoking. No pets. If cannot check out by 11:00 am, let us know. Please be respectful of our neighbors and keep the noise level down. Please clean and keep the place neat. We will take care of trash and linens when we return.\n", + "----------\n", + "Unlike most other Airbnb listings, what we do here is long-term rentals by the year, or by the semester. We try to keep the atmosphere conducive to studying and resting and a couple of house-rules are in place to this end. 1. Towels and linens (sheets, blankets, and pillows) are NOT provided. The bed is twin size. 2. No smoking on the premises. 3. No loud music or TV etc. 4. Only for one person (no couples, no visitors). We seldom have visitors, let alone overnight guests. We know this will be a major turn-off to many people, but we believe we can find a like-minded roommate who can have fun outside the house. 5. If you are not sure about your check-out date, you can reserve the minimum days and extend your stay at a discounted rate. 6. Check-in time has to be coordinated at least 48 hours ahead. On arrival, a short registration process with a picture ID is needed in exchange for keys and wifi access. 7. Inside the apartment, we take off our outside shoes. So if you bring your \n", + "----------\n", + "- Weekly and monthly prices are much lower - Please verify all prices with Angel before booking. - The price is based on double occupancy. $50. per person per night. - Single rooms $64. per night per person\n", + "----------\n", + "- Please Note: This unit was just renovated in 2016 and it comfortably accommodates four guests, but up to 6 guests are permitted if you so desire (two guests in each bedroom and 2 guests on the two available twin size air mattresses). Please request an air mattress(es) (if needed) when making a reservation. No smoking, no pets, no parties, and must be 25 years old to book. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left next to the trash can (additional bags are under the sink) - All windows are closed and locked - If used, the air mattresses are deflated and put away (please leave used linens for the air mattresses on the floor) - If furniture was moved during your stay, please return to its original location Please be mindful to our neighbors in the building, quiet hours after 10pm is not a must, but a nice gesture. Please be considerate of our next guests who will be staying a\n", + "----------\n", + "smoke-free campus.\n", + "----------\n", + "The cleaning fee only applies to stays under 4 nights. 4 nights or more it is included.\n", + "----------\n", + "• Check-in time is 3PM. • Check-out time 12PM No loud parties. Please leave the apartment as you found it\n", + "----------\n", + "No smoking indoors\n", + "----------\n", + "Pet friendly but please confirm with me if the pet you are planning on bringing with you is OK. I have a cute and quiet mixed chihuahua. I could accept more guests (for an extra fee) but this also needs to be confirmed beforehand. Also friends traveling together could sleep in separate beds for an extra fee (the second bed is either a sofa bed or inflatable bed). Smoking is only allowed on the porch.\n", + "----------\n", + "Please try to make less noise when talking, moving suitcases in your room as the house has very little sound barrier. The stairs makes a lot of noise when people walk fast, please be considered. The guest must be a non-smoker and his/her clothes should not smell of smoke. No smoking inside/outside. Use of cologne/perfume/other product with noticeable scent/ sprays are not allowed in or out of the house. Trash has to be separated from recycle. No trash may be put in any containers outside of the house. If you unable to separate the trash, at least, please be considered and don't mix recycles with food or personal product waist. Single use plastic bags should not be taking from the store: you will get your personal fordable reusable bag and may keep it. Please use other resources conservatively and be conscience about the impact on the environment. We all share this planet. Don't give this mailing address to anyone before confirming by email First offense address sharing $200, and every\n", + "----------\n", + "House Rules: We are seeking responsible and respectful guests for our property, as this is our home when you are not staying. Please do not smoke in the apartment, no pets and no parties. Please be mindful to our neighbors in the building; quiet hours after 10pm. Check In/ Check Out: We are flexible regarding to check in time, but please notice us ahead of time to make sure your check in goes smoothly. We would like to be home to greet you, however we maybe away or at work. If so, we will leave you the keys for self check in. Please refer check out time as 11AM and kindly inquire if you require a different check out time. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left in the trash can on the back porch (additional bags are under the sink if needed) - All windows are closed - If furniture was moved during your stay, please return to its original location Strict cancellation polici\n", + "----------\n", + "No smoking on premises. no unnecessary noise.\n", + "----------\n", + "Some of these rules may sound silly but they have been written because we have seen some silly behavior ; ) • Please only leave with what you came with. Our towels, sheets, shampoo, Q tips, cotton pads, cups, plates, decorative items, trash bags, toilet paper, TV remotes, etc are not parting gifts or favors : ) Use what you need while you are here and leave the rest behind please. • We love a good party but not in our ABnB unit unless its discussed well in advance. Please no parties, gatherings or events over the registered number of guests! If you would like to have friends over for a gathering please let us know! We understand you are on vacation but ask that late night drunken excursions choose another property. We expect quiet hours after 10 PM and until 6:30 AM. We will commit to the same respect upstairs for you. • Please come and go quietly. We will do the same. Although we do have 2 children and sometimes they \"forget\" to use their quiet voices. • Please keep pass code and\n", + "----------\n", + "Please no smoking in the house. We are quiet folks who need to get up early for work/school. On the weekends we're very busy usually but enjoy sharing morning coffee/tea with guests and offering our ideas for how to spend the day. The house is very clean but comfortable. \n", + "----------\n", + "Keep the apartment clean\n", + "----------\n", + "No smoking. No loud music. Please leave the place as you found it! Put your dirty linens in the laundry basket and please be respectful of our neighbors. Please run the dishwasher with your dirty dishes when you leave. Please do not put the trash out on curb or the trash cans in the back yard. Our cleaning person will remove the trash from the unit. Do tie up any trash bags if there are food items in the garbage though.\n", + "----------\n", + "Any additional guests must get prior approval.\n", + "----------\n", + "No smoking in the apartment, in the building or outside of the building. We ask that you be quiet and respectful of our neighbors.\n", + "----------\n", + "Overall please treat the apartment as you would you own home, Keeping it as clean and tidy as you found it. Please clean up before checking out. Any major clean-up service required may be deducted from the deposit. No Loud / Large Parties. Quiet hours are 11pm till 9am Please include the number of people who will be staying before you reserve this apartment. No extra guests other than the maximum 2 allowed who booked All smoking should be done outside, as this is a smoke free environment.\n", + "----------\n", + "Smoking is forbidden in the apartment and on the rooftop.\n", + "----------\n", + "We expect guests to make themselves at home in the condo but treat it with respect and care. This is not a party pad but we want you to enjoy yourself while here. Absolutely no smoking/candles/incense in apartment. There is a back deck that you have exclusive use of during your stay. Pets must be crated when left in apt on own. For relief Please walk pet in the neighborhood, not in the yard. Maximum 4 guests. We live next door.\n", + "----------\n", + "No pets, no smoking inside.\n", + "----------\n", + "No smoking, please, and no drugs.\n", + "----------\n", + "To treat our home with respect. No smoking inside but feel free to use the front porch. The marble in the bathroom is very easily stained. We ask that you limit drinking coffee, red wine, etc to the bedroom.\n", + "----------\n", + "We like to keep things quiet and peaceful and expect that our guests will be respectful of our space and belongings. No smoking, no illegal substances.\n", + "----------\n", + "Owners live in the building so please be respectful - no parties. No smoking is permitted in the building.\n", + "----------\n", + "No cigarette smoking inside the house. Happy to have you on the porch or yard. 420 friendly.\n", + "----------\n", + "Check-in is 2:00 pm, and checkout 11:00 am. You may bring bags in before check in time or leave it to pick up later. Let me know to arrange it. After reservation please send me your arrival and departure time for logistics NO shoes inside Keep the volume low before 8am and after 11pm No laundry after before 9am and after 8pm No dishes unwashed Turn off the lights and AC when you leave the house Trash out from the house before you leave ( BLUE BOX recycling, gray one for food) Please respect this rules and you get the full refund of security deposit\n", + "----------\n", + "No pets, no children, no smoking (landlord's rules, not ours - sorry!). Also, it is a pretty quiet building and the owners feel strongly about keeping it this way, so please refrain from any loud music/shouting/partying. Finally, we are happy to take care of stripping/washing the sheets, but would appreciate it if you would clean up any dishes you use during your stay. Other than that, have fun!\n", + "----------\n", + "- Thanks for not smoking and leaving your pets at home! Thanks for keeping the house locked. Thanks for not throwing big parties, small dinner parties or bbq is fine. And... all of the usual stuff that is just good common sense like returning the apartment to the way it looked when you arrived. At the end of your stay, please strip the beds and put the sheets on the floor next to stairs. Towels can be put with the sheets. Trash and recycling pick up is on Thursday mornings. If you are staying through a Thursday, please put your garbage and recycling outside in the appropriate barrels Wednesday night or by 7:00 am on Thursdays. THANKS!\n", + "----------\n", + "Please do not try and fit more than 4 occupants in the apartment overnight. There is a queen bed in the bedroom and a full-sized pullout couch in the living room that can accommodate 1-2 people. BUILDING RULES (As enforced by the property owners): - On Wednesday and Sunday night please leave your garbage in sealed garbage or grocery bags outside of the apartment door. It will be picked up early the next morning. - Please do not leave any garbage or personal items in the hallway or foyer, or you will be charged $100 by the building management. - There are 3 bay windows in the living room, however only the far right one opens. The other two have been nailed shut by the property owners because of the safety risk that they pose when they're opened. Please do not try and open them, as it will damage the window frames. - The fire escape is strictly off-limits. - Please keep the noise level to a minimum and be be respectful of your neighbours. - Drug possession and usage are prohibited in \n", + "----------\n", + "PARKING Overnight and weekends, you can park on the street right in front of the house (please DO NOT use the neighbor's driveway). During weekday commuting hours, you can park on Linwood Street. Street cleaning alternates from one side to the other on Tuesday mornings, so please park on the appropriate side if you're going to leave your car - the signage is good. KITCHEN The occasional coffee mug and pot is fine to leave behind in the sink on your dash to the airport, but we expect that you'll restore dishes and cookware to their originally clean state after use. WIFI The password is basket4210baked NO SMOKING INSIDE Feel free to light up outside, but please dispose of butts properly. QUIET PLEASE The apartment is one of three in the building - the other two are occupied by professional folks who are respectful of their neighbors and the tranquility of the neighborhood. We expect they'll be treated in kind. HEATING/COOLING Please turn a/c off when not in the apartment. The heat run\n", + "----------\n", + "All guests are expected to be respectful and mindful of shared spaces, including bathroom, kitchen, and TV room. This includes cleaning up after you and your group in all shared areas. Absolutely no smoking. Guests arriving or returning after 9:00pm must maintain a courteous volume in consideration of other guests. Pets are welcome! If you have a pet and use the backyard, please clean up after your pet.\n", + "----------\n", + "- 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. Fee for smoking will be 10 times your total reservation cost. For example, your total reservation cost is $350. Fee for smoking on premises will be $3,500. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $18\n", + "----------\n", + "Please! No parties, no pets, no smoking, no illegal downloading from the Internet.\n", + "----------\n", + "This is a non-smoking unit.\n", + "----------\n", + "This is a no-smoking apartment. If you do smoke outside, please dispose of the cigarettes properly. No pets are allowed.\n", + "----------\n", + "- Be respectful, we are opening our home to you. - Clean up after yourself. - Be mindful of the neighbors and our busy work schedule. - If you have any questions, please ask, we are very friendly people. - Enjoy your stay!\n", + "----------\n", + "A few items to keep costs low and accommodations comfortable: • Only guests included in the booking are allowed in the apartment. • No smoking in/near the apartment. • No shoes in the apartment. Slippers are provided. • Clean up after yourself and leave the apartment as you found it. • Be mindful of neighbors and other guests. • Turn off the lights when you're not in the room. • Tell me how I can help you enjoy your stay!\n", + "----------\n", + "* If you are booking a room, you must be the person staying in room. DO NOT book a room for somebody else!* *ALSO, please only book if you have a face photo in your profile!* This is a residential building, with professionals living throughout. Being respectful is a must! No loud music, No smoking and pets are NOT allowed in the building. Also, only guests listed on the booking are allowed in this house. Strangers, friends and family members are not allowed inside the house. For your safety, and mine. :) Lost keys will result in a $50 fee to replace the locks in the house.\n", + "----------\n", + "No smoking and no pets, no parties.\n", + "----------\n", + "- I've got a parking space that I can rent to you separately for $20 a night\n", + "----------\n", + "- No Smoking In the House. There is a back porch accessible through the kitchen where you can smoke. - We try to keep the house very clean and would like to ask you to please remove your shoes when entering the house so that dirt doesn't trek around the house. There is a shoe cabinet right by the entrance where you can store your shoes. Some slippers will also be provided and can be found inside the shoe cabinet. - Please clean after yourself after you use the bathroom. It is a shared bathroom. The same goes for the kitchen. \n", + "----------\n", + "1. No damage to the house or furniture 2. No Smoking, No Pets, No Drugs 3. No more sleepover people then you booked 4. Keep quiet after 11:00 PM 5. Be respectful to neighbors 6. Keep the kitchen clean after used 7. Keep the bathroom clean after used 8. Check-in: 3PM, Check-out: 11:00AM\n", + "----------\n", + "This is a smoke-free house. Otherwise, we just ask you to be respectful and considerate of others.\n", + "----------\n", + "I expect them to come and go quietly and to let me know their schedule as soon as they know it. During the week people need to check in before 8AM or after 6PM\n", + "----------\n", + "Guests are expected to be respectful, kind, neat, and reasonably quiet. Loud noise and heavy footsteps do travel from the second floor to the downstairs neighbors, so please be nice and don't stomp or yell. No open flames and absolutely no smoking. Be respectful of what is in the house. Do not invite over others who are not in the plan. Thank you! \n", + "----------\n", + "I expect guests to be neat, reasonably quiet and respectful especially when using shared spaces of my home. Please no pets or smoking on the property. Before booking, please take care to thoroughly complete your profile, including a photo. I live alone and like to have a feel for who my guests are before welcoming them into my home. The apartment is open to Airbnb guests only. No overnight guests please.\n", + "----------\n", + "No disturbance When talking on the phone, please do it in your room with door closed Please walk, don't run the stairs Close all doors gently please Recycling/trash put in separate bags (provided) Guest confirms he/she is a non-smoker No smoking anywhere in or out of the house No perfume/cologne, scented laundry detergent allowed Unscented product available No guests/visitors any time, no shared rooms (one person per room) Guests will be liable for any damages they cause Very light kitchen use Please conserve natural resources Stove cooking is not possible Misrepresentation will result in cancellation at your expense\n", + "----------\n", + "Please be considerate of the other people residing in the house. This is a home not a frat house. Any bad behavior will result in you being asked to leave. No smoking at all in the house! . Please do not sit on door stoop in front of the house and smoke. The smoke flows into the next door neighbors window. They have small children. Please do not toss ciggarrette butts into the neighbors stairwell. If you need to smoke -please take a walk ..thanks.. Sorry no pets. Check in time is 3 P.M.- Check out is 11 A.M. These times may be flexible. Please let me know if your plans warrant different check in/check out times. I'm flexible. Only registered guests allowed to stay overnight in space. 'DO NOT PARK IN FRONT OF THE HYDRANT\" $100.00 FINE..\n", + "----------\n", + "Since this is our permanent residence and not just a house we own to rent out, we very much hope our guests will treat it as it were their own and be kind and respectful of the space and our personal property in the home. Please no parties or events and be aware that the upstairs neighbors have access to the backyard as that is shared space. Taking your shoes off in the house keeps the floors and carpets clean. Small, quiet pets will be considered upon request.\n", + "----------\n", + "Just treat the place like it is your own, not damaging anything, keeping it clean & organized, and not being loud. NO PARTIES! as this is a private residence. Other than that, enjoy everything in the house. NO SMOKING inside or outside the building!\n", + "----------\n", + "No loud music after 10:00PM. It is a safe neighborhood but please, keep doors locked for safety No smoking in the house (smoking is allowed on the front or back decks).\n", + "----------\n", + "- The apartment is 3 levels - the 2nd, 3rd, and 4th floors of the house. We kindly ask that guests only utilize the space available on the 3rd and 4th floor (+ roof deck).\n", + "----------\n", + "No smoking, no pets.\n", + "----------\n", + "There is no smoking in or immediately around the building. The building's quiet hours begin at 9pm. After this time it's very important that you not play music loudly, have noisy guests over, etc.\n", + "----------\n", + "We're flexible on check-in/checkout times\n", + "----------\n", + "All I ask is that you don't make too big a mess, don't smoke, don't break anything, and be respectful of my roommates/neighbors.\n", + "----------\n", + "This is a quiet and primarily owner occupied building, kindly be respectful of the neighbors...and please no smoking!\n", + "----------\n", + "Guests cannot wear shoes in the house.\n", + "----------\n", + "WHEN BOOKING, PLEASE PROVIDE THE FOLLOWING IN YOUR MESSAGE to me: - 1. Total number of guests (adults, children, babies)? Are there any elderly or children under 18? If so, what are their ages? - 2. Arrival Date AND Time of Check In? (Check In between 2 pm and 9 pm with some leniency) - 3. Departure Date (Check out before 12 pm/noon) - 4. Please tell me a little about yourselves and the purpose of your trip. - 5. What Other Needs or Special Requests or Extra Options (please read below for additional options and possible related additional fees). ------ PLEASE NOTE THE FOLLOWING BEFORE REQUESTING A BOOKING: * I will reply as soon as possible to let you know if my apartment will be available for ALL your needs. - 1. We are happy to host Friendly, Neat, Low-Maintainence Adults & Well-Behaved Children, as well as their well Behaved Pets. ---- All cookware and utensils in the kitchen are at your disposal. There will be water (brita) and basic condiments provided for you. We ask th\n", + "----------\n", + "As this is our personal living space, we request that there be no smoking indoors and that you treat our belongings with respect. Pets are allowed, provided they are well behaved and low shedding :) We own a dog (who will not be on premises during your stay), who does shed, although we will have the place cleaned prior to your arrival. However, anyone with potential allergies should be aware. If it would be possible, we would greatly appreciate if guests would provide water for our plants a couple of times during their stay. There are only 4 total and they are conveniently located right in the kitchen. Three are herb plants (basil, thyme and aloe) and you are welcome to use any while you are there!\n", + "----------\n", + "No parties, no smoking.\n", + "----------\n", + "Follow the Golden Rule of treating others (homes) as you'd like (your home) to be treated. Jamaica Plain is a neighborhood with a lot of families, so please no parties and maintain noise levels after 11 pm and before 7 am. Pets are okay, smoking is not.\n", + "----------\n", + "Absolutely no parties are permitted. The apartment is in a multi-unit building so guests must be respectful of other tenants in the building.\n", + "----------\n", + "No smoking (indoors or outside on the property). No pets. No parties. Prefer quiet professional singles or couples in town for work and/or tourism. No children. Please note that this is Alex's home (he lives there), so please be respectful by keeping noise down and cleaning up after yourselves.\n", + "----------\n", + "No drugs please.\n", + "----------\n", + "Hello there! Please only enter the front door of the building if I have let you in or you have been given the key beforehand. Please leave the apartment and its contents in the same condition you found it. Please no one in the building or apartment except the registered guests. This is a strict one. Thanks for understanding! Please no eating or drinking on the sofa. (Also, please hand wash any dishes used.) Please walk gently in the apartment and observe quiet hours of 8pm-10am. It is an old building and sound transfers easily. Definitely no smoking and/or any other \"substances\" on the premises. Sorry, none of the alcohol in the apartment is for guest consumption. Thank you for respecting the property and also my furnishings. This helps me offer nice things for consequent guests! Sorry for the litany of rules, but adhering to these will make everyone happy. I like to keep a calm & clean place. Thank you! Paul\n", + "----------\n", + "Please, no smoking inside the building or on the porches. Due to sensitivities, we ask that you not use perfume, cologne, or aerosol products in the house. No parties. No illegal drug use. We are an eco-friendly family and appreciate your help in recycling (bin in the kitchen) and turning off lights, fans, heating/AC, etc. when not in use. Please lock all doors of the building behind you. Common areas will be cleaned daily and your help in keeping them tidy is appreciated. (But please feel free to let us do your dishes!)\n", + "----------\n", + "Female first please. Please keep the space quiet and clean.\n", + "----------\n", + "Friendly pets allowed. Please don't let the cat out. Smoking allowed on balcony.\n", + "----------\n", + "Check-in is 2:00 pm, and checkout 11:00 am. You may bring bags in before check in time or leave it to pick up later. Let me know to arrange it. After reservation please send me your arrival and departure time for logistics Help yourself coffee or tea anytime NO shoes to the second floor Keep the volume low before 8am and after 10pm Close the doors gently No shower after 11:30pm No laundry after before 9am and after 8pm Keep the kitchen in a decent condition after your use Close the shower curtain well, no hair in the tub, no water around the sink on the sink there is a sponge you can use it to dry Turn off the light when you leave the room Trash out from the room BLUE BOX recycling Please respect this rules. Full refunded of security deposit in this case .\n", + "----------\n", + "I like my guests to enjoy my home as much as I do. So please feel to treat it like your home as long as you are respectful and clean up after yourself. No smoking or pets please.\n", + "----------\n", + "*No additional guest are to stay/visit besides pre-approved guests. *Please do not drink my wine.\n", + "----------\n", + "Pets are cool (just clean up after them!), smoking outside is allowed, and alcohol/coming home drunk is totally ok. If you drink our alcohol then please help replace it or chip in! Otherwise, we're pretty simple college guys who enjoy being social.\n", + "----------\n", + "68 Melrose House Rules *Be sure to contact us for key instructions* We request that you please be respectful of all furniture, appliances, and all other belongings within the apartment. Please make sure to turn off all lights and appliances, including A/C and Heat when you leave the apartment and follow the trash rules ~ every bit of saving helps us provide affordable and comfortable living space to everyone. Trash can be put outside in front of the building on the curb Sunday and Thursday nights at 5 PM or later it will be picked up early the following mornings. All insurance and liability including accidents - inside or outside the apartment - health, short-term cancellations and / or guest's belongings is the guest's responsibility. The entire building is non - smoking so please no smoking on the property or in any of the units. 62 Melrose General Information We offer digital cable TV, DVD and high speed Internet. We will send internet information in a separate email. For yo\n", + "----------\n", + "Please leave the apartment neat as you found it. Put your sheets and towels in the hamper in the guest closet. If you've prepared food and there are leftovers, be sure to place them in the trash. Better yet, bring the trash and recyclable items downstairs and put them into the appropriate containers in the driveway out back. Thank you, Deborah\n", + "----------\n", + "No pets, no smoking of any manner or tobacco products allowed. This is my home and I expect guests to treat it with the same respect and consideration as they would give their own homes.\n", + "----------\n", + "- No excess noise after 11pm. - No recreational drugs. - No open flames.\n", + "----------\n", + "Please no pets or smoking. The neighbors are a little on the older side, so quiet and discretion would be appreciated.\n", + "----------\n", + "We're always happy to welcome considerate and respectful guests into our home. To us this means picking up after yourself (dishes in the dishwasher, coats hung up), bringing your own food, enjoying our space quietly after 11PM, and letting us know what we can do to make your stay enjoyable. 1. Please make sure to keep your bedroom door and the door to the bathroom closed or our puppy will steal all of your socks/drag the toilet paper across the living room. 2. Feel free to use whatever you need: -cups are in the cabinet to the right of the sink -there are towels on your bed if you'd like to shower -the roofdeck is a great place to unwind after traveling- just push up on the handle (it's a little heavy). -feel free to put food in the refrigerator. -there is tea in the cabinet to the right of the stove. 3. Shoes off in the house please. 4. We try to keep the living room and common areas free of \"stuff\" and there's a decent sized closet in your room, but if you need more space let us k\n", + "----------\n", + "No smoking and no parties\n", + "----------\n", + "Don't make noise in apt after 10pm. keep doors locked after you leave apt, wash dishes within 24 hrs. No smoking, please. I only ask that you treat my home as you would treat your own! When leaving the apartment, please always lock the top lock on the door. Please shut off all the lights, AC unit, TV, etc. before you leave. If you open windows, please close and lock them before you leave the apartment. Please take your shoes off inside apartment Please stack the dishes in the dish rack to the left of the sink.\n", + "----------\n", + "This is a quiet building of professionals (no student renters allowed), so those looking for a place to host large parties, please consider other options.\n", + "----------\n", + "People live downstairs, so please don't walk around wearing hard shoes, be quiet on the stairway, and quiet down after 11:00. No candles in the apartment. Please carefully make sure the front door clicks shut when you come or go! Thank you!\n", + "----------\n", + "Please just don't be loud at night or in the morning, we are just one wall/ceiling away from neighbors. Also, just respect our things, wash dishes, keep it clean - the usual! - and everything will be peachy keen.\n", + "----------\n", + "No pets, no smoking, no parties. No guests not on the reservation. You are liable for any damage. Please do NOT move the furniture we've had damage in the past because of this. If you need to move anything for a reason please ask. We will give you access to Netflix. Please respect the account. Please report anything broken at the beginning of your reservation to avoid the loss of your security deposit. Clean all your dishes and clean up after yourself. Please keep the noise down.\n", + "----------\n", + "- Quiet time after 17\n", + "----------\n", + "SMOKING: Not allowed anywhere on the property! Violation of this rule WILL result in an added cleaning fee. DOORS: Doors to the condo and building are to remain CLOSED and LOCKED at all times. PARKING: If you need a space to park, please let me know immediately! I have one space available and it can accommodate 1-car only. The street is parking by permit only. You will be ticketed if you try to park there during the day (MON - FRI). There is a pay lot at the end of my street if you are traveling with two cars. The cost is under $10 a day. NOISE: Please be respectful of the community and my neighbors and keep noise levels to a minimum at all times. KITCHEN: Anything in the kitchen (spices, oils, things in the fridge, etc.) are yours to use. TOWELS & LINENS: The condo has plenty of towels and linens. Please be conscious of the environment and try to limit the amount of towels you use during your stay.\n", + "----------\n", + "- The price is based on double occupancy. $50. per person per night. - Check prices with host before booking - The price is based on double occupancy $300 per person per week. And $1000 monthly per person. - Single room $64 per night. Weekly, $350. Monthly $1204\n", + "----------\n", + "No other pets allowed. No smoking. We expect general respect for our house and things. No access to private bedrooms.\n", + "----------\n", + "You're welcome to enjoy all of the amenities of the space. I do ask that you keep your personal belongings in the bedroom area, so as to keep the common areas clean for all to enjoy. There's no curfew! Come and go as you like, but be respectful in the wee hours of the morning or night please. Liability Waiver: If you decide to stay here, you assume responsibility for yourself and your guests for personal injury and property loss/damage. You agree to indemnify/hold harmless the tenant (Christina Marie), landlord and property management company from any loss, liability, damage or cost incurred by you or your guests related to your stay at this apartment. By agreeing to stay here, you are giving up any rights to bring a legal action or assert a claim against the tentant/landlord/ property management.\n", + "----------\n", + "To enjoy, relax, feel safe and cozy. Also, keep the place clean and quiet in the evening.\n", + "----------\n", + "- Additional charge for extra guests - No Smoking! - No pets\n", + "----------\n", + "No smoking and no parties.\n", + "----------\n", + "Guests are to clean after themselves after bathroom, kitchen, dinning, bed rooms and living room use. No smoking is allowed in the apartment. No pets are allowed Keys are to be returned where designated post reservation stay. Any damages to the property or its contents must be reported immediately\n", + "----------\n", + "No smoking in condo or hallways of building. No parties. Well-behaved pets OK. Quiet and respectful of our neighbors.\n", + "----------\n", + "Can have friends but not parties. Ideal for students\n", + "----------\n", + "In order to provide a healthy, comfortable and safe environment, the following are the rules of my house. It is your responsibility to not only read these rules once, but to be aware of and follow all of them throughout your stay at my home. Most of what follows is common sense or common courtesy. The rules serve to protect you as a guest by helping ensure that the environment you find here is the one that I intended to create. Please keep in mind: You will be sharing common areas with other guests or residents, and thus the cleanliness of the common areas is far more dependent upon all guests cleaning up after themselves, than it is upon my once a week cleaning. Most guests do very well in keeping common areas clean! House rules: Please do not drag luggage up the front stairs. Please leave things as they are in your room: do not remove pictures from walls, don't move furniture around, and do not remove mattress protector from the mattress. Also, it should not be necessary to say, but\n", + "----------\n", + "Please be respectful of noise levels after 10pm.\n", + "----------\n", + "1) No Smoking in property!!! 2) Do not slam doors!!! Close lightly Please!!! 3) No Shoes in house (except slippers) 4) Quiet down AFTER 10PM.\n", + "----------\n", + "No drugs, no smoking, no pets (our dog is enough pet for us). Make sure the front door is shut securely when you come and go, as our dog Lucy likes to sneak out and explore when we're not looking! No additional guests or visitors without prior permission. If you'd like to have guests over please ask us first.\n", + "----------\n", + "Don't disturb neighbors. Don't break things or leave a mess. Enjoy.\n", + "----------\n", + "Smoke deck out back.\n", + "----------\n", + "Please no dirty dishes behind. Thank you\n", + "----------\n", + "-No smoking -No local guests -If you use the kitchen, please clean up after yourself. -I will leave maps/guides for your reference, but please do not remove anything from my home. -If you have any questions, please call or text me (phone number hidden). -Most importantly, enjoy yourself!\n", + "----------\n", + "Shoes-off home Respectful Friendly Quiet No smoking of any substance on the property No pets Leave things as they were found Clean up after yourself Reminder: Rest of apartment (kitchen or living room) not available to guests Guests may not have additional guests without clearing them with Celia or Jonathan.\n", + "----------\n", + "no smoking, no pet, keep clean\n", + "----------\n", + "- I work at home and prefer to rent to folks who are visiting Boston for business and professional reasons. Most of my guests are here to work in the Longwood Medical Area. I often rent to fourth-year medical students doing rotations at HMS, and to physicians and post-docs affiliated with other institutions in the LMA. - I have a dog and two cats, so please take care and don't leave the front door standing open. -Please, no guests. There are lots of pubs in the neighborhood if you want to meet friends.\n", + "----------\n", + "House rules: Guests agree to the following terms and conditions 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes, and parking passes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with Jordan or AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $125 per hour fee for unauthorized early checkin or late checkout. 20\n", + "----------\n", + "Be respectable, try to keep the place clean (no wearing shoes in the house!), and no wild parties, please! No smoking, please. I only ask that you treat my home as you would treat your own! When leaving the apartment, please always lock both locks on the door. Please shut off all the lights, air conditioner, TV, etc. before you leave. Please take your shoes off inside the apartment.\n", + "----------\n", + "This is a family property with an 86 year old living in the 2nd floor unit. I live in the first floor unit. This home is not suitable for party people etc. This is also a no smoking home both inside the house and on the front steps.\n", + "----------\n", + "Events and parties YES... but NON SMOKERS only and this is a \"quiet\" house -- so no bachelor parties, or large graduation parties. Check out is at 11am. The apartment is completely private as is the patio... The laundry room and mail room are both off the common foyer.. Your private foyer is down a flight of stairs leading to your apartment an the mechanical room. Please keep (SENSITIVE CONTENTS HIDDEN) TV, HULU, Blu Ray DVD and music at a reasonable level between 7am and 11pm. Maximum of two guests. It's not possible to bring in an air mattress. Sleeping in a car in the parking space is also not possible. -- No smoking, pets, or (loud) parties. 158 is a Quiet building w Quiet Zones.. suitable for professionals, work at home, study, research. There are events at Christmas and occasional meet-and-greets -- scheduled in the afternoon and early evening -- late night entertainment is easy at Sister Sorel, or 647 Tremont just steps away -- some restaurant's \n", + "----------\n", + "This listing is located in a residential area and so all the regular rules of living in a residential area apply. Please be kind to the neighbors - we know and love them! Please keep BBQs/outside activity to a minimum after 9 or 10PM.\n", + "----------\n", + "Just be respectful, clean, and quiet after 10:00PM!\n", + "----------\n", + "I feel very responsible and accountable for your needs and comfort while you stay at my home... I will go above and beyond for you! That being said -- I do not charge hotel pricing for a reason. Hotels allow for 24 hour on call service, if you lock yourself out or are having trouble with something... a hotel front desk can help immediately. Your $300 a night for a hotel in Boston covers that.... I am charging almost a 10th of that for this room. I have my own business, clients, and social obligations to attend to. If you lock yourself out or have some other issue, of course I will come help you, but its important to understand that it will not be immediate. I will do my best to get back to the house as quickly as possible. ***IMPORTANT** I'd rather save you all the money and trust you to be independent / responsible guests... than to charge you for my 24 hour support! So please -- keep your keys on hand and in sight, keep the room clean, and maintain healthy choices while in my space \n", + "----------\n", + "No kids, no pets, no smoking.\n", + "----------\n", + "We expect from you just to respect the basic rules: no smoking and being careful with the house furniture and things.\n", + "----------\n", + "Shoes-off home Respectful Friendly Quiet No smoking on the property Of course no drugs No pets Leave things as they were found Clean up after yourself\n", + "----------\n", + "You are more then welcome to explore the area the rules are just to enter quietly if you come back very late keys will be issue but returned at end of each stay.\n", + "----------\n", + "Just enjoy your stay! And while no smoking is allowed in the building, the stoop has ample seating and is recessed away enough from the street to provide space for a private burn. Towels will be provided for showering, and all utensils in the kitchen are at your disposal. If you have specific questions about activities close by, please send me a message and I'll try to provide as best an answer as possible.\n", + "----------\n", + "1. guest should do the dishes by themselves. 2. late check out will be charged $30 from your deposit.\n", + "----------\n", + "House quiet hours are from 10 pm to 8 am. We ask guests to simply be respectful and mindful that there are others living downstairs. We also ask guests to remember that although you will have your own private space, this is not a hotel or even a room for rent, it is a private home that we will be sharing. As such, we ask you to treat the apartment and its' contents as any guest would in a private home and to keep it clean and leave it as you find it. There are no overnight guests in our home other than those on the actual reservtion. If there is a last minute situation, please check with us first. There are no pets or smoking anywhere on the premises inside or out, or any other open flames.\n", + "----------\n", + "House Rules The house rules are an important part of staying in this condo. You will be sharing a living space with other guests and a high level of consideration, respect, communication and tolerance is expected from you. They are meant to make your stay more pleasant, to prevent conflicts and to protect the property of any damage. If you feel there is something that needs to be addressed and that is not covered in these rules, please make sure you communicate that to the host. 1. Toilet · The toilettes can only be used with toilet paper provided. Any other material disposed of will cause the plumbing system to back up and create drainage problems. No tissues, cotton balls, tampons, Q-tips cotton swabs or any kind of sanitary products are allowed down the toilets. · Any plumbing work due to clogged toilets will be charged to the guests. 2. Noise and Quiet Hours · Quiet hours are from 10pm until 7am. During quiet hours radios and stereos may be played at a level not to be heard\n", + "----------\n", + "No shoes in the house please - helps clean the house clean from dirt and germs. We don't charge a cleaning fee, so please leave the house in good shape. Thank You!\n", + "----------\n", + "No pets allowed (sadly!) and no smoking allowed.\n", + "----------\n", + "Please note that we are a no smoking environment, and pets are only accepted in certain room types that have direct access to the outside. Please call ahead to make arrangements. \n", + "----------\n", + "Please treat this apartment as you would your own home. Additionally, there are other tenants in the building, so please be respectful and keep the noise level low. While the apartment does have a fish, please no additional pets. This building is also a smoke free building\n", + "----------\n", + "NO Smoking. Pets allowed with non-refundable pet fee.\n", + "----------\n", + "This is two bedroom located in the heart of Brighton. It takes you to downtown by T within 20 minutes. The T is super close. The house rules are kind of very simple so please no smoking inside the house. No additional guest ($20 USD will be charged for per person if you have your guests) +Kitchen: If you cook, please clean up after yourself. I will provided everything like pans, pots, dishes, utensils, etc +Bathroom: I will be providing towels and shampoo. But no toothpaste and toothbrush. One more thing, time to check in is 3PM and check out time 12PM. Please shoes off in the house.\n", + "----------\n", + "This is our home and therefore we ask that you respect our things and realize this is a not a rental home or hotel where anything goes. No shoes inside, no parties, respect our neighbors, etc... Basically, we ask that you treat our home the way you would like us to treat yours were we to stay over! Also, we are a smoke-free household. If you do need to smoke, do so outside and dispose of butts properly. And please, no shoes since with a small children who pick things up of the floor, we need to minimize outside dirt being tracked in.\n", + "----------\n", + "No smoking. No pets. No parties without prior approval. Names and ages of all guests is required for booking.\n", + "----------\n", + "Please be respectful of other guests. Keep the common areas clean and pick up after your self. No loud music after 10:00PM. It is a safe neighborhood but please, keep doors locked for safety No smoking in the house (smoking is allowed on the front or back decks).\n", + "----------\n", + "This place is about enjoying good times and the views, great place to take it all in. This is not a good set-up for children ages 1-13.\n", + "----------\n", + "No Smoking and please clean dishes before departure.\n", + "----------\n", + "Relax and enjoy. Kitchen fully equipped. Linens and towels supplied. No smoking. No candles. And, sorry, but this is a place for one adult or a couple. Not suitable for kids.\n", + "----------\n", + "No smoking. No pets.\n", + "----------\n", + "Sorry, no smoking and no pets.\n", + "----------\n", + "- NO PETS! NO SMOKING ON PREMISES! NO PARTY! No \"DRUGS\"! - Keep the Place Clean at All Times! - Do Not Ask the \"Neighbors\" for anything. Ask Me!- - No Neighbors Interaction! - No \"Drugs\" Please!!! - No Noise! A printed house rule will be provided. Please be respectful to others when all rooms are booked. 10 AM Check-out and Check-in is between 12 PM (noon) - 3 PM. Late check in after 8 pm is $50, lock out is $50. Respect yourself, Respect others, clean up after yourself. No Smoking/drinking in apt. Thank You! Location Rules: The \"Exact Address Location Is Not Stockton St. It Is 2 Streets Away. It Is Not Disclosed For Security Reasons\" And Is Given Out 24 Hours Prior to Check-in. If This Is a Problem for You, Please STOP Here And Contact Other Hosts for Your Stay. This Is a Part Of My House Rules.\n", + "----------\n", + "Check-in is 2:00 pm, and checkout 11:00 am. You may bring bags in before check in time or leave it to pick up later. Let me know to arrange it. After reservation please send me your arrival and departure time for logistics Help yourself coffee or tea anytime NO shoes to the second floor Keep the volume low before 8am and after 10pm Close the doors gently No shower after 11:30pm No laundry after before 9am and after 8pm Keep the kitchen in a decent condition after your use Close the shower curtain well, no hair in the tub, no water around the sink on the sink there is a sponge you can use it to dry Turn off the light when you leave the room Trash out from the room BLUE BOX recycling Please respect this rules. Full refunded of security despoit in this case\n", + "----------\n", + "Professional, no smoking, no pets. Please use seat inside door to remove shoes.\n", + "----------\n", + "We only ask that you have a ton of fun, and that you leave our place exactly how you found it when you got there :)\n", + "----------\n", + "- Please be careful when coming and going so not to let the cat out. He is usually very curious to leave! - Please keep the noise down from 10pm until 8am. - Guests are not allowed to have other guests come over. - Please be considerate and treat our home with respect. - Check-in is 5.30pm during week-days. Please check with us if you are arriving on a Friday, Saturday or Sunday - we can likely be more flexible. - Checkout time is 11am. Though again we can likely be flexible on this. Please just ask!\n", + "----------\n", + "Please do not smoke in the building!!! You may smoke outside on the private deck. Please be reasonably quiet and respectful of the host (his bedroom his below your bedroom!)\n", + "----------\n", + "Please no pets or smoking in the house, though you can go out on a private porch if you must indulge. Feel free to bring food and cook...I love it when guests prepare a meal. Quiet hours 9PM to 6AM. \n", + "----------\n", + "There are many coasters and please use them for your drinks. There is one shelf in the kitchen cabinet that has food stuff that are personal and it will be marked as such. Please no pets, smoking or parties. There is a stand alone fireplace but it is decorative only. Please be respectful and keep noise to a minimum is the mornings and evenings to avoid disturbing neighbors.\n", + "----------\n", + "This is a quiet building with great neighbors so please treat it with respect when late at night. This is our 2nd home so please treat it like your own and leave it like you found it. No Smoking (other than on the deck) and no pets please. Thanks!\n", + "----------\n", + "No pets allowed. No smoking inside the house. Maintain cleanliness.\n", + "----------\n", + "No Smoking Cats Allowed With Fee\n", + "----------\n", + "No smoking! If I smell smoke or if there is other evidence of smoking, you will forfeit your entire security deposit. The fireplace is (URL HIDDEN) do not use it as it will cause significant damage. If you do, you will forfeit your entire security deposit. I would consider VERY well behaved pets. A pet would lead to $75 being added to the cleaning fee. You are responsible for any damage caused by your pet. If a pet stays here without pre-approval, you will forfeit your entire deposit. Check in and check out time can be flexible depending upon the dates you are looking for and whether anyone else is staying. Unless we arrange otherwise, check in and check out is at noon. The cleaning fee covers two hours. If additional cleaning is required, you will be charged $50/hour, deducted from your deposit. Out of respect for my neighbors, I must insist upon no parties being held at my place. If my neighbor complains about a party happening, or if there is a big mess left at the place, you will\n", + "----------\n", + "This is a very quiet building. In addition to this studio there are several other apartments besides my living space. We are all very quiet. And of course, no smoking or burning of scented candles.\n", + "----------\n", + "Unlike most other Airbnb listings, what we do here is long-term rentals by the year, or by the semester. We try to keep the atmosphere conducive to studying and resting and a couple of house-rules are in place to this end. 1. Towels and linens (sheets, blankets, and pillows) are NOT provided. The bed is full size. 2. No smoking on the premises. 3. No loud music or TV etc. 4. Only for one person (no couples, no visitors). We seldom have visitors, let alone overnight guests. We know this will be a major turn-off to many people, but we believe we can find a like-minded roommate who can have fun outside the house. 5. If you are not sure about your check-out date, you can reserve the minimum days and extend your stay at a discounted rate. 6. Check-in time has to be coordinated at least 48 hours ahead. On arrival, a short registration process with a picture ID is needed in exchange for keys and wifi access. 7. Inside the apartment, we take off our outside shoes. So if you bring your o\n", + "----------\n", + "House rules: Guests agree to the following terms and conditions 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes, and parking passes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with Jordan or AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $125 per hour fee for unauthorized early checkin or late checkout. 11\n", + "----------\n", + "Please Note: This unit was just renovated in November 2015 and it comfortably accommodates 4 guests, but up to 6 guests are permitted if you so desire (two guests in each bedroom and 2 guests on the available queen size air mattress). Please request an air mattress (if needed) when making a reservation. No smoking, no pets, no parties, and must be 25 to book. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left next to the trash can (additional bags are under the sink) - All windows are closed and locked - If used, the air mattresses are deflated and put away (please leave used linens for the air mattresses on the floor) - If furniture was moved during your stay, please return to its original location Please be mindful to our neighbors in the building, quiet hours after 9pm and no music or loud gatherings on the private patio. Please be considerate of our next guests who will be stay\n", + "----------\n", + "No pet is allowed No smoking Please be respectful of the neighbors as it's a quiet building You can use the kitchen to cook.\n", + "----------\n", + "Respect our rules. Please remove shoes when inside the house.\n", + "----------\n", + "Please remove your shoes as you enter the apartment. Please respect my neighbors and honor my home – no parties, no \"guests\", no drugs, no orgies, no pets, no beer pong, no dinosaurs.\n", + "----------\n", + "Our family will be present in the same house, though we expect you to have fun please be respectful of our family and house. We prefer non-smokers, but if you should smoke please refrain from smoking on the property. No pets allowed.\n", + "----------\n", + "- On a typical weeknight, I will be home from 10pm to 7:30am\n", + "----------\n", + "I am renting my apartment for the Marathon weekend and you will be a guest in my home. No smoking or pets please.\n", + "----------\n", + "No guests allowed. Please keep noise levels to a low/moderate rate. Please maintain the space with care & cleanliness. Loss of Key - A charge of $50 will be levied. What you do in your personal time is entirely up to you, but when staying at our place we have a strict no drug use policy. This is just the law… not so much one of our rules.\n", + "----------\n", + "Small pets are allowed. There's an area by the window/fire escape where smoking is allowed.\n", + "----------\n", + "No drinking, no smoking, no parties, no pets, no drugs, no girlfriends or boyfriends moving in. Looking for a quiet, studious, clean person who is looking for a comfortable and affordable place to stay during the school year. House is open to both sexes. No children please.\n", + "----------\n", + "Like it is their own house. I've had problems in the past with AirBnB so I need to be assured that guests will treat the house with respect and care.\n", + "----------\n", + "Ali's House Rules When you stay in an Airbnb, you're staying in someone's home. Here are some guidelines Joe asks all guests to follow. Quiet down AFTER 10PM specially in week days\n", + "----------\n", + "No pets No Smoking indoors Please be respectful of my neighbors both inside and outside my home. This means limiting noise after hours, avoiding playing loud music, etc. Please clean up and take out the trash when you leave\n", + "----------\n", + "Please do not smoke in the home. Please leave the trash in the trash bag at the end of your stay.\n", + "----------\n", + "No smoking in the building no partying in building \n", + "----------\n", + "It is a residential building so all of the residential building rules apply and must be fallow. I have zero tolerance for parties, noise and smoking.\n", + "----------\n", + "Our community is very quiet!! No parties please. That is what Newbury and Boylston Street are for. LOL\n", + "----------\n", + "Absolutely no smoking and no pets\n", + "----------\n", + "No smoking, drinking. Respect yourself , respect other, clean up after yourself. Late check in after 9 pm and before 9 a.m. is $50, lock out is $50. Thank you \n", + "----------\n", + "Please be gentle with the furniture and appliances. Absolutely no smoking allowed please.\n", + "----------\n", + "You're our guest, so please make yourself at home. Be clean! Rachel and I keep a tight ship around the apartment and we'd like our guests to be as clean as us. =) Speak up! Let us know if you need anything. Party down (if you let us know). We aren't huge partiers, but if you like to listen to music or watch loud TV, let us know ahead of time. This is important.\n", + "----------\n", + "No smoking cigarettes inside apartment.\n", + "----------\n", + "This is a family place no large parties,i.e. over 10 people. No smoking inside except vaporizer. Treat our home as you would want someone to treat yours . Be mindful of neighbors. If a dish or something breaks don't worry we can resolve anything. The plumbing is old so it's helpful to use the hair strainer in-place at the drain of the bath tub and of course nothing down the toilet except waste and toilet paper . We have an emergency number for a plumber if something unforeseen occurs. Kitchen we have a garbage disposal but we do our best to throw all the waste in the garbage can and use the disposal just for little bits . The switch for the disposal is located to the left of the sink on the wall. Its the one on the right the other switch is for the upper cabinet lights. very important, no grease or oil down the drain ..save it up in a container and throw the container away in the garbage. Trash/garbage day is Friday in the a.m. it needs to be out on the sidewalk in front of the g\n", + "----------\n", + "No Drugs Respect the Neighbourhood No excess Noise Smoking allowed Drinking allowed Pets allowed Keep the house clean Respect your roommates Wash your own utensils if used\n", + "----------\n", + "Please respect the residents of the building by keeping noise down.\n", + "----------\n", + "My home is your home. Please enjoy this space as much as I do. But also, please respect it. Don't rough house or party excessively, there are plenty of other places to do that. Please smoke cigarettes outside. No pets, sorry, I'm allergic!\n", + "----------\n", + "No Pets. No Smoking. \n", + "----------\n", + "We ask that guests be respectful as there are others living in the home. NO smoking or pets please.\n", + "----------\n", + "My main rule is mutual respect. Please keep all personal items intact as this is my main residence. There's plenty of space for your comfort. If something breaks or doesn't work, please let me know. It may not be valuable, but I'd like to have it fixed for the next guest. Out of respect to the neighbors, no parties please. There are 3 other units in the condo building and they're all working professionals. Please take care of the hardwood floors and the hallway walls. Don't drag bags across the floors or scuff the hallways. Pets and smoking are not allowed. Must have a credit card to put on file in case of damages. Must provide copy of license or passport, as well as names of all guests. \n", + "----------\n", + "Maximum of 2 guests staying in a bedroom. No smoking anywhere in or outside the property. No pets anywhere in or outside the property. No parties anywhere in or outside the property. No parking on our property or in the lot. No frying food. No extreme temperature settings. Any broken house rules, including evidence of cigarette butts, ashes, odors, stained linens, damaged furniture, or missing items will result in loss of deposit. All doors must be locked, and all lights, fans, air conditioners, and heaters should be turned off each time you leave. We kindly ask that you respect our property and our neighbors in this wonderful community.\n", + "----------\n", + "Generally, we prefer that guests treat our home as a friends house, rather than a hotel. - Quiet hours are 11pm to 7am - Feel free to partake in our electric tea kettle, K-Cup machine and espresso machine -Food left on the kitchen island is for guests to enjoy! - Feel free to use the kitchen, but kindly wash your dishes - No pets - There is usually somebody home if you have a question or something that needs addressing, just give us a knock! - Please let us know if there's anything we can do to improve your stay with us :)\n", + "----------\n", + "Quiet hours are 10 PM to 6 AM. No smoking, even outside. No pets. We already have one.\n", + "----------\n", + "No smoking or parties allowed\n", + "----------\n", + "There is a family that lives below us with a young child. Please be respectful and avoid making excessive noise, especially after 9pm. Also, the washer should only be used for small loads.\n", + "----------\n", + "Please no parties, guests, and loud noise past 11p out of respect for neighbors and my roommates. Please no smoking inside the building. If you cook or otherwise eat in the apartment, please reasonably clean up after yourself.\n", + "----------\n", + "Not many rules except there is no smoking\n", + "----------\n", + "As if it were your own home!\n", + "----------\n", + "NO Smoking. NO Pets.\n", + "----------\n", + "Please remove shoes when entering and while on board. No smoking, pets, or children. No loud music, partying or extra guests. This is a quiet space, so please respect the boat because it is our full time home. Check in time is after 3:00pm and check out is noon.\n", + "----------\n", + "Please enjoy your stay in my home and note the following house rules: - NO smoking anywhere in the apartment or building -Trash can be left in front of the building anytime after 5pm on Sunday or Thursday nights. All trash must be in a white trash bag (bags line the kitchen trash can and extras are under the counter to the left of the stove) -NO pets - Please do not eat any food from the refridgerator or cabinets (you may help yourself to cooking basics like salt, pepper, oil, etc) -Please clean any dishes that you use (or load them into the dish washer) -Please be respectful of our neighbors in the building -Please remove your shoes when you enter the apartment\n", + "----------\n", + "- Concierge available between 8am and Midnight\n", + "----------\n", + "NO SMOKING, please stop smoking a block away so as not to bring smoke-filled lungs into the house, I'm highly sensitive, and it makes me feel sick. Please clean after yourself on an on-going basis, especially in the common areas. We recycle paper, glass, metal in a separate bin, and throw food, plastic bags, and wrappers into the normal trash, can you participate? This 100 year old building has character in the details, but might appear less clean. The wood work was painted white before I moved in. I consistently use bleach between guests, but the grooves have \"greyed\" overtime, and I haven't repainted yet. I hope you won't be that picky ;-) My end-of-stay cleaning fee is to cover my time and expenses washing, drying, changing the sheets and sanitizing the room in between guests. I don't do any daily cleaning (of your room, the bathroom or the kitchen). I only clean in-between guests or when needed - I noticed I am not a clean freak, I go after the obvious (bread crumbs and slime) - s\n", + "----------\n", + "Check in/out: We typically follow the standard check in and out times (4 p.m., 11 a.m. respectively) however I'm extremely flexible and can accommodate your needs as long as it doesn't impact another renter if you have special check-in or out times. There is a keypad lock and each renter will receive their own passcode so you can come and go as you please and not worry about keys or timing. Pets: I don't have any pets living at the home but I am a dog lover and know it can be difficult to find accommodations for your 4-legged family members. Pets are welcome but please be respectful of the furniture and floors and clean up after them. Smoking: There is no cigarette smoking in the home or on the property as there have been concerns with cigarette butts creating a fire hazard on the deck. Please contact me if you need to discuss for your specific situation. Lock doors/windows at all times: While the area is safe, it is still an urban environment and doors/windows need to be locke\n", + "----------\n", + "Please no loud music or smoking in the courtyard. You can smoke in the house by the window if you need to. Pets are allowed if you have references in your profile.\n", + "----------\n", + "We do not tolerate \"partying\" in the house. We want families, couples, and generally guests that are low maintenance and low-key. Also, please \"pick up\" after yourself a bit before you leave...make yo momma proud :)\n", + "----------\n", + "This is a residential property and quiet is maintained. Absolutely zero smoking on or close to the property. Be respectful and kind.\n", + "----------\n", + "Cleaning fee only applies to stays under 4 nights. 4 nights or more I pay the fee. Monthly stays do have to also pay a cleaning fee.\n", + "----------\n", + "Kitchen, please: - Do not leave perishable items in the fridge or on the counter for extended stays. General, please: - Treat our home as you would your own. - Clean up after yourself. We ask that you leave the common areas as you found them and do your dishes when you're finished with them. - Feel free to use linens and towels as you need them. At the end of your stay, please leave them by the washer & dryer. - We are smoke-free and pet-free. - This rule is a must: Enjoy your stay!\n", + "----------\n", + "Respect yourself respect others please clean up after yourself. NO smoking, drinking or partying . Lock out is $50 , late check in after 9 Pm and early check in before 9 A.M. is $50, pay upon arrival.\n", + "----------\n", + "Please take your shoes off outside the front door to my apartment on the landing. I have an entire floor to myself, so there is room for your to leave your shoes outside the door in the area to the right as you walk on to the landing. My apartment is kept very clean and tidy, so taking shoes off is essential to keeping it the same way for you and for me. When leaving the apartment, please always lock the top lock on the door. Please shut off all the lights, AC unit, TV, etc. before you leave. If you open windows, please close and lock them before you leave the apartment. ABSOLUTELY NO PARTIES!!! Sorry!\n", + "----------\n", + "Check In/ Check Out: Flexible regarding to check in time, but please give notice ahead of time to make sure your check in goes smoothly. Would like to be there to greet you, but often times are away. If so, will leave you the keys for self check in. Please refer to check out time as 12PM and inquire if you require a different check out time. Parking: There is a dedicated off-street parking spot for ONE car only. More than one car in parking area is strictly prohibited. Any extra vehicles will need to go in a nearby parking garage. Shoes Off: Please kindly take your shoes off at the entrance. Smoking: There is strictly no smoking in or outside of the house. Bring Home guests: Please inform ahead of time if you would like to bring friends to the house. Kitchen Use: Please keep kitchen use to prepare snacks or coffee/tea. Party/Drinking: Please be responsible if you are to consume alcoholic beverages. Kindly clean up your messes and leave a clean space. Parties are strictly prohibited.\n", + "----------\n", + "No smoking, no pets. Please keep the noise at a respectful level at all times - *particularly after 10pm (as other units in the building are owner-occupied). Please treat it as though it were your own home.\n", + "----------\n", + "Clean, respectful, no parties :)\n", + "----------\n", + "No smokers, please. \n", + "----------\n", + "Please pick up after yourself (remove hair after taking a shower/shaving, etc.), and make sure things are left tidy after you used bathrooms. Keep toilet seat closed so cat can't get to water. Please avoid morning rush between 6am and 10 am and take shower at night (unless you shower is literally 2 min or less). Additional toilet/sink on the first floor. Always wipe off toothpaste from sink and faucet as a courtesy to others. Immediately notify me if something was broken or out of order or you forgot to wash a plate. Don't leave any food in your room. Proper trash disposal: recycling is very important. Rinse containers before placing into collection; all food leftovers must go inside kitchen sink for disposal. Avoid bringing in plastic bags, but if you must occasionally, please place into recycling for bags under the sink. Please tidy up your room after departure and take care of dirty dishes. Departure after check out time billed one hundred dollars Mailing address is NOT TO be shar\n", + "----------\n", + "No smoking please and no running of the washer/dryer after 8:00 P.M. Thanks No pets \n", + "----------\n", + "Garbage and recycling is on the same floor as unit if more refuse is created than can be stored. There is a door that is labeled as such and there are bins for recycling and a garbage shute for tied plastic garbage bags.\n", + "----------\n", + "Guest should do there dishes and clean after themselves. No alcohol, No drugs, No party's and most important Don't Disturb other guests!\n", + "----------\n", + "NO PETS! NO SMOKING ON PREMISES! NO PARTY! NO \"DRUGS\" - Keep the Place Clean at All Times! - Do Not Ask the \"Neighbors\" for anything. Ask Me! - No Neighbors Interaction! - No \"Drugs\"! - No Noise! A printed house rule will be provided. Please be respectful to others when all rooms are booked. 10 AM Check-out and Check-in is between 12 PM (noon) - 3 PM. Late check in after 8 pm is $50, lock out is $50. Respect yourself, Respect others, clean up after yourself. No Smoking/drinking in apt. Thank You! Location Rules: The \"Exact Address Location Is Not Stockton St. It Is 2 Streets Away. It Is Not Disclosed For Security Reasons\" And Is Given Out 24 Hours Prior to Check-in. If This Is a Problem for You, Please STOP Here And Contact Other Hosts for Your Stay. This Is a Part Of My House Rules.\n", + "----------\n", + "We take great care of our home and expect you to do the same. Smoking is not permitted anywhere on the property.\n", + "----------\n", + "PLEASE READ ALL HOUSE RULES TRASH can only go out BEFORE 8 AM or the night before trash days ONLY. Trash days are Monday and Friday ONLY. Trash must only be placed outside in a black or white trash bag. Recycling can be placed outside on Fridays in a clear bag or in a box. DO NOT PUT OUT TRASH ANY OTHER DAYS! A $100 fine will occur if you put trash out early. DO NOT have any mail or packages shipped to you while you are staying. Please realize that you are in an apartment and need to be very considerate of the people who live in the units around you. Beacon Hill is a quiet, professional neighborhood with working people. Please respect that they do not appreciate loud neighbors. Keep the noise level to a minimum. Do NOT play loud music. Try not to make too much noise after 10pm, and please do not bring any other guests who are not on the reservation back to the apartment unless you truly trust them. We realize we cannot stop people from bringing back a \"friend\" but remember \n", + "----------\n", + "No pet, No smoking - Quite hours : 9pm - 8am \n", + "----------\n", + "I ask to be respectful to neighbors. To leave everything as it was when arrived. Make yourself at home.\n", + "----------\n", + "No shoes in the apartment, please\n", + "----------\n", + "We limit number of guests not staying, so please keep it to a maximum of 2 additional visitors within normal social hours (noon-11pm). We are respectful of others, and expect the same from our guests. Have fun and come and go as you please. We promise to do the same.\n", + "----------\n", + "Please treat my house as you would treat your own. Be courteous and aware that this is our full time home. Clean basic messes and respect our property\n", + "----------\n", + "No smoking. We do allow pets.\n", + "----------\n", + "-No shoes in our home. Please leave them at the door in the foyer. -No smoking in the house indoors. There are ashtrays outside. -No stealing cutlery, utensils, other kitchen items or of any kind. -No damaging walls or windows. -No alterations, decorations, structural changes or additions to the premises. -No lock combinations shall be shared, nor a new lock installed. -Please do not take any of the local town guides. They are for information purposes. -All children should be supervised. -No early check-in or late checkout without prior approval from the property manager. -The maximum occupancy (per contract) {and conditional pet request} may not be exceeded at any time during reservation. -When showering please keep shower curtain inside the tub\n", + "----------\n", + "* AGAIN FOR EMPHASIS ***** we aren't supposed to smoke in the building, but I do, and I don't mind if you do, too. ******* Folks with emotional or physical or psychosocial sensitivities or preconceptions surrounding tobacco use may wish to find different accommodations. The floor plan is fairly open and ventilation is good, but I'm sure it smells like smoke to those people who simply cannot stand the smell of smoke, and I don't want to hear it. This is a young neighborhood, and you may encounter some instances of behavior that could be construed as \"party\", I.e loud music, drinking, incoherent girls stumbling barefoot down the sidewalk while their dates retrieve their footwear and attempt to steer them towards home... The street has it's own security people and they don't take kindly to loiterers . They are, however, quite helpful in emergencies (most of the time).\n", + "----------\n", + "1. NO SHOES IN THE HOUSE. Please, leave them behind the door 2. Please make sure that all the doors are locked behind you when you leave 3. NO SMOKING, ABSOLUTELY NO DRUGS, NO excessive alcohol consumption 4. Please, keep the noise level to the minimum from 10pm to 8am 5. No parties. Please no unauthorized guests. Only checked in guests are allowed on the property 6. Be respectful to our neighbors 7. If you have any questions about anything please ask freely, I am always happy to help and make your stay pleasant. ENJOY!\n", + "----------\n", + "No Smoking, no pets, no parties and anyone coming to visit would need to be known beforehand. Along with any issue of the other amenities of the house other than the room you will be renting.\n", + "----------\n", + "1) We live in a quiet neighborhood so no loud noise after 10:00 pm. 2) No outside guests after 10:00 pm. 3) No overnight guests not listed on the reservation.\n", + "----------\n", + "There is a gas grill on the roof, but unfortunately, we cannot allow guests to use it due to safety concerns. Please make sure to close the door to the roof when not in use.\n", + "----------\n", + "Please don't fiddle around with my stuff or annoy the neighbors. I don't charge a cleaning fee, please strip the bed of the sheets and leave all used towels in the bath tub. Thanks.\n", + "----------\n", + "The bldg is business people. quiet. courteous. Check out is at Noon. Check in is at 3pm. It's pretty strict except for leaving baggage. Strict cancellation.\n", + "----------\n", + "I have other roommates so be respectful of that.\n", + "----------\n", + "No pets and absolutely no smoking. We expect guests to leave the place as they saw it when they first arrived and be clean, respectful, and responsible.\n", + "----------\n", + "Please no smoking on the property\n", + "----------\n", + "NO SMOKING, the building is a smoke free building. There is a separated area in front of the building for smokers. No use of flames in the apartment. Microwave only use in the kitchen No outside guests at any time.\n", + "----------\n", + "No smoking, no parties or very loud music - we are in a quaint neighborhood near the Bunker Hill Monument.\n", + "----------\n", + "No unexpected house guests please, and no smoking in the house!\n", + "----------\n", + "Please Note: This unit was just gut-renovated in May 2015 and it comfortably accommodates 4 guests, but up to 5 guests are permitted if you so desire (two guests in each bedroom and 1 guest on the available air mattress). Please request an air mattress (if needed) when making a reservation. No smoking, no pets, no parties, and must be 25 years old to book. For check-out, please ensure: - All plates and cups are left in the sink or dishwasher - All trash is left in the kitchen trash can or bagged and left next to the trash can (additional bags are under the sink) - All windows are closed and locked - If used, the air mattresses are deflated and put away (please leave used linens for the air mattresses on the floor) - If furniture was moved during your stay, please return to its original location Please be mindful to our neighbors in the building; quiet hours after 10pm. Please be considerate of our next guests who will be staying after you, if something is broken or needs fixing,\n", + "----------\n", + "Please keep it clean, thats all we really ask from our guest.\n", + "----------\n", + "Please respect our space and our neighbors by not smoking or being loud. No parties. Please leave the apartment as you found it. Unfortunately, pets are not allowed!\n", + "----------\n", + "Please respect our privacy on 1st and 2nd floors. We do appreciate you being quiet when coming in very late at night. If you need anything we are happy to help in any way.\n", + "----------\n", + "Please do not block other cars.\n", + "----------\n", + "No smoking inside the house. Please respect the space, as this is our home.\n", + "----------\n", + "Please, No shoes allowed. There's a mat for them, just inside the door.\n", + "----------\n", + "- Very Important: please let us know your estimated arrival / departure times so that we can plan accordingly. Check out by default is before 12 pm and check in after 2 pm, unless we agree on different times. We will offer flexible check in / out times when possible but we need time between guests for a thorough cleaning. - We always provide fresh bath towels - The beds will be made with fresh linens - The place will be clean (please leave your shoes near the door) - Feel free to use the fridge, microwave, toaster oven, dishwasher and stove - We are happy to provide directions / activities - It is a relaxed / informal setting, come as you are!\n", + "----------\n", + "Parties and smoking are not allowed under any circumstances and incur significant fees. Pets may be considered with pre-approval and an additional pet fee.\n", + "----------\n", + "Keep in mind that you are staying in our home with us, this is not a rental property. No smoking. Please be mindful of others in our building with noise and late-night entry. No outside guests aside from those you list as staying with us. \n", + "----------\n", + "- Please keep the house exactly like you found it. Please don't leave a mess. Please don't leave things dirty. - If you use the bathroom, clean or wipe things down (there will be a cloth to wipe off excess water, etc.) - If you use the kitchen, please clean dishes and wipe things down as well - No guest allowed - you can meet friends at other venues - Shoes off in the apartment - please leave by the door. If you would like please bring some slippers. - Please keep things quiet after 10pm - If you smoke, you must go outside! NO smoking inside! - If you cook, turn the fan on above the stove - If you watch TV, turn it off when you are done. - Please use your common sense, and if you are not sure, ask... - Remember, this is my house - so try to treat it with respect. - if the parking pass is not returned, you will be charged the full amount of the deposit\n", + "----------\n", + "- NO SMOKING (You'll have to do that outside if you smoke) - Please keep the house like you found it - Please don't leave a mess - Please don't leave things dirty. - If you use the bathroom, clean or wipe things down - If you use the kitchen, please clean dishes and wipe things down as well - No guest allowed - you can meet friends at other venues - Shoes off in the apartment - please leave by the door. If you would like please bring some slippers. - Please keep things quiet after 10pm - If you smoke, you must go outside! NO smoking inside! (the full security deposit will be withheld if a guest smokes in the house) - If you cook, please turn the fan on. - Please use your common sense, and if you are not sure, ask... - Remember, this is my house - so please treat it with respect.\n", + "----------\n", + "- No smoking. - Maximum of 2 people - Sorry, no children. (I love kids, but this is a very quiet building. It's all young professionals. - Please be quiet and respectful of others in the building (no loud music/tv, - Please dispose of baby wipes and/or tampons in the waste basket, not in the toilet. (the pipes are old and clog easily – last time baby wipes had to be removed from the pipes, the plumbing bill was $350!).\n", + "----------\n", + "No smoking inside and no pets. Please be respectful of the hosts and the space.\n", + "----------\n", + "Quiet and clean Responsible person No bad habits Just don't steal or break anything and we are good. I would also advise not to play extremely loud music after 9pm because my roommate gets mad. Moderately loud should be ok. -Please do not drink the alcohol and don't eat the food in the bedroom, although you are welcome to use all of the appliances including the Keurig. This is our home when we are not traveling, respect it as your own. -Strictly no smoking or parties.\n", + "----------\n", + "NO Smoking. No Pets.\n", + "----------\n", + "- Quiet hours between 10pm-6am - Visitors in common spaces only\n", + "----------\n", + "- Washer/dryer coinup in apartment basement. - There is no set check-in time. I can accommodate you, and I may not even be on the premises. The last date offered in the calendar is the vacate date not the last night. - May be available on Sunday the 21st.\n", + "----------\n", + "No smoking and no pets.\n", + "----------\n", + "Feedback is welcome--please let us know how we can improve your experience! Check in is 4-8 p.m. Early and late check-ins are possible, but must be requested in advance and are subject to availability. Check out time is 11 a.m. Late check-out is possible upon request in advance subject to availability. Regretfully, the suite is not appropriate for children and we cannot accommodate them. Regretfully, for health and safety reasons, there is no smoking on the property. Regretfully, we cannot accommodate guest pets 14 days' cancellation notice or full charge for stay. If you check out before the end of your reserved stay, the full amount of your stay will be charged.\n", + "----------\n", + "•No Smoking in any part of the property •Please do not leave any trash outside, please leave trash in bag inside the unit •Do not flush ANYTHING down toilet except toilet paper •Please maintain a reasonable volume •Please respect the property •No large parties •No more than 4 guests •Please ask before accessing bar •Do not purchase anything on cable •Please do not leave exterior doors open so that we can keep out insects and pests\n", + "----------\n", + "We expect guests to be clean, neat and respectful. Communication is very important. No smoking indoors and no pets.\n", + "----------\n", + "No smoking allowed in the house. No pets. No loud music or partying allowed at night. Please respect the property as you would your own house.\n", + "----------\n", + "No smoking. If using the kitchen, guests must wash and put everything away. Please leave the apartment exactly as you found it.\n", + "----------\n", + "Please no loud parties- we'd like to keep our neighbors happy! Guests are expected to be respectful of our belongings and leave the apartment tidy.\n", + "----------\n", + "We are flexible & accommodating, but just expect guests to be respectful to us and our neighbors - particularly during late hours.\n", + "----------\n", + "I'm a semi kosher vegetarian which means that I don't bring any pork or shelled fish into the house. Chicken/Red meat is fine. There is no smoking in or around the condo.\n", + "----------\n", + "- - NO PETS! NO SMOKING ON PREMISES! NO PARTY! No \"DRUGS\"! - Keep the Place Clean at All Times! - Do Not Ask the \"Neighbors\" for anything. Ask Me!- - No Neighbors Interaction! - No \"Drugs\" Please!!! - No Noise! A printed house rule will be provided. Please be respectful to others when all rooms are booked. 10 AM Check-out and Check-in is between 12PM (noon) - 3 PM. Late check in after 8 pm is $50, lock out is $50. Respect yourself, Respect others, clean up after yourself. No Smoking/drinking in apt. Thank You! Location Rules: The \"Exact Address Location Is Not Stockton St. It Is 2 Streets Away. It Is Not Disclosed For Security Reasons\" And Is Given Out 24 Hours Prior to Check-in. If This Is a Problem for You, Please STOP Here And Contact Other Hosts for Your Stay. This Is a Part Of My House Rules.\n", + "----------\n", + "Please, no alcohol on the premises. Also please don't be too loud at night.\n", + "----------\n", + "Please strip the beds when you leave, lock the doors, and close the windows. Please respect our home! Thank you.\n", + "----------\n", + "We have ample off-street parking but if you have a car let us know and we will be in touch with you about parking. Please be careful not to drive or walk in the driveway for 233 Savin Hill Avenue. Check in time is 2 PM, check out time is 10 AM. Guests who arrive early can drop off their luggage after 10 AM. We are unable to accommodate arrivals earlier than 10 AM. Guests who need to stay after the check out time are welcome to use the common area on the first floor for luggage storage. NO SMOKING in the house or anywhere on the property. No Pets.\n", + "----------\n", + "70 Melrose House Rules *Be sure to contact us for key instructions* We request that you please be respectful of all furniture, appliances, and all other belongings within the apartment. Please make sure to turn off all lights and appliances, including A/C and Heat when you leave the apartment and follow the trash rules ~ every bit of saving helps us provide affordable and comfortable living space to everyone. Trash can be put outside in front of the building on the curb Sunday and Thursday nights at 5 PM or later it will be picked up early the following mornings. All insurance and liability including accidents - inside or outside the apartment - health, short-term cancellations and / or guest's belongings is the guest's responsibility. The entire building is non - smoking so please no smoking on the property or in any of the units. 62 Melrose General Information We offer digital cable TV, DVD and high speed Internet. We will send internet information in a separate email. For yo\n", + "----------\n", + "House Rules include no smoking, no illegal drugs, no pets, no entertaining others. Please be respectful of your wonderful neighbors while in the apartment.\n", + "----------\n", + "No smoking No pets No events or parties Check out by 11am Check in after 3pm $50 fee for lost keys Please stay out of the nursery unless you have a baby sleeping in there We can be flexible with check in and check out times depending on the next renter's right to a 3pm check in time.\n", + "----------\n", + "Make yourself at home. We are 420 friendly\n", + "----------\n", + "Please run dishwasher before checking out and respect noise levels for neighbors! :)\n", + "----------\n", + "Respect the apartment and neighbors. Just three house rules: I ask folks to keep noise down after 11 pm, take out the trash on trash day; and don't leave out any open food containers or dirty dishes.\n", + "----------\n", + "You're welcome to use our kitchen, we just ask that you clean up when you're done. There is no smoking, including on the porch. If you use our frying pans, please use only wood or silicone utensils on them and clean only with the soft side of the sponge. Please be careful when coming and going not to let the cat out. She can get very curious when the door's open.\n", + "----------\n", + "No smoking inside the house. No loud parties or disturbing the peace or public nuisance allowed. This is a strictly residential rental NOT commercial. If holding parties you must first seek owner's permission before inviting anyone other than immediate family. This is a peaceful family neighborhood and I like to keep it that way. Clean after yourself, clean the stove and oven and all the appliances. Leave everything exactly in the condition it is in when you first arrived. Treat this house as if it is your own with the proper respect and courtesy. No pets allowed. Check in is 4PM, Check out 10AM. On Check out date please leave all the dirty sheets, towels, linens by the washer for the maid. Please leave the outside trash container for the garbage truck on the night before it arrives.\n", + "----------\n", + "No smoking and illegal drug use. Please Minimize noise after 1030pm No guests\n", + "----------\n", + "Guests need to be respectful of other tenants. This is the ground floor apartment of a 3 story house; all apartments have separate entrances.\n", + "----------\n", + "Please do not smoke in the house. If you smoke outside please be curteous and dispose of your cigarette butts. We have small children and would rather not have them picking those up outside. Please also keep the noise level down and be respectful of our neighbors.\n", + "----------\n", + "No smoking in house. No parties. Please be courteous and respectful to our neighbors. Please leave the apartment in the same clean condition that you found it. Have a great time in Boston and come home to Fenway!\n", + "----------\n", + "1. No parties. 2. Respect the neighbors. Noise level needs to stay low. 3. Keep feet on the porch when outside. 4. Clean any dishes you use. 5. No smoking ... even on porch. Not a good set up for children (0 - 13).\n", + "----------\n", + "Clean up after your mess please.\n", + "----------\n", + "We live on the 3rd floor of a 3-family house, so please minimize noise for our neighbors, especially at night and when entering or exiting. Our bedroom and office are not for guest use.\n", + "----------\n", + "House Rules This is a Non-Smoking, pet free home; and our guests must use the outdoors if they wish to smoke. Additionally, I love my home and my neighbors are great, so I also ask our guests to be respectful of both and treat my home as well as their own. Enjoy your stay while here in Boston - a great city!!\n", + "----------\n", + "Inn Boston Reservations requests that noise levels remain moderate to low, and that all guests take into consideration those in the surrounding suites. Depending on the scale of the broken rules, guests may be contacted to request a lower noise level or asked to leave. In the event that the guests are required to vacate the unit, no refund will be provided.\n", + "----------\n", + "(website hidden) intentional damage is done to the boat or its contents. (website hidden) charges are incurred due to contraband, pets or collection of rents or services rendered during the stay. 3.All debris, rubbish and discards are placed in the properly bagged, and soiled dishes are placed cleaned. 4.All keys are left on the kitchen table and unit is left locked. (website hidden) linens are lost or damaged. (website hidden) Early check-in or late check-out, unless approved in advance. 5.PAYMENT - An advance payment equal to 50% of the total is required when the reservation is confirmed. The balance is due one month before your arrival date. Please make payments in the form of credit card (Mastercard or Visa). We do not accept payments in the form of traveler's checks, bank money orders, cashiers checks or personal checks. 6.CANCELLATIONS - A sixty (60) day advance notice is required for cancellation. Cancellations that are made more than sixty (60) days prior to the arrival date w\n", + "----------\n", + "Please be aware, check in is NO earlier than 6pm on weekdays. We can make no exceptions. Weekends are more flexible.\n", + "----------\n", + "Please treat this like you would your own home, and be respectful of the space. This is our home too and not just a hotel to make extra money. If you smoke, please do so outside. Having guests over is fine, but be courteous of our neighbours. Please do clean the dishes and leave them inside the dish washer to dry. Don't hesitate to reach out to us if you have any issues!\n", + "----------\n", + "Since you will be living in my own residence, I expect that you take care and keep the common areas cleaned and neat.\n", + "----------\n", + "* Please be considerate of our neighbors * Loud music and parties are not permitted * No smoking * No pets allowed\n", + "----------\n", + "House rules will be provided upon booking.\n", + "----------\n", + "Enjoy yourself. Soak in the neighborhood street life. Leave enriched and with some new experiences. No smoking and no pets allowed. There is an outdoor courtyard area accessible from the door next to the stove. To respect the quiet enjoyment of our neighbors, please refrain from loud conversations or cell phone use in the courtyard area because other buildings abut the courtyard and voices carry. Before leaving, please remove all used linens and towels and leave in laundry bag in closet, wash, dry and put away dishes, pots/pans and utensils. Leave keys in unit and lock the door behind you.\n", + "----------\n", + "No parties or gatherings of more than 8 people. This is a family neighborhood. Families with kids next to and behind the home go to sleep early - please behave accordingly.\n", + "----------\n", + "We don't allow smoking, drug use, excessive parties, or loud music out of respect for our neighbors. Please treat our home like your own! \n", + "----------\n", + "No smoking, No pets. Of course I want you to have a great time, but please no partying at the apartment. Guest must be cortious to other building tenants. The home is for you to have a comfortable place to relax, sleep, and use the amenities.\n", + "----------\n", + "Please , no smoking,parties or noise that may disturb the neighbors.\n", + "----------\n", + "No smoking. No pets. No parties.\n", + "----------\n", + "No smoking, no extra guests and no parties.\n", + "----------\n", + "Shoes off Clean After yourself Turn Lights and your room AC off when leaving the apartment Clean the stove with the specific cleaner when used (Ask the host about it)\n", + "----------\n", + "Quiet. Residential. No smoking, no pets\n", + "----------\n", + "All Renters and Guests must be 25 years of age unless accompanied by a parent or guardian. Parties of any kind are not allowed. There is no smoking allowed in the boat. Use of illegal substances will be cause for immediate termination of the rental and reported to the police. All pets must be on a leash when outside the boat. Quiet hours are between 9:30pm and 8am. Noise must be kept to a minimum during this time period. \n", + "----------\n", + "Treat the apt as you would your own. No parties or large gatherings.\n", + "----------\n", + "Since I live in the apartment, I expect guests to respect the space and be quiet when coming in late. No entertaining or overnight guests, please.\n", + "----------\n", + "Please be respectul of other occupants of the apartment. This means: no smoking indoors, no parties, and cleaning up after yourself.\n", + "----------\n", + "No smoking No pets\n", + "----------\n", + "Please respect the residents of the building by keeping noise down and absolutely no smoking.\n", + "----------\n", + "You will be sharing a bathroom, so you must be considerate of time spent in the bathroom in the morning when getting ready. If you use the kitchen, please put the dirty cups, bowls, plates, and silverware in the dirty dishes tub, and hand wash all of the pots, pans, and cooking tools you use. Please clean up any mess you may have made. Remember to turn on the fan when using the stove or oven so the fire alarm does not go off from the steam! Please only smoke outside, away from the apartment building, and dispose of your cigarettes responsibly. Checkout: Checkout is at 11:00 am, please inquire if you would like to check out later or leave your bags with us for the day. If we are not awake/home when you leave, please leave the passes on the desk in your room, lock the front door behind you, and put your keys in the lock box behind the front stair case.\n", + "----------\n", + "This is a quiet home. No parties. No pets. No smoking.\n", + "----------\n", + "Since it's a vegetarian house, please don't bring meat or fish into the house! Smoking outside please.\n", + "----------\n", + "Iconic Boston Brownstone with amazing views, but no elevator. 3 flights of stairs up to the apartment, another set once in the unit up to the private roof deck. No smoking, no pets. My apartment is in a building with 2 other units, people who live there full time. Please be respectful of my neighbors and their privacy, no late night parties. This is a quiet building.\n", + "----------\n", + "I would like you to respect my house as though it was yours. You break it you buy it. No smoking cigarettes or drugs within the units. Smoking is allowed on the outside porch, however do not throw cigarette butts on the floor/grass please use the ash tray. If something goes wrong or unpleasant with your stay, please call me immediately so we can rectify the situation.\n", + "----------\n", + "This is a self-service room. The common areas are professionally cleaned but please be considerate and clean up after yourselves in common areas - especially after cooking and eating or using the bathroom. Smoking is allowed outside. No street shoes allowed in the apartment so be sure to bring house slippers. We recycle and have provided the necessary information so that you can too. Reusable containers for storing food and shopping bags for shopping are provided. Please consider the environment and do not bring plastic bags or plastic wrap into this house. When in doubt, ask me!\n", + "----------\n", + "House rules: Guests agree to the following terms and conditions 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes, and parking passes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with Jordan or AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $125 per hour fee for unauthorized early checkin or late checkout. 15\n", + "----------\n", + "WHEN BOOKING, PLEASE PROVIDE THE FOLLOWING IN YOUR MESSAGE to me: - 1. Total number of guests (adults, children, babies)? Are there any elderly or children under 18? If so, what are their ages? - 2. Arrival Date AND Time of Check In? (Check In between 2 pm and 9 pm with some leniency) - 3. Departure Date (Check out before 11 am/noon ideally) - 4. Please tell me a little about yourselves and the purpose of your trip. - 5. What Other Needs or Special Requests or Extra Options (please read below for additional options and possible related additional fees). ------ PLEASE NOTE THE FOLLOWING BEFORE REQUESTING A BOOKING: * I will reply as soon as possible to let you know if my apartment will be available for ALL your needs. - 1. We are happy to host Friendly, Neat, Low-Maintainence Adults & Well-Behaved Children. ---- All cookware and utensils in the kitchen are at your disposal. There will be water (brita) and basic condiments provided for you. We ask that you rinse whatever dishes\n", + "----------\n", + "*** It is a residential building with very nice and quiet atmosphere and we'll appreciate our guests considering it *** Pets are allowed - an extra cleaning fee may apply - please consult with us prior to booking. *** Smoking is absolutely prohibited in the apartment, the building public areas and outside-near the main entry doors - however lots of open gardens right near...\n", + "----------\n", + "Treat this quaint apartment like it's your own.\n", + "----------\n", + "NO Smoking\n", + "----------\n", + "not smocking in the apt, you can smoke in the porch down stairs parties allowed in the porch downstairs\n", + "----------\n", + "Keep it clean\n", + "----------\n", + "Please be respectful of other building residents - keeping evening noise to a minimum.\n", + "----------\n", + "Please remember that this is a residential building. The building rules, apartment occupancy restrictions and the year-round tenants must be respected. Parties and smoking are not allowed under any circumstances and incur significant fees. Pets may be considered with pre-approval and an additional pet fee.\n", + "----------\n", + "We expect our guests to be respectful of our space, belongings and neighbors. Check out time is 11am and Check in time is 3pm.\n", + "----------\n", + "No pets of any kind. No loud noise after 11 PM. \n", + "----------\n", + "Due at move-in: $150 cleaning fee, $100 move-in fee ($250 fee included with Airbnb) $1000 refundable security deposit. NO PETS & NO SMOKING Move-in: after noon Move-out: 11am\n", + "----------\n", + "No smoking in the unit or in the building (strict). There will be a $450 fine for smoking in the unit or in the building. No open flame. No pets. Please respect your neighbors and keep the noise down after 10pm. There is a $50 fee for lost keys. NO CHECK IN AFTER 11PM -the doorman leaves at 11pm so I can not get you keys after this time.\n", + "----------\n", + "“House Rules\" Checkout is by 11am. At least one person in the apartment must be verified by Airbnb. Please do not rent an apartment for your friends or extended family No overnight guests. Even with prior permission, an extra charge of $100 per person per night will be added to your rent. Boston and the south end are very conscious of overcrowding, (i.e. two families with kids sharing a two bedroom apartment, or three students per bedroom are examples of violations of Boston's occupancy ordinances) NO MORE THAN 4 PEOPLE s.v.p. Soft soled shoes or socks.The apartments have oak floors, and although there's a lot of soundproofing, footfall can be uncomfortable for other tenants. Please wear soft sole shoes or socks. Also keep Direct TV, Blu Ray DVD and music at a reasonable level between 8am and 10PM and very quiet or headphones after 10 pm. The apartment is completely private ... your own entrances and exits. The laundry room ($1.75 per wash and $1.75 per wash takes q\n", + "----------\n", + "Expect to have our place treated with respect, but don't want guests to feel uncomfortable so if there's a beer(s) in the fridge, feel free, snacks in the drawers, usually fresh fruit in the bowl, up for grabs etc...\n", + "----------\n", + "Guest is expected to behave in a nice and orderly manner with respect to other roommates and neighbors. The guest is expected to keep the WHOLE apartment in the same condition they found it in, including the bedroom and bathrooms.\n", + "----------\n", + "Smoking isn't allowed in the apartment, though you can do it on our back deck. Because this is our primary residence, we would love it if you would treat it as your own!\n", + "----------\n", + "Although we understand the wear and tear that little ones make, we expect that all messes will be cleaned up as they happen and you will be respectful of the neighbors.\n", + "----------\n", + "No smoking Not pets No parties or events No candles\n", + "----------\n", + "Keep the apartment clean & tidy and take care of the furnishings No smoking No pets No parties Contact me immediately with any questions or concerns $150.00 Cleaning Fee Enjoy your stay!\n", + "----------\n", + "House rules: Guests agree to the following terms and conditions 1.Guest(s) agree to NO PARTIES anywhere on the property. Legal action will be taken for parties that cause damages to the unit, property, reputation, or relationship with building staff or other residents. 2.Smoking of any kind is not permitted in the unit or on the premises. 3.Guests agree to abide by maximum occupancy of unit, and observe quiet hours between 9pm and 9am 4.Guests are responsible for action of ALL GUESTS occupying their unit at all times. 5.Guests agree to return all keys, remotes, and parking passes. Replacement fees may apply for unreturned items 6.Guests understand that onsite building staff (maintenance and concierge) are not affiliated with Jordan or AIRBNB. Please contact me directly for any needed items. 7.Guests understand that no pets are to be in the unit. 8.Guests agree to pay replacement cost for any unreturned items, and $125 per hour fee for unauthorized early checkin or late checkout. 18\n", + "----------\n", + "This is our family home, not a rental that we manage, so we expect you to treat it as you would your own home.\n", + "----------\n", + "This is a residential property and quiet is maintained. Absolutely zero smoking on or close to the property. Be respectful and kind.\n", + "----------\n", + "I expect my guests to treat the space as if it was their own house. Please keep it clean and organized when you leave the way it was.\n", + "----------\n", + "The Golden Rule\n", + "----------\n", + "Keep the place in the same condition as upon arrival. Be yourself, but please no wild parties, thanks :)\n", + "----------\n", + "Please just keep your area reasonably clean and pick up after yourself. Nothing special. All the kitchen appliances that are there are available for your use. Just wash your dishes and pick up any trash you have. If something has happened don't feel embarrassed, just let us know and we'll take care of it. Also no smoking and no loud parties. Come, enjoy yourself and have fun.\n", + "----------\n", + "Clean is a must.. No smoking cigars.\n", + "----------\n", + "We are both professionals who, while friendly and definitely social, like to sleep when we get the chance. We expect our guests to be respectful of the space, and I promise we will do the same! No smoking in the house, please!\n", + "----------\n", + "- Non-smoker - No perfume/cologne use - Microwave for light use, not cooking - Very light and fast food prep - Mailing address not to be shared with anyone but family and friends - Take is seriously: If any of yours not personal mail comes to this mail box, you will be charged $200 and $5 for each letter after that indefinitely - Guest agrees not to write reviews for areas not on amenities list\n", + "----------\n", + "no smoking quiet\n", + "----------\n", + "No smoking, drugs, loud volume, loud partying please. No outdoor shoes inside the house please, indoor slippers are provided. I don't charge cleaning fee so please help me keep the place clean and organized by cleaning up after yourself, thank you.\n", + "----------\n", + "You will meet a clean apartment, please leave it clean No Smoking please. Sorry, but NO PETS\n", + "----------\n", + "No candles. Close and lock windows when you leave the house. Please clean up after yourself in the bathroom and the kitchen. And have fun! If you want to have an event or party, we are open to that, but we should check in about that before you make plans.\n", + "----------\n", + "Please treat the interior of the unit, including all furniture with respect. No smoking or pets allowed. Enjoy yourself but please keep noise to acceptable levels at night to avoid disturbing neighbors. No parties please.\n", + "----------\n", + "All I ask is that you are respectful of my home and things, as well as my neighbors, who are excellent! Oh, and no indoor smoking, please :)\n", + "----------\n", + "No smoking in the apartment, even with the windows open. No excessive cologne/perfume. Please take off your shoes on the landing and don't wear any outdoor shoes inside. No food in the bedrooms, please. No food or drinks in the music room. Be considerate of the neighbors; no excessive noise, and keep quiet after 9pm. Please tell me if anything gets broken in the apartment. Talk to me first if you want to hold Yggy. Don't open the terrarium before we talk. No overnight guests without clearing with me first.\n", + "----------\n", + "Contact us for reservations. Check in is 3pm, check out at 11am, though other arrangements can be made.\n", + "----------\n", + "Please be respectful of our neighbors and no additional guests or parties. No Smoking. No Pets.\n", + "----------\n", + "- No gatherings/parties for more than 12 people, - Please keep noise down after 9 pm\n", + "----------\n", + "We except you to clean up after yourself and generally be respectful. Smoking should happen outside the house.\n", + "----------\n", + "no inside smoking, quiet(ish) after 11, help yourself to condiments, oils, spices, coffee. use of bikes at your own risk. No parties. I'm super tight with neighbors and usually I'm staying 2 doors down.\n", + "----------\n", + "As the apartment is currently occupied by students, I ask that guest don't host parties here!\n", + "----------\n", + "BUILDING IS RESIDENTIAL. DOCTORS AND NURSES WHO WORK LONG HOURS ARE THE PRIMARY TENANTS OF THIS BUILDING SO RESPECTFUL NOISE LEVELS DURING 10PM-7AM ARE A MUST.\n", + "----------\n", + "Be respectful of house and neighbors on second and third floor. That's all we ask.\n", + "----------\n", + "When you arrive, my place will be clean, neat, organized & very cozy. All I ask is you leave it the same way upon departing. Also check out time is 11am & check-in time is 4pm. For those arriving, you may check in early & leave your bags / luggage. I will just need to finish cleaning / setting the place up for you just so before handing the place to you. For those departing: 11am check-out time is strict although you may leave your bags / luggage in the apt if you are doing any last minute sight seeing / activities. Otherwise, enjoy the Allston / Boston area, a great little neighborhood / city combination.\n", + "----------\n", + "This is my full-time residence, I appreciate that you treat the home as if it is your own. Please note that I have a dog and pets are allowed so if you have any Pet allergies no need to inquire. Please leave locked drawers and closets alone, all non-locked items as they were, and contact me immediately with any question or concerns. Please no open flames, candles, incense, etc. and no smoking.\n", + "----------\n", + "•No Smoking in any part of the property •Please do not leave any trash outside, please leave trash in bag inside the unit •Do not flush anything down toilet except toilet paper •Please maintain a reasonable volume •Please respect the property •No large parties •No more than 4 guests •Please ask before accessing bar •Do not purchase anything on cable •Please do not leave exterior doors open so that we can keep out insects and pests\n", + "----------\n", + "The outdoor space and grill are welcome for your use but please be mindful of my neighbors and keep noise to a minimum. Also, if you use the grill please be sure to turn off the kerosene and clean the cooktop.\n", + "----------\n", + "Please leave the studio in the condition as in arrival. Please turn off lights and heat/air when exiting. Please lock both top and bottom locks. Please feel free to call or text me with questions or concerns.\n", + "----------\n", + "Thanks for not smoking and leaving your pets at home! Thanks for keeping the house locked. Thanks for not throwing parties. And... all of the usual stuff that is just good common sense like using coasters and place mats and returning the apartment to the way it looked when you arrived. There is no parking in the driveway. At the end of your stay, please strip the beds and put the sheets in the pantry or on the bathroom floor. Towels can be put with the sheets. Trash and recycling pick up is on Tuesdays. If you are staying through a Tuesday, please put your garbage and recycling outside in the appropriate barrels Monday night or by 7:00 am on Tuesdays. THANKS!\n", + "----------\n", + "We really only have one general requirement, and that is: please leave the apartment and its contents in the condition you found it. We do not have a maid service that cleans the apartment so please be respectful.\n", + "----------\n" + ] + } + ], + "source": [ + "maximum_occupancy_set = set()\n", + "for unit in new_data:\n", + " maximum_occupancy_set.add(unit['house_rules'])\n", + "for unit in maximum_occupancy_set:\n", + " print(unit)\n", + " print(\"----------\")" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "54423e0d", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(new_data)\n", + "df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/clean_hotels_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5767aa80", + "metadata": {}, + "outputs": [], + "source": [ + "df.rename(columns={'old_name1': 'new_name1', 'old_name2': 'new_name2'}, inplace=True)\n", + "df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/clean_hotels_2022.csv')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.16" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/tools/accommodations/__init__.py b/tools/accommodations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tools/accommodations/__pycache__/__init__.cpython-39.pyc b/tools/accommodations/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c3952f9c84cd77fee0c80e428a413b69bf847e14 Binary files /dev/null and b/tools/accommodations/__pycache__/__init__.cpython-39.pyc differ diff --git a/tools/accommodations/__pycache__/apis.cpython-39.pyc b/tools/accommodations/__pycache__/apis.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..70fa68a041a7a1e47a097cb377f8d13142b13767 Binary files /dev/null and b/tools/accommodations/__pycache__/apis.cpython-39.pyc differ diff --git a/tools/accommodations/apis.py b/tools/accommodations/apis.py new file mode 100644 index 0000000000000000000000000000000000000000..93fdd950b193fa6a81852fcf5c314b159ed3335e --- /dev/null +++ b/tools/accommodations/apis.py @@ -0,0 +1,91 @@ +import pandas as pd +from pandas import DataFrame +from typing import Optional +from annotation.src.utils import extract_before_parenthesis + + +class Accommodations: + def __init__(self, path="../database/accommodations/clean_accommodations_2022.csv"): + self.path = path + self.data = pd.read_csv(self.path).dropna()[['NAME','price','room type', 'house_rules', 'minimum nights', 'maximum occupancy', 'review rate number', 'city']] + print("Accommodations loaded.") + + def load_db(self): + self.data = pd.read_csv(self.path).dropna() + + def run(self, + city: str, + ) -> DataFrame: + """Search for accommodations by city.""" + results = self.data[self.data["city"] == city] + # results = results[results["date"] == date] + # if order == "ascPrice": + # results = results.sort_values(by=["price"], ascending=True) + # elif order == "descPrice": + # results = results.sort_values(by=["price"], ascending=False) + # elif order == "ascRate": + # results = results.sort_values(by=["review rate number"], ascending=True) + # elif order == "descRate": + # results = results.sort_values(by=["review rate number"], ascending=False) + # elif order == "ascMinumNights": + # results = results.sort_values(by=["minimum nights"], ascending=True) + # elif order == "descMinumNights": + # results = results.sort_values(by=["minimum nights"], ascending=False) + # elif order == "ascMaximumOccupancy": + # results = results.sort_values(by=["maximum occupancy"], ascending=True) + # elif order == "descMaximumOccupancy": + # results = results.sort_values(by=["maximum occupancy"], ascending=False) + + # if room_type == "all": + # return results + # elif room_type == "Entire home/apt": + # return results[results["room type"]=="Entire home/apt"] + # elif room_type == "Hotel room": + # return results[results["room type"]=="Hotel room"] + # elif room_type == "Private room": + # return results[results["room type"]=="Private room"] + # elif room_type == "Shared room": + # return results[results["room type"]=="Shared room"] + # else: + # return None + if len(results) == 0: + return "There is no attraction in this city." + + return results + + def run_for_annotation(self, + city: str, + ) -> DataFrame: + """Search for accommodations by city.""" + results = self.data[self.data["city"] == extract_before_parenthesis(city)] + # results = results[results["date"] == date] + # if order == "ascPrice": + # results = results.sort_values(by=["price"], ascending=True) + # elif order == "descPrice": + # results = results.sort_values(by=["price"], ascending=False) + # elif order == "ascRate": + # results = results.sort_values(by=["review rate number"], ascending=True) + # elif order == "descRate": + # results = results.sort_values(by=["review rate number"], ascending=False) + # elif order == "ascMinumNights": + # results = results.sort_values(by=["minimum nights"], ascending=True) + # elif order == "descMinumNights": + # results = results.sort_values(by=["minimum nights"], ascending=False) + # elif order == "ascMaximumOccupancy": + # results = results.sort_values(by=["maximum occupancy"], ascending=True) + # elif order == "descMaximumOccupancy": + # results = results.sort_values(by=["maximum occupancy"], ascending=False) + + # if room_type == "all": + # return results + # elif room_type == "Entire home/apt": + # return results[results["room type"]=="Entire home/apt"] + # elif room_type == "Hotel room": + # return results[results["room type"]=="Hotel room"] + # elif room_type == "Private room": + # return results[results["room type"]=="Private room"] + # elif room_type == "Shared room": + # return results[results["room type"]=="Shared room"] + # else: + # return None + return results \ No newline at end of file diff --git a/tools/accommodations/test.ipynb b/tools/accommodations/test.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..73d47f168732ffe45e3d9c7e0d19f89a205b02b4 --- /dev/null +++ b/tools/accommodations/test.ipynb @@ -0,0 +1,2037 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "ad7592e7", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_2459435/230780042.py:2: DtypeWarning: Columns (25) have mixed types. Specify dtype option on import or set low_memory=False.\n", + " data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/Airbnb_Open_Data.csv')\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/Airbnb_Open_Data.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "f97916a9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idNAMEhost idhost_identity_verifiedhost nameneighbourhood groupneighbourhoodlatlongcountry...service feeminimum nightsnumber of reviewslast reviewreviews per monthreview rate numbercalculated host listings countavailability 365house_ruleslicense
01001254Clean & quiet apt home by the park80014485718unconfirmedMadalineBrooklynKensington40.64749-73.97237United States...$19310.09.010/19/20210.214.06.0286.0Clean up and treat the home the way you'd like...NaN
11002102Skylit Midtown Castle52335172823verifiedJennaManhattanMidtown40.75362-73.98377United States...$2830.045.05/21/20220.384.02.0228.0Pet friendly but please confirm with me if the...NaN
21002403THE VILLAGE OF HARLEM....NEW YORK !78829239556NaNEliseManhattanHarlem40.80902-73.94190United States...$1243.00.0NaNNaN5.01.0352.0I encourage you to use my kitchen, cooking and...NaN
31002755NaN85098326012unconfirmedGarryBrooklynClinton Hill40.68514-73.95976United States...$7430.0270.07/5/20194.644.01.0322.0NaNNaN
41003689Entire Apt: Spacious Studio/Loft by central park92037596077verifiedLyndonManhattanEast Harlem40.79851-73.94399United States...$4110.09.011/19/20180.103.01.0289.0Please no smoking in the house, porch or on th...NaN
..................................................................
1025946092437Spare room in Williamsburg12312296767verifiedKrikBrooklynWilliamsburg40.70862-73.94651United States...$1691.00.0NaNNaN3.01.0227.0No Smoking No Parties or Events of any kind Pl...NaN
1025956092990Best Location near Columbia U77864383453unconfirmedMifanManhattanMorningside Heights40.80460-73.96545United States...$1671.01.07/6/20150.022.02.0395.0House rules: Guests agree to the following ter...NaN
1025966093542Comfy, bright room in Brooklyn69050334417unconfirmedMeganBrooklynPark Slope40.67505-73.98045United States...$1983.00.0NaNNaN5.01.0342.0NaNNaN
1025976094094Big Studio-One Stop from Midtown11160591270unconfirmedChristopherQueensLong Island City40.74989-73.93777United States...$1092.05.010/11/20150.103.01.0386.0NaNNaN
1025986094647585 sf Luxury Studio68170633372unconfirmedRebeccaManhattanUpper West Side40.76807-73.98342United States...$2061.00.0NaNNaN3.01.069.0NaNNaN
\n", + "

102599 rows × 26 columns

\n", + "
" + ], + "text/plain": [ + " id NAME \n", + "0 1001254 Clean & quiet apt home by the park \\\n", + "1 1002102 Skylit Midtown Castle \n", + "2 1002403 THE VILLAGE OF HARLEM....NEW YORK ! \n", + "3 1002755 NaN \n", + "4 1003689 Entire Apt: Spacious Studio/Loft by central park \n", + "... ... ... \n", + "102594 6092437 Spare room in Williamsburg \n", + "102595 6092990 Best Location near Columbia U \n", + "102596 6093542 Comfy, bright room in Brooklyn \n", + "102597 6094094 Big Studio-One Stop from Midtown \n", + "102598 6094647 585 sf Luxury Studio \n", + "\n", + " host id host_identity_verified host name neighbourhood group \n", + "0 80014485718 unconfirmed Madaline Brooklyn \\\n", + "1 52335172823 verified Jenna Manhattan \n", + "2 78829239556 NaN Elise Manhattan \n", + "3 85098326012 unconfirmed Garry Brooklyn \n", + "4 92037596077 verified Lyndon Manhattan \n", + "... ... ... ... ... \n", + "102594 12312296767 verified Krik Brooklyn \n", + "102595 77864383453 unconfirmed Mifan Manhattan \n", + "102596 69050334417 unconfirmed Megan Brooklyn \n", + "102597 11160591270 unconfirmed Christopher Queens \n", + "102598 68170633372 unconfirmed Rebecca Manhattan \n", + "\n", + " neighbourhood lat long country ... \n", + "0 Kensington 40.64749 -73.97237 United States ... \\\n", + "1 Midtown 40.75362 -73.98377 United States ... \n", + "2 Harlem 40.80902 -73.94190 United States ... \n", + "3 Clinton Hill 40.68514 -73.95976 United States ... \n", + "4 East Harlem 40.79851 -73.94399 United States ... \n", + "... ... ... ... ... ... \n", + "102594 Williamsburg 40.70862 -73.94651 United States ... \n", + "102595 Morningside Heights 40.80460 -73.96545 United States ... \n", + "102596 Park Slope 40.67505 -73.98045 United States ... \n", + "102597 Long Island City 40.74989 -73.93777 United States ... \n", + "102598 Upper West Side 40.76807 -73.98342 United States ... \n", + "\n", + " service fee minimum nights number of reviews last review \n", + "0 $193 10.0 9.0 10/19/2021 \\\n", + "1 $28 30.0 45.0 5/21/2022 \n", + "2 $124 3.0 0.0 NaN \n", + "3 $74 30.0 270.0 7/5/2019 \n", + "4 $41 10.0 9.0 11/19/2018 \n", + "... ... ... ... ... \n", + "102594 $169 1.0 0.0 NaN \n", + "102595 $167 1.0 1.0 7/6/2015 \n", + "102596 $198 3.0 0.0 NaN \n", + "102597 $109 2.0 5.0 10/11/2015 \n", + "102598 $206 1.0 0.0 NaN \n", + "\n", + " reviews per month review rate number calculated host listings count \n", + "0 0.21 4.0 6.0 \\\n", + "1 0.38 4.0 2.0 \n", + "2 NaN 5.0 1.0 \n", + "3 4.64 4.0 1.0 \n", + "4 0.10 3.0 1.0 \n", + "... ... ... ... \n", + "102594 NaN 3.0 1.0 \n", + "102595 0.02 2.0 2.0 \n", + "102596 NaN 5.0 1.0 \n", + "102597 0.10 3.0 1.0 \n", + "102598 NaN 3.0 1.0 \n", + "\n", + " availability 365 house_rules \n", + "0 286.0 Clean up and treat the home the way you'd like... \\\n", + "1 228.0 Pet friendly but please confirm with me if the... \n", + "2 352.0 I encourage you to use my kitchen, cooking and... \n", + "3 322.0 NaN \n", + "4 289.0 Please no smoking in the house, porch or on th... \n", + "... ... ... \n", + "102594 227.0 No Smoking No Parties or Events of any kind Pl... \n", + "102595 395.0 House rules: Guests agree to the following ter... \n", + "102596 342.0 NaN \n", + "102597 386.0 NaN \n", + "102598 69.0 NaN \n", + "\n", + " license \n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "... ... \n", + "102594 NaN \n", + "102595 NaN \n", + "102596 NaN \n", + "102597 NaN \n", + "102598 NaN \n", + "\n", + "[102599 rows x 26 columns]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "e21af5d1", + "metadata": {}, + "outputs": [], + "source": [ + "flight = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/flights/clean_Flights_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "966feef9", + "metadata": {}, + "outputs": [], + "source": [ + "flight = flight.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "3f4fe062", + "metadata": {}, + "outputs": [], + "source": [ + "data_dict = data.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "33213ac0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[2, '2022-04-04', '15:14', '16:36', 251.0, 'Durango', 'Denver', 100]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "flight['data'][2]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "9cef6161", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "nan\n" + ] + } + ], + "source": [ + "print(str(data_dict['data'][3][24]))" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "c5f81f43", + "metadata": {}, + "outputs": [], + "source": [ + "city_set = set()\n", + "cnt = 0\n", + "for unit in data_dict['data']:\n", + " if str(unit[24]) != 'nan':\n", + " cnt += 1" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "533a5aa6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "50468" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cnt" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "bfce5f56", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "set()" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "city_set" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "230b760c", + "metadata": {}, + "outputs": [ + { + "ename": "ValueError", + "evalue": "Sample larger than population or is negative", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[12], line 3\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mrandom\u001b[39;00m\n\u001b[1;32m 2\u001b[0m city_set \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(city_set)\n\u001b[0;32m----> 3\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[43mrandom\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample\u001b[49m\u001b[43m(\u001b[49m\u001b[43mcity_set\u001b[49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m)\u001b[49m)\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/random.py:449\u001b[0m, in \u001b[0;36mRandom.sample\u001b[0;34m(self, population, k, counts)\u001b[0m\n\u001b[1;32m 447\u001b[0m randbelow \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_randbelow\n\u001b[1;32m 448\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;241m0\u001b[39m \u001b[38;5;241m<\u001b[39m\u001b[38;5;241m=\u001b[39m k \u001b[38;5;241m<\u001b[39m\u001b[38;5;241m=\u001b[39m n:\n\u001b[0;32m--> 449\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mSample larger than population or is negative\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 450\u001b[0m result \u001b[38;5;241m=\u001b[39m [\u001b[38;5;28;01mNone\u001b[39;00m] \u001b[38;5;241m*\u001b[39m k\n\u001b[1;32m 451\u001b[0m setsize \u001b[38;5;241m=\u001b[39m \u001b[38;5;241m21\u001b[39m \u001b[38;5;66;03m# size of a small set minus size of an empty list\u001b[39;00m\n", + "\u001b[0;31mValueError\u001b[0m: Sample larger than population or is negative" + ] + } + ], + "source": [ + "import random\n", + "city_set = list(city_set)\n", + "print(random.sample(city_set,1))" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "61eddd5f", + "metadata": {}, + "outputs": [ + { + "ename": "AttributeError", + "evalue": "'dict' object has no attribute 'to_dict'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[12], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m data_dict \u001b[38;5;241m=\u001b[39m \u001b[43mdata\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mto_dict\u001b[49m(orient \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124msplit\u001b[39m\u001b[38;5;124m'\u001b[39m)\n", + "\u001b[0;31mAttributeError\u001b[0m: 'dict' object has no attribute 'to_dict'" + ] + } + ], + "source": [ + "data_dict = data.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "3292c450", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Unnamed: 0',\n", + " 'NAME',\n", + " 'room type',\n", + " 'price',\n", + " 'minimum nights',\n", + " 'review rate number',\n", + " 'house_rules',\n", + " 'maximum occupancy',\n", + " 'city']" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_dict['columns']" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "id": "cfaa21d9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "5047" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(data_dict['data'])" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "2980362d", + "metadata": {}, + "outputs": [], + "source": [ + "type_set = set()\n", + "for unit in data_dict['data']:\n", + " type_set.add(unit[2])" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "f5e36fbb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Entire home/apt', 'Private room', 'Shared room'}" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "type_set" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "bf1231c4", + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'data_dict' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[15], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mdata_dict\u001b[49m[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mdata\u001b[39m\u001b[38;5;124m'\u001b[39m][\u001b[38;5;241m147\u001b[39m]\n", + "\u001b[0;31mNameError\u001b[0m: name 'data_dict' is not defined" + ] + } + ], + "source": [ + "data_dict['data'][147]" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "f993b894", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "set()" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "type_set" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "916e9470", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1 NAME\n", + "7 lat\n", + "8 long\n", + "13 room type\n", + "15 price\n", + "17 minimum nights\n", + "21 review rate number\n", + "24 house_rules\n" + ] + } + ], + "source": [ + "for idx, unit in enumerate(data_dict['columns']):\n", + " if unit in ['NAME','lat', 'long', 'room type', 'price','minimum nights','review rate number','house_rules']:\n", + " print(idx,unit)" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "id": "1213484d", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "51764c1a3739416289913ec613816cc7", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "0it [00:00, ?it/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_3241846/557604333.py:23: DeprecationWarning: Sampling from a set deprecated\n", + "since Python 3.9 and will be removed in a subsequent version.\n", + " tmp_dict[\"city\"] = random.sample(city_set,1)[0]\n" + ] + }, + { + "ename": "ValueError", + "evalue": "Sample larger than population or is negative", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[73], line 23\u001b[0m\n\u001b[1;32m 21\u001b[0m tmp_dict[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mreview rate number\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m unit[\u001b[38;5;241m21\u001b[39m]\n\u001b[1;32m 22\u001b[0m tmp_dict[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhouse_rules\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m unit[\u001b[38;5;241m24\u001b[39m]\n\u001b[0;32m---> 23\u001b[0m tmp_dict[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcity\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[43mrandom\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample\u001b[49m\u001b[43m(\u001b[49m\u001b[43mcity_set\u001b[49m\u001b[43m,\u001b[49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m)\u001b[49m[\u001b[38;5;241m0\u001b[39m]\n\u001b[1;32m 24\u001b[0m new_data\u001b[38;5;241m.\u001b[39mappend(tmp_dict)\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/random.py:449\u001b[0m, in \u001b[0;36mRandom.sample\u001b[0;34m(self, population, k, counts)\u001b[0m\n\u001b[1;32m 447\u001b[0m randbelow \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_randbelow\n\u001b[1;32m 448\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;241m0\u001b[39m \u001b[38;5;241m<\u001b[39m\u001b[38;5;241m=\u001b[39m k \u001b[38;5;241m<\u001b[39m\u001b[38;5;241m=\u001b[39m n:\n\u001b[0;32m--> 449\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mSample larger than population or is negative\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 450\u001b[0m result \u001b[38;5;241m=\u001b[39m [\u001b[38;5;28;01mNone\u001b[39;00m] \u001b[38;5;241m*\u001b[39m k\n\u001b[1;32m 451\u001b[0m setsize \u001b[38;5;241m=\u001b[39m \u001b[38;5;241m21\u001b[39m \u001b[38;5;66;03m# size of a small set minus size of an empty list\u001b[39;00m\n", + "\u001b[0;31mValueError\u001b[0m: Sample larger than population or is negative" + ] + } + ], + "source": [ + "from tqdm.autonotebook import tqdm\n", + "import random\n", + "new_data = []\n", + "for idx, unit in tqdm(enumerate(data_dict['data'])):\n", + " tmp_dict = {k:\"\" for k in ['NAME','room type', 'price','minimum nights','review rate number','house_rules']}\n", + " tmp_dict[\"NAME\"] = unit[1]\n", + " tmp_dict[\"room type\"] = unit[13]\n", + " if unit[13] == \"Shared room\":\n", + " tmp_dict[\"maximum occupancy\"] = 1\n", + " elif unit[13] == \"Hotel room\":\n", + " tmp_dict[\"maximum occupancy\"] = random.randint(1, 2)\n", + " elif unit[13] == \"Private room\":\n", + " tmp_dict[\"maximum occupancy\"] = random.randint(1, 2)\n", + " elif unit[13] == \"Entire home/apt\":\n", + " try:\n", + " tmp_dict[\"maximum occupancy\"] = random.randint(2, max(3,eval(unit[15].replace(\"$\",\"\").replace(\",\",\"\"))//100))\n", + " except:\n", + " tmp_dict[\"maximum occupancy\"] = random.randint(2, max(3,unit[15]//100))\n", + " tmp_dict[\"price\"] = unit[15].replace(\"$\",\"\").replace(\",\",\"\")\n", + " tmp_dict[\"minimum nights\"] = unit[17]\n", + " tmp_dict[\"review rate number\"] = unit[21]\n", + " tmp_dict[\"house_rules\"] = unit[24]\n", + " tmp_dict[\"city\"] = random.sample(city_set,1)[0]\n", + " new_data.append(tmp_dict)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "fd3e8257", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "102599" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(new_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "bfb243c0", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(new_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "af7e3411", + "metadata": {}, + "outputs": [], + "source": [ + "df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/clean_hotels_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "71d21fea", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NAMEroom typepriceminimum nightsreview rate numberhouse_rulesmaximum occupancycity
0Clean & quiet apt home by the parkPrivate room$96610.04.0Clean up and treat the home the way you'd like...1Des Moines
1Skylit Midtown CastleEntire home/apt$14230.04.0Pet friendly but please confirm with me if the...2Wilmington
2THE VILLAGE OF HARLEM....NEW YORK !Private room$6203.05.0I encourage you to use my kitchen, cooking and...2St. George
3NaNEntire home/apt$36830.04.0NaN2Kalamazoo
4Entire Apt: Spacious Studio/Loft by central parkEntire home/apt$20410.03.0Please no smoking in the house, porch or on th...3Cheyenne
...........................
102594Spare room in WilliamsburgPrivate room$8441.03.0No Smoking No Parties or Events of any kind Pl...1White Plains
102595Best Location near Columbia UPrivate room$8371.02.0House rules: Guests agree to the following ter...2Mosinee
102596Comfy, bright room in BrooklynPrivate room$9883.05.0NaN2Amarillo
102597Big Studio-One Stop from MidtownEntire home/apt$5462.03.0NaN4Binghamton
102598585 sf Luxury StudioEntire home/apt$1,0321.03.0NaN7Flint
\n", + "

102599 rows × 8 columns

\n", + "
" + ], + "text/plain": [ + " NAME room type \n", + "0 Clean & quiet apt home by the park Private room \\\n", + "1 Skylit Midtown Castle Entire home/apt \n", + "2 THE VILLAGE OF HARLEM....NEW YORK ! Private room \n", + "3 NaN Entire home/apt \n", + "4 Entire Apt: Spacious Studio/Loft by central park Entire home/apt \n", + "... ... ... \n", + "102594 Spare room in Williamsburg Private room \n", + "102595 Best Location near Columbia U Private room \n", + "102596 Comfy, bright room in Brooklyn Private room \n", + "102597 Big Studio-One Stop from Midtown Entire home/apt \n", + "102598 585 sf Luxury Studio Entire home/apt \n", + "\n", + " price minimum nights review rate number \n", + "0 $966 10.0 4.0 \\\n", + "1 $142 30.0 4.0 \n", + "2 $620 3.0 5.0 \n", + "3 $368 30.0 4.0 \n", + "4 $204 10.0 3.0 \n", + "... ... ... ... \n", + "102594 $844 1.0 3.0 \n", + "102595 $837 1.0 2.0 \n", + "102596 $988 3.0 5.0 \n", + "102597 $546 2.0 3.0 \n", + "102598 $1,032 1.0 3.0 \n", + "\n", + " house_rules maximum occupancy \n", + "0 Clean up and treat the home the way you'd like... 1 \\\n", + "1 Pet friendly but please confirm with me if the... 2 \n", + "2 I encourage you to use my kitchen, cooking and... 2 \n", + "3 NaN 2 \n", + "4 Please no smoking in the house, porch or on th... 3 \n", + "... ... ... \n", + "102594 No Smoking No Parties or Events of any kind Pl... 1 \n", + "102595 House rules: Guests agree to the following ter... 2 \n", + "102596 NaN 2 \n", + "102597 NaN 4 \n", + "102598 NaN 7 \n", + "\n", + " city \n", + "0 Des Moines \n", + "1 Wilmington \n", + "2 St. George \n", + "3 Kalamazoo \n", + "4 Cheyenne \n", + "... ... \n", + "102594 White Plains \n", + "102595 Mosinee \n", + "102596 Amarillo \n", + "102597 Binghamton \n", + "102598 Flint \n", + "\n", + "[102599 rows x 8 columns]" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "id": "0ec56283", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/clean_hotels_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "id": "5dc27048", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0NAMEroom typepriceminimum nightsreview rate numberhouse_rulesmaximum occupancycity
00Clean & quiet apt home by the parkPrivate room$96610.04.0Clean up and treat the home the way you'd like...1Des Moines
11Skylit Midtown CastleEntire home/apt$14230.04.0Pet friendly but please confirm with me if the...2Wilmington
22THE VILLAGE OF HARLEM....NEW YORK !Private room$6203.05.0I encourage you to use my kitchen, cooking and...2St. George
33NaNEntire home/apt$36830.04.0NaN2Kalamazoo
44Entire Apt: Spacious Studio/Loft by central parkEntire home/apt$20410.03.0Please no smoking in the house, porch or on th...3Cheyenne
..............................
102594102594Spare room in WilliamsburgPrivate room$8441.03.0No Smoking No Parties or Events of any kind Pl...1White Plains
102595102595Best Location near Columbia UPrivate room$8371.02.0House rules: Guests agree to the following ter...2Mosinee
102596102596Comfy, bright room in BrooklynPrivate room$9883.05.0NaN2Amarillo
102597102597Big Studio-One Stop from MidtownEntire home/apt$5462.03.0NaN4Binghamton
102598102598585 sf Luxury StudioEntire home/apt$1,0321.03.0NaN7Flint
\n", + "

102599 rows × 9 columns

\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 NAME \n", + "0 0 Clean & quiet apt home by the park \\\n", + "1 1 Skylit Midtown Castle \n", + "2 2 THE VILLAGE OF HARLEM....NEW YORK ! \n", + "3 3 NaN \n", + "4 4 Entire Apt: Spacious Studio/Loft by central park \n", + "... ... ... \n", + "102594 102594 Spare room in Williamsburg \n", + "102595 102595 Best Location near Columbia U \n", + "102596 102596 Comfy, bright room in Brooklyn \n", + "102597 102597 Big Studio-One Stop from Midtown \n", + "102598 102598 585 sf Luxury Studio \n", + "\n", + " room type price minimum nights review rate number \n", + "0 Private room $966 10.0 4.0 \\\n", + "1 Entire home/apt $142 30.0 4.0 \n", + "2 Private room $620 3.0 5.0 \n", + "3 Entire home/apt $368 30.0 4.0 \n", + "4 Entire home/apt $204 10.0 3.0 \n", + "... ... ... ... ... \n", + "102594 Private room $844 1.0 3.0 \n", + "102595 Private room $837 1.0 2.0 \n", + "102596 Private room $988 3.0 5.0 \n", + "102597 Entire home/apt $546 2.0 3.0 \n", + "102598 Entire home/apt $1,032 1.0 3.0 \n", + "\n", + " house_rules maximum occupancy \n", + "0 Clean up and treat the home the way you'd like... 1 \\\n", + "1 Pet friendly but please confirm with me if the... 2 \n", + "2 I encourage you to use my kitchen, cooking and... 2 \n", + "3 NaN 2 \n", + "4 Please no smoking in the house, porch or on th... 3 \n", + "... ... ... \n", + "102594 No Smoking No Parties or Events of any kind Pl... 1 \n", + "102595 House rules: Guests agree to the following ter... 2 \n", + "102596 NaN 2 \n", + "102597 NaN 4 \n", + "102598 NaN 7 \n", + "\n", + " city \n", + "0 Des Moines \n", + "1 Wilmington \n", + "2 St. George \n", + "3 Kalamazoo \n", + "4 Cheyenne \n", + "... ... \n", + "102594 White Plains \n", + "102595 Mosinee \n", + "102596 Amarillo \n", + "102597 Binghamton \n", + "102598 Flint \n", + "\n", + "[102599 rows x 9 columns]" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "id": "bebb9c93", + "metadata": {}, + "outputs": [], + "source": [ + "filtered_data = data[data.iloc[:, -3].notna()]" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "id": "bd010fc9", + "metadata": {}, + "outputs": [], + "source": [ + "dict_representation = filtered_data.to_dict(orient='split')" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "id": "e84db5c4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "50468" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(dict_representation['data'])" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "id": "31eaadf3", + "metadata": {}, + "outputs": [], + "source": [ + "sample_df = filtered_data.sample(frac=0.1)" + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "id": "33998ec6", + "metadata": {}, + "outputs": [], + "source": [ + "sample_df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/clean_hotels_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "id": "25396015", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "5047" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(sample_df)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "17d054b5", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/clean_hotels_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "64db8d6c", + "metadata": {}, + "outputs": [], + "source": [ + "data_dict = data.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "b32b2f0c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0 Unnamed: 0.1\n", + "1 Unnamed: 0\n", + "2 NAME\n", + "3 room type\n", + "4 price\n", + "5 minimum nights\n", + "6 review rate number\n", + "7 house_rules\n", + "8 maximum occupancy\n", + "9 city\n" + ] + } + ], + "source": [ + "for idx, unit in enumerate(data_dict['columns']):\n", + " print(idx,unit)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "fe415c1c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[0,\n", + " 'Beautiful room upper manhttn.',\n", + " 'Private room',\n", + " 131.0,\n", + " 1.0,\n", + " 2.0,\n", + " 'No smoking. No pets. ',\n", + " 1,\n", + " 'Christiansted']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_dict['data'][0]" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "id": "38cb5c5a", + "metadata": {}, + "outputs": [], + "source": [ + "import random\n", + "new_data = []\n", + "for idx, unit in enumerate(data_dict['data']):\n", + " tmp_dict = {k:j for k,j in zip(['NAME','room type', 'price','minimum nights','review rate number','house_rules','maximum occupancy','city'],unit[1:])}\n", + " if type(unit[4]) == str:\n", + " tmp_dict[\"price\"] = eval(unit[4].replace(\"$\",\"\").replace(\",\",\"\"))\n", + " house_rules_number = random.choice([0,1,1,1,2,2,3])\n", + " tmp_dict['house_rules'] = \" & \".join(x for x in random.sample([\"No parties\",\"No smoking\",\"No children under 10\",\"No pets\",\"No visitors\"],house_rules_number))\n", + " tmp_dict['city'] = tmp_dict['city'].split('/')[0]\n", + " new_data.append(tmp_dict)" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "id": "ae3d551e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'NAME': 'BIG room with bath & balcony in BK!',\n", + " 'room type': 'Private room',\n", + " 'price': 1123.0,\n", + " 'minimum nights': 1.0,\n", + " 'review rate number': 4.0,\n", + " 'house_rules': 'No parties',\n", + " 'maximum occupancy': 2,\n", + " 'city': 'Louisville'}" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_data[2]" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "id": "6fac856c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "----------\n", + "No pets & No visitors & No smoking\n", + "----------\n", + "No parties & No visitors\n", + "----------\n", + "No children under 10 & No pets & No smoking\n", + "----------\n", + "No parties & No pets & No visitors\n", + "----------\n", + "No pets & No children under 10\n", + "----------\n", + "No children under 10 & No parties & No pets\n", + "----------\n", + "No visitors\n", + "----------\n", + "No parties & No children under 10\n", + "----------\n", + "No children under 10 & No smoking & No visitors\n", + "----------\n", + "No children under 10 & No parties & No smoking\n", + "----------\n", + "No pets & No smoking & No children under 10\n", + "----------\n", + "No pets & No visitors\n", + "----------\n", + "No visitors & No pets\n", + "----------\n", + "No children under 10 & No smoking & No pets\n", + "----------\n", + "No smoking & No parties & No pets\n", + "----------\n", + "No visitors & No children under 10 & No parties\n", + "----------\n", + "No parties & No children under 10 & No smoking\n", + "----------\n", + "No visitors & No children under 10 & No smoking\n", + "----------\n", + "No pets & No parties\n", + "----------\n", + "No smoking & No parties\n", + "----------\n", + "No smoking & No children under 10\n", + "----------\n", + "No parties & No children under 10 & No visitors\n", + "----------\n", + "No children under 10 & No smoking\n", + "----------\n", + "No visitors & No pets & No smoking\n", + "----------\n", + "No pets\n", + "----------\n", + "No children under 10 & No pets\n", + "----------\n", + "No visitors & No smoking\n", + "----------\n", + "No smoking\n", + "----------\n", + "No parties & No smoking & No children under 10\n", + "----------\n", + "No parties & No smoking\n", + "----------\n", + "No smoking & No visitors & No parties\n", + "----------\n", + "No pets & No smoking\n", + "----------\n", + "No pets & No smoking & No parties\n", + "----------\n", + "No smoking & No children under 10 & No visitors\n", + "----------\n", + "No parties & No smoking & No visitors\n", + "----------\n", + "No visitors & No parties\n", + "----------\n", + "No visitors & No children under 10\n", + "----------\n", + "No parties & No smoking & No pets\n", + "----------\n", + "No children under 10 & No pets & No visitors\n", + "----------\n", + "No smoking & No pets & No parties\n", + "----------\n", + "No children under 10 & No smoking & No parties\n", + "----------\n", + "No visitors & No children under 10 & No pets\n", + "----------\n", + "No children under 10 & No parties\n", + "----------\n", + "No pets & No parties & No visitors\n", + "----------\n", + "No children under 10 & No visitors & No parties\n", + "----------\n", + "No parties & No pets\n", + "----------\n", + "No visitors & No parties & No pets\n", + "----------\n", + "No smoking & No pets & No visitors\n", + "----------\n", + "No smoking & No pets\n", + "----------\n", + "No visitors & No smoking & No children under 10\n", + "----------\n", + "No pets & No children under 10 & No parties\n", + "----------\n", + "No visitors & No pets & No children under 10\n", + "----------\n", + "No pets & No children under 10 & No smoking\n", + "----------\n", + "No parties & No visitors & No children under 10\n", + "----------\n", + "No pets & No smoking & No visitors\n", + "----------\n", + "No pets & No parties & No smoking\n", + "----------\n", + "No parties & No visitors & No smoking\n", + "----------\n", + "No pets & No visitors & No children under 10\n", + "----------\n", + "No parties & No visitors & No pets\n", + "----------\n", + "No children under 10\n", + "----------\n", + "No children under 10 & No pets & No parties\n", + "----------\n", + "No children under 10 & No visitors & No smoking\n", + "----------\n", + "No smoking & No children under 10 & No parties\n", + "----------\n", + "No pets & No parties & No children under 10\n", + "----------\n", + "No children under 10 & No visitors & No pets\n", + "----------\n", + "No parties & No pets & No smoking\n", + "----------\n", + "No pets & No children under 10 & No visitors\n", + "----------\n", + "No parties & No children under 10 & No pets\n", + "----------\n", + "No parties & No pets & No children under 10\n", + "----------\n", + "No smoking & No parties & No visitors\n", + "----------\n", + "No parties\n", + "----------\n", + "No visitors & No pets & No parties\n", + "----------\n", + "No children under 10 & No visitors\n", + "----------\n", + "No smoking & No children under 10 & No pets\n", + "----------\n", + "No smoking & No parties & No children under 10\n", + "----------\n", + "No visitors & No smoking & No parties\n", + "----------\n", + "No pets & No visitors & No parties\n", + "----------\n", + "No smoking & No visitors\n", + "----------\n", + "No smoking & No visitors & No children under 10\n", + "----------\n", + "No visitors & No smoking & No pets\n", + "----------\n", + "No smoking & No visitors & No pets\n", + "----------\n", + "No visitors & No parties & No smoking\n", + "----------\n", + "No smoking & No pets & No children under 10\n", + "----------\n", + "No children under 10 & No parties & No visitors\n", + "----------\n", + "No visitors & No parties & No children under 10\n", + "----------\n" + ] + } + ], + "source": [ + "maximum_occupancy_set = set()\n", + "for unit in new_data:\n", + " maximum_occupancy_set.add(unit['house_rules'])\n", + "for unit in maximum_occupancy_set:\n", + " print(unit)\n", + " print(\"----------\")" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "id": "8056052a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NAMEroom typepriceminimum nightsreview rate numberhouse_rulesmaximum occupancycity
0Beautiful room upper manhttn.Private room131.01.02.0No smoking1Christiansted
1Roomy and Comftable RoomPrivate room548.010.05.0No children under 10 & No parties2Laredo
2BIG room with bath & balcony in BK!Private room1123.01.04.0No parties2Louisville
34A-Entire home/apt225.030.04.0No pets3Greensboro
4Nice and Comfortable Private RoomPrivate room761.02.01.0No smoking & No parties2Cape Girardeau
...........................
5042Amazing LOFT in Prime WilliamsburgPrivate room249.05.05.0No pets2Trenton
5043Private Queen Bedroom in BrooklynPrivate room1032.01.01.0No pets1Des Moines
5044Bushwick / Bed Sty RetreatPrivate room546.02.04.0No children under 10 & No visitors & No smoking2Scottsbluff
5045Charming Mid-Century StudioEntire home/apt1115.02.05.0No pets & No children under 107Butte
50463 Bed/ 2 Bath Full Apt. BK HeightsEntire home/apt396.02.01.0No smoking3Norfolk
\n", + "

5047 rows × 8 columns

\n", + "
" + ], + "text/plain": [ + " NAME room type price \n", + "0 Beautiful room upper manhttn. Private room 131.0 \\\n", + "1 Roomy and Comftable Room Private room 548.0 \n", + "2 BIG room with bath & balcony in BK! Private room 1123.0 \n", + "3 4A- Entire home/apt 225.0 \n", + "4 Nice and Comfortable Private Room Private room 761.0 \n", + "... ... ... ... \n", + "5042 Amazing LOFT in Prime Williamsburg Private room 249.0 \n", + "5043 Private Queen Bedroom in Brooklyn Private room 1032.0 \n", + "5044 Bushwick / Bed Sty Retreat Private room 546.0 \n", + "5045 Charming Mid-Century Studio Entire home/apt 1115.0 \n", + "5046 3 Bed/ 2 Bath Full Apt. BK Heights Entire home/apt 396.0 \n", + "\n", + " minimum nights review rate number \n", + "0 1.0 2.0 \\\n", + "1 10.0 5.0 \n", + "2 1.0 4.0 \n", + "3 30.0 4.0 \n", + "4 2.0 1.0 \n", + "... ... ... \n", + "5042 5.0 5.0 \n", + "5043 1.0 1.0 \n", + "5044 2.0 4.0 \n", + "5045 2.0 5.0 \n", + "5046 2.0 1.0 \n", + "\n", + " house_rules maximum occupancy \n", + "0 No smoking 1 \\\n", + "1 No children under 10 & No parties 2 \n", + "2 No parties 2 \n", + "3 No pets 3 \n", + "4 No smoking & No parties 2 \n", + "... ... ... \n", + "5042 No pets 2 \n", + "5043 No pets 1 \n", + "5044 No children under 10 & No visitors & No smoking 2 \n", + "5045 No pets & No children under 10 7 \n", + "5046 No smoking 3 \n", + "\n", + " city \n", + "0 Christiansted \n", + "1 Laredo \n", + "2 Louisville \n", + "3 Greensboro \n", + "4 Cape Girardeau \n", + "... ... \n", + "5042 Trenton \n", + "5043 Des Moines \n", + "5044 Scottsbluff \n", + "5045 Butte \n", + "5046 Norfolk \n", + "\n", + "[5047 rows x 8 columns]" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "54423e0d", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(new_data)\n", + "df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/clean_hotels_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5767aa80", + "metadata": {}, + "outputs": [], + "source": [ + "df.rename(columns={'old_name1': 'new_name1', 'old_name2': 'new_name2'}, inplace=True)\n", + "df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/clean_hotels_2022.csv')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.16" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/tools/accommodations/test.py b/tools/accommodations/test.py new file mode 100644 index 0000000000000000000000000000000000000000..d73761e75972f9c303fb50127bf1a75dbabc9210 --- /dev/null +++ b/tools/accommodations/test.py @@ -0,0 +1,12 @@ +from tools.accommodations.apis import Hotels +import pandas as pd + +# 设置显示所有列 +pd.set_option('display.max_columns', 100) + +# 设置显示所有行 +pd.set_option('display.max_rows', 100) + +hotel = Hotels('/home/xj/toolAugEnv/code/toolConstraint/database/hotels/clean_hotels_2022.csv') +data = hotel.run('New York') +print(data) \ No newline at end of file diff --git a/tools/attractions/__pycache__/apis.cpython-39.pyc b/tools/attractions/__pycache__/apis.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d41f4ede85d84cbb59e94be47a492042bdfc8d4e Binary files /dev/null and b/tools/attractions/__pycache__/apis.cpython-39.pyc differ diff --git a/tools/attractions/apis.py b/tools/attractions/apis.py new file mode 100644 index 0000000000000000000000000000000000000000..586bc9d6d8bfd6a1aaf82968ec86e3fa89a732ca --- /dev/null +++ b/tools/attractions/apis.py @@ -0,0 +1,34 @@ +import pandas as pd +from pandas import DataFrame +from typing import Optional +from annotation.src.utils import extract_before_parenthesis + + +class Attractions: + def __init__(self, path="../database/attractions/attractions.csv"): + self.path = path + self.data = pd.read_csv(self.path).dropna()[['Name','Latitude','Longitude','Address','Phone','Website',"City"]] + print("Attractions loaded.") + + def load_db(self): + self.data = pd.read_csv(self.path) + + def run(self, + city: str, + ) -> DataFrame: + """Search for Accommodations by city and date.""" + results = self.data[self.data["City"] == city] + # the results should show the index + results = results.reset_index(drop=True) + if len(results) == 0: + return "There is no attraction in this city." + return results + + def run_for_annotation(self, + city: str, + ) -> DataFrame: + """Search for Accommodations by city and date.""" + results = self.data[self.data["City"] == extract_before_parenthesis(city)] + # the results should show the index + results = results.reset_index(drop=True) + return results \ No newline at end of file diff --git a/tools/attractions/test.py b/tools/attractions/test.py new file mode 100644 index 0000000000000000000000000000000000000000..552ab4df05b33718f7d76df09e01b7a15963e6af --- /dev/null +++ b/tools/attractions/test.py @@ -0,0 +1,17 @@ +from tools.attractions.apis import Attractions +import pandas as pd +import sys +import os +sys.path.append(os.path.abspath(os.path.join(os.getcwd(), ".."))) +os.chdir(os.path.dirname(os.path.abspath(__file__))) +unique_cities = Attractions(path="../../database/attractions/attractions.csv").data['City'].unique() +df = Attractions(path="../../database/attractions/attractions.csv").data +print(len(df)) +citySet = open('../../database/background/citySet.txt','r').read().split('\n') +cnt = 0 +for city in unique_cities: + if city not in citySet: + df = df[df['City'] != city] +print(len(df)) + +df.to_csv('../../database/attractions/attractions2.csv', index=False) \ No newline at end of file diff --git a/tools/cities/__pycache__/apis.cpython-39.pyc b/tools/cities/__pycache__/apis.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e0105c2b8f8f518bd30d6ee5d8230a02a652d417 Binary files /dev/null and b/tools/cities/__pycache__/apis.cpython-39.pyc differ diff --git a/tools/cities/apis.py b/tools/cities/apis.py new file mode 100644 index 0000000000000000000000000000000000000000..046165cd3794f219a5d8ca7ae2ee3398843993bd --- /dev/null +++ b/tools/cities/apis.py @@ -0,0 +1,23 @@ +from pandas import DataFrame + +class Cities: + def __init__(self ,path="../database/background/citySet_with_states.txt") -> None: + self.path = path + self.load_data() + print("Cities loaded.") + + def load_data(self): + cityStateMapping = open(self.path, "r").read().strip().split("\n") + self.data = {} + for unit in cityStateMapping: + city, state = unit.split("\t") + if state not in self.data: + self.data[state] = [city] + else: + self.data[state].append(city) + + def run(self, state) -> dict: + if state not in self.data: + return ValueError("Invalid State") + else: + return self.data[state] \ No newline at end of file diff --git a/tools/cities/test.py b/tools/cities/test.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tools/flights/.ipynb_checkpoints/test-checkpoint.ipynb b/tools/flights/.ipynb_checkpoints/test-checkpoint.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..66c9139fd0b841355c8d618f524b9ec720e8add9 --- /dev/null +++ b/tools/flights/.ipynb_checkpoints/test-checkpoint.ipynb @@ -0,0 +1,1355 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 8, + "id": "041c9721", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/flights/Combined_Flights_2022.csv')\n", + "# df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/flights/clean_Flights_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "03d0f39e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FlightDateAirlineOriginDestCancelledDivertedCRSDepTimeDepTimeDepDelayMinutesDepDelay...WheelsOffWheelsOnTaxiInCRSArrTimeArrDelayArrDel15ArrivalDelayGroupsArrTimeBlkDistanceGroupDivAirportLandings
02022-04-04Commutair Aka Champlain Enterprises, Inc.GJTDENFalseFalse11331123.00.0-10.0...1140.01220.08.01245-17.00.0-2.01200-125910
12022-04-04Commutair Aka Champlain Enterprises, Inc.HRLIAHFalseFalse732728.00.0-4.0...744.0839.09.0849-1.00.0-1.00800-085920
22022-04-04Commutair Aka Champlain Enterprises, Inc.DRODENFalseFalse15291514.00.0-15.0...1535.01622.014.01639-3.00.0-1.01600-165920
32022-04-04Commutair Aka Champlain Enterprises, Inc.IAHGPTFalseFalse14351430.00.0-5.0...1446.01543.04.01605-18.00.0-2.01600-165920
42022-04-04Commutair Aka Champlain Enterprises, Inc.DRODENFalseFalse11351135.00.00.0...1154.01243.08.012456.00.00.01200-125920
..................................................................
40783132022-03-31Republic AirlinesMSYEWRFalseTrue19492014.025.025.0...2031.0202.032.02354NaNNaNNaN2300-235951
40783142022-03-17Republic AirlinesCLTEWRTrueFalse17331817.044.044.0...NaNNaNNaN1942NaNNaNNaN1900-195930
40783152022-03-08Republic AirlinesALBORDFalseFalse17002318.0378.0378.0...2337.052.07.01838381.01.012.01800-185930
40783162022-03-25Republic AirlinesEWRPITFalseTrue21292322.0113.0113.0...2347.0933.06.02255NaNNaNNaN2200-225921
40783172022-03-07Republic AirlinesEWRRDUFalseTrue11541148.00.0-6.0...1201.01552.04.01333NaNNaNNaN1300-135921
\n", + "

4078318 rows × 61 columns

\n", + "
" + ], + "text/plain": [ + " FlightDate Airline Origin Dest \n", + "0 2022-04-04 Commutair Aka Champlain Enterprises, Inc. GJT DEN \\\n", + "1 2022-04-04 Commutair Aka Champlain Enterprises, Inc. HRL IAH \n", + "2 2022-04-04 Commutair Aka Champlain Enterprises, Inc. DRO DEN \n", + "3 2022-04-04 Commutair Aka Champlain Enterprises, Inc. IAH GPT \n", + "4 2022-04-04 Commutair Aka Champlain Enterprises, Inc. DRO DEN \n", + "... ... ... ... ... \n", + "4078313 2022-03-31 Republic Airlines MSY EWR \n", + "4078314 2022-03-17 Republic Airlines CLT EWR \n", + "4078315 2022-03-08 Republic Airlines ALB ORD \n", + "4078316 2022-03-25 Republic Airlines EWR PIT \n", + "4078317 2022-03-07 Republic Airlines EWR RDU \n", + "\n", + " Cancelled Diverted CRSDepTime DepTime DepDelayMinutes DepDelay \n", + "0 False False 1133 1123.0 0.0 -10.0 \\\n", + "1 False False 732 728.0 0.0 -4.0 \n", + "2 False False 1529 1514.0 0.0 -15.0 \n", + "3 False False 1435 1430.0 0.0 -5.0 \n", + "4 False False 1135 1135.0 0.0 0.0 \n", + "... ... ... ... ... ... ... \n", + "4078313 False True 1949 2014.0 25.0 25.0 \n", + "4078314 True False 1733 1817.0 44.0 44.0 \n", + "4078315 False False 1700 2318.0 378.0 378.0 \n", + "4078316 False True 2129 2322.0 113.0 113.0 \n", + "4078317 False True 1154 1148.0 0.0 -6.0 \n", + "\n", + " ... WheelsOff WheelsOn TaxiIn CRSArrTime ArrDelay ArrDel15 \n", + "0 ... 1140.0 1220.0 8.0 1245 -17.0 0.0 \\\n", + "1 ... 744.0 839.0 9.0 849 -1.0 0.0 \n", + "2 ... 1535.0 1622.0 14.0 1639 -3.0 0.0 \n", + "3 ... 1446.0 1543.0 4.0 1605 -18.0 0.0 \n", + "4 ... 1154.0 1243.0 8.0 1245 6.0 0.0 \n", + "... ... ... ... ... ... ... ... \n", + "4078313 ... 2031.0 202.0 32.0 2354 NaN NaN \n", + "4078314 ... NaN NaN NaN 1942 NaN NaN \n", + "4078315 ... 2337.0 52.0 7.0 1838 381.0 1.0 \n", + "4078316 ... 2347.0 933.0 6.0 2255 NaN NaN \n", + "4078317 ... 1201.0 1552.0 4.0 1333 NaN NaN \n", + "\n", + " ArrivalDelayGroups ArrTimeBlk DistanceGroup DivAirportLandings \n", + "0 -2.0 1200-1259 1 0 \n", + "1 -1.0 0800-0859 2 0 \n", + "2 -1.0 1600-1659 2 0 \n", + "3 -2.0 1600-1659 2 0 \n", + "4 0.0 1200-1259 2 0 \n", + "... ... ... ... ... \n", + "4078313 NaN 2300-2359 5 1 \n", + "4078314 NaN 1900-1959 3 0 \n", + "4078315 12.0 1800-1859 3 0 \n", + "4078316 NaN 2200-2259 2 1 \n", + "4078317 NaN 1300-1359 2 1 \n", + "\n", + "[4078318 rows x 61 columns]" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "036418f5", + "metadata": {}, + "outputs": [], + "source": [ + "data_dict = data.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "371a85fd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4078318\n" + ] + } + ], + "source": [ + "print(len(data_dict['data']))" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "64d46483", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FlightDate 0\n", + "DepTime 7\n", + "ArrTime 10\n", + "ActualElapsedTime 14\n", + "Distance 15\n", + "OriginCityName 34\n", + "DestCityName 42\n" + ] + } + ], + "source": [ + "for idx,unit in enumerate(data_dict['columns']):\n", + " if unit in ['FlightDate','DepTime','ArrTime','ActualElapsedTime','Distance','OriginCityName','DestCityName']:\n", + " print(unit, str(idx))" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "81047adf", + "metadata": {}, + "outputs": [], + "source": [ + "import math\n", + "def convert_to_hhmm(time_float):\n", + " \"\"\"\n", + " Convert a float time to hh:mm format\n", + " :param time_float: Time as a float. Example: 757.0\n", + " :return: Time in hh:mm format. Example: \"07:57\"\n", + " \"\"\"\n", + " try:\n", + " hours = int(time_float // 100)\n", + " minutes = int(time_float % 100)\n", + " return \"{:02d}:{:02d}\".format(hours, minutes)\n", + " except:\n", + " return time_float\n", + "\n", + "def minutes_to_hours_minutes(minutes):\n", + " # Check for NaN and handle it\n", + " if math.isnan(minutes):\n", + " return \"NaN\"\n", + " \n", + " # Ensure minutes is an integer or rounded to the nearest integer\n", + " minutes = round(minutes)\n", + " \n", + " hours = minutes // 60\n", + " remaining_minutes = minutes % 60\n", + " return f\"{hours} hours {remaining_minutes} minutes\"" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "ee34cbde", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "15392917a93840e6b66e7e457d404721", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "0it [00:00, ?it/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from tqdm.autonotebook import tqdm\n", + "import random\n", + "new_data = []\n", + "for idx, unit in tqdm(enumerate(data_dict['data'])):\n", + " tmp_dict = {k:\"\" for k in ['FlightDate','DepTime','ArrTime','ActualElapsedTime','Distance','OriginCityName','DestCityName','Price']}\n", + " tmp_dict['FlightDate'] = unit[0]\n", + " tmp_dict['DepTime'] = convert_to_hhmm(unit[7])\n", + " tmp_dict['ArrTime'] = convert_to_hhmm(unit[10])\n", + " tmp_dict['ActualElapsedTime'] = minutes_to_hours_minutes(unit[14])\n", + " tmp_dict['Distance'] = unit[15]\n", + " tmp_dict['OriginCityName'] = unit[34].split(',')[0].split('\\\\')[0]\n", + " tmp_dict['DestCityName'] = unit[42].split(',')[0].split('\\\\')[0]\n", + " tmp_dict['Price'] = int((unit[15]) * random.uniform(0.2,0.5))\n", + " new_data.append(tmp_dict)" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "aee3f422", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'FlightDate': '2022-04-04',\n", + " 'DepTime': '09:27',\n", + " 'ArrTime': '11:19',\n", + " 'ActualElapsedTime': '1 hours 52 minutes',\n", + " 'Distance': 466.0,\n", + " 'OriginCityName': 'Chicago',\n", + " 'DestCityName': 'Lincoln',\n", + " 'Price': 119}" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_data[200]" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "bfb243c0", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(new_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "id": "f152a150", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FlightDateDepTimeArrTimeActualElapsedTimeDistanceOriginCityNameDestCityNamePrice
34883942022-03-0107:2415:154 hours 51 minutes2422.0SeattleNew York566
35093822022-03-0122:2906:074 hours 38 minutes2422.0SeattleNew York692
37360562022-03-0123:3307:164 hours 43 minutes2422.0SeattleNew York510
37362602022-03-0114:3722:054 hours 28 minutes2422.0SeattleNew York1135
37363132022-03-0109:1117:175 hours 6 minutes2422.0SeattleNew York627
37768582022-03-0121:0104:324 hours 31 minutes2422.0SeattleNew York981
37785652022-03-0113:1821:084 hours 50 minutes2422.0SeattleNew York869
\n", + "
" + ], + "text/plain": [ + " FlightDate DepTime ArrTime ActualElapsedTime Distance \n", + "3488394 2022-03-01 07:24 15:15 4 hours 51 minutes 2422.0 \\\n", + "3509382 2022-03-01 22:29 06:07 4 hours 38 minutes 2422.0 \n", + "3736056 2022-03-01 23:33 07:16 4 hours 43 minutes 2422.0 \n", + "3736260 2022-03-01 14:37 22:05 4 hours 28 minutes 2422.0 \n", + "3736313 2022-03-01 09:11 17:17 5 hours 6 minutes 2422.0 \n", + "3776858 2022-03-01 21:01 04:32 4 hours 31 minutes 2422.0 \n", + "3778565 2022-03-01 13:18 21:08 4 hours 50 minutes 2422.0 \n", + "\n", + " OriginCityName DestCityName Price \n", + "3488394 Seattle New York 566 \n", + "3509382 Seattle New York 692 \n", + "3736056 Seattle New York 510 \n", + "3736260 Seattle New York 1135 \n", + "3736313 Seattle New York 627 \n", + "3776858 Seattle New York 981 \n", + "3778565 Seattle New York 869 " + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[(df['OriginCityName']=='Seattle') & (df['DestCityName']=='New York')& (df['FlightDate']=='2022-03-01')]" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "af7e3411", + "metadata": {}, + "outputs": [], + "source": [ + "df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/flights/clean_Flights_2022_2.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "461e83ef", + "metadata": {}, + "outputs": [], + "source": [ + "x = df[df['OriginCityName']=='Los Angeles']" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "ed4e2107", + "metadata": {}, + "outputs": [], + "source": [ + "x = x[x['DestCityName']=='New York']" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "56c918e3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FlightDateDepTimeArrTimeDistanceOriginCityNameDestCityNamePrice
1653452022-04-0107:5716:282475.0Los AngelesNew York1121
1653462022-04-0207:5916:212475.0Los AngelesNew York1035
1653472022-04-0307:5416:042475.0Los AngelesNew York1143
1653482022-04-0407:5516:532475.0Los AngelesNew York1095
1653492022-04-0507:2515:392475.0Los AngelesNew York564
........................
39125742022-03-1607:1315:142475.0Los AngelesNew York1037
39151122022-03-0214:2422:302475.0Los AngelesNew York716
39151142022-03-0207:1015:032475.0Los AngelesNew York554
39167672022-03-0114:3422:332475.0Los AngelesNew York853
39167692022-03-0107:0715:072475.0Los AngelesNew York863
\n", + "

5913 rows × 7 columns

\n", + "
" + ], + "text/plain": [ + " FlightDate DepTime ArrTime Distance OriginCityName DestCityName \n", + "165345 2022-04-01 07:57 16:28 2475.0 Los Angeles New York \\\n", + "165346 2022-04-02 07:59 16:21 2475.0 Los Angeles New York \n", + "165347 2022-04-03 07:54 16:04 2475.0 Los Angeles New York \n", + "165348 2022-04-04 07:55 16:53 2475.0 Los Angeles New York \n", + "165349 2022-04-05 07:25 15:39 2475.0 Los Angeles New York \n", + "... ... ... ... ... ... ... \n", + "3912574 2022-03-16 07:13 15:14 2475.0 Los Angeles New York \n", + "3915112 2022-03-02 14:24 22:30 2475.0 Los Angeles New York \n", + "3915114 2022-03-02 07:10 15:03 2475.0 Los Angeles New York \n", + "3916767 2022-03-01 14:34 22:33 2475.0 Los Angeles New York \n", + "3916769 2022-03-01 07:07 15:07 2475.0 Los Angeles New York \n", + "\n", + " Price \n", + "165345 1121 \n", + "165346 1035 \n", + "165347 1143 \n", + "165348 1095 \n", + "165349 564 \n", + "... ... \n", + "3912574 1037 \n", + "3915112 716 \n", + "3915114 554 \n", + "3916767 853 \n", + "3916769 863 \n", + "\n", + "[5913 rows x 7 columns]" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "74dfd3cd", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FlightDateDepTimeArrTimeDistanceOriginCityNameDestCityNamePrice
1653452022-04-0107:5716:282475.0Los AngelesNew York1121
1654052022-04-0106:0714:252475.0Los AngelesNew York572
1655762022-04-0122:5807:152475.0Los AngelesNew York929
1656362022-04-0113:2821:362475.0Los AngelesNew York950
1658682022-04-0106:3914:462475.0Los AngelesNew York965
1661372022-04-0116:1000:232475.0Los AngelesNew York794
1662582022-04-0110:5719:132475.0Los AngelesNew York578
1664332022-04-0112:3520:542475.0Los AngelesNew York984
1667612022-04-0107:5216:052475.0Los AngelesNew York1165
2613062022-04-0111:2420:022475.0Los AngelesNew York1201
2613692022-04-0113:5722:192475.0Los AngelesNew York501
2793212022-04-0115:1623:262475.0Los AngelesNew York1162
2793222022-04-0100:5609:182475.0Los AngelesNew York1169
2795452022-04-0100:3808:492475.0Los AngelesNew York919
2809122022-04-0109:0117:352475.0Los AngelesNew York757
2817492022-04-0106:5215:222475.0Los AngelesNew York992
2819632022-04-0117:1301:272475.0Los AngelesNew York981
2824572022-04-0113:2021:372475.0Los AngelesNew York980
2841032022-04-0113:1821:562475.0Los AngelesNew York899
2841332022-04-0107:4215:352475.0Los AngelesNew York1232
2842332022-04-0121:4305:432475.0Los AngelesNew York749
2860512022-04-0109:2617:352475.0Los AngelesNew York1116
2874212022-04-0116:5601:002475.0Los AngelesNew York1033
2886772022-04-0112:35NaN2475.0Los AngelesNew York760
3259342022-04-0123:2507:172475.0Los AngelesNew York588
3314052022-04-0106:0514:292475.0Los AngelesNew York746
5654442022-04-0122:5507:092475.0Los AngelesNew York654
5654462022-04-0111:3919:492475.0Los AngelesNew York616
\n", + "
" + ], + "text/plain": [ + " FlightDate DepTime ArrTime Distance OriginCityName DestCityName \n", + "165345 2022-04-01 07:57 16:28 2475.0 Los Angeles New York \\\n", + "165405 2022-04-01 06:07 14:25 2475.0 Los Angeles New York \n", + "165576 2022-04-01 22:58 07:15 2475.0 Los Angeles New York \n", + "165636 2022-04-01 13:28 21:36 2475.0 Los Angeles New York \n", + "165868 2022-04-01 06:39 14:46 2475.0 Los Angeles New York \n", + "166137 2022-04-01 16:10 00:23 2475.0 Los Angeles New York \n", + "166258 2022-04-01 10:57 19:13 2475.0 Los Angeles New York \n", + "166433 2022-04-01 12:35 20:54 2475.0 Los Angeles New York \n", + "166761 2022-04-01 07:52 16:05 2475.0 Los Angeles New York \n", + "261306 2022-04-01 11:24 20:02 2475.0 Los Angeles New York \n", + "261369 2022-04-01 13:57 22:19 2475.0 Los Angeles New York \n", + "279321 2022-04-01 15:16 23:26 2475.0 Los Angeles New York \n", + "279322 2022-04-01 00:56 09:18 2475.0 Los Angeles New York \n", + "279545 2022-04-01 00:38 08:49 2475.0 Los Angeles New York \n", + "280912 2022-04-01 09:01 17:35 2475.0 Los Angeles New York \n", + "281749 2022-04-01 06:52 15:22 2475.0 Los Angeles New York \n", + "281963 2022-04-01 17:13 01:27 2475.0 Los Angeles New York \n", + "282457 2022-04-01 13:20 21:37 2475.0 Los Angeles New York \n", + "284103 2022-04-01 13:18 21:56 2475.0 Los Angeles New York \n", + "284133 2022-04-01 07:42 15:35 2475.0 Los Angeles New York \n", + "284233 2022-04-01 21:43 05:43 2475.0 Los Angeles New York \n", + "286051 2022-04-01 09:26 17:35 2475.0 Los Angeles New York \n", + "287421 2022-04-01 16:56 01:00 2475.0 Los Angeles New York \n", + "288677 2022-04-01 12:35 NaN 2475.0 Los Angeles New York \n", + "325934 2022-04-01 23:25 07:17 2475.0 Los Angeles New York \n", + "331405 2022-04-01 06:05 14:29 2475.0 Los Angeles New York \n", + "565444 2022-04-01 22:55 07:09 2475.0 Los Angeles New York \n", + "565446 2022-04-01 11:39 19:49 2475.0 Los Angeles New York \n", + "\n", + " Price \n", + "165345 1121 \n", + "165405 572 \n", + "165576 929 \n", + "165636 950 \n", + "165868 965 \n", + "166137 794 \n", + "166258 578 \n", + "166433 984 \n", + "166761 1165 \n", + "261306 1201 \n", + "261369 501 \n", + "279321 1162 \n", + "279322 1169 \n", + "279545 919 \n", + "280912 757 \n", + "281749 992 \n", + "281963 981 \n", + "282457 980 \n", + "284103 899 \n", + "284133 1232 \n", + "284233 749 \n", + "286051 1116 \n", + "287421 1033 \n", + "288677 760 \n", + "325934 588 \n", + "331405 746 \n", + "565444 654 \n", + "565446 616 " + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x[x['FlightDate']=='2022-04-01']" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "93c2a26f", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.16" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/tools/flights/.ipynb_checkpoints/test2-checkpoint.ipynb b/tools/flights/.ipynb_checkpoints/test2-checkpoint.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..17426af5ecaf0d69f171f0aa33d898a578d48837 --- /dev/null +++ b/tools/flights/.ipynb_checkpoints/test2-checkpoint.ipynb @@ -0,0 +1,923 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "id": "a10c60c4", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/flights/Combined_Flights_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "1c12a0f0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FlightDateAirlineOriginDestCancelledDivertedCRSDepTimeDepTimeDepDelayMinutesDepDelay...WheelsOffWheelsOnTaxiInCRSArrTimeArrDelayArrDel15ArrivalDelayGroupsArrTimeBlkDistanceGroupDivAirportLandings
02022-04-04Commutair Aka Champlain Enterprises, Inc.GJTDENFalseFalse11331123.00.0-10.0...1140.01220.08.01245-17.00.0-2.01200-125910
12022-04-04Commutair Aka Champlain Enterprises, Inc.HRLIAHFalseFalse732728.00.0-4.0...744.0839.09.0849-1.00.0-1.00800-085920
22022-04-04Commutair Aka Champlain Enterprises, Inc.DRODENFalseFalse15291514.00.0-15.0...1535.01622.014.01639-3.00.0-1.01600-165920
32022-04-04Commutair Aka Champlain Enterprises, Inc.IAHGPTFalseFalse14351430.00.0-5.0...1446.01543.04.01605-18.00.0-2.01600-165920
42022-04-04Commutair Aka Champlain Enterprises, Inc.DRODENFalseFalse11351135.00.00.0...1154.01243.08.012456.00.00.01200-125920
..................................................................
40783132022-03-31Republic AirlinesMSYEWRFalseTrue19492014.025.025.0...2031.0202.032.02354NaNNaNNaN2300-235951
40783142022-03-17Republic AirlinesCLTEWRTrueFalse17331817.044.044.0...NaNNaNNaN1942NaNNaNNaN1900-195930
40783152022-03-08Republic AirlinesALBORDFalseFalse17002318.0378.0378.0...2337.052.07.01838381.01.012.01800-185930
40783162022-03-25Republic AirlinesEWRPITFalseTrue21292322.0113.0113.0...2347.0933.06.02255NaNNaNNaN2200-225921
40783172022-03-07Republic AirlinesEWRRDUFalseTrue11541148.00.0-6.0...1201.01552.04.01333NaNNaNNaN1300-135921
\n", + "

4078318 rows × 61 columns

\n", + "
" + ], + "text/plain": [ + " FlightDate Airline Origin Dest \\\n", + "0 2022-04-04 Commutair Aka Champlain Enterprises, Inc. GJT DEN \n", + "1 2022-04-04 Commutair Aka Champlain Enterprises, Inc. HRL IAH \n", + "2 2022-04-04 Commutair Aka Champlain Enterprises, Inc. DRO DEN \n", + "3 2022-04-04 Commutair Aka Champlain Enterprises, Inc. IAH GPT \n", + "4 2022-04-04 Commutair Aka Champlain Enterprises, Inc. DRO DEN \n", + "... ... ... ... ... \n", + "4078313 2022-03-31 Republic Airlines MSY EWR \n", + "4078314 2022-03-17 Republic Airlines CLT EWR \n", + "4078315 2022-03-08 Republic Airlines ALB ORD \n", + "4078316 2022-03-25 Republic Airlines EWR PIT \n", + "4078317 2022-03-07 Republic Airlines EWR RDU \n", + "\n", + " Cancelled Diverted CRSDepTime DepTime DepDelayMinutes DepDelay \\\n", + "0 False False 1133 1123.0 0.0 -10.0 \n", + "1 False False 732 728.0 0.0 -4.0 \n", + "2 False False 1529 1514.0 0.0 -15.0 \n", + "3 False False 1435 1430.0 0.0 -5.0 \n", + "4 False False 1135 1135.0 0.0 0.0 \n", + "... ... ... ... ... ... ... \n", + "4078313 False True 1949 2014.0 25.0 25.0 \n", + "4078314 True False 1733 1817.0 44.0 44.0 \n", + "4078315 False False 1700 2318.0 378.0 378.0 \n", + "4078316 False True 2129 2322.0 113.0 113.0 \n", + "4078317 False True 1154 1148.0 0.0 -6.0 \n", + "\n", + " ... WheelsOff WheelsOn TaxiIn CRSArrTime ArrDelay ArrDel15 \\\n", + "0 ... 1140.0 1220.0 8.0 1245 -17.0 0.0 \n", + "1 ... 744.0 839.0 9.0 849 -1.0 0.0 \n", + "2 ... 1535.0 1622.0 14.0 1639 -3.0 0.0 \n", + "3 ... 1446.0 1543.0 4.0 1605 -18.0 0.0 \n", + "4 ... 1154.0 1243.0 8.0 1245 6.0 0.0 \n", + "... ... ... ... ... ... ... ... \n", + "4078313 ... 2031.0 202.0 32.0 2354 NaN NaN \n", + "4078314 ... NaN NaN NaN 1942 NaN NaN \n", + "4078315 ... 2337.0 52.0 7.0 1838 381.0 1.0 \n", + "4078316 ... 2347.0 933.0 6.0 2255 NaN NaN \n", + "4078317 ... 1201.0 1552.0 4.0 1333 NaN NaN \n", + "\n", + " ArrivalDelayGroups ArrTimeBlk DistanceGroup DivAirportLandings \n", + "0 -2.0 1200-1259 1 0 \n", + "1 -1.0 0800-0859 2 0 \n", + "2 -1.0 1600-1659 2 0 \n", + "3 -2.0 1600-1659 2 0 \n", + "4 0.0 1200-1259 2 0 \n", + "... ... ... ... ... \n", + "4078313 NaN 2300-2359 5 1 \n", + "4078314 NaN 1900-1959 3 0 \n", + "4078315 12.0 1800-1859 3 0 \n", + "4078316 NaN 2200-2259 2 1 \n", + "4078317 NaN 1300-1359 2 1 \n", + "\n", + "[4078318 rows x 61 columns]" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "e572970c", + "metadata": {}, + "outputs": [], + "source": [ + "str_data = data.astype(str)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "27a7cd6b", + "metadata": {}, + "outputs": [], + "source": [ + "column_names = ', '.join(data.columns.tolist())" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "a5cf51cc", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'FlightDate, Airline, Origin, Dest, Cancelled, Diverted, CRSDepTime, DepTime, DepDelayMinutes, DepDelay, ArrTime, ArrDelayMinutes, AirTime, CRSElapsedTime, ActualElapsedTime, Distance, Year, Quarter, Month, DayofMonth, DayOfWeek, Marketing_Airline_Network, Operated_or_Branded_Code_Share_Partners, DOT_ID_Marketing_Airline, IATA_Code_Marketing_Airline, Flight_Number_Marketing_Airline, Operating_Airline, DOT_ID_Operating_Airline, IATA_Code_Operating_Airline, Tail_Number, Flight_Number_Operating_Airline, OriginAirportID, OriginAirportSeqID, OriginCityMarketID, OriginCityName, OriginState, OriginStateFips, OriginStateName, OriginWac, DestAirportID, DestAirportSeqID, DestCityMarketID, DestCityName, DestState, DestStateFips, DestStateName, DestWac, DepDel15, DepartureDelayGroups, DepTimeBlk, TaxiOut, WheelsOff, WheelsOn, TaxiIn, CRSArrTime, ArrDelay, ArrDel15, ArrivalDelayGroups, ArrTimeBlk, DistanceGroup, DivAirportLandings'" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "column_names" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "061d3979", + "metadata": {}, + "outputs": [], + "source": [ + "pd.options.display.max_rows = 300" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "e44254fc", + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FlightDate 2022-04-04\n", + "Airline Commutair Aka Champlain Enterprises, Inc.\n", + "Origin DEN\n", + "Dest CPR\n", + "Cancelled False\n", + "Diverted False\n", + "CRSDepTime 1540\n", + "DepTime 1546.0\n", + "DepDelayMinutes 6.0\n", + "DepDelay 6.0\n", + "ArrTime 1650.0\n", + "ArrDelayMinutes 0.0\n", + "AirTime 45.0\n", + "CRSElapsedTime 70.0\n", + "ActualElapsedTime 64.0\n", + "Distance 230.0\n", + "Year 2022\n", + "Quarter 2\n", + "Month 4\n", + "DayofMonth 4\n", + "DayOfWeek 1\n", + "Marketing_Airline_Network UA\n", + "Operated_or_Branded_Code_Share_Partners UA_CODESHARE\n", + "DOT_ID_Marketing_Airline 19977\n", + "IATA_Code_Marketing_Airline UA\n", + "Flight_Number_Marketing_Airline 4288\n", + "Operating_Airline C5\n", + "DOT_ID_Operating_Airline 20445\n", + "IATA_Code_Operating_Airline C5\n", + "Tail_Number N14177\n", + "Flight_Number_Operating_Airline 4288\n", + "OriginAirportID 11292\n", + "OriginAirportSeqID 1129202\n", + "OriginCityMarketID 30325\n", + "OriginCityName Denver, CO\n", + "OriginState CO\n", + "OriginStateFips 8\n", + "OriginStateName Colorado\n", + "OriginWac 82\n", + "DestAirportID 11122\n", + "DestAirportSeqID 1112205\n", + "DestCityMarketID 31122\n", + "DestCityName Casper, WY\n", + "DestState WY\n", + "DestStateFips 56\n", + "DestStateName Wyoming\n", + "DestWac 88\n", + "DepDel15 0.0\n", + "DepartureDelayGroups 0.0\n", + "DepTimeBlk 1500-1559\n", + "TaxiOut 13.0\n", + "WheelsOff 1559.0\n", + "WheelsOn 1644.0\n", + "TaxiIn 6.0\n", + "CRSArrTime 1650\n", + "ArrDelay 0.0\n", + "ArrDel15 0.0\n", + "ArrivalDelayGroups 0.0\n", + "ArrTimeBlk 1600-1659\n", + "DistanceGroup 1\n", + "DivAirportLandings 0\n", + "Name: 10, dtype: object\n" + ] + } + ], + "source": [ + "print(data.iloc[10],flush=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "id": "1a0f208d", + "metadata": {}, + "outputs": [], + "source": [ + "filter_data = data[['FlightDate','DepTime','ArrTime','Distance','OriginCityName','DestCityName']]" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "id": "4cf6383d", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FlightDate\n", + "DepTime\n", + "ArrTime\n", + "Distance\n", + "OriginCityName\n", + "DestCityName\n" + ] + } + ], + "source": [ + "for unit in filter_data:\n", + " print(unit)" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "id": "ddbf175a", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "fc2986be7e664907986359e2bcf22671", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "0it [00:00, ?it/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "IOPub message rate exceeded.\n", + "The notebook server will temporarily stop sending output\n", + "to the client in order to avoid crashing it.\n", + "To change this limit, set the config variable\n", + "`--NotebookApp.iopub_msg_rate_limit`.\n", + "\n", + "Current values:\n", + "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", + "NotebookApp.rate_limit_window=3.0 (secs)\n", + "\n" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[63], line 3\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mtqdm\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mautonotebook\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m tqdm\n\u001b[1;32m 2\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m idx, unit \u001b[38;5;129;01min\u001b[39;00m tqdm(\u001b[38;5;28menumerate\u001b[39m(filter_data\u001b[38;5;241m.\u001b[39miterrows())):\n\u001b[0;32m----> 3\u001b[0m \u001b[43mfilter_data\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mloc\u001b[49m\u001b[43m[\u001b[49m\u001b[43midx\u001b[49m\u001b[43m,\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mOriginCityName\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m \u001b[38;5;241m=\u001b[39m unit[\u001b[38;5;241m1\u001b[39m][\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mOriginCityName\u001b[39m\u001b[38;5;124m'\u001b[39m]\u001b[38;5;241m.\u001b[39msplit(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m,\u001b[39m\u001b[38;5;124m'\u001b[39m)[\u001b[38;5;241m0\u001b[39m]\n\u001b[1;32m 4\u001b[0m filter_data\u001b[38;5;241m.\u001b[39mloc[idx,\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mDestCityName\u001b[39m\u001b[38;5;124m'\u001b[39m] \u001b[38;5;241m=\u001b[39m unit[\u001b[38;5;241m1\u001b[39m][\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mDestCityName\u001b[39m\u001b[38;5;124m'\u001b[39m]\u001b[38;5;241m.\u001b[39msplit(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m,\u001b[39m\u001b[38;5;124m'\u001b[39m)[\u001b[38;5;241m0\u001b[39m]\n\u001b[1;32m 5\u001b[0m filter_data\u001b[38;5;241m.\u001b[39mloc[idx,\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mprice\u001b[39m\u001b[38;5;124m'\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mint\u001b[39m((unit[\u001b[38;5;241m1\u001b[39m][\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mDistance\u001b[39m\u001b[38;5;124m'\u001b[39m]) \u001b[38;5;241m*\u001b[39m random\u001b[38;5;241m.\u001b[39muniform(\u001b[38;5;241m0.2\u001b[39m,\u001b[38;5;241m0.5\u001b[39m))\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/indexing.py:849\u001b[0m, in \u001b[0;36m_LocationIndexer.__setitem__\u001b[0;34m(self, key, value)\u001b[0m\n\u001b[1;32m 846\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_has_valid_setitem_indexer(key)\n\u001b[1;32m 848\u001b[0m iloc \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mname \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124miloc\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj\u001b[38;5;241m.\u001b[39miloc\n\u001b[0;32m--> 849\u001b[0m \u001b[43miloc\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_setitem_with_indexer\u001b[49m\u001b[43m(\u001b[49m\u001b[43mindexer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mvalue\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mname\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/indexing.py:1835\u001b[0m, in \u001b[0;36m_iLocIndexer._setitem_with_indexer\u001b[0;34m(self, indexer, value, name)\u001b[0m\n\u001b[1;32m 1832\u001b[0m \u001b[38;5;66;03m# align and set the values\u001b[39;00m\n\u001b[1;32m 1833\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m take_split_path:\n\u001b[1;32m 1834\u001b[0m \u001b[38;5;66;03m# We have to operate column-wise\u001b[39;00m\n\u001b[0;32m-> 1835\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_setitem_with_indexer_split_path\u001b[49m\u001b[43m(\u001b[49m\u001b[43mindexer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mvalue\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mname\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1836\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 1837\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_setitem_single_block(indexer, value, name)\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/indexing.py:1928\u001b[0m, in \u001b[0;36m_iLocIndexer._setitem_with_indexer_split_path\u001b[0;34m(self, indexer, value, name)\u001b[0m\n\u001b[1;32m 1925\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 1926\u001b[0m \u001b[38;5;66;03m# scalar value\u001b[39;00m\n\u001b[1;32m 1927\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m loc \u001b[38;5;129;01min\u001b[39;00m ilocs:\n\u001b[0;32m-> 1928\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_setitem_single_column\u001b[49m\u001b[43m(\u001b[49m\u001b[43mloc\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mvalue\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpi\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/indexing.py:2034\u001b[0m, in \u001b[0;36m_iLocIndexer._setitem_single_column\u001b[0;34m(self, loc, value, plane_indexer)\u001b[0m\n\u001b[1;32m 2030\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj\u001b[38;5;241m.\u001b[39misetitem(loc, value)\n\u001b[1;32m 2031\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 2032\u001b[0m \u001b[38;5;66;03m# set value into the column (first attempting to operate inplace, then\u001b[39;00m\n\u001b[1;32m 2033\u001b[0m \u001b[38;5;66;03m# falling back to casting if necessary)\u001b[39;00m\n\u001b[0;32m-> 2034\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mobj\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_mgr\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcolumn_setitem\u001b[49m\u001b[43m(\u001b[49m\u001b[43mloc\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mplane_indexer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mvalue\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 2036\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj\u001b[38;5;241m.\u001b[39m_clear_item_cache()\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/internals/managers.py:1385\u001b[0m, in \u001b[0;36mBlockManager.column_setitem\u001b[0;34m(self, loc, idx, value, inplace_only)\u001b[0m\n\u001b[1;32m 1383\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 1384\u001b[0m new_mgr \u001b[38;5;241m=\u001b[39m col_mgr\u001b[38;5;241m.\u001b[39msetitem((idx,), value)\n\u001b[0;32m-> 1385\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43miset\u001b[49m\u001b[43m(\u001b[49m\u001b[43mloc\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mnew_mgr\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_block\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mvalues\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43minplace\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/internals/managers.py:1213\u001b[0m, in \u001b[0;36mBlockManager.iset\u001b[0;34m(self, loc, value, inplace)\u001b[0m\n\u001b[1;32m 1211\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_iset_split_block(blkno_l, blk_locs, value_getitem(val_locs))\n\u001b[1;32m 1212\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m-> 1213\u001b[0m \u001b[43mblk\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mset_inplace\u001b[49m\u001b[43m(\u001b[49m\u001b[43mblk_locs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mvalue_getitem\u001b[49m\u001b[43m(\u001b[49m\u001b[43mval_locs\u001b[49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1214\u001b[0m \u001b[38;5;28;01mcontinue\u001b[39;00m\n\u001b[1;32m 1215\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/internals/blocks.py:924\u001b[0m, in \u001b[0;36mBlock.set_inplace\u001b[0;34m(self, locs, values, copy)\u001b[0m\n\u001b[1;32m 922\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m copy:\n\u001b[1;32m 923\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mvalues \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mvalues\u001b[38;5;241m.\u001b[39mcopy()\n\u001b[0;32m--> 924\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mvalues\u001b[49m\u001b[43m[\u001b[49m\u001b[43mlocs\u001b[49m\u001b[43m]\u001b[49m \u001b[38;5;241m=\u001b[39m values\n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + ] + } + ], + "source": [ + "from tqdm.autonotebook import tqdm\n", + "for idx, unit in tqdm(enumerate(filter_data.iterrows())):\n", + " filter_data.loc[idx,'OriginCityName'] = unit[1]['OriginCityName'].split(',')[0]\n", + " filter_data.loc[idx,'DestCityName'] = unit[1]['DestCityName'].split(',')[0]\n", + " filter_data.loc[idx,'price'] = int((unit[1]['Distance']) * random.uniform(0.2,0.5))" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "0ac9a59d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FlightDateDepTimeArrTimeDistanceOriginCityNameDestCityNameprice
02022-04-041123.01228.0212.0Grand JunctionDenver72.0
12022-04-04728.0848.0295.0Harlingen/San BenitoHouston141.0
22022-04-041514.01636.0251.0DurangoDenver114.0
32022-04-041430.01547.0376.0HoustonGulfport/Biloxi103.0
42022-04-041135.01251.0251.0DurangoDenver118.0
........................
40783132022-03-312014.0234.01167.0New Orleans, LANewark, NJNaN
40783142022-03-171817.0NaN529.0Charlotte, NCNewark, NJNaN
40783152022-03-082318.059.0723.0Albany, NYChicago, ILNaN
40783162022-03-252322.0939.0319.0Newark, NJPittsburgh, PANaN
40783172022-03-071148.01556.0416.0Newark, NJRaleigh/Durham, NCNaN
\n", + "

4078318 rows × 7 columns

\n", + "
" + ], + "text/plain": [ + " FlightDate DepTime ArrTime Distance OriginCityName \\\n", + "0 2022-04-04 1123.0 1228.0 212.0 Grand Junction \n", + "1 2022-04-04 728.0 848.0 295.0 Harlingen/San Benito \n", + "2 2022-04-04 1514.0 1636.0 251.0 Durango \n", + "3 2022-04-04 1430.0 1547.0 376.0 Houston \n", + "4 2022-04-04 1135.0 1251.0 251.0 Durango \n", + "... ... ... ... ... ... \n", + "4078313 2022-03-31 2014.0 234.0 1167.0 New Orleans, LA \n", + "4078314 2022-03-17 1817.0 NaN 529.0 Charlotte, NC \n", + "4078315 2022-03-08 2318.0 59.0 723.0 Albany, NY \n", + "4078316 2022-03-25 2322.0 939.0 319.0 Newark, NJ \n", + "4078317 2022-03-07 1148.0 1556.0 416.0 Newark, NJ \n", + "\n", + " DestCityName price \n", + "0 Denver 72.0 \n", + "1 Houston 141.0 \n", + "2 Denver 114.0 \n", + "3 Gulfport/Biloxi 103.0 \n", + "4 Denver 118.0 \n", + "... ... ... \n", + "4078313 Newark, NJ NaN \n", + "4078314 Newark, NJ NaN \n", + "4078315 Chicago, IL NaN \n", + "4078316 Pittsburgh, PA NaN \n", + "4078317 Raleigh/Durham, NC NaN \n", + "\n", + "[4078318 rows x 7 columns]" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "filter_data" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "10a2b0e3", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "b7bbe97af9df406fb0e56a6f8dfd8656", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "0it [00:00, ?it/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(0, FlightDate 2022-04-04\n", + "DepTime 1123.0\n", + "ArrTime 1228.0\n", + "Distance 212.0\n", + "OriginCityName Grand Junction\n", + "DestCityName Denver\n", + "Name: 0, dtype: object)\n" + ] + } + ], + "source": [ + "import random\n", + "for idx, unit in tqdm(enumerate(filter_data.iterrows())):\n", + " filter_data.loc[idx,'price'] = eval(unit[1]['Distance']) * random.uniform(0.2,0.5))" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "1ca1f597", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_1504075/2172656540.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " filter_data['price'] = None\n" + ] + } + ], + "source": [ + "filter_data['price'] = None" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e32d2e3c", + "metadata": {}, + "outputs": [], + "source": [ + "import random\n", + "random.uniform(0.2,0.5)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "cf4ecc5e", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.16" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/tools/flights/__init__.py b/tools/flights/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tools/flights/__pycache__/__init__.cpython-39.pyc b/tools/flights/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ae311f10575a6da4e32b0e1fb048d77015632ada Binary files /dev/null and b/tools/flights/__pycache__/__init__.cpython-39.pyc differ diff --git a/tools/flights/__pycache__/apis.cpython-39.pyc b/tools/flights/__pycache__/apis.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8958be3ee00556b1ed0f17ca6d09dddf19ad6b08 Binary files /dev/null and b/tools/flights/__pycache__/apis.cpython-39.pyc differ diff --git a/tools/flights/apis.py b/tools/flights/apis.py new file mode 100644 index 0000000000000000000000000000000000000000..03da742d1dd00d25c5314b5194e0373f6642ff19 --- /dev/null +++ b/tools/flights/apis.py @@ -0,0 +1,70 @@ +import pandas as pd +from pandas import DataFrame +from typing import Optional +from annotation.src.utils import extract_before_parenthesis + +class Flights: + + def __init__(self, path="../database/flights/clean_Flights_2022.csv"): + self.path = path + self.data = None + + self.data = pd.read_csv(self.path).dropna()[['Flight Number', 'Price', 'DepTime', 'ArrTime', 'ActualElapsedTime','FlightDate','OriginCityName','DestCityName','Distance']] + print("Flights API loaded.") + + def load_db(self): + self.data = pd.read_csv(self.path).dropna().rename(columns={'Unnamed: 0': 'Flight Number'}) + + def run(self, + origin: str, + destination: str, + departure_date: str, + ) -> DataFrame: + """Search for flights by origin, destination, and departure date.""" + results = self.data[self.data["OriginCityName"] == origin] + results = results[results["DestCityName"] == destination] + results = results[results["FlightDate"] == departure_date] + # if order == "ascPrice": + # results = results.sort_values(by=["Price"], ascending=True) + # elif order == "descPrice": + # results = results.sort_values(by=["Price"], ascending=False) + # elif order == "ascDepTime": + # results = results.sort_values(by=["DepTime"], ascending=True) + # elif order == "descDepTime": + # results = results.sort_values(by=["DepTime"], ascending=False) + # elif order == "ascArrTime": + # results = results.sort_values(by=["ArrTime"], ascending=True) + # elif order == "descArrTime": + # results = results.sort_values(by=["ArrTime"], ascending=False) + if len(results) == 0: + return "There is no flight from {} to {} on {}.".format(origin, destination, departure_date) + return results + + def run_for_annotation(self, + origin: str, + destination: str, + departure_date: str, + ) -> DataFrame: + """Search for flights by origin, destination, and departure date.""" + results = self.data[self.data["OriginCityName"] == extract_before_parenthesis(origin)] + results = results[results["DestCityName"] == extract_before_parenthesis(destination)] + results = results[results["FlightDate"] == departure_date] + # if order == "ascPrice": + # results = results.sort_values(by=["Price"], ascending=True) + # elif order == "descPrice": + # results = results.sort_values(by=["Price"], ascending=False) + # elif order == "ascDepTime": + # results = results.sort_values(by=["DepTime"], ascending=True) + # elif order == "descDepTime": + # results = results.sort_values(by=["DepTime"], ascending=False) + # elif order == "ascArrTime": + # results = results.sort_values(by=["ArrTime"], ascending=True) + # elif order == "descArrTime": + # results = results.sort_values(by=["ArrTime"], ascending=False) + return results + + def get_city_set(self): + city_set = set() + for unit in self.data['data']: + city_set.add(unit[5]) + city_set.add(unit[6]) \ No newline at end of file diff --git a/tools/flights/test.ipynb b/tools/flights/test.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..ebfdd603b18f327c7926b46d66b4beea048c165e --- /dev/null +++ b/tools/flights/test.ipynb @@ -0,0 +1,1063 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 4, + "id": "041c9721", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/flights/Combined_Flights_2022.csv')\n", + "# df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/flights/clean_Flights_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "03d0f39e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "FlightDate 2022-03-15\n", + "Airline Delta Air Lines Inc.\n", + "Origin LAS\n", + "Dest SLC\n", + "Cancelled False\n", + " ... \n", + "ArrDel15 0.0\n", + "ArrivalDelayGroups -2.0\n", + "ArrTimeBlk 1600-1659\n", + "DistanceGroup 2\n", + "DivAirportLandings 0\n", + "Name: 3504987, Length: 61, dtype: object" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.iloc[3504987]" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "036418f5", + "metadata": {}, + "outputs": [], + "source": [ + "data_dict = data.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "ef12c4b3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FlightDate 2022-01-29\n", + "Airline Frontier Airlines Inc.\n", + "Origin COS\n", + "Dest LAS\n", + "Cancelled False\n", + "Diverted False\n", + "CRSDepTime 1558\n", + "DepTime 1553.0\n", + "DepDelayMinutes 0.0\n", + "DepDelay -5.0\n", + "ArrTime 1646.0\n", + "ArrDelayMinutes 0.0\n", + "AirTime 91.0\n", + "CRSElapsedTime 124.0\n", + "ActualElapsedTime 113.0\n", + "Distance 604.0\n", + "Year 2022\n", + "Quarter 1\n", + "Month 1\n", + "DayofMonth 29\n", + "DayOfWeek 6\n", + "Marketing_Airline_Network F9\n", + "Operated_or_Branded_Code_Share_Partners F9\n", + "DOT_ID_Marketing_Airline 20436\n", + "IATA_Code_Marketing_Airline F9\n", + "Flight_Number_Marketing_Airline 2019\n", + "Operating_Airline F9\n", + "DOT_ID_Operating_Airline 20436\n", + "IATA_Code_Operating_Airline F9\n", + "Tail_Number N235FR\n", + "Flight_Number_Operating_Airline 2019\n", + "OriginAirportID 11109\n", + "OriginAirportSeqID 1110902\n", + "OriginCityMarketID 30189\n", + "OriginCityName Colorado Springs, CO\n", + "OriginState CO\n", + "OriginStateFips 8\n", + "OriginStateName Colorado\n", + "OriginWac 82\n", + "DestAirportID 12889\n", + "DestAirportSeqID 1288903\n", + "DestCityMarketID 32211\n", + "DestCityName Las Vegas, NV\n", + "DestState NV\n", + "DestStateFips 32\n", + "DestStateName Nevada\n", + "DestWac 85\n", + "DepDel15 0.0\n", + "DepartureDelayGroups -1.0\n", + "DepTimeBlk 1500-1559\n", + "TaxiOut 13.0\n", + "WheelsOff 1606.0\n", + "WheelsOn 1637.0\n", + "TaxiIn 9.0\n", + "CRSArrTime 1702\n", + "ArrDelay -16.0\n", + "ArrDel15 0.0\n", + "ArrivalDelayGroups -2.0\n", + "ArrTimeBlk 1700-1759\n", + "DistanceGroup 3\n", + "DivAirportLandings 0\n" + ] + } + ], + "source": [ + "for idx,unit in enumerate(data_dict['columns']):\n", + " print(unit, data_dict['data'][3000020][idx])" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "372b3fd9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['2022-01-29',\n", + " 'Frontier Airlines Inc.',\n", + " 'COS',\n", + " 'LAS',\n", + " False,\n", + " False,\n", + " 1558,\n", + " 1553.0,\n", + " 0.0,\n", + " -5.0,\n", + " 1646.0,\n", + " 0.0,\n", + " 91.0,\n", + " 124.0,\n", + " 113.0,\n", + " 604.0,\n", + " 2022,\n", + " 1,\n", + " 1,\n", + " 29,\n", + " 6,\n", + " 'F9',\n", + " 'F9',\n", + " 20436,\n", + " 'F9',\n", + " 2019,\n", + " 'F9',\n", + " 20436,\n", + " 'F9',\n", + " 'N235FR',\n", + " 2019,\n", + " 11109,\n", + " 1110902,\n", + " 30189,\n", + " 'Colorado Springs, CO',\n", + " 'CO',\n", + " 8,\n", + " 'Colorado',\n", + " 82,\n", + " 12889,\n", + " 1288903,\n", + " 32211,\n", + " 'Las Vegas, NV',\n", + " 'NV',\n", + " 32,\n", + " 'Nevada',\n", + " 85,\n", + " 0.0,\n", + " -1.0,\n", + " '1500-1559',\n", + " 13.0,\n", + " 1606.0,\n", + " 1637.0,\n", + " 9.0,\n", + " 1702,\n", + " -16.0,\n", + " 0.0,\n", + " -2.0,\n", + " '1700-1759',\n", + " 3,\n", + " 0]" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_dict['data'][3000020]" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "371a85fd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4078318\n" + ] + } + ], + "source": [ + "print(len(data_dict['data']))" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "64d46483", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FlightDate 0\n", + "DepTime 7\n", + "ArrTime 10\n", + "ActualElapsedTime 14\n", + "Distance 15\n", + "OriginCityName 34\n", + "DestCityName 42\n" + ] + } + ], + "source": [ + "for idx,unit in enumerate(data_dict['columns']):\n", + " if unit in ['FlightDate','DepTime','ArrTime','ActualElapsedTime','Distance','OriginCityName','DestCityName']:\n", + " print(unit, str(idx))" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "81047adf", + "metadata": {}, + "outputs": [], + "source": [ + "import math\n", + "def convert_to_hhmm(time_float):\n", + " \"\"\"\n", + " Convert a float time to hh:mm format\n", + " :param time_float: Time as a float. Example: 757.0\n", + " :return: Time in hh:mm format. Example: \"07:57\"\n", + " \"\"\"\n", + " try:\n", + " hours = int(time_float // 100)\n", + " minutes = int(time_float % 100)\n", + " return \"{:02d}:{:02d}\".format(hours, minutes)\n", + " except:\n", + " return time_float\n", + "\n", + "def minutes_to_hours_minutes(minutes):\n", + " # Check for NaN and handle it\n", + " if math.isnan(minutes):\n", + " return \"NaN\"\n", + " \n", + " # Ensure minutes is an integer or rounded to the nearest integer\n", + " minutes = round(minutes)\n", + " \n", + " hours = minutes // 60\n", + " remaining_minutes = minutes % 60\n", + " return f\"{hours} hours {remaining_minutes} minutes\"" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "ee34cbde", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "b60c3d13fb6d44258103c6251365272b", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "0it [00:00, ?it/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from tqdm.autonotebook import tqdm\n", + "import random\n", + "new_data = []\n", + "for idx, unit in tqdm(enumerate(data_dict['data'])):\n", + " tmp_dict = {k:\"\" for k in ['FlightDate','DepTime','ArrTime','ActualElapsedTime','Distance','OriginCityName','DestCityName','Price']}\n", + " tmp_dict['FlightDate'] = unit[0]\n", + " tmp_dict['DepTime'] = convert_to_hhmm(unit[7])\n", + " tmp_dict['ArrTime'] = convert_to_hhmm(unit[10])\n", + " tmp_dict['ActualElapsedTime'] = minutes_to_hours_minutes(unit[14])\n", + " tmp_dict['Distance'] = unit[15]\n", + " tmp_dict['OriginCityName'] = unit[34].split(',')[0].split('/')[0]\n", + " tmp_dict['DestCityName'] = unit[42].split(',')[0].split('/')[0]\n", + " tmp_dict['Price'] = int((unit[15]) * random.uniform(0.2,0.5))\n", + " new_data.append(tmp_dict)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "aee3f422", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'FlightDate': '2022-01-29',\n", + " 'DepTime': '15:53',\n", + " 'ArrTime': '16:46',\n", + " 'ActualElapsedTime': '1 hours 53 minutes',\n", + " 'Distance': 604.0,\n", + " 'OriginCityName': 'Colorado Springs',\n", + " 'DestCityName': 'Las Vegas',\n", + " 'Price': 205}" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_data[3000020]" + ] + }, + { + "cell_type": "code", + "execution_count": 90, + "id": "bfb243c0", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(new_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "f152a150", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FlightDateDepTimeArrTimeActualElapsedTimeDistanceOriginCityNameDestCityNamePrice
34883942022-03-0107:2415:154 hours 51 minutes2422.0SeattleNew York720
35093822022-03-0122:2906:074 hours 38 minutes2422.0SeattleNew York484
37360562022-03-0123:3307:164 hours 43 minutes2422.0SeattleNew York1199
37362602022-03-0114:3722:054 hours 28 minutes2422.0SeattleNew York950
37363132022-03-0109:1117:175 hours 6 minutes2422.0SeattleNew York1050
37768582022-03-0121:0104:324 hours 31 minutes2422.0SeattleNew York1146
37785652022-03-0113:1821:084 hours 50 minutes2422.0SeattleNew York578
\n", + "
" + ], + "text/plain": [ + " FlightDate DepTime ArrTime ActualElapsedTime Distance \n", + "3488394 2022-03-01 07:24 15:15 4 hours 51 minutes 2422.0 \\\n", + "3509382 2022-03-01 22:29 06:07 4 hours 38 minutes 2422.0 \n", + "3736056 2022-03-01 23:33 07:16 4 hours 43 minutes 2422.0 \n", + "3736260 2022-03-01 14:37 22:05 4 hours 28 minutes 2422.0 \n", + "3736313 2022-03-01 09:11 17:17 5 hours 6 minutes 2422.0 \n", + "3776858 2022-03-01 21:01 04:32 4 hours 31 minutes 2422.0 \n", + "3778565 2022-03-01 13:18 21:08 4 hours 50 minutes 2422.0 \n", + "\n", + " OriginCityName DestCityName Price \n", + "3488394 Seattle New York 720 \n", + "3509382 Seattle New York 484 \n", + "3736056 Seattle New York 1199 \n", + "3736260 Seattle New York 950 \n", + "3736313 Seattle New York 1050 \n", + "3776858 Seattle New York 1146 \n", + "3778565 Seattle New York 578 " + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[(df['OriginCityName']=='Seattle') & (df['DestCityName']=='New York')& (df['FlightDate']=='2022-03-01')]" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "id": "9f85d8e6", + "metadata": {}, + "outputs": [], + "source": [ + "df['Flight Number'] = df.index" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "id": "045df94c", + "metadata": {}, + "outputs": [], + "source": [ + "df = df.reset_index(drop=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4e1b68b7", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 91, + "id": "5c7d3b44", + "metadata": {}, + "outputs": [], + "source": [ + "df.index = df.index.map(lambda x: str(x).zfill(7))" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "id": "7a1f223c", + "metadata": {}, + "outputs": [], + "source": [ + "df['Flight Number'] = 'F' + df['Flight Number'].astype(str)" + ] + }, + { + "cell_type": "code", + "execution_count": 97, + "id": "af7e3411", + "metadata": {}, + "outputs": [], + "source": [ + "df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/flights/clean_Flights_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "id": "461e83ef", + "metadata": {}, + "outputs": [], + "source": [ + "x = df[df['OriginCityName']=='Montrose']" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "id": "ed4e2107", + "metadata": {}, + "outputs": [], + "source": [ + "x = df[df['DestCityName']=='Montrose']" + ] + }, + { + "cell_type": "code", + "execution_count": 96, + "id": "56c918e3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FlightDateDepTimeArrTimeActualElapsedTimeDistanceOriginCityNameDestCityNamePriceFlight Number
41552022-04-0110:4211:340 hours 52 minutes196.0MontroseDenver42F0004155
41562022-04-0114:4315:320 hours 49 minutes196.0MontroseDenver64F0004156
41572022-04-0117:3818:581 hours 20 minutes196.0MontroseDenver97F0004157
74392022-04-0213:3816:321 hours 54 minutes733.0MontroseDallas151F0007439
74402022-04-0212:3713:290 hours 52 minutes196.0MontroseDenver54F0007440
..............................
40451392022-03-2711:5012:171 hours 27 minutes419.0MontrosePhoenix133F4045139
40451402022-03-2811:4512:221 hours 37 minutes419.0MontrosePhoenix188F4045140
40451412022-03-2911:3512:171 hours 42 minutes419.0MontrosePhoenix144F4045141
40451422022-03-3011:3812:131 hours 35 minutes419.0MontrosePhoenix125F4045142
40451432022-03-3111:4012:191 hours 39 minutes419.0MontrosePhoenix129F4045143
\n", + "

2035 rows × 9 columns

\n", + "
" + ], + "text/plain": [ + " FlightDate DepTime ArrTime ActualElapsedTime Distance \n", + "4155 2022-04-01 10:42 11:34 0 hours 52 minutes 196.0 \\\n", + "4156 2022-04-01 14:43 15:32 0 hours 49 minutes 196.0 \n", + "4157 2022-04-01 17:38 18:58 1 hours 20 minutes 196.0 \n", + "7439 2022-04-02 13:38 16:32 1 hours 54 minutes 733.0 \n", + "7440 2022-04-02 12:37 13:29 0 hours 52 minutes 196.0 \n", + "... ... ... ... ... ... \n", + "4045139 2022-03-27 11:50 12:17 1 hours 27 minutes 419.0 \n", + "4045140 2022-03-28 11:45 12:22 1 hours 37 minutes 419.0 \n", + "4045141 2022-03-29 11:35 12:17 1 hours 42 minutes 419.0 \n", + "4045142 2022-03-30 11:38 12:13 1 hours 35 minutes 419.0 \n", + "4045143 2022-03-31 11:40 12:19 1 hours 39 minutes 419.0 \n", + "\n", + " OriginCityName DestCityName Price Flight Number \n", + "4155 Montrose Denver 42 F0004155 \n", + "4156 Montrose Denver 64 F0004156 \n", + "4157 Montrose Denver 97 F0004157 \n", + "7439 Montrose Dallas 151 F0007439 \n", + "7440 Montrose Denver 54 F0007440 \n", + "... ... ... ... ... \n", + "4045139 Montrose Phoenix 133 F4045139 \n", + "4045140 Montrose Phoenix 188 F4045140 \n", + "4045141 Montrose Phoenix 144 F4045141 \n", + "4045142 Montrose Phoenix 125 F4045142 \n", + "4045143 Montrose Phoenix 129 F4045143 \n", + "\n", + "[2035 rows x 9 columns]" + ] + }, + "execution_count": 96, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "id": "74dfd3cd", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FlightDateDepTimeArrTimeActualElapsedTimeDistanceOriginCityNameDestCityNamePrice
13692022-04-0109:0410:231 hours 19 minutes229.0WashingtonNew York105
13702022-04-0111:0712:291 hours 22 minutes229.0WashingtonNew York56
13802022-04-0113:2014:521 hours 32 minutes229.0WashingtonNew York95
14092022-04-0119:0320:231 hours 20 minutes229.0WashingtonNew York71
14362022-04-0115:3217:031 hours 31 minutes229.0WashingtonNew York64
...........................
5654442022-04-0122:5507:095 hours 14 minutes2475.0Los AngelesNew York621
5654462022-04-0111:3919:495 hours 10 minutes2475.0Los AngelesNew York1100
5655112022-04-0115:4822:164 hours 28 minutes1620.0DenverNew York575
5655412022-04-0117:3623:053 hours 29 minutes1620.0DenverNew York669
5655812022-04-0120:5223:481 hours 56 minutes733.0ChicagoNew York338
\n", + "

889 rows × 8 columns

\n", + "
" + ], + "text/plain": [ + " FlightDate DepTime ArrTime ActualElapsedTime Distance \n", + "1369 2022-04-01 09:04 10:23 1 hours 19 minutes 229.0 \\\n", + "1370 2022-04-01 11:07 12:29 1 hours 22 minutes 229.0 \n", + "1380 2022-04-01 13:20 14:52 1 hours 32 minutes 229.0 \n", + "1409 2022-04-01 19:03 20:23 1 hours 20 minutes 229.0 \n", + "1436 2022-04-01 15:32 17:03 1 hours 31 minutes 229.0 \n", + "... ... ... ... ... ... \n", + "565444 2022-04-01 22:55 07:09 5 hours 14 minutes 2475.0 \n", + "565446 2022-04-01 11:39 19:49 5 hours 10 minutes 2475.0 \n", + "565511 2022-04-01 15:48 22:16 4 hours 28 minutes 1620.0 \n", + "565541 2022-04-01 17:36 23:05 3 hours 29 minutes 1620.0 \n", + "565581 2022-04-01 20:52 23:48 1 hours 56 minutes 733.0 \n", + "\n", + " OriginCityName DestCityName Price \n", + "1369 Washington New York 105 \n", + "1370 Washington New York 56 \n", + "1380 Washington New York 95 \n", + "1409 Washington New York 71 \n", + "1436 Washington New York 64 \n", + "... ... ... ... \n", + "565444 Los Angeles New York 621 \n", + "565446 Los Angeles New York 1100 \n", + "565511 Denver New York 575 \n", + "565541 Denver New York 669 \n", + "565581 Chicago New York 338 \n", + "\n", + "[889 rows x 8 columns]" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x[x['FlightDate']=='2022-04-01']" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "id": "93c2a26f", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Manhattan', 'Ft. Riley']\n" + ] + } + ], + "source": [ + "print('Manhattan/Ft. Riley'.split('/'))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "86b394bf", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.16" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/tools/flights/test.py b/tools/flights/test.py new file mode 100644 index 0000000000000000000000000000000000000000..24a4a86853b1bd28ece5d490a705378ef9532b2a --- /dev/null +++ b/tools/flights/test.py @@ -0,0 +1,35 @@ +# import os +# from tools.flights.apis import Flights +# import re +# import sys +# import os + +# flight = Flights('/home/xj/toolAugEnv/code/toolConstraint/database/flights/clean_Flights_2022.csv') +# data = flight.run('Austin', 'Seattle', '2022-03-01') +# # print(len(data)) +# print(data) + + +from tools.flights.apis import Flights +import pandas as pd +import sys +import os +# results = self.data[self.data["OriginCityName"] == origin] +# results = results[results["DestCityName"] == destination] +sys.path.append(os.path.abspath(os.path.join(os.getcwd(), ".."))) +os.chdir(os.path.dirname(os.path.abspath(__file__))) +unique_cities = list(Flights(path="../../database/flights/clean_Flights_2022.csv").data['OriginCityName'].unique()) + list(Flights(path="../../database/flights/clean_Flights_2022.csv").data['DestCityName'].unique()) +df = Flights(path="../../database/flights/clean_Flights_2022.csv").data + +print(len(df)) + +citySet = open('../../database/background/citySet.txt','r').read().split('\n') +cnt = 0 + +for city in unique_cities: + if city not in citySet: + df = df[(df['OriginCityName'] != city) & (df['DestCityName'] != city)] + +print(len(df)) + +df.to_csv('../../database/flights/clean_Flights_2022.csv', index=False) \ No newline at end of file diff --git a/tools/flights/test2.ipynb b/tools/flights/test2.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..17426af5ecaf0d69f171f0aa33d898a578d48837 --- /dev/null +++ b/tools/flights/test2.ipynb @@ -0,0 +1,923 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "id": "a10c60c4", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/flights/Combined_Flights_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "1c12a0f0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FlightDateAirlineOriginDestCancelledDivertedCRSDepTimeDepTimeDepDelayMinutesDepDelay...WheelsOffWheelsOnTaxiInCRSArrTimeArrDelayArrDel15ArrivalDelayGroupsArrTimeBlkDistanceGroupDivAirportLandings
02022-04-04Commutair Aka Champlain Enterprises, Inc.GJTDENFalseFalse11331123.00.0-10.0...1140.01220.08.01245-17.00.0-2.01200-125910
12022-04-04Commutair Aka Champlain Enterprises, Inc.HRLIAHFalseFalse732728.00.0-4.0...744.0839.09.0849-1.00.0-1.00800-085920
22022-04-04Commutair Aka Champlain Enterprises, Inc.DRODENFalseFalse15291514.00.0-15.0...1535.01622.014.01639-3.00.0-1.01600-165920
32022-04-04Commutair Aka Champlain Enterprises, Inc.IAHGPTFalseFalse14351430.00.0-5.0...1446.01543.04.01605-18.00.0-2.01600-165920
42022-04-04Commutair Aka Champlain Enterprises, Inc.DRODENFalseFalse11351135.00.00.0...1154.01243.08.012456.00.00.01200-125920
..................................................................
40783132022-03-31Republic AirlinesMSYEWRFalseTrue19492014.025.025.0...2031.0202.032.02354NaNNaNNaN2300-235951
40783142022-03-17Republic AirlinesCLTEWRTrueFalse17331817.044.044.0...NaNNaNNaN1942NaNNaNNaN1900-195930
40783152022-03-08Republic AirlinesALBORDFalseFalse17002318.0378.0378.0...2337.052.07.01838381.01.012.01800-185930
40783162022-03-25Republic AirlinesEWRPITFalseTrue21292322.0113.0113.0...2347.0933.06.02255NaNNaNNaN2200-225921
40783172022-03-07Republic AirlinesEWRRDUFalseTrue11541148.00.0-6.0...1201.01552.04.01333NaNNaNNaN1300-135921
\n", + "

4078318 rows × 61 columns

\n", + "
" + ], + "text/plain": [ + " FlightDate Airline Origin Dest \\\n", + "0 2022-04-04 Commutair Aka Champlain Enterprises, Inc. GJT DEN \n", + "1 2022-04-04 Commutair Aka Champlain Enterprises, Inc. HRL IAH \n", + "2 2022-04-04 Commutair Aka Champlain Enterprises, Inc. DRO DEN \n", + "3 2022-04-04 Commutair Aka Champlain Enterprises, Inc. IAH GPT \n", + "4 2022-04-04 Commutair Aka Champlain Enterprises, Inc. DRO DEN \n", + "... ... ... ... ... \n", + "4078313 2022-03-31 Republic Airlines MSY EWR \n", + "4078314 2022-03-17 Republic Airlines CLT EWR \n", + "4078315 2022-03-08 Republic Airlines ALB ORD \n", + "4078316 2022-03-25 Republic Airlines EWR PIT \n", + "4078317 2022-03-07 Republic Airlines EWR RDU \n", + "\n", + " Cancelled Diverted CRSDepTime DepTime DepDelayMinutes DepDelay \\\n", + "0 False False 1133 1123.0 0.0 -10.0 \n", + "1 False False 732 728.0 0.0 -4.0 \n", + "2 False False 1529 1514.0 0.0 -15.0 \n", + "3 False False 1435 1430.0 0.0 -5.0 \n", + "4 False False 1135 1135.0 0.0 0.0 \n", + "... ... ... ... ... ... ... \n", + "4078313 False True 1949 2014.0 25.0 25.0 \n", + "4078314 True False 1733 1817.0 44.0 44.0 \n", + "4078315 False False 1700 2318.0 378.0 378.0 \n", + "4078316 False True 2129 2322.0 113.0 113.0 \n", + "4078317 False True 1154 1148.0 0.0 -6.0 \n", + "\n", + " ... WheelsOff WheelsOn TaxiIn CRSArrTime ArrDelay ArrDel15 \\\n", + "0 ... 1140.0 1220.0 8.0 1245 -17.0 0.0 \n", + "1 ... 744.0 839.0 9.0 849 -1.0 0.0 \n", + "2 ... 1535.0 1622.0 14.0 1639 -3.0 0.0 \n", + "3 ... 1446.0 1543.0 4.0 1605 -18.0 0.0 \n", + "4 ... 1154.0 1243.0 8.0 1245 6.0 0.0 \n", + "... ... ... ... ... ... ... ... \n", + "4078313 ... 2031.0 202.0 32.0 2354 NaN NaN \n", + "4078314 ... NaN NaN NaN 1942 NaN NaN \n", + "4078315 ... 2337.0 52.0 7.0 1838 381.0 1.0 \n", + "4078316 ... 2347.0 933.0 6.0 2255 NaN NaN \n", + "4078317 ... 1201.0 1552.0 4.0 1333 NaN NaN \n", + "\n", + " ArrivalDelayGroups ArrTimeBlk DistanceGroup DivAirportLandings \n", + "0 -2.0 1200-1259 1 0 \n", + "1 -1.0 0800-0859 2 0 \n", + "2 -1.0 1600-1659 2 0 \n", + "3 -2.0 1600-1659 2 0 \n", + "4 0.0 1200-1259 2 0 \n", + "... ... ... ... ... \n", + "4078313 NaN 2300-2359 5 1 \n", + "4078314 NaN 1900-1959 3 0 \n", + "4078315 12.0 1800-1859 3 0 \n", + "4078316 NaN 2200-2259 2 1 \n", + "4078317 NaN 1300-1359 2 1 \n", + "\n", + "[4078318 rows x 61 columns]" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "e572970c", + "metadata": {}, + "outputs": [], + "source": [ + "str_data = data.astype(str)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "27a7cd6b", + "metadata": {}, + "outputs": [], + "source": [ + "column_names = ', '.join(data.columns.tolist())" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "a5cf51cc", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'FlightDate, Airline, Origin, Dest, Cancelled, Diverted, CRSDepTime, DepTime, DepDelayMinutes, DepDelay, ArrTime, ArrDelayMinutes, AirTime, CRSElapsedTime, ActualElapsedTime, Distance, Year, Quarter, Month, DayofMonth, DayOfWeek, Marketing_Airline_Network, Operated_or_Branded_Code_Share_Partners, DOT_ID_Marketing_Airline, IATA_Code_Marketing_Airline, Flight_Number_Marketing_Airline, Operating_Airline, DOT_ID_Operating_Airline, IATA_Code_Operating_Airline, Tail_Number, Flight_Number_Operating_Airline, OriginAirportID, OriginAirportSeqID, OriginCityMarketID, OriginCityName, OriginState, OriginStateFips, OriginStateName, OriginWac, DestAirportID, DestAirportSeqID, DestCityMarketID, DestCityName, DestState, DestStateFips, DestStateName, DestWac, DepDel15, DepartureDelayGroups, DepTimeBlk, TaxiOut, WheelsOff, WheelsOn, TaxiIn, CRSArrTime, ArrDelay, ArrDel15, ArrivalDelayGroups, ArrTimeBlk, DistanceGroup, DivAirportLandings'" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "column_names" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "061d3979", + "metadata": {}, + "outputs": [], + "source": [ + "pd.options.display.max_rows = 300" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "e44254fc", + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FlightDate 2022-04-04\n", + "Airline Commutair Aka Champlain Enterprises, Inc.\n", + "Origin DEN\n", + "Dest CPR\n", + "Cancelled False\n", + "Diverted False\n", + "CRSDepTime 1540\n", + "DepTime 1546.0\n", + "DepDelayMinutes 6.0\n", + "DepDelay 6.0\n", + "ArrTime 1650.0\n", + "ArrDelayMinutes 0.0\n", + "AirTime 45.0\n", + "CRSElapsedTime 70.0\n", + "ActualElapsedTime 64.0\n", + "Distance 230.0\n", + "Year 2022\n", + "Quarter 2\n", + "Month 4\n", + "DayofMonth 4\n", + "DayOfWeek 1\n", + "Marketing_Airline_Network UA\n", + "Operated_or_Branded_Code_Share_Partners UA_CODESHARE\n", + "DOT_ID_Marketing_Airline 19977\n", + "IATA_Code_Marketing_Airline UA\n", + "Flight_Number_Marketing_Airline 4288\n", + "Operating_Airline C5\n", + "DOT_ID_Operating_Airline 20445\n", + "IATA_Code_Operating_Airline C5\n", + "Tail_Number N14177\n", + "Flight_Number_Operating_Airline 4288\n", + "OriginAirportID 11292\n", + "OriginAirportSeqID 1129202\n", + "OriginCityMarketID 30325\n", + "OriginCityName Denver, CO\n", + "OriginState CO\n", + "OriginStateFips 8\n", + "OriginStateName Colorado\n", + "OriginWac 82\n", + "DestAirportID 11122\n", + "DestAirportSeqID 1112205\n", + "DestCityMarketID 31122\n", + "DestCityName Casper, WY\n", + "DestState WY\n", + "DestStateFips 56\n", + "DestStateName Wyoming\n", + "DestWac 88\n", + "DepDel15 0.0\n", + "DepartureDelayGroups 0.0\n", + "DepTimeBlk 1500-1559\n", + "TaxiOut 13.0\n", + "WheelsOff 1559.0\n", + "WheelsOn 1644.0\n", + "TaxiIn 6.0\n", + "CRSArrTime 1650\n", + "ArrDelay 0.0\n", + "ArrDel15 0.0\n", + "ArrivalDelayGroups 0.0\n", + "ArrTimeBlk 1600-1659\n", + "DistanceGroup 1\n", + "DivAirportLandings 0\n", + "Name: 10, dtype: object\n" + ] + } + ], + "source": [ + "print(data.iloc[10],flush=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "id": "1a0f208d", + "metadata": {}, + "outputs": [], + "source": [ + "filter_data = data[['FlightDate','DepTime','ArrTime','Distance','OriginCityName','DestCityName']]" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "id": "4cf6383d", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FlightDate\n", + "DepTime\n", + "ArrTime\n", + "Distance\n", + "OriginCityName\n", + "DestCityName\n" + ] + } + ], + "source": [ + "for unit in filter_data:\n", + " print(unit)" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "id": "ddbf175a", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "fc2986be7e664907986359e2bcf22671", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "0it [00:00, ?it/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "IOPub message rate exceeded.\n", + "The notebook server will temporarily stop sending output\n", + "to the client in order to avoid crashing it.\n", + "To change this limit, set the config variable\n", + "`--NotebookApp.iopub_msg_rate_limit`.\n", + "\n", + "Current values:\n", + "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", + "NotebookApp.rate_limit_window=3.0 (secs)\n", + "\n" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[63], line 3\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mtqdm\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mautonotebook\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m tqdm\n\u001b[1;32m 2\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m idx, unit \u001b[38;5;129;01min\u001b[39;00m tqdm(\u001b[38;5;28menumerate\u001b[39m(filter_data\u001b[38;5;241m.\u001b[39miterrows())):\n\u001b[0;32m----> 3\u001b[0m \u001b[43mfilter_data\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mloc\u001b[49m\u001b[43m[\u001b[49m\u001b[43midx\u001b[49m\u001b[43m,\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mOriginCityName\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m \u001b[38;5;241m=\u001b[39m unit[\u001b[38;5;241m1\u001b[39m][\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mOriginCityName\u001b[39m\u001b[38;5;124m'\u001b[39m]\u001b[38;5;241m.\u001b[39msplit(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m,\u001b[39m\u001b[38;5;124m'\u001b[39m)[\u001b[38;5;241m0\u001b[39m]\n\u001b[1;32m 4\u001b[0m filter_data\u001b[38;5;241m.\u001b[39mloc[idx,\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mDestCityName\u001b[39m\u001b[38;5;124m'\u001b[39m] \u001b[38;5;241m=\u001b[39m unit[\u001b[38;5;241m1\u001b[39m][\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mDestCityName\u001b[39m\u001b[38;5;124m'\u001b[39m]\u001b[38;5;241m.\u001b[39msplit(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m,\u001b[39m\u001b[38;5;124m'\u001b[39m)[\u001b[38;5;241m0\u001b[39m]\n\u001b[1;32m 5\u001b[0m filter_data\u001b[38;5;241m.\u001b[39mloc[idx,\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mprice\u001b[39m\u001b[38;5;124m'\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mint\u001b[39m((unit[\u001b[38;5;241m1\u001b[39m][\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mDistance\u001b[39m\u001b[38;5;124m'\u001b[39m]) \u001b[38;5;241m*\u001b[39m random\u001b[38;5;241m.\u001b[39muniform(\u001b[38;5;241m0.2\u001b[39m,\u001b[38;5;241m0.5\u001b[39m))\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/indexing.py:849\u001b[0m, in \u001b[0;36m_LocationIndexer.__setitem__\u001b[0;34m(self, key, value)\u001b[0m\n\u001b[1;32m 846\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_has_valid_setitem_indexer(key)\n\u001b[1;32m 848\u001b[0m iloc \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mname \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124miloc\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj\u001b[38;5;241m.\u001b[39miloc\n\u001b[0;32m--> 849\u001b[0m \u001b[43miloc\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_setitem_with_indexer\u001b[49m\u001b[43m(\u001b[49m\u001b[43mindexer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mvalue\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mname\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/indexing.py:1835\u001b[0m, in \u001b[0;36m_iLocIndexer._setitem_with_indexer\u001b[0;34m(self, indexer, value, name)\u001b[0m\n\u001b[1;32m 1832\u001b[0m \u001b[38;5;66;03m# align and set the values\u001b[39;00m\n\u001b[1;32m 1833\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m take_split_path:\n\u001b[1;32m 1834\u001b[0m \u001b[38;5;66;03m# We have to operate column-wise\u001b[39;00m\n\u001b[0;32m-> 1835\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_setitem_with_indexer_split_path\u001b[49m\u001b[43m(\u001b[49m\u001b[43mindexer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mvalue\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mname\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1836\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 1837\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_setitem_single_block(indexer, value, name)\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/indexing.py:1928\u001b[0m, in \u001b[0;36m_iLocIndexer._setitem_with_indexer_split_path\u001b[0;34m(self, indexer, value, name)\u001b[0m\n\u001b[1;32m 1925\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 1926\u001b[0m \u001b[38;5;66;03m# scalar value\u001b[39;00m\n\u001b[1;32m 1927\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m loc \u001b[38;5;129;01min\u001b[39;00m ilocs:\n\u001b[0;32m-> 1928\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_setitem_single_column\u001b[49m\u001b[43m(\u001b[49m\u001b[43mloc\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mvalue\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpi\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/indexing.py:2034\u001b[0m, in \u001b[0;36m_iLocIndexer._setitem_single_column\u001b[0;34m(self, loc, value, plane_indexer)\u001b[0m\n\u001b[1;32m 2030\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj\u001b[38;5;241m.\u001b[39misetitem(loc, value)\n\u001b[1;32m 2031\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 2032\u001b[0m \u001b[38;5;66;03m# set value into the column (first attempting to operate inplace, then\u001b[39;00m\n\u001b[1;32m 2033\u001b[0m \u001b[38;5;66;03m# falling back to casting if necessary)\u001b[39;00m\n\u001b[0;32m-> 2034\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mobj\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_mgr\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcolumn_setitem\u001b[49m\u001b[43m(\u001b[49m\u001b[43mloc\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mplane_indexer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mvalue\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 2036\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj\u001b[38;5;241m.\u001b[39m_clear_item_cache()\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/internals/managers.py:1385\u001b[0m, in \u001b[0;36mBlockManager.column_setitem\u001b[0;34m(self, loc, idx, value, inplace_only)\u001b[0m\n\u001b[1;32m 1383\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 1384\u001b[0m new_mgr \u001b[38;5;241m=\u001b[39m col_mgr\u001b[38;5;241m.\u001b[39msetitem((idx,), value)\n\u001b[0;32m-> 1385\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43miset\u001b[49m\u001b[43m(\u001b[49m\u001b[43mloc\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mnew_mgr\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_block\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mvalues\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43minplace\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/internals/managers.py:1213\u001b[0m, in \u001b[0;36mBlockManager.iset\u001b[0;34m(self, loc, value, inplace)\u001b[0m\n\u001b[1;32m 1211\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_iset_split_block(blkno_l, blk_locs, value_getitem(val_locs))\n\u001b[1;32m 1212\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m-> 1213\u001b[0m \u001b[43mblk\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mset_inplace\u001b[49m\u001b[43m(\u001b[49m\u001b[43mblk_locs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mvalue_getitem\u001b[49m\u001b[43m(\u001b[49m\u001b[43mval_locs\u001b[49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1214\u001b[0m \u001b[38;5;28;01mcontinue\u001b[39;00m\n\u001b[1;32m 1215\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", + "File \u001b[0;32m~/miniconda3/envs/py39/lib/python3.9/site-packages/pandas/core/internals/blocks.py:924\u001b[0m, in \u001b[0;36mBlock.set_inplace\u001b[0;34m(self, locs, values, copy)\u001b[0m\n\u001b[1;32m 922\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m copy:\n\u001b[1;32m 923\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mvalues \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mvalues\u001b[38;5;241m.\u001b[39mcopy()\n\u001b[0;32m--> 924\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mvalues\u001b[49m\u001b[43m[\u001b[49m\u001b[43mlocs\u001b[49m\u001b[43m]\u001b[49m \u001b[38;5;241m=\u001b[39m values\n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + ] + } + ], + "source": [ + "from tqdm.autonotebook import tqdm\n", + "for idx, unit in tqdm(enumerate(filter_data.iterrows())):\n", + " filter_data.loc[idx,'OriginCityName'] = unit[1]['OriginCityName'].split(',')[0]\n", + " filter_data.loc[idx,'DestCityName'] = unit[1]['DestCityName'].split(',')[0]\n", + " filter_data.loc[idx,'price'] = int((unit[1]['Distance']) * random.uniform(0.2,0.5))" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "0ac9a59d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
FlightDateDepTimeArrTimeDistanceOriginCityNameDestCityNameprice
02022-04-041123.01228.0212.0Grand JunctionDenver72.0
12022-04-04728.0848.0295.0Harlingen/San BenitoHouston141.0
22022-04-041514.01636.0251.0DurangoDenver114.0
32022-04-041430.01547.0376.0HoustonGulfport/Biloxi103.0
42022-04-041135.01251.0251.0DurangoDenver118.0
........................
40783132022-03-312014.0234.01167.0New Orleans, LANewark, NJNaN
40783142022-03-171817.0NaN529.0Charlotte, NCNewark, NJNaN
40783152022-03-082318.059.0723.0Albany, NYChicago, ILNaN
40783162022-03-252322.0939.0319.0Newark, NJPittsburgh, PANaN
40783172022-03-071148.01556.0416.0Newark, NJRaleigh/Durham, NCNaN
\n", + "

4078318 rows × 7 columns

\n", + "
" + ], + "text/plain": [ + " FlightDate DepTime ArrTime Distance OriginCityName \\\n", + "0 2022-04-04 1123.0 1228.0 212.0 Grand Junction \n", + "1 2022-04-04 728.0 848.0 295.0 Harlingen/San Benito \n", + "2 2022-04-04 1514.0 1636.0 251.0 Durango \n", + "3 2022-04-04 1430.0 1547.0 376.0 Houston \n", + "4 2022-04-04 1135.0 1251.0 251.0 Durango \n", + "... ... ... ... ... ... \n", + "4078313 2022-03-31 2014.0 234.0 1167.0 New Orleans, LA \n", + "4078314 2022-03-17 1817.0 NaN 529.0 Charlotte, NC \n", + "4078315 2022-03-08 2318.0 59.0 723.0 Albany, NY \n", + "4078316 2022-03-25 2322.0 939.0 319.0 Newark, NJ \n", + "4078317 2022-03-07 1148.0 1556.0 416.0 Newark, NJ \n", + "\n", + " DestCityName price \n", + "0 Denver 72.0 \n", + "1 Houston 141.0 \n", + "2 Denver 114.0 \n", + "3 Gulfport/Biloxi 103.0 \n", + "4 Denver 118.0 \n", + "... ... ... \n", + "4078313 Newark, NJ NaN \n", + "4078314 Newark, NJ NaN \n", + "4078315 Chicago, IL NaN \n", + "4078316 Pittsburgh, PA NaN \n", + "4078317 Raleigh/Durham, NC NaN \n", + "\n", + "[4078318 rows x 7 columns]" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "filter_data" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "10a2b0e3", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "b7bbe97af9df406fb0e56a6f8dfd8656", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "0it [00:00, ?it/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(0, FlightDate 2022-04-04\n", + "DepTime 1123.0\n", + "ArrTime 1228.0\n", + "Distance 212.0\n", + "OriginCityName Grand Junction\n", + "DestCityName Denver\n", + "Name: 0, dtype: object)\n" + ] + } + ], + "source": [ + "import random\n", + "for idx, unit in tqdm(enumerate(filter_data.iterrows())):\n", + " filter_data.loc[idx,'price'] = eval(unit[1]['Distance']) * random.uniform(0.2,0.5))" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "1ca1f597", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_1504075/2172656540.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " filter_data['price'] = None\n" + ] + } + ], + "source": [ + "filter_data['price'] = None" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e32d2e3c", + "metadata": {}, + "outputs": [], + "source": [ + "import random\n", + "random.uniform(0.2,0.5)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "cf4ecc5e", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.16" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/tools/googleDistanceMatrix/__pycache__/apis.cpython-39.pyc b/tools/googleDistanceMatrix/__pycache__/apis.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8b358b66d3abf5e7a0cdb5bf98e455c01d5e02fb Binary files /dev/null and b/tools/googleDistanceMatrix/__pycache__/apis.cpython-39.pyc differ diff --git a/tools/googleDistanceMatrix/apis.py b/tools/googleDistanceMatrix/apis.py new file mode 100644 index 0000000000000000000000000000000000000000..e72a6d14c5d8fe19c036ca364090dc70b7871f49 --- /dev/null +++ b/tools/googleDistanceMatrix/apis.py @@ -0,0 +1,156 @@ +import requests +from annotation.src.utils import extract_before_parenthesis +import os +from requests.exceptions import SSLError +import time +import sys +import pandas as pd +import numpy as np + +os.environ["http_proxy"] = "http://127.0.0.1:7890" +os.environ["https_proxy"] = "http://127.0.0.1:7890" + + +class GoogleDistanceMatrix: + def __init__(self, subscription_key: str="AIzaSyClbhCKqk2QS97jadE0RQ3qYCAteY7sK4I") -> None: + self.gplaces_api_key: str = subscription_key + self.data = pd.read_csv('../database/googleDistanceMatrix/distance.csv') + print("GoogleDistanceMatrix loaded.") + + def run(self, origin, destination, mode='driving'): + origin = extract_before_parenthesis(origin) + destination = extract_before_parenthesis(destination) + info = {"origin": origin, "destination": destination,"cost": None, "duration": None, "distance": None} + response = self.data[(self.data['origin'] == origin) & (self.data['destination'] == destination)] + if len(response) > 0: + if response['duration'].values[0] is None or response['distance'].values[0] is None or response['duration'].values[0] is np.nan or response['distance'].values[0] is np.nan: + return "No valid information." + info["duration"] = response['duration'].values[0] + info["distance"] = response['distance'].values[0] + if 'driving' in mode: + info["cost"] = int(eval(info["distance"].replace("km","").replace(",","")) * 0.05) + elif mode == "taxi": + info["cost"] = int(eval(info["distance"].replace("km","").replace(",",""))) + if 'day' in info["duration"]: + return "No valid information." + return f"{mode}, from {origin} to {destination}, duration: {info['duration']}, distance: {info['distance']}, cost: {info['cost']}" + + return f"{mode}, from {origin} to {destination}, no valid information." + + def run_for_evaluation(self, origin, destination, mode='driving'): + origin = extract_before_parenthesis(origin) + destination = extract_before_parenthesis(destination) + info = {"origin": origin, "destination": destination,"cost": None, "duration": None, "distance": None} + response = self.data[(self.data['origin'] == origin) & (self.data['destination'] == destination)] + if len(response) > 0: + if response['duration'].values[0] is None or response['distance'].values[0] is None or response['duration'].values[0] is np.nan or response['distance'].values[0] is np.nan: + return info + info["duration"] = response['duration'].values[0] + info["distance"] = response['distance'].values[0] + + if 'day' not in info["duration"]: + if 'driving' in mode: + info["cost"] = int(eval(info["distance"].replace("km","").replace(",","")) * 0.05) + elif mode == "taxi": + info["cost"] = int(eval(info["distance"].replace("km","").replace(",",""))) + + return info + + return info + + + def run_online(self, origin, destination, mode="driving"): + # mode in ['driving','taxi','walking', 'distance','transit'] + endpoint = "https://maps.googleapis.com/maps/api/distancematrix/json" + + params = { + "origins": origin, + "destinations": destination, + "mode": mode if mode=="taxi" else "driving", + "key": self.gplaces_api_key + } + + while True: + try: + response = requests.get(endpoint, params=params) + break + except SSLError: + time.sleep(30) + + data = response.json() + info = {"origin": origin, "destination": destination,"cost": None, "duration": None, "distance": None} + if data['status'] == "OK": + element = data['rows'][0]['elements'][0] + if element['status'] == "OK": + info["duration"] = element['duration']['text'] + info["distance"] = element['distance']['text'] + if 'driving' in mode: + info["cost"] = int(eval(info["distance"].replace("km","").replace(",","")) * 0.05) + elif mode == "taxi": + info["cost"] = int(eval(info["distance"].replace("km","").replace(",",""))) + # if 'day' in info["duration"]: + # return "No valid information." + return f"{mode}, from {origin} to {destination}, duration: {info['duration']}, distance: {info['distance']}, cost: {info['cost']}" + + return "No valid information." + + def run_for_annotation(self, origin, destination, mode="driving"): + # mode in ['driving','taxi','walking', 'distance','transit'] + endpoint = "https://maps.googleapis.com/maps/api/distancematrix/json" + + params = { + "origins": extract_before_parenthesis(origin), + "destinations": extract_before_parenthesis(destination), + "mode": mode if mode!="taxi" else "driving", + "key": self.gplaces_api_key + } + + response = requests.get(endpoint, params=params) + data = response.json() + info = {} + if data['status'] == "OK": + element = data['rows'][0]['elements'][0] + if element['status'] == "OK": + info["duration"] = element['duration']['text'] + info["distance"] = element['distance']['text'] + info["cost"] = None + if 'driving' in mode: + info["cost"] = int(eval(info["distance"].replace("km","").replace(",","")) * 0.05) + elif mode == "taxi": + info["cost"] = int(eval(info["distance"].replace("km","").replace(",",""))) + else: + info = {"duration": "N/A", "distance": "N/A", "cost": "N/A", "Hint":"Please check the input."} + return info + + + def run_for_build_database(self, origin, destination): + # mode in ['driving','taxi','walking', 'distance','transit'] + endpoint = "https://maps.googleapis.com/maps/api/distancematrix/json" + + params = { + "origins": extract_before_parenthesis(origin), + "destinations": extract_before_parenthesis(destination), + "mode": "driving", + "key": self.gplaces_api_key + } + + # response = requests.get(endpoint, params=params) + while True: + try: + response = requests.get(endpoint, params=params) + break + except: + # print the error + error = sys.exc_info()[0] + print(error) + time.sleep(30) + + data = response.json() + info = {"origin": extract_before_parenthesis(origin), "destination": extract_before_parenthesis(destination),"cost": None, "duration": None, "distance": None} + if data['status'] == "OK": + element = data['rows'][0]['elements'][0] + if element['status'] == "OK": + info["duration"] = element['duration']['text'] + info["distance"] = element['distance']['text'] + + return info \ No newline at end of file diff --git a/tools/googleDistanceMatrix/build_database.py b/tools/googleDistanceMatrix/build_database.py new file mode 100644 index 0000000000000000000000000000000000000000..aae172aa7e4b2d0467309b301218fe096173375e --- /dev/null +++ b/tools/googleDistanceMatrix/build_database.py @@ -0,0 +1,75 @@ +from apis import GoogleDistanceMatrix +import os +import json +from tqdm import tqdm +import csv + +os.environ["http_proxy"] = "http://127.0.0.1:7890" +os.environ["https_proxy"] = "http://127.0.0.1:7890" +gdm = GoogleDistanceMatrix() + +# print(gdm.run_for_build_database("New York","Seattle")) + + +def load_line_json_data(filename): + data = [] + with open(filename, 'r', encoding='utf-8') as f: + for line in f.read().strip().split('\n'): + unit = json.loads(line) + data.append(unit) + return data + + +def get_city_list(days, deparure_city, destination): + city_list = [] + city_list.append(deparure_city) + if days == 3: + city_list.append(destination) + else: + city_set = open('/home/xj/toolAugEnv/code/toolConstraint/database/background/citySet_with_states.txt').read().split('\n') + state_city_map = {} + for unit in city_set: + city, state = unit.split('\t') + if state not in state_city_map: + state_city_map[state] = [] + state_city_map[state].append(city) + for city in state_city_map[destination]: + if city != deparure_city: + city_list.append(city + f"({destination})") + return city_list + +if __name__ == '__main__': + + org_dest_list = [] + query_list =load_line_json_data('/home/xj/toolAugEnv/code/toolConstraint/data/query/all.jsonl') + info_list = [] + + for query in tqdm(query_list): + + destination_city_list = get_city_list(query['days'],query['org'],query['dest']) + + # for city in destination_city_list: + # if [query['org'],city] not in org_dest_list: + # org_dest_list.append([query['org'],city]) + # info_list.append(gdm.run_for_build_database(query['org'],city)) + # if [city,query['org']] not in org_dest_list: + # org_dest_list.append([city,query['org']]) + # info_list.append(gdm.run_for_build_database(city,query['org'])) + + + for city_1 in tqdm(destination_city_list): + for city_2 in destination_city_list: + if city_1 != city_2 and [city_1,city_2] not in org_dest_list: + org_dest_list.append([city_1,city_2]) + info_list.append(gdm.run_for_build_database(city_1,city_2)) + + # # write to csv file + # # example:{'origin': 'New York', 'destination': 'Seattle', 'cost': None, 'duration': '1 day 18 hours', 'distance': '4,589 km'} + with open('/home/xj/toolAugEnv/code/toolConstraint/database/background/distance.csv', 'w', newline='') as csvfile: + fieldnames = ['origin', 'destination', 'cost', 'duration', 'distance'] + writer = csv.DictWriter(csvfile, fieldnames=fieldnames) + writer.writeheader() + for unit in info_list: + writer.writerow(unit) + + diff --git a/tools/googleDistanceMatrix/test.py b/tools/googleDistanceMatrix/test.py new file mode 100644 index 0000000000000000000000000000000000000000..37845069d7eff15e2c43df58136dcf05137340ae --- /dev/null +++ b/tools/googleDistanceMatrix/test.py @@ -0,0 +1,7 @@ +from apis import GoogleDistanceMatrix +import os +os.environ["http_proxy"] = "http://127.0.0.1:7890" +os.environ["https_proxy"] = "http://127.0.0.1:7890" +gdm = GoogleDistanceMatrix() + +print(gdm.run_online("Los Angeles","San Diego",'taxi')) \ No newline at end of file diff --git a/tools/planner/__pycache__/apis.cpython-39.pyc b/tools/planner/__pycache__/apis.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cda6cb35768b0b0dbdb23cecc4b60f1aa4bafa9d Binary files /dev/null and b/tools/planner/__pycache__/apis.cpython-39.pyc differ diff --git a/tools/planner/__pycache__/env.cpython-39.pyc b/tools/planner/__pycache__/env.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c7f22e9cb4f14cf5d761302d51566bf951225c61 Binary files /dev/null and b/tools/planner/__pycache__/env.cpython-39.pyc differ diff --git a/tools/planner/apis.py b/tools/planner/apis.py new file mode 100644 index 0000000000000000000000000000000000000000..538be942ac5c253565467205020d1e33029b2083 --- /dev/null +++ b/tools/planner/apis.py @@ -0,0 +1,388 @@ +import sys +import os +sys.path.append(os.path.abspath(os.path.join(os.getcwd(), ".."))) +from langchain.prompts import PromptTemplate +from agents.prompts import planner_agent_prompt, cot_planner_agent_prompt, react_planner_agent_prompt,reflect_prompt,react_reflect_planner_agent_prompt, REFLECTION_HEADER +from langchain.chat_models import ChatOpenAI +from langchain.llms.base import BaseLLM +from langchain.schema import ( + AIMessage, + HumanMessage, + SystemMessage +) +from env import ReactEnv,ReactReflectEnv +import tiktoken +import re +import openai +import time +from enum import Enum +from typing import List, Union, Literal +from langchain_google_genai import ChatGoogleGenerativeAI + + +def catch_openai_api_error(): + error = sys.exc_info()[0] + if error == openai.error.APIConnectionError: + print("APIConnectionError") + elif error == openai.error.RateLimitError: + print("RateLimitError") + time.sleep(60) + elif error == openai.error.APIError: + print("APIError") + elif error == openai.error.AuthenticationError: + print("AuthenticationError") + else: + print("API error:", error) + + +class ReflexionStrategy(Enum): + """ + REFLEXION: Apply reflexion to the next reasoning trace + """ + REFLEXION = 'reflexion' + + +class Planner: + def __init__(self, + # args, + agent_prompt: PromptTemplate = planner_agent_prompt, + model_name: str = 'gpt-3.5-turbo-1106', + ) -> None: + + self.agent_prompt = agent_prompt + self.scratchpad: str = '' + self.model_name = model_name + self.enc = tiktoken.encoding_for_model("gpt-3.5-turbo") + + if model_name in ['mistral-7B-32K']: + self.llm = ChatOpenAI(temperature=0, + max_tokens=4096, + openai_api_key="EMPTY", + openai_api_base="http://localhost:8301/v1", + model_name="gpt-3.5-turbo") + + if model_name in ['ChatGLM3-6B-32K']: + self.llm = ChatOpenAI(temperature=0, + max_tokens=4096, + openai_api_key="EMPTY", + openai_api_base="http://localhost:8501/v1", + model_name="gpt-3.5-turbo") + + elif model_name in ['mixtral']: + self.max_token_length = 30000 + self.llm = ChatOpenAI(temperature=0, + max_tokens=4096, + openai_api_key="EMPTY", + openai_api_base="http://10.176.40.135:8000/v1", + model_name="/home/huggingface_models/models--mistralai--Mixtral-8x7B-Instruct-v0.1/snapshots/e0bbb53cee412aba95f3b3fa4fc0265b1a0788b2") + + elif model_name in ['gemini']: + self.llm = ChatGoogleGenerativeAI(temperature=0,model="gemini-pro",google_api_key='AIzaSyDarE2hG-cCeE6-GzNcEHflQa4kjY0QCK0') + else: + self.llm = ChatOpenAI(model_name=model_name, temperature=0, max_tokens=4096, openai_api_key='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') + + + print(f"PlannerAgent {model_name} loaded.") + + def run(self, text, query, log_file=None) -> str: + if log_file: + log_file.write('\n---------------Planner\n'+self._build_agent_prompt(text, query)) + # print(self._build_agent_prompt(text, query)) + if self.model_name in ['gemini']: + return str(self.llm.invoke(self._build_agent_prompt(text, query)).content) + else: + if len(self.enc.encode(self._build_agent_prompt(text, query))) > 12000: + return 'Max Token Length Exceeded.' + else: + return self.llm([HumanMessage(content=self._build_agent_prompt(text, query))]).content + + def _build_agent_prompt(self, text, query) -> str: + return self.agent_prompt.format( + text=text, + query=query) + + +class ReactPlanner: + """ + A question answering ReAct Agent. + """ + def __init__(self, + agent_prompt: PromptTemplate = react_planner_agent_prompt, + model_name: str = 'gpt-3.5-turbo-1106', + ) -> None: + + self.agent_prompt = agent_prompt + self.react_llm = ChatOpenAI(model_name=model_name, temperature=0, max_tokens=1024, openai_api_key='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',model_kwargs={"stop": ["Action","Thought","Observation"]}) + self.env = ReactEnv() + self.query = None + self.max_steps = 30 + self.reset() + self.finished = False + self.answer = '' + self.enc = tiktoken.encoding_for_model("gpt-3.5-turbo") + + def run(self, text, query, reset = True) -> None: + + self.query = query + self.text = text + + if reset: + self.reset() + + + while not (self.is_halted() or self.is_finished()): + self.step() + + return self.answer, self.scratchpad + + + def step(self) -> None: + # Think + self.scratchpad += f'\nThought {self.curr_step}:' + self.scratchpad += ' ' + self.prompt_agent() + print(self.scratchpad.split('\n')[-1]) + + # Act + self.scratchpad += f'\nAction {self.curr_step}:' + action = self.prompt_agent() + self.scratchpad += ' ' + action + print(self.scratchpad.split('\n')[-1]) + + # Observe + self.scratchpad += f'\nObservation {self.curr_step}: ' + + action_type, action_arg = parse_action(action) + + if action_type == 'CostEnquiry': + try: + input_arg = eval(action_arg) + if type(input_arg) != dict: + raise ValueError('The sub plan can not be parsed into json format, please check. Only one day plan is supported.') + observation = f'Cost: {self.env.run(input_arg)}' + except SyntaxError: + observation = f'The sub plan can not be parsed into json format, please check.' + except ValueError as e: + observation = str(e) + + elif action_type == 'Finish': + self.finished = True + observation = f'The plan is finished.' + self.answer = action_arg + + else: + observation = f'Action {action_type} is not supported.' + + self.curr_step += 1 + + self.scratchpad += observation + print(self.scratchpad.split('\n')[-1]) + + def prompt_agent(self) -> str: + while True: + try: + return format_step(self.react_llm([HumanMessage(content=self._build_agent_prompt())]).content) + except: + catch_openai_api_error() + print(self._build_agent_prompt()) + print(len(self.enc.encode(self._build_agent_prompt()))) + time.sleep(5) + + def _build_agent_prompt(self) -> str: + return self.agent_prompt.format( + query = self.query, + text = self.text, + scratchpad = self.scratchpad) + + def is_finished(self) -> bool: + return self.finished + + def is_halted(self) -> bool: + return ((self.curr_step > self.max_steps) or ( + len(self.enc.encode(self._build_agent_prompt())) > 14000)) and not self.finished + + def reset(self) -> None: + self.scratchpad = '' + self.answer = '' + self.curr_step = 1 + self.finished = False + + +class ReactReflectPlanner: + """ + A question answering Self-Reflecting React Agent. + """ + def __init__(self, + agent_prompt: PromptTemplate = react_reflect_planner_agent_prompt, + reflect_prompt: PromptTemplate = reflect_prompt, + model_name: str = 'gpt-3.5-turbo-1106', + ) -> None: + + self.agent_prompt = agent_prompt + self.reflect_prompt = reflect_prompt + if model_name in ['gemini']: + self.react_llm = ChatGoogleGenerativeAI(temperature=0,model="gemini-pro",google_api_key='AIzaSyDarE2hG-cCeE6-GzNcEHflQa4kjY0QCK0') + self.reflect_llm = ChatGoogleGenerativeAI(temperature=0,model="gemini-pro",google_api_key='AIzaSyDarE2hG-cCeE6-GzNcEHflQa4kjY0QCK0') + else: + self.react_llm = ChatOpenAI(model_name=model_name, temperature=0, max_tokens=1024, openai_api_key='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',model_kwargs={"stop": ["Action","Thought","Observation"]}) + self.reflect_llm = ChatOpenAI(model_name=model_name, temperature=0, max_tokens=1024, openai_api_key='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',model_kwargs={"stop": ["Action","Thought","Observation"]}) + self.model_name = model_name + self.env = ReactReflectEnv() + self.query = None + self.max_steps = 30 + self.reset() + self.finished = False + self.answer = '' + self.reflections: List[str] = [] + self.reflections_str: str = '' + self.enc = tiktoken.encoding_for_model("gpt-3.5-turbo") + + def run(self, text, query, reset = True) -> None: + + self.query = query + self.text = text + + if reset: + self.reset() + + + while not (self.is_halted() or self.is_finished()): + self.step() + if self.env.is_terminated and not self.finished: + self.reflect(ReflexionStrategy.REFLEXION) + + + return self.answer, self.scratchpad + + + def step(self) -> None: + # Think + self.scratchpad += f'\nThought {self.curr_step}:' + self.scratchpad += ' ' + self.prompt_agent() + print(self.scratchpad.split('\n')[-1]) + + # Act + self.scratchpad += f'\nAction {self.curr_step}:' + action = self.prompt_agent() + self.scratchpad += ' ' + action + print(self.scratchpad.split('\n')[-1]) + + # Observe + self.scratchpad += f'\nObservation {self.curr_step}: ' + + action_type, action_arg = parse_action(action) + + if action_type == 'CostEnquiry': + try: + input_arg = eval(action_arg) + if type(input_arg) != dict: + raise ValueError('The sub plan can not be parsed into json format, please check. Only one day plan is supported.') + observation = f'Cost: {self.env.run(input_arg)}' + except SyntaxError: + observation = f'The sub plan can not be parsed into json format, please check.' + except ValueError as e: + observation = str(e) + + elif action_type == 'Finish': + self.finished = True + observation = f'The plan is finished.' + self.answer = action_arg + + else: + observation = f'Action {action_type} is not supported.' + + self.curr_step += 1 + + self.scratchpad += observation + print(self.scratchpad.split('\n')[-1]) + + def reflect(self, strategy: ReflexionStrategy) -> None: + print('Reflecting...') + if strategy == ReflexionStrategy.REFLEXION: + self.reflections += [self.prompt_reflection()] + self.reflections_str = format_reflections(self.reflections) + else: + raise NotImplementedError(f'Unknown reflection strategy: {strategy}') + print(self.reflections_str) + + def prompt_agent(self) -> str: + while True: + try: + if self.model_name in ['gemini']: + return format_step(self.react_llm.invoke(self._build_agent_prompt()).content) + else: + return format_step(self.react_llm([HumanMessage(content=self._build_agent_prompt())]).content) + except: + catch_openai_api_error() + print(self._build_agent_prompt()) + print(len(self.enc.encode(self._build_agent_prompt()))) + time.sleep(5) + + def prompt_reflection(self) -> str: + while True: + try: + if self.model_name in ['gemini']: + return format_step(self.reflect_llm.invoke(self._build_reflection_prompt()).content) + else: + return format_step(self.reflect_llm([HumanMessage(content=self._build_reflection_prompt())]).content) + except: + catch_openai_api_error() + print(self._build_reflection_prompt()) + print(len(self.enc.encode(self._build_reflection_prompt()))) + time.sleep(5) + + def _build_agent_prompt(self) -> str: + return self.agent_prompt.format( + query = self.query, + text = self.text, + scratchpad = self.scratchpad, + reflections = self.reflections_str) + + def _build_reflection_prompt(self) -> str: + return self.reflect_prompt.format( + query = self.query, + text = self.text, + scratchpad = self.scratchpad) + + def is_finished(self) -> bool: + return self.finished + + def is_halted(self) -> bool: + return ((self.curr_step > self.max_steps) or ( + len(self.enc.encode(self._build_agent_prompt())) > 14000)) and not self.finished + + def reset(self) -> None: + self.scratchpad = '' + self.answer = '' + self.curr_step = 1 + self.finished = False + self.reflections = [] + self.reflections_str = '' + self.env.reset() + +def format_step(step: str) -> str: + return step.strip('\n').strip().replace('\n', '') + +def parse_action(string): + pattern = r'^(\w+)\[(.+)\]$' + match = re.match(pattern, string) + + try: + if match: + action_type = match.group(1) + action_arg = match.group(2) + return action_type, action_arg + else: + return None, None + + except: + return None, None + +def format_reflections(reflections: List[str], + header: str = REFLECTION_HEADER) -> str: + if reflections == []: + return '' + else: + return header + 'Reflections:\n- ' + '\n- '.join([r.strip() for r in reflections]) + +# if __name__ == '__main__': + \ No newline at end of file diff --git a/tools/planner/env.py b/tools/planner/env.py new file mode 100644 index 0000000000000000000000000000000000000000..7e6b7e32589f281842b3b7401d22171b1c92dbd2 --- /dev/null +++ b/tools/planner/env.py @@ -0,0 +1,208 @@ +from tools.flights.apis import Flights +from tools.accommodations.apis import Accommodations +from tools.restaurants.apis import Restaurants +from tools.googleDistanceMatrix.apis import GoogleDistanceMatrix +from tools.googlePlaces.apis import GooglePlaces +from tools.attractions.apis import Attractions +from evaluation.hardConstriant import extract_from_to,get_valid_name_city +import math + + + + + +class ReactEnv: + def __init__(self): + + self.flight = Flights() + self.accommodation = Accommodations() + self.restaurants = Restaurants() + self.googleDistanceMatrix = GoogleDistanceMatrix() + self.googlePlaces = GooglePlaces() + self.attractions = Attractions() + + def run(self, tested_data): + + total_cost = 0 + unit = tested_data + people_number = tested_data['people_number'] + returned_info = [] + + if 'transportation' in unit and unit['transportation'] and unit['transportation'] != '-': + value = unit['transportation'] + org_city, dest_city = extract_from_to(value) + if org_city == None or dest_city == None: + org_city, dest_city = extract_from_to(unit['current_city']) + if 'flight number' in value.lower(): + try: + res = self.flight.data[self.flight.data['Flight Number'] == value.split('Flight Number: ')[1].split(',')[0]] + if len(res) > 0: + total_cost += res['Price'].values[0] * people_number + else: + returned_info.append('The filght information is not valid') + except: + returned_info.append('The filght information is not valid') + + elif 'self-driving' in value.lower() or 'taxi' in value.lower(): + try: + if 'self-driving' in value.lower(): + # print(org_city,dest_city) + cost = self.googleDistanceMatrix.run_for_evaluation(org_city,dest_city,'self-driving')['cost'] + if cost == None: + returned_info.append('The transporation information is not valid, please check.') + else: + total_cost += cost * math.ceil(people_number * 1.0 / 5) + else: + cost = self.googleDistanceMatrix.run_for_evaluation(org_city,dest_city,'taxi')['cost'] + if cost == None: + returned_info.append('The transporation information is not valid, please check.') + else: + total_cost += cost * math.ceil(people_number * 1.0 / 4) + except: + returned_info.append('The transporation information is not valid, please check. You have to make sure there are two cities (from A to B) in your transportation plan.') + + if 'breakfast' in unit and unit['breakfast'] and unit['breakfast'] != '-': + name, city = get_valid_name_city(unit['breakfast']) + if name != '-' and city != '-': + res = self.restaurants.data[(self.restaurants.data['Name'] == name) & (self.restaurants.data['City'] == city)] + if len(res) > 0: + total_cost += res['Average Cost'].values[0] * people_number + else: + returned_info.append('The breakfase information is not valid, please check.') + + if 'lunch' in unit and unit['lunch'] and unit['lunch'] != '-': + name, city = get_valid_name_city(unit['lunch']) + if name != '-' and city != '-': + res = self.restaurants.data[(self.restaurants.data['Name'] == name) & (self.restaurants.data['City'] == city)] + if len(res) > 0: + total_cost += res['Average Cost'].values[0] * people_number + else: + returned_info.append('The lunch information is not valid, please check.') + + if 'dinner' in unit and unit['dinner'] and unit['dinner'] != '-': + name, city = get_valid_name_city(unit['dinner']) + if name != '-' and city != '-': + res = self.restaurants.data[(self.restaurants.data['Name'] == name) & (self.restaurants.data['City'] == city)] + if len(res) > 0: + total_cost += res['Average Cost'].values[0] * people_number + else: + returned_info.append('The dinner information is not valid, please check.') + + if 'accommodation' in unit and unit['accommodation'] and unit['accommodation'] != '-': + name, city = get_valid_name_city(unit['accommodation']) + if name != '-' and city != '-': + res = self.accommodation.data[(self.accommodation.data['NAME'] == name) & (self.accommodation.data['city'] == city)] + if len(res) > 0: + total_cost += res['price'].values[0] * math.ceil(people_number * 1.0 / res['maximum occupancy'].values[0]) + else: + returned_info.append('The accommodation information is not valid, please check.') + + if len(returned_info) == 0: + return "The cost of your plan is " + str(total_cost) + " dollars." + else: + message = "Sorry, the cost of your plan is not available because of the following reasons:" + for idx, info in enumerate(returned_info): + message += str(idx + 1) + ". " + info + " " + '\t' + return message + +class ReactReflectEnv(ReactEnv): + def __init__(self): + super().__init__() + self.is_terminated = False + self.max_retry_step = 3 + self.retry_step = 0 + + def reset(self): + self.is_terminated = False + self.retry_step = 0 + + def run(self, tested_data): + total_cost = 0 + unit = tested_data + people_number = tested_data['people_number'] + returned_info = [] + + if 'transportation' in unit and unit['transportation'] and unit['transportation'] != '-': + value = unit['transportation'] + org_city, dest_city = extract_from_to(value) + if org_city == None or dest_city == None: + org_city, dest_city = extract_from_to(unit['current_city']) + + + if org_city == None or dest_city == None: + returned_info.append('The transporation information is not valid, please check.') + + else: + if 'flight number' in value.lower(): + try: + res = self.flight.data[self.flight.data['Flight Number'] == value.split('Flight Number: ')[1].split(',')[0]] + if len(res) > 0: + total_cost += res['Price'].values[0] * people_number + else: + returned_info.append('The filght information is not valid') + except: + returned_info.append('The filght information is not valid') + + elif 'self-driving' in value.lower() or 'taxi' in value.lower(): + if 'self-driving' in value.lower(): + cost = self.googleDistanceMatrix.run_for_evaluation(org_city,dest_city,'self-driving')['cost'] + if cost == None: + returned_info.append('The transporation information is not valid, please check.') + else: + total_cost += cost * math.ceil(people_number * 1.0 / 5) + else: + cost = self.googleDistanceMatrix.run_for_evaluation(org_city,dest_city,'taxi')['cost'] + if cost == None: + returned_info.append('The transporation information is not valid, please check.') + else: + total_cost += cost * math.ceil(people_number * 1.0 / 4) + + if 'breakfast' in unit and unit['breakfast'] and unit['breakfast'] != '-': + name, city = get_valid_name_city(unit['breakfast']) + if name != '-' and city != '-': + res = self.restaurants.data[(self.restaurants.data['Name'] == name) & (self.restaurants.data['City'] == city)] + if len(res) > 0: + total_cost += res['Average Cost'].values[0] * people_number + else: + returned_info.append('The breakfase information is not valid, please check.') + + if 'lunch' in unit and unit['lunch'] and unit['lunch'] != '-': + name, city = get_valid_name_city(unit['lunch']) + if name != '-' and city != '-': + res = self.restaurants.data[(self.restaurants.data['Name'] == name) & (self.restaurants.data['City'] == city)] + if len(res) > 0: + total_cost += res['Average Cost'].values[0] * people_number + else: + returned_info.append('The lunch information is not valid, please check.') + + if 'dinner' in unit and unit['dinner'] and unit['dinner'] != '-': + name, city = get_valid_name_city(unit['dinner']) + if name != '-' and city != '-': + res = self.restaurants.data[(self.restaurants.data['Name'] == name) & (self.restaurants.data['City'] == city)] + if len(res) > 0: + total_cost += res['Average Cost'].values[0] * people_number + else: + returned_info.append('The dinner information is not valid, please check.') + + if 'accommodation' in unit and unit['accommodation'] and unit['accommodation'] != '-': + name, city = get_valid_name_city(unit['accommodation']) + if name != '-' and city != '-': + res = self.accommodation.data[(self.accommodation.data['NAME'] == name) & (self.accommodation.data['city'] == city)] + if len(res) > 0: + total_cost += res['price'].values[0] * math.ceil(people_number * 1.0 / res['maximum occupancy'].values[0]) + else: + returned_info.append('The accommodation information is not valid, please check.') + + if len(returned_info) == 0: + self.retry_step = 0 + self.is_terminated = False + return "The cost of your plan is " + str(total_cost) + " dollars." + else: + message = "Sorry, the cost of your plan is not available because of the following reasons:" + for idx, info in enumerate(returned_info): + message += str(idx + 1) + ". " + info + " " + '\t' + self.retry_step += 1 + if self.retry_step >= self.max_retry_step: + self.is_terminated = True + return message + diff --git a/tools/planner/planner_with_human_annotated_info.py b/tools/planner/planner_with_human_annotated_info.py new file mode 100644 index 0000000000000000000000000000000000000000..85c80fc149f9d99e0388af3595a3c7fb98102441 --- /dev/null +++ b/tools/planner/planner_with_human_annotated_info.py @@ -0,0 +1,124 @@ +import os +import re +import sys +sys.path.append(os.path.abspath(os.path.join(os.getcwd(), ".."))) +sys.path.append('/home/xj/toolAugEnv/code/toolConstraint') +# print(sys.path) +os.chdir(os.path.dirname(os.path.abspath(__file__))) +from agents.prompts import planner_agent_prompt, cot_planner_agent_prompt, react_planner_agent_prompt,react_reflect_planner_agent_prompt,reflect_prompt +# from annotation.src.utils import get_valid_name_city,extract_before_parenthesis, extract_numbers_from_filenames +import json +import time +from langchain.callbacks import get_openai_callback + +from tqdm import tqdm +from tools.planner.apis import Planner, ReactPlanner, ReactReflectPlanner +import openai + +os.environ["http_proxy"] = "http://127.0.0.1:7890" +os.environ["https_proxy"] = "http://127.0.0.1:7890" + + + +def load_line_json_data(filename): + data = [] + with open(filename, 'r', encoding='utf-8') as f: + for line in f.read().strip().split('\n'): + unit = json.loads(line) + data.append(unit) + return data + +def extract_numbers_from_filenames(directory): + # Define the pattern to match files + pattern = r'annotation_(\d+).json' + + # List all files in the directory + files = os.listdir(directory) + + # Extract numbers from filenames that match the pattern + numbers = [int(re.search(pattern, file).group(1)) for file in files if re.match(pattern, file)] + + return numbers + + +def catch_openai_api_error(): + error = sys.exc_info()[0] + if error == openai.error.APIConnectionError: + print("APIConnectionError") + elif error == openai.error.RateLimitError: + print("RateLimitError") + time.sleep(60) + elif error == openai.error.APIError: + print("APIError") + elif error == openai.error.AuthenticationError: + print("AuthenticationError") + else: + print("API error:", error) + +# if __name__ == "__main__": +# user_name = 'zk' +# directory = '../../data/annotation/{}'.format(user_name) +# query_data_list = load_line_json_data('../../data/query/{}.jsonl'.format(user_name)) +# numbers = extract_numbers_from_filenames(directory) +# with get_openai_callback() as cb: +# for number in tqdm(numbers[:10]): +# print(number) +# json_data = json.load(open(os.path.join(directory, 'annotation_{}.json'.format(number)))) +# human_collected_info_data = json.load(open(os.path.join(directory, 'human_collected_info_{}.json'.format(number)))) +# query_data = query_data_list[number-1] +# planner_results = planner.run(human_collected_info_data, query_data['query']) +# org_result = json.load(open(os.path.join('../../results/turbo16k-turbo16k/{}/plan_{}.json'.format(user_name,number)))) +# # org_result.append({}) +# org_result[-1]['chatgpt_human_collected_info_results'] = planner_results +# # write to json file +# # with open(os.path.join('../../results/turbo16k-turbo16k/{}/plan_{}.json'.format(user_name,number)), 'w') as f: +# # json.dump(org_result, f, indent=4) +# print(cb) + +if __name__ == "__main__": + model_name=['gpt-3.5-turbo-1106','gpt-4-1106-preview','gemini','mixtral'][1] + set_type = ['dev','test'][0] + method = ['direct','cot','react','reflexion'][0] + directory = f'/home/xj/toolAugEnv/code/toolConstraint/data/final_data/{set_type}' + query_data_list = load_line_json_data(os.path.join(directory, 'query/query.jsonl')) + numbers = [i for i in range(1,len(query_data_list)+1)] + + if method == 'direct': + planner = Planner(model_name=model_name, agent_prompt=planner_agent_prompt) + elif method == 'cot': + planner = Planner(model_name=model_name, agent_prompt=cot_planner_agent_prompt) + elif method == 'react': + planner = ReactPlanner(model_name=model_name, agent_prompt=react_planner_agent_prompt) + elif method == 'reflexion': + planner = ReactReflectPlanner(model_name=model_name, agent_prompt=react_reflect_planner_agent_prompt,reflect_prompt=reflect_prompt) + + + with get_openai_callback() as cb: + for number in tqdm(numbers[:]): + # print(number) + # json_data = json.load(open(os.path.join(directory, 'plan/annotation_{}.json'.format(number)))) + human_collected_info_data = json.load(open(os.path.join(directory, 'plan/human_collected_info_{}.json'.format(number)))) + query_data = query_data_list[number-1] + + while True: + if method in ['react','reflexion']: + planner_results, scratchpad = planner.run(human_collected_info_data, query_data['query']) + else: + planner_results = planner.run(human_collected_info_data, query_data['query']) + if planner_results != None: + break + print(planner_results) + # check if the directory exists + if not os.path.exists(os.path.join(f'/home/xj/toolAugEnv/code/toolConstraint/results/{set_type}')): + os.makedirs(os.path.join(f'/home/xj/toolAugEnv/code/toolConstraint/results/{set_type}')) + if not os.path.exists(os.path.join(f'/home/xj/toolAugEnv/code/toolConstraint/results/{set_type}/plan_{number}.json')): + result = [{}] + else: + result = json.load(open(os.path.join(f'/home/xj/toolAugEnv/code/toolConstraint/results/{set_type}/plan_{number}.json'))) + if method in ['react','reflexion']: + result[-1][f'{model_name}_{method}_collected_info_results_logs'] = scratchpad + result[-1][f'{model_name}_{method}_collected_info_results'] = planner_results + # write to json file + with open(os.path.join(f'/home/xj/toolAugEnv/code/toolConstraint/results/{set_type}/plan_{number}.json'), 'w') as f: + json.dump(result, f, indent=4) + print(cb) \ No newline at end of file diff --git a/tools/planner/test.py b/tools/planner/test.py new file mode 100644 index 0000000000000000000000000000000000000000..fedfdd7269522f033a1cc2b1f6b077f5e9e1bdd9 --- /dev/null +++ b/tools/planner/test.py @@ -0,0 +1 @@ +print(eval("[ddd")) \ No newline at end of file diff --git a/tools/restaurants/.ipynb_checkpoints/test-checkpoint.ipynb b/tools/restaurants/.ipynb_checkpoints/test-checkpoint.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..a2b23a9253c314024f13d1e4cf88c2cedff85664 --- /dev/null +++ b/tools/restaurants/.ipynb_checkpoints/test-checkpoint.ipynb @@ -0,0 +1,1112 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 50, + "id": "1f939e73", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/restaurants/zomato.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "id": "876e4fff", + "metadata": {}, + "outputs": [], + "source": [ + "data_dict = data.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "id": "dbaee06c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Restaurant ID',\n", + " 'Restaurant Name',\n", + " 'Country Code',\n", + " 'City',\n", + " 'Address',\n", + " 'Locality',\n", + " 'Locality Verbose',\n", + " 'Longitude',\n", + " 'Latitude',\n", + " 'Cuisines',\n", + " 'Average Cost for two',\n", + " 'Currency',\n", + " 'Has Table booking',\n", + " 'Has Online delivery',\n", + " 'Is delivering now',\n", + " 'Switch to order menu',\n", + " 'Price range',\n", + " 'Aggregate rating',\n", + " 'Rating color',\n", + " 'Rating text',\n", + " 'Votes']" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_dict['columns']" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "id": "cb540128", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "9551" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(data_dict['data'])" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "ea9858c5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[6600970,\n", + " 'Pizza 礞 Bessa',\n", + " 30,\n", + " 'Bras韄lia',\n", + " 'SCS 214, Bloco C, Loja 40, Asa Sul, Bras韄lia',\n", + " 'Asa Sul',\n", + " 'Asa Sul, Bras韄lia',\n", + " -47.91566667,\n", + " -15.83116667,\n", + " 'Pizza',\n", + " 50,\n", + " 'Brazilian Real(R$)',\n", + " 'No',\n", + " 'No',\n", + " 'No',\n", + " 'No',\n", + " 2,\n", + " 3.2,\n", + " 'Orange',\n", + " 'Average',\n", + " 11]" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_dict['data'][26]" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "e21af5d1", + "metadata": {}, + "outputs": [], + "source": [ + "flight = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/flights/clean_Flights_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "966feef9", + "metadata": {}, + "outputs": [], + "source": [ + "flight = flight.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "id": "c5f81f43", + "metadata": {}, + "outputs": [], + "source": [ + "city_set = open('/home/xj/toolAugEnv/code/toolConstraint/database/background/citySet.txt','r').read().strip().split('\\n')" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "id": "bfce5f56", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['San Diego',\n", + " 'Pellston',\n", + " 'Buffalo',\n", + " 'Charlotte Amalie',\n", + " 'Flagstaff',\n", + " 'Evansville',\n", + " 'Hilo',\n", + " 'Twin Falls',\n", + " 'Newark',\n", + " 'State College',\n", + " 'Johnstown',\n", + " 'Charleston',\n", + " 'Montgomery',\n", + " 'Redding',\n", + " 'Lynchburg',\n", + " 'South Bend',\n", + " 'Sarasota',\n", + " 'Sioux Falls',\n", + " 'Paducah',\n", + " 'Kahului',\n", + " 'Atlantic City',\n", + " 'Bemidji',\n", + " 'Toledo',\n", + " 'Abilene',\n", + " 'Sacramento',\n", + " 'Amarillo',\n", + " 'Moline',\n", + " 'Hilton Head',\n", + " 'Manhattan',\n", + " 'Minneapolis',\n", + " 'Fort Myers',\n", + " 'Roswell',\n", + " 'Harlingen',\n", + " 'Seattle',\n", + " 'Manchester',\n", + " 'Gulfport',\n", + " 'Gainesville',\n", + " 'Pago Pago',\n", + " 'Wrangell',\n", + " 'Augusta',\n", + " 'Waterloo',\n", + " 'Yuma',\n", + " 'Saipan',\n", + " 'Christiansted',\n", + " 'North Bend',\n", + " 'Richmond',\n", + " 'Albuquerque',\n", + " 'Nashville',\n", + " 'Aberdeen',\n", + " 'Harrisburg',\n", + " 'Fort Wayne',\n", + " 'Green Bay',\n", + " 'Wenatchee',\n", + " 'Santa Fe',\n", + " 'St. Petersburg',\n", + " 'Belleville',\n", + " 'Greensboro',\n", + " 'Lake Charles',\n", + " 'Traverse City',\n", + " 'Erie',\n", + " 'Niagara Falls',\n", + " 'Pocatello',\n", + " 'Idaho Falls',\n", + " 'Alpena',\n", + " 'Wilmington',\n", + " 'Ontario',\n", + " 'Iron Mountain',\n", + " 'Lubbock',\n", + " 'Helena',\n", + " 'Kalamazoo',\n", + " 'Cleveland',\n", + " 'Grand Island',\n", + " 'Bishop',\n", + " 'New Bern',\n", + " 'Melbourne',\n", + " 'Bristol',\n", + " 'Orlando',\n", + " 'Bismarck',\n", + " 'Fresno',\n", + " 'Billings',\n", + " 'Jackson',\n", + " 'Daytona Beach',\n", + " 'College Station',\n", + " 'Jacksonville',\n", + " 'Salt Lake City',\n", + " 'Corpus Christi',\n", + " 'Florence',\n", + " 'Moab',\n", + " 'Grand Forks',\n", + " 'Las Vegas',\n", + " 'Fairbanks',\n", + " 'Petersburg',\n", + " 'Wichita',\n", + " 'Rhinelander',\n", + " 'Kansas City',\n", + " 'Dothan',\n", + " 'Alamosa',\n", + " 'Adak Island',\n", + " 'Islip',\n", + " 'Wichita Falls',\n", + " 'Presque Isle',\n", + " 'San Luis Obispo',\n", + " 'Dayton',\n", + " 'Brunswick',\n", + " 'Fort Smith',\n", + " \"Martha's Vineyard\",\n", + " 'Portland',\n", + " 'Waco',\n", + " 'New York',\n", + " 'Columbus',\n", + " 'Tampa',\n", + " 'Dallas',\n", + " 'Little Rock',\n", + " 'Kona',\n", + " 'Clarksburg',\n", + " 'San Angelo',\n", + " 'Saginaw',\n", + " 'Houston',\n", + " 'Duluth',\n", + " 'Valparaiso',\n", + " 'Phoenix',\n", + " 'Oakland',\n", + " 'Watertown',\n", + " 'Ogden',\n", + " 'Cedar Rapids',\n", + " 'Cape Girardeau',\n", + " 'Sun Valley',\n", + " 'Sault Ste. Marie',\n", + " 'Trenton',\n", + " 'Missoula',\n", + " 'Pasco',\n", + " 'Brainerd',\n", + " 'Newburgh',\n", + " 'Gustavus',\n", + " 'Branson',\n", + " 'Providence',\n", + " 'Minot',\n", + " 'Huntsville',\n", + " 'San Antonio',\n", + " 'Marquette',\n", + " 'Owensboro',\n", + " 'Del Rio',\n", + " 'Portsmouth',\n", + " 'Bloomington',\n", + " 'Lexington',\n", + " 'Santa Barbara',\n", + " 'Baltimore',\n", + " 'Panama City',\n", + " 'Kodiak',\n", + " 'Jacksonville',\n", + " 'Yakima',\n", + " 'Vernal',\n", + " 'Salisbury',\n", + " 'Mission',\n", + " 'Newport News',\n", + " 'Charlottesville',\n", + " 'Grand Junction',\n", + " 'Baton Rouge',\n", + " 'Beaumont',\n", + " 'Staunton',\n", + " 'Kalispell',\n", + " 'Key West',\n", + " 'Worcester',\n", + " 'West Palm Beach',\n", + " 'Boise',\n", + " 'Grand Rapids',\n", + " 'Salina',\n", + " 'Fort Leonard Wood',\n", + " 'Walla Walla',\n", + " 'Everett',\n", + " 'Dillingham',\n", + " 'Bellingham',\n", + " 'Lansing',\n", + " 'Madison',\n", + " 'Victoria',\n", + " 'Sioux City',\n", + " 'Hattiesburg',\n", + " 'Stockton',\n", + " 'Anchorage',\n", + " 'Charlotte',\n", + " 'Jamestown',\n", + " 'Laramie',\n", + " 'Decatur',\n", + " 'Durango',\n", + " 'Longview',\n", + " 'Syracuse',\n", + " 'St. Cloud',\n", + " 'Santa Rosa',\n", + " 'Bakersfield',\n", + " 'North Platte',\n", + " 'La Crosse',\n", + " 'Plattsburgh',\n", + " 'Concord',\n", + " 'Atlanta',\n", + " 'Provo',\n", + " 'Ogdensburg',\n", + " 'Ithaca',\n", + " 'Colorado Springs',\n", + " 'Washington',\n", + " 'Williston',\n", + " 'Tulsa',\n", + " 'Midland',\n", + " 'Champaign',\n", + " 'Devils Lake',\n", + " 'Greer',\n", + " 'Muskegon',\n", + " 'Hibbing',\n", + " 'Santa Ana',\n", + " 'Ponce',\n", + " 'Prescott',\n", + " 'Indianapolis',\n", + " 'International Falls',\n", + " 'Rapid City',\n", + " 'Ketchikan',\n", + " 'St. Louis',\n", + " 'Santa Maria',\n", + " 'Elmira',\n", + " 'Alexandria',\n", + " 'San Jose',\n", + " 'Tucson',\n", + " 'San Juan',\n", + " 'Dubuque',\n", + " 'Burbank',\n", + " 'Gunnison',\n", + " 'Cedar City',\n", + " 'Hyannis',\n", + " 'Raleigh',\n", + " 'Norfolk',\n", + " 'New Orleans',\n", + " 'Medford',\n", + " 'White Plains',\n", + " 'Oklahoma City',\n", + " 'Chicago',\n", + " 'El Paso',\n", + " 'Rockford',\n", + " 'Aguadilla',\n", + " 'Omaha',\n", + " 'Scottsbluff',\n", + " 'Yakutat',\n", + " 'Arcata',\n", + " 'Spokane',\n", + " 'Brownsville',\n", + " 'Bend',\n", + " 'Hagerstown',\n", + " 'Peoria',\n", + " 'Appleton',\n", + " 'Roanoke',\n", + " 'Eugene',\n", + " 'Rock Springs',\n", + " 'Dodge City',\n", + " 'Austin',\n", + " 'Miami',\n", + " 'Dallas',\n", + " 'Mosinee',\n", + " 'Killeen',\n", + " 'Lihue',\n", + " 'Pittsburgh',\n", + " 'Tallahassee',\n", + " 'Butte',\n", + " 'Lawton',\n", + " 'Honolulu',\n", + " 'Greenville',\n", + " 'Juneau',\n", + " 'Myrtle Beach',\n", + " 'Boston',\n", + " 'Charleston',\n", + " 'Latrobe',\n", + " 'Knoxville',\n", + " 'Denver',\n", + " 'Bangor',\n", + " 'Albany',\n", + " 'Punta Gorda',\n", + " 'Fort Lauderdale',\n", + " 'Philadelphia',\n", + " 'Binghamton',\n", + " 'Great Falls',\n", + " 'Shreveport',\n", + " 'Asheville',\n", + " 'Cheyenne',\n", + " 'Milwaukee',\n", + " 'Nome',\n", + " 'Laredo',\n", + " 'Des Moines',\n", + " 'Fayetteville',\n", + " 'Lewisburg',\n", + " 'Fort Dodge',\n", + " 'Cody',\n", + " 'Chattanooga',\n", + " 'Deadhorse',\n", + " 'Kotzebue',\n", + " 'Sitka',\n", + " 'Bozeman',\n", + " 'Palm Springs',\n", + " 'Memphis',\n", + " 'Nantucket',\n", + " 'Texarkana',\n", + " 'Lewiston',\n", + " 'Valdosta',\n", + " 'Birmingham',\n", + " 'Scranton',\n", + " 'Pensacola',\n", + " 'Hancock',\n", + " 'Los Angeles',\n", + " 'Mason City',\n", + " 'Savannah',\n", + " 'West Yellowstone',\n", + " 'Long Beach',\n", + " 'Reno',\n", + " 'Akron',\n", + " 'Louisville',\n", + " 'Hartford',\n", + " 'Cincinnati',\n", + " 'Rochester',\n", + " 'San Francisco',\n", + " 'Detroit',\n", + " 'Monterey',\n", + " 'Escanaba',\n", + " 'Eau Claire']" + ] + }, + "execution_count": 94, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "city_set" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "cd0f41fb", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1 Restaurant Name\n", + "3 City\n", + "9 Cuisines\n", + "10 Average Cost for two\n", + "11 Currency\n", + "17 Aggregate rating\n" + ] + } + ], + "source": [ + "for idx, unit in enumerate(data_dict['columns']):\n", + " if unit in ['Restaurant Name', 'City', 'Cuisines', 'Average Cost for two','Aggregate rating','Currency']:\n", + " print(idx,unit)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "04fe71b7", + "metadata": {}, + "outputs": [], + "source": [ + "currency_set = set()\n", + "for unit in data_dict['data']:\n", + " currency_set.add(unit[11])" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "3988186d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Botswana Pula(P)',\n", + " 'Brazilian Real(R$)',\n", + " 'Dollar($)',\n", + " 'Emirati Diram(AED)',\n", + " 'Indian Rupees(Rs.)',\n", + " 'Indonesian Rupiah(IDR)',\n", + " 'NewZealand($)',\n", + " 'Pounds(專)',\n", + " 'Qatari Rial(QR)',\n", + " 'Rand(R)',\n", + " 'Sri Lankan Rupee(LKR)',\n", + " 'Turkish Lira(TL)'}" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "currency_set" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "257e6a76", + "metadata": {}, + "outputs": [], + "source": [ + "exchange_rate = {\"Botswana Pula(P)\":0.074,\n", + " \"Brazilian Real(R$)\":0.21, \n", + " 'Dollar($)':1, \n", + " 'Emirati Diram(AED)':0.27,\n", + " \"Indian Rupees(Rs.)\":0.012087,\n", + " \"Indonesian Rupiah(IDR)\":0.000066,\n", + " 'NewZealand($)':0.61,\n", + " \"Pounds(專)\":1.28,\n", + " \"Qatari Rial(QR)\":0.27,\n", + " 'Rand(R)': 0.054,\n", + " \"Sri Lankan Rupee(LKR)\":0.0031,\n", + " 'Turkish Lira(TL)':0.037\n", + " }" + ] + }, + { + "cell_type": "code", + "execution_count": 119, + "id": "c6b2691e", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "3984855550f54090b3264d7adc859433", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "0it [00:00, ?it/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from tqdm.autonotebook import tqdm\n", + "import random\n", + "new_data = []\n", + "\n", + "for idx, unit in tqdm(enumerate(data_dict['data'])):\n", + " tmp_dict = {k:\"\" for k in ['Name', 'City', 'Cuisines', 'Average Cost','Aggregate Rating']}\n", + " tmp_dict[\"Name\"] = unit[1]\n", + " tmp_dict[\"City\"] = random.sample(city_set,1)[0]\n", + " tmp_dict[\"Cuisines\"] = unit[9]\n", + " tmp_dict[\"Average Cost\"] = max(random.randint(10,100),int(unit[10] / 2 * exchange_rate[unit[11]]))\n", + " tmp_dict[\"Aggregate Rating\"] = unit[17]\n", + " new_data.append(tmp_dict)" + ] + }, + { + "cell_type": "code", + "execution_count": 120, + "id": "f27aaff1", + "metadata": {}, + "outputs": [], + "source": [ + "countries = [\"Chinese\", \"American\", \"Italian\", \"Mexican\", \"Indian\",\"Mediterranean\",\"French\"]\n", + "cuisine = [\"Tea\",\"Seafood\",\"Bakery\",\"Desserts\",\"BBQ\",\"Fast Food\",\"Cafe\",\"Pizza\"]\n", + "total_cuisine = countries + cuisine\n", + "for unit in new_data:\n", + " flag = False\n", + " final_cuisine = set()\n", + "# for c in total_cuisine:\n", + "# if c in str(unit['Cuisines']):\n", + "# final_cuisine.add(c)\n", + " choice_number = random.choices([1,1,2])[0]\n", + " for x in random.sample(countries,choice_number):\n", + " final_cuisine.add(x)\n", + " choice_number = random.choices([2,3,4])[0]\n", + " for x in random.sample(cuisine,choice_number):\n", + " final_cuisine.add(x)\n", + " unit['Cuisines'] = \", \".join(x for x in final_cuisine)" + ] + }, + { + "cell_type": "code", + "execution_count": 121, + "id": "9e3afb30", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Name': 'Karak韄y G韄ll韄o埕lu',\n", + " 'City': 'Phoenix',\n", + " 'Cuisines': 'Bakery, Indian, Desserts, Seafood',\n", + " 'Average Cost': 75,\n", + " 'Aggregate Rating': 4.7}" + ] + }, + "execution_count": 121, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_data[-7]" + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "id": "bfb243c0", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(new_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 123, + "id": "af7e3411", + "metadata": {}, + "outputs": [], + "source": [ + "df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/restaurants/clean_restaurant_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "id": "dad9bf9f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityCuisinesAverage CostAggregate Rating
0Le Petit SouffleEagleDesserts, French, Fast Food, Chinese, Indian404.8
1Izakaya KikufujiHilton HeadMexican, BBQ, Mediterranean, Pizza954.5
2Heat - Edsa Shangri-LaTrentonTea, Pizza, French, Indian, Mediterranean, Sea...1484.4
3OomaPortlandTea, Pizza, French, BBQ, Cafe894.9
4Sambo KojinMilwaukeeDesserts, Tea, Italian, Cafe, Mediterranean604.8
..................
9546Naml郾 GurmeWorcesterTea, BBQ, Fast Food, Chinese, American, Medite...724.1
9547Ceviz A埕ac郾San FranciscoCafe, Mexican, Pizza, Bakery144.2
9548HuqqaGuamPizza, Italian, French, Mexican, BBQ, Chinese,...253.7
9549A侓侓k KahveLouisvilleChinese, Tea, Mexican, Cafe, Indian964.0
9550Walter's Coffee RoasteryMonroePizza, Italian, Cafe, Indian, Mediterranean794.0
\n", + "

9551 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " Name City \\\n", + "0 Le Petit Souffle Eagle \n", + "1 Izakaya Kikufuji Hilton Head \n", + "2 Heat - Edsa Shangri-La Trenton \n", + "3 Ooma Portland \n", + "4 Sambo Kojin Milwaukee \n", + "... ... ... \n", + "9546 Naml郾 Gurme Worcester \n", + "9547 Ceviz A埕ac郾 San Francisco \n", + "9548 Huqqa Guam \n", + "9549 A侓侓k Kahve Louisville \n", + "9550 Walter's Coffee Roastery Monroe \n", + "\n", + " Cuisines Average Cost \\\n", + "0 Desserts, French, Fast Food, Chinese, Indian 40 \n", + "1 Mexican, BBQ, Mediterranean, Pizza 95 \n", + "2 Tea, Pizza, French, Indian, Mediterranean, Sea... 148 \n", + "3 Tea, Pizza, French, BBQ, Cafe 89 \n", + "4 Desserts, Tea, Italian, Cafe, Mediterranean 60 \n", + "... ... ... \n", + "9546 Tea, BBQ, Fast Food, Chinese, American, Medite... 72 \n", + "9547 Cafe, Mexican, Pizza, Bakery 14 \n", + "9548 Pizza, Italian, French, Mexican, BBQ, Chinese,... 25 \n", + "9549 Chinese, Tea, Mexican, Cafe, Indian 96 \n", + "9550 Pizza, Italian, Cafe, Indian, Mediterranean 79 \n", + "\n", + " Aggregate Rating \n", + "0 4.8 \n", + "1 4.5 \n", + "2 4.4 \n", + "3 4.9 \n", + "4 4.8 \n", + "... ... \n", + "9546 4.1 \n", + "9547 4.2 \n", + "9548 3.7 \n", + "9549 4.0 \n", + "9550 4.0 \n", + "\n", + "[9551 rows x 5 columns]" + ] + }, + "execution_count": 92, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "id": "e168b1c5", + "metadata": {}, + "outputs": [], + "source": [ + "cuisine_dict = {}\n", + "for unit in new_data:\n", + " for x in str(unit['Cuisines']).split(', '):\n", + " if x not in cuisine_dict:\n", + " cuisine_dict[x] = 1\n", + " else:\n", + " cuisine_dict[x] += 1" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "id": "564d4bda", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "French 29\n", + "Japanese 135\n", + "Desserts 653\n", + "Seafood 174\n", + "Asian 233\n", + "Filipino 10\n", + "Indian 70\n", + "Sushi 75\n", + "Korean 21\n", + "Chinese 2735\n", + "European 148\n", + "Mexican 181\n", + "American 390\n", + "Ice Cream 226\n", + "Cafe 703\n", + "Italian 764\n", + "Pizza 381\n", + "Bakery 745\n", + "Mediterranean 112\n", + "Fast Food 1986\n", + "Brazilian 28\n", + "Arabian 28\n", + "Bar Food 39\n", + "Grill 21\n", + "International 21\n", + "Peruvian 1\n", + "Latin American 11\n", + "Burger 251\n", + "Juices 29\n", + "Healthy Food 150\n", + "Beverages 229\n", + "Lebanese 69\n", + "Sandwich 53\n", + "Steak 62\n", + "BBQ 33\n", + "Gourmet Fast Food 1\n", + "Mineira 1\n", + "North Eastern 9\n", + "nan 9\n", + "Coffee and Tea 19\n", + "Vegetarian 23\n", + "Tapas 19\n", + "Breakfast 41\n", + "Diner 6\n", + "Southern 24\n", + "Southwestern 7\n", + "Spanish 16\n", + "Argentine 2\n", + "Caribbean 7\n", + "German 10\n", + "Vietnamese 21\n", + "Thai 234\n", + "Modern Australian 11\n", + "Teriyaki 2\n", + "Cajun 10\n", + "Canadian 1\n", + "Tex-Mex 19\n", + "Middle Eastern 22\n", + "Greek 15\n", + "Bubble Tea 1\n", + "Tea 48\n", + "Australian 5\n", + "Fusion 4\n", + "Cuban 2\n", + "Hawaiian 8\n", + "Salad 93\n", + "Irish 1\n", + "New American 2\n", + "Soul Food 1\n", + "Turkish 15\n", + "Pub Food 2\n", + "Persian 2\n", + "Continental 736\n", + "Singaporean 4\n", + "Malay 1\n", + "Cantonese 2\n", + "Dim Sum 3\n", + "Western 10\n", + "Finger Food 114\n", + "British 16\n", + "Deli 3\n", + "Indonesian 14\n", + "North Indian 3960\n", + "Mughlai 995\n", + "Biryani 177\n", + "South Indian 636\n", + "Pakistani 12\n", + "Afghani 14\n", + "Hyderabadi 26\n", + "Rajasthani 21\n", + "Street Food 562\n", + "Goan 20\n", + "African 8\n", + "Portuguese 7\n", + "Gujarati 11\n", + "Armenian 3\n", + "Mithai 380\n", + "Maharashtrian 10\n", + "Modern Indian 16\n", + "Charcoal Grill 4\n", + "Malaysian 22\n", + "Burmese 10\n", + "Chettinad 11\n", + "Parsi 8\n", + "Tibetan 44\n", + "Raw Meats 114\n", + "Kerala 23\n", + "Belgian 2\n", + "Kashmiri 20\n", + "South American 2\n", + "Bengali 29\n", + "Iranian 3\n", + "Lucknowi 13\n", + "Awadhi 11\n", + "Nepalese 9\n", + "Drinks Only 2\n", + "Oriya 2\n", + "Bihari 6\n", + "Assamese 4\n", + "Andhra 10\n", + "Mangalorean 4\n", + "Malwani 1\n", + "Cuisine Varies 1\n", + "Moroccan 5\n", + "Naga 8\n", + "Sri Lankan 5\n", + "Peranakan 1\n", + "Sunda 3\n", + "Ramen 2\n", + "Kiwi 6\n", + "Asian Fusion 2\n", + "Taiwanese 2\n", + "Fish and Chips 1\n", + "Contemporary 9\n", + "Scottish 3\n", + "Curry 6\n", + "Patisserie 4\n", + "South African 6\n", + "Durban 1\n", + "Kebab 10\n", + "Turkish Pizza 8\n", + "Izgara 2\n", + "World Cuisine 4\n", + "D韄ner 1\n", + "Restaurant Cafe 4\n", + "B韄rek 1\n" + ] + } + ], + "source": [ + "for unit in cuisine_dict:\n", + " print(unit,cuisine_dict[unit])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "967426f0", + "metadata": {}, + "outputs": [], + "source": [ + "cuisine = [\"Chinese\", \"American\", \"Italian\", \"Mexican\", \"Indian\",\"Mediterranean\",\"Middle Eastern\",\"Breakfast\",\"Korean\",\"Asian\",\"French\",\"Tea\",\"Seafood\",\"Bakery\",\"Street Food\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "id": "880dd6bf", + "metadata": {}, + "outputs": [], + "source": [ + "countries = [\"Chinese\", \"American\", \"Italian\", \"Mexican\", \"Indian\",\"Mediterranean\",\"Middle Eastern\",,\"Korean\",\"Asian\",\"French\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "89d9aba9", + "metadata": {}, + "outputs": [], + "source": [ + "cuisine = [\"Tea\",\"Seafood\",\"Bakery\",\"Street Food\",\"Desserts\",\"BBQ\",\"Street Food\",\"Fast Food\",\"Cafe\",\"Pizza\"]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ff103725", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.16" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/tools/restaurants/__init__.py b/tools/restaurants/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tools/restaurants/__pycache__/__init__.cpython-39.pyc b/tools/restaurants/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ef048b478ee0b7ae61f0df5cae1a6ad49e053721 Binary files /dev/null and b/tools/restaurants/__pycache__/__init__.cpython-39.pyc differ diff --git a/tools/restaurants/__pycache__/apis.cpython-39.pyc b/tools/restaurants/__pycache__/apis.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..290ce33d8e0a2c8c4e0b906280ca906fe2f4c653 Binary files /dev/null and b/tools/restaurants/__pycache__/apis.cpython-39.pyc differ diff --git a/tools/restaurants/apis.py b/tools/restaurants/apis.py new file mode 100644 index 0000000000000000000000000000000000000000..6ff2526e8ac667eead8dd3e5296a01023af6b764 --- /dev/null +++ b/tools/restaurants/apis.py @@ -0,0 +1,50 @@ +import pandas as pd +from pandas import DataFrame +from typing import Optional +from annotation.src.utils import extract_before_parenthesis + +class Restaurants: + def __init__(self, path="../database/restaurants/clean_restaurant_2022.csv"): + self.path = path + self.data = pd.read_csv(self.path).dropna()[['Name','Average Cost','Cuisines','Aggregate Rating','City']] + print("Restaurants loaded.") + + def load_db(self): + self.data = pd.read_csv(self.path).dropna() + + def run(self, + city: str, + ) -> DataFrame: + """Search for restaurant .""" + results = self.data[self.data["City"] == city] + # results = results[results["date"] == date] + # if price_order == "asc": + # results = results.sort_values(by=["Average Cost"], ascending=True) + # elif price_order == "desc": + # results = results.sort_values(by=["Average Cost"], ascending=False) + + # if rating_order == "asc": + # results = results.sort_values(by=["Aggregate Rating"], ascending=True) + # elif rating_order == "desc": + # results = results.sort_values(by=["Aggregate Rating"], ascending=False) + if len(results) == 0: + return "There is no restaurant in this city." + return results + + def run_for_annotation(self, + city: str, + ) -> DataFrame: + """Search for restaurant .""" + results = self.data[self.data["City"] == extract_before_parenthesis(city)] + # results = results[results["date"] == date] + # if price_order == "asc": + # results = results.sort_values(by=["Average Cost"], ascending=True) + # elif price_order == "desc": + # results = results.sort_values(by=["Average Cost"], ascending=False) + + # if rating_order == "asc": + # results = results.sort_values(by=["Aggregate Rating"], ascending=True) + # elif rating_order == "desc": + # results = results.sort_values(by=["Aggregate Rating"], ascending=False) + + return results \ No newline at end of file diff --git a/tools/restaurants/test.ipynb b/tools/restaurants/test.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..6e97c82b4443748975df8b525fa7cec5c584c29c --- /dev/null +++ b/tools/restaurants/test.ipynb @@ -0,0 +1,1152 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 50, + "id": "1f939e73", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "data = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/restaurants/zomato.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "id": "876e4fff", + "metadata": {}, + "outputs": [], + "source": [ + "data_dict = data.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "id": "dbaee06c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Restaurant ID',\n", + " 'Restaurant Name',\n", + " 'Country Code',\n", + " 'City',\n", + " 'Address',\n", + " 'Locality',\n", + " 'Locality Verbose',\n", + " 'Longitude',\n", + " 'Latitude',\n", + " 'Cuisines',\n", + " 'Average Cost for two',\n", + " 'Currency',\n", + " 'Has Table booking',\n", + " 'Has Online delivery',\n", + " 'Is delivering now',\n", + " 'Switch to order menu',\n", + " 'Price range',\n", + " 'Aggregate rating',\n", + " 'Rating color',\n", + " 'Rating text',\n", + " 'Votes']" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_dict['columns']" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "id": "cb540128", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "9551" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(data_dict['data'])" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "ea9858c5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[6600970,\n", + " 'Pizza 礞 Bessa',\n", + " 30,\n", + " 'Bras韄lia',\n", + " 'SCS 214, Bloco C, Loja 40, Asa Sul, Bras韄lia',\n", + " 'Asa Sul',\n", + " 'Asa Sul, Bras韄lia',\n", + " -47.91566667,\n", + " -15.83116667,\n", + " 'Pizza',\n", + " 50,\n", + " 'Brazilian Real(R$)',\n", + " 'No',\n", + " 'No',\n", + " 'No',\n", + " 'No',\n", + " 2,\n", + " 3.2,\n", + " 'Orange',\n", + " 'Average',\n", + " 11]" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_dict['data'][26]" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "e21af5d1", + "metadata": {}, + "outputs": [], + "source": [ + "flight = pd.read_csv('/home/xj/toolAugEnv/code/toolConstraint/database/flights/clean_Flights_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "966feef9", + "metadata": {}, + "outputs": [], + "source": [ + "flight = flight.to_dict(orient = 'split')" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "id": "c5f81f43", + "metadata": {}, + "outputs": [], + "source": [ + "city_set = open('/home/xj/toolAugEnv/code/toolConstraint/database/background/citySet.txt','r').read().strip().split('\\n')" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "id": "bfce5f56", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['San Diego',\n", + " 'Pellston',\n", + " 'Buffalo',\n", + " 'Charlotte Amalie',\n", + " 'Flagstaff',\n", + " 'Evansville',\n", + " 'Hilo',\n", + " 'Twin Falls',\n", + " 'Newark',\n", + " 'State College',\n", + " 'Johnstown',\n", + " 'Charleston',\n", + " 'Montgomery',\n", + " 'Redding',\n", + " 'Lynchburg',\n", + " 'South Bend',\n", + " 'Sarasota',\n", + " 'Sioux Falls',\n", + " 'Paducah',\n", + " 'Kahului',\n", + " 'Atlantic City',\n", + " 'Bemidji',\n", + " 'Toledo',\n", + " 'Abilene',\n", + " 'Sacramento',\n", + " 'Amarillo',\n", + " 'Moline',\n", + " 'Hilton Head',\n", + " 'Manhattan',\n", + " 'Minneapolis',\n", + " 'Fort Myers',\n", + " 'Roswell',\n", + " 'Harlingen',\n", + " 'Seattle',\n", + " 'Manchester',\n", + " 'Gulfport',\n", + " 'Gainesville',\n", + " 'Pago Pago',\n", + " 'Wrangell',\n", + " 'Augusta',\n", + " 'Waterloo',\n", + " 'Yuma',\n", + " 'Saipan',\n", + " 'Christiansted',\n", + " 'North Bend',\n", + " 'Richmond',\n", + " 'Albuquerque',\n", + " 'Nashville',\n", + " 'Aberdeen',\n", + " 'Harrisburg',\n", + " 'Fort Wayne',\n", + " 'Green Bay',\n", + " 'Wenatchee',\n", + " 'Santa Fe',\n", + " 'St. Petersburg',\n", + " 'Belleville',\n", + " 'Greensboro',\n", + " 'Lake Charles',\n", + " 'Traverse City',\n", + " 'Erie',\n", + " 'Niagara Falls',\n", + " 'Pocatello',\n", + " 'Idaho Falls',\n", + " 'Alpena',\n", + " 'Wilmington',\n", + " 'Ontario',\n", + " 'Iron Mountain',\n", + " 'Lubbock',\n", + " 'Helena',\n", + " 'Kalamazoo',\n", + " 'Cleveland',\n", + " 'Grand Island',\n", + " 'Bishop',\n", + " 'New Bern',\n", + " 'Melbourne',\n", + " 'Bristol',\n", + " 'Orlando',\n", + " 'Bismarck',\n", + " 'Fresno',\n", + " 'Billings',\n", + " 'Jackson',\n", + " 'Daytona Beach',\n", + " 'College Station',\n", + " 'Jacksonville',\n", + " 'Salt Lake City',\n", + " 'Corpus Christi',\n", + " 'Florence',\n", + " 'Moab',\n", + " 'Grand Forks',\n", + " 'Las Vegas',\n", + " 'Fairbanks',\n", + " 'Petersburg',\n", + " 'Wichita',\n", + " 'Rhinelander',\n", + " 'Kansas City',\n", + " 'Dothan',\n", + " 'Alamosa',\n", + " 'Adak Island',\n", + " 'Islip',\n", + " 'Wichita Falls',\n", + " 'Presque Isle',\n", + " 'San Luis Obispo',\n", + " 'Dayton',\n", + " 'Brunswick',\n", + " 'Fort Smith',\n", + " \"Martha's Vineyard\",\n", + " 'Portland',\n", + " 'Waco',\n", + " 'New York',\n", + " 'Columbus',\n", + " 'Tampa',\n", + " 'Dallas',\n", + " 'Little Rock',\n", + " 'Kona',\n", + " 'Clarksburg',\n", + " 'San Angelo',\n", + " 'Saginaw',\n", + " 'Houston',\n", + " 'Duluth',\n", + " 'Valparaiso',\n", + " 'Phoenix',\n", + " 'Oakland',\n", + " 'Watertown',\n", + " 'Ogden',\n", + " 'Cedar Rapids',\n", + " 'Cape Girardeau',\n", + " 'Sun Valley',\n", + " 'Sault Ste. Marie',\n", + " 'Trenton',\n", + " 'Missoula',\n", + " 'Pasco',\n", + " 'Brainerd',\n", + " 'Newburgh',\n", + " 'Gustavus',\n", + " 'Branson',\n", + " 'Providence',\n", + " 'Minot',\n", + " 'Huntsville',\n", + " 'San Antonio',\n", + " 'Marquette',\n", + " 'Owensboro',\n", + " 'Del Rio',\n", + " 'Portsmouth',\n", + " 'Bloomington',\n", + " 'Lexington',\n", + " 'Santa Barbara',\n", + " 'Baltimore',\n", + " 'Panama City',\n", + " 'Kodiak',\n", + " 'Jacksonville',\n", + " 'Yakima',\n", + " 'Vernal',\n", + " 'Salisbury',\n", + " 'Mission',\n", + " 'Newport News',\n", + " 'Charlottesville',\n", + " 'Grand Junction',\n", + " 'Baton Rouge',\n", + " 'Beaumont',\n", + " 'Staunton',\n", + " 'Kalispell',\n", + " 'Key West',\n", + " 'Worcester',\n", + " 'West Palm Beach',\n", + " 'Boise',\n", + " 'Grand Rapids',\n", + " 'Salina',\n", + " 'Fort Leonard Wood',\n", + " 'Walla Walla',\n", + " 'Everett',\n", + " 'Dillingham',\n", + " 'Bellingham',\n", + " 'Lansing',\n", + " 'Madison',\n", + " 'Victoria',\n", + " 'Sioux City',\n", + " 'Hattiesburg',\n", + " 'Stockton',\n", + " 'Anchorage',\n", + " 'Charlotte',\n", + " 'Jamestown',\n", + " 'Laramie',\n", + " 'Decatur',\n", + " 'Durango',\n", + " 'Longview',\n", + " 'Syracuse',\n", + " 'St. Cloud',\n", + " 'Santa Rosa',\n", + " 'Bakersfield',\n", + " 'North Platte',\n", + " 'La Crosse',\n", + " 'Plattsburgh',\n", + " 'Concord',\n", + " 'Atlanta',\n", + " 'Provo',\n", + " 'Ogdensburg',\n", + " 'Ithaca',\n", + " 'Colorado Springs',\n", + " 'Washington',\n", + " 'Williston',\n", + " 'Tulsa',\n", + " 'Midland',\n", + " 'Champaign',\n", + " 'Devils Lake',\n", + " 'Greer',\n", + " 'Muskegon',\n", + " 'Hibbing',\n", + " 'Santa Ana',\n", + " 'Ponce',\n", + " 'Prescott',\n", + " 'Indianapolis',\n", + " 'International Falls',\n", + " 'Rapid City',\n", + " 'Ketchikan',\n", + " 'St. Louis',\n", + " 'Santa Maria',\n", + " 'Elmira',\n", + " 'Alexandria',\n", + " 'San Jose',\n", + " 'Tucson',\n", + " 'San Juan',\n", + " 'Dubuque',\n", + " 'Burbank',\n", + " 'Gunnison',\n", + " 'Cedar City',\n", + " 'Hyannis',\n", + " 'Raleigh',\n", + " 'Norfolk',\n", + " 'New Orleans',\n", + " 'Medford',\n", + " 'White Plains',\n", + " 'Oklahoma City',\n", + " 'Chicago',\n", + " 'El Paso',\n", + " 'Rockford',\n", + " 'Aguadilla',\n", + " 'Omaha',\n", + " 'Scottsbluff',\n", + " 'Yakutat',\n", + " 'Arcata',\n", + " 'Spokane',\n", + " 'Brownsville',\n", + " 'Bend',\n", + " 'Hagerstown',\n", + " 'Peoria',\n", + " 'Appleton',\n", + " 'Roanoke',\n", + " 'Eugene',\n", + " 'Rock Springs',\n", + " 'Dodge City',\n", + " 'Austin',\n", + " 'Miami',\n", + " 'Dallas',\n", + " 'Mosinee',\n", + " 'Killeen',\n", + " 'Lihue',\n", + " 'Pittsburgh',\n", + " 'Tallahassee',\n", + " 'Butte',\n", + " 'Lawton',\n", + " 'Honolulu',\n", + " 'Greenville',\n", + " 'Juneau',\n", + " 'Myrtle Beach',\n", + " 'Boston',\n", + " 'Charleston',\n", + " 'Latrobe',\n", + " 'Knoxville',\n", + " 'Denver',\n", + " 'Bangor',\n", + " 'Albany',\n", + " 'Punta Gorda',\n", + " 'Fort Lauderdale',\n", + " 'Philadelphia',\n", + " 'Binghamton',\n", + " 'Great Falls',\n", + " 'Shreveport',\n", + " 'Asheville',\n", + " 'Cheyenne',\n", + " 'Milwaukee',\n", + " 'Nome',\n", + " 'Laredo',\n", + " 'Des Moines',\n", + " 'Fayetteville',\n", + " 'Lewisburg',\n", + " 'Fort Dodge',\n", + " 'Cody',\n", + " 'Chattanooga',\n", + " 'Deadhorse',\n", + " 'Kotzebue',\n", + " 'Sitka',\n", + " 'Bozeman',\n", + " 'Palm Springs',\n", + " 'Memphis',\n", + " 'Nantucket',\n", + " 'Texarkana',\n", + " 'Lewiston',\n", + " 'Valdosta',\n", + " 'Birmingham',\n", + " 'Scranton',\n", + " 'Pensacola',\n", + " 'Hancock',\n", + " 'Los Angeles',\n", + " 'Mason City',\n", + " 'Savannah',\n", + " 'West Yellowstone',\n", + " 'Long Beach',\n", + " 'Reno',\n", + " 'Akron',\n", + " 'Louisville',\n", + " 'Hartford',\n", + " 'Cincinnati',\n", + " 'Rochester',\n", + " 'San Francisco',\n", + " 'Detroit',\n", + " 'Monterey',\n", + " 'Escanaba',\n", + " 'Eau Claire']" + ] + }, + "execution_count": 94, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "city_set" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "cd0f41fb", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1 Restaurant Name\n", + "3 City\n", + "9 Cuisines\n", + "10 Average Cost for two\n", + "11 Currency\n", + "17 Aggregate rating\n" + ] + } + ], + "source": [ + "for idx, unit in enumerate(data_dict['columns']):\n", + " if unit in ['Restaurant Name', 'City', 'Cuisines', 'Average Cost for two','Aggregate rating','Currency']:\n", + " print(idx,unit)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "04fe71b7", + "metadata": {}, + "outputs": [], + "source": [ + "currency_set = set()\n", + "for unit in data_dict['data']:\n", + " currency_set.add(unit[11])" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "3988186d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Botswana Pula(P)',\n", + " 'Brazilian Real(R$)',\n", + " 'Dollar($)',\n", + " 'Emirati Diram(AED)',\n", + " 'Indian Rupees(Rs.)',\n", + " 'Indonesian Rupiah(IDR)',\n", + " 'NewZealand($)',\n", + " 'Pounds(專)',\n", + " 'Qatari Rial(QR)',\n", + " 'Rand(R)',\n", + " 'Sri Lankan Rupee(LKR)',\n", + " 'Turkish Lira(TL)'}" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "currency_set" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "257e6a76", + "metadata": {}, + "outputs": [], + "source": [ + "exchange_rate = {\"Botswana Pula(P)\":0.074,\n", + " \"Brazilian Real(R$)\":0.21, \n", + " 'Dollar($)':1, \n", + " 'Emirati Diram(AED)':0.27,\n", + " \"Indian Rupees(Rs.)\":0.012087,\n", + " \"Indonesian Rupiah(IDR)\":0.000066,\n", + " 'NewZealand($)':0.61,\n", + " \"Pounds(專)\":1.28,\n", + " \"Qatari Rial(QR)\":0.27,\n", + " 'Rand(R)': 0.054,\n", + " \"Sri Lankan Rupee(LKR)\":0.0031,\n", + " 'Turkish Lira(TL)':0.037\n", + " }" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "id": "c6b2691e", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "b7890e2caa7340d1870e641ada3249e1", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "0it [00:00, ?it/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from tqdm.autonotebook import tqdm\n", + "import random\n", + "new_data = []\n", + "\n", + "for idx, unit in tqdm(enumerate(data_dict['data'])):\n", + " tmp_dict = {k:\"\" for k in ['Name', 'City', 'Cuisines', 'Average Cost','Aggregate Rating']}\n", + " tmp_dict[\"Name\"] = unit[1]\n", + " tmp_dict[\"City\"] = random.sample(city_set,1)[0]\n", + " tmp_dict[\"Cuisines\"] = unit[9]\n", + " tmp_dict[\"Average Cost\"] = max(random.randint(10,100),int(unit[10] / 2 * exchange_rate[unit[11]]))\n", + " tmp_dict[\"Aggregate Rating\"] = unit[17]\n", + " new_data.append(tmp_dict)" + ] + }, + { + "cell_type": "code", + "execution_count": 137, + "id": "f27aaff1", + "metadata": {}, + "outputs": [], + "source": [ + "countries = [\"Chinese\", \"American\", \"Italian\", \"Mexican\", \"Indian\",\"Mediterranean\",\"French\"]\n", + "cuisine = [\"Tea\",\"Seafood\",\"Bakery\",\"Desserts\",\"BBQ\",\"Fast Food\",\"Cafe\",\"Pizza\"]\n", + "total_cuisine = countries + cuisine\n", + "for unit in new_data:\n", + " flag = False\n", + " final_cuisine = set()\n", + "# for c in total_cuisine:\n", + "# if c in str(unit['Cuisines']):\n", + "# final_cuisine.add(c)\n", + " choice_number = random.choices([0,1,1,2])[0]\n", + " for x in random.sample(countries,choice_number):\n", + " final_cuisine.add(x)\n", + " choice_number = random.choices([2,3,4])[0]\n", + " for x in random.sample(cuisine,choice_number):\n", + " final_cuisine.add(x)\n", + " unit['Cuisines'] = \", \".join(x for x in final_cuisine)" + ] + }, + { + "cell_type": "code", + "execution_count": 134, + "id": "8388274c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n" + ] + } + ], + "source": [ + "choice_number = random.choices([1,1,2])[0]\n", + "print(choice_number)" + ] + }, + { + "cell_type": "code", + "execution_count": 149, + "id": "6eb0520a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[1]" + ] + }, + "execution_count": 149, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "random.choices([1,1,2])" + ] + }, + { + "cell_type": "code", + "execution_count": 148, + "id": "9e3afb30", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Name': 'Gurgaon Hights',\n", + " 'City': 'New York',\n", + " 'Cuisines': 'Cafe, American, Indian, Fast Food',\n", + " 'Average Cost': 46,\n", + " 'Aggregate Rating': 2.5}" + ] + }, + "execution_count": 148, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_data[1357]" + ] + }, + { + "cell_type": "code", + "execution_count": 143, + "id": "bfb243c0", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(new_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 144, + "id": "af7e3411", + "metadata": {}, + "outputs": [], + "source": [ + "df.to_csv('/home/xj/toolAugEnv/code/toolConstraint/database/restaurants/clean_restaurant_2022.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 128, + "id": "dad9bf9f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameCityCuisinesAverage CostAggregate Rating
0Le Petit SouffleConcordFrench, BBQ, Desserts, Fast Food454.8
1Izakaya KikufujiNiagara FallsMediterranean, Desserts, Seafood444.5
2Heat - Edsa Shangri-LaWalla WallaItalian, BBQ, Fast Food, Cafe, Indian, Seafood1484.4
3OomaSalt Lake CityPizza, Italian, Bakery, Cafe, Seafood554.9
4Sambo KojinRochesterTea, Pizza, French, Cafe, Mediterranean, Seafood884.8
..................
9546Naml郾 GurmeMinneapolisTea, American, Desserts844.1
9547Ceviz A埕ac郾WacoTea, Cafe, BBQ, Mediterranean584.2
9548HuqqaChicagoTea, Chinese, Bakery, Italian133.7
9549A侓侓k KahveGrand RapidsCafe, French, Bakery, Fast Food304.0
9550Walter's Coffee RoasteryHibbingPizza, Mexican, Bakery, Cafe, Seafood204.0
\n", + "

9551 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " Name City \\\n", + "0 Le Petit Souffle Concord \n", + "1 Izakaya Kikufuji Niagara Falls \n", + "2 Heat - Edsa Shangri-La Walla Walla \n", + "3 Ooma Salt Lake City \n", + "4 Sambo Kojin Rochester \n", + "... ... ... \n", + "9546 Naml郾 Gurme Minneapolis \n", + "9547 Ceviz A埕ac郾 Waco \n", + "9548 Huqqa Chicago \n", + "9549 A侓侓k Kahve Grand Rapids \n", + "9550 Walter's Coffee Roastery Hibbing \n", + "\n", + " Cuisines Average Cost \\\n", + "0 French, BBQ, Desserts, Fast Food 45 \n", + "1 Mediterranean, Desserts, Seafood 44 \n", + "2 Italian, BBQ, Fast Food, Cafe, Indian, Seafood 148 \n", + "3 Pizza, Italian, Bakery, Cafe, Seafood 55 \n", + "4 Tea, Pizza, French, Cafe, Mediterranean, Seafood 88 \n", + "... ... ... \n", + "9546 Tea, American, Desserts 84 \n", + "9547 Tea, Cafe, BBQ, Mediterranean 58 \n", + "9548 Tea, Chinese, Bakery, Italian 13 \n", + "9549 Cafe, French, Bakery, Fast Food 30 \n", + "9550 Pizza, Mexican, Bakery, Cafe, Seafood 20 \n", + "\n", + " Aggregate Rating \n", + "0 4.8 \n", + "1 4.5 \n", + "2 4.4 \n", + "3 4.9 \n", + "4 4.8 \n", + "... ... \n", + "9546 4.1 \n", + "9547 4.2 \n", + "9548 3.7 \n", + "9549 4.0 \n", + "9550 4.0 \n", + "\n", + "[9551 rows x 5 columns]" + ] + }, + "execution_count": 128, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "id": "e168b1c5", + "metadata": {}, + "outputs": [], + "source": [ + "cuisine_dict = {}\n", + "for unit in new_data:\n", + " for x in str(unit['Cuisines']).split(', '):\n", + " if x not in cuisine_dict:\n", + " cuisine_dict[x] = 1\n", + " else:\n", + " cuisine_dict[x] += 1" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "id": "564d4bda", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "French 29\n", + "Japanese 135\n", + "Desserts 653\n", + "Seafood 174\n", + "Asian 233\n", + "Filipino 10\n", + "Indian 70\n", + "Sushi 75\n", + "Korean 21\n", + "Chinese 2735\n", + "European 148\n", + "Mexican 181\n", + "American 390\n", + "Ice Cream 226\n", + "Cafe 703\n", + "Italian 764\n", + "Pizza 381\n", + "Bakery 745\n", + "Mediterranean 112\n", + "Fast Food 1986\n", + "Brazilian 28\n", + "Arabian 28\n", + "Bar Food 39\n", + "Grill 21\n", + "International 21\n", + "Peruvian 1\n", + "Latin American 11\n", + "Burger 251\n", + "Juices 29\n", + "Healthy Food 150\n", + "Beverages 229\n", + "Lebanese 69\n", + "Sandwich 53\n", + "Steak 62\n", + "BBQ 33\n", + "Gourmet Fast Food 1\n", + "Mineira 1\n", + "North Eastern 9\n", + "nan 9\n", + "Coffee and Tea 19\n", + "Vegetarian 23\n", + "Tapas 19\n", + "Breakfast 41\n", + "Diner 6\n", + "Southern 24\n", + "Southwestern 7\n", + "Spanish 16\n", + "Argentine 2\n", + "Caribbean 7\n", + "German 10\n", + "Vietnamese 21\n", + "Thai 234\n", + "Modern Australian 11\n", + "Teriyaki 2\n", + "Cajun 10\n", + "Canadian 1\n", + "Tex-Mex 19\n", + "Middle Eastern 22\n", + "Greek 15\n", + "Bubble Tea 1\n", + "Tea 48\n", + "Australian 5\n", + "Fusion 4\n", + "Cuban 2\n", + "Hawaiian 8\n", + "Salad 93\n", + "Irish 1\n", + "New American 2\n", + "Soul Food 1\n", + "Turkish 15\n", + "Pub Food 2\n", + "Persian 2\n", + "Continental 736\n", + "Singaporean 4\n", + "Malay 1\n", + "Cantonese 2\n", + "Dim Sum 3\n", + "Western 10\n", + "Finger Food 114\n", + "British 16\n", + "Deli 3\n", + "Indonesian 14\n", + "North Indian 3960\n", + "Mughlai 995\n", + "Biryani 177\n", + "South Indian 636\n", + "Pakistani 12\n", + "Afghani 14\n", + "Hyderabadi 26\n", + "Rajasthani 21\n", + "Street Food 562\n", + "Goan 20\n", + "African 8\n", + "Portuguese 7\n", + "Gujarati 11\n", + "Armenian 3\n", + "Mithai 380\n", + "Maharashtrian 10\n", + "Modern Indian 16\n", + "Charcoal Grill 4\n", + "Malaysian 22\n", + "Burmese 10\n", + "Chettinad 11\n", + "Parsi 8\n", + "Tibetan 44\n", + "Raw Meats 114\n", + "Kerala 23\n", + "Belgian 2\n", + "Kashmiri 20\n", + "South American 2\n", + "Bengali 29\n", + "Iranian 3\n", + "Lucknowi 13\n", + "Awadhi 11\n", + "Nepalese 9\n", + "Drinks Only 2\n", + "Oriya 2\n", + "Bihari 6\n", + "Assamese 4\n", + "Andhra 10\n", + "Mangalorean 4\n", + "Malwani 1\n", + "Cuisine Varies 1\n", + "Moroccan 5\n", + "Naga 8\n", + "Sri Lankan 5\n", + "Peranakan 1\n", + "Sunda 3\n", + "Ramen 2\n", + "Kiwi 6\n", + "Asian Fusion 2\n", + "Taiwanese 2\n", + "Fish and Chips 1\n", + "Contemporary 9\n", + "Scottish 3\n", + "Curry 6\n", + "Patisserie 4\n", + "South African 6\n", + "Durban 1\n", + "Kebab 10\n", + "Turkish Pizza 8\n", + "Izgara 2\n", + "World Cuisine 4\n", + "D韄ner 1\n", + "Restaurant Cafe 4\n", + "B韄rek 1\n" + ] + } + ], + "source": [ + "for unit in cuisine_dict:\n", + " print(unit,cuisine_dict[unit])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "967426f0", + "metadata": {}, + "outputs": [], + "source": [ + "cuisine = [\"Chinese\", \"American\", \"Italian\", \"Mexican\", \"Indian\",\"Mediterranean\",\"Middle Eastern\",\"Breakfast\",\"Korean\",\"Asian\",\"French\",\"Tea\",\"Seafood\",\"Bakery\",\"Street Food\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "id": "880dd6bf", + "metadata": {}, + "outputs": [], + "source": [ + "countries = [\"Chinese\", \"American\", \"Italian\", \"Mexican\", \"Indian\",\"Mediterranean\",\"Middle Eastern\",,\"Korean\",\"Asian\",\"French\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "89d9aba9", + "metadata": {}, + "outputs": [], + "source": [ + "cuisine = [\"Tea\",\"Seafood\",\"Bakery\",\"Street Food\",\"Desserts\",\"BBQ\",\"Street Food\",\"Fast Food\",\"Cafe\",\"Pizza\"]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ff103725", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.16" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/tools/restaurants/test.py b/tools/restaurants/test.py new file mode 100644 index 0000000000000000000000000000000000000000..4fb745d5ec9ba3c0237823082dfad6811961c64a --- /dev/null +++ b/tools/restaurants/test.py @@ -0,0 +1,6 @@ +from tools.restaurants.apis import Restaurants +restaurant = Restaurants('/home/xj/toolAugEnv/code/toolConstraint/database/restaurants/clean_restaurant_2022.csv') +print(restaurant.run('New York')) +# x = x.replace(restaurant.run('New York'),"MASK") +# print("--------------") +# print(restaurant.run('New York')) \ No newline at end of file diff --git a/utils/.DS_Store b/utils/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 Binary files /dev/null and b/utils/.DS_Store differ diff --git a/utils/.ipynb_checkpoints/api_request-checkpoint.ipynb b/utils/.ipynb_checkpoints/api_request-checkpoint.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..65df4e6a95713191f5b3ac8ccbeb7e9694015d47 --- /dev/null +++ b/utils/.ipynb_checkpoints/api_request-checkpoint.ipynb @@ -0,0 +1,5231 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "id": "cfe36fe1", + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import openai\n", + "import math\n", + "import sys\n", + "import time\n", + "from tqdm import tqdm\n", + "from typing import Iterable, List, TypeVar\n", + "from retrying import retry\n", + "import func_timeout\n", + "from func_timeout import func_set_timeout\n", + "\n", + "\n", + "\n", + "T = TypeVar('T')\n", + "KEY_INDEX = 0\n", + "KEY_POOL = [\n", + " \"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\"\n", + "]# your key pool\n", + "openai.api_key = KEY_POOL[0]\n", + "os.environ[\"http_proxy\"] = \"http://127.0.0.1:7890\"\n", + "os.environ[\"https_proxy\"] = \"http://127.0.0.1:7890\"\n", + "openai.proxy = \"http://127.0.0.1:7890\"\n", + "\n", + "\n", + "class TimeoutError(Exception):\n", + " pass\n", + "\n", + "def timeout_handler(signum, frame):\n", + " raise TimeoutError(\"The function took too long to run\")\n", + "\n", + "@func_set_timeout(120)\n", + "def limited_execution_time(func,model,prompt,temp,max_tokens=2048, default=None,**kwargs):\n", + " try:\n", + " if 'gpt-3.5-turbo' in model or 'gpt-4' in model:\n", + " result = func(\n", + " model=model,\n", + " messages=prompt,\n", + " temperature=temp\n", + " )\n", + " else:\n", + " result = func(model=model,prompt=prompt,max_tokens=max_tokens,**kwargs)\n", + " except func_timeout.exceptions.FunctionTimedOut:\n", + " return None\n", + " # raise any other exception\n", + " except Exception as e:\n", + " raise e\n", + " return result\n", + "\n", + "\n", + "def batchify(data: Iterable[T], batch_size: int) -> Iterable[List[T]]:\n", + " # function copied from allenai/real-toxicity-prompts\n", + " assert batch_size > 0\n", + " batch = []\n", + " for item in data:\n", + " # Yield next batch\n", + " if len(batch) == batch_size:\n", + " yield batch\n", + " batch = []\n", + " batch.append(item)\n", + "\n", + " # Yield last un-filled batch\n", + " if len(batch) != 0:\n", + " yield batch\n", + "\n", + "\n", + "def openai_unit_price(model_name,token_type=\"prompt\"):\n", + " if 'gpt-4' in model_name:\n", + " if token_type==\"prompt\":\n", + " unit = 0.03\n", + " elif token_type==\"completion\":\n", + " unit = 0.06\n", + " else:\n", + " raise ValueError(\"Unknown type\")\n", + " elif 'gpt-3.5-turbo' in model_name:\n", + " unit = 0.002\n", + " elif 'davinci' in model_name:\n", + " unit = 0.02\n", + " elif 'curie' in model_name:\n", + " unit = 0.002\n", + " elif 'babbage' in model_name:\n", + " unit = 0.0005\n", + " elif 'ada' in model_name:\n", + " unit = 0.0004\n", + " else:\n", + " unit = -1\n", + " return unit\n", + "\n", + "\n", + "def calc_cost_w_tokens(total_tokens: int, model_name: str):\n", + " unit = openai_unit_price(model_name,token_type=\"completion\")\n", + " return round(unit * total_tokens / 1000, 4)\n", + "\n", + "\n", + "def calc_cost_w_prompt(total_tokens: int, model_name: str):\n", + " # 750 words == 1000 tokens\n", + " unit = openai_unit_price(model_name)\n", + " return round(unit * total_tokens / 1000, 4)\n", + "\n", + "\n", + "def get_perplexity(logprobs):\n", + " assert len(logprobs) > 0, logprobs\n", + " return math.exp(-sum(logprobs)/len(logprobs))\n", + "\n", + "\n", + "def keep_logprobs_before_eos(tokens, logprobs):\n", + " keep_tokens = []\n", + " keep_logprobs = []\n", + " start_flag = False\n", + " for tok, lp in zip(tokens, logprobs):\n", + " if start_flag:\n", + " if tok == \"<|endoftext|>\":\n", + " break\n", + " else:\n", + " keep_tokens.append(tok)\n", + " keep_logprobs.append(lp)\n", + " else:\n", + " if tok != '\\n':\n", + " start_flag = True\n", + " if tok != \"<|endoftext>\":\n", + " keep_tokens.append(tok)\n", + " keep_logprobs.append(lp)\n", + "\n", + " return keep_tokens, keep_logprobs\n", + "\n", + "\n", + "def catch_openai_api_error(prompt_input: list):\n", + " global KEY_INDEX\n", + " error = sys.exc_info()[0]\n", + " if error == openai.error.InvalidRequestError:\n", + " # something is wrong: e.g. prompt too long\n", + " print(f\"InvalidRequestError\\nPrompt:\\n\\n{prompt_input}\\n\\n\")\n", + " assert False\n", + " elif error == openai.error.RateLimitError:\n", + " KEY_INDEX = (KEY_INDEX + 1) % len(KEY_POOL)\n", + " openai.api_key = KEY_POOL[KEY_INDEX]\n", + " print(\"RateLimitError, now change the key. Current key is \", openai.api_key)\n", + " elif error == openai.error.APIError:\n", + " KEY_INDEX = (KEY_INDEX + 1) % len(KEY_POOL)\n", + " openai.api_key = KEY_POOL[KEY_INDEX]\n", + " print(\"APIError, now change the key. Current key is \", openai.api_key)\n", + " elif error == openai.error.AuthenticationError:\n", + " KEY_INDEX = (KEY_INDEX + 1) % len(KEY_POOL)\n", + " openai.api_key = KEY_POOL[KEY_INDEX]\n", + " print(\"AuthenticationError, now change the key. Current key is \", openai.api_key)\n", + " elif error == TimeoutError:\n", + " KEY_INDEX = (KEY_INDEX + 1) % len(KEY_POOL)\n", + " openai.api_key = KEY_POOL[KEY_INDEX]\n", + " print(\"TimeoutError, retrying...\")\n", + " else:\n", + " print(\"API error:\", error)\n", + "\n", + "\n", + "def prompt_gpt3(prompt_input: list, save_path,model_name='text-davinci-003', max_tokens=2048,\n", + " clean=False, batch_size=16, verbose=False, **kwargs):\n", + " # return: output_list, money_cost\n", + "\n", + " def request_api(prompts: list):\n", + " # prompts: list or str\n", + "\n", + " total_tokens = 0\n", + " results = []\n", + " for batch in tqdm(batchify(prompt_input, batch_size), total=len(prompt_input) // batch_size):\n", + " batch_response = request_api(batch)\n", + " total_tokens += batch_response['usage']['total_tokens']\n", + " if not clean:\n", + " results += batch_response['choices']\n", + " else:\n", + " results += [choice['text'] for choice in batch_response['choices']]\n", + " with open(save_path,'w+',encoding='utf-8') as f:\n", + " for content in results:\n", + " content = content.replace(\"\\n\",\" \")\n", + " f.write(content+'\\n')\n", + " return results, calc_cost_w_tokens(total_tokens, model_name)\n", + "\n", + "\n", + "\n", + "def prompt_chatgpt(system_input, user_input, temperature,save_path,index,history=[], model_name='gpt-3.5-turbo'):\n", + " '''\n", + " :param system_input: \"You are a helpful assistant/translator.\"\n", + " :param user_input: you texts here\n", + " :param history: ends with assistant output.\n", + " e.g. [{\"role\": \"system\", \"content\": xxx},\n", + " {\"role\": \"user\": \"content\": xxx},\n", + " {\"role\": \"assistant\", \"content\": \"xxx\"}]\n", + " return: assistant_output, (updated) history, money cost\n", + " '''\n", + " if len(history) == 0:\n", + " history = [{\"role\": \"system\", \"content\": system_input}]\n", + " history.append({\"role\": \"user\", \"content\": user_input})\n", + " while True:\n", + " try:\n", + " completion = limited_execution_time(openai.ChatCompletion.create,\n", + " model=model_name,\n", + " prompt=history,\n", + " temp=temperature)\n", + " if completion is None:\n", + " raise TimeoutError\n", + " break\n", + " except:\n", + " catch_openai_api_error(user_input)\n", + " time.sleep(1)\n", + "\n", + " assistant_output = completion['choices'][0]['message']['content']\n", + " history.append({\"role\": \"assistant\", \"content\": assistant_output})\n", + " total_prompt_tokens = completion['usage']['prompt_tokens']\n", + " total_completion_tokens = completion['usage']['completion_tokens']\n", + " with open(save_path,'a+',encoding='utf-8') as f:\n", + " assistant_output = str(index)+\"\\t\"+\"\\t\".join(x for x in assistant_output.split(\"\\n\"))\n", + " f.write(assistant_output+'\\n')\n", + " return assistant_output, history, calc_cost_w_tokens(total_prompt_tokens, model_name) + calc_cost_w_prompt(total_completion_tokens, model_name)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "d2bd29e3", + "metadata": {}, + "outputs": [], + "source": [ + "import json\n", + "def load_line_json_data(filename):\n", + " data = []\n", + " with open(filename, 'r', encoding='utf-8') as f:\n", + " for line in f.read().strip().split('\\n'):\n", + " unit = json.loads(line)\n", + " data.append(unit)\n", + " return data\n", + "\n", + "def build_generation_prompt(data):\n", + " prompt_list = []\n", + " prefix = \"\"\"Given a JSON, please help me generate a natural language query. In the JSON, 'org' denotes the departure city. When 'days' exceeds 3, 'visiting_city_number' specifies the number of cities to be covered in the destination state. Please disregard the 'level' attribute. Here are three examples.\n", + "\n", + "-----EXAMPLE 1-----\n", + "JSON:\n", + "{\"org\": \"Gulfport\", \"dest\": \"Charlotte\", \"days\": 3, \"visiting_city_number\": 1, \"date\": [\"2022-03-05\", \"2022-03-06\", \"2022-03-07\"], \"people_number\": 1, \"local_constraint\": {\"house rule\": null, \"cuisine\": null, \"room type\": null}, \"budget\": 1800, \"query\": null, \"level\": \"easy\"}\n", + "QUERY:\n", + "Please design a travel plan departing Gulfport and heading to Charlotte for 3 days, spanning March 5th to March 7th, 2022, with a budget of $1800.\n", + "-----EXAMPLE 2-----\n", + "JSON:\n", + "{\"org\": \"Omaha\", \"dest\": \"Colorado\", \"days\": 5, \"visiting_city_number\": 2, \"date\": [\"2022-03-14\", \"2022-03-15\", \"2022-03-16\", \"2022-03-17\", \"2022-03-18\"], \"people_number\": 7, \"local_constraint\": {\"house rule\": \"pets\", \"cuisine\": null, \"room type\": null}, \"budget\": 35300, \"query\": null, \"level\": \"middle\"}\n", + "QUERY:\n", + "Could you provide a 5-day travel itinerary for a group of 7, starting in Omaha and exploring 2 cities in Colorado between March 14th and March 18th, 2022? Our budget is set at $35,300, and it's essential that our accommodations be pet-friendly since we're bringing our pets.\n", + "-----EXAMPLE 3-----\n", + "JSON:\n", + "{\"org\": \"Indianapolis\", \"dest\": \"Georgia\", \"days\": 7, \"visiting_city_number\": 3, \"date\": [\"2022-03-01\", \"2022-03-02\", \"2022-03-03\", \"2022-03-04\", \"2022-03-05\", \"2022-03-06\", \"2022-03-07\"], \"people_number\": 2, \"local_constraint\": {\"flight time\": null, \"house rule\": null, \"cuisine\": [\"Bakery\", \"Indian\"], \"room type\": \"entire room\", \"transportation\": \"self driving\"}, \"budget\": 6200, \"query\": null, \"level\": \"hard\"}\n", + "QUERY:\n", + "I'm looking for a week-long travel itinerary for 2 individuals. Our journey starts in Indianapolis, and we intend to explore 3 distinct cities in Georgia from March 1st to March 7th, 2022. Our budget is capped at $6,200. For our accommodations, we'd prefer an entire room. We plan to navigate our journey via self-driving. In terms of food, we're enthusiasts of bakery items, and we'd also appreciate indulging in genuine Indian cuisine.\n", + "\n", + "JSON\\n\"\"\"\n", + " for unit in data:\n", + " unit = str(unit).replace(\", 'level': 'easy'\",'').replace(\", 'level': 'middle'\",'').replace(\", 'level': 'hard'\",'')\n", + " prompt = prefix + str(unit) + \"\\nQUERY\\n\"\n", + " prompt_list.append(prompt)\n", + " return prompt_list\n", + "\n", + "def build_plan_format_conversion_prompt(set_type='dev',model_name='gpt4',method='direct'):\n", + " prompt_list = []\n", + " prefix = \"\"\"Please assist me in extracting valid information from a given natural language text and reconstructing it in JSON format, as demonstrated in the following example. If transportation details indicate a journey from one city to another (e.g., from A to B), the 'current_city' should be updated to the destination city (in this case, B). Use a ';' to separate different attractions, with each attraction formatted as 'Name, City'. If there's information about transportation, ensure that the 'current_city' aligns with the destination mentioned in the transportation details (i.e., the current city should follow the format 'from A to B'). Also, ensure that all flight numbers and costs are followed by a colon (i.e., 'Flight Number:' and 'Cost:'), consistent with the provided example. Each item should include ['day', 'current_city', 'transportation', 'breakfast', 'attraction', 'lunch', 'dinner', 'accommodation']. Replace non-specific information like 'eat at home/on the road' with '-'. Additionally, delete any '$' symbols.\n", + "-----EXAMPLE-----\n", + " [{{\n", + " \"days\": 1,\n", + " \"current_city\": \"from Dallas to Peoria\",\n", + " \"transportation\": \"Flight Number: 4044830, from Dallas to Peoria, Departure Time: 13:10, Arrival Time: 15:01\",\n", + " \"breakfast\": \"-\",\n", + " \"attraction\": \"Peoria Historical Society, Peoria;Peoria Holocaust Memorial, Peoria;\",\n", + " \"lunch\": \"-\",\n", + " \"dinner\": \"Tandoor Ka Zaika, Peoria\",\n", + " \"accommodation\": \"Bushwick Music Mansion, Peoria\"\n", + " }},\n", + " {{\n", + " \"days\": 2,\n", + " \"current_city\": \"Peoria\",\n", + " \"transportation\": \"-\",\n", + " \"breakfast\": \"Tandoor Ka Zaika, Peoria\",\n", + " \"attraction\": \"Peoria Riverfront Park, Peoria;The Peoria PlayHouse, Peoria;Glen Oak Park, Peoria;\",\n", + " \"lunch\": \"Cafe Hashtag LoL, Peoria\",\n", + " \"dinner\": \"The Curzon Room - Maidens Hotel, Peoria\",\n", + " \"accommodation\": \"Bushwick Music Mansion, Peoria\"\n", + " }},\n", + " {{\n", + " \"days\": 3,\n", + " \"current_city\": \"from Peoria to Dallas\",\n", + " \"transportation\": \"Flight Number: 4045904, from Peoria to Dallas, Departure Time: 07:09, Arrival Time: 09:20\",\n", + " \"breakfast\": \"-\",\n", + " \"attraction\": \"-\",\n", + " \"lunch\": \"-\",\n", + " \"dinner\": \"-\",\n", + " \"accommodation\": \"-\"\n", + " }}]\n", + "-----EXAMPLE END-----\n", + "\"\"\"\n", + " directory = f'/home/xj/toolAugEnv/code/toolConstraint/data/final_data/{set_type}'\n", + " query_data_list = load_line_json_data(os.path.join(directory, 'query/query.jsonl'))\n", + " idx_number_list = [i for i in range(1,len(query_data_list)+1)]\n", + " for idx in tqdm(idx_number_list):\n", + " generated_plan = json.load(open(f'/home/xj/toolAugEnv/code/toolConstraint/results/{set_type}/plan_{idx}.json'))\n", + " if method != 'tool-use':\n", + " suffix = '_collected'\n", + " else:\n", + " suffix = ''\n", + " if generated_plan[-1][f'{model_name}_{method}{suffix}_info_results'] and generated_plan[-1][f'{model_name}_{method}{suffix}_info_results'] != \"\":\n", + " prompt = prefix + \"Text:\\n\"+generated_plan[-1][f'{model_name}_{method}{suffix}_info_results'].split('Total Costs:')[0]+\"\\nJSON:\\n\"\n", + " else:\n", + " prompt = \"\"\n", + " prompt_list.append(prompt)\n", + " return prompt_list\n", + "\n", + "def build_rewritten_query_prompt(file_path):\n", + " prompt_list = []\n", + " prefix = f\"\"\"Given a JSON, please help me rewrite the query based on the 'reset_budget'. Note that you should change any singular form of accommodation requirement to plural due to the uncertainty regarding the actual number of rooms needed.\n", + "-----EXAMPLE-----\n", + "JSON:\n", + "{{\"org\": \"Detroit\", \"dest\": \"Norfolk\", \"days\": 3, \"visiting_city_number\": 1, \"date\": [\"2022-03-05\", \"2022-03-06\", \"2022-03-07\"], \"people_number\": 3, \"local_constraint\": {{\"house rule\": \"smoking\", \"cuisine\": null, \"room type\": \"entire room\", \"transportation\": \"no flight\"}}, \"budget\": 4700, \"query\": \"Could you devise a 3-day travel itinerary for a group of 3, departing from Detroit and heading to Norfolk from March 5th to March 7th, 2022? Our budget is set at $4,700. Our accommodation must allow smoking and should ideally be an entire room. We would prefer to avoid any flights for our transportation.\", \"level\": \"hard\", \"reset_budget\": 2700}}\n", + "Rewritten Query:\n", + "Could you devise a 3-day travel itinerary for a group of 3, departing from Detroit and heading to Norfolk from March 5th to March 7th, 2022? Our budget is set at $2,700. We require accommodations that allow smoking and should ideally be entire rooms. We would prefer to avoid any flights for our transportation.\n", + "-----EXAMPLE END-----\n", + "\n", + "JSON:\n", + "\"\"\"\n", + " query_list = load_line_json_data(file_path)\n", + " for unit in query_list:\n", + " prompt = prefix + str(unit) + '\\n' + 'Rewritten Query:\\n'\n", + " prompt_list.append(prompt)\n", + " \n", + " return prompt_list" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "861c6651", + "metadata": {}, + "outputs": [], + "source": [ + "query_data = load_line_json_data('../data/query/lrz.jsonl')\n", + "test_data = build_generation_prompt(query_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "c6a6665a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Given a JSON, please help me rewrite the query based on the 'reset_budget'. Note that you should change any singular form of accommodation requirement to plural due to the uncertainty regarding the actual number of rooms needed.\n", + "-----EXAMPLE-----\n", + "JSON:\n", + "{\"org\": \"Detroit\", \"dest\": \"Norfolk\", \"days\": 3, \"visiting_city_number\": 1, \"date\": [\"2022-03-05\", \"2022-03-06\", \"2022-03-07\"], \"people_number\": 3, \"local_constraint\": {\"house rule\": \"smoking\", \"cuisine\": null, \"room type\": \"entire room\", \"transportation\": \"no flight\"}, \"budget\": 4700, \"query\": \"Could you devise a 3-day travel itinerary for a group of 3, departing from Detroit and heading to Norfolk from March 5th to March 7th, 2022? Our budget is set at $4,700. Our accommodation must allow smoking and should ideally be an entire room. We would prefer to avoid any flights for our transportation.\", \"level\": \"hard\", \"reset_budget\": 2700}\n", + "Rewritten Query:\n", + "Could you devise a 3-day travel itinerary for a group of 3, departing from Detroit and heading to Norfolk from March 5th to March 7th, 2022? Our budget is set at $2,700. We require accommodations that allow smoking and should ideally be entire rooms. We would prefer to avoid any flights for our transportation.\n", + "-----EXAMPLE END-----\n", + "\n", + "JSON:\n", + "{'org': 'Detroit', 'dest': 'Norfolk', 'days': 3, 'visiting_city_number': 1, 'date': ['2022-03-05', '2022-03-06', '2022-03-07'], 'people_number': 3, 'local_constraint': {'house rule': 'smoking', 'cuisine': None, 'room type': 'entire room', 'transportation': 'no flight'}, 'budget': 4700, 'query': 'Could you devise a 3-day travel itinerary for a group of 3, departing from Detroit and heading to Norfolk from March 5th to March 7th, 2022? Our budget is set at $4,700. Our accommodation must allow smoking and should ideally be an entire room. We would prefer to avoid any flights for our transportation.', 'level': 'hard', 'reset_budget': 2800}\n", + "Rewritten Query:\n", + "\n" + ] + } + ], + "source": [ + "test_data = build_rewritten_query_prompt('../data/query/all_reset_budget.jsonl')\n", + "print(test_data[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "ff602d51", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Please assist me in extracting valid information from a given natural language text and reconstructing it in JSON format, as demonstrated in the following example. If transportation details indicate a journey from one city to another (e.g., from A to B), the 'current_city' should be updated to the destination city (in this case, B). Use a ';' to separate different attractions, with each attraction formatted as 'Name, City'. If there's information about transportation, ensure that the 'current_city' aligns with the destination mentioned in the transportation details (i.e., the current city should follow the format 'from A to B'). Also, ensure that all flight numbers and costs are followed by a colon (i.e., 'Flight Number:' and 'Cost:'), consistent with the provided example. Each item should include ['day', 'current_city', 'transportation', 'breakfast', 'attraction', 'lunch', 'dinner', 'accommodation']. Replace non-specific information like 'eat at home/on the road' with '-'. Additionally, delete any '$' symbols.\n", + "-----EXAMPLE-----\n", + " [{{\n", + " \"days\": 1,\n", + " \"current_city\": \"from Dallas to Peoria\",\n", + " \"transportation\": \"Flight Number: 4044830, from Dallas to Peoria, Departure Time: 13:10, Arrival Time: 15:01\",\n", + " \"breakfast\": \"-\",\n", + " \"attraction\": \"Peoria Historical Society, Peoria;Peoria Holocaust Memorial, Peoria;\",\n", + " \"lunch\": \"-\",\n", + " \"dinner\": \"Tandoor Ka Zaika, Peoria\",\n", + " \"accommodation\": \"Bushwick Music Mansion, Peoria\"\n", + " }},\n", + " {{\n", + " \"days\": 2,\n", + " \"current_city\": \"Peoria\",\n", + " \"transportation\": \"-\",\n", + " \"breakfast\": \"Tandoor Ka Zaika, Peoria\",\n", + " \"attraction\": \"Peoria Riverfront Park, Peoria;The Peoria PlayHouse, Peoria;Glen Oak Park, Peoria;\",\n", + " \"lunch\": \"Cafe Hashtag LoL, Peoria\",\n", + " \"dinner\": \"The Curzon Room - Maidens Hotel, Peoria\",\n", + " \"accommodation\": \"Bushwick Music Mansion, Peoria\"\n", + " }},\n", + " {{\n", + " \"days\": 3,\n", + " \"current_city\": \"from Peoria to Dallas\",\n", + " \"transportation\": \"Flight Number: 4045904, from Peoria to Dallas, Departure Time: 07:09, Arrival Time: 09:20\",\n", + " \"breakfast\": \"-\",\n", + " \"attraction\": \"-\",\n", + " \"lunch\": \"-\",\n", + " \"dinner\": \"-\",\n", + " \"accommodation\": \"-\"\n", + " }}]\n", + "-----EXAMPLE END-----\n", + "\n", + "Text:\n", + "Travel Plan:\n", + "\n", + "Day 1: March 20, 2022\n", + "Current City: from North Platte to Grand Junction\n", + "Transportation: Self-driving, from North Platte to Grand Junction, Duration: 7 hours 27 mins, Distance: 809 km, Cost: $40\n", + "Breakfast: -\n", + "Attraction: Visit Grand Junction Mural, Walter Walker State Wildlife Area\n", + "Lunch: Ate at \"Austin's BBQ and Oyster Bar\", Average Cost: $15\n", + "Dinner: Enjoyed food at \"2 Dog\", Average Cost: $29\n", + "Accommodation: Stayed at \"New Renovated Studio~Prime Upper East~W/D\", Price: $1174, Room Type: Entire home/apt\n", + "\n", + "Day 2: March 21, 2022\n", + "Current City: Grand Junction\n", + "Transportation: -\n", + "Breakfast: Had breakfast at \"Cocoa Tree\", Average Cost: $68\n", + "Attraction: Visited Museum of the West, Eureka! McConnell Science Museum, Bananas Fun Park\n", + "Lunch: Ate at \"Pind Balluchi\", Average Cost: $17\n", + "Dinner: Savored dinner at \"Punjab Da Pind\", Average Cost: $52\n", + "Accommodation: Continued stay at \"New Renovated Studio~Prime Upper East~W/D\"\n", + "\n", + "Day 3: March 22, 2022\n", + "Current City: from Grand Junction to Durango\n", + "Transportation: Self-driving, from Grand Junction to Durango, Duration: 3 hours 34 mins, Distance: 269 km, Cost: $13\n", + "Breakfast: -\n", + "Attraction: Visited Durango & Silverton Narrow Gauge Railroad, Animas Museum\n", + "Lunch: Had a meal at \"Samurai Japanese Cuisine & Sushi Bar\", Average Cost: $67\n", + "Dinner: Ate at \"Dub's High on the Hog\", Average Cost: $98\n", + "Accommodation: Stayed at \"BEAUTIFUL 2 BED APARTMENT IN WILLIAMSBURG, BROOLYN\", Price: $1022, Room Type: Entire home/apt\n", + "\n", + "Day 4: March 23, 2022\n", + "Current City: Durango\n", + "Transportation: -\n", + "Breakfast: Started the day at \"Asian Haus\", Average Cost: $26\n", + "Attraction: Explored Durango Adventures and Zipline Tours, Whitewater Park\n", + "Lunch: Had a meal at \"Mohit di Hatti\", Average Cost: $74\n", + "Dinner: Ate a delightful dinner at \"The Mashal\", Average Cost: $85\n", + "Accommodation: Continued stay at \"BEAUTIFUL 2 BED APARTMENT IN WILLIAMSBURG, BROOLYN\"\n", + "\n", + "Day 5: March 24, 2022\n", + "Current City: from Durango to Colorado Springs\n", + "Transportation: Self-driving, from Durango to Colorado Springs, Duration: 5 hours 27 mins, Distance: 504 km, Cost: $25\n", + "Breakfast: -\n", + "Attraction: Visited Garden of the Gods, Cheyenne Mountain Zoo\n", + "Lunch: Ate at \"Raglan Road Irish Pub and Restaurant\", Average Cost: $97\n", + "Dinner: Enjoyed food at \"Derby\", Average Cost: $67\n", + "Accommodation: Stayed at \"Charming and Bright 1 bdr apartment in Noho\", Price: $112, Room Type: Entire home/apt\n", + "\n", + "Day 6: March 25, 2022\n", + "Current City: Colorado Springs\n", + "Transportation: -\n", + "Breakfast: Had breakfast at \"Club Tokyo - Best Western Skycity Hotel\", Average Cost: $64\n", + "Attraction: Explored Cave of the Winds Mountain Park, The Broadmoor Seven Falls\n", + "Lunch: Had a meal at \"Deepak Rasoi\", Average Cost: $60\n", + "Dinner: Savored dinner at \"GoGourmet\", Average Cost: $66\n", + "Accommodation: Continued stay at \"Charming and Bright 1 bdr apartment in Noho\"\n", + "\n", + "Day 7: March 26, 2022\n", + "Current City: from Colorado Springs to North Platte\n", + "Transportation: Self-driving, from Colorado Springs to North Platte, Duration: 4 hours 40 mins, Distance: 536 km, Cost: $26\n", + "Breakfast: -\n", + "Attraction: -\n", + "Lunch: -\n", + "Dinner: -\n", + "Accommodation: -\n", + "\n", + "\n", + "JSON:\n", + "\n" + ] + } + ], + "source": [ + "print(test_data[134])" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "dd22437c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "we will need to travel from Elmira to Punta Gorda on March 12th, 2022. Since there is a flight available, we will take Flight Number F3575578, departing at 20:07 and arriving at 23:07. The cost for this flight is $321 per person.\n", + "\n", + "Upon arrival in Punta Gorda, we will need accommodations that allow smoking. We can stay at the Cozy Cat Cave in Bushwick for $661 for the night. This will be our first day in Punta Gorda.\n", + "\n", + "On March 13th, we will explore the attractions in Punta Gorda, such as Laishley Park, Ponce De Leon Park, and Charlotte Harbor Preserve State Park. For meals, we can try Pho Bac for lunch and Villa Gargano for dinner.\n", + "\n", + "On March 14th, there is no flight available from Punta Gorda to Tallahassee, so we will need to self-drive. The cost for self-driving is $29, and the distance is 597 km. Upon arrival in Tallahassee, we can stay at the Comfortable one bedroom with patio for $73 for the night.\n", + "\n", + "On March 15th, we can visit the Tallahassee Museum and Alfred B. Maclay Gardens State Park. For meals, we can try Indian Grill Room for lunch and Barrett Junction Cafe for dinner.\n", + "\n", + "On March 16th, there is no flight available from Tallahassee to Jacksonville, so we will need to self-drive. The cost for self-driving is $13, and the distance is 267 km. Upon arrival in Jacksonville, we can stay at the Huge Loft - Heart of Williamsburg for $518 for the night.\n", + "\n", + "On March 17th, we can explore the attractions in Jacksonville, such as Jacksonville Zoo and Gardens and MOSH (Museum Of Science & History). For meals, we can try Pirates' House Restaurant for lunch and Goose Feathers Cafe and Bakery for dinner.\n", + "\n", + "On March 18th, there is no flight available from Jacksonville to Elmira, so we will need to self-drive. The cost for self-driving is $79, and the distance is 1,590 km. Upon arrival in Elmira, our journey will come to an end.\n", + "\n", + "This travel plan aligns with the budget of $6,800 and includes accommodations that allow smoking and a diverse range of cuisines.\n" + ] + } + ], + "source": [ + "print(\"we will need to travel from Elmira to Punta Gorda on March 12th, 2022. Since there is a flight available, we will take Flight Number F3575578, departing at 20:07 and arriving at 23:07. The cost for this flight is $321 per person.\\n\\nUpon arrival in Punta Gorda, we will need accommodations that allow smoking. We can stay at the Cozy Cat Cave in Bushwick for $661 for the night. This will be our first day in Punta Gorda.\\n\\nOn March 13th, we will explore the attractions in Punta Gorda, such as Laishley Park, Ponce De Leon Park, and Charlotte Harbor Preserve State Park. For meals, we can try Pho Bac for lunch and Villa Gargano for dinner.\\n\\nOn March 14th, there is no flight available from Punta Gorda to Tallahassee, so we will need to self-drive. The cost for self-driving is $29, and the distance is 597 km. Upon arrival in Tallahassee, we can stay at the Comfortable one bedroom with patio for $73 for the night.\\n\\nOn March 15th, we can visit the Tallahassee Museum and Alfred B. Maclay Gardens State Park. For meals, we can try Indian Grill Room for lunch and Barrett Junction Cafe for dinner.\\n\\nOn March 16th, there is no flight available from Tallahassee to Jacksonville, so we will need to self-drive. The cost for self-driving is $13, and the distance is 267 km. Upon arrival in Jacksonville, we can stay at the Huge Loft - Heart of Williamsburg for $518 for the night.\\n\\nOn March 17th, we can explore the attractions in Jacksonville, such as Jacksonville Zoo and Gardens and MOSH (Museum Of Science & History). For meals, we can try Pirates' House Restaurant for lunch and Goose Feathers Cafe and Bakery for dinner.\\n\\nOn March 18th, there is no flight available from Jacksonville to Elmira, so we will need to self-drive. The cost for self-driving is $79, and the distance is 1,590 km. Upon arrival in Elmira, our journey will come to an end.\\n\\nThis travel plan aligns with the budget of $6,800 and includes accommodations that allow smoking and a diverse range of cuisines.\")" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "16dc3f1b", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████| 1000/1000 [00:03<00:00, 293.62it/s]\n" + ] + } + ], + "source": [ + "model_name = ['gpt-3.5-turbo-11062','gpt-4-1106-preview2','greedy_search','mistral-7B-32K','gemini','mixtral','ChatGLM3-6B-32K2'][-3]\n", + "method = ['direct','cot','react','reflexion','tool-use'][-1]\n", + "set_type = ['dev','test'][0]\n", + "test_data = build_plan_format_conversion_prompt(set_type=set_type,model_name=model_name,method=method)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "c81fb403", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.391\n" + ] + } + ], + "source": [ + "# test_data = test_data[:28]\n", + "cnt = 0\n", + "for unit in test_data:\n", + " if unit == \"\":\n", + " cnt += 1\n", + "print(1.0*(len(test_data)-cnt)/len(test_data))" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "d0547a5d", + "metadata": {}, + "outputs": [], + "source": [ + "cnt+=1" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "8d71843e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\"\n", + "Thought 1: The task is to create a 7-day travel plan starting in Philadelphia and visiting 3 different cities in Virginia within a budget of $1,800. The cities to visit in Virginia are Richmond, Petersburg, and Charlottesville. The travel dates are from March 15th to March 21st, 2022. To begin, I need to consider the modes of transportation between these cities, as well as the costs associated with each mode. According to the provided information, there are flights, self-driving options, and taxis available for some of the routes. I also need to account for accommodations, meals, and attractions in each city. Given the budget constraint, it's important to choose cost-effective options for transportation and lodging. I will start by planning the transportation from Philadelphia to the first city in Virginia, which is Richmond.\n", + "Action 1: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Philadelphia\", \"transportation\": \"self-driving, from Philadelphia to Richmond, duration: 4 hours 2 mins, distance: 407 km, cost: 20\", \"breakfast\": \"-\", \"attraction\": \"-\", \"lunch\": \"-\", \"dinner\": \"-\", \"accommodation\": \"-\"}]\n", + "Observation 1: Cost: The cost of your plan is 20 dollars.\n", + "Thought 2: The self-driving option from Philadelphia to Richmond is within budget, costing $20. Now, I need to find accommodation in Richmond for the first night. I will look for an option that is affordable but comfortable, considering the overall budget. After securing accommodation, I will plan for meals and attractions in Richmond for the following day. I will choose attractions that do not have an entry fee listed to keep costs down and select moderately priced restaurants for meals. Once the plan for Richmond is set, I will proceed to plan the transportation to Petersburg, followed by accommodation, meals, and attractions there. The same process will be applied for the trip from Petersburg to Charlottesville and then back to Philadelphia.\n", + "Action 2: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Cool Summer Vibes UWS Pent House w/ rooftop, Richmond\"}]\n", + "Observation 2: Cost: The cost of your plan is 602.0 dollars.\n", + "Thought 3: The accommodation at \"Cool Summer Vibes UWS Pent House w/ rooftop\" in Richmond is too expensive, costing $602, which significantly impacts the budget. I need to find a more affordable accommodation option to ensure the budget is maintained throughout the 7-day trip. I will look for a different accommodation that is less expensive and re-calculate the cost for the first day in Richmond, including the chosen attractions and meals.\n", + "Action 3: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 3: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 4: The accommodation \"Gorgeous studio in midtown Manhattan\" in Richmond is still too expensive at $316. I need to select a more budget-friendly accommodation to keep the overall trip within the $1,800 budget. I will choose another accommodation option with a lower price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 4: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"2 bd 2 bathroom Apartment in Upper East Side, Richmond\"}]\n", + "Observation 4: Cost: The cost of your plan is 389.0 dollars.\n", + "Thought 5: The accommodation \"2 bd 2 bathroom Apartment in Upper East Side\" in Richmond is still not affordable enough at $389. I will need to select the most budget-friendly accommodation option available in the provided data to ensure the trip remains within the $1,800 budget. I will choose another accommodation option with the lowest price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 5: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Inviting Brooklyn Studio, Richmond\"}]\n", + "Observation 5: Cost: The cost of your plan is 502.0 dollars.\n", + "Thought 6: The accommodation \"Inviting Brooklyn Studio\" in Richmond is still too expensive at $502. I will need to select the most budget-friendly accommodation option available in the provided data to ensure the trip remains within the $1,800 budget. I will choose another accommodation option with the lowest price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 6: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Large cozy bedroom close to Times Square 43D4, Richmond\"}]\n", + "Observation 6: Cost: The cost of your plan is 507.0 dollars.\n", + "Thought 7: The accommodation \"Large cozy bedroom close to Times Square 43D4\" in Richmond is still too expensive at $507. I will need to select the most budget-friendly accommodation option available in the provided data to ensure the trip remains within the $1,800 budget. I will choose another accommodation option with the lowest price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 7: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 7: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 8: It seems there was a mistake in repeating the same accommodation that was previously too expensive. I need to find the most affordable accommodation option in Richmond to ensure the trip remains within the $1,800 budget. I will review the accommodations list again and select the one with the lowest price, then re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 8: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"12 East 86th St full furnished, Richmond\"}]\n", + "Observation 8: Cost: The cost of your plan is 555.0 dollars.\n", + "Thought 9: The accommodation \"12 East 86th St full furnished\" in Richmond is also too expensive at $555. I need to find the most affordable accommodation option in Richmond to ensure the trip remains within the $1,800 budget. I will review the accommodations list again and select the one with the lowest price, then re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 9: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 9: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 10: It appears there was a repeated mistake in selecting accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 10: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 10: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 11: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 11: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Inviting Brooklyn Studio, Richmond\"}]\n", + "Observation 11: Cost: The cost of your plan is 502.0 dollars.\n", + "Thought 12: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 12: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"12 East 86th St full furnished, Richmond\"}]\n", + "Observation 12: Cost: The cost of your plan is 555.0 dollars.\n", + "Thought 13: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 13: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Large cozy bedroom close to Times Square 43D4, Richmond\"}]\n", + "Observation 13: Cost: The cost of your plan is 507.0 dollars.\n", + "Thought 14: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 14: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 14: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 15: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 15: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"2 bd 2 bathroom Apartment in Upper East Side, Richmond\"}]\n", + "Observation 15: Cost: The cost of your plan is 389.0 dollars.\n", + "Thought 16: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 16: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Large suite with private bathroom (15 min to city), Richmond\"}]\n", + "Observation 16: Cost: The cost of your plan is 868.0 dollars.\n", + "Thought 17: The accommodation \"Large suite with private bathroom (15 min to city)\" in Richmond is also too expensive at $868. I need to find the most affordable accommodation option in Richmond to ensure the trip remains within the $1,800 budget. I will review the accommodations list again and select the one with the lowest price, then re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 17: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 17: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 18: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 18: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"12 East 86th St full furnished, Richmond\"}]\n", + "Observation 18: Cost: The cost of your plan is 555.0 dollars.\n", + "Thought 19: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 19: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 19: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 20: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 20: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Inviting Brooklyn Studio, Richmond\"}]\n", + "Observation 20: Cost: The cost of your plan is 502.0 dollars.\n", + "Thought 21: I apologize for the confusion in the previous steps. It seems I have been repeatedly selecting accommodations that are too expensive and not suitable for the budget. I will now carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 21: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 21: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 22: I apologize for the confusion in the previous steps. It seems I have been repeatedly selecting accommodations that are too expensive and not suitable for the budget. I will now carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 22: I apologize for the repeated errors in the previous steps. It seems I have been mistakenly selecting accommodations that are too expensive and not suitable for the budget. To correct this, I will now carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Observation 22: Action None is not supported.\",\n" + ] + } + ], + "source": [ + "print(\"\"\"\"\\nThought 1: The task is to create a 7-day travel plan starting in Philadelphia and visiting 3 different cities in Virginia within a budget of $1,800. The cities to visit in Virginia are Richmond, Petersburg, and Charlottesville. The travel dates are from March 15th to March 21st, 2022. To begin, I need to consider the modes of transportation between these cities, as well as the costs associated with each mode. According to the provided information, there are flights, self-driving options, and taxis available for some of the routes. I also need to account for accommodations, meals, and attractions in each city. Given the budget constraint, it's important to choose cost-effective options for transportation and lodging. I will start by planning the transportation from Philadelphia to the first city in Virginia, which is Richmond.\\nAction 1: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Philadelphia\\\", \\\"transportation\\\": \\\"self-driving, from Philadelphia to Richmond, duration: 4 hours 2 mins, distance: 407 km, cost: 20\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"-\\\", \\\"lunch\\\": \\\"-\\\", \\\"dinner\\\": \\\"-\\\", \\\"accommodation\\\": \\\"-\\\"}]\\nObservation 1: Cost: The cost of your plan is 20 dollars.\\nThought 2: The self-driving option from Philadelphia to Richmond is within budget, costing $20. Now, I need to find accommodation in Richmond for the first night. I will look for an option that is affordable but comfortable, considering the overall budget. After securing accommodation, I will plan for meals and attractions in Richmond for the following day. I will choose attractions that do not have an entry fee listed to keep costs down and select moderately priced restaurants for meals. Once the plan for Richmond is set, I will proceed to plan the transportation to Petersburg, followed by accommodation, meals, and attractions there. The same process will be applied for the trip from Petersburg to Charlottesville and then back to Philadelphia.\\nAction 2: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Cool Summer Vibes UWS Pent House w/ rooftop, Richmond\\\"}]\\nObservation 2: Cost: The cost of your plan is 602.0 dollars.\\nThought 3: The accommodation at \\\"Cool Summer Vibes UWS Pent House w/ rooftop\\\" in Richmond is too expensive, costing $602, which significantly impacts the budget. I need to find a more affordable accommodation option to ensure the budget is maintained throughout the 7-day trip. I will look for a different accommodation that is less expensive and re-calculate the cost for the first day in Richmond, including the chosen attractions and meals.\\nAction 3: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 3: Cost: The cost of your plan is 316.0 dollars.\\nThought 4: The accommodation \\\"Gorgeous studio in midtown Manhattan\\\" in Richmond is still too expensive at $316. I need to select a more budget-friendly accommodation to keep the overall trip within the $1,800 budget. I will choose another accommodation option with a lower price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 4: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"2 bd 2 bathroom Apartment in Upper East Side, Richmond\\\"}]\\nObservation 4: Cost: The cost of your plan is 389.0 dollars.\\nThought 5: The accommodation \\\"2 bd 2 bathroom Apartment in Upper East Side\\\" in Richmond is still not affordable enough at $389. I will need to select the most budget-friendly accommodation option available in the provided data to ensure the trip remains within the $1,800 budget. I will choose another accommodation option with the lowest price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 5: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Inviting Brooklyn Studio, Richmond\\\"}]\\nObservation 5: Cost: The cost of your plan is 502.0 dollars.\\nThought 6: The accommodation \\\"Inviting Brooklyn Studio\\\" in Richmond is still too expensive at $502. I will need to select the most budget-friendly accommodation option available in the provided data to ensure the trip remains within the $1,800 budget. I will choose another accommodation option with the lowest price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 6: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Large cozy bedroom close to Times Square 43D4, Richmond\\\"}]\\nObservation 6: Cost: The cost of your plan is 507.0 dollars.\\nThought 7: The accommodation \\\"Large cozy bedroom close to Times Square 43D4\\\" in Richmond is still too expensive at $507. I will need to select the most budget-friendly accommodation option available in the provided data to ensure the trip remains within the $1,800 budget. I will choose another accommodation option with the lowest price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 7: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 7: Cost: The cost of your plan is 316.0 dollars.\\nThought 8: It seems there was a mistake in repeating the same accommodation that was previously too expensive. I need to find the most affordable accommodation option in Richmond to ensure the trip remains within the $1,800 budget. I will review the accommodations list again and select the one with the lowest price, then re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 8: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"12 East 86th St full furnished, Richmond\\\"}]\\nObservation 8: Cost: The cost of your plan is 555.0 dollars.\\nThought 9: The accommodation \\\"12 East 86th St full furnished\\\" in Richmond is also too expensive at $555. I need to find the most affordable accommodation option in Richmond to ensure the trip remains within the $1,800 budget. I will review the accommodations list again and select the one with the lowest price, then re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 9: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 9: Cost: The cost of your plan is 316.0 dollars.\\nThought 10: It appears there was a repeated mistake in selecting accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 10: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 10: Cost: The cost of your plan is 316.0 dollars.\\nThought 11: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 11: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Inviting Brooklyn Studio, Richmond\\\"}]\\nObservation 11: Cost: The cost of your plan is 502.0 dollars.\\nThought 12: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 12: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"12 East 86th St full furnished, Richmond\\\"}]\\nObservation 12: Cost: The cost of your plan is 555.0 dollars.\\nThought 13: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 13: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Large cozy bedroom close to Times Square 43D4, Richmond\\\"}]\\nObservation 13: Cost: The cost of your plan is 507.0 dollars.\\nThought 14: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 14: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 14: Cost: The cost of your plan is 316.0 dollars.\\nThought 15: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 15: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"2 bd 2 bathroom Apartment in Upper East Side, Richmond\\\"}]\\nObservation 15: Cost: The cost of your plan is 389.0 dollars.\\nThought 16: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 16: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Large suite with private bathroom (15 min to city), Richmond\\\"}]\\nObservation 16: Cost: The cost of your plan is 868.0 dollars.\\nThought 17: The accommodation \\\"Large suite with private bathroom (15 min to city)\\\" in Richmond is also too expensive at $868. I need to find the most affordable accommodation option in Richmond to ensure the trip remains within the $1,800 budget. I will review the accommodations list again and select the one with the lowest price, then re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 17: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 17: Cost: The cost of your plan is 316.0 dollars.\\nThought 18: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 18: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"12 East 86th St full furnished, Richmond\\\"}]\\nObservation 18: Cost: The cost of your plan is 555.0 dollars.\\nThought 19: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 19: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 19: Cost: The cost of your plan is 316.0 dollars.\\nThought 20: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 20: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Inviting Brooklyn Studio, Richmond\\\"}]\\nObservation 20: Cost: The cost of your plan is 502.0 dollars.\\nThought 21: I apologize for the confusion in the previous steps. It seems I have been repeatedly selecting accommodations that are too expensive and not suitable for the budget. I will now carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 21: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 21: Cost: The cost of your plan is 316.0 dollars.\\nThought 22: I apologize for the confusion in the previous steps. It seems I have been repeatedly selecting accommodations that are too expensive and not suitable for the budget. I will now carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 22: I apologize for the repeated errors in the previous steps. It seems I have been mistakenly selecting accommodations that are too expensive and not suitable for the budget. To correct this, I will now carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nObservation 22: Action None is not supported.\",\"\"\")" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "66872afa", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Please assist me in extracting valid information from a given natural language text and reconstructing it in JSON format, as demonstrated in the following example. If transportation details indicate a journey from one city to another (e.g., from A to B), the \\'current_city\\' should be updated to the destination city (in this case, B). Use a \\';\\' to separate different attractions, with each attraction formatted as \\'Name, City\\'. If there\\'s information about transportation, ensure that the \\'current_city\\' aligns with the destination mentioned in the transportation details (i.e., the current city should follow the format \\'from A to B\\'). Also, ensure that all flight numbers and costs are followed by a colon (i.e., \\'Flight Number:\\' and \\'Cost:\\'), consistent with the provided example. Each item should include [\\'day\\', \\'current_city\\', \\'transportation\\', \\'breakfast\\', \\'attraction\\', \\'lunch\\', \\'dinner\\', \\'accommodation\\']. Replace non-specific information like \\'eat at home/on the road\\' with \\'-\\'. Additionally, delete any \\'$\\' symbols.\\n-----EXAMPLE-----\\n [{{\\n \"days\": 1,\\n \"current_city\": \"from Dallas to Peoria\",\\n \"transportation\": \"Flight Number: 4044830, from Dallas to Peoria, Departure Time: 13:10, Arrival Time: 15:01\",\\n \"breakfast\": \"-\",\\n \"attraction\": \"Peoria Historical Society, Peoria;Peoria Holocaust Memorial, Peoria;\",\\n \"lunch\": \"-\",\\n \"dinner\": \"Tandoor Ka Zaika, Peoria\",\\n \"accommodation\": \"Bushwick Music Mansion, Peoria\"\\n }},\\n {{\\n \"days\": 2,\\n \"current_city\": \"Peoria\",\\n \"transportation\": \"-\",\\n \"breakfast\": \"Tandoor Ka Zaika, Peoria\",\\n \"attraction\": \"Peoria Riverfront Park, Peoria;The Peoria PlayHouse, Peoria;Glen Oak Park, Peoria;\",\\n \"lunch\": \"Cafe Hashtag LoL, Peoria\",\\n \"dinner\": \"The Curzon Room - Maidens Hotel, Peoria\",\\n \"accommodation\": \"Bushwick Music Mansion, Peoria\"\\n }},\\n {{\\n \"days\": 3,\\n \"current_city\": \"from Peoria to Dallas\",\\n \"transportation\": \"Flight Number: 4045904, from Peoria to Dallas, Departure Time: 07:09, Arrival Time: 09:20\",\\n \"breakfast\": \"-\",\\n \"attraction\": \"-\",\\n \"lunch\": \"-\",\\n \"dinner\": \"-\",\\n \"accommodation\": \"-\"\\n }}]\\n-----EXAMPLE END-----\\nText:\\ncontent=\\'Day 1:\\\\nCurrent City: from Memphis to Los Angeles\\\\nTransportation: Flight Number: F0123456, from Memphis to Los Angeles, Departure Time: 08:30, Arrival Time: 10:30\\\\nBreakfast: -\\\\nAttraction: Santa Monica Pier, Los Angeles\\\\nLunch: -\\\\nDinner: -\\\\nAccommodation: Hampton Inn & Suites Los Angeles/Hollywood, Los Angeles\\\\n\\\\nDay 2:\\\\nCurrent City: Los Angeles\\\\nTransportation: -\\\\nBreakfast: -\\\\nAttraction: Hollywood Walk of Fame, Los Angeles; Hollywood Sign, Los Angeles\\\\nLunch: -\\\\nDinner: -\\\\nAccommodation: Hampton Inn & Suites Los Angeles/Hollywood, Los Angeles\\\\n\\\\nDay 3:\\\\nCurrent City: Los Angeles\\\\nTransportation: -\\\\nBreakfast: -\\\\nAttraction: The Getty, Los Angeles; Universal Studios Hollywood, Los Angeles\\\\nLunch: -\\\\nDinner: -\\\\nAccommodation: -\\'\\nJSON:\\n'" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test_data[23]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "d0532d2d", + "metadata": {}, + "outputs": [], + "source": [ + "test_data = test_data[500:]" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "18c25420", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1000" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(test_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "c5210734", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Thread8线程结束!\n", + "Thread7线程结束!\n", + "Thread6线程结束!\n", + "Thread5线程结束!\n", + "Thread4线程结束!\n", + "Thread3线程结束!\n", + "Thread2线程结束!\n", + "Thread1线程结束!\n", + "Thread0线程结束!\n", + "开始线程: Thread0\n", + "开始线程: Thread1\n", + "开始线程: Thread2\n", + "开始线程: Thread3\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "开始线程: Thread4\n", + "开始线程: Thread5\n", + "开始线程: Thread6\n", + "开始线程: Thread7\n", + "开始线程: Thread8\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 0%| | 0/100 [00:00\n", + "API error: \n", + "API error: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n", + " 51%|█████ | 51/100 [25:11<29:10, 35.73s/it]\u001b[A" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "API error: \n", + "API error: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 61%|██████ | 61/100 [25:14<17:43, 27.27s/it]\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 67%|██████▋ | 67/100 [25:18<19:30, 35.48s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "API error: \n", + "API error: \n", + "API error: \n", + "API error: \n", + "API error: \n", + "API error: \n", + "API error: \n", + "API error: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n", + "\n", + "\n", + " 62%|██████▏ | 62/100 [25:54<19:43, 31.15s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 60%|██████ | 60/100 [25:54<28:01, 42.04s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 46%|████▌ | 46/100 [25:58<34:14, 38.04s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 52%|█████▏ | 52/100 [25:59<31:26, 39.31s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 68%|██████▊ | 68/100 [25:59<19:54, 37.31s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 46%|████▌ | 46/100 [26:06<33:28, 37.20s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 45%|████▌ | 45/100 [26:09<39:03, 42.61s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 34%|███▍ | 34/100 [26:11<1:01:07, 55.57s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 38%|███▊ | 38/100 [26:13<52:32, 50.84s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 45%|████▌ | 45/100 [26:17<38:33, 42.06s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 61%|██████ | 61/100 [26:28<25:42, 39.56s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 63%|██████▎ | 63/100 [26:30<20:01, 32.48s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 53%|█████▎ | 53/100 [26:30<28:55, 36.92s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 69%|██████▉ | 69/100 [26:39<19:41, 38.12s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 46%|████▌ | 46/100 [26:47<34:46, 38.64s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 62%|██████▏ | 62/100 [27:00<23:38, 37.34s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 54%|█████▍ | 54/100 [27:03<27:30, 35.88s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 35%|███▌ | 35/100 [27:05<59:32, 54.96s/it] \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 47%|████▋ | 47/100 [27:09<38:31, 43.62s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + " 39%|███▉ | 39/100 [27:13<54:21, 53.46s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 48%|████▊ | 48/100 [27:20<34:54, 40.28s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 46%|████▌ | 46/100 [27:21<45:06, 50.11s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 70%|███████ | 70/100 [27:22<19:40, 39.35s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 47%|████▋ | 47/100 [27:28<34:37, 39.21s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 63%|██████▎ | 63/100 [27:28<21:15, 34.48s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 55%|█████▌ | 55/100 [27:42<27:36, 36.81s/it]\u001b[A\n", + "\n", + " 48%|████▊ | 48/100 [27:48<36:37, 42.26s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 71%|███████ | 71/100 [27:49<17:18, 35.81s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 64%|██████▍ | 64/100 [27:53<18:57, 31.58s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 47%|████▋ | 47/100 [27:54<40:10, 45.48s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 36%|███▌ | 36/100 [27:56<57:31, 53.93s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 48%|████▊ | 48/100 [28:02<32:46, 37.82s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 49%|████▉ | 49/100 [28:05<35:20, 41.58s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 40%|████ | 40/100 [28:09<54:20, 54.34s/it]\u001b[A\u001b[A\u001b[A" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "API error: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n", + " 56%|█████▌ | 56/100 [28:16<26:21, 35.94s/it]\u001b[A\n", + "\n", + " 49%|████▉ | 49/100 [28:28<35:21, 41.60s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 48%|████▊ | 48/100 [28:29<36:50, 42.52s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 72%|███████▏ | 72/100 [28:34<18:01, 38.62s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 37%|███▋ | 37/100 [28:39<53:07, 50.59s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 65%|██████▌ | 65/100 [28:45<22:01, 37.75s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 64%|██████▍ | 64/100 [28:51<39:00, 65.02s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 57%|█████▋ | 57/100 [28:52<25:44, 35.91s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 65%|██████▌ | 65/100 [29:10<29:56, 51.32s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 41%|████ | 41/100 [29:11<55:41, 56.64s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 49%|████▉ | 49/100 [29:12<36:19, 42.73s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 50%|█████ | 50/100 [29:15<36:06, 43.34s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 73%|███████▎ | 73/100 [29:17<17:53, 39.76s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 50%|█████ | 50/100 [29:20<31:25, 37.71s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 66%|██████▌ | 66/100 [29:23<21:28, 37.90s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 58%|█████▊ | 58/100 [29:34<26:19, 37.60s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 66%|██████▌ | 66/100 [29:35<24:39, 43.52s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 38%|███▊ | 38/100 [29:36<54:15, 52.51s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 74%|███████▍ | 74/100 [29:46<15:50, 36.56s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 51%|█████ | 51/100 [29:54<29:50, 36.53s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 67%|██████▋ | 67/100 [29:56<19:55, 36.23s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 50%|█████ | 50/100 [29:56<35:56, 43.12s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 67%|██████▋ | 67/100 [30:01<20:59, 38.17s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + " 43%|████▎ | 43/100 [30:10<41:49, 44.03s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 39%|███▉ | 39/100 [30:15<49:14, 48.43s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 52%|█████▏ | 52/100 [30:17<33:55, 42.41s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 68%|██████▊ | 68/100 [30:26<18:18, 34.32s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 75%|███████▌ | 75/100 [30:36<16:55, 40.62s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 69%|██████▉ | 69/100 [30:39<15:14, 29.50s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 52%|█████▏ | 52/100 [30:39<31:14, 39.05s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 69%|██████▉ | 69/100 [30:45<15:19, 29.66s/it]\u001b[A\u001b[A\n", + " 61%|██████ | 61/100 [30:53<18:45, 28.85s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 52%|█████▏ | 52/100 [30:59<30:18, 37.88s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 70%|███████ | 70/100 [31:04<13:11, 26.38s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 44%|████▍ | 44/100 [31:11<45:09, 48.39s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 70%|███████ | 70/100 [31:13<15:16, 30.56s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 53%|█████▎ | 53/100 [31:14<36:40, 46.82s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 62%|██████▏ | 62/100 [31:14<17:09, 27.10s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 53%|█████▎ | 53/100 [31:15<29:50, 38.10s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 40%|████ | 40/100 [31:20<53:23, 53.38s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 71%|███████ | 71/100 [31:23<11:38, 24.10s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 77%|███████▋ | 77/100 [31:31<13:05, 34.15s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 63%|██████▎ | 63/100 [31:39<16:23, 26.58s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 53%|█████▎ | 53/100 [31:40<30:14, 38.61s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 72%|███████▏ | 72/100 [31:41<11:07, 23.85s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 72%|███████▏ | 72/100 [31:51<11:46, 25.25s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 54%|█████▍ | 54/100 [31:58<35:20, 46.10s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 73%|███████▎ | 73/100 [32:08<10:21, 23.02s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 41%|████ | 41/100 [32:16<53:28, 54.38s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 55%|█████▌ | 55/100 [32:17<25:55, 34.58s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 56%|█████▌ | 56/100 [32:18<26:11, 35.71s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 78%|███████▊ | 78/100 [32:19<14:02, 38.28s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 64%|██████▍ | 64/100 [32:21<18:22, 30.63s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 74%|███████▍ | 74/100 [32:25<09:06, 21.03s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 55%|█████▌ | 55/100 [32:28<30:53, 41.19s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 74%|███████▍ | 74/100 [32:29<10:19, 23.83s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 75%|███████▌ | 75/100 [32:43<08:26, 20.24s/it]\u001b[A\u001b[A\u001b[A\n", + " 66%|██████▌ | 66/100 [32:47<13:00, 22.94s/it]\u001b[A\n", + "\n", + " 58%|█████▊ | 58/100 [32:49<19:24, 27.73s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 56%|█████▌ | 56/100 [32:53<25:47, 35.17s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 79%|███████▉ | 79/100 [32:53<12:58, 37.09s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 56%|█████▌ | 56/100 [32:56<27:22, 37.33s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 76%|███████▌ | 76/100 [33:17<09:46, 24.45s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 75%|███████▌ | 75/100 [33:20<12:17, 29.50s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 57%|█████▋ | 57/100 [33:21<23:44, 33.13s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 48%|████▊ | 48/100 [33:25<35:01, 40.41s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 42%|████▏ | 42/100 [33:28<57:37, 59.60s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 57%|█████▋ | 57/100 [33:30<25:57, 36.23s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 67%|██████▋ | 67/100 [33:32<15:33, 28.28s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 80%|████████ | 80/100 [33:36<12:56, 38.82s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 68%|██████▊ | 68/100 [33:42<12:34, 23.57s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 77%|███████▋ | 77/100 [33:47<09:59, 26.07s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 76%|███████▌ | 76/100 [33:50<11:50, 29.62s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 58%|█████▊ | 58/100 [33:52<22:39, 32.37s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 49%|████▉ | 49/100 [33:52<31:19, 36.85s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + " 59%|█████▉ | 59/100 [33:52<24:16, 35.52s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 78%|███████▊ | 78/100 [34:12<09:21, 25.54s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 50%|█████ | 50/100 [34:12<26:46, 32.14s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 58%|█████▊ | 58/100 [34:13<26:55, 38.46s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 81%|████████ | 81/100 [34:17<12:28, 39.39s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 77%|███████▋ | 77/100 [34:19<11:21, 29.63s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 51%|█████ | 51/100 [34:26<22:16, 27.27s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + " 61%|██████ | 61/100 [34:28<18:39, 28.70s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 79%|███████▉ | 79/100 [34:29<08:05, 23.14s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 69%|██████▉ | 69/100 [34:32<15:49, 30.63s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 44%|████▍ | 44/100 [34:38<44:01, 47.17s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 59%|█████▉ | 59/100 [34:48<26:52, 39.33s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 52%|█████▏ | 52/100 [34:49<20:45, 25.96s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 80%|████████ | 80/100 [34:50<07:27, 22.36s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 78%|███████▊ | 78/100 [34:59<11:47, 32.16s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 70%|███████ | 70/100 [35:08<15:58, 31.96s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 46%|████▌ | 46/100 [35:08<29:14, 32.49s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 59%|█████▉ | 59/100 [35:10<25:42, 37.62s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 60%|██████ | 60/100 [35:13<23:22, 35.07s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 59%|█████▉ | 59/100 [35:18<31:41, 46.38s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 62%|██████▏ | 62/100 [35:19<21:14, 33.55s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + " 81%|████████ | 81/100 [35:27<08:30, 26.85s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 79%|███████▉ | 79/100 [35:31<11:13, 32.07s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 83%|████████▎ | 83/100 [35:32<11:01, 38.90s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 54%|█████▍ | 54/100 [35:41<19:28, 25.39s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 47%|████▋ | 47/100 [35:42<28:52, 32.70s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 82%|████████▏ | 82/100 [35:43<07:06, 23.68s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 60%|██████ | 60/100 [35:44<26:49, 40.23s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 71%|███████ | 71/100 [35:48<16:33, 34.28s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 83%|████████▎ | 83/100 [36:03<06:23, 22.55s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 63%|██████▎ | 63/100 [36:06<22:35, 36.65s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 62%|██████▏ | 62/100 [36:07<19:24, 30.64s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 80%|████████ | 80/100 [36:07<11:03, 33.19s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 55%|█████▌ | 55/100 [36:14<20:40, 27.56s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 48%|████▊ | 48/100 [36:16<28:46, 33.20s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 61%|██████ | 61/100 [36:21<25:30, 39.24s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 84%|████████▍ | 84/100 [36:27<06:07, 22.98s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 63%|██████▎ | 63/100 [36:28<15:57, 25.87s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 72%|███████▏ | 72/100 [36:38<18:05, 38.76s/it]\u001b[A\n", + "\n", + "\n", + " 85%|████████▌ | 85/100 [36:47<05:29, 21.94s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 85%|████████▌ | 85/100 [36:47<09:16, 37.08s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 63%|██████▎ | 63/100 [36:57<22:30, 36.49s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 57%|█████▋ | 57/100 [36:59<17:40, 24.66s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + " 64%|██████▍ | 64/100 [37:03<25:03, 41.76s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 81%|████████ | 81/100 [37:04<12:40, 40.02s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 73%|███████▎ | 73/100 [37:06<16:06, 35.79s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 62%|██████▏ | 62/100 [37:09<26:25, 41.72s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 86%|████████▌ | 86/100 [37:11<05:18, 22.73s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 58%|█████▊ | 58/100 [37:18<16:09, 23.07s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 64%|██████▍ | 64/100 [37:19<18:44, 31.25s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 64%|██████▍ | 64/100 [37:22<19:54, 33.19s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 86%|████████▌ | 86/100 [37:26<08:47, 37.65s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 87%|████████▋ | 87/100 [37:30<04:40, 21.56s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 59%|█████▉ | 59/100 [37:31<13:36, 19.91s/it]\u001b[A\u001b[A\u001b[A\n", + " 74%|███████▍ | 74/100 [37:36<14:45, 34.04s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 63%|██████▎ | 63/100 [37:37<23:11, 37.60s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 65%|██████▌ | 65/100 [37:43<24:06, 41.32s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 50%|█████ | 50/100 [37:44<31:11, 37.42s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 60%|██████ | 60/100 [37:49<12:55, 19.38s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 87%|████████▋ | 87/100 [37:50<07:17, 33.69s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 65%|██████▌ | 65/100 [37:51<18:33, 31.81s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 65%|██████▌ | 65/100 [38:02<19:47, 33.92s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 75%|███████▌ | 75/100 [38:04<13:26, 32.27s/it]\u001b[A\n", + "\n", + "\n", + " 88%|████████▊ | 88/100 [38:06<05:09, 25.75s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 64%|██████▍ | 64/100 [38:06<21:03, 35.09s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 83%|████████▎ | 83/100 [38:10<10:36, 37.46s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 88%|████████▊ | 88/100 [38:19<06:26, 32.20s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 90%|█████████ | 90/100 [38:24<03:01, 18.18s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 66%|██████▌ | 66/100 [38:28<24:01, 42.40s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + " 62%|██████▏ | 62/100 [38:29<12:45, 20.14s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 51%|█████ | 51/100 [38:31<32:46, 40.13s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 65%|██████▌ | 65/100 [38:35<19:25, 33.30s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 91%|█████████ | 91/100 [38:43<02:44, 18.31s/it]\u001b[A\n", + "\n", + "\n", + "\n", + " 84%|████████▍ | 84/100 [38:44<09:41, 36.37s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 66%|██████▌ | 66/100 [38:48<20:57, 36.98s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 89%|████████▉ | 89/100 [38:52<05:56, 32.43s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 63%|██████▎ | 63/100 [39:02<14:40, 23.79s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 92%|█████████▏| 92/100 [39:07<02:37, 19.70s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 85%|████████▌ | 85/100 [39:14<08:37, 34.51s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 93%|█████████▎| 93/100 [39:19<02:03, 17.65s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 77%|███████▋ | 77/100 [39:26<14:23, 37.53s/it]\u001b[A\n", + "\n", + "\n", + " 64%|██████▍ | 64/100 [39:27<14:32, 24.24s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 90%|█████████ | 90/100 [39:29<05:39, 33.92s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 94%|█████████▍| 94/100 [39:35<01:43, 17.32s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 86%|████████▌ | 86/100 [39:43<07:38, 32.77s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 53%|█████▎ | 53/100 [39:44<29:25, 37.56s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 67%|██████▋ | 67/100 [39:49<29:13, 53.13s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 95%|█████████▌| 95/100 [39:55<01:30, 18.02s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 92%|█████████▏| 92/100 [40:01<03:24, 25.59s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 65%|██████▌ | 65/100 [40:01<15:52, 27.22s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 68%|██████▊ | 68/100 [40:04<19:50, 37.19s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 68%|██████▊ | 68/100 [40:05<22:37, 42.44s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 78%|███████▊ | 78/100 [40:14<14:56, 40.77s/it]\u001b[A\n", + "\n", + "\n", + " 96%|█████████▌| 96/100 [40:17<01:16, 19.23s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 67%|██████▋ | 67/100 [40:19<22:30, 40.92s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 54%|█████▍ | 54/100 [40:21<28:44, 37.49s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 87%|████████▋ | 87/100 [40:27<07:52, 36.35s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 97%|█████████▋| 97/100 [40:38<00:59, 19.78s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 67%|██████▋ | 67/100 [40:40<13:02, 23.71s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 70%|███████ | 70/100 [40:42<15:42, 31.43s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 69%|██████▉ | 69/100 [40:45<19:45, 38.25s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 68%|██████▊ | 68/100 [40:49<29:22, 55.07s/it]\u001b[A\u001b[A\n", + " 79%|███████▉ | 79/100 [40:51<13:51, 39.58s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 68%|██████▊ | 68/100 [40:53<20:40, 38.77s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 88%|████████▊ | 88/100 [40:57<06:51, 34.27s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 68%|██████▊ | 68/100 [40:59<11:54, 22.33s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 55%|█████▌ | 55/100 [41:01<28:34, 38.10s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 94%|█████████▍| 94/100 [41:08<02:52, 28.81s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 98%|█████████▊| 98/100 [41:15<00:49, 24.68s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 80%|████████ | 80/100 [41:17<11:48, 35.41s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 71%|███████ | 71/100 [41:17<15:39, 32.41s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 69%|██████▉ | 69/100 [41:21<11:30, 22.27s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + " 69%|██████▉ | 69/100 [41:27<25:58, 50.27s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 89%|████████▉ | 89/100 [41:31<06:15, 34.13s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 95%|█████████▌| 95/100 [41:34<02:19, 27.98s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 99%|█████████▉| 99/100 [41:41<00:25, 25.15s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 70%|███████ | 70/100 [41:43<11:09, 22.30s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 56%|█████▌ | 56/100 [41:45<29:16, 39.91s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "100%|██████████| 100/100 [41:57<00:00, 25.18s/it][A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 70%|███████ | 70/100 [41:57<22:13, 44.44s/it]\u001b[A\u001b[A\n", + " 81%|████████ | 81/100 [41:58<11:46, 37.19s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 96%|█████████▌| 96/100 [42:01<01:51, 27.82s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 90%|█████████ | 90/100 [42:03<05:35, 33.53s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 71%|███████ | 71/100 [42:07<10:55, 22.60s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 70%|███████ | 70/100 [42:12<19:21, 38.70s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 72%|███████▏ | 72/100 [42:22<16:25, 35.20s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 82%|████████▏ | 82/100 [42:25<10:11, 33.95s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 97%|█████████▋| 97/100 [42:28<01:22, 27.60s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 72%|███████▏ | 72/100 [42:32<10:52, 23.29s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 92%|█████████▏| 92/100 [42:34<03:21, 25.18s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 57%|█████▋ | 57/100 [42:38<31:24, 43.82s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 71%|███████ | 71/100 [42:43<17:35, 36.41s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 72%|███████▏ | 72/100 [42:48<22:17, 47.76s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 73%|███████▎ | 73/100 [42:57<10:44, 23.87s/it]\u001b[A\u001b[A\u001b[A\n", + " 83%|████████▎ | 83/100 [42:58<09:34, 33.80s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 98%|█████████▊| 98/100 [43:02<00:59, 29.53s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 93%|█████████▎| 93/100 [43:04<03:05, 26.49s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 73%|███████▎ | 73/100 [43:05<16:55, 37.63s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 72%|███████▏ | 72/100 [43:06<15:07, 32.40s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 71%|███████ | 71/100 [43:11<25:40, 53.13s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 58%|█████▊ | 58/100 [43:17<29:42, 42.45s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 74%|███████▍ | 74/100 [43:20<10:16, 23.73s/it]\u001b[A\u001b[A\u001b[A\n", + " 84%|████████▍ | 84/100 [43:23<08:18, 31.14s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 73%|███████▎ | 73/100 [43:32<13:47, 30.66s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 99%|█████████▉| 99/100 [43:38<00:31, 31.30s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 75%|███████▌ | 75/100 [43:42<09:41, 23.26s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + " 72%|███████▏ | 72/100 [43:48<22:28, 48.18s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 94%|█████████▍| 94/100 [43:49<03:08, 31.39s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 59%|█████▉ | 59/100 [43:51<27:21, 40.03s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 85%|████████▌ | 85/100 [43:52<07:37, 30.50s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 73%|███████▎ | 73/100 [43:53<23:36, 52.46s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 74%|███████▍ | 74/100 [43:58<18:15, 42.14s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 76%|███████▌ | 76/100 [44:05<09:12, 23.01s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "100%|██████████| 100/100 [44:08<00:00, 26.48s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 74%|███████▍ | 74/100 [44:13<14:36, 33.72s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 77%|███████▋ | 77/100 [44:19<07:51, 20.49s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 95%|█████████▌| 95/100 [44:33<02:53, 34.73s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 74%|███████▍ | 74/100 [44:38<21:44, 50.18s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 78%|███████▊ | 78/100 [44:42<07:43, 21.09s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 60%|██████ | 60/100 [44:44<29:07, 43.68s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 86%|████████▌ | 86/100 [44:44<08:39, 37.12s/it]\u001b[A\n", + "\n", + " 73%|███████▎ | 73/100 [44:46<23:01, 51.15s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 75%|███████▌ | 75/100 [44:48<14:10, 34.01s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 75%|███████▌ | 75/100 [45:00<19:57, 47.91s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 79%|███████▉ | 79/100 [45:05<07:37, 21.78s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 80%|████████ | 80/100 [45:23<06:50, 20.52s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + " 74%|███████▍ | 74/100 [45:24<20:29, 47.29s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 76%|███████▌ | 76/100 [45:24<13:55, 34.81s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 75%|███████▌ | 75/100 [45:28<20:52, 50.11s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 87%|████████▋ | 87/100 [45:28<08:29, 39.16s/it]\u001b[A\n", + "\n", + "\n", + "\n", + " 96%|█████████▌| 96/100 [45:32<02:46, 41.60s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 76%|███████▌ | 76/100 [45:34<17:35, 43.97s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 77%|███████▋ | 77/100 [45:57<13:06, 34.18s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 81%|████████ | 81/100 [45:58<07:54, 25.00s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 97%|█████████▋| 97/100 [46:01<01:53, 37.85s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 75%|███████▌ | 75/100 [46:05<18:55, 45.41s/it]\u001b[A\u001b[A\n", + " 88%|████████▊ | 88/100 [46:09<07:53, 39.50s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 61%|██████ | 61/100 [46:11<36:47, 56.61s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 76%|███████▌ | 76/100 [46:18<20:04, 50.19s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 82%|████████▏ | 82/100 [46:21<07:16, 24.26s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 77%|███████▋ | 77/100 [46:29<18:01, 47.04s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 89%|████████▉ | 89/100 [46:35<06:32, 35.68s/it]\u001b[A\n", + "\n", + "\n", + " 83%|████████▎ | 83/100 [46:41<06:30, 22.94s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 98%|█████████▊| 98/100 [46:43<01:18, 39.24s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 64%|██████▍ | 64/100 [46:46<18:52, 31.46s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 76%|███████▌ | 76/100 [46:49<18:01, 45.05s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 78%|███████▊ | 78/100 [46:53<14:53, 40.62s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 77%|███████▋ | 77/100 [46:56<17:55, 46.75s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 90%|█████████ | 90/100 [47:05<05:39, 33.97s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 78%|███████▊ | 78/100 [47:07<16:15, 44.33s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 84%|████████▍ | 84/100 [47:08<06:28, 24.29s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + " 99%|█████████▉| 99/100 [47:15<00:37, 37.04s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 79%|███████▉ | 79/100 [47:18<12:36, 36.02s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 85%|████████▌ | 85/100 [47:28<05:45, 23.06s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + " 77%|███████▋ | 77/100 [47:37<17:36, 45.92s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 65%|██████▌ | 65/100 [47:39<21:01, 36.04s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 91%|█████████ | 91/100 [47:42<05:13, 34.81s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 80%|████████ | 80/100 [47:48<11:23, 34.16s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 78%|███████▊ | 78/100 [47:49<17:45, 48.41s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 86%|████████▌ | 86/100 [48:00<05:59, 25.68s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "100%|██████████| 100/100 [48:04<00:00, 28.84s/it]\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 79%|███████▉ | 79/100 [48:06<17:05, 48.83s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 92%|█████████▏| 92/100 [48:12<04:25, 33.17s/it]\u001b[A\n", + "\n", + "\n", + " 87%|████████▋ | 87/100 [48:18<05:02, 23.25s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 81%|████████ | 81/100 [48:24<10:59, 34.73s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 66%|██████▌ | 66/100 [48:30<22:22, 39.48s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 93%|█████████▎| 93/100 [48:41<03:44, 32.11s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 80%|████████ | 80/100 [48:45<15:15, 45.78s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 88%|████████▊ | 88/100 [48:48<05:04, 25.39s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 82%|████████▏ | 82/100 [48:58<10:20, 34.45s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 78%|███████▊ | 78/100 [49:01<20:58, 57.19s/it]\u001b[A\u001b[A\n", + " 94%|█████████▍| 94/100 [49:20<03:24, 34.07s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 79%|███████▉ | 79/100 [49:22<21:33, 61.58s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 89%|████████▉ | 89/100 [49:24<05:14, 28.57s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 67%|██████▋ | 67/100 [49:28<24:10, 43.95s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 83%|████████▎ | 83/100 [49:33<09:47, 34.56s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 90%|█████████ | 90/100 [49:44<04:20, 26.03s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + " 79%|███████▉ | 79/100 [49:46<18:44, 53.55s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 81%|████████ | 81/100 [49:53<16:38, 52.54s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 95%|█████████▌| 95/100 [49:56<02:53, 34.67s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 84%|████████▍ | 84/100 [50:14<09:44, 36.53s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 80%|████████ | 80/100 [50:17<19:52, 59.63s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 96%|█████████▌| 96/100 [50:20<02:06, 31.59s/it]\u001b[A\n", + "\n", + "\n", + " 91%|█████████ | 91/100 [50:23<04:29, 29.99s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 68%|██████▊ | 68/100 [50:26<25:24, 47.63s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 80%|████████ | 80/100 [50:29<16:46, 50.33s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 82%|████████▏ | 82/100 [50:29<14:17, 47.62s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 92%|█████████▏| 92/100 [50:47<03:43, 27.99s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 86%|████████▌ | 86/100 [50:52<06:39, 28.53s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 97%|█████████▋| 97/100 [50:53<01:35, 31.93s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 81%|████████ | 81/100 [50:54<16:44, 52.89s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 83%|████████▎ | 83/100 [50:54<11:34, 40.83s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 93%|█████████▎| 93/100 [51:04<02:54, 24.86s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + " 81%|████████ | 81/100 [51:10<15:05, 47.65s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 69%|██████▉ | 69/100 [51:11<24:19, 47.10s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 84%|████████▍ | 84/100 [51:20<09:43, 36.49s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + " 98%|█████████▊| 98/100 [51:21<01:01, 30.68s/it]\u001b[A\n", + "\n", + "\n", + " 94%|█████████▍| 94/100 [51:28<02:26, 24.45s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 87%|████████▋ | 87/100 [51:33<06:52, 31.71s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 85%|████████▌ | 85/100 [51:43<08:04, 32.28s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 95%|█████████▌| 95/100 [51:55<02:06, 25.29s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + " 82%|████████▏ | 82/100 [51:58<14:19, 47.75s/it]\u001b[A\u001b[A\n", + " 99%|█████████▉| 99/100 [51:59<00:32, 32.88s/it]\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 87%|████████▋ | 87/100 [52:04<04:47, 22.14s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 83%|████████▎ | 83/100 [52:08<12:56, 45.66s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 71%|███████ | 71/100 [52:09<18:53, 39.07s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 96%|█████████▌| 96/100 [52:14<01:33, 23.36s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 88%|████████▊ | 88/100 [52:20<07:06, 35.54s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 88%|████████▊ | 88/100 [52:24<04:20, 21.75s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "100%|██████████| 100/100 [52:36<00:00, 31.56s/it]\u001b[A\n", + "\n", + "\n", + "\n", + " 97%|█████████▋| 97/100 [52:40<01:12, 24.04s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 89%|████████▉ | 89/100 [52:49<04:09, 22.66s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 84%|████████▍ | 84/100 [52:50<11:54, 44.63s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 83%|████████▎ | 83/100 [52:59<14:39, 51.74s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + " 98%|█████████▊| 98/100 [53:01<00:46, 23.26s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 72%|███████▏ | 72/100 [53:03<19:57, 42.76s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 90%|█████████ | 90/100 [53:10<03:39, 21.99s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 89%|████████▉ | 89/100 [53:14<07:27, 40.72s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + " 99%|█████████▉| 99/100 [53:30<00:24, 24.89s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + " 84%|████████▍ | 84/100 [53:39<12:52, 48.26s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 85%|████████▌ | 85/100 [53:39<11:30, 46.00s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 91%|█████████ | 91/100 [53:41<03:40, 24.55s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 73%|███████▎ | 73/100 [53:42<18:48, 41.80s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 90%|█████████ | 90/100 [53:45<06:17, 37.76s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "100%|██████████| 100/100 [54:00<00:00, 32.40s/it]\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 92%|█████████▏| 92/100 [54:09<03:24, 25.62s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 93%|█████████▎| 93/100 [54:34<02:58, 25.46s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 74%|███████▍ | 74/100 [54:34<19:16, 44.50s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 92%|█████████▏| 92/100 [54:36<04:18, 32.34s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 86%|████████▌ | 86/100 [54:42<09:25, 40.37s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 86%|████████▌ | 86/100 [54:42<11:47, 50.55s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 94%|█████████▍| 94/100 [54:49<02:13, 22.30s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 95%|█████████▌| 95/100 [55:05<01:42, 20.47s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 93%|█████████▎| 93/100 [55:15<03:57, 33.97s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 87%|████████▋ | 87/100 [55:22<10:19, 47.65s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 87%|████████▋ | 87/100 [55:25<08:54, 41.15s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 96%|█████████▌| 96/100 [55:25<01:21, 20.45s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 75%|███████▌ | 75/100 [55:35<20:23, 48.94s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 97%|█████████▋| 97/100 [55:40<00:56, 18.82s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 94%|█████████▍| 94/100 [55:49<03:23, 33.96s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 88%|████████▊ | 88/100 [55:55<07:37, 38.08s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 98%|█████████▊| 98/100 [56:00<00:38, 19.16s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 76%|███████▌ | 76/100 [56:13<18:23, 45.96s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 99%|█████████▉| 99/100 [56:17<00:18, 18.47s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 88%|████████▊ | 88/100 [56:22<10:11, 50.99s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "100%|██████████| 100/100 [56:37<00:00, 33.97s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 95%|█████████▌| 95/100 [56:41<03:14, 38.98s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 89%|████████▉ | 89/100 [56:44<07:31, 41.04s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 89%|████████▉ | 89/100 [56:56<08:29, 46.28s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 78%|███████▊ | 78/100 [57:07<13:45, 37.53s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 90%|█████████ | 90/100 [57:17<06:27, 38.79s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 96%|█████████▌| 96/100 [57:33<02:50, 42.51s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 79%|███████▉ | 79/100 [57:40<12:42, 36.29s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 90%|█████████ | 90/100 [57:50<08:03, 48.38s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 91%|█████████ | 91/100 [57:53<05:42, 38.10s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 97%|█████████▋| 97/100 [58:05<01:58, 39.53s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 80%|████████ | 80/100 [58:24<12:47, 38.38s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 92%|█████████▏| 92/100 [58:27<04:55, 36.92s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 91%|█████████ | 91/100 [58:29<06:50, 45.62s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 98%|█████████▊| 98/100 [58:56<01:25, 42.76s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 92%|█████████▏| 92/100 [59:02<05:35, 41.97s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 93%|█████████▎| 93/100 [59:04<04:18, 36.96s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 81%|████████ | 81/100 [59:14<13:06, 41.38s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 94%|█████████▍| 94/100 [59:42<03:43, 37.24s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 99%|█████████▉| 99/100 [59:49<00:45, 45.83s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 95%|█████████▌| 95/100 [59:52<02:18, 27.73s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 82%|████████▏ | 82/100 [59:57<12:32, 41.80s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 95%|█████████▌| 95/100 [1:00:25<03:15, 39.11s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "100%|██████████| 100/100 [1:00:28<00:00, 36.28s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 83%|████████▎ | 83/100 [1:00:50<12:43, 44.90s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 97%|█████████▋| 97/100 [1:01:06<01:33, 31.08s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 96%|█████████▌| 96/100 [1:01:08<02:40, 40.12s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 98%|█████████▊| 98/100 [1:01:39<01:02, 31.44s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 84%|████████▍ | 84/100 [1:01:43<12:38, 47.38s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 98%|█████████▊| 98/100 [1:02:08<01:11, 35.51s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 85%|████████▌ | 85/100 [1:02:25<11:27, 45.85s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + " 99%|█████████▉| 99/100 [1:02:38<00:37, 37.41s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + " 99%|█████████▉| 99/100 [1:02:52<00:37, 37.61s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 86%|████████▌ | 86/100 [1:03:08<10:31, 45.10s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "100%|██████████| 100/100 [1:03:30<00:00, 38.11s/it]\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "100%|██████████| 100/100 [1:03:42<00:00, 38.23s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 87%|████████▋ | 87/100 [1:04:11<10:54, 50.34s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 88%|████████▊ | 88/100 [1:05:09<10:30, 52.51s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 89%|████████▉ | 89/100 [1:05:56<09:18, 50.78s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 90%|█████████ | 90/100 [1:06:43<08:17, 49.79s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 92%|█████████▏| 92/100 [1:07:54<05:45, 43.15s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 93%|█████████▎| 93/100 [1:08:29<04:47, 41.13s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 95%|█████████▌| 95/100 [1:09:19<02:52, 34.47s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 96%|█████████▌| 96/100 [1:09:55<02:19, 34.90s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 97%|█████████▋| 97/100 [1:10:44<01:54, 38.32s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 98%|█████████▊| 98/100 [1:11:22<01:16, 38.26s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 99%|█████████▉| 99/100 [1:11:52<00:35, 35.85s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "100%|██████████| 100/100 [1:12:56<00:00, 43.76s/it]\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "主进程结束!\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], + "source": [ + "import threading\n", + "import time\n", + "import warnings\n", + "\n", + "warnings.filterwarnings('ignore')\n", + "\n", + "total_price = 0\n", + "save_file_name = f\"../data/api_request/{set_type}_{model_name}_{method}\"\n", + "# model = 'gpt-3.5-turbo-1106'\n", + "model = 'gpt-4-1106-preview'\n", + "\n", + "class gpt4RequestThread(threading.Thread):\n", + " def __init__(self,name,data,save_file):\n", + " threading.Thread.__init__(self)\n", + " self.name = name\n", + " self.data = data\n", + " self.save_file = save_file\n", + " def run(self):\n", + " print (\"开始线程:\",self.name)\n", + " # 获得锁,成功获得锁定后返回 True\n", + " # 可选的timeout参数不填时将一直阻塞直到获得锁定\n", + " # 否则超时后将返回 False\n", + " request(self.data,self.save_file)\n", + "# threadLock.acquire()\n", + "# total_price += price \n", + "# # 释放锁\n", + "# threadLock.release()\n", + " def __del__(self):\n", + " print (self.name+\"线程结束!\")\n", + " \n", + " \n", + "def request(data,save_file):\n", + " global total_price\n", + " for idx,prompt in enumerate(tqdm(data)):\n", + " if prompt==\"\":\n", + " with open(save_file,'a+',encoding='utf-8') as f:\n", + " assistant_output = str(idx)\n", + " f.write(assistant_output+'\\n')\n", + " continue\n", + " results, _, price = prompt_chatgpt(\"You are a helpful assistant.\",index=idx,save_path=save_file,user_input=prompt,model_name=model,temperature=1)\n", + " threadLock.acquire()\n", + " total_price += price\n", + " threadLock.release()\n", + " \n", + " \n", + "threadLock = threading.Lock()\n", + "threads = []\n", + "# 创建新线程\n", + "thread_number = 10\n", + "for idx in range(thread_number):\n", + " if idx < (thread_number-1):\n", + " thread = gpt4RequestThread(\"Thread\"+str(idx),test_data[idx*(len(test_data)//thread_number):(idx+1)*(len(test_data)//thread_number)],save_file_name+\"_t{}.txt\".format(idx).format(idx))\n", + " else:\n", + " thread = gpt4RequestThread(\"Thread\"+str(idx),test_data[idx*(len(test_data)//thread_number):],save_file_name+\"_t{}.txt\".format(idx))\n", + " thread.start()\n", + " threads.append(thread)\n", + "for t in threads:\n", + " t.join()\n", + "print(\"主进程结束!\")\n", + "\n", + "combination_data = []\n", + "for idx in range(thread_number):\n", + " lines = open(save_file_name+\"_t{}.txt\".format(idx),'r',encoding='utf-8').read().strip().split('\\n')\n", + " combination_data+=lines\n", + "with open(save_file_name+\".txt\",'w',encoding='utf-8') as f:\n", + " for line in combination_data:\n", + " f.write(line+'\\n')" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "f674ae2e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "86.08119999999997" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "total_price" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "id": "83f67a0a", + "metadata": {}, + "outputs": [], + "source": [ + "combination_data = []\n", + "for idx in range(thread_number):\n", + " lines = open(save_file_name+\"_t{}.txt\".format(idx),'r',encoding='utf-8').read().strip().split('\\n')\n", + " combination_data+=lines\n", + "with open(save_file_name+\".txt\",'w',encoding='utf-8') as f:\n", + " for line in combination_data:\n", + " f.write(line+'\\n')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "be1e2e08", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.16" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/utils/api_request.ipynb b/utils/api_request.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..a203c7c7b19df87b6794256976aba2d5b6d8bba8 --- /dev/null +++ b/utils/api_request.ipynb @@ -0,0 +1,1281 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "id": "cfe36fe1", + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import openai\n", + "import math\n", + "import sys\n", + "import time\n", + "from tqdm import tqdm\n", + "from typing import Iterable, List, TypeVar\n", + "from retrying import retry\n", + "import func_timeout\n", + "from func_timeout import func_set_timeout\n", + "\n", + "\n", + "\n", + "T = TypeVar('T')\n", + "KEY_INDEX = 0\n", + "KEY_POOL = [\n", + " \"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\"\n", + "]# your key pool\n", + "openai.api_key = KEY_POOL[0]\n", + "os.environ[\"http_proxy\"] = \"http://127.0.0.1:7890\"\n", + "os.environ[\"https_proxy\"] = \"http://127.0.0.1:7890\"\n", + "openai.proxy = \"http://127.0.0.1:7890\"\n", + "\n", + "\n", + "class TimeoutError(Exception):\n", + " pass\n", + "\n", + "def timeout_handler(signum, frame):\n", + " raise TimeoutError(\"The function took too long to run\")\n", + "\n", + "@func_set_timeout(120)\n", + "def limited_execution_time(func,model,prompt,temp,max_tokens=2048, default=None,**kwargs):\n", + " try:\n", + " if 'gpt-3.5-turbo' in model or 'gpt-4' in model:\n", + " result = func(\n", + " model=model,\n", + " messages=prompt,\n", + " temperature=temp\n", + " )\n", + " else:\n", + " result = func(model=model,prompt=prompt,max_tokens=max_tokens,**kwargs)\n", + " except func_timeout.exceptions.FunctionTimedOut:\n", + " return None\n", + " # raise any other exception\n", + " except Exception as e:\n", + " raise e\n", + " return result\n", + "\n", + "\n", + "def batchify(data: Iterable[T], batch_size: int) -> Iterable[List[T]]:\n", + " # function copied from allenai/real-toxicity-prompts\n", + " assert batch_size > 0\n", + " batch = []\n", + " for item in data:\n", + " # Yield next batch\n", + " if len(batch) == batch_size:\n", + " yield batch\n", + " batch = []\n", + " batch.append(item)\n", + "\n", + " # Yield last un-filled batch\n", + " if len(batch) != 0:\n", + " yield batch\n", + "\n", + "\n", + "def openai_unit_price(model_name,token_type=\"prompt\"):\n", + " if 'gpt-4' in model_name:\n", + " if token_type==\"prompt\":\n", + " unit = 0.03\n", + " elif token_type==\"completion\":\n", + " unit = 0.06\n", + " else:\n", + " raise ValueError(\"Unknown type\")\n", + " elif 'gpt-3.5-turbo' in model_name:\n", + " unit = 0.002\n", + " elif 'davinci' in model_name:\n", + " unit = 0.02\n", + " elif 'curie' in model_name:\n", + " unit = 0.002\n", + " elif 'babbage' in model_name:\n", + " unit = 0.0005\n", + " elif 'ada' in model_name:\n", + " unit = 0.0004\n", + " else:\n", + " unit = -1\n", + " return unit\n", + "\n", + "\n", + "def calc_cost_w_tokens(total_tokens: int, model_name: str):\n", + " unit = openai_unit_price(model_name,token_type=\"completion\")\n", + " return round(unit * total_tokens / 1000, 4)\n", + "\n", + "\n", + "def calc_cost_w_prompt(total_tokens: int, model_name: str):\n", + " # 750 words == 1000 tokens\n", + " unit = openai_unit_price(model_name)\n", + " return round(unit * total_tokens / 1000, 4)\n", + "\n", + "\n", + "def get_perplexity(logprobs):\n", + " assert len(logprobs) > 0, logprobs\n", + " return math.exp(-sum(logprobs)/len(logprobs))\n", + "\n", + "\n", + "def keep_logprobs_before_eos(tokens, logprobs):\n", + " keep_tokens = []\n", + " keep_logprobs = []\n", + " start_flag = False\n", + " for tok, lp in zip(tokens, logprobs):\n", + " if start_flag:\n", + " if tok == \"<|endoftext|>\":\n", + " break\n", + " else:\n", + " keep_tokens.append(tok)\n", + " keep_logprobs.append(lp)\n", + " else:\n", + " if tok != '\\n':\n", + " start_flag = True\n", + " if tok != \"<|endoftext>\":\n", + " keep_tokens.append(tok)\n", + " keep_logprobs.append(lp)\n", + "\n", + " return keep_tokens, keep_logprobs\n", + "\n", + "\n", + "def catch_openai_api_error(prompt_input: list):\n", + " global KEY_INDEX\n", + " error = sys.exc_info()[0]\n", + " if error == openai.error.InvalidRequestError:\n", + " # something is wrong: e.g. prompt too long\n", + " print(f\"InvalidRequestError\\nPrompt:\\n\\n{prompt_input}\\n\\n\")\n", + " assert False\n", + " elif error == openai.error.RateLimitError:\n", + " KEY_INDEX = (KEY_INDEX + 1) % len(KEY_POOL)\n", + " openai.api_key = KEY_POOL[KEY_INDEX]\n", + " print(\"RateLimitError, now change the key. Current key is \", openai.api_key)\n", + " elif error == openai.error.APIError:\n", + " KEY_INDEX = (KEY_INDEX + 1) % len(KEY_POOL)\n", + " openai.api_key = KEY_POOL[KEY_INDEX]\n", + " print(\"APIError, now change the key. Current key is \", openai.api_key)\n", + " elif error == openai.error.AuthenticationError:\n", + " KEY_INDEX = (KEY_INDEX + 1) % len(KEY_POOL)\n", + " openai.api_key = KEY_POOL[KEY_INDEX]\n", + " print(\"AuthenticationError, now change the key. Current key is \", openai.api_key)\n", + " elif error == TimeoutError:\n", + " KEY_INDEX = (KEY_INDEX + 1) % len(KEY_POOL)\n", + " openai.api_key = KEY_POOL[KEY_INDEX]\n", + " print(\"TimeoutError, retrying...\")\n", + " else:\n", + " print(\"API error:\", error)\n", + "\n", + "\n", + "def prompt_gpt3(prompt_input: list, save_path,model_name='text-davinci-003', max_tokens=2048,\n", + " clean=False, batch_size=16, verbose=False, **kwargs):\n", + " # return: output_list, money_cost\n", + "\n", + " def request_api(prompts: list):\n", + " # prompts: list or str\n", + "\n", + " total_tokens = 0\n", + " results = []\n", + " for batch in tqdm(batchify(prompt_input, batch_size), total=len(prompt_input) // batch_size):\n", + " batch_response = request_api(batch)\n", + " total_tokens += batch_response['usage']['total_tokens']\n", + " if not clean:\n", + " results += batch_response['choices']\n", + " else:\n", + " results += [choice['text'] for choice in batch_response['choices']]\n", + " with open(save_path,'w+',encoding='utf-8') as f:\n", + " for content in results:\n", + " content = content.replace(\"\\n\",\" \")\n", + " f.write(content+'\\n')\n", + " return results, calc_cost_w_tokens(total_tokens, model_name)\n", + "\n", + "\n", + "\n", + "def prompt_chatgpt(system_input, user_input, temperature,save_path,index,history=[], model_name='gpt-3.5-turbo'):\n", + " '''\n", + " :param system_input: \"You are a helpful assistant/translator.\"\n", + " :param user_input: you texts here\n", + " :param history: ends with assistant output.\n", + " e.g. [{\"role\": \"system\", \"content\": xxx},\n", + " {\"role\": \"user\": \"content\": xxx},\n", + " {\"role\": \"assistant\", \"content\": \"xxx\"}]\n", + " return: assistant_output, (updated) history, money cost\n", + " '''\n", + " if len(history) == 0:\n", + " history = [{\"role\": \"system\", \"content\": system_input}]\n", + " history.append({\"role\": \"user\", \"content\": user_input})\n", + " while True:\n", + " try:\n", + " completion = limited_execution_time(openai.ChatCompletion.create,\n", + " model=model_name,\n", + " prompt=history,\n", + " temp=temperature)\n", + " if completion is None:\n", + " raise TimeoutError\n", + " break\n", + " except:\n", + " catch_openai_api_error(user_input)\n", + " time.sleep(1)\n", + "\n", + " assistant_output = completion['choices'][0]['message']['content']\n", + " history.append({\"role\": \"assistant\", \"content\": assistant_output})\n", + " total_prompt_tokens = completion['usage']['prompt_tokens']\n", + " total_completion_tokens = completion['usage']['completion_tokens']\n", + " with open(save_path,'a+',encoding='utf-8') as f:\n", + " assistant_output = str(index)+\"\\t\"+\"\\t\".join(x for x in assistant_output.split(\"\\n\"))\n", + " f.write(assistant_output+'\\n')\n", + " return assistant_output, history, calc_cost_w_tokens(total_prompt_tokens, model_name) + calc_cost_w_prompt(total_completion_tokens, model_name)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "d2bd29e3", + "metadata": {}, + "outputs": [], + "source": [ + "import json\n", + "def load_line_json_data(filename):\n", + " data = []\n", + " with open(filename, 'r', encoding='utf-8') as f:\n", + " for line in f.read().strip().split('\\n'):\n", + " unit = json.loads(line)\n", + " data.append(unit)\n", + " return data\n", + "\n", + "def build_generation_prompt(data):\n", + " prompt_list = []\n", + " prefix = \"\"\"Given a JSON, please help me generate a natural language query. In the JSON, 'org' denotes the departure city. When 'days' exceeds 3, 'visiting_city_number' specifies the number of cities to be covered in the destination state. Please disregard the 'level' attribute. Here are three examples.\n", + "\n", + "-----EXAMPLE 1-----\n", + "JSON:\n", + "{\"org\": \"Gulfport\", \"dest\": \"Charlotte\", \"days\": 3, \"visiting_city_number\": 1, \"date\": [\"2022-03-05\", \"2022-03-06\", \"2022-03-07\"], \"people_number\": 1, \"local_constraint\": {\"house rule\": null, \"cuisine\": null, \"room type\": null}, \"budget\": 1800, \"query\": null, \"level\": \"easy\"}\n", + "QUERY:\n", + "Please design a travel plan departing Gulfport and heading to Charlotte for 3 days, spanning March 5th to March 7th, 2022, with a budget of $1800.\n", + "-----EXAMPLE 2-----\n", + "JSON:\n", + "{\"org\": \"Omaha\", \"dest\": \"Colorado\", \"days\": 5, \"visiting_city_number\": 2, \"date\": [\"2022-03-14\", \"2022-03-15\", \"2022-03-16\", \"2022-03-17\", \"2022-03-18\"], \"people_number\": 7, \"local_constraint\": {\"house rule\": \"pets\", \"cuisine\": null, \"room type\": null}, \"budget\": 35300, \"query\": null, \"level\": \"middle\"}\n", + "QUERY:\n", + "Could you provide a 5-day travel itinerary for a group of 7, starting in Omaha and exploring 2 cities in Colorado between March 14th and March 18th, 2022? Our budget is set at $35,300, and it's essential that our accommodations be pet-friendly since we're bringing our pets.\n", + "-----EXAMPLE 3-----\n", + "JSON:\n", + "{\"org\": \"Indianapolis\", \"dest\": \"Georgia\", \"days\": 7, \"visiting_city_number\": 3, \"date\": [\"2022-03-01\", \"2022-03-02\", \"2022-03-03\", \"2022-03-04\", \"2022-03-05\", \"2022-03-06\", \"2022-03-07\"], \"people_number\": 2, \"local_constraint\": {\"flight time\": null, \"house rule\": null, \"cuisine\": [\"Bakery\", \"Indian\"], \"room type\": \"entire room\", \"transportation\": \"self driving\"}, \"budget\": 6200, \"query\": null, \"level\": \"hard\"}\n", + "QUERY:\n", + "I'm looking for a week-long travel itinerary for 2 individuals. Our journey starts in Indianapolis, and we intend to explore 3 distinct cities in Georgia from March 1st to March 7th, 2022. Our budget is capped at $6,200. For our accommodations, we'd prefer an entire room. We plan to navigate our journey via self-driving. In terms of food, we're enthusiasts of bakery items, and we'd also appreciate indulging in genuine Indian cuisine.\n", + "\n", + "JSON\\n\"\"\"\n", + " for unit in data:\n", + " unit = str(unit).replace(\", 'level': 'easy'\",'').replace(\", 'level': 'middle'\",'').replace(\", 'level': 'hard'\",'')\n", + " prompt = prefix + str(unit) + \"\\nQUERY\\n\"\n", + " prompt_list.append(prompt)\n", + " return prompt_list\n", + "\n", + "def build_plan_format_conversion_prompt(set_type='dev',model_name='gpt4',method='direct'):\n", + " prompt_list = []\n", + " prefix = \"\"\"Please assist me in extracting valid information from a given natural language text and reconstructing it in JSON format, as demonstrated in the following example. If transportation details indicate a journey from one city to another (e.g., from A to B), the 'current_city' should be updated to the destination city (in this case, B). Use a ';' to separate different attractions, with each attraction formatted as 'Name, City'. If there's information about transportation, ensure that the 'current_city' aligns with the destination mentioned in the transportation details (i.e., the current city should follow the format 'from A to B'). Also, ensure that all flight numbers and costs are followed by a colon (i.e., 'Flight Number:' and 'Cost:'), consistent with the provided example. Each item should include ['day', 'current_city', 'transportation', 'breakfast', 'attraction', 'lunch', 'dinner', 'accommodation']. Replace non-specific information like 'eat at home/on the road' with '-'. Additionally, delete any '$' symbols.\n", + "-----EXAMPLE-----\n", + " [{{\n", + " \"days\": 1,\n", + " \"current_city\": \"from Dallas to Peoria\",\n", + " \"transportation\": \"Flight Number: 4044830, from Dallas to Peoria, Departure Time: 13:10, Arrival Time: 15:01\",\n", + " \"breakfast\": \"-\",\n", + " \"attraction\": \"Peoria Historical Society, Peoria;Peoria Holocaust Memorial, Peoria;\",\n", + " \"lunch\": \"-\",\n", + " \"dinner\": \"Tandoor Ka Zaika, Peoria\",\n", + " \"accommodation\": \"Bushwick Music Mansion, Peoria\"\n", + " }},\n", + " {{\n", + " \"days\": 2,\n", + " \"current_city\": \"Peoria\",\n", + " \"transportation\": \"-\",\n", + " \"breakfast\": \"Tandoor Ka Zaika, Peoria\",\n", + " \"attraction\": \"Peoria Riverfront Park, Peoria;The Peoria PlayHouse, Peoria;Glen Oak Park, Peoria;\",\n", + " \"lunch\": \"Cafe Hashtag LoL, Peoria\",\n", + " \"dinner\": \"The Curzon Room - Maidens Hotel, Peoria\",\n", + " \"accommodation\": \"Bushwick Music Mansion, Peoria\"\n", + " }},\n", + " {{\n", + " \"days\": 3,\n", + " \"current_city\": \"from Peoria to Dallas\",\n", + " \"transportation\": \"Flight Number: 4045904, from Peoria to Dallas, Departure Time: 07:09, Arrival Time: 09:20\",\n", + " \"breakfast\": \"-\",\n", + " \"attraction\": \"-\",\n", + " \"lunch\": \"-\",\n", + " \"dinner\": \"-\",\n", + " \"accommodation\": \"-\"\n", + " }}]\n", + "-----EXAMPLE END-----\n", + "\"\"\"\n", + " directory = f'/home/xj/toolAugEnv/code/toolConstraint/data/final_data/{set_type}'\n", + " query_data_list = load_line_json_data(os.path.join(directory, 'query/query.jsonl'))\n", + " idx_number_list = [i for i in range(1,len(query_data_list)+1)]\n", + " for idx in tqdm(idx_number_list):\n", + " generated_plan = json.load(open(f'/home/xj/toolAugEnv/code/toolConstraint/results/{set_type}/plan_{idx}.json'))\n", + " if method != 'tool-use':\n", + " suffix = '_collected'\n", + " else:\n", + " suffix = ''\n", + " if generated_plan[-1][f'{model_name}_{method}{suffix}_info_results'] and generated_plan[-1][f'{model_name}_{method}{suffix}_info_results'] != \"\":\n", + " prompt = prefix + \"Text:\\n\"+generated_plan[-1][f'{model_name}_{method}{suffix}_info_results'].split('Total Costs:')[0]+\"\\nJSON:\\n\"\n", + " else:\n", + " prompt = \"\"\n", + " prompt_list.append(prompt)\n", + " return prompt_list\n", + "\n", + "def build_rewritten_query_prompt(file_path):\n", + " prompt_list = []\n", + " prefix = f\"\"\"Given a JSON, please help me rewrite the query based on the 'reset_budget'. Note that you should change any singular form of accommodation requirement to plural due to the uncertainty regarding the actual number of rooms needed.\n", + "-----EXAMPLE-----\n", + "JSON:\n", + "{{\"org\": \"Detroit\", \"dest\": \"Norfolk\", \"days\": 3, \"visiting_city_number\": 1, \"date\": [\"2022-03-05\", \"2022-03-06\", \"2022-03-07\"], \"people_number\": 3, \"local_constraint\": {{\"house rule\": \"smoking\", \"cuisine\": null, \"room type\": \"entire room\", \"transportation\": \"no flight\"}}, \"budget\": 4700, \"query\": \"Could you devise a 3-day travel itinerary for a group of 3, departing from Detroit and heading to Norfolk from March 5th to March 7th, 2022? Our budget is set at $4,700. Our accommodation must allow smoking and should ideally be an entire room. We would prefer to avoid any flights for our transportation.\", \"level\": \"hard\", \"reset_budget\": 2700}}\n", + "Rewritten Query:\n", + "Could you devise a 3-day travel itinerary for a group of 3, departing from Detroit and heading to Norfolk from March 5th to March 7th, 2022? Our budget is set at $2,700. We require accommodations that allow smoking and should ideally be entire rooms. We would prefer to avoid any flights for our transportation.\n", + "-----EXAMPLE END-----\n", + "\n", + "JSON:\n", + "\"\"\"\n", + " query_list = load_line_json_data(file_path)\n", + " for unit in query_list:\n", + " prompt = prefix + str(unit) + '\\n' + 'Rewritten Query:\\n'\n", + " prompt_list.append(prompt)\n", + " \n", + " return prompt_list" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "861c6651", + "metadata": {}, + "outputs": [], + "source": [ + "query_data = load_line_json_data('../data/query/lrz.jsonl')\n", + "test_data = build_generation_prompt(query_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "c6a6665a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Given a JSON, please help me rewrite the query based on the 'reset_budget'. Note that you should change any singular form of accommodation requirement to plural due to the uncertainty regarding the actual number of rooms needed.\n", + "-----EXAMPLE-----\n", + "JSON:\n", + "{\"org\": \"Detroit\", \"dest\": \"Norfolk\", \"days\": 3, \"visiting_city_number\": 1, \"date\": [\"2022-03-05\", \"2022-03-06\", \"2022-03-07\"], \"people_number\": 3, \"local_constraint\": {\"house rule\": \"smoking\", \"cuisine\": null, \"room type\": \"entire room\", \"transportation\": \"no flight\"}, \"budget\": 4700, \"query\": \"Could you devise a 3-day travel itinerary for a group of 3, departing from Detroit and heading to Norfolk from March 5th to March 7th, 2022? Our budget is set at $4,700. Our accommodation must allow smoking and should ideally be an entire room. We would prefer to avoid any flights for our transportation.\", \"level\": \"hard\", \"reset_budget\": 2700}\n", + "Rewritten Query:\n", + "Could you devise a 3-day travel itinerary for a group of 3, departing from Detroit and heading to Norfolk from March 5th to March 7th, 2022? Our budget is set at $2,700. We require accommodations that allow smoking and should ideally be entire rooms. We would prefer to avoid any flights for our transportation.\n", + "-----EXAMPLE END-----\n", + "\n", + "JSON:\n", + "{'org': 'Detroit', 'dest': 'Norfolk', 'days': 3, 'visiting_city_number': 1, 'date': ['2022-03-05', '2022-03-06', '2022-03-07'], 'people_number': 3, 'local_constraint': {'house rule': 'smoking', 'cuisine': None, 'room type': 'entire room', 'transportation': 'no flight'}, 'budget': 4700, 'query': 'Could you devise a 3-day travel itinerary for a group of 3, departing from Detroit and heading to Norfolk from March 5th to March 7th, 2022? Our budget is set at $4,700. Our accommodation must allow smoking and should ideally be an entire room. We would prefer to avoid any flights for our transportation.', 'level': 'hard', 'reset_budget': 2800}\n", + "Rewritten Query:\n", + "\n" + ] + } + ], + "source": [ + "test_data = build_rewritten_query_prompt('../data/query/all_reset_budget.jsonl')\n", + "print(test_data[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "ff602d51", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Please assist me in extracting valid information from a given natural language text and reconstructing it in JSON format, as demonstrated in the following example. If transportation details indicate a journey from one city to another (e.g., from A to B), the 'current_city' should be updated to the destination city (in this case, B). Use a ';' to separate different attractions, with each attraction formatted as 'Name, City'. If there's information about transportation, ensure that the 'current_city' aligns with the destination mentioned in the transportation details (i.e., the current city should follow the format 'from A to B'). Also, ensure that all flight numbers and costs are followed by a colon (i.e., 'Flight Number:' and 'Cost:'), consistent with the provided example. Each item should include ['day', 'current_city', 'transportation', 'breakfast', 'attraction', 'lunch', 'dinner', 'accommodation']. Replace non-specific information like 'eat at home/on the road' with '-'. Additionally, delete any '$' symbols.\n", + "-----EXAMPLE-----\n", + " [{{\n", + " \"days\": 1,\n", + " \"current_city\": \"from Dallas to Peoria\",\n", + " \"transportation\": \"Flight Number: 4044830, from Dallas to Peoria, Departure Time: 13:10, Arrival Time: 15:01\",\n", + " \"breakfast\": \"-\",\n", + " \"attraction\": \"Peoria Historical Society, Peoria;Peoria Holocaust Memorial, Peoria;\",\n", + " \"lunch\": \"-\",\n", + " \"dinner\": \"Tandoor Ka Zaika, Peoria\",\n", + " \"accommodation\": \"Bushwick Music Mansion, Peoria\"\n", + " }},\n", + " {{\n", + " \"days\": 2,\n", + " \"current_city\": \"Peoria\",\n", + " \"transportation\": \"-\",\n", + " \"breakfast\": \"Tandoor Ka Zaika, Peoria\",\n", + " \"attraction\": \"Peoria Riverfront Park, Peoria;The Peoria PlayHouse, Peoria;Glen Oak Park, Peoria;\",\n", + " \"lunch\": \"Cafe Hashtag LoL, Peoria\",\n", + " \"dinner\": \"The Curzon Room - Maidens Hotel, Peoria\",\n", + " \"accommodation\": \"Bushwick Music Mansion, Peoria\"\n", + " }},\n", + " {{\n", + " \"days\": 3,\n", + " \"current_city\": \"from Peoria to Dallas\",\n", + " \"transportation\": \"Flight Number: 4045904, from Peoria to Dallas, Departure Time: 07:09, Arrival Time: 09:20\",\n", + " \"breakfast\": \"-\",\n", + " \"attraction\": \"-\",\n", + " \"lunch\": \"-\",\n", + " \"dinner\": \"-\",\n", + " \"accommodation\": \"-\"\n", + " }}]\n", + "-----EXAMPLE END-----\n", + "\n", + "Text:\n", + "Travel Plan:\n", + "\n", + "Day 1: March 20, 2022\n", + "Current City: from North Platte to Grand Junction\n", + "Transportation: Self-driving, from North Platte to Grand Junction, Duration: 7 hours 27 mins, Distance: 809 km, Cost: $40\n", + "Breakfast: -\n", + "Attraction: Visit Grand Junction Mural, Walter Walker State Wildlife Area\n", + "Lunch: Ate at \"Austin's BBQ and Oyster Bar\", Average Cost: $15\n", + "Dinner: Enjoyed food at \"2 Dog\", Average Cost: $29\n", + "Accommodation: Stayed at \"New Renovated Studio~Prime Upper East~W/D\", Price: $1174, Room Type: Entire home/apt\n", + "\n", + "Day 2: March 21, 2022\n", + "Current City: Grand Junction\n", + "Transportation: -\n", + "Breakfast: Had breakfast at \"Cocoa Tree\", Average Cost: $68\n", + "Attraction: Visited Museum of the West, Eureka! McConnell Science Museum, Bananas Fun Park\n", + "Lunch: Ate at \"Pind Balluchi\", Average Cost: $17\n", + "Dinner: Savored dinner at \"Punjab Da Pind\", Average Cost: $52\n", + "Accommodation: Continued stay at \"New Renovated Studio~Prime Upper East~W/D\"\n", + "\n", + "Day 3: March 22, 2022\n", + "Current City: from Grand Junction to Durango\n", + "Transportation: Self-driving, from Grand Junction to Durango, Duration: 3 hours 34 mins, Distance: 269 km, Cost: $13\n", + "Breakfast: -\n", + "Attraction: Visited Durango & Silverton Narrow Gauge Railroad, Animas Museum\n", + "Lunch: Had a meal at \"Samurai Japanese Cuisine & Sushi Bar\", Average Cost: $67\n", + "Dinner: Ate at \"Dub's High on the Hog\", Average Cost: $98\n", + "Accommodation: Stayed at \"BEAUTIFUL 2 BED APARTMENT IN WILLIAMSBURG, BROOLYN\", Price: $1022, Room Type: Entire home/apt\n", + "\n", + "Day 4: March 23, 2022\n", + "Current City: Durango\n", + "Transportation: -\n", + "Breakfast: Started the day at \"Asian Haus\", Average Cost: $26\n", + "Attraction: Explored Durango Adventures and Zipline Tours, Whitewater Park\n", + "Lunch: Had a meal at \"Mohit di Hatti\", Average Cost: $74\n", + "Dinner: Ate a delightful dinner at \"The Mashal\", Average Cost: $85\n", + "Accommodation: Continued stay at \"BEAUTIFUL 2 BED APARTMENT IN WILLIAMSBURG, BROOLYN\"\n", + "\n", + "Day 5: March 24, 2022\n", + "Current City: from Durango to Colorado Springs\n", + "Transportation: Self-driving, from Durango to Colorado Springs, Duration: 5 hours 27 mins, Distance: 504 km, Cost: $25\n", + "Breakfast: -\n", + "Attraction: Visited Garden of the Gods, Cheyenne Mountain Zoo\n", + "Lunch: Ate at \"Raglan Road Irish Pub and Restaurant\", Average Cost: $97\n", + "Dinner: Enjoyed food at \"Derby\", Average Cost: $67\n", + "Accommodation: Stayed at \"Charming and Bright 1 bdr apartment in Noho\", Price: $112, Room Type: Entire home/apt\n", + "\n", + "Day 6: March 25, 2022\n", + "Current City: Colorado Springs\n", + "Transportation: -\n", + "Breakfast: Had breakfast at \"Club Tokyo - Best Western Skycity Hotel\", Average Cost: $64\n", + "Attraction: Explored Cave of the Winds Mountain Park, The Broadmoor Seven Falls\n", + "Lunch: Had a meal at \"Deepak Rasoi\", Average Cost: $60\n", + "Dinner: Savored dinner at \"GoGourmet\", Average Cost: $66\n", + "Accommodation: Continued stay at \"Charming and Bright 1 bdr apartment in Noho\"\n", + "\n", + "Day 7: March 26, 2022\n", + "Current City: from Colorado Springs to North Platte\n", + "Transportation: Self-driving, from Colorado Springs to North Platte, Duration: 4 hours 40 mins, Distance: 536 km, Cost: $26\n", + "Breakfast: -\n", + "Attraction: -\n", + "Lunch: -\n", + "Dinner: -\n", + "Accommodation: -\n", + "\n", + "\n", + "JSON:\n", + "\n" + ] + } + ], + "source": [ + "print(test_data[134])" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "dd22437c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "we will need to travel from Elmira to Punta Gorda on March 12th, 2022. Since there is a flight available, we will take Flight Number F3575578, departing at 20:07 and arriving at 23:07. The cost for this flight is $321 per person.\n", + "\n", + "Upon arrival in Punta Gorda, we will need accommodations that allow smoking. We can stay at the Cozy Cat Cave in Bushwick for $661 for the night. This will be our first day in Punta Gorda.\n", + "\n", + "On March 13th, we will explore the attractions in Punta Gorda, such as Laishley Park, Ponce De Leon Park, and Charlotte Harbor Preserve State Park. For meals, we can try Pho Bac for lunch and Villa Gargano for dinner.\n", + "\n", + "On March 14th, there is no flight available from Punta Gorda to Tallahassee, so we will need to self-drive. The cost for self-driving is $29, and the distance is 597 km. Upon arrival in Tallahassee, we can stay at the Comfortable one bedroom with patio for $73 for the night.\n", + "\n", + "On March 15th, we can visit the Tallahassee Museum and Alfred B. Maclay Gardens State Park. For meals, we can try Indian Grill Room for lunch and Barrett Junction Cafe for dinner.\n", + "\n", + "On March 16th, there is no flight available from Tallahassee to Jacksonville, so we will need to self-drive. The cost for self-driving is $13, and the distance is 267 km. Upon arrival in Jacksonville, we can stay at the Huge Loft - Heart of Williamsburg for $518 for the night.\n", + "\n", + "On March 17th, we can explore the attractions in Jacksonville, such as Jacksonville Zoo and Gardens and MOSH (Museum Of Science & History). For meals, we can try Pirates' House Restaurant for lunch and Goose Feathers Cafe and Bakery for dinner.\n", + "\n", + "On March 18th, there is no flight available from Jacksonville to Elmira, so we will need to self-drive. The cost for self-driving is $79, and the distance is 1,590 km. Upon arrival in Elmira, our journey will come to an end.\n", + "\n", + "This travel plan aligns with the budget of $6,800 and includes accommodations that allow smoking and a diverse range of cuisines.\n" + ] + } + ], + "source": [ + "print(\"we will need to travel from Elmira to Punta Gorda on March 12th, 2022. Since there is a flight available, we will take Flight Number F3575578, departing at 20:07 and arriving at 23:07. The cost for this flight is $321 per person.\\n\\nUpon arrival in Punta Gorda, we will need accommodations that allow smoking. We can stay at the Cozy Cat Cave in Bushwick for $661 for the night. This will be our first day in Punta Gorda.\\n\\nOn March 13th, we will explore the attractions in Punta Gorda, such as Laishley Park, Ponce De Leon Park, and Charlotte Harbor Preserve State Park. For meals, we can try Pho Bac for lunch and Villa Gargano for dinner.\\n\\nOn March 14th, there is no flight available from Punta Gorda to Tallahassee, so we will need to self-drive. The cost for self-driving is $29, and the distance is 597 km. Upon arrival in Tallahassee, we can stay at the Comfortable one bedroom with patio for $73 for the night.\\n\\nOn March 15th, we can visit the Tallahassee Museum and Alfred B. Maclay Gardens State Park. For meals, we can try Indian Grill Room for lunch and Barrett Junction Cafe for dinner.\\n\\nOn March 16th, there is no flight available from Tallahassee to Jacksonville, so we will need to self-drive. The cost for self-driving is $13, and the distance is 267 km. Upon arrival in Jacksonville, we can stay at the Huge Loft - Heart of Williamsburg for $518 for the night.\\n\\nOn March 17th, we can explore the attractions in Jacksonville, such as Jacksonville Zoo and Gardens and MOSH (Museum Of Science & History). For meals, we can try Pirates' House Restaurant for lunch and Goose Feathers Cafe and Bakery for dinner.\\n\\nOn March 18th, there is no flight available from Jacksonville to Elmira, so we will need to self-drive. The cost for self-driving is $79, and the distance is 1,590 km. Upon arrival in Elmira, our journey will come to an end.\\n\\nThis travel plan aligns with the budget of $6,800 and includes accommodations that allow smoking and a diverse range of cuisines.\")" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "16dc3f1b", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████| 180/180 [00:00<00:00, 291.91it/s]\n" + ] + } + ], + "source": [ + "model_name = ['gpt-3.5-turbo-11062','gpt-4-1106-preview2','greedy_search','mistral-7B-32K','gemini2','mixtral','ChatGLM3-6B-32K2'][-3]\n", + "method = ['direct','cot','react','reflexion','tool-use'][-1]\n", + "set_type = ['dev','test'][0]\n", + "test_data = build_plan_format_conversion_prompt(set_type=set_type,model_name=model_name,method=method)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "c81fb403", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.4111111111111111\n" + ] + } + ], + "source": [ + "# test_data = test_data[:28]\n", + "cnt = 0\n", + "for unit in test_data:\n", + " if unit == \"\":\n", + " cnt += 1\n", + "print(1.0*(len(test_data)-cnt)/len(test_data))" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "d0547a5d", + "metadata": {}, + "outputs": [], + "source": [ + "cnt+=1" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "8d71843e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\"\n", + "Thought 1: The task is to create a 7-day travel plan starting in Philadelphia and visiting 3 different cities in Virginia within a budget of $1,800. The cities to visit in Virginia are Richmond, Petersburg, and Charlottesville. The travel dates are from March 15th to March 21st, 2022. To begin, I need to consider the modes of transportation between these cities, as well as the costs associated with each mode. According to the provided information, there are flights, self-driving options, and taxis available for some of the routes. I also need to account for accommodations, meals, and attractions in each city. Given the budget constraint, it's important to choose cost-effective options for transportation and lodging. I will start by planning the transportation from Philadelphia to the first city in Virginia, which is Richmond.\n", + "Action 1: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Philadelphia\", \"transportation\": \"self-driving, from Philadelphia to Richmond, duration: 4 hours 2 mins, distance: 407 km, cost: 20\", \"breakfast\": \"-\", \"attraction\": \"-\", \"lunch\": \"-\", \"dinner\": \"-\", \"accommodation\": \"-\"}]\n", + "Observation 1: Cost: The cost of your plan is 20 dollars.\n", + "Thought 2: The self-driving option from Philadelphia to Richmond is within budget, costing $20. Now, I need to find accommodation in Richmond for the first night. I will look for an option that is affordable but comfortable, considering the overall budget. After securing accommodation, I will plan for meals and attractions in Richmond for the following day. I will choose attractions that do not have an entry fee listed to keep costs down and select moderately priced restaurants for meals. Once the plan for Richmond is set, I will proceed to plan the transportation to Petersburg, followed by accommodation, meals, and attractions there. The same process will be applied for the trip from Petersburg to Charlottesville and then back to Philadelphia.\n", + "Action 2: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Cool Summer Vibes UWS Pent House w/ rooftop, Richmond\"}]\n", + "Observation 2: Cost: The cost of your plan is 602.0 dollars.\n", + "Thought 3: The accommodation at \"Cool Summer Vibes UWS Pent House w/ rooftop\" in Richmond is too expensive, costing $602, which significantly impacts the budget. I need to find a more affordable accommodation option to ensure the budget is maintained throughout the 7-day trip. I will look for a different accommodation that is less expensive and re-calculate the cost for the first day in Richmond, including the chosen attractions and meals.\n", + "Action 3: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 3: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 4: The accommodation \"Gorgeous studio in midtown Manhattan\" in Richmond is still too expensive at $316. I need to select a more budget-friendly accommodation to keep the overall trip within the $1,800 budget. I will choose another accommodation option with a lower price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 4: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"2 bd 2 bathroom Apartment in Upper East Side, Richmond\"}]\n", + "Observation 4: Cost: The cost of your plan is 389.0 dollars.\n", + "Thought 5: The accommodation \"2 bd 2 bathroom Apartment in Upper East Side\" in Richmond is still not affordable enough at $389. I will need to select the most budget-friendly accommodation option available in the provided data to ensure the trip remains within the $1,800 budget. I will choose another accommodation option with the lowest price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 5: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Inviting Brooklyn Studio, Richmond\"}]\n", + "Observation 5: Cost: The cost of your plan is 502.0 dollars.\n", + "Thought 6: The accommodation \"Inviting Brooklyn Studio\" in Richmond is still too expensive at $502. I will need to select the most budget-friendly accommodation option available in the provided data to ensure the trip remains within the $1,800 budget. I will choose another accommodation option with the lowest price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 6: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Large cozy bedroom close to Times Square 43D4, Richmond\"}]\n", + "Observation 6: Cost: The cost of your plan is 507.0 dollars.\n", + "Thought 7: The accommodation \"Large cozy bedroom close to Times Square 43D4\" in Richmond is still too expensive at $507. I will need to select the most budget-friendly accommodation option available in the provided data to ensure the trip remains within the $1,800 budget. I will choose another accommodation option with the lowest price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 7: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 7: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 8: It seems there was a mistake in repeating the same accommodation that was previously too expensive. I need to find the most affordable accommodation option in Richmond to ensure the trip remains within the $1,800 budget. I will review the accommodations list again and select the one with the lowest price, then re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 8: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"12 East 86th St full furnished, Richmond\"}]\n", + "Observation 8: Cost: The cost of your plan is 555.0 dollars.\n", + "Thought 9: The accommodation \"12 East 86th St full furnished\" in Richmond is also too expensive at $555. I need to find the most affordable accommodation option in Richmond to ensure the trip remains within the $1,800 budget. I will review the accommodations list again and select the one with the lowest price, then re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 9: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 9: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 10: It appears there was a repeated mistake in selecting accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 10: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 10: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 11: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 11: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Inviting Brooklyn Studio, Richmond\"}]\n", + "Observation 11: Cost: The cost of your plan is 502.0 dollars.\n", + "Thought 12: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 12: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"12 East 86th St full furnished, Richmond\"}]\n", + "Observation 12: Cost: The cost of your plan is 555.0 dollars.\n", + "Thought 13: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 13: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Large cozy bedroom close to Times Square 43D4, Richmond\"}]\n", + "Observation 13: Cost: The cost of your plan is 507.0 dollars.\n", + "Thought 14: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 14: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 14: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 15: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 15: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"2 bd 2 bathroom Apartment in Upper East Side, Richmond\"}]\n", + "Observation 15: Cost: The cost of your plan is 389.0 dollars.\n", + "Thought 16: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 16: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Large suite with private bathroom (15 min to city), Richmond\"}]\n", + "Observation 16: Cost: The cost of your plan is 868.0 dollars.\n", + "Thought 17: The accommodation \"Large suite with private bathroom (15 min to city)\" in Richmond is also too expensive at $868. I need to find the most affordable accommodation option in Richmond to ensure the trip remains within the $1,800 budget. I will review the accommodations list again and select the one with the lowest price, then re-calculate the cost for the first day in Richmond, including the same attractions and meals.\n", + "Action 17: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 17: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 18: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 18: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"12 East 86th St full furnished, Richmond\"}]\n", + "Observation 18: Cost: The cost of your plan is 555.0 dollars.\n", + "Thought 19: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 19: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 19: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 20: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 20: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Inviting Brooklyn Studio, Richmond\"}]\n", + "Observation 20: Cost: The cost of your plan is 502.0 dollars.\n", + "Thought 21: I apologize for the confusion in the previous steps. It seems I have been repeatedly selecting accommodations that are too expensive and not suitable for the budget. I will now carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 21: CostEnquiry[{\"people_number\": 1, \"day\": 1, \"current_city\": \"Richmond\", \"transportation\": \"-\", \"breakfast\": \"-\", \"attraction\": \"Virginia Museum of Fine Arts, Richmond\", \"lunch\": \"Guang Zhou Chinese Restaurant, Richmond\", \"dinner\": \"Sandpiper Restaurant & Lounge, Richmond\", \"accommodation\": \"Gorgeous studio in midtown Manhattan, Richmond\"}]\n", + "Observation 21: Cost: The cost of your plan is 316.0 dollars.\n", + "Thought 22: I apologize for the confusion in the previous steps. It seems I have been repeatedly selecting accommodations that are too expensive and not suitable for the budget. I will now carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Action 22: I apologize for the repeated errors in the previous steps. It seems I have been mistakenly selecting accommodations that are too expensive and not suitable for the budget. To correct this, I will now carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\n", + "Observation 22: Action None is not supported.\",\n" + ] + } + ], + "source": [ + "print(\"\"\"\"\\nThought 1: The task is to create a 7-day travel plan starting in Philadelphia and visiting 3 different cities in Virginia within a budget of $1,800. The cities to visit in Virginia are Richmond, Petersburg, and Charlottesville. The travel dates are from March 15th to March 21st, 2022. To begin, I need to consider the modes of transportation between these cities, as well as the costs associated with each mode. According to the provided information, there are flights, self-driving options, and taxis available for some of the routes. I also need to account for accommodations, meals, and attractions in each city. Given the budget constraint, it's important to choose cost-effective options for transportation and lodging. I will start by planning the transportation from Philadelphia to the first city in Virginia, which is Richmond.\\nAction 1: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Philadelphia\\\", \\\"transportation\\\": \\\"self-driving, from Philadelphia to Richmond, duration: 4 hours 2 mins, distance: 407 km, cost: 20\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"-\\\", \\\"lunch\\\": \\\"-\\\", \\\"dinner\\\": \\\"-\\\", \\\"accommodation\\\": \\\"-\\\"}]\\nObservation 1: Cost: The cost of your plan is 20 dollars.\\nThought 2: The self-driving option from Philadelphia to Richmond is within budget, costing $20. Now, I need to find accommodation in Richmond for the first night. I will look for an option that is affordable but comfortable, considering the overall budget. After securing accommodation, I will plan for meals and attractions in Richmond for the following day. I will choose attractions that do not have an entry fee listed to keep costs down and select moderately priced restaurants for meals. Once the plan for Richmond is set, I will proceed to plan the transportation to Petersburg, followed by accommodation, meals, and attractions there. The same process will be applied for the trip from Petersburg to Charlottesville and then back to Philadelphia.\\nAction 2: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Cool Summer Vibes UWS Pent House w/ rooftop, Richmond\\\"}]\\nObservation 2: Cost: The cost of your plan is 602.0 dollars.\\nThought 3: The accommodation at \\\"Cool Summer Vibes UWS Pent House w/ rooftop\\\" in Richmond is too expensive, costing $602, which significantly impacts the budget. I need to find a more affordable accommodation option to ensure the budget is maintained throughout the 7-day trip. I will look for a different accommodation that is less expensive and re-calculate the cost for the first day in Richmond, including the chosen attractions and meals.\\nAction 3: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 3: Cost: The cost of your plan is 316.0 dollars.\\nThought 4: The accommodation \\\"Gorgeous studio in midtown Manhattan\\\" in Richmond is still too expensive at $316. I need to select a more budget-friendly accommodation to keep the overall trip within the $1,800 budget. I will choose another accommodation option with a lower price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 4: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"2 bd 2 bathroom Apartment in Upper East Side, Richmond\\\"}]\\nObservation 4: Cost: The cost of your plan is 389.0 dollars.\\nThought 5: The accommodation \\\"2 bd 2 bathroom Apartment in Upper East Side\\\" in Richmond is still not affordable enough at $389. I will need to select the most budget-friendly accommodation option available in the provided data to ensure the trip remains within the $1,800 budget. I will choose another accommodation option with the lowest price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 5: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Inviting Brooklyn Studio, Richmond\\\"}]\\nObservation 5: Cost: The cost of your plan is 502.0 dollars.\\nThought 6: The accommodation \\\"Inviting Brooklyn Studio\\\" in Richmond is still too expensive at $502. I will need to select the most budget-friendly accommodation option available in the provided data to ensure the trip remains within the $1,800 budget. I will choose another accommodation option with the lowest price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 6: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Large cozy bedroom close to Times Square 43D4, Richmond\\\"}]\\nObservation 6: Cost: The cost of your plan is 507.0 dollars.\\nThought 7: The accommodation \\\"Large cozy bedroom close to Times Square 43D4\\\" in Richmond is still too expensive at $507. I will need to select the most budget-friendly accommodation option available in the provided data to ensure the trip remains within the $1,800 budget. I will choose another accommodation option with the lowest price and re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 7: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 7: Cost: The cost of your plan is 316.0 dollars.\\nThought 8: It seems there was a mistake in repeating the same accommodation that was previously too expensive. I need to find the most affordable accommodation option in Richmond to ensure the trip remains within the $1,800 budget. I will review the accommodations list again and select the one with the lowest price, then re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 8: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"12 East 86th St full furnished, Richmond\\\"}]\\nObservation 8: Cost: The cost of your plan is 555.0 dollars.\\nThought 9: The accommodation \\\"12 East 86th St full furnished\\\" in Richmond is also too expensive at $555. I need to find the most affordable accommodation option in Richmond to ensure the trip remains within the $1,800 budget. I will review the accommodations list again and select the one with the lowest price, then re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 9: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 9: Cost: The cost of your plan is 316.0 dollars.\\nThought 10: It appears there was a repeated mistake in selecting accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 10: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 10: Cost: The cost of your plan is 316.0 dollars.\\nThought 11: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 11: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Inviting Brooklyn Studio, Richmond\\\"}]\\nObservation 11: Cost: The cost of your plan is 502.0 dollars.\\nThought 12: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 12: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"12 East 86th St full furnished, Richmond\\\"}]\\nObservation 12: Cost: The cost of your plan is 555.0 dollars.\\nThought 13: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 13: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Large cozy bedroom close to Times Square 43D4, Richmond\\\"}]\\nObservation 13: Cost: The cost of your plan is 507.0 dollars.\\nThought 14: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 14: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 14: Cost: The cost of your plan is 316.0 dollars.\\nThought 15: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 15: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"2 bd 2 bathroom Apartment in Upper East Side, Richmond\\\"}]\\nObservation 15: Cost: The cost of your plan is 389.0 dollars.\\nThought 16: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 16: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Large suite with private bathroom (15 min to city), Richmond\\\"}]\\nObservation 16: Cost: The cost of your plan is 868.0 dollars.\\nThought 17: The accommodation \\\"Large suite with private bathroom (15 min to city)\\\" in Richmond is also too expensive at $868. I need to find the most affordable accommodation option in Richmond to ensure the trip remains within the $1,800 budget. I will review the accommodations list again and select the one with the lowest price, then re-calculate the cost for the first day in Richmond, including the same attractions and meals.\\nAction 17: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 17: Cost: The cost of your plan is 316.0 dollars.\\nThought 18: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 18: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"12 East 86th St full furnished, Richmond\\\"}]\\nObservation 18: Cost: The cost of your plan is 555.0 dollars.\\nThought 19: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 19: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 19: Cost: The cost of your plan is 316.0 dollars.\\nThought 20: There seems to be a mistake in the repeated selection of accommodations that are too expensive. I need to carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 20: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Inviting Brooklyn Studio, Richmond\\\"}]\\nObservation 20: Cost: The cost of your plan is 502.0 dollars.\\nThought 21: I apologize for the confusion in the previous steps. It seems I have been repeatedly selecting accommodations that are too expensive and not suitable for the budget. I will now carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 21: CostEnquiry[{\\\"people_number\\\": 1, \\\"day\\\": 1, \\\"current_city\\\": \\\"Richmond\\\", \\\"transportation\\\": \\\"-\\\", \\\"breakfast\\\": \\\"-\\\", \\\"attraction\\\": \\\"Virginia Museum of Fine Arts, Richmond\\\", \\\"lunch\\\": \\\"Guang Zhou Chinese Restaurant, Richmond\\\", \\\"dinner\\\": \\\"Sandpiper Restaurant & Lounge, Richmond\\\", \\\"accommodation\\\": \\\"Gorgeous studio in midtown Manhattan, Richmond\\\"}]\\nObservation 21: Cost: The cost of your plan is 316.0 dollars.\\nThought 22: I apologize for the confusion in the previous steps. It seems I have been repeatedly selecting accommodations that are too expensive and not suitable for the budget. I will now carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nAction 22: I apologize for the repeated errors in the previous steps. It seems I have been mistakenly selecting accommodations that are too expensive and not suitable for the budget. To correct this, I will now carefully review the accommodations list for Richmond and select the most affordable option that has not been previously chosen. The goal is to find a place to stay that fits within the $1,800 budget for the entire trip, including transportation, meals, and attractions. I will now choose the accommodation with the lowest price from the list provided and re-calculate the cost for the first day in Richmond.\\nObservation 22: Action None is not supported.\",\"\"\")" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "66872afa", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Please assist me in extracting valid information from a given natural language text and reconstructing it in JSON format, as demonstrated in the following example. If transportation details indicate a journey from one city to another (e.g., from A to B), the \\'current_city\\' should be updated to the destination city (in this case, B). Use a \\';\\' to separate different attractions, with each attraction formatted as \\'Name, City\\'. If there\\'s information about transportation, ensure that the \\'current_city\\' aligns with the destination mentioned in the transportation details (i.e., the current city should follow the format \\'from A to B\\'). Also, ensure that all flight numbers and costs are followed by a colon (i.e., \\'Flight Number:\\' and \\'Cost:\\'), consistent with the provided example. Each item should include [\\'day\\', \\'current_city\\', \\'transportation\\', \\'breakfast\\', \\'attraction\\', \\'lunch\\', \\'dinner\\', \\'accommodation\\']. Replace non-specific information like \\'eat at home/on the road\\' with \\'-\\'. Additionally, delete any \\'$\\' symbols.\\n-----EXAMPLE-----\\n [{{\\n \"days\": 1,\\n \"current_city\": \"from Dallas to Peoria\",\\n \"transportation\": \"Flight Number: 4044830, from Dallas to Peoria, Departure Time: 13:10, Arrival Time: 15:01\",\\n \"breakfast\": \"-\",\\n \"attraction\": \"Peoria Historical Society, Peoria;Peoria Holocaust Memorial, Peoria;\",\\n \"lunch\": \"-\",\\n \"dinner\": \"Tandoor Ka Zaika, Peoria\",\\n \"accommodation\": \"Bushwick Music Mansion, Peoria\"\\n }},\\n {{\\n \"days\": 2,\\n \"current_city\": \"Peoria\",\\n \"transportation\": \"-\",\\n \"breakfast\": \"Tandoor Ka Zaika, Peoria\",\\n \"attraction\": \"Peoria Riverfront Park, Peoria;The Peoria PlayHouse, Peoria;Glen Oak Park, Peoria;\",\\n \"lunch\": \"Cafe Hashtag LoL, Peoria\",\\n \"dinner\": \"The Curzon Room - Maidens Hotel, Peoria\",\\n \"accommodation\": \"Bushwick Music Mansion, Peoria\"\\n }},\\n {{\\n \"days\": 3,\\n \"current_city\": \"from Peoria to Dallas\",\\n \"transportation\": \"Flight Number: 4045904, from Peoria to Dallas, Departure Time: 07:09, Arrival Time: 09:20\",\\n \"breakfast\": \"-\",\\n \"attraction\": \"-\",\\n \"lunch\": \"-\",\\n \"dinner\": \"-\",\\n \"accommodation\": \"-\"\\n }}]\\n-----EXAMPLE END-----\\nText:\\ncontent=\\'Day 1:\\\\nCurrent City: from Memphis to Los Angeles\\\\nTransportation: Flight Number: F0123456, from Memphis to Los Angeles, Departure Time: 08:30, Arrival Time: 10:30\\\\nBreakfast: -\\\\nAttraction: Santa Monica Pier, Los Angeles\\\\nLunch: -\\\\nDinner: -\\\\nAccommodation: Hampton Inn & Suites Los Angeles/Hollywood, Los Angeles\\\\n\\\\nDay 2:\\\\nCurrent City: Los Angeles\\\\nTransportation: -\\\\nBreakfast: -\\\\nAttraction: Hollywood Walk of Fame, Los Angeles; Hollywood Sign, Los Angeles\\\\nLunch: -\\\\nDinner: -\\\\nAccommodation: Hampton Inn & Suites Los Angeles/Hollywood, Los Angeles\\\\n\\\\nDay 3:\\\\nCurrent City: Los Angeles\\\\nTransportation: -\\\\nBreakfast: -\\\\nAttraction: The Getty, Los Angeles; Universal Studios Hollywood, Los Angeles\\\\nLunch: -\\\\nDinner: -\\\\nAccommodation: -\\'\\nJSON:\\n'" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test_data[23]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "d0532d2d", + "metadata": {}, + "outputs": [], + "source": [ + "test_data = test_data[500:]" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "18c25420", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1000" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(test_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "c5210734", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "开始线程: Thread0\n", + "开始线程: Thread1\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 0%| | 0/18 [00:00= people_number] + + if local_constraint: + + if local_constraint['transportation'] == 'no self-driving': + if grain == "city": + if len(flight_data[flight_data['FlightDate'] == date[0]]) < 2: + raise ValueError("No flight data available for the given constraints.") + elif grain == "state": + if len(flight_data[flight_data['FlightDate'] == date[0]]) < 10: + raise ValueError("No flight data available for the given constraints.") + + elif local_constraint['transportation'] == 'no flight': + if len(flight_data[flight_data['FlightDate'] == date[0]]) < 2 or flight_data.iloc[0]['Distance'] > 800: + raise ValueError("Impossible") + + # if local_constraint['flgiht time']: + # if local_constraint['flgiht time'] == 'morning': + # flight_data = flight_data[flight_data['DepTime'] < '12:00'] + # elif local_constraint['flgiht time'] == 'afternoon': + # flight_data = flight_data[(flight_data['DepTime'] >= '12:00') & (flight_data['DepTime'] < '18:00')] + # elif local_constraint['flgiht time'] == 'evening': + # flight_data = flight_data[flight_data['DepTime'] >= '18:00'] + + if local_constraint['room type']: + if local_constraint['room type'] == 'shared room': + hotel_data = hotel_data[hotel_data['room type'] == 'Shared room'] + elif local_constraint['room type'] == 'not shared room': + hotel_data = hotel_data[(hotel_data['room type'] == 'Private room') | (hotel_data['room type'] == 'Entire home/apt')] + elif local_constraint['room type'] == 'private room': + hotel_data = hotel_data[hotel_data['room type'] == 'Private room'] + elif local_constraint['room type'] == 'entire room': + hotel_data = hotel_data[hotel_data['room type'] == 'Entire home/apt'] + + if days == 3: + if len(hotel_data) < 3: + raise ValueError("No hotel data available for the given constraints.") + elif days == 5: + if len(hotel_data) < 5: + raise ValueError("No hotel data available for the given constraints.") + elif days == 7: + if len(hotel_data) < 7: + raise ValueError("No hotel data available for the given constraints.") + + if local_constraint['house rule']: + if local_constraint['house rule'] == 'parties': + # the house rule should not contain 'parties' + hotel_data = hotel_data[~hotel_data['house_rules'].str.contains('No parties')] + elif local_constraint['house rule'] == 'smoking': + hotel_data = hotel_data[~hotel_data['house_rules'].str.contains('No smoking')] + elif local_constraint['house rule'] == 'children under 10': + hotel_data = hotel_data[~hotel_data['house_rules'].str.contains('No children under 10')] + elif local_constraint['house rule'] == 'pets': + hotel_data = hotel_data[~hotel_data['house_rules'].str.contains('No pets')] + elif local_constraint['house rule'] == 'visitors': + hotel_data = hotel_data[~hotel_data['house_rules'].str.contains('No visitors')] + + if days == 3: + if len(hotel_data) < 3: + raise ValueError("No hotel data available for the given constraints.") + elif days == 5: + if len(hotel_data) < 5: + raise ValueError("No hotel data available for the given constraints.") + elif days == 7: + if len(hotel_data) < 7: + raise ValueError("No hotel data available for the given constraints.") + + if local_constraint['cuisine']: + # judge whether the cuisine is in the cuisine list + restaurant_data = restaurant_data[restaurant_data['Cuisines'].str.contains('|'.join(local_constraint['cuisine']))] + + if days == 3: + if len(restaurant_data) < 3: + raise ValueError("No restaurant data available for the given constraints.") + elif days == 5: + if len(restaurant_data) < 5: + raise ValueError("No restaurant data available for the given constraints.") + elif days == 7: + if len(restaurant_data) < 7: + raise ValueError("No restaurant data available for the given constraints.") + + # hotel_data = filter.run(hotel_data, local_constraint) + # restaurant_data = filter.run(restaurant_data, local_constraint) + # flight_data = filter.run(flight_data, local_constraint) + + # Calculate budgets for all three modes + + budgets = {} + for mode in ["lowest", "highest", "average"]: + if local_constraint and local_constraint['transportation'] == 'self driving': + flight_budget = eval(distanceMatrix.run(org, dest)['cost'].replace("$","")) * multipliers[days]["flight"] + else: + flight_budget = estimate_budget(flight_data["Price"].tolist(), mode) * multipliers[days]["flight"] + hotel_budget = estimate_budget(hotel_data["price"].tolist(), mode) * multipliers[days]["hotel"] + restaurant_budget = estimate_budget(restaurant_data["Average Cost"].tolist(), mode) * multipliers[days]["restaurant"] + total_budget = flight_budget + hotel_budget + restaurant_budget + budgets[mode] = total_budget + + return budgets + diff --git a/utils/budget_reset.py b/utils/budget_reset.py new file mode 100644 index 0000000000000000000000000000000000000000..534777e821a587bada96adf741aba89b2a0ccad4 --- /dev/null +++ b/utils/budget_reset.py @@ -0,0 +1,36 @@ +import json +from evaluation.hardConstriant import get_total_cost +from tqdm import tqdm +import math + +def load_line_json_data(filename): + data = [] + with open(filename, 'r', encoding='utf-8') as f: + for line in f.read().strip().split('\n'): + unit = json.loads(line) + data.append(unit) + return data + +def round_up_to_nearest_hundred(number): + return math.ceil(number / 100) * 100 + +if __name__ == '__main__': + query = load_line_json_data('/home/xj/toolAugEnv/code/toolConstraint/data/query/all_reset_budget.jsonl') + rewritten_query = open('/home/xj/toolAugEnv/code/toolConstraint/data/api_request/query_rewritten_reset_budget_gpt4.txt').readlines() + assert len(rewritten_query) == len(query) + for idx in tqdm(range(len(query))): + # tested_data = json.load(open(f'/home/xj/toolAugEnv/code/toolConstraint/data/annotation/all/annotation_{idx+1}.json')) + # query[idx]['reset_budget'] = round_up_to_nearest_hundred(get_total_cost(query[idx], tested_data)) + # print(query[idx]) + # break + query[idx]['query'] = "".join(x for x in rewritten_query[idx].strip().split('\t')[1:]) + query[idx]['budget'] = query[idx]['reset_budget'] + query[idx].pop('reset_budget') + + + with open('/home/xj/toolAugEnv/code/toolConstraint/data/query/all.jsonl', 'w') as f: + for query_unit in query: + # print(query) + json.dump(query_unit, f) + f.write('\n') + f.close() \ No newline at end of file diff --git a/utils/convert.py b/utils/convert.py new file mode 100644 index 0000000000000000000000000000000000000000..2d86565a1c9a27c34670e885a0abfb7b94a3ea06 --- /dev/null +++ b/utils/convert.py @@ -0,0 +1,27 @@ +import json +def load_line_json_data(filename): + data = [] + with open(filename, 'r', encoding='utf-8') as f: + for line in f.read().strip().split('\n'): + unit = json.loads(line) + data.append(unit) + return data + +def save_file(data, path): + with open(path,'w',encoding='utf-8') as w: + for unit in data: + output = json.dumps(unit) + w.write(output + "\n") + w.close() + +data = load_line_json_data('/home/xj/toolAugEnv/code/toolConstraint/data/query/zk.jsonl') +query_output = open('/home/xj/toolAugEnv/code/toolConstraint/data/api_request/zk_hard_regen.txt','r').read().strip().split('\n') +# assert len(data) == len(query_output) + +for unit, output in zip(data[24:], query_output): + # unit['local_constraint']['transportation'] = None + unit['query'] = " ".join(x for x in output.split('\t')[1:]) +# for unit in data: +# unit['local_constraint']['transportation'] = None + +save_file(data,'/home/xj/toolAugEnv/code/toolConstraint/data/query/zk.jsonl') \ No newline at end of file diff --git a/utils/extract_human_annotation.py b/utils/extract_human_annotation.py new file mode 100644 index 0000000000000000000000000000000000000000..fa83504b97261d30ab78b3cecb3355af6fa03ddd --- /dev/null +++ b/utils/extract_human_annotation.py @@ -0,0 +1,183 @@ +import json +import os +import re +import sys +from tools.flights.apis import Flights +from tools.accommodations.apis import Accommodations +from tools.restaurants.apis import Restaurants +from tools.googleDistanceMatrix.apis import GoogleDistanceMatrix +from tools.googlePlaces.apis import GooglePlaces +from tools.attractions.apis import Attractions +from annotation.src.utils import get_valid_name_city,extract_before_parenthesis +from tqdm import tqdm + +sys.path.append(os.path.abspath(os.path.join(os.getcwd(), ".."))) +os.chdir(os.path.dirname(os.path.abspath(__file__))) + + +flight = Flights() +accommodations = Accommodations() +restaurants = Restaurants() +googleDistanceMatrix = GoogleDistanceMatrix() +googlePlaces = GooglePlaces() +attractions = Attractions() + + +def load_line_json_data(filename): + data = [] + with open(filename, 'r', encoding='utf-8') as f: + for line in f.read().strip().split('\n'): + unit = json.loads(line) + data.append(unit) + return data + +def extract_numbers_from_filenames(directory): + # Define the pattern to match files + pattern = r'annotation_(\d+).json' + + # List all files in the directory + files = os.listdir(directory) + + # Extract numbers from filenames that match the pattern + numbers = [int(re.search(pattern, file).group(1)) for file in files if re.match(pattern, file)] + + return numbers + +def extract_from_to(text: str): + """ + Extracts 'A' and 'B' from the format "from A to B" in the given text, with B ending at a comma or the end of the string. + + Args: + - text (str): The input string. + + Returns: + - tuple: A tuple containing 'A' and 'B'. If no match is found, returns (None, None). + """ + pattern = r"from\s+(.+?)\s+to\s+([^,]+)(?=[,\s]|$)" + matches = re.search(pattern, text) + return matches.groups() if matches else (None, None) + +def extract_city_list(query_data, annotated_data): + city_list = [] + for unit in annotated_data[:query_data['days']]: + if 'from' in unit['current_city']: + from_city, to_city = extract_from_to(unit['current_city']) + from_city = extract_before_parenthesis(from_city) + to_city = extract_before_parenthesis(to_city) + if from_city not in city_list: + city_list.append(from_city) + if to_city not in city_list: + city_list.append(to_city) + else: + city = extract_before_parenthesis(unit['current_city']) + if city not in city_list: + city_list.append(city) + + return city_list + + +# if __name__ == '__main__': +# user_name = 'all' +# directory = '../data/annotation/{}'.format(user_name) +# query_data_list = load_line_json_data('../data/query/{}.jsonl'.format(user_name)) +# numbers = extract_numbers_from_filenames(directory) +# print(numbers) +# for number in tqdm(numbers): +# json_data = json.load(open(os.path.join(directory, 'annotation_{}.json'.format(number)))) +# query_data = query_data_list[number-1] +# city_list = extract_city_list(query_data,json_data) +# human_collected_info = [] + +# for city in city_list[1:]: +# attractions_data = attractions.run(city) +# if type(attractions_data) != str: +# attractions_data.drop(['Latitude','Longitude','Address','Phone','Website','City'],axis=1,inplace=True) +# if type(attractions_data) != str: +# attractions_data = attractions_data.to_string(index=False) +# restaurants_data = restaurants.run(city) +# restaurants_data.drop(['City'],axis=1,inplace=True) +# if type(restaurants_data) != str: +# restaurants_data = restaurants_data.to_string(index=False) +# accommodations_data = accommodations.run(city) +# accommodations_data.drop(['city'],axis=1,inplace=True) +# if type(accommodations_data) != str: +# accommodations_data = accommodations_data.to_string(index=False) +# human_collected_info.append({"Description":"Attractions in {}".format(city),"Content":attractions_data}) +# human_collected_info.append({"Description":"Restaurants in {}".format(city),"Content":restaurants_data}) +# human_collected_info.append({"Description":"Accommodations in {}".format(city),"Content":accommodations_data}) + + +# for idx, unit in enumerate(json_data): +# if unit != {}: +# if 'from' in unit['current_city']: +# from_city, to_city = extract_from_to(unit['current_city']) +# from_city = extract_before_parenthesis(from_city) +# to_city = extract_before_parenthesis(to_city) +# date = query_data_list[number-1]['date'][idx] +# flight_data = flight.run(from_city, to_city, date) +# if type(flight_data) != str: +# flight_data.drop(['OriginCityName','DestCityName','Distance','FlightDate'],axis=1,inplace=True) +# flight_data = flight_data.to_string(index=False) +# human_collected_info.append({"Description":"Flight from {} to {} on {}".format(from_city, to_city, date), "Content":flight_data}) +# self_driving_data = googleDistanceMatrix.run(from_city, to_city,mode="self-driving") +# human_collected_info.append({"Description":"Self-driving from {} to {}".format(from_city, to_city), "Content":self_driving_data}) +# taxi_data = googleDistanceMatrix.run(from_city, to_city, mode='taxi') +# human_collected_info.append({"Description":"Taxi from {} to {}".format(from_city, to_city), "Content":taxi_data}) + +# # write to json file +# with open(os.path.join(directory, 'human_collected_info_{}.json'.format(number)), 'w', encoding='utf-8') as f: +# json.dump(human_collected_info, f, indent=4, ensure_ascii=False) +# # break + + +if __name__ == '__main__': + set_type = ['train','dev','test'][2] + directory = '/home/xj/toolAugEnv/code/toolConstraint/data/final_data/{}'.format(set_type) + query_data_list = load_line_json_data('/home/xj/toolAugEnv/code/toolConstraint/data/final_data/{}/query/query.jsonl'.format(set_type)) + numbers = [i for i in range(1,len(query_data_list)+1)] + for number in tqdm(numbers): + json_data = json.load(open(os.path.join(directory, 'plan/plan_{}.json'.format(number))))[1] + query_data = query_data_list[number-1] + city_list = extract_city_list(query_data,json_data) + human_collected_info = [] + + for city in city_list[1:]: + attractions_data = attractions.run(city) + # if type(attractions_data) != str: + # attractions_data.drop(['Latitude','Longitude','Address','Phone','Website','City'],axis=1,inplace=True) + if type(attractions_data) != str: + attractions_data = attractions_data.to_string(index=False) + restaurants_data = restaurants.run(city) + # restaurants_data.drop(['City'],axis=1,inplace=True) + if type(restaurants_data) != str: + restaurants_data = restaurants_data.to_string(index=False) + accommodations_data = accommodations.run(city) + # accommodations_data.drop(['city'],axis=1,inplace=True) + if type(accommodations_data) != str: + accommodations_data = accommodations_data.to_string(index=False) + human_collected_info.append({"Description":"Attractions in {}".format(city),"Content":attractions_data}) + human_collected_info.append({"Description":"Restaurants in {}".format(city),"Content":restaurants_data}) + human_collected_info.append({"Description":"Accommodations in {}".format(city),"Content":accommodations_data}) + + + for idx, unit in enumerate(json_data): + if unit != {}: + if 'from' in unit['current_city']: + from_city, to_city = extract_from_to(unit['current_city']) + from_city = extract_before_parenthesis(from_city) + to_city = extract_before_parenthesis(to_city) + date = query_data_list[number-1]['date'][idx] + flight_data = flight.run(from_city, to_city, date) + if type(flight_data) != str: + # flight_data.drop(['OriginCityName','DestCityName','Distance','FlightDate'],axis=1,inplace=True) + flight_data = flight_data.to_string(index=False) + human_collected_info.append({"Description":"Flight from {} to {} on {}".format(from_city, to_city, date), "Content":flight_data}) + self_driving_data = googleDistanceMatrix.run(from_city, to_city,mode="self-driving") + human_collected_info.append({"Description":"Self-driving from {} to {}".format(from_city, to_city), "Content":self_driving_data}) + taxi_data = googleDistanceMatrix.run(from_city, to_city, mode='taxi') + human_collected_info.append({"Description":"Taxi from {} to {}".format(from_city, to_city), "Content":taxi_data}) + + # write to json file + with open(os.path.join(directory, 'plan/human_collected_info_{}.json'.format(number)), 'w', encoding='utf-8') as f: + json.dump(human_collected_info, f, indent=4, ensure_ascii=False) + # break diff --git a/utils/parse_plan.py b/utils/parse_plan.py new file mode 100644 index 0000000000000000000000000000000000000000..cbc0cdf71e9c5332e8632a502cd4eef156112192 --- /dev/null +++ b/utils/parse_plan.py @@ -0,0 +1,49 @@ +from tqdm import tqdm +import json +import os + +def load_line_json_data(filename): + data = [] + with open(filename, 'r', encoding='utf-8') as f: + for line in f.read().strip().split('\n'): + unit = json.loads(line) + data.append(unit) + return data + + +if __name__ == '__main__': + + model_name = ['gpt-3.5-turbo-1106','gpt-4-1106-preview2','greedy_search','mistral-7B-32K','gemini2','mixtral','gpt-3.5-turbo-11062'][-3] + method = ['direct','cot','react','reflexion','tool-use'][-1] + set_type = ['dev','test'][0] + results = open(f'/home/xj/toolAugEnv/code/toolConstraint/data/api_request/{set_type}_{model_name}_{method}.txt','r').read().strip().split('\n') + directory = f'/home/xj/toolAugEnv/code/toolConstraint/data/final_data/{set_type}' + query_data_list = load_line_json_data(os.path.join(directory, 'query/query.jsonl')) + idx_number_list = [i for i in range(1,len(query_data_list)+1)] + for idx in tqdm(idx_number_list): + generated_plan = json.load(open(f'/home/xj/toolAugEnv/code/toolConstraint/results/{set_type}/plan_{idx}.json')) + # print(results[idx-1].split('```json')[1].split('```')[0]) + suffix = None + if method == 'tool-use': + suffix = '' + else: + suffix = '_collected' + if generated_plan[-1][f'{model_name}_{method}{suffix}_info_results'] not in ["","Max Token Length Exceeded."] : + result = results[idx-1].split('```json')[1].split('```')[0] + # print(result) + try: + if method == 'tool-use': + generated_plan[-1][f'{model_name}_{method}_results_parsed'] = eval(result) + else: + generated_plan[-1][f'{model_name}_{method}_with_human_info_results_parsed'] = eval(result) + except: + print(result) + break + else: + if method == 'tool-use': + generated_plan[-1][f'{model_name}_{method}_results_parsed'] = None + else: + generated_plan[-1][f'{model_name}_{method}_with_human_info_results_parsed'] = None + # print(generated_plan[-1]['chatgpt_human_collected_info_results_parsed']) + with open(f'/home/xj/toolAugEnv/code/toolConstraint/results/{set_type}/plan_{idx}.json','w') as f: + json.dump(generated_plan,f) diff --git a/utils/query_element_selection.py b/utils/query_element_selection.py new file mode 100644 index 0000000000000000000000000000000000000000..a78abf6cc11f791a2dc59ef2348bd9d9239ad1b5 --- /dev/null +++ b/utils/query_element_selection.py @@ -0,0 +1,243 @@ +import sys +import os +sys.path.append(os.path.abspath(os.path.join(os.getcwd(), ".."))) +os.chdir(os.path.dirname(os.path.abspath(__file__))) +import random +from utils.budget_estimation import budget_calc +import json +from datetime import datetime, timedelta +from tools.googleDistanceMatrix.apis import GoogleDistanceMatrix +import numpy as np + +google_distance = GoogleDistanceMatrix() + +city_set = open('../database/background/citySet_with_states.txt').read().strip().split('\n') + +state_city_map = {} + +for city in city_set: + state = city.split('\t')[1] + if state not in state_city_map: + state_city_map[state] = [city.split('\t')[0]] + else: + state_city_map[state].append(city.split('\t')[0]) + +visiting_city_map = {3:1,5:2,7:3} + +def round_to_hundreds(num): + return round(num / 100) * 100 + +def select_consecutive_dates(num_days, start_date=datetime(2022, 3, 1), end_date=datetime(2022, 4, 1)): + """ + Selects consecutive dates within the given range. + """ + # Generate a list of all possible dates within the range + delta = end_date - start_date + all_dates = [start_date + timedelta(days=i) for i in range(delta.days)] + + # Get the latest possible starting date for the consecutive days + latest_start = len(all_dates) - num_days + + # Randomly select a starting point + start_index = random.randint(0, latest_start) + + # Extract the consecutive dates + consecutive_dates = all_dates[start_index:start_index+num_days] + + return consecutive_dates + + +def get_org_dest(days:int): + if days == 3: + city_set = open('../database/background/citySet_with_states.txt').read().strip().split('\n') + + org = random.choice(city_set) + + while True: + dest = random.choice(city_set) + if dest.split('\t')[1] != org.split('\t')[1]: + break + + final_org = org.split('\t')[0] + final_des = dest.split('\t')[0] + + elif days in [5,7]: + + state_set = open('../database/background/citySet_with_states.txt').read().strip().split('\n') + org = random.choice(state_set) + + while True: + dest = random.choice(state_set) + if dest != org and "None" not in dest and dest.split('\t')[1] != org.split('\t')[1] and len(state_city_map[dest.split('\t')[1]]) > 3: + break + final_org = org.split('\t')[0] + final_des = dest.split('\t')[1] + + return final_org, final_des + + +def easy_level_element_selection(day_list): + """Selects the element to be used in the easy level query.""" + days = random.choice(day_list) + query_dict = None + date = [date.strftime('%Y-%m-%d') for date in select_consecutive_dates(days)] + final_org, final_des = get_org_dest(days) + budget = budget_calc(final_org, final_des, date=date, days=days ) + local_constraint_list = ["house rule", "cuisine","room type",'transportation'] + local_constrain_record = {key:None for key in local_constraint_list} + if days == 3: + final_budget = round_to_hundreds((budget["average"]+budget["lowest"])/2) + elif days == 5: + final_budget = round_to_hundreds(budget["average"]) + elif days == 7: + final_budget = round_to_hundreds(round_to_hundreds((budget["average"]+budget["highest"])/2)) + + query_dict = {"org": final_org, "dest": final_des, "days": days, "visiting_city_number":visiting_city_map[days] ,"date":date, "people_number": 1, "local_constraint": local_constrain_record ,"budget": final_budget,"query": None, "level":"easy"} + return query_dict + + + +def middle_level_element_selection(day_list): + days = random.choice(day_list) + date = [date.strftime('%Y-%m-%d') for date in select_consecutive_dates(days)] + people_number = random.choice(random.choice([[2],[3,4,5,6,7,8]])) + local_constraint_list = ["house rule", "cuisine","room type"] + local_constrain_record = {key:None for key in local_constraint_list} + local_constrain_record['transportation'] = None + final_org, final_des = get_org_dest(days) + + local_constraint_type = random.choice(local_constraint_list) + + if local_constraint_type == "flight time": + local_constraint = random.choice(["morning", "afternoon", "evening"]) + local_constrain_record["flight time"] = local_constraint + + # elif local_constraint_type == "rating": + # local_constraint = random.choice([3, 3,5,4,4.5]) + # local_constrain_record["rating"] = local_constraint + + elif local_constraint_type == "room type": + if people_number <= 2: + local_constraint = random.choice(["shared room", "not shared room", "private room", "entire room"]) + else: + local_constraint = random.choice(["private room", "entire room"]) + local_constrain_record["room type"] = local_constraint + + elif local_constraint_type == "house rule": + local_constraint = random.choice(["parties","smoking","children under 10","visitors","pets"]) + local_constrain_record["house rule"] = local_constraint + + elif local_constraint_type == "cuisine": + # choice_number = random.choice([2,3,4,5]) + local_constraint = random.sample(["Chinese", "American", "Italian", "Mexican", "Indian","Mediterranean","French"], 2) + local_constrain_record["cuisine"] = local_constraint + + budget = budget_calc(final_org, final_des, days=days, date=date, people_number=people_number) + + if days == 3: + final_budget = round_to_hundreds((budget["average"]+budget["lowest"])/2 * people_number * 0.75) + elif days == 5: + final_budget = round_to_hundreds(budget["average"] * people_number * 0.75) + elif days == 7: + final_budget = round_to_hundreds(round_to_hundreds((budget["average"]+budget["highest"])/2) * people_number * 0.75) + + query_dict = {"org": final_org, "dest": final_des, "days": days, "visiting_city_number":visiting_city_map[days], "date":date, "people_number": people_number, "local_constraint": local_constrain_record ,"budget": final_budget,"query": None, "level":"middle"} + return query_dict + + + +def hard_level_element_selection(day_list): + days = random.choice(day_list) + date = [date.strftime('%Y-%m-%d') for date in select_consecutive_dates(days)] + people_number = random.choice(random.choice([[2],[3,4,5,6,7,8]])) + # local_constraint_list = ["flight time", "house rule", "cuisine","room type", "transportation"] + local_constraint_list = ["house rule", "cuisine","room type","transportation"] + probabilities = [0.3, 0.1, 0.3, 0.3] + final_org, final_des = get_org_dest(days) + # result = google_distance.run(final_org, final_des) + + # if result != {} and 'day' not in result["duration"]: + # local_constraint_list.append() + + local_constrain_record = {key:None for key in local_constraint_list} + + local_constraint_type_list = np.random.choice(local_constraint_list, size=3, replace=False, p=probabilities).tolist() + + for local_constraint_type in local_constraint_type_list: + if local_constraint_type == "flight time": + local_constraint = random.choice(["morning", "afternoon", "evening"]) + local_constrain_record["flight time"] = local_constraint + + elif local_constraint_type == "transportation": + local_constraint = random.choice(["no flight", "no self-driving"]) + local_constrain_record["transportation"] = local_constraint + + elif local_constraint_type == "room type": + if people_number <= 2: + local_constraint = random.choice(["shared room", "not shared room", "private room", "entire room"]) + else: + local_constraint = random.choice(["private room", "entire room"]) + local_constrain_record["room type"] = local_constraint + + elif local_constraint_type == "house rule": + local_constraint = random.choice(["parties","smoking","children under 10","visitors","pets"]) + local_constrain_record["house rule"] = local_constraint + + elif local_constraint_type == "cuisine": + # choice_number = random.choice([2,3,4,5]) + local_constraint = random.sample(["Chinese", "American", "Italian", "Mexican", "Indian","Mediterranean","French"], 4) + local_constrain_record["cuisine"] = local_constraint + + budget = budget_calc(final_org, final_des, days=days, date=date, people_number=people_number,local_constraint=local_constrain_record) + + if days == 3: + final_budget = round_to_hundreds((budget["average"]+budget["lowest"])/2 * people_number * 0.5) + elif days == 5: + final_budget = round_to_hundreds(budget["average"] * people_number * 0.5) + elif days == 7: + final_budget = round_to_hundreds(round_to_hundreds((budget["average"]+budget["highest"])/2) * people_number * 0.5) + + query_dict = {"org": final_org, "dest": final_des, "days": days, "visiting_city_number":visiting_city_map[days], "date":date, "people_number": people_number, "local_constraint": local_constrain_record ,"budget": final_budget, "query": None,"level":"hard"} + + return query_dict + + +def generate_elements(number:int, level="easy", day_list=[3,5,7]): + """Generate the elements for the easy level query.""" + query_list = [] + while len(query_list) < number: + print(len(query_list)) + try: + if level == "easy": + query = easy_level_element_selection(day_list) + if query not in query_list: + query_list.append(query) + elif level == "middle": + query = middle_level_element_selection(day_list) + if query not in query_list: + query_list.append(query) + elif level == "hard": + query = hard_level_element_selection(day_list) + if query not in query_list: + query_list.append(query) + except ValueError: + continue + return query_list + +def main(): + """Generate the elements for the different level query.""" + + # save query_list as jsonl file + for num, day_list in zip([160,160,160], [[3],[5],[7]]): + query_list = generate_elements(num,"middle",day_list=day_list) + + with open('../data/query/final_annotation_middle.jsonl', 'a+') as f: + for query in query_list: + # print(query) + json.dump(query, f) + f.write('\n') + f.close() + + +if __name__ == "__main__": + main() \ No newline at end of file